blob: 5c560e17de5d14bd07d44402864cd548bca673b5 [file] [log] [blame]
Richard Smithcb8eab42006-07-24 04:25:47 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermann1a9c8922007-04-01 17:24:03 +00003 *
Uwe Hermann1683cef2008-11-27 00:47:07 +00004 * Copyright (C) 2007-2008 Uwe Hermann <uwe@hermann-uwe.de>
Uwe Hermann1a9c8922007-04-01 17:24:03 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Richard Smithcb8eab42006-07-24 04:25:47 +000019 */
20
Uwe Hermann1a9c8922007-04-01 17:24:03 +000021#include <spd.h>
22#include <sdram_mode.h>
23#include <delay.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000024#include <stdlib.h>
Uwe Hermann1a9c8922007-04-01 17:24:03 +000025#include "i440bx.h"
Richard Smithcb8eab42006-07-24 04:25:47 +000026
Uwe Hermann1a9c8922007-04-01 17:24:03 +000027/*-----------------------------------------------------------------------------
28Macros and definitions.
29-----------------------------------------------------------------------------*/
Richard Smithcb8eab42006-07-24 04:25:47 +000030
Uwe Hermann1a9c8922007-04-01 17:24:03 +000031/* Uncomment this to enable debugging output. */
32#define DEBUG_RAM_SETUP 1
Richard Smithcb8eab42006-07-24 04:25:47 +000033
Uwe Hermann1a9c8922007-04-01 17:24:03 +000034/* Debugging macros. */
35#if defined(DEBUG_RAM_SETUP)
36#define PRINT_DEBUG(x) print_debug(x)
37#define PRINT_DEBUG_HEX8(x) print_debug_hex8(x)
38#define PRINT_DEBUG_HEX16(x) print_debug_hex16(x)
39#define PRINT_DEBUG_HEX32(x) print_debug_hex32(x)
40#define DUMPNORTH() dump_pci_device(PCI_DEV(0, 0, 0))
Richard Smithcb8eab42006-07-24 04:25:47 +000041#else
Uwe Hermann941a6f02007-04-30 23:27:27 +000042#define PRINT_DEBUG(x)
Uwe Hermann1a9c8922007-04-01 17:24:03 +000043#define PRINT_DEBUG_HEX8(x)
44#define PRINT_DEBUG_HEX16(x)
45#define PRINT_DEBUG_HEX32(x)
46#define DUMPNORTH()
Richard Smithcb8eab42006-07-24 04:25:47 +000047#endif
48
Uwe Hermann1683cef2008-11-27 00:47:07 +000049#define NB PCI_DEV(0, 0, 0)
50
Uwe Hermann1a9c8922007-04-01 17:24:03 +000051/* SDRAMC[7:5] - SDRAM Mode Select (SMS). */
52#define RAM_COMMAND_NORMAL 0x0
53#define RAM_COMMAND_NOP 0x1
54#define RAM_COMMAND_PRECHARGE 0x2
55#define RAM_COMMAND_MRS 0x3
56#define RAM_COMMAND_CBR 0x4
Richard Smithcb8eab42006-07-24 04:25:47 +000057
Uwe Hermann1a9c8922007-04-01 17:24:03 +000058/* Map the JEDEC SPD refresh rates (array index) to 440BX refresh rates as
59 * defined in DRAMC[2:0].
60 *
61 * [0] == Normal 15.625 us -> 15.6 us
62 * [1] == Reduced(.25X) 3.9 us -> 7.8 ns
63 * [2] == Reduced(.5X) 7.8 us -> 7.8 us
64 * [3] == Extended(2x) 31.3 us -> 31.2 us
65 * [4] == Extended(4x) 62.5 us -> 62.4 us
66 * [5] == Extended(8x) 125 us -> 124.8 us
67 */
68static const uint32_t refresh_rate_map[] = {
69 1, 5, 5, 2, 3, 4
70};
Richard Smithcb8eab42006-07-24 04:25:47 +000071
Uwe Hermann1a9c8922007-04-01 17:24:03 +000072/* Table format: register, bitmask, value. */
73static const long register_values[] = {
74 /* NBXCFG - NBX Configuration Register
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000075 * 0x50 - 0x53
Uwe Hermann1a9c8922007-04-01 17:24:03 +000076 *
77 * [31:24] SDRAM Row Without ECC
78 * 0 = ECC components are populated in this row
79 * 1 = ECC components are not populated in this row
80 * [23:19] Reserved
81 * [18:18] Host Bus Fast Data Ready Enable (HBFDRE)
82 * Assertion of DRAM data on host bus occurs...
83 * 0 = ...one clock after sampling snoop results (default)
84 * 1 = ...on the same clock the snoop result is being sampled
85 * (this mode is faster by one clock cycle)
86 * [17:17] ECC - EDO static Drive mode
87 * 0 = Normal mode (default)
88 * 1 = ECC signals are always driven
89 * [16:16] IDSEL_REDIRECT
90 * 0 = IDSEL1 is allocated to this bridge (default)
91 * 1 = IDSEL7 is allocated to this bridge
92 * [15:15] WSC# Handshake Disable
93 * 1 = Uni-processor mode
94 * 0 = Dual-processor mode with external IOAPIC (default)
95 * [14:14] Intel Reserved
96 * [13:12] Host/DRAM Frequency
97 * 00 = 100 MHz
98 * 01 = Reserved
99 * 10 = 66 MHz
100 * 11 = Reserved
101 * [11:11] AGP to PCI Access Enable
102 * 1 = Enable
103 * 0 = Disable
104 * [10:10] PCI Agent to Aperture Access Disable
105 * 1 = Disable
106 * 0 = Enable (default)
107 * [09:09] Aperture Access Global Enable
108 * 1 = Enable
109 * 0 = Disable
110 * [08:07] DRAM Data Integrity Mode (DDIM)
111 * 00 = Non-ECC
112 * 01 = EC-only
113 * 10 = ECC Mode
114 * 11 = ECC Mode with hardware scrubbing enabled
115 * [06:06] ECC Diagnostic Mode Enable (EDME)
116 * 1 = Enable
117 * 0 = Normal operation mode (default)
118 * [05:05] MDA Present (MDAP)
119 * Works in conjunction with the VGA_EN bit.
120 * VGA_EN MDAP
121 * 0 x All VGA cycles are sent to PCI
122 * 1 0 All VGA cycles are sent to AGP
123 * 1 1 All VGA cycles are sent to AGP, except for
124 * cycles in the MDA range.
125 * [04:04] Reserved
126 * [03:03] USWC Write Post During I/O Bridge Access Enable (UWPIO)
127 * 1 = Enable
128 * 0 = Disable
129 * [02:02] In-Order Queue Depth (IOQD)
130 * 1 = In-order queue = maximum
131 * 0 = A7# is sampled asserted (i.e., 0)
132 * [01:00] Reserved
Richard Smithcb8eab42006-07-24 04:25:47 +0000133 */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000134 // TODO
Uwe Hermannbc3594732007-06-07 22:16:30 +0000135 NBXCFG + 0, 0x00, 0x0c,
136 // NBXCFG + 1, 0x00, 0xa0,
137 NBXCFG + 1, 0x00, 0x80,
138 NBXCFG + 2, 0x00, 0x00,
139 NBXCFG + 3, 0x00, 0xff,
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000140
141 /* DRAMC - DRAM Control Register
142 * 0x57
143 *
144 * [7:6] Reserved
145 * [5:5] Module Mode Configuration (MMCONFIG)
146 * TODO
147 * [4:3] DRAM Type (DT)
148 * 00 = EDO
149 * 01 = SDRAM
150 * 10 = Registered SDRAM
151 * 11 = Reserved
152 * Note: EDO, SDRAM and Registered SDRAM cannot be mixed.
153 * [2:0] DRAM Refresh Rate (DRR)
154 * 000 = Refresh disabled
155 * 001 = 15.6 us
156 * 010 = 31.2 us
157 * 011 = 62.4 us
158 * 100 = 124.8 us
159 * 101 = 249.6 us
160 * 110 = Reserved
161 * 111 = Reserved
Richard Smithcb8eab42006-07-24 04:25:47 +0000162 */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000163 /* Choose SDRAM (not registered), and disable refresh for now. */
Uwe Hermannbc3594732007-06-07 22:16:30 +0000164 DRAMC, 0x00, 0x08,
Richard Smithcb8eab42006-07-24 04:25:47 +0000165
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000166 /*
167 * PAM[6:0] - Programmable Attribute Map Registers
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000168 * 0x59 - 0x5f
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000169 *
170 * 0x59 [3:0] Reserved
171 * 0x59 [5:4] 0xF0000 - 0xFFFFF BIOS area
172 * 0x5a [1:0] 0xC0000 - 0xC3FFF ISA add-on BIOS
173 * 0x5a [5:4] 0xC4000 - 0xC7FFF ISA add-on BIOS
174 * 0x5b [1:0] 0xC8000 - 0xCBFFF ISA add-on BIOS
175 * 0x5b [5:4] 0xCC000 - 0xCFFFF ISA add-on BIOS
176 * 0x5c [1:0] 0xD0000 - 0xD3FFF ISA add-on BIOS
177 * 0x5c [5:4] 0xD4000 - 0xD7FFF ISA add-on BIOS
178 * 0x5d [1:0] 0xD8000 - 0xDBFFF ISA add-on BIOS
179 * 0x5d [5:4] 0xDC000 - 0xDFFFF ISA add-on BIOS
180 * 0x5e [1:0] 0xE0000 - 0xE3FFF BIOS entension
181 * 0x5e [5:4] 0xE4000 - 0xE7FFF BIOS entension
182 * 0x5f [1:0] 0xE8000 - 0xEBFFF BIOS entension
183 * 0x5f [5:4] 0xEC000 - 0xEFFFF BIOS entension
184 *
185 * Bit assignment:
186 * 00 = DRAM Disabled (all access goes to memory mapped I/O space)
187 * 01 = Read Only (Reads to DRAM, writes to memory mapped I/O space)
188 * 10 = Write Only (Writes to DRAM, reads to memory mapped I/O space)
189 * 11 = Read/Write (all access goes to DRAM)
190 */
191 // TODO
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000192 PAM0, 0x00, 0x00,
193 PAM1, 0x00, 0x00,
194 PAM2, 0x00, 0x00,
195 PAM3, 0x00, 0x00,
196 PAM4, 0x00, 0x00,
197 PAM5, 0x00, 0x00,
198 PAM6, 0x00, 0x00,
Richard Smithcb8eab42006-07-24 04:25:47 +0000199
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000200 /* DRB[0:7] - DRAM Row Boundary Registers
201 * 0x60 - 0x67
202 *
203 * An array of 8 byte registers, which hold the ending memory address
204 * assigned to each pair of DIMMs, in 8MB granularity.
205 *
206 * 0x60 DRB0 = Total memory in row0 (in 8 MB)
207 * 0x61 DRB1 = Total memory in row0+1 (in 8 MB)
208 * 0x62 DRB2 = Total memory in row0+1+2 (in 8 MB)
209 * 0x63 DRB3 = Total memory in row0+1+2+3 (in 8 MB)
210 * 0x64 DRB4 = Total memory in row0+1+2+3+4 (in 8 MB)
211 * 0x65 DRB5 = Total memory in row0+1+2+3+4+5 (in 8 MB)
212 * 0x66 DRB6 = Total memory in row0+1+2+3+4+5+6 (in 8 MB)
213 * 0x67 DRB7 = Total memory in row0+1+2+3+4+5+6+7 (in 8 MB)
214 */
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000215 /* Set the DRBs to zero for now, this will be fixed later. */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000216 DRB0, 0x00, 0x00,
217 DRB1, 0x00, 0x00,
218 DRB2, 0x00, 0x00,
219 DRB3, 0x00, 0x00,
220 DRB4, 0x00, 0x00,
221 DRB5, 0x00, 0x00,
222 DRB6, 0x00, 0x00,
223 DRB7, 0x00, 0x00,
224
225 /* FDHC - Fixed DRAM Hole Control Register
226 * 0x68
227 *
228 * Controls two fixed DRAM holes: 512 KB - 640 KB and 15 MB - 16 MB.
229 *
230 * [7:6] Hole Enable (HEN)
231 * 00 = None
232 * 01 = 512 KB - 640 KB (128 KB)
233 * 10 = 15 MB - 16 MB (1 MB)
234 * 11 = Reserved
235 * [5:0] Reserved
236 */
237 /* No memory holes. */
238 FDHC, 0x00, 0x00,
239
240 /* RPS - SDRAM Row Page Size Register
241 * 0x74 - 0x75
242 *
243 * Sets the row page size for SDRAM. For EDO memory, the page
244 * size is fixed at 2 KB.
245 *
246 * [15:0] Page Size (PS)
247 * TODO
248 */
249 // TODO
Uwe Hermannbc3594732007-06-07 22:16:30 +0000250 RPS + 0, 0x00, 0x00,
251 RPS + 1, 0x00, 0x00,
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000252
253 /* SDRAMC - SDRAM Control Register
Uwe Hermann7ea18cf2007-05-04 00:51:17 +0000254 * 0x76 - 0x77
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000255 *
256 * [15:10] Reserved
257 * [09:08] Idle/Pipeline DRAM Leadoff Timing (IPDLT)
258 * 00 = Illegal
259 * 01 = Add a clock delay to the lead-off clock count
260 * 10 = Illegal
261 * 11 = Illegal
262 * [07:05] SDRAM Mode Select (SMS)
263 * 000 = Normal SDRAM Operation (default)
264 * 001 = NOP Command Enable
265 * 010 = All Banks Precharge Enable
266 * 011 = Mode Register Set Enable
267 * 100 = CBR Enable
268 * 101 = Reserved
269 * 110 = Reserved
270 * 111 = Reserved
271 * [04:04] SDRAMPWR
272 * 0 = 3 DIMM configuration
273 * 1 = 4 DIMM configuration
274 * [03:03] Leadoff Command Timing (LCT)
275 * 0 = 4 CS# Clock
276 * 1 = 3 CS# Clock
277 * [02:02] CAS# Latency (CL)
278 * 0 = 3 DCLK CAS# latency
279 * 1 = 2 DCLK CAS# latency
280 * [01:01] SDRAM RAS# to CAS# Delay (SRCD)
281 * 0 = 3 clocks between a row activate and a read or write cmd.
282 * 1 = 2 clocks between a row activate and a read or write cmd.
283 * [00:00] SDRAM RAS# Precharge (SRP)
284 * 0 = 3 clocks of RAS# precharge
285 * 1 = 2 clocks of RAS# precharge
286 */
Uwe Hermannbc3594732007-06-07 22:16:30 +0000287 SDRAMC + 0, 0x00, 0x00,
Mats Erik Andersson45db3662008-09-30 04:52:29 +0000288 SDRAMC + 1, 0x00, 0x00,
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000289
290 /* PGPOL - Paging Policy Register
291 * 0x78 - 0x79
292 *
293 * [15:08] Banks per Row (BPR)
294 * TODO
295 * 0 = 2 banks
296 * 1 = 4 banks
297 * [07:05] Reserved
298 * [04:04] Intel Reserved
299 * [03:00] DRAM Idle Timer (DIT)
300 * 0000 = 0 clocks
301 * 0001 = 2 clocks
302 * 0010 = 4 clocks
303 * 0011 = 8 clocks
304 * 0100 = 10 clocks
305 * 0101 = 12 clocks
306 * 0110 = 16 clocks
307 * 0111 = 32 clocks
308 * 1xxx = Infinite (pages are not closed for idle condition)
309 */
310 // TODO
Uwe Hermannbc3594732007-06-07 22:16:30 +0000311 PGPOL + 0, 0x00, 0x00,
312 PGPOL + 1, 0x00, 0xff,
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000313
314 /* PMCR - Power Management Control Register
315 * 0x7a
316 *
317 * [07:07] Power Down SDRAM Enable (PDSE)
318 * 1 = Enable
319 * 0 = Disable
320 * [06:06] ACPI Control Register Enable (SCRE)
321 * 1 = Enable
322 * 0 = Disable (default)
323 * [05:05] Suspend Refresh Type (SRT)
324 * 1 = Self refresh mode
325 * 0 = CBR fresh mode
326 * [04:04] Normal Refresh Enable (NREF_EN)
327 * 1 = Enable
328 * 0 = Disable
329 * [03:03] Quick Start Mode (QSTART)
330 * 1 = Quick start mode for the processor is enabled
331 * [02:02] Gated Clock Enable (GCLKEN)
332 * 1 = Enable
333 * 0 = Disable
334 * [01:01] AGP Disable (AGP_DIS)
335 * 1 = Disable
336 * 0 = Enable
337 * [00:00] CPU reset without PCIRST enable (CRst_En)
338 * 1 = Enable
339 * 0 = Disable
340 */
341 /* Enable normal refresh and the gated clock. */
342 // TODO: Only do this later?
343 // PMCR, 0x00, 0x14,
344 // PMCR, 0x00, 0x10,
345 PMCR, 0x00, 0x00,
346};
347
348/*-----------------------------------------------------------------------------
349SDRAM configuration functions.
350-----------------------------------------------------------------------------*/
351
352/**
353 * Send the specified RAM command to all DIMMs.
354 *
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000355 * @param command The RAM command to send to the DIMM(s).
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000356 */
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000357static void do_ram_command(u32 command)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000358{
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000359 int i, caslatency;
360 u8 dimm_start, dimm_end;
361 u16 reg16;
362 u32 addr, addr_offset;
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000363
364 /* Configure the RAM command. */
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000365 reg16 = pci_read_config16(NB, SDRAMC);
366 reg16 &= 0xff1f; /* Clear bits 7-5. */
367 reg16 |= (u16) (command << 5); /* Write command into bits 7-5. */
368 pci_write_config16(NB, SDRAMC, reg16);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000369
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000370 /*
371 * RAM_COMMAND_NORMAL affects only the memory controller and
372 * doesn't need to be "sent" to the DIMMs.
373 */
374 if (command == RAM_COMMAND_NORMAL)
375 return;
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000376
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000377 /* Send the RAM command to each row of memory. */
378 dimm_start = 0;
379 for (i = 0; i < (DIMM_SOCKETS * 2); i++) {
380 addr_offset = 0;
381 caslatency = 3; /* TODO: Dynamically get CAS latency later. */
382 if (command == RAM_COMMAND_MRS) {
383 /*
384 * MAA[12:11,9:0] must be inverted when sent to DIMM
385 * 2 or 3 (no inversion if sent to DIMM 0 or 1).
386 */
387 if ((i >= 0 && i <= 3) && caslatency == 3)
388 addr_offset = 0x1d0;
389 if ((i >= 4 && i <= 7) && caslatency == 3)
390 addr_offset = 0x1e28;
391 if ((i >= 0 && i <= 3) && caslatency == 2)
392 addr_offset = 0x150;
393 if ((i >= 4 && i <= 7) && caslatency == 2)
394 addr_offset = 0x1ea8;
395 }
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000396
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000397 dimm_end = pci_read_config8(NB, DRB + i);
398
399 addr = (dimm_start * 8 * 1024 * 1024) + addr_offset;
400 if (dimm_end > dimm_start) {
401#if 0
402 PRINT_DEBUG(" Sending RAM command 0x");
403 PRINT_DEBUG_HEX16(reg16);
404 PRINT_DEBUG(" to 0x");
405 PRINT_DEBUG_HEX32(addr);
406 PRINT_DEBUG("\r\n");
407#endif
408
409 read32(addr);
410 }
411
412 /* Set the start of the next DIMM. */
413 dimm_start = dimm_end;
414 }
Richard Smithcb8eab42006-07-24 04:25:47 +0000415}
416
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000417/*-----------------------------------------------------------------------------
418DIMM-independant configuration functions.
419-----------------------------------------------------------------------------*/
Richard Smithcb8eab42006-07-24 04:25:47 +0000420
Uwe Hermann1683cef2008-11-27 00:47:07 +0000421static void spd_enable_refresh(void)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000422{
423 int i, value;
424 uint8_t reg;
425
Uwe Hermann1683cef2008-11-27 00:47:07 +0000426 reg = pci_read_config8(NB, DRAMC);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000427
428 for (i = 0; i < DIMM_SOCKETS; i++) {
Uwe Hermann1683cef2008-11-27 00:47:07 +0000429 value = spd_read_byte(DIMM_SPD_BASE + i, SPD_REFRESH);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000430 if (value < 0)
431 continue;
432 reg = (reg & 0xf8) | refresh_rate_map[(value & 0x7f)];
433
434 PRINT_DEBUG(" Enabling refresh (DRAMC = 0x");
435 PRINT_DEBUG_HEX8(reg);
436 PRINT_DEBUG(") for DIMM ");
437 PRINT_DEBUG_HEX8(i);
438 PRINT_DEBUG("\r\n");
439 }
440
Uwe Hermann1683cef2008-11-27 00:47:07 +0000441 pci_write_config8(NB, DRAMC, reg);
Richard Smithcb8eab42006-07-24 04:25:47 +0000442}
443
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000444/*-----------------------------------------------------------------------------
445Public interface.
446-----------------------------------------------------------------------------*/
447
Uwe Hermann1683cef2008-11-27 00:47:07 +0000448static void sdram_set_registers(void)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000449{
450 int i, max;
Uwe Hermannbc3594732007-06-07 22:16:30 +0000451 uint8_t reg;
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000452
453 PRINT_DEBUG("Northbridge prior to SDRAM init:\r\n");
454 DUMPNORTH();
455
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000456 max = ARRAY_SIZE(register_values);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000457
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000458 /* Set registers as specified in the register_values[] array. */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000459 for (i = 0; i < max; i += 3) {
Uwe Hermann1683cef2008-11-27 00:47:07 +0000460 reg = pci_read_config8(NB, register_values[i]);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000461 reg &= register_values[i + 1];
462 reg |= register_values[i + 2] & ~(register_values[i + 1]);
Uwe Hermann1683cef2008-11-27 00:47:07 +0000463 pci_write_config8(NB, register_values[i], reg);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000464
465 PRINT_DEBUG(" Set register 0x");
Uwe Hermannbc3594732007-06-07 22:16:30 +0000466 PRINT_DEBUG_HEX8(register_values[i]);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000467 PRINT_DEBUG(" to 0x");
Uwe Hermannbc3594732007-06-07 22:16:30 +0000468 PRINT_DEBUG_HEX8(reg);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000469 PRINT_DEBUG("\r\n");
470 }
471}
472
Uwe Hermann1683cef2008-11-27 00:47:07 +0000473static void sdram_set_spd_registers(void)
Richard Smithcb8eab42006-07-24 04:25:47 +0000474{
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000475 /* TODO: Don't hardcode the values here, get info via SPD. */
476
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000477 /* Map all legacy regions to RAM (read/write). This is required if
478 * you want to use the RAM area from 768 KB - 1 MB. If the PAM
479 * registers are not set here appropriately, the RAM in that region
480 * will not be accessible, thus a RAM check of it will also fail.
481 */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000482 pci_write_config8(NB, PAM0, 0x30);
483 pci_write_config8(NB, PAM1, 0x33);
484 pci_write_config8(NB, PAM2, 0x33);
485 pci_write_config8(NB, PAM3, 0x33);
486 pci_write_config8(NB, PAM4, 0x33);
487 pci_write_config8(NB, PAM5, 0x33);
488 pci_write_config8(NB, PAM6, 0x33);
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000489
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000490 /* TODO: Set DRB0-DRB7. */
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000491 /* Currently this is hardcoded to one 64 MB DIMM in slot 0. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000492 pci_write_config8(NB, DRB0, 0x08);
493 pci_write_config8(NB, DRB1, 0x08);
494 pci_write_config8(NB, DRB2, 0x08);
495 pci_write_config8(NB, DRB3, 0x08);
496 pci_write_config8(NB, DRB4, 0x08);
497 pci_write_config8(NB, DRB5, 0x08);
498 pci_write_config8(NB, DRB6, 0x08);
499 pci_write_config8(NB, DRB7, 0x08);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000500
501 /* TODO: Set DRAMC. Don't enable refresh for now. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000502 pci_write_config8(NB, DRAMC, 0x08);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000503
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000504 /* TODO: Set RPS. Needs to be fixed for multiple DIMM support. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000505 pci_write_config16(NB, RPS, 0x0001);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000506
507 /* TODO: Set SDRAMC. */
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000508 pci_write_config16(NB, SDRAMC, 0x0010); /* SDRAMPWR=1: 4 DIMM config */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000509
510 /* TODO: Set PGPOL. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000511 // pci_write_config16(NB, PGPOL, 0x0107);
512 pci_write_config16(NB, PGPOL, 0x0123);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000513
514 /* TODO: Set NBXCFG. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000515 // pci_write_config32(NB, NBXCFG, 0x0100220c); // FIXME?
516 pci_write_config32(NB, NBXCFG, 0xff00800c);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000517
518 /* TODO: Set PMCR? */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000519 // pci_write_config8(NB, PMCR, 0x14);
520 pci_write_config8(NB, PMCR, 0x10);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000521
522 /* TODO? */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000523 pci_write_config8(NB, PCI_LATENCY_TIMER, 0x40);
524 pci_write_config8(NB, DRAMT, 0x03);
525 pci_write_config8(NB, MBSC, 0x03);
526 pci_write_config8(NB, SCRR, 0x38);
Richard Smithcb8eab42006-07-24 04:25:47 +0000527}
528
Uwe Hermann1683cef2008-11-27 00:47:07 +0000529static void sdram_enable(void)
Richard Smithcb8eab42006-07-24 04:25:47 +0000530{
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000531 int i;
Richard Smithcb8eab42006-07-24 04:25:47 +0000532
Uwe Hermann861f9642007-05-28 14:37:06 +0000533 /* 0. Wait until power/voltages and clocks are stable (200us). */
534 udelay(200);
Richard Smithcb8eab42006-07-24 04:25:47 +0000535
Uwe Hermann861f9642007-05-28 14:37:06 +0000536 /* 1. Apply NOP. Wait 200 clock cycles (200us should do). */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000537 PRINT_DEBUG("RAM Enable 1: Apply NOP\r\n");
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000538 do_ram_command(RAM_COMMAND_NOP);
Uwe Hermann861f9642007-05-28 14:37:06 +0000539 udelay(200);
Richard Smithcb8eab42006-07-24 04:25:47 +0000540
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000541 /* 2. Precharge all. Wait tRP. */
542 PRINT_DEBUG("RAM Enable 2: Precharge all\r\n");
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000543 do_ram_command(RAM_COMMAND_PRECHARGE);
Uwe Hermann861f9642007-05-28 14:37:06 +0000544 udelay(1);
Richard Smithcb8eab42006-07-24 04:25:47 +0000545
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000546 /* 3. Perform 8 refresh cycles. Wait tRC each time. */
547 PRINT_DEBUG("RAM Enable 3: CBR\r\n");
548 for (i = 0; i < 8; i++) {
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000549 do_ram_command(RAM_COMMAND_CBR);
Uwe Hermann861f9642007-05-28 14:37:06 +0000550 udelay(1);
Richard Smithcb8eab42006-07-24 04:25:47 +0000551 }
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000552
553 /* 4. Mode register set. Wait two memory cycles. */
554 PRINT_DEBUG("RAM Enable 4: Mode register set\r\n");
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000555 do_ram_command(RAM_COMMAND_MRS);
Uwe Hermann861f9642007-05-28 14:37:06 +0000556 udelay(2);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000557
558 /* 5. Normal operation. */
559 PRINT_DEBUG("RAM Enable 5: Normal operation\r\n");
Uwe Hermann8b643cea2008-12-09 16:36:12 +0000560 do_ram_command(RAM_COMMAND_NORMAL);
Uwe Hermann861f9642007-05-28 14:37:06 +0000561 udelay(1);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000562
563 /* 6. Finally enable refresh. */
564 PRINT_DEBUG("RAM Enable 6: Enable refresh\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000565 // pci_write_config8(NB, PMCR, 0x10);
566 spd_enable_refresh();
Uwe Hermann861f9642007-05-28 14:37:06 +0000567 udelay(1);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000568
569 PRINT_DEBUG("Northbridge following SDRAM init:\r\n");
570 DUMPNORTH();
Richard Smithcb8eab42006-07-24 04:25:47 +0000571}