1 /* SPDX-License-Identifier: GPL-2.0-or-later */
6 #include <device/mmio.h>
7 #include <device/pci_ops.h>
8 #include <device/pci_def.h>
9 #include <device/smbus_host.h>
10 #include <console/console.h>
11 #include <commonlib/console/post_codes.h>
12 #include <timestamp.h>
17 * Macros and definitions
20 /* Debugging macros. */
21 #if CONFIG(DEBUG_RAM_SETUP)
22 #define PRINT_DEBUG(x...) printk(BIOS_DEBUG, x)
23 #define DUMPNORTH() dump_pci_device(NB)
25 #define PRINT_DEBUG(x...)
29 /* SDRAMC[7:5] - SDRAM Mode Select (SMS). */
30 #define RAM_COMMAND_NORMAL 0x0
31 #define RAM_COMMAND_NOP 0x1
32 #define RAM_COMMAND_PRECHARGE 0x2
33 #define RAM_COMMAND_MRS 0x3
34 #define RAM_COMMAND_CBR 0x4
36 /* Map the JEDEC SPD refresh rates (array index) to 440BX refresh rates as
37 * defined in DRAMC[2:0].
39 * [0] == Normal 15.625 us -> 15.6 us
40 * [1] == Reduced(.25X) 3.9 us -> 7.8 ns
41 * [2] == Reduced(.5X) 7.8 us -> 7.8 us
42 * [3] == Extended(2x) 31.3 us -> 31.2 us
43 * [4] == Extended(4x) 62.5 us -> 62.4 us
44 * [5] == Extended(8x) 125 us -> 124.8 us
46 static const uint32_t refresh_rate_map
[] = {
50 /* Table format: register, value. */
51 static const u8 register_values
[] = {
52 /* NBXCFG - NBX Configuration Register
55 * [31:24] SDRAM Row Without ECC
56 * 0 = ECC components are populated in this row
57 * 1 = ECC components are not populated in this row
59 * [18:18] Host Bus Fast Data Ready Enable (HBFDRE)
60 * Assertion of DRAM data on host bus occurs...
61 * 0 = ...one clock after sampling snoop results (default)
62 * 1 = ...on the same clock the snoop result is being sampled
63 * (this mode is faster by one clock cycle)
64 * [17:17] ECC - EDO static Drive mode
65 * 0 = Normal mode (default)
66 * 1 = ECC signals are always driven
67 * [16:16] IDSEL_REDIRECT
68 * 0 = IDSEL1 is allocated to this bridge (default)
69 * 1 = IDSEL7 is allocated to this bridge
70 * [15:15] WSC# Handshake Disable
71 * 1 = Uni-processor mode
72 * 0 = Dual-processor mode with external IOAPIC (default)
73 * [14:14] Intel Reserved
74 * [13:12] Host/DRAM Frequency
79 * [11:11] AGP to PCI Access Enable
82 * [10:10] PCI Agent to Aperture Access Disable
84 * 0 = Enable (default)
85 * [09:09] Aperture Access Global Enable
88 * [08:07] DRAM Data Integrity Mode (DDIM)
92 * 11 = ECC Mode with hardware scrubbing enabled
93 * [06:06] ECC Diagnostic Mode Enable (EDME)
95 * 0 = Normal operation mode (default)
96 * [05:05] MDA Present (MDAP)
97 * Works in conjunction with the VGA_EN bit.
99 * 0 x All VGA cycles are sent to PCI
100 * 1 0 All VGA cycles are sent to AGP
101 * 1 1 All VGA cycles are sent to AGP, except for
102 * cycles in the MDA range.
104 * [03:03] USWC Write Post During I/O Bridge Access Enable (UWPIO)
107 * [02:02] In-Order Queue Depth (IOQD)
108 * 1 = In-order queue = maximum
109 * 0 = A7# is sampled asserted (i.e., 0)
121 /* DRAMC - DRAM Control Register
125 * [5:5] Module Mode Configuration (MMCONFIG)
126 * The combination of SDRAMPWR and this bit (set by an
127 * external strapping option) determine how CKE works.
129 * 0 0 = 3 DIMM, CKE[5:0] driven
130 * X 1 = 3 DIMM, CKE0 only
131 * 1 0 = 4 DIMM, GCKE only
132 * [4:3] DRAM Type (DT)
135 * 10 = Registered SDRAM
137 * Note: EDO, SDRAM and Registered SDRAM cannot be mixed.
138 * [2:0] DRAM Refresh Rate (DRR)
139 * 000 = Refresh disabled
148 /* Choose SDRAM (not registered), and disable refresh for now. */
152 * PAM[6:0] - Programmable Attribute Map Registers
155 * 0x59 [3:0] Reserved
156 * 0x59 [5:4] 0xF0000 - 0xFFFFF BIOS area
157 * 0x5a [1:0] 0xC0000 - 0xC3FFF ISA add-on BIOS
158 * 0x5a [5:4] 0xC4000 - 0xC7FFF ISA add-on BIOS
159 * 0x5b [1:0] 0xC8000 - 0xCBFFF ISA add-on BIOS
160 * 0x5b [5:4] 0xCC000 - 0xCFFFF ISA add-on BIOS
161 * 0x5c [1:0] 0xD0000 - 0xD3FFF ISA add-on BIOS
162 * 0x5c [5:4] 0xD4000 - 0xD7FFF ISA add-on BIOS
163 * 0x5d [1:0] 0xD8000 - 0xDBFFF ISA add-on BIOS
164 * 0x5d [5:4] 0xDC000 - 0xDFFFF ISA add-on BIOS
165 * 0x5e [1:0] 0xE0000 - 0xE3FFF BIOS extension
166 * 0x5e [5:4] 0xE4000 - 0xE7FFF BIOS extension
167 * 0x5f [1:0] 0xE8000 - 0xEBFFF BIOS extension
168 * 0x5f [5:4] 0xEC000 - 0xEFFFF BIOS extension
171 * 00 = DRAM Disabled (all access goes to memory mapped I/O space)
172 * 01 = Read Only (Reads to DRAM, writes to memory mapped I/O space)
173 * 10 = Write Only (Writes to DRAM, reads to memory mapped I/O space)
174 * 11 = Read/Write (all access goes to DRAM)
178 * Map all legacy regions to RAM (read/write). This is required if
179 * you want to use the RAM area from 768 KB - 1 MB. If the PAM
180 * registers are not set here appropriately, the RAM in that region
181 * will not be accessible, thus a RAM check of it will also fail.
191 /* DRB[0:7] - DRAM Row Boundary Registers
194 * An array of 8 byte registers, which hold the ending memory address
195 * assigned to each pair of DIMMs, in 8MB granularity.
197 * 0x60 DRB0 = Total memory in row0 (in 8 MB)
198 * 0x61 DRB1 = Total memory in row0+1 (in 8 MB)
199 * 0x62 DRB2 = Total memory in row0+1+2 (in 8 MB)
200 * 0x63 DRB3 = Total memory in row0+1+2+3 (in 8 MB)
201 * 0x64 DRB4 = Total memory in row0+1+2+3+4 (in 8 MB)
202 * 0x65 DRB5 = Total memory in row0+1+2+3+4+5 (in 8 MB)
203 * 0x66 DRB6 = Total memory in row0+1+2+3+4+5+6 (in 8 MB)
204 * 0x67 DRB7 = Total memory in row0+1+2+3+4+5+6+7 (in 8 MB)
206 /* DRBs will be set later. */
208 /* FDHC - Fixed DRAM Hole Control Register
211 * Controls two fixed DRAM holes: 512 KB - 640 KB and 15 MB - 16 MB.
213 * [7:6] Hole Enable (HEN)
215 * 01 = 512 KB - 640 KB (128 KB)
216 * 10 = 15 MB - 16 MB (1 MB)
220 /* No memory holes. */
223 /* RPS - SDRAM Row Page Size Register
226 * Sets the row page size for SDRAM. For EDO memory, the page
227 * size is fixed at 2 KB.
229 * Bits[1:0] Page Size
235 * RPS bits Corresponding DRB register
236 * [01:00] DRB[0], row 0
237 * [03:02] DRB[1], row 1
238 * [05:04] DRB[2], row 2
239 * [07:06] DRB[3], row 3
240 * [09:08] DRB[4], row 4
241 * [11:10] DRB[5], row 5
242 * [13:12] DRB[6], row 6
243 * [15:14] DRB[7], row 7
245 /* Power on defaults to 2KB. Will be set later. */
247 /* SDRAMC - SDRAM Control Register
251 * [09:08] Idle/Pipeline DRAM Leadoff Timing (IPDLT)
253 * 01 = Add a clock delay to the lead-off clock count
255 * [07:05] SDRAM Mode Select (SMS)
256 * 000 = Normal SDRAM Operation (default)
257 * 001 = NOP Command Enable
258 * 010 = All Banks Precharge Enable
259 * 011 = Mode Register Set Enable
265 * 0 = 3 DIMM configuration
266 * 1 = 4 DIMM configuration
267 * [03:03] Leadoff Command Timing (LCT)
270 * [02:02] CAS# Latency (CL)
271 * 0 = 3 DCLK CAS# latency
272 * 1 = 2 DCLK CAS# latency
273 * [01:01] SDRAM RAS# to CAS# Delay (SRCD)
274 * 0 = 3 clocks between a row activate and a read or write cmd.
275 * 1 = 2 clocks between a row activate and a read or write cmd.
276 * [00:00] SDRAM RAS# Precharge (SRP)
277 * 0 = 3 clocks of RAS# precharge
278 * 1 = 2 clocks of RAS# precharge
280 #if CONFIG(SDRAMPWR_4DIMM)
281 SDRAMC
, 0x10, /* The board has 4 DIMM slots. */
283 SDRAMC
, 0x00, /* The board has 3 DIMM slots. */
286 /* PGPOL - Paging Policy Register
289 * [15:08] Banks per Row (BPR)
290 * Each bit in this field corresponds to one row of the memory
291 * array. Bit 15 corresponds to row 7 while bit 8 corresponds
292 * to row 0. Bits for empty rows are "don't care".
296 * [04:04] Intel Reserved
297 * [03:00] DRAM Idle Timer (DIT)
306 * 1xxx = Infinite (pages are not closed for idle condition)
308 /* PGPOL will be set later. */
310 /* PMCR - Power Management Control Register
313 * [7] Power Down SDRAM Enable (PDSE)
316 * [6] ACPI Control Register Enable (SCRE)
318 * 0 = Disable (default)
319 * [5] Suspend Refresh Type (SRT)
320 * 1 = Self refresh mode
322 * [4] Normal Refresh Enable (NREF_EN)
325 * [3] Quick Start Mode (QSTART)
326 * 1 = Quick start mode for the processor is enabled
327 * [2] Gated Clock Enable (GCLKEN)
330 * [1] AGP Disable (AGP_DIS)
331 * 1 = AGP disabled (Hardware strap)
332 * [0] CPU reset without PCIRST enable (CRst_En)
336 /* PMCR will be set later. */
338 /* Enable SCRR.SRRAEN and let BX choose the SRR. */
342 /*-----------------------------------------------------------------------------
343 SDRAM configuration functions.
344 -----------------------------------------------------------------------------*/
347 * Send the specified RAM command to all DIMMs.
349 * @param command The RAM command to send to the DIMM(s).
351 static void do_ram_command(u32 command
)
354 u8 dimm_start
, dimm_end
;
359 /* Configure the RAM command. */
360 reg16
= pci_read_config16(NB
, SDRAMC
);
361 reg16
&= 0xff1f; /* Clear bits 7-5. */
362 reg16
|= (u16
)(command
<< 5); /* Write command into bits 7-5. */
363 pci_write_config16(NB
, SDRAMC
, reg16
);
366 * RAM_COMMAND_NORMAL affects only the memory controller and
367 * doesn't need to be "sent" to the DIMMs.
369 if (command
== RAM_COMMAND_NORMAL
)
372 /* Send the RAM command to each row of memory. */
374 for (i
= 0; i
< (DIMM_SOCKETS
* 2); i
++) {
376 caslatency
= 3; /* TODO: Dynamically get CAS latency later. */
377 if (command
== RAM_COMMAND_MRS
) {
379 * MAA[12:11,9:0] must be inverted when sent to DIMM
380 * 2 or 3 (no inversion if sent to DIMM 0 or 1).
382 if ((i
>= 0 && i
<= 3) && caslatency
== 3)
384 if ((i
>= 4 && i
<= 7) && caslatency
== 3)
385 addr_offset
= 0x1e28;
386 if ((i
>= 0 && i
<= 3) && caslatency
== 2)
388 if ((i
>= 4 && i
<= 7) && caslatency
== 2)
389 addr_offset
= 0x1ea8;
392 dimm_end
= pci_read_config8(NB
, DRB
+ i
);
394 addr
= (void *)((dimm_start
* 8 * 1024 * 1024) + addr_offset
);
395 if (dimm_end
> dimm_start
) {
399 /* Set the start of the next DIMM. */
400 dimm_start
= dimm_end
;
404 static void set_dram_buffer_strength(void)
407 * Program MBSC[39:0] and MBFS[23:0].
409 * The 440BX datasheet says buffer frequency is independent from bus
410 * frequency and mismatch both ways are possible.
412 * MBSC[47:40] and MBFS[23] are reserved.
415 unsigned int i
, reg
, drb
;
416 uint8_t mbsc0
, mbfs0
, mbfs1
, mbfs2
;
417 uint16_t mbsc1
, mbsc3
;
420 * Tally how many rows between rows 0-3 and rows 4-7 are populated.
421 * This determines how to program MBFS and MBSC.
426 for (drb
= 0, i
= DRB0
; i
<= DRB7
; i
++) {
427 reg
= pci_read_config8(NB
, i
);
438 if (CONFIG(SDRAMPWR_4DIMM
)) {
440 * For a 4 DIMM board, based on ASUS P2B-LS mainboard.
442 * There are four main conditions to check when programming
443 * DRAM buffer frequency and strength:
445 * a: >2 rows populated across DIMM0,1
446 * b: >2 rows populated across DIMM2,3
447 * c: >4 rows populated across all DIMM slots
449 * 1: NBXCFG[13] strapped as 100MHz, or
450 * 6: NBXCFG[13] strapped as 66MHz
452 * CKE0/FENA ----------------------------------------------------------+
453 * CKE1/GCKE ----------------------[ MBFS ]---------------------+|
454 * DQMA/CASA[764320]# -------------[ 0 = 66MHz ]--------------------+||
455 * DQMB1/CASB1# (Fixed for 66MHz) -[ 1 = 100MHz ]-------------------+|||
456 * DQMB5/CASB5# (Fixed for 66MHz) ---------------------------------+||||
457 * DQMA1/CASA1# (Fixed for 66MHz) --------------------------------+|||||
458 * DQMA5/CASA5# (Fixed for 66MHz) -------------------------------+||||||
459 * CSA[5:0]#,CSB[5:0]# ------------------------------------++++++|||||||
460 * CS[B7,A7,B6,A6]#/CKE[5342] -------------------------++++|||||||||||||
461 * MECC[7:0] #2/#1 ----------------------------------++|||||||||||||||||
462 * MD[63:0] #2/#1 ---------------------------------++|||||||||||||||||||
463 * MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB# -+|||||||||||||||||||||
464 * MAA[13:0],WEA#,SRASA#,SCASA# -----------------+||||||||||||||||||||||
465 * Reserved ------------------------------------+|||||||||||||||||||||||
466 * ||||||||||||||||||||||||
467 * 3 32 21 10 0 * 2 21 10 0
468 * 9876543210987654321098765432109876543210 * 321098765432109876543210
469 * 10------------------------1010---------- a -1---------------11-----
470 * 11------------------------1111---------- !a -0---------------00-----
471 * --10--------------------------1010------ b --1----------------11---
472 * --11--------------------------1111------ !b --0----------------00---
473 * ----------------------------------1100-- c ----------------------1-
474 * ----------------------------------1011-- !c ----------------------0-
475 * ----1010101000000000000000------------00 1 ---11111111111111----1-0
476 * ----000000000000000000000010101010----00 6 ---1111111111111100000-0
477 * | | | | | | | | | | ||||||| | | | | | |
478 * | | | | | | | | | | ||||||| | | | | | +- CKE0/FENA
479 * | | | | | | | | | | ||||||| | | | | +--- CKE1/GCKE
480 * | | | | | | | | | | ||||||| | | | +----- DQMA/CASA[764320]#
481 * | | | | | | | | | | ||||||| | | +------- DQMB1/CASB1# (66MHz: 2x)
482 * | | | | | | | | | | ||||||| | +--------- DQMB5/CASB5# (66MHz: 2x)
483 * | | | | | | | | | | ||||||| +----------- DQMA1/CASA1# (66MHz: 2x)
484 * | | | | | | | | | | ||||||+------------- DQMA5/CASA5# (66MHz: 2x)
485 * | | | | | | | | | | ++++++-------------- CSA0-5#,CSB0-5# (1x)
486 * | | | | | | | | | +--------------------- CSA6#/CKE2
487 * | | | | | | | | +---[ MBSC ]------ CSB6#/CKE4
488 * | | | | | | | +-----[ 00 = 1x ]------ CSA7#/CKE3
489 * | | | | | | +-------[ 01 invalid ]------ CSB7#/CKE5
490 * | | | | | +---------[ 10 = 2x ]------ MECC[7:0] #1
491 * | | | | +-----------[ 11 = 3x ]------ MECC[7:0] #2
492 * | | | +--------------------------------- MD[63:0] #1
493 * | | +----------------------------------- MD[63:0] #2
494 * | +------------------ MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB#
495 * +------------------------------------- MAA[13:0],WEA#,SRASA#,SCASA#
503 if (pci_read_config8(NB
, NBXCFG
+ 1) & 0x30) {
532 if ((dimm03
+ dimm47
) > 4) {
540 * For a 3 DIMM board, based on ASUS P2B mainboard.
542 * There are two main conditions to check when programming DRAM buffer
543 * frequency and strength:
545 * a: >2 rows populated across DIMM0,1
546 * c: >4 rows populated across all DIMM slots
548 * CKE0 ---------------------------------------------------------------+
549 * CKE1 ------------------------[ MBFS ]------------------------+|
550 * DQMA/CASA[764320]# ----------[ 0 = 66MHz ]-----------------------+||
551 * DQMB1/CASB1# ----------------[ 1 = 100MHz ]----------------------+|||
552 * DQMB5/CASB5# ---------------------------------------------------+||||
553 * DQMA1/CASA1# --------------------------------------------------+|||||
554 * DQMA5/CASA5# -------------------------------------------------+||||||
555 * CSA0-5#,CSB0-5# ----------------------------------------++++++|||||||
556 * CS[B7,A7,B6,A6]#/CKE[5342] -------------------------++++|||||||||||||
557 * MECC[7:0] #2/#1 (100MHz) -------------------------++|||||||||||||||||
558 * MD[63:0] #2/#1 (100MHz) ------------------------++|||||||||||||||||||
559 * MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB# -+|||||||||||||||||||||
560 * MAA[13:0],WEA#,SRASA#,SCASA# -----------------+||||||||||||||||||||||
561 * Reserved ------------------------------------+|||||||||||||||||||||||
562 * ||||||||||||||||||||||||
563 * 3 32 21 10 0 * 2 21 10 0
564 * 9876543210987654321098765432109876543210 * 321098765432109876543210
565 * 10------------------------1111---------- a -1----------------------
566 * 11------------------------1010---------- !a -0----------------------
567 * --110000000010101010111111----1010--1010 * --01111000000000000000-0
568 * ----------------------------------11---- c ----------------------1-
569 * ----------------------------------10---- !c ----------------------0-
570 * | | | | | | | | | | ||||||| | | | | | |
571 * | | | | | | | | | | ||||||| | | | | | +- CKE0
572 * | | | | | | | | | | ||||||| | | | | +--- CKE1
573 * | | | | | | | | | | ||||||| | | | +----- DQMA/CASA[764320]#
574 * | | | | | | | | | | ||||||| | | +------- DQMB1/CASB1#
575 * | | | | | | | | | | ||||||| | +--------- DQMB5/CASB5#
576 * | | | | | | | | | | ||||||| +----------- DQMA1/CASA1#
577 * | | | | | | | | | | ||||||+------------- DQMA5/CASA5#
578 * | | | | | | | | | | ++++++-------------- CSA0-5#,CSB0-5# (2x)
579 * | | | | | | | | | +--------------------- CSA6#/CKE2
580 * | | | | | | | | +---[ MBSC ]------ CSB6#/CKE4
581 * | | | | | | | +-----[ 00 = 1x ]------ CSA7#/CKE3
582 * | | | | | | +-------[ 01 invalid ]------ CSB7#/CKE5
583 * | | | | | +---------[ 10 = 2x ]------ MECC[7:0] #1 (1x)
584 * | | | | +-----------[ 11 = 3x ]------ MECC[7:0] #2 (1x)
585 * | | | +--------------------------------- MD[63:0] #1 (1x)
586 * | | +----------------------------------- MD[63:0] #2 (1x)
587 * | +------------------ MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB#
588 * +------------------------------------- MAA[13:0],WEA#,SRASA#,SCASA#
604 if ((dimm03
+ dimm47
) > 4) {
610 pci_write_config8(NB
, MBSC
+ 0, mbsc0
);
611 pci_write_config16(NB
, MBSC
+ 1, mbsc1
);
612 pci_write_config16(NB
, MBSC
+ 3, mbsc3
);
613 pci_write_config16(NB
, MBFS
+ 0, mbfs1
<< 8 | mbfs0
);
614 pci_write_config8(NB
, MBFS
+ 2, mbfs2
);
617 /*-----------------------------------------------------------------------------
618 DIMM-independent configuration functions.
619 -----------------------------------------------------------------------------*/
621 static void spd_enable_refresh(void)
626 reg
= pci_read_config8(NB
, DRAMC
);
628 for (i
= 0; i
< DIMM_SOCKETS
; i
++) {
629 value
= smbus_read_byte(DIMM0
+ i
, SPD_REFRESH
);
632 reg
= (reg
& 0xf8) | refresh_rate_map
[(value
& 0x7f)];
634 PRINT_DEBUG(" Enabling refresh (DRAMC = 0x%02x) for DIMM %02x\n", reg
, i
);
637 pci_write_config8(NB
, DRAMC
, reg
);
640 /*-----------------------------------------------------------------------------
642 -----------------------------------------------------------------------------*/
644 static void sdram_set_registers(void)
648 PRINT_DEBUG("Northbridge %s SDRAM init:\n", "prior to");
651 max
= ARRAY_SIZE(register_values
);
653 /* Set registers as specified in the register_values[] array. */
654 for (i
= 0; i
< max
; i
+= 2)
655 pci_write_config8(NB
, register_values
[i
], register_values
[i
+ 1]);
663 static struct dimm_size
spd_get_dimm_size(unsigned int device
)
666 int i
, module_density
, dimm_banks
;
668 module_density
= smbus_read_byte(device
, SPD_DENSITY_OF_EACH_ROW_ON_MODULE
);
669 dimm_banks
= smbus_read_byte(device
, SPD_NUM_DIMM_BANKS
);
671 /* Find the size of side1. */
672 /* Find the larger value. The larger value is always side1. */
673 for (i
= 512; i
>= 0; i
>>= 1) {
674 if ((module_density
& i
) == i
) {
680 /* Set to 0 in case it's single sided. */
683 /* Test if it's a dual-sided DIMM. */
684 if (dimm_banks
> 1) {
685 /* Test if there's a second value. If so it's asymmetrical. */
686 if (module_density
!= i
) {
688 * Find second value, picking up where we left off.
689 * i >>= 1 done initially to make sure we don't get
690 * the same value again.
692 for (i
>>= 1; i
>= 0; i
>>= 1) {
693 if (module_density
== (sz
.side1
| i
)) {
698 /* If not, it's symmetrical. */
705 * SPD byte 31 is the memory size divided by 4 so we
706 * need to multiply by 4 to get the total size.
712 * It is possible to partially use larger than supported
713 * modules by setting them to a supported size.
715 if (sz
.side1
> 128) {
716 PRINT_DEBUG("Side%d was %dMB but only 128MB will be used.\n",
720 if (sz
.side2
> 128) {
721 PRINT_DEBUG("Side%d was %dMB but only 128MB will be used.\n",
730 * Sets DRAM attributes one DIMM at a time, based on SPD data.
731 * Northbridge settings that are set: NBXCFG[31:24], DRB0-DRB7, RPS, DRAMC.
733 static void set_dram_row_attributes(void)
735 int i
, dra
, drb
, col
, width
, value
, rps
;
736 u8 bpr
; /* Top 8 bits of PGPOL */
737 u8 nbxecc
= 0; /* NBXCFG[31:24] */
738 u8 edo
, sd
, regsd
; /* EDO, SDRAM, registered SDRAM */
747 for (i
= 0; i
< DIMM_SOCKETS
; i
++) {
753 /* First check if a DIMM is actually present. */
754 value
= smbus_read_byte(device
, SPD_MEMORY_TYPE
);
755 /* This is 440BX! We do EDO too! */
756 if (value
== SPD_MEMORY_TYPE_EDO
757 || value
== SPD_MEMORY_TYPE_SDRAM
) {
758 if (value
== SPD_MEMORY_TYPE_EDO
) {
760 } else if (value
== SPD_MEMORY_TYPE_SDRAM
) {
763 PRINT_DEBUG("Found DIMM in slot %d\n", i
);
766 die_with_post_code(POSTCODE_RAM_FAILURE
,
767 "Mixing EDO/SDRAM unsupported!\n");
770 /* "DRA" is our RPS for the two rows on this DIMM. */
774 col
= smbus_read_byte(device
, SPD_NUM_COLUMNS
);
777 * Is this an ECC DIMM? Actually will be a 2 if so.
778 * TODO: Other register than NBXCFG also needs this
781 value
= smbus_read_byte(device
, SPD_DIMM_CONFIG_TYPE
);
784 width
= smbus_read_byte(device
, SPD_MODULE_DATA_WIDTH_LSB
);
786 /* Exclude error checking data width from page size calculations */
788 value
= smbus_read_byte(device
,
789 SPD_ERROR_CHECKING_SDRAM_WIDTH
);
792 /* Clear top 2 bits to help set up NBXCFG. */
795 /* Without ECC, top 2 bits should be 11. */
799 /* If any installed DIMM is *not* registered, this system cannot be
800 * configured for registered SDRAM.
801 * By registered, only the address and control lines need to be, which
802 * we can tell by reading SPD byte 21, bit 1.
804 value
= smbus_read_byte(device
, SPD_MODULE_ATTRIBUTES
);
806 PRINT_DEBUG("DIMM is ");
807 if ((value
& MODULE_REGISTERED
) == 0) {
811 PRINT_DEBUG("registered\n");
813 /* Calculate page size in bits. */
814 value
= ((1 << col
) * width
);
819 /* Number of banks of DIMM (single or double sided). */
820 value
= smbus_read_byte(device
, SPD_NUM_DIMM_BANKS
);
822 /* Once we have dra, col is done and can be reused.
823 * So it's reused for number of banks.
825 col
= smbus_read_byte(device
, SPD_NUM_BANKS_PER_SDRAM
);
829 * Second bank of 1-bank DIMMs "doesn't have
830 * ECC" - or anything.
834 } else if (dra
== 4) {
836 } else if (dra
== 8) {
838 } else if (dra
>= 16) {
839 /* Page sizes larger than supported are
840 * set to 8KB to use module partially.
842 PRINT_DEBUG("Page size forced to 8KB.\n");
848 * Sets a flag in PGPOL[BPR] if this DIMM has
853 } else if (value
== 2) {
856 } else if (dra
== 4) {
857 dra
= 0x05; /* 4KB */
858 } else if (dra
== 8) {
859 dra
= 0x0a; /* 8KB */
860 } else if (dra
>= 16) {
862 PRINT_DEBUG("Page size forced to 8KB.\n");
863 dra
= 0x0a; /* 8KB */
871 die_with_post_code(POSTCODE_RAM_FAILURE
,
872 "# of banks of DIMM unsupported!\n");
875 die_with_post_code(POSTCODE_RAM_FAILURE
,
876 "Page size not supported!\n");
880 * 440BX supports asymmetrical dual-sided DIMMs,
881 * but can't handle DIMMs smaller than 8MB per
884 struct dimm_size sz
= spd_get_dimm_size(device
);
885 if ((sz
.side1
< 8)) {
886 die_with_post_code(POSTCODE_RAM_FAILURE
,
887 "DIMMs smaller than 8MB per side "
888 "are not supported!\n");
891 /* Divide size by 8 to set up the DRB registers. */
892 drb
+= (sz
.side1
/ 8);
895 * Build the DRB for the next row in MSB so it gets
896 * placed in DRB[n+1] where it belongs when written
900 drb
|= (drb
+ (sz
.side2
/ 8)) << 8;
902 /* If there's no DIMM in the slot, set dra to 0x00. */
904 /* Still have to propagate DRB over. */
909 pci_write_config16(NB
, DRB
+ (2 * i
), drb
);
911 /* Brings the upper DRB back down to be base for
912 * DRB calculations for the next two rows.
916 rps
|= (dra
& 0x0f) << (i
* 4);
919 /* Set paging policy register. */
920 pci_write_config8(NB
, PGPOL
+ 1, bpr
);
921 PRINT_DEBUG("%s has been set to 0x%02x\n", "PGPOL[BPR]", bpr
);
923 /* Set DRAM row page size register. */
924 pci_write_config16(NB
, RPS
, rps
);
925 PRINT_DEBUG("RPS has been set to 0x%04x\n", rps
);
928 pci_write_config8(NB
, NBXCFG
+ 3, nbxecc
);
929 PRINT_DEBUG("%s has been set to 0x%02x\n", "NBXCFG[31:24]", nbxecc
);
931 /* Set DRAMC[4:3] to proper memory type (EDO/SDRAM/Registered SDRAM). */
933 /* i will be used to set DRAMC[4:3]. */
935 i
= 0x10; // Registered SDRAM
942 value
= pci_read_config8(NB
, DRAMC
) & 0xe7;
944 pci_write_config8(NB
, DRAMC
, value
);
945 PRINT_DEBUG("%s has been set to 0x%02x\n", "DRAMC", value
);
948 static void sdram_enable(void)
952 /* 0. Wait until power/voltages and clocks are stable (200us). */
955 /* 1. Apply NOP. Wait 200 clock cycles (200us should do). */
956 PRINT_DEBUG("RAM Enable %d: %s\n", 1, "Apply NOP");
957 do_ram_command(RAM_COMMAND_NOP
);
960 /* 2. Precharge all. Wait tRP. */
961 PRINT_DEBUG("RAM Enable %d: %s\n", 2, "Precharge all");
962 do_ram_command(RAM_COMMAND_PRECHARGE
);
965 /* 3. Perform 8 refresh cycles. Wait tRC each time. */
966 PRINT_DEBUG("RAM Enable %d: %s\n", 3, "CBR");
967 for (i
= 0; i
< 8; i
++) {
968 do_ram_command(RAM_COMMAND_CBR
);
972 /* 4. Mode register set. Wait two memory cycles. */
973 PRINT_DEBUG("RAM Enable %d: %s\n", 4, "Mode register set");
974 do_ram_command(RAM_COMMAND_MRS
);
977 /* 5. Normal operation. */
978 PRINT_DEBUG("RAM Enable %d: %s\n", 5, "Normal operation");
979 do_ram_command(RAM_COMMAND_NORMAL
);
982 /* 6. Finally enable refresh. */
983 PRINT_DEBUG("RAM Enable %d: %s\n", 6, "Enable refresh");
984 pci_write_config8(NB
, PMCR
, 0x10);
985 spd_enable_refresh();
988 PRINT_DEBUG("Northbridge %s SDRAM init:\n", "following");
992 /* Implemented under mainboard. */
993 void __weak
enable_spd(void) { }
995 void sdram_initialize(int s3resume
)
997 timestamp_add_now(TS_INITRAM_START
);
1000 dump_spd_registers();
1001 sdram_set_registers();
1002 /* Set up DRAM row boundary registers and other attributes. */
1003 set_dram_row_attributes();
1004 /* Set up DRAM buffer strength. */
1005 set_dram_buffer_strength();
1008 /* Clear any errors reported during raminit. */
1009 pci_write_config32(NB
, EAP
, 0x3);
1010 pci_write_config8(NB
, ERRSTS
, 0x11);
1011 pci_write_config8(NB
, ERRSTS
+ 1, 0x1f);
1013 timestamp_add_now(TS_INITRAM_END
);