blob: b3bea6b5f3cd844a41c8a3f091a2eda481f0a65a [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 Hermann1a9c8922007-04-01 17:24:03 +0000355 * @param TODO
356 * @param TODO
357 */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000358static void do_ram_command(uint32_t command, uint32_t addr_offset)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000359{
360 int i;
361 uint16_t reg;
362
363 /* TODO: Support for multiple DIMMs. */
364
365 /* Configure the RAM command. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000366 reg = pci_read_config16(NB, SDRAMC);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000367 reg &= 0xff1f; /* Clear bits 7-5. */
368 reg |= (uint16_t) (command << 5);
Uwe Hermann1683cef2008-11-27 00:47:07 +0000369 pci_write_config16(NB, SDRAMC, reg);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000370
371 /* RAM_COMMAND_NORMAL affects only the memory controller and
372 doesn't need to be "sent" to the DIMMs. */
373 /* if (command == RAM_COMMAND_NORMAL) return; */
374
375 PRINT_DEBUG(" Sending RAM command 0x");
376 PRINT_DEBUG_HEX16(reg);
377 PRINT_DEBUG(" to 0x");
378 PRINT_DEBUG_HEX32(0 + addr_offset); // FIXME
379 PRINT_DEBUG("\r\n");
380
381 /* Read from (DIMM start address + addr_offset). */
382 read32(0 + addr_offset); // FIXME
Richard Smithcb8eab42006-07-24 04:25:47 +0000383}
384
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000385/*-----------------------------------------------------------------------------
386DIMM-independant configuration functions.
387-----------------------------------------------------------------------------*/
Richard Smithcb8eab42006-07-24 04:25:47 +0000388
Uwe Hermann1683cef2008-11-27 00:47:07 +0000389static void spd_enable_refresh(void)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000390{
391 int i, value;
392 uint8_t reg;
393
Uwe Hermann1683cef2008-11-27 00:47:07 +0000394 reg = pci_read_config8(NB, DRAMC);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000395
396 for (i = 0; i < DIMM_SOCKETS; i++) {
Uwe Hermann1683cef2008-11-27 00:47:07 +0000397 value = spd_read_byte(DIMM_SPD_BASE + i, SPD_REFRESH);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000398 if (value < 0)
399 continue;
400 reg = (reg & 0xf8) | refresh_rate_map[(value & 0x7f)];
401
402 PRINT_DEBUG(" Enabling refresh (DRAMC = 0x");
403 PRINT_DEBUG_HEX8(reg);
404 PRINT_DEBUG(") for DIMM ");
405 PRINT_DEBUG_HEX8(i);
406 PRINT_DEBUG("\r\n");
407 }
408
Uwe Hermann1683cef2008-11-27 00:47:07 +0000409 pci_write_config8(NB, DRAMC, reg);
Richard Smithcb8eab42006-07-24 04:25:47 +0000410}
411
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000412/*-----------------------------------------------------------------------------
413Public interface.
414-----------------------------------------------------------------------------*/
415
Uwe Hermann1683cef2008-11-27 00:47:07 +0000416static void sdram_set_registers(void)
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000417{
418 int i, max;
Uwe Hermannbc3594732007-06-07 22:16:30 +0000419 uint8_t reg;
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000420
421 PRINT_DEBUG("Northbridge prior to SDRAM init:\r\n");
422 DUMPNORTH();
423
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000424 max = ARRAY_SIZE(register_values);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000425
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000426 /* Set registers as specified in the register_values[] array. */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000427 for (i = 0; i < max; i += 3) {
Uwe Hermann1683cef2008-11-27 00:47:07 +0000428 reg = pci_read_config8(NB, register_values[i]);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000429 reg &= register_values[i + 1];
430 reg |= register_values[i + 2] & ~(register_values[i + 1]);
Uwe Hermann1683cef2008-11-27 00:47:07 +0000431 pci_write_config8(NB, register_values[i], reg);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000432
433 PRINT_DEBUG(" Set register 0x");
Uwe Hermannbc3594732007-06-07 22:16:30 +0000434 PRINT_DEBUG_HEX8(register_values[i]);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000435 PRINT_DEBUG(" to 0x");
Uwe Hermannbc3594732007-06-07 22:16:30 +0000436 PRINT_DEBUG_HEX8(reg);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000437 PRINT_DEBUG("\r\n");
438 }
439}
440
Uwe Hermann1683cef2008-11-27 00:47:07 +0000441static void sdram_set_spd_registers(void)
Richard Smithcb8eab42006-07-24 04:25:47 +0000442{
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000443 /* TODO: Don't hardcode the values here, get info via SPD. */
444
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000445 /* Map all legacy regions to RAM (read/write). This is required if
446 * you want to use the RAM area from 768 KB - 1 MB. If the PAM
447 * registers are not set here appropriately, the RAM in that region
448 * will not be accessible, thus a RAM check of it will also fail.
449 */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000450 pci_write_config8(NB, PAM0, 0x30);
451 pci_write_config8(NB, PAM1, 0x33);
452 pci_write_config8(NB, PAM2, 0x33);
453 pci_write_config8(NB, PAM3, 0x33);
454 pci_write_config8(NB, PAM4, 0x33);
455 pci_write_config8(NB, PAM5, 0x33);
456 pci_write_config8(NB, PAM6, 0x33);
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000457
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000458 /* TODO: Set DRB0-DRB7. */
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000459 /* Currently this is hardcoded to one 64 MB DIMM in slot 0. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000460 pci_write_config8(NB, DRB0, 0x08);
461 pci_write_config8(NB, DRB1, 0x08);
462 pci_write_config8(NB, DRB2, 0x08);
463 pci_write_config8(NB, DRB3, 0x08);
464 pci_write_config8(NB, DRB4, 0x08);
465 pci_write_config8(NB, DRB5, 0x08);
466 pci_write_config8(NB, DRB6, 0x08);
467 pci_write_config8(NB, DRB7, 0x08);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000468
469 /* TODO: Set DRAMC. Don't enable refresh for now. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000470 pci_write_config8(NB, DRAMC, 0x08);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000471
472 /* TODO: Set RPS. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000473 pci_write_config16(NB, RPS, 0x0001);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000474
475 /* TODO: Set SDRAMC. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000476 // pci_write_config16(NB, SDRAMC, 0x010f); // FIXME?
477 pci_write_config16(NB, SDRAMC, 0x0003); // FIXME?
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000478
479 /* TODO: Set PGPOL. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000480 // pci_write_config16(NB, PGPOL, 0x0107);
481 pci_write_config16(NB, PGPOL, 0x0123);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000482
483 /* TODO: Set NBXCFG. */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000484 // pci_write_config32(NB, NBXCFG, 0x0100220c); // FIXME?
485 pci_write_config32(NB, NBXCFG, 0xff00800c);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000486
487 /* TODO: Set PMCR? */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000488 // pci_write_config8(NB, PMCR, 0x14);
489 pci_write_config8(NB, PMCR, 0x10);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000490
491 /* TODO? */
Uwe Hermann1683cef2008-11-27 00:47:07 +0000492 pci_write_config8(NB, PCI_LATENCY_TIMER, 0x40);
493 pci_write_config8(NB, DRAMT, 0x03);
494 pci_write_config8(NB, MBSC, 0x03);
495 pci_write_config8(NB, SCRR, 0x38);
Richard Smithcb8eab42006-07-24 04:25:47 +0000496}
497
Uwe Hermann1683cef2008-11-27 00:47:07 +0000498static void sdram_enable(void)
Richard Smithcb8eab42006-07-24 04:25:47 +0000499{
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000500 int i;
Richard Smithcb8eab42006-07-24 04:25:47 +0000501
Uwe Hermann861f9642007-05-28 14:37:06 +0000502 /* 0. Wait until power/voltages and clocks are stable (200us). */
503 udelay(200);
Richard Smithcb8eab42006-07-24 04:25:47 +0000504
Uwe Hermann861f9642007-05-28 14:37:06 +0000505 /* 1. Apply NOP. Wait 200 clock cycles (200us should do). */
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000506 PRINT_DEBUG("RAM Enable 1: Apply NOP\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000507 do_ram_command(RAM_COMMAND_NOP, 0);
Uwe Hermann861f9642007-05-28 14:37:06 +0000508 udelay(200);
Richard Smithcb8eab42006-07-24 04:25:47 +0000509
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000510 /* 2. Precharge all. Wait tRP. */
511 PRINT_DEBUG("RAM Enable 2: Precharge all\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000512 do_ram_command(RAM_COMMAND_PRECHARGE, 0);
Uwe Hermann861f9642007-05-28 14:37:06 +0000513 udelay(1);
Richard Smithcb8eab42006-07-24 04:25:47 +0000514
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000515 /* 3. Perform 8 refresh cycles. Wait tRC each time. */
516 PRINT_DEBUG("RAM Enable 3: CBR\r\n");
517 for (i = 0; i < 8; i++) {
Uwe Hermann1683cef2008-11-27 00:47:07 +0000518 do_ram_command(RAM_COMMAND_CBR, 0);
Uwe Hermann861f9642007-05-28 14:37:06 +0000519 udelay(1);
Richard Smithcb8eab42006-07-24 04:25:47 +0000520 }
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000521
522 /* 4. Mode register set. Wait two memory cycles. */
523 PRINT_DEBUG("RAM Enable 4: Mode register set\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000524 do_ram_command(RAM_COMMAND_MRS, 0x1d0);
Uwe Hermann861f9642007-05-28 14:37:06 +0000525 udelay(2);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000526
527 /* 5. Normal operation. */
528 PRINT_DEBUG("RAM Enable 5: Normal operation\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000529 do_ram_command(RAM_COMMAND_NORMAL, 0);
Uwe Hermann861f9642007-05-28 14:37:06 +0000530 udelay(1);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000531
532 /* 6. Finally enable refresh. */
533 PRINT_DEBUG("RAM Enable 6: Enable refresh\r\n");
Uwe Hermann1683cef2008-11-27 00:47:07 +0000534 // pci_write_config8(NB, PMCR, 0x10);
535 spd_enable_refresh();
Uwe Hermann861f9642007-05-28 14:37:06 +0000536 udelay(1);
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000537
538 PRINT_DEBUG("Northbridge following SDRAM init:\r\n");
539 DUMPNORTH();
Richard Smithcb8eab42006-07-24 04:25:47 +0000540}