coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
raminit.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <spd.h>
4 #include <delay.h>
5 #include <stdint.h>
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 <timestamp.h>
12 #include "i440bx.h"
13 #include "raminit.h"
14 
15 /*
16  * Macros and definitions
17  */
18 
19 /* Debugging macros. */
20 #if CONFIG(DEBUG_RAM_SETUP)
21 #define PRINT_DEBUG(x...) printk(BIOS_DEBUG, x)
22 #define DUMPNORTH() dump_pci_device(NB)
23 #else
24 #define PRINT_DEBUG(x...)
25 #define DUMPNORTH()
26 #endif
27 
28 /* SDRAMC[7:5] - SDRAM Mode Select (SMS). */
29 #define RAM_COMMAND_NORMAL 0x0
30 #define RAM_COMMAND_NOP 0x1
31 #define RAM_COMMAND_PRECHARGE 0x2
32 #define RAM_COMMAND_MRS 0x3
33 #define RAM_COMMAND_CBR 0x4
34 
35 /* Map the JEDEC SPD refresh rates (array index) to 440BX refresh rates as
36  * defined in DRAMC[2:0].
37  *
38  * [0] == Normal 15.625 us -> 15.6 us
39  * [1] == Reduced(.25X) 3.9 us -> 7.8 ns
40  * [2] == Reduced(.5X) 7.8 us -> 7.8 us
41  * [3] == Extended(2x) 31.3 us -> 31.2 us
42  * [4] == Extended(4x) 62.5 us -> 62.4 us
43  * [5] == Extended(8x) 125 us -> 124.8 us
44  */
45 static const uint32_t refresh_rate_map[] = {
46  1, 5, 5, 2, 3, 4
47 };
48 
49 /* Table format: register, value. */
50 static const u8 register_values[] = {
51  /* NBXCFG - NBX Configuration Register
52  * 0x50 - 0x53
53  *
54  * [31:24] SDRAM Row Without ECC
55  * 0 = ECC components are populated in this row
56  * 1 = ECC components are not populated in this row
57  * [23:19] Reserved
58  * [18:18] Host Bus Fast Data Ready Enable (HBFDRE)
59  * Assertion of DRAM data on host bus occurs...
60  * 0 = ...one clock after sampling snoop results (default)
61  * 1 = ...on the same clock the snoop result is being sampled
62  * (this mode is faster by one clock cycle)
63  * [17:17] ECC - EDO static Drive mode
64  * 0 = Normal mode (default)
65  * 1 = ECC signals are always driven
66  * [16:16] IDSEL_REDIRECT
67  * 0 = IDSEL1 is allocated to this bridge (default)
68  * 1 = IDSEL7 is allocated to this bridge
69  * [15:15] WSC# Handshake Disable
70  * 1 = Uni-processor mode
71  * 0 = Dual-processor mode with external IOAPIC (default)
72  * [14:14] Intel Reserved
73  * [13:12] Host/DRAM Frequency
74  * 00 = 100 MHz
75  * 01 = Reserved
76  * 10 = 66 MHz
77  * 11 = Reserved
78  * [11:11] AGP to PCI Access Enable
79  * 1 = Enable
80  * 0 = Disable
81  * [10:10] PCI Agent to Aperture Access Disable
82  * 1 = Disable
83  * 0 = Enable (default)
84  * [09:09] Aperture Access Global Enable
85  * 1 = Enable
86  * 0 = Disable
87  * [08:07] DRAM Data Integrity Mode (DDIM)
88  * 00 = Non-ECC
89  * 01 = EC-only
90  * 10 = ECC Mode
91  * 11 = ECC Mode with hardware scrubbing enabled
92  * [06:06] ECC Diagnostic Mode Enable (EDME)
93  * 1 = Enable
94  * 0 = Normal operation mode (default)
95  * [05:05] MDA Present (MDAP)
96  * Works in conjunction with the VGA_EN bit.
97  * VGA_EN MDAP
98  * 0 x All VGA cycles are sent to PCI
99  * 1 0 All VGA cycles are sent to AGP
100  * 1 1 All VGA cycles are sent to AGP, except for
101  * cycles in the MDA range.
102  * [04:04] Reserved
103  * [03:03] USWC Write Post During I/O Bridge Access Enable (UWPIO)
104  * 1 = Enable
105  * 0 = Disable
106  * [02:02] In-Order Queue Depth (IOQD)
107  * 1 = In-order queue = maximum
108  * 0 = A7# is sampled asserted (i.e., 0)
109  * [01:00] Reserved
110  */
111  NBXCFG + 0, 0x0c,
112 #if CONFIG(SMP)
113  NBXCFG + 1, 0x00,
114 #else
115  NBXCFG + 1, 0x80,
116 #endif
117  NBXCFG + 2, 0x00,
118  NBXCFG + 3, 0xff,
119 
120  /* DRAMC - DRAM Control Register
121  * 0x57
122  *
123  * [7:6] Reserved
124  * [5:5] Module Mode Configuration (MMCONFIG)
125  * The combination of SDRAMPWR and this bit (set by an
126  * external strapping option) determine how CKE works.
127  * SDRAMPWR MMCONFIG
128  * 0 0 = 3 DIMM, CKE[5:0] driven
129  * X 1 = 3 DIMM, CKE0 only
130  * 1 0 = 4 DIMM, GCKE only
131  * [4:3] DRAM Type (DT)
132  * 00 = EDO
133  * 01 = SDRAM
134  * 10 = Registered SDRAM
135  * 11 = Reserved
136  * Note: EDO, SDRAM and Registered SDRAM cannot be mixed.
137  * [2:0] DRAM Refresh Rate (DRR)
138  * 000 = Refresh disabled
139  * 001 = 15.6 us
140  * 010 = 31.2 us
141  * 011 = 62.4 us
142  * 100 = 124.8 us
143  * 101 = 249.6 us
144  * 110 = Reserved
145  * 111 = Reserved
146  */
147  /* Choose SDRAM (not registered), and disable refresh for now. */
148  DRAMC, 0x08,
149 
150  /*
151  * PAM[6:0] - Programmable Attribute Map Registers
152  * 0x59 - 0x5f
153  *
154  * 0x59 [3:0] Reserved
155  * 0x59 [5:4] 0xF0000 - 0xFFFFF BIOS area
156  * 0x5a [1:0] 0xC0000 - 0xC3FFF ISA add-on BIOS
157  * 0x5a [5:4] 0xC4000 - 0xC7FFF ISA add-on BIOS
158  * 0x5b [1:0] 0xC8000 - 0xCBFFF ISA add-on BIOS
159  * 0x5b [5:4] 0xCC000 - 0xCFFFF ISA add-on BIOS
160  * 0x5c [1:0] 0xD0000 - 0xD3FFF ISA add-on BIOS
161  * 0x5c [5:4] 0xD4000 - 0xD7FFF ISA add-on BIOS
162  * 0x5d [1:0] 0xD8000 - 0xDBFFF ISA add-on BIOS
163  * 0x5d [5:4] 0xDC000 - 0xDFFFF ISA add-on BIOS
164  * 0x5e [1:0] 0xE0000 - 0xE3FFF BIOS extension
165  * 0x5e [5:4] 0xE4000 - 0xE7FFF BIOS extension
166  * 0x5f [1:0] 0xE8000 - 0xEBFFF BIOS extension
167  * 0x5f [5:4] 0xEC000 - 0xEFFFF BIOS extension
168  *
169  * Bit assignment:
170  * 00 = DRAM Disabled (all access goes to memory mapped I/O space)
171  * 01 = Read Only (Reads to DRAM, writes to memory mapped I/O space)
172  * 10 = Write Only (Writes to DRAM, reads to memory mapped I/O space)
173  * 11 = Read/Write (all access goes to DRAM)
174  */
175 
176  /*
177  * Map all legacy regions to RAM (read/write). This is required if
178  * you want to use the RAM area from 768 KB - 1 MB. If the PAM
179  * registers are not set here appropriately, the RAM in that region
180  * will not be accessible, thus a RAM check of it will also fail.
181  */
182  PAM0, 0x30,
183  PAM1, 0x33,
184  PAM2, 0x33,
185  PAM3, 0x33,
186  PAM4, 0x33,
187  PAM5, 0x33,
188  PAM6, 0x33,
189 
190  /* DRB[0:7] - DRAM Row Boundary Registers
191  * 0x60 - 0x67
192  *
193  * An array of 8 byte registers, which hold the ending memory address
194  * assigned to each pair of DIMMs, in 8MB granularity.
195  *
196  * 0x60 DRB0 = Total memory in row0 (in 8 MB)
197  * 0x61 DRB1 = Total memory in row0+1 (in 8 MB)
198  * 0x62 DRB2 = Total memory in row0+1+2 (in 8 MB)
199  * 0x63 DRB3 = Total memory in row0+1+2+3 (in 8 MB)
200  * 0x64 DRB4 = Total memory in row0+1+2+3+4 (in 8 MB)
201  * 0x65 DRB5 = Total memory in row0+1+2+3+4+5 (in 8 MB)
202  * 0x66 DRB6 = Total memory in row0+1+2+3+4+5+6 (in 8 MB)
203  * 0x67 DRB7 = Total memory in row0+1+2+3+4+5+6+7 (in 8 MB)
204  */
205  /* DRBs will be set later. */
206 
207  /* FDHC - Fixed DRAM Hole Control Register
208  * 0x68
209  *
210  * Controls two fixed DRAM holes: 512 KB - 640 KB and 15 MB - 16 MB.
211  *
212  * [7:6] Hole Enable (HEN)
213  * 00 = None
214  * 01 = 512 KB - 640 KB (128 KB)
215  * 10 = 15 MB - 16 MB (1 MB)
216  * 11 = Reserved
217  * [5:0] Reserved
218  */
219  /* No memory holes. */
220  FDHC, 0x00,
221 
222  /* RPS - SDRAM Row Page Size Register
223  * 0x74 - 0x75
224  *
225  * Sets the row page size for SDRAM. For EDO memory, the page
226  * size is fixed at 2 KB.
227  *
228  * Bits[1:0] Page Size
229  * 00 2 KB
230  * 01 4 KB
231  * 10 8 KB
232  * 11 Reserved
233  *
234  * RPS bits Corresponding DRB register
235  * [01:00] DRB[0], row 0
236  * [03:02] DRB[1], row 1
237  * [05:04] DRB[2], row 2
238  * [07:06] DRB[3], row 3
239  * [09:08] DRB[4], row 4
240  * [11:10] DRB[5], row 5
241  * [13:12] DRB[6], row 6
242  * [15:14] DRB[7], row 7
243  */
244  /* Power on defaults to 2KB. Will be set later. */
245 
246  /* SDRAMC - SDRAM Control Register
247  * 0x76 - 0x77
248  *
249  * [15:10] Reserved
250  * [09:08] Idle/Pipeline DRAM Leadoff Timing (IPDLT)
251  * 00 = Illegal
252  * 01 = Add a clock delay to the lead-off clock count
253  * 1x = Illegal
254  * [07:05] SDRAM Mode Select (SMS)
255  * 000 = Normal SDRAM Operation (default)
256  * 001 = NOP Command Enable
257  * 010 = All Banks Precharge Enable
258  * 011 = Mode Register Set Enable
259  * 100 = CBR Enable
260  * 101 = Reserved
261  * 110 = Reserved
262  * 111 = Reserved
263  * [04:04] SDRAMPWR
264  * 0 = 3 DIMM configuration
265  * 1 = 4 DIMM configuration
266  * [03:03] Leadoff Command Timing (LCT)
267  * 0 = 4 CS# Clock
268  * 1 = 3 CS# Clock
269  * [02:02] CAS# Latency (CL)
270  * 0 = 3 DCLK CAS# latency
271  * 1 = 2 DCLK CAS# latency
272  * [01:01] SDRAM RAS# to CAS# Delay (SRCD)
273  * 0 = 3 clocks between a row activate and a read or write cmd.
274  * 1 = 2 clocks between a row activate and a read or write cmd.
275  * [00:00] SDRAM RAS# Precharge (SRP)
276  * 0 = 3 clocks of RAS# precharge
277  * 1 = 2 clocks of RAS# precharge
278  */
279 #if CONFIG(SDRAMPWR_4DIMM)
280  SDRAMC, 0x10, /* The board has 4 DIMM slots. */
281 #else
282  SDRAMC, 0x00, /* The board has 3 DIMM slots. */
283 #endif
284 
285  /* PGPOL - Paging Policy Register
286  * 0x78 - 0x79
287  *
288  * [15:08] Banks per Row (BPR)
289  * Each bit in this field corresponds to one row of the memory
290  * array. Bit 15 corresponds to row 7 while bit 8 corresponds
291  * to row 0. Bits for empty rows are "don't care".
292  * 0 = 2 banks
293  * 1 = 4 banks
294  * [07:05] Reserved
295  * [04:04] Intel Reserved
296  * [03:00] DRAM Idle Timer (DIT)
297  * 0000 = 0 clocks
298  * 0001 = 2 clocks
299  * 0010 = 4 clocks
300  * 0011 = 8 clocks
301  * 0100 = 10 clocks
302  * 0101 = 12 clocks
303  * 0110 = 16 clocks
304  * 0111 = 32 clocks
305  * 1xxx = Infinite (pages are not closed for idle condition)
306  */
307  /* PGPOL will be set later. */
308 
309  /* PMCR - Power Management Control Register
310  * 0x7a
311  *
312  * [7] Power Down SDRAM Enable (PDSE)
313  * 1 = Enable
314  * 0 = Disable
315  * [6] ACPI Control Register Enable (SCRE)
316  * 1 = Enable
317  * 0 = Disable (default)
318  * [5] Suspend Refresh Type (SRT)
319  * 1 = Self refresh mode
320  * 0 = CBR fresh mode
321  * [4] Normal Refresh Enable (NREF_EN)
322  * 1 = Enable
323  * 0 = Disable
324  * [3] Quick Start Mode (QSTART)
325  * 1 = Quick start mode for the processor is enabled
326  * [2] Gated Clock Enable (GCLKEN)
327  * 1 = Enable
328  * 0 = Disable
329  * [1] AGP Disable (AGP_DIS)
330  * 1 = AGP disabled (Hardware strap)
331  * [0] CPU reset without PCIRST enable (CRst_En)
332  * 1 = Enable
333  * 0 = Disable
334  */
335  /* PMCR will be set later. */
336 
337  /* Enable SCRR.SRRAEN and let BX choose the SRR. */
338  SCRR + 1, 0x10,
339 };
340 
341 /*-----------------------------------------------------------------------------
342 SDRAM configuration functions.
343 -----------------------------------------------------------------------------*/
344 
345 /**
346  * Send the specified RAM command to all DIMMs.
347  *
348  * @param command The RAM command to send to the DIMM(s).
349  */
350 static void do_ram_command(u32 command)
351 {
352  int i, caslatency;
353  u8 dimm_start, dimm_end;
354  u16 reg16;
355  void *addr;
356  u32 addr_offset;
357 
358  /* Configure the RAM command. */
359  reg16 = pci_read_config16(NB, SDRAMC);
360  reg16 &= 0xff1f; /* Clear bits 7-5. */
361  reg16 |= (u16) (command << 5); /* Write command into bits 7-5. */
362  pci_write_config16(NB, SDRAMC, reg16);
363 
364  /*
365  * RAM_COMMAND_NORMAL affects only the memory controller and
366  * doesn't need to be "sent" to the DIMMs.
367  */
368  if (command == RAM_COMMAND_NORMAL)
369  return;
370 
371  /* Send the RAM command to each row of memory. */
372  dimm_start = 0;
373  for (i = 0; i < (DIMM_SOCKETS * 2); i++) {
374  addr_offset = 0;
375  caslatency = 3; /* TODO: Dynamically get CAS latency later. */
376  if (command == RAM_COMMAND_MRS) {
377  /*
378  * MAA[12:11,9:0] must be inverted when sent to DIMM
379  * 2 or 3 (no inversion if sent to DIMM 0 or 1).
380  */
381  if ((i >= 0 && i <= 3) && caslatency == 3)
382  addr_offset = 0x1d0;
383  if ((i >= 4 && i <= 7) && caslatency == 3)
384  addr_offset = 0x1e28;
385  if ((i >= 0 && i <= 3) && caslatency == 2)
386  addr_offset = 0x150;
387  if ((i >= 4 && i <= 7) && caslatency == 2)
388  addr_offset = 0x1ea8;
389  }
390 
391  dimm_end = pci_read_config8(NB, DRB + i);
392 
393  addr = (void *)((dimm_start * 8 * 1024 * 1024) + addr_offset);
394  if (dimm_end > dimm_start) {
395  read32(addr);
396  }
397 
398  /* Set the start of the next DIMM. */
399  dimm_start = dimm_end;
400  }
401 }
402 
403 static void set_dram_buffer_strength(void)
404 {
405  /*
406  * Program MBSC[39:0] and MBFS[23:0].
407  *
408  * The 440BX datasheet says buffer frequency is independent from bus
409  * frequency and mismatch both ways are possible.
410  *
411  * MBSC[47:40] and MBFS[23] are reserved.
412  */
413 
414  unsigned int i, reg, drb;
415  uint8_t mbsc0, mbfs0, mbfs1, mbfs2;
416  uint16_t mbsc1, mbsc3;
417 
418  /*
419  * Tally how many rows between rows 0-3 and rows 4-7 are populated.
420  * This determines how to program MBFS and MBSC.
421  */
422  uint8_t dimm03 = 0;
423  uint8_t dimm47 = 0;
424 
425  for (drb = 0, i = DRB0; i <= DRB7; i++) {
426  reg = pci_read_config8(NB, i);
427  if (drb != reg) {
428  if (i <= DRB3)
429  dimm03++;
430  else
431  dimm47++;
432 
433  drb = reg;
434  }
435  }
436 
437  if (CONFIG(SDRAMPWR_4DIMM)) {
438  /*
439  * For a 4 DIMM board, based on ASUS P2B-LS mainboard.
440  *
441  * There are four main conditions to check when programming
442  * DRAM buffer frequency and strength:
443  *
444  * a: >2 rows populated across DIMM0,1
445  * b: >2 rows populated across DIMM2,3
446  * c: >4 rows populated across all DIMM slots
447  * and either one of:
448  * 1: NBXCFG[13] strapped as 100MHz, or
449  * 6: NBXCFG[13] strapped as 66MHz
450  *
451  * CKE0/FENA ----------------------------------------------------------+
452  * CKE1/GCKE ----------------------[ MBFS ]---------------------+|
453  * DQMA/CASA[764320]# -------------[ 0 = 66MHz ]--------------------+||
454  * DQMB1/CASB1# (Fixed for 66MHz) -[ 1 = 100MHz ]-------------------+|||
455  * DQMB5/CASB5# (Fixed for 66MHz) ---------------------------------+||||
456  * DQMA1/CASA1# (Fixed for 66MHz) --------------------------------+|||||
457  * DQMA5/CASA5# (Fixed for 66MHz) -------------------------------+||||||
458  * CSA[5:0]#,CSB[5:0]# ------------------------------------++++++|||||||
459  * CS[B7,A7,B6,A6]#/CKE[5342] -------------------------++++|||||||||||||
460  * MECC[7:0] #2/#1 ----------------------------------++|||||||||||||||||
461  * MD[63:0] #2/#1 ---------------------------------++|||||||||||||||||||
462  * MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB# -+|||||||||||||||||||||
463  * MAA[13:0],WEA#,SRASA#,SCASA# -----------------+||||||||||||||||||||||
464  * Reserved ------------------------------------+|||||||||||||||||||||||
465  * ||||||||||||||||||||||||
466  * 3 32 21 10 0 * 2 21 10 0
467  * 9876543210987654321098765432109876543210 * 321098765432109876543210
468  * 10------------------------1010---------- a -1---------------11-----
469  * 11------------------------1111---------- !a -0---------------00-----
470  * --10--------------------------1010------ b --1----------------11---
471  * --11--------------------------1111------ !b --0----------------00---
472  * ----------------------------------1100-- c ----------------------1-
473  * ----------------------------------1011-- !c ----------------------0-
474  * ----1010101000000000000000------------00 1 ---11111111111111----1-0
475  * ----000000000000000000000010101010----00 6 ---1111111111111100000-0
476  * | | | | | | | | | | ||||||| | | | | | |
477  * | | | | | | | | | | ||||||| | | | | | +- CKE0/FENA
478  * | | | | | | | | | | ||||||| | | | | +--- CKE1/GCKE
479  * | | | | | | | | | | ||||||| | | | +----- DQMA/CASA[764320]#
480  * | | | | | | | | | | ||||||| | | +------- DQMB1/CASB1# (66MHz: 2x)
481  * | | | | | | | | | | ||||||| | +--------- DQMB5/CASB5# (66MHz: 2x)
482  * | | | | | | | | | | ||||||| +----------- DQMA1/CASA1# (66MHz: 2x)
483  * | | | | | | | | | | ||||||+------------- DQMA5/CASA5# (66MHz: 2x)
484  * | | | | | | | | | | ++++++-------------- CSA0-5#,CSB0-5# (1x)
485  * | | | | | | | | | +--------------------- CSA6#/CKE2
486  * | | | | | | | | +---[ MBSC ]------ CSB6#/CKE4
487  * | | | | | | | +-----[ 00 = 1x ]------ CSA7#/CKE3
488  * | | | | | | +-------[ 01 invalid ]------ CSB7#/CKE5
489  * | | | | | +---------[ 10 = 2x ]------ MECC[7:0] #1
490  * | | | | +-----------[ 11 = 3x ]------ MECC[7:0] #2
491  * | | | +--------------------------------- MD[63:0] #1
492  * | | +----------------------------------- MD[63:0] #2
493  * | +------------------ MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB#
494  * +------------------------------------- MAA[13:0],WEA#,SRASA#,SCASA#
495  */
496  unsigned int fsb;
497 
498  mbsc0 = 0xa0;
499  mbsc1 = 0x002a;
500  mbfs1 = 0xff;
501  mbfs2 = 0x1f;
502  if (pci_read_config8(NB, NBXCFG + 1) & 0x30) {
503  fsb = 66;
504  mbsc3 = 0xa000;
505  mbfs0 = 0x80;
506  } else {
507  fsb = 100;
508  mbsc3 = 0xaaa0;
509  mbfs0 = 0x84;
510  }
511  if (dimm03 > 2) {
512  mbfs2 |= 0x40;
513  if (fsb == 100)
514  mbfs0 |= 0x60;
515  } else {
516  mbsc3 |= 0xc000;
517  if (fsb == 100)
518  mbsc1 |= 0x003c;
519  }
520  if (dimm47 > 2) {
521  mbfs2 |= 0x20;
522  if (fsb == 100)
523  mbfs0 |= 0x18;
524  } else {
525  mbsc3 |= 0x3000;
526  if (fsb == 100) {
527  mbsc1 |= 0x0003;
528  mbsc0 |= 0xc0;
529  }
530  }
531  if ((dimm03 + dimm47) > 4) {
532  mbsc0 |= 0x30;
533  mbfs0 |= 0x02;
534  } else {
535  mbsc0 |= 0x2c;
536  }
537  } else {
538  /*
539  * For a 3 DIMM board, based on ASUS P2B mainboard.
540  *
541  * There are two main conditions to check when programming DRAM buffer
542  * frequency and strength:
543  *
544  * a: >2 rows populated across DIMM0,1
545  * c: >4 rows populated across all DIMM slots
546  *
547  * CKE0 ---------------------------------------------------------------+
548  * CKE1 ------------------------[ MBFS ]------------------------+|
549  * DQMA/CASA[764320]# ----------[ 0 = 66MHz ]-----------------------+||
550  * DQMB1/CASB1# ----------------[ 1 = 100MHz ]----------------------+|||
551  * DQMB5/CASB5# ---------------------------------------------------+||||
552  * DQMA1/CASA1# --------------------------------------------------+|||||
553  * DQMA5/CASA5# -------------------------------------------------+||||||
554  * CSA0-5#,CSB0-5# ----------------------------------------++++++|||||||
555  * CS[B7,A7,B6,A6]#/CKE[5342] -------------------------++++|||||||||||||
556  * MECC[7:0] #2/#1 (100MHz) -------------------------++|||||||||||||||||
557  * MD[63:0] #2/#1 (100MHz) ------------------------++|||||||||||||||||||
558  * MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB# -+|||||||||||||||||||||
559  * MAA[13:0],WEA#,SRASA#,SCASA# -----------------+||||||||||||||||||||||
560  * Reserved ------------------------------------+|||||||||||||||||||||||
561  * ||||||||||||||||||||||||
562  * 3 32 21 10 0 * 2 21 10 0
563  * 9876543210987654321098765432109876543210 * 321098765432109876543210
564  * 10------------------------1111---------- a -1----------------------
565  * 11------------------------1010---------- !a -0----------------------
566  * --110000000010101010111111----1010--1010 * --01111000000000000000-0
567  * ----------------------------------11---- c ----------------------1-
568  * ----------------------------------10---- !c ----------------------0-
569  * | | | | | | | | | | ||||||| | | | | | |
570  * | | | | | | | | | | ||||||| | | | | | +- CKE0
571  * | | | | | | | | | | ||||||| | | | | +--- CKE1
572  * | | | | | | | | | | ||||||| | | | +----- DQMA/CASA[764320]#
573  * | | | | | | | | | | ||||||| | | +------- DQMB1/CASB1#
574  * | | | | | | | | | | ||||||| | +--------- DQMB5/CASB5#
575  * | | | | | | | | | | ||||||| +----------- DQMA1/CASA1#
576  * | | | | | | | | | | ||||||+------------- DQMA5/CASA5#
577  * | | | | | | | | | | ++++++-------------- CSA0-5#,CSB0-5# (2x)
578  * | | | | | | | | | +--------------------- CSA6#/CKE2
579  * | | | | | | | | +---[ MBSC ]------ CSB6#/CKE4
580  * | | | | | | | +-----[ 00 = 1x ]------ CSA7#/CKE3
581  * | | | | | | +-------[ 01 invalid ]------ CSB7#/CKE5
582  * | | | | | +---------[ 10 = 2x ]------ MECC[7:0] #1 (1x)
583  * | | | | +-----------[ 11 = 3x ]------ MECC[7:0] #2 (1x)
584  * | | | +--------------------------------- MD[63:0] #1 (1x)
585  * | | +----------------------------------- MD[63:0] #2 (1x)
586  * | +------------------ MAB[12:11,9:0]#,MAB[13,10],WEB#,SRASB#,SCASB#
587  * +------------------------------------- MAA[13:0],WEA#,SRASA#,SCASA#
588  */
589 
590  mbsc0 = 0xaa;
591  mbsc1 = 0xafea;
592  mbsc3 = 0xb00a;
593  mbfs0 = 0x00;
594  mbfs1 = 0x00;
595  mbfs2 = 0x1e;
596 
597  if (dimm03 > 2) {
598  mbsc1 |= 0x003c;
599  mbfs2 |= 0x40;
600  } else {
601  mbsc3 |= 0xc000;
602  }
603  if ((dimm03 + dimm47) > 4) {
604  mbsc0 |= 0x30;
605  mbfs0 |= 0x02;
606  }
607  }
608 
609  pci_write_config8(NB, MBSC + 0, mbsc0);
610  pci_write_config16(NB, MBSC + 1, mbsc1);
611  pci_write_config16(NB, MBSC + 3, mbsc3);
612  pci_write_config16(NB, MBFS + 0, mbfs1 << 8 | mbfs0);
613  pci_write_config8(NB, MBFS + 2, mbfs2);
614 }
615 
616 /*-----------------------------------------------------------------------------
617 DIMM-independent configuration functions.
618 -----------------------------------------------------------------------------*/
619 
620 static void spd_enable_refresh(void)
621 {
622  int i, value;
623  uint8_t reg;
624 
625  reg = pci_read_config8(NB, DRAMC);
626 
627  for (i = 0; i < DIMM_SOCKETS; i++) {
629  if (value < 0)
630  continue;
631  reg = (reg & 0xf8) | refresh_rate_map[(value & 0x7f)];
632 
633  PRINT_DEBUG(" Enabling refresh (DRAMC = 0x%02x) for DIMM %02x\n", reg, i);
634  }
635 
636  pci_write_config8(NB, DRAMC, reg);
637 }
638 
639 /*-----------------------------------------------------------------------------
640 Public interface.
641 -----------------------------------------------------------------------------*/
642 
643 static void sdram_set_registers(void)
644 {
645  int i, max;
646 
647  PRINT_DEBUG("Northbridge prior to SDRAM init:\n");
648  DUMPNORTH();
649 
651 
652  /* Set registers as specified in the register_values[] array. */
653  for (i = 0; i < max; i += 2)
655 }
656 
657 struct dimm_size {
660 };
661 
662 static struct dimm_size spd_get_dimm_size(unsigned int device)
663 {
664  struct dimm_size sz;
665  int i, module_density, dimm_banks;
666  sz.side1 = 0;
669 
670  /* Find the size of side1. */
671  /* Find the larger value. The larger value is always side1. */
672  for (i = 512; i >= 0; i >>= 1) {
673  if ((module_density & i) == i) {
674  sz.side1 = i;
675  break;
676  }
677  }
678 
679  /* Set to 0 in case it's single sided. */
680  sz.side2 = 0;
681 
682  /* Test if it's a dual-sided DIMM. */
683  if (dimm_banks > 1) {
684  /* Test if there's a second value. If so it's asymmetrical. */
685  if (module_density != i) {
686  /*
687  * Find second value, picking up where we left off.
688  * i >>= 1 done initially to make sure we don't get
689  * the same value again.
690  */
691  for (i >>= 1; i >= 0; i >>= 1) {
692  if (module_density == (sz.side1 | i)) {
693  sz.side2 = i;
694  break;
695  }
696  }
697  /* If not, it's symmetrical. */
698  } else {
699  sz.side2 = sz.side1;
700  }
701  }
702 
703  /*
704  * SPD byte 31 is the memory size divided by 4 so we
705  * need to multiply by 4 to get the total size.
706  */
707  sz.side1 *= 4;
708  sz.side2 *= 4;
709 
710  /*
711  * It is possible to partially use larger than supported
712  * modules by setting them to a supported size.
713  */
714  if (sz.side1 > 128) {
715  PRINT_DEBUG("Side1 was %dMB but only 128MB will be used.\n",
716  sz.side1);
717  sz.side1 = 128;
718 
719  if (sz.side2 > 128) {
720  PRINT_DEBUG("Side2 was %dMB but only 128MB will be used.\n",
721  sz.side2);
722  sz.side2 = 128;
723  }
724  }
725 
726  return sz;
727 }
728 /*
729  * Sets DRAM attributes one DIMM at a time, based on SPD data.
730  * Northbridge settings that are set: NBXCFG[31:24], DRB0-DRB7, RPS, DRAMC.
731  */
732 static void set_dram_row_attributes(void)
733 {
734  int i, dra, drb, col, width, value, rps;
735  u8 bpr; /* Top 8 bits of PGPOL */
736  u8 nbxecc = 0; /* NBXCFG[31:24] */
737  u8 edo, sd, regsd; /* EDO, SDRAM, registered SDRAM */
738 
739  edo = 0;
740  sd = 0;
741  regsd = 1;
742  rps = 0;
743  drb = 0;
744  bpr = 0;
745 
746  for (i = 0; i < DIMM_SOCKETS; i++) {
747  unsigned int device;
748  device = DIMM0 + i;
749  bpr >>= 2;
750  nbxecc >>= 2;
751 
752  /* First check if a DIMM is actually present. */
754  /* This is 440BX! We do EDO too! */
757 
758  if (value == SPD_MEMORY_TYPE_EDO) {
759  edo = 1;
760  } else if (value == SPD_MEMORY_TYPE_SDRAM) {
761  sd = 1;
762  }
763  PRINT_DEBUG("Found DIMM in slot %d\n", i);
764 
765  if (edo && sd) {
766  printk(BIOS_ERR, "Mixing EDO/SDRAM unsupported!\n");
767  die("HALT\n");
768  }
769 
770  /* "DRA" is our RPS for the two rows on this DIMM. */
771  dra = 0;
772 
773  /* Columns */
775 
776  /*
777  * Is this an ECC DIMM? Actually will be a 2 if so.
778  * TODO: Other register than NBXCFG also needs this
779  * ECC information.
780  */
782 
783  /* Data width */
785 
786  /* Exclude error checking data width from page size calculations */
787  if (value) {
790  width -= value;
791  /* ### ECC */
792  /* Clear top 2 bits to help set up NBXCFG. */
793  nbxecc &= 0x3f;
794  } else {
795  /* Without ECC, top 2 bits should be 11. */
796  nbxecc |= 0xc0;
797  }
798 
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.
803  */
805 
806  PRINT_DEBUG("DIMM is ");
807  if ((value & MODULE_REGISTERED) == 0) {
808  regsd = 0;
809  PRINT_DEBUG("not ");
810  }
811  PRINT_DEBUG("registered\n");
812 
813  /* Calculate page size in bits. */
814  value = ((1 << col) * width);
815 
816  /* Convert to KB. */
817  dra = (value >> 13);
818 
819  /* Number of banks of DIMM (single or double sided). */
821 
822  /* Once we have dra, col is done and can be reused.
823  * So it's reused for number of banks.
824  */
826 
827  if (value == 1) {
828  /*
829  * Second bank of 1-bank DIMMs "doesn't have
830  * ECC" - or anything.
831  */
832  if (dra == 2) {
833  dra = 0x0; /* 2KB */
834  } else if (dra == 4) {
835  dra = 0x1; /* 4KB */
836  } else if (dra == 8) {
837  dra = 0x2; /* 8KB */
838  } else if (dra >= 16) {
839  /* Page sizes larger than supported are
840  * set to 8KB to use module partially.
841  */
842  PRINT_DEBUG("Page size forced to 8KB.\n");
843  dra = 0x2; /* 8KB */
844  } else {
845  dra = -1;
846  }
847  /*
848  * Sets a flag in PGPOL[BPR] if this DIMM has
849  * 4 banks per row.
850  */
851  if (col == 4)
852  bpr |= 0x40;
853  } else if (value == 2) {
854  if (dra == 2) {
855  dra = 0x0; /* 2KB */
856  } else if (dra == 4) {
857  dra = 0x05; /* 4KB */
858  } else if (dra == 8) {
859  dra = 0x0a; /* 8KB */
860  } else if (dra >= 16) {
861  /* Ditto */
862  PRINT_DEBUG("Page size forced to 8KB.\n");
863  dra = 0x0a; /* 8KB */
864  } else {
865  dra = -1;
866  }
867  /* Ditto */
868  if (col == 4)
869  bpr |= 0xc0;
870  } else {
871  printk(BIOS_ERR, "# of banks of DIMM unsupported!\n");
872  die("HALT\n");
873  }
874  if (dra == -1) {
875  printk(BIOS_ERR, "Page size not supported\n");
876  die("HALT\n");
877  }
878 
879  /*
880  * 440BX supports asymmetrical dual-sided DIMMs,
881  * but can't handle DIMMs smaller than 8MB per
882  * side.
883  */
884  struct dimm_size sz = spd_get_dimm_size(device);
885  if ((sz.side1 < 8)) {
886  printk(BIOS_ERR, "DIMMs smaller than 8MB per side\n"
887  "are not supported on this NB.\n");
888  die("HALT\n");
889  }
890 
891  /* Divide size by 8 to set up the DRB registers. */
892  drb += (sz.side1 / 8);
893 
894  /*
895  * Build the DRB for the next row in MSB so it gets
896  * placed in DRB[n+1] where it belongs when written
897  * as a 16-bit word.
898  */
899  drb &= 0xff;
900  drb |= (drb + (sz.side2 / 8)) << 8;
901  } else {
902  /* If there's no DIMM in the slot, set dra to 0x00. */
903  dra = 0x00;
904  /* Still have to propagate DRB over. */
905  drb &= 0xff;
906  drb |= (drb << 8);
907  }
908 
909  pci_write_config16(NB, DRB + (2 * i), drb);
910 
911  /* Brings the upper DRB back down to be base for
912  * DRB calculations for the next two rows.
913  */
914  drb >>= 8;
915 
916  rps |= (dra & 0x0f) << (i * 4);
917  }
918 
919  /* Set paging policy register. */
920  pci_write_config8(NB, PGPOL + 1, bpr);
921  PRINT_DEBUG("PGPOL[BPR] has been set to 0x%02x\n", bpr);
922 
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);
926 
927  /* ### ECC */
928  pci_write_config8(NB, NBXCFG + 3, nbxecc);
929  PRINT_DEBUG("NBXECC[31:24] has been set to 0x%02x\n", nbxecc);
930 
931  /* Set DRAMC[4:3] to proper memory type (EDO/SDRAM/Registered SDRAM). */
932 
933  /* i will be used to set DRAMC[4:3]. */
934  if (regsd && sd) {
935  i = 0x10; // Registered SDRAM
936  } else if (sd) {
937  i = 0x08; // SDRAM
938  } else {
939  i = 0; // EDO
940  }
941 
942  value = pci_read_config8(NB, DRAMC) & 0xe7;
943  value |= i;
945  PRINT_DEBUG("DRAMC has been set to 0x%02x\n", value);
946 }
947 
948 static void sdram_set_spd_registers(void)
949 {
950  /* Setup DRAM row boundary registers and other attributes. */
952 
953  /* Setup DRAM buffer strength. */
955 }
956 
957 static void sdram_enable(void)
958 {
959  int i;
960 
961  /* 0. Wait until power/voltages and clocks are stable (200us). */
962  udelay(200);
963 
964  /* 1. Apply NOP. Wait 200 clock cycles (200us should do). */
965  PRINT_DEBUG("RAM Enable 1: Apply NOP\n");
967  udelay(200);
968 
969  /* 2. Precharge all. Wait tRP. */
970  PRINT_DEBUG("RAM Enable 2: Precharge all\n");
972  udelay(1);
973 
974  /* 3. Perform 8 refresh cycles. Wait tRC each time. */
975  PRINT_DEBUG("RAM Enable 3: CBR\n");
976  for (i = 0; i < 8; i++) {
978  udelay(1);
979  }
980 
981  /* 4. Mode register set. Wait two memory cycles. */
982  PRINT_DEBUG("RAM Enable 4: Mode register set\n");
984  udelay(2);
985 
986  /* 5. Normal operation. */
987  PRINT_DEBUG("RAM Enable 5: Normal operation\n");
989  udelay(1);
990 
991  /* 6. Finally enable refresh. */
992  PRINT_DEBUG("RAM Enable 6: Enable refresh\n");
993  pci_write_config8(NB, PMCR, 0x10);
995  udelay(1);
996 
997  PRINT_DEBUG("Northbridge following SDRAM init:\n");
998  DUMPNORTH();
999 }
1000 
1001 /* Implemented under mainboard. */
1002 void __weak enable_spd(void) { }
1003 void __weak disable_spd(void) { }
1004 
1005 void sdram_initialize(int s3resume)
1006 {
1008  enable_spd();
1009 
1013  sdram_enable();
1014 
1015  disable_spd();
1017 }
pte_t value
Definition: mmu.c:91
static uint32_t read32(const void *addr)
Definition: mmio.h:22
static int width
Definition: bochs.c:42
#define ARRAY_SIZE(a)
Definition: helpers.h:12
static u32 addr
Definition: cirrus.c:14
enum fch_io_device device
Definition: fch.c:74
#define printk(level,...)
Definition: stdlib.h:16
void __noreturn die(const char *fmt,...)
Definition: die.c:17
@ CONFIG
Definition: dsi_common.h:201
#define PAM0
Definition: host_bridge.h:38
#define PAM6
Definition: host_bridge.h:44
#define PAM5
Definition: host_bridge.h:43
#define PAM2
Definition: host_bridge.h:40
#define PAM1
Definition: host_bridge.h:39
#define PAM3
Definition: host_bridge.h:41
#define PAM4
Definition: host_bridge.h:42
#define DIMM_SOCKETS
Definition: raminit.h:7
#define dump_spd_registers()
Definition: raminit.h:24
#define DIMM0
Definition: raminit.h:10
#define DRB7
Definition: i440bx.h:40
#define PGPOL
Definition: i440bx.h:47
#define RPS
Definition: i440bx.h:45
#define DRB0
Definition: i440bx.h:33
#define NBXCFG
Definition: i440bx.h:21
#define MBSC
Definition: i440bx.h:42
#define SDRAMC
Definition: i440bx.h:46
#define NB
Definition: i440bx.h:75
#define DRAMC
Definition: i440bx.h:22
#define PMCR
Definition: i440bx.h:48
#define DRB3
Definition: i440bx.h:36
#define FDHC
Definition: i440bx.h:41
#define DRB
Definition: i440bx.h:32
#define MBFS
Definition: i440bx.h:61
#define SCRR
Definition: i440bx.h:49
static __always_inline u16 pci_read_config16(const struct device *dev, u16 reg)
Definition: pci_ops.h:52
static __always_inline u8 pci_read_config8(const struct device *dev, u16 reg)
Definition: pci_ops.h:46
static __always_inline void pci_write_config16(const struct device *dev, u16 reg, u16 val)
Definition: pci_ops.h:70
static __always_inline void pci_write_config8(const struct device *dev, u16 reg, u8 val)
Definition: pci_ops.h:64
static int smbus_read_byte(struct device *const dev, u8 addr)
Definition: smbus.h:43
#define SPD_NUM_BANKS_PER_SDRAM
Definition: spd.h:53
#define SPD_ERROR_CHECKING_SDRAM_WIDTH
Definition: spd.h:45
#define SPD_NUM_DIMM_BANKS
Definition: spd.h:30
#define SPD_REFRESH
Definition: spd.h:42
@ SPD_MEMORY_TYPE_SDRAM
Definition: spd.h:145
@ SPD_MEMORY_TYPE_EDO
Definition: spd.h:143
#define SPD_MODULE_ATTRIBUTES
Definition: spd.h:60
#define SPD_NUM_COLUMNS
Definition: spd.h:28
#define SPD_MEMORY_TYPE
Definition: spd.h:25
#define MODULE_REGISTERED
Definition: spd.h:198
#define SPD_DIMM_CONFIG_TYPE
Definition: spd.h:41
#define SPD_DENSITY_OF_EACH_ROW_ON_MODULE
Definition: spd.h:80
#define SPD_MODULE_DATA_WIDTH_LSB
Definition: spd.h:31
void timestamp_add_now(enum timestamp_id id)
Definition: timestamp.c:141
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
void sdram_initialize(void)
Definition: raminit.c:1692
static struct dimm_size spd_get_dimm_size(unsigned int device)
Definition: raminit.c:662
static const u8 register_values[]
Definition: raminit.c:50
static void sdram_set_registers(void)
Definition: raminit.c:643
#define RAM_COMMAND_CBR
Definition: raminit.c:33
#define RAM_COMMAND_MRS
Definition: raminit.c:32
#define RAM_COMMAND_NOP
Definition: raminit.c:30
static void sdram_enable(void)
Definition: raminit.c:957
static void set_dram_row_attributes(void)
Definition: raminit.c:732
static void sdram_set_spd_registers(void)
Definition: raminit.c:948
static void do_ram_command(u32 command)
Send the specified RAM command to all DIMMs.
Definition: raminit.c:350
#define DUMPNORTH()
Definition: raminit.c:25
void __weak enable_spd(void)
Definition: raminit.c:1002
static void set_dram_buffer_strength(void)
Definition: raminit.c:403
#define PRINT_DEBUG(x...)
Definition: raminit.c:24
#define RAM_COMMAND_NORMAL
Definition: raminit.c:29
void __weak disable_spd(void)
Definition: raminit.c:1003
static void spd_enable_refresh(void)
Definition: raminit.c:620
#define RAM_COMMAND_PRECHARGE
Definition: raminit.c:31
static const uint32_t refresh_rate_map[]
Definition: raminit.c:45
const struct smm_save_state_ops *legacy_ops __weak
Definition: save_state.c:8
#define unsigned
Definition: stddef.h:12
unsigned short uint16_t
Definition: stdint.h:11
unsigned int uint32_t
Definition: stdint.h:14
uint32_t u32
Definition: stdint.h:51
uint16_t u16
Definition: stdint.h:48
uint8_t u8
Definition: stdint.h:45
unsigned char uint8_t
Definition: stdint.h:8
Definition: device.h:107
u32 side2
Definition: raminit.c:659
unsigned long side1
Definition: raminit.c:59
u32 side1
Definition: raminit.c:658
unsigned long side2
Definition: raminit.c:60
@ TS_INITRAM_END
@ TS_INITRAM_START
void udelay(uint32_t us)
Definition: udelay.c:15