cleaning out motherboard specific changes from the generic directories.
[coreboot.git] / src / northbridge / amd / amdk8 / raminit.c
1 #include <cpu/k8/mtrr.h>
2 #include "raminit.h"
3
4 /* Function 2 */
5 #define DRAM_CSBASE        0x40
6 #define DRAM_CSMASK        0x60
7 #define DRAM_BANK_ADDR_MAP 0x80
8 #define DRAM_TIMING_LOW    0x88
9 #define  DTL_TCL_SHIFT     0
10 #define  DTL_TCL_MASK      0x7
11 #define   DTL_CL_2         1
12 #define   DTL_CL_3         2
13 #define   DTL_CL_2_5       5
14 #define  DTL_TRC_SHIFT     4
15 #define  DTL_TRC_MASK      0xf
16 #define   DTL_TRC_BASE     7
17 #define   DTL_TRC_MIN      7
18 #define   DTL_TRC_MAX      22
19 #define  DTL_TRFC_SHIFT    8
20 #define  DTL_TRFC_MASK     0xf
21 #define   DTL_TRFC_BASE    9
22 #define   DTL_TRFC_MIN     9
23 #define   DTL_TRFC_MAX     24
24 #define  DTL_TRCD_SHIFT    12
25 #define  DTL_TRCD_MASK     0x7
26 #define   DTL_TRCD_BASE    0
27 #define   DTL_TRCD_MIN     2
28 #define   DTL_TRCD_MAX     6
29 #define  DTL_TRRD_SHIFT    16
30 #define  DTL_TRRD_MASK     0x7
31 #define   DTL_TRRD_BASE    0
32 #define   DTL_TRRD_MIN     2
33 #define   DTL_TRRD_MAX     4
34 #define  DTL_TRAS_SHIFT    20
35 #define  DTL_TRAS_MASK     0xf
36 #define   DTL_TRAS_BASE    0
37 #define   DTL_TRAS_MIN     5
38 #define   DTL_TRAS_MAX     15
39 #define  DTL_TRP_SHIFT     24
40 #define  DTL_TRP_MASK      0x7
41 #define   DTL_TRP_BASE     0
42 #define   DTL_TRP_MIN      2
43 #define   DTL_TRP_MAX      6
44 #define  DTL_TWR_SHIFT     28
45 #define  DTL_TWR_MASK      0x1
46 #define   DTL_TWR_BASE     2
47 #define   DTL_TWR_MIN      2
48 #define   DTL_TWR_MAX      3
49 #define DRAM_TIMING_HIGH   0x8c
50 #define  DTH_TWTR_SHIFT    0
51 #define  DTH_TWTR_MASK     0x1
52 #define   DTH_TWTR_BASE    1
53 #define   DTH_TWTR_MIN     1
54 #define   DTH_TWTR_MAX     2
55 #define  DTH_TRWT_SHIFT    4
56 #define  DTH_TRWT_MASK     0x7
57 #define   DTH_TRWT_BASE    1
58 #define   DTH_TRWT_MIN     1
59 #define   DTH_TRWT_MAX     6
60 #define  DTH_TREF_SHIFT    8
61 #define  DTH_TREF_MASK     0x1f
62 #define   DTH_TREF_100MHZ_4K 0x00
63 #define   DTH_TREF_133MHZ_4K 0x01
64 #define   DTH_TREF_166MHZ_4K 0x02
65 #define   DTH_TREF_200MHZ_4K 0x03
66 #define   DTH_TREF_100MHZ_8K 0x08
67 #define   DTH_TREF_133MHZ_8K 0x09
68 #define   DTH_TREF_166MHZ_8K 0x0A
69 #define   DTH_TREF_200MHZ_8K 0x0B
70 #define  DTH_TWCL_SHIFT     20
71 #define  DTH_TWCL_MASK      0x7
72 #define   DTH_TWCL_BASE     1
73 #define   DTH_TWCL_MIN      1
74 #define   DTH_TWCL_MAX      2
75 #define DRAM_CONFIG_LOW    0x90
76 #define  DCL_DLL_Disable   (1<<0)
77 #define  DCL_D_DRV         (1<<1)
78 #define  DCL_QFC_EN        (1<<2)
79 #define  DCL_DisDqsHys     (1<<3)
80 #define  DCL_DramInit      (1<<8)
81 #define  DCL_DramEnable    (1<<10)
82 #define  DCL_MemClrStatus  (1<<11)
83 #define  DCL_ESR           (1<<12)
84 #define  DCL_SRS           (1<<13)
85 #define  DCL_128BitEn      (1<<16)
86 #define  DCL_DimmEccEn     (1<<17)
87 #define  DCL_UnBufDimm     (1<<18)
88 #define  DCL_32ByteEn      (1<<19)
89 #define  DCL_x4DIMM_SHIFT  20
90 #define DRAM_CONFIG_HIGH   0x94
91 #define  DCH_ASYNC_LAT_SHIFT  0
92 #define  DCH_ASYNC_LAT_MASK   0xf
93 #define   DCH_ASYNC_LAT_BASE  0
94 #define   DCH_ASYNC_LAT_MIN   0
95 #define   DCH_ASYNC_LAT_MAX   15
96 #define  DCH_RDPREAMBLE_SHIFT 8
97 #define  DCH_RDPREAMBLE_MASK  0xf
98 #define   DCH_RDPREAMBLE_BASE ((2<<1)+0) /* 2.0 ns */
99 #define   DCH_RDPREAMBLE_MIN  ((2<<1)+0) /* 2.0 ns */
100 #define   DCH_RDPREAMBLE_MAX  ((9<<1)+1) /* 9.5 ns */
101 #define  DCH_IDLE_LIMIT_SHIFT 16
102 #define  DCH_IDLE_LIMIT_MASK  0x7
103 #define   DCH_IDLE_LIMIT_0    0
104 #define   DCH_IDLE_LIMIT_4    1
105 #define   DCH_IDLE_LIMIT_8    2
106 #define   DCH_IDLE_LIMIT_16   3
107 #define   DCH_IDLE_LIMIT_32   4
108 #define   DCH_IDLE_LIMIT_64   5
109 #define   DCH_IDLE_LIMIT_128  6
110 #define   DCH_IDLE_LIMIT_256  7
111 #define  DCH_DYN_IDLE_CTR_EN (1 << 19)
112 #define  DCH_MEMCLK_SHIFT     20
113 #define  DCH_MEMCLK_MASK      0x7
114 #define   DCH_MEMCLK_100MHZ   0
115 #define   DCH_MEMCLK_133MHZ   2
116 #define   DCH_MEMCLK_166MHZ   5
117 #define   DCH_MEMCLK_200MHZ   7
118 #define  DCH_MEMCLK_VALID     (1 << 25)
119 #define  DCH_MEMCLK_EN0       (1 << 26) 
120 #define  DCH_MEMCLK_EN1       (1 << 27) 
121 #define  DCH_MEMCLK_EN2       (1 << 28) 
122 #define  DCH_MEMCLK_EN3       (1 << 29) 
123
124 /* Function 3 */
125 #define SCRUB_CONTROL      0x58
126 #define   SCRUB_NONE        0
127 #define   SCRUB_40ns        1
128 #define   SCRUB_80ns        2
129 #define   SCRUB_160ns       3
130 #define   SCRUB_320ns       4
131 #define   SCRUB_640ns       5
132 #define   SCRUB_1_28us      6
133 #define   SCRUB_2_56us      7
134 #define   SCRUB_5_12us      8
135 #define   SCRUB_10_2us      9
136 #define   SCRUB_20_5us     10
137 #define   SCRUB_41_0us     11
138 #define   SCRUB_81_9us     12
139 #define   SCRUB_163_8us    13
140 #define   SCRUB_327_7us    14
141 #define   SCRUB_655_4us    15
142 #define   SCRUB_1_31ms     16
143 #define   SCRUB_2_62ms     17
144 #define   SCRUB_5_24ms     18 
145 #define   SCRUB_10_49ms    19
146 #define   SCRUB_20_97ms    20
147 #define   SCRUB_42ms       21
148 #define   SCRUB_84ms       22
149 #define  SC_DRAM_SCRUB_RATE_SHFIT  0
150 #define  SC_DRAM_SCRUB_RATE_MASK   0x1f
151 #define  SC_L2_SCRUB_RATE_SHIFT    8
152 #define  SC_L2_SCRUB_RATE_MASK     0x1f
153 #define  SC_L1D_SCRUB_RATE_SHIFT   16
154 #define  SC_L1D_SCRUB_RATE_MASK    0x1f
155 #define SCRUB_ADDR_LOW     0x5C
156 #define SCRUB_ADDR_HIGH    0x60
157 #define NORTHBRIDGE_CAP    0xE8
158 #define  NBCAP_128Bit         0x0001
159 #define  NBCAP_MP             0x0002
160 #define  NBCAP_BIG_MP         0x0004
161 #define  NBCAP_ECC            0x0004
162 #define  NBCAP_CHIPKILL_ECC   0x0010
163 #define  NBCAP_MEMCLK_SHIFT   5
164 #define  NBCAP_MEMCLK_MASK    3
165 #define  NBCAP_MEMCLK_100MHZ  3
166 #define  NBCAP_MEMCLK_133MHZ  2
167 #define  NBCAP_MEMCLK_166MHZ  1
168 #define  NBCAP_MEMCLK_200MHZ  0
169 #define  NBCAP_MEMCTRL        0x0100
170
171
172 static void setup_resource_map(const unsigned int *register_values, int max)
173 {
174         int i;
175         print_debug("setting up resource map....\r\n");
176         for(i = 0; i < max; i += 3) {
177                 device_t dev;
178                 unsigned where;
179                 unsigned long reg;
180 #if 0
181                 print_debug_hex32(register_values[i]);
182                 print_debug(" <-");
183                 print_debug_hex32(register_values[i+2]);
184                 print_debug("\r\n");
185 #endif
186                 dev = register_values[i] & ~0xff;
187                 where = register_values[i] & 0xff;
188                 reg = pci_read_config32(dev, where);
189                 reg &= register_values[i+1];
190                 reg |= register_values[i+2];
191                 pci_write_config32(dev, where, reg);
192 #if 0
193                 reg = pci_read_config32(register_values[i]);
194                 reg &= register_values[i+1];
195                 reg |= register_values[i+2] & ~register_values[i+1];
196                 pci_write_config32(register_values[i], reg);
197 #endif
198         }
199         print_debug("done.\r\n");
200 }
201
202 static void setup_default_resource_map(void)
203 {
204         static const unsigned int register_values[] = {
205         /* Careful set limit registers before base registers which contain the enables */
206         /* DRAM Limit i Registers
207          * F1:0x44 i = 0
208          * F1:0x4C i = 1
209          * F1:0x54 i = 2
210          * F1:0x5C i = 3
211          * F1:0x64 i = 4
212          * F1:0x6C i = 5
213          * F1:0x74 i = 6
214          * F1:0x7C i = 7
215          * [ 2: 0] Destination Node ID
216          *         000 = Node 0
217          *         001 = Node 1
218          *         010 = Node 2
219          *         011 = Node 3
220          *         100 = Node 4
221          *         101 = Node 5
222          *         110 = Node 6
223          *         111 = Node 7
224          * [ 7: 3] Reserved
225          * [10: 8] Interleave select
226          *         specifies the values of A[14:12] to use with interleave enable.
227          * [15:11] Reserved
228          * [31:16] DRAM Limit Address i Bits 39-24
229          *         This field defines the upper address bits of a 40 bit  address
230          *         that define the end of the DRAM region.
231          */
232         PCI_ADDR(0, 0x18, 1, 0x44), 0x0000f8f8, 0x00000000,
233         PCI_ADDR(0, 0x18, 1, 0x4C), 0x0000f8f8, 0x00000001,
234         PCI_ADDR(0, 0x18, 1, 0x54), 0x0000f8f8, 0x00000002,
235         PCI_ADDR(0, 0x18, 1, 0x5C), 0x0000f8f8, 0x00000003,
236         PCI_ADDR(0, 0x18, 1, 0x64), 0x0000f8f8, 0x00000004,
237         PCI_ADDR(0, 0x18, 1, 0x6C), 0x0000f8f8, 0x00000005,
238         PCI_ADDR(0, 0x18, 1, 0x74), 0x0000f8f8, 0x00000006,
239         PCI_ADDR(0, 0x18, 1, 0x7C), 0x0000f8f8, 0x00000007,
240         /* DRAM Base i Registers
241          * F1:0x40 i = 0
242          * F1:0x48 i = 1
243          * F1:0x50 i = 2
244          * F1:0x58 i = 3
245          * F1:0x60 i = 4
246          * F1:0x68 i = 5
247          * F1:0x70 i = 6
248          * F1:0x78 i = 7
249          * [ 0: 0] Read Enable
250          *         0 = Reads Disabled
251          *         1 = Reads Enabled
252          * [ 1: 1] Write Enable
253          *         0 = Writes Disabled
254          *         1 = Writes Enabled
255          * [ 7: 2] Reserved
256          * [10: 8] Interleave Enable
257          *         000 = No interleave
258          *         001 = Interleave on A[12] (2 nodes)
259          *         010 = reserved
260          *         011 = Interleave on A[12] and A[14] (4 nodes)
261          *         100 = reserved
262          *         101 = reserved
263          *         110 = reserved
264          *         111 = Interleve on A[12] and A[13] and A[14] (8 nodes)
265          * [15:11] Reserved
266          * [13:16] DRAM Base Address i Bits 39-24
267          *         This field defines the upper address bits of a 40-bit address
268          *         that define the start of the DRAM region.
269          */
270         PCI_ADDR(0, 0x18, 1, 0x40), 0x0000f8fc, 0x00000000,
271         PCI_ADDR(0, 0x18, 1, 0x48), 0x0000f8fc, 0x00000000,
272         PCI_ADDR(0, 0x18, 1, 0x50), 0x0000f8fc, 0x00000000,
273         PCI_ADDR(0, 0x18, 1, 0x58), 0x0000f8fc, 0x00000000,
274         PCI_ADDR(0, 0x18, 1, 0x60), 0x0000f8fc, 0x00000000,
275         PCI_ADDR(0, 0x18, 1, 0x68), 0x0000f8fc, 0x00000000,
276         PCI_ADDR(0, 0x18, 1, 0x70), 0x0000f8fc, 0x00000000,
277         PCI_ADDR(0, 0x18, 1, 0x78), 0x0000f8fc, 0x00000000,
278
279         /* Memory-Mapped I/O Limit i Registers
280          * F1:0x84 i = 0
281          * F1:0x8C i = 1
282          * F1:0x94 i = 2
283          * F1:0x9C i = 3
284          * F1:0xA4 i = 4
285          * F1:0xAC i = 5
286          * F1:0xB4 i = 6
287          * F1:0xBC i = 7
288          * [ 2: 0] Destination Node ID
289          *         000 = Node 0
290          *         001 = Node 1
291          *         010 = Node 2
292          *         011 = Node 3
293          *         100 = Node 4
294          *         101 = Node 5
295          *         110 = Node 6
296          *         111 = Node 7
297          * [ 3: 3] Reserved
298          * [ 5: 4] Destination Link ID
299          *         00 = Link 0
300          *         01 = Link 1
301          *         10 = Link 2
302          *         11 = Reserved
303          * [ 6: 6] Reserved
304          * [ 7: 7] Non-Posted
305          *         0 = CPU writes may be posted
306          *         1 = CPU writes must be non-posted
307          * [31: 8] Memory-Mapped I/O Limit Address i (39-16)
308          *         This field defines the upp adddress bits of a 40-bit address that
309          *         defines the end of a memory-mapped I/O region n
310          */
311         PCI_ADDR(0, 0x18, 1, 0x84), 0x00000048, 0x00000000,
312         PCI_ADDR(0, 0x18, 1, 0x8C), 0x00000048, 0x00000000,
313         PCI_ADDR(0, 0x18, 1, 0x94), 0x00000048, 0x00000000,
314         PCI_ADDR(0, 0x18, 1, 0x9C), 0x00000048, 0x00000000,
315         PCI_ADDR(0, 0x18, 1, 0xA4), 0x00000048, 0x00000000,
316         PCI_ADDR(0, 0x18, 1, 0xAC), 0x00000048, 0x00000000,
317         PCI_ADDR(0, 0x18, 1, 0xB4), 0x00000048, 0x00000000,
318         PCI_ADDR(0, 0x18, 1, 0xBC), 0x00000048, 0x00ffff00,
319
320         /* Memory-Mapped I/O Base i Registers
321          * F1:0x80 i = 0
322          * F1:0x88 i = 1
323          * F1:0x90 i = 2
324          * F1:0x98 i = 3
325          * F1:0xA0 i = 4
326          * F1:0xA8 i = 5
327          * F1:0xB0 i = 6
328          * F1:0xB8 i = 7
329          * [ 0: 0] Read Enable
330          *         0 = Reads disabled
331          *         1 = Reads Enabled
332          * [ 1: 1] Write Enable
333          *         0 = Writes disabled
334          *         1 = Writes Enabled
335          * [ 2: 2] Cpu Disable
336          *         0 = Cpu can use this I/O range
337          *         1 = Cpu requests do not use this I/O range
338          * [ 3: 3] Lock
339          *         0 = base/limit registers i are read/write
340          *         1 = base/limit registers i are read-only
341          * [ 7: 4] Reserved
342          * [31: 8] Memory-Mapped I/O Base Address i (39-16)
343          *         This field defines the upper address bits of a 40bit address 
344          *         that defines the start of memory-mapped I/O region i
345          */
346         PCI_ADDR(0, 0x18, 1, 0x80), 0x000000f0, 0x00000000,
347         PCI_ADDR(0, 0x18, 1, 0x88), 0x000000f0, 0x00000000,
348         PCI_ADDR(0, 0x18, 1, 0x90), 0x000000f0, 0x00000000,
349         PCI_ADDR(0, 0x18, 1, 0x98), 0x000000f0, 0x00000000,
350         PCI_ADDR(0, 0x18, 1, 0xA0), 0x000000f0, 0x00000000,
351         PCI_ADDR(0, 0x18, 1, 0xA8), 0x000000f0, 0x00000000,
352         PCI_ADDR(0, 0x18, 1, 0xB0), 0x000000f0, 0x00000000,
353         PCI_ADDR(0, 0x18, 1, 0xB8), 0x000000f0, 0x00fc0003,
354
355         /* PCI I/O Limit i Registers
356          * F1:0xC4 i = 0
357          * F1:0xCC i = 1
358          * F1:0xD4 i = 2
359          * F1:0xDC i = 3
360          * [ 2: 0] Destination Node ID
361          *         000 = Node 0
362          *         001 = Node 1
363          *         010 = Node 2
364          *         011 = Node 3
365          *         100 = Node 4
366          *         101 = Node 5
367          *         110 = Node 6
368          *         111 = Node 7
369          * [ 3: 3] Reserved
370          * [ 5: 4] Destination Link ID
371          *         00 = Link 0
372          *         01 = Link 1
373          *         10 = Link 2
374          *         11 = reserved
375          * [11: 6] Reserved
376          * [24:12] PCI I/O Limit Address i
377          *         This field defines the end of PCI I/O region n
378          * [31:25] Reserved
379          */
380         PCI_ADDR(0, 0x18, 1, 0xC4), 0xFE000FC8, 0x01fff000,
381         PCI_ADDR(0, 0x18, 1, 0xCC), 0xFE000FC8, 0x00000000,
382         PCI_ADDR(0, 0x18, 1, 0xD4), 0xFE000FC8, 0x00000000,
383         PCI_ADDR(0, 0x18, 1, 0xDC), 0xFE000FC8, 0x00000000,
384
385         /* PCI I/O Base i Registers
386          * F1:0xC0 i = 0
387          * F1:0xC8 i = 1
388          * F1:0xD0 i = 2
389          * F1:0xD8 i = 3
390          * [ 0: 0] Read Enable
391          *         0 = Reads Disabled
392          *         1 = Reads Enabled
393          * [ 1: 1] Write Enable
394          *         0 = Writes Disabled
395          *         1 = Writes Enabled
396          * [ 3: 2] Reserved
397          * [ 4: 4] VGA Enable
398          *         0 = VGA matches Disabled
399          *         1 = matches all address < 64K and where A[9:0] is in the 
400          *             range 3B0-3BB or 3C0-3DF independen of the base & limit registers
401          * [ 5: 5] ISA Enable
402          *         0 = ISA matches Disabled
403          *         1 = Blocks address < 64K and in the last 768 bytes of eack 1K block
404          *             from matching agains this base/limit pair
405          * [11: 6] Reserved
406          * [24:12] PCI I/O Base i
407          *         This field defines the start of PCI I/O region n 
408          * [31:25] Reserved
409          */
410         PCI_ADDR(0, 0x18, 1, 0xC0), 0xFE000FCC, 0x00000003,
411         PCI_ADDR(0, 0x18, 1, 0xC8), 0xFE000FCC, 0x00000000,
412         PCI_ADDR(0, 0x18, 1, 0xD0), 0xFE000FCC, 0x00000000,
413         PCI_ADDR(0, 0x18, 1, 0xD8), 0xFE000FCC, 0x00000000,
414
415         /* Config Base and Limit i Registers
416          * F1:0xE0 i = 0
417          * F1:0xE4 i = 1
418          * F1:0xE8 i = 2
419          * F1:0xEC i = 3
420          * [ 0: 0] Read Enable
421          *         0 = Reads Disabled
422          *         1 = Reads Enabled
423          * [ 1: 1] Write Enable
424          *         0 = Writes Disabled
425          *         1 = Writes Enabled
426          * [ 2: 2] Device Number Compare Enable
427          *         0 = The ranges are based on bus number
428          *         1 = The ranges are ranges of devices on bus 0
429          * [ 3: 3] Reserved
430          * [ 6: 4] Destination Node
431          *         000 = Node 0
432          *         001 = Node 1
433          *         010 = Node 2
434          *         011 = Node 3
435          *         100 = Node 4
436          *         101 = Node 5
437          *         110 = Node 6
438          *         111 = Node 7
439          * [ 7: 7] Reserved
440          * [ 9: 8] Destination Link
441          *         00 = Link 0
442          *         01 = Link 1
443          *         10 = Link 2
444          *         11 - Reserved
445          * [15:10] Reserved
446          * [23:16] Bus Number Base i
447          *         This field defines the lowest bus number in configuration region i
448          * [31:24] Bus Number Limit i
449          *         This field defines the highest bus number in configuration regin i
450          */
451         PCI_ADDR(0, 0x18, 1, 0xE0), 0x0000FC88, 0xff000003,
452         PCI_ADDR(0, 0x18, 1, 0xE4), 0x0000FC88, 0x00000000,
453         PCI_ADDR(0, 0x18, 1, 0xE8), 0x0000FC88, 0x00000000,
454         PCI_ADDR(0, 0x18, 1, 0xEC), 0x0000FC88, 0x00000000,
455         };
456         int max;
457         max = sizeof(register_values)/sizeof(register_values[0]);
458         setup_resource_map(register_values, max);
459 }
460
461 static void sdram_set_registers(const struct mem_controller *ctrl)
462 {
463         static const unsigned int register_values[] = {
464
465         /* Careful set limit registers before base registers which contain the enables */
466         /* DRAM Limit i Registers
467          * F1:0x44 i = 0
468          * F1:0x4C i = 1
469          * F1:0x54 i = 2
470          * F1:0x5C i = 3
471          * F1:0x64 i = 4
472          * F1:0x6C i = 5
473          * F1:0x74 i = 6
474          * F1:0x7C i = 7
475          * [ 2: 0] Destination Node ID
476          *         000 = Node 0
477          *         001 = Node 1
478          *         010 = Node 2
479          *         011 = Node 3
480          *         100 = Node 4
481          *         101 = Node 5
482          *         110 = Node 6
483          *         111 = Node 7
484          * [ 7: 3] Reserved
485          * [10: 8] Interleave select
486          *         specifies the values of A[14:12] to use with interleave enable.
487          * [15:11] Reserved
488          * [31:16] DRAM Limit Address i Bits 39-24
489          *         This field defines the upper address bits of a 40 bit  address
490          *         that define the end of the DRAM region.
491          */
492         PCI_ADDR(0, 0x18, 1, 0x44), 0x0000f8f8, 0x00000000,
493         PCI_ADDR(0, 0x18, 1, 0x4C), 0x0000f8f8, 0x00000001,
494         PCI_ADDR(0, 0x18, 1, 0x54), 0x0000f8f8, 0x00000002,
495         PCI_ADDR(0, 0x18, 1, 0x5C), 0x0000f8f8, 0x00000003,
496         PCI_ADDR(0, 0x18, 1, 0x64), 0x0000f8f8, 0x00000004,
497         PCI_ADDR(0, 0x18, 1, 0x6C), 0x0000f8f8, 0x00000005,
498         PCI_ADDR(0, 0x18, 1, 0x74), 0x0000f8f8, 0x00000006,
499         PCI_ADDR(0, 0x18, 1, 0x7C), 0x0000f8f8, 0x00000007,
500         /* DRAM Base i Registers
501          * F1:0x40 i = 0
502          * F1:0x48 i = 1
503          * F1:0x50 i = 2
504          * F1:0x58 i = 3
505          * F1:0x60 i = 4
506          * F1:0x68 i = 5
507          * F1:0x70 i = 6
508          * F1:0x78 i = 7
509          * [ 0: 0] Read Enable
510          *         0 = Reads Disabled
511          *         1 = Reads Enabled
512          * [ 1: 1] Write Enable
513          *         0 = Writes Disabled
514          *         1 = Writes Enabled
515          * [ 7: 2] Reserved
516          * [10: 8] Interleave Enable
517          *         000 = No interleave
518          *         001 = Interleave on A[12] (2 nodes)
519          *         010 = reserved
520          *         011 = Interleave on A[12] and A[14] (4 nodes)
521          *         100 = reserved
522          *         101 = reserved
523          *         110 = reserved
524          *         111 = Interleve on A[12] and A[13] and A[14] (8 nodes)
525          * [15:11] Reserved
526          * [13:16] DRAM Base Address i Bits 39-24
527          *         This field defines the upper address bits of a 40-bit address
528          *         that define the start of the DRAM region.
529          */
530         PCI_ADDR(0, 0x18, 1, 0x40), 0x0000f8fc, 0x00000000,
531         PCI_ADDR(0, 0x18, 1, 0x48), 0x0000f8fc, 0x00000000,
532         PCI_ADDR(0, 0x18, 1, 0x50), 0x0000f8fc, 0x00000000,
533         PCI_ADDR(0, 0x18, 1, 0x58), 0x0000f8fc, 0x00000000,
534         PCI_ADDR(0, 0x18, 1, 0x60), 0x0000f8fc, 0x00000000,
535         PCI_ADDR(0, 0x18, 1, 0x68), 0x0000f8fc, 0x00000000,
536         PCI_ADDR(0, 0x18, 1, 0x70), 0x0000f8fc, 0x00000000,
537         PCI_ADDR(0, 0x18, 1, 0x78), 0x0000f8fc, 0x00000000,
538
539         /* DRAM CS Base Address i Registers
540          * F2:0x40 i = 0
541          * F2:0x44 i = 1
542          * F2:0x48 i = 2
543          * F2:0x4C i = 3
544          * F2:0x50 i = 4
545          * F2:0x54 i = 5
546          * F2:0x58 i = 6
547          * F2:0x5C i = 7
548          * [ 0: 0] Chip-Select Bank Enable
549          *         0 = Bank Disabled
550          *         1 = Bank Enabled
551          * [ 8: 1] Reserved
552          * [15: 9] Base Address (19-13)
553          *         An optimization used when all DIMM are the same size...
554          * [20:16] Reserved
555          * [31:21] Base Address (35-25)
556          *         This field defines the top 11 addresses bit of a 40-bit
557          *         address that define the memory address space.  These
558          *         bits decode 32-MByte blocks of memory.
559          */
560         PCI_ADDR(0, 0x18, 2, 0x40), 0x001f01fe, 0x00000000,
561         PCI_ADDR(0, 0x18, 2, 0x44), 0x001f01fe, 0x00000000,
562         PCI_ADDR(0, 0x18, 2, 0x48), 0x001f01fe, 0x00000000,
563         PCI_ADDR(0, 0x18, 2, 0x4C), 0x001f01fe, 0x00000000,
564         PCI_ADDR(0, 0x18, 2, 0x50), 0x001f01fe, 0x00000000,
565         PCI_ADDR(0, 0x18, 2, 0x54), 0x001f01fe, 0x00000000,
566         PCI_ADDR(0, 0x18, 2, 0x58), 0x001f01fe, 0x00000000,
567         PCI_ADDR(0, 0x18, 2, 0x5C), 0x001f01fe, 0x00000000,
568         /* DRAM CS Mask Address i Registers
569          * F2:0x60 i = 0
570          * F2:0x64 i = 1
571          * F2:0x68 i = 2
572          * F2:0x6C i = 3
573          * F2:0x70 i = 4
574          * F2:0x74 i = 5
575          * F2:0x78 i = 6
576          * F2:0x7C i = 7
577          * Select bits to exclude from comparison with the DRAM Base address register.
578          * [ 8: 0] Reserved
579          * [15: 9] Address Mask (19-13)
580          *         Address to be excluded from the optimized case
581          * [20:16] Reserved
582          * [29:21] Address Mask (33-25)
583          *         The bits with an address mask of 1 are excluded from address comparison
584          * [31:30] Reserved
585          * 
586          */
587         PCI_ADDR(0, 0x18, 2, 0x60), 0xC01f01ff, 0x00000000,
588         PCI_ADDR(0, 0x18, 2, 0x64), 0xC01f01ff, 0x00000000,
589         PCI_ADDR(0, 0x18, 2, 0x68), 0xC01f01ff, 0x00000000,
590         PCI_ADDR(0, 0x18, 2, 0x6C), 0xC01f01ff, 0x00000000,
591         PCI_ADDR(0, 0x18, 2, 0x70), 0xC01f01ff, 0x00000000,
592         PCI_ADDR(0, 0x18, 2, 0x74), 0xC01f01ff, 0x00000000,
593         PCI_ADDR(0, 0x18, 2, 0x78), 0xC01f01ff, 0x00000000,
594         PCI_ADDR(0, 0x18, 2, 0x7C), 0xC01f01ff, 0x00000000,
595         /* DRAM Bank Address Mapping Register
596          * F2:0x80
597          * Specify the memory module size
598          * [ 2: 0] CS1/0 
599          * [ 6: 4] CS3/2
600          * [10: 8] CS5/4
601          * [14:12] CS7/6
602          *         000 = 32Mbyte  (Rows = 12 & Col =  8)
603          *         001 = 64Mbyte  (Rows = 12 & Col =  9)
604          *         010 = 128Mbyte (Rows = 13 & Col =  9)|(Rows = 12 & Col = 10)
605          *         011 = 256Mbyte (Rows = 13 & Col = 10)|(Rows = 12 & Col = 11)
606          *         100 = 512Mbyte (Rows = 13 & Col = 11)|(Rows = 14 & Col = 10)
607          *         101 = 1Gbyte   (Rows = 14 & Col = 11)|(Rows = 13 & Col = 12)
608          *         110 = 2Gbyte   (Rows = 14 & Col = 12)
609          *         111 = reserved 
610          * [ 3: 3] Reserved
611          * [ 7: 7] Reserved
612          * [11:11] Reserved
613          * [31:15]
614          */
615         PCI_ADDR(0, 0x18, 2, 0x80), 0xffff8888, 0x00000000,
616         /* DRAM Timing Low Register
617          * F2:0x88
618          * [ 2: 0] Tcl (Cas# Latency, Cas# to read-data-valid)
619          *         000 = reserved
620          *         001 = CL 2
621          *         010 = CL 3
622          *         011 = reserved
623          *         100 = reserved
624          *         101 = CL 2.5
625          *         110 = reserved
626          *         111 = reserved
627          * [ 3: 3] Reserved
628          * [ 7: 4] Trc (Row Cycle Time, Ras#-active to Ras#-active/bank auto refresh)
629          *         0000 =  7 bus clocks
630          *         0001 =  8 bus clocks
631          *         ...
632          *         1110 = 21 bus clocks
633          *         1111 = 22 bus clocks
634          * [11: 8] Trfc (Row refresh Cycle time, Auto-refresh-active to RAS#-active or RAS#auto-refresh)
635          *         0000 = 9 bus clocks
636          *         0010 = 10 bus clocks
637          *         ....
638          *         1110 = 23 bus clocks
639          *         1111 = 24 bus clocks
640          * [14:12] Trcd (Ras#-active to Case#-read/write Delay)
641          *         000 = reserved
642          *         001 = reserved
643          *         010 = 2 bus clocks
644          *         011 = 3 bus clocks
645          *         100 = 4 bus clocks
646          *         101 = 5 bus clocks
647          *         110 = 6 bus clocks
648          *         111 = reserved
649          * [15:15] Reserved
650          * [18:16] Trrd (Ras# to Ras# Delay)
651          *         000 = reserved
652          *         001 = reserved
653          *         010 = 2 bus clocks
654          *         011 = 3 bus clocks
655          *         100 = 4 bus clocks
656          *         101 = reserved
657          *         110 = reserved
658          *         111 = reserved
659          * [19:19] Reserved
660          * [23:20] Tras (Minmum Ras# Active Time)
661          *         0000 to 0100 = reserved
662          *         0101 = 5 bus clocks
663          *         ...
664          *         1111 = 15 bus clocks
665          * [26:24] Trp (Row Precharge Time)
666          *         000 = reserved
667          *         001 = reserved
668          *         010 = 2 bus clocks
669          *         011 = 3 bus clocks
670          *         100 = 4 bus clocks
671          *         101 = 5 bus clocks
672          *         110 = 6 bus clocks
673          *         111 = reserved
674          * [27:27] Reserved
675          * [28:28] Twr (Write Recovery Time)
676          *         0 = 2 bus clocks
677          *         1 = 3 bus clocks
678          * [31:29] Reserved
679          */
680         PCI_ADDR(0, 0x18, 2, 0x88), 0xe8088008, 0x02522001 /* 0x03623125 */ ,
681         /* DRAM Timing High Register
682          * F2:0x8C
683          * [ 0: 0] Twtr (Write to Read Delay)
684          *         0 = 1 bus Clocks
685          *         1 = 2 bus Clocks
686          * [ 3: 1] Reserved
687          * [ 6: 4] Trwt (Read to Write Delay)
688          *         000 = 1 bus clocks
689          *         001 = 2 bus clocks
690          *         010 = 3 bus clocks
691          *         011 = 4 bus clocks
692          *         100 = 5 bus clocks
693          *         101 = 6 bus clocks
694          *         110 = reserved
695          *         111 = reserved
696          * [ 7: 7] Reserved
697          * [12: 8] Tref (Refresh Rate)
698          *         00000 = 100Mhz 4K rows
699          *         00001 = 133Mhz 4K rows
700          *         00010 = 166Mhz 4K rows
701          *         00011 = 200Mhz 4K rows
702          *         01000 = 100Mhz 8K/16K rows
703          *         01001 = 133Mhz 8K/16K rows
704          *         01010 = 166Mhz 8K/16K rows
705          *         01011 = 200Mhz 8K/16K rows
706          * [19:13] Reserved
707          * [22:20] Twcl (Write CAS Latency)
708          *         000 = 1 Mem clock after CAS# (Unbuffered Dimms)
709          *         001 = 2 Mem clocks after CAS# (Registered Dimms)
710          * [31:23] Reserved
711          */
712         PCI_ADDR(0, 0x18, 2, 0x8c), 0xff8fe08e, (0 << 20)|(0 << 8)|(0 << 4)|(0 << 0),
713         /* DRAM Config Low Register
714          * F2:0x90
715          * [ 0: 0] DLL Disable
716          *         0 = Enabled
717          *         1 = Disabled
718          * [ 1: 1] D_DRV
719          *         0 = Normal Drive
720          *         1 = Weak Drive
721          * [ 2: 2] QFC_EN
722          *         0 = Disabled
723          *         1 = Enabled
724          * [ 3: 3] Disable DQS Hystersis  (FIXME handle this one carefully)
725          *         0 = Enable DQS input filter 
726          *         1 = Disable DQS input filtering 
727          * [ 7: 4] Reserved
728          * [ 8: 8] DRAM_Init
729          *         0 = Initialization done or not yet started.
730          *         1 = Initiate DRAM intialization sequence
731          * [ 9: 9] SO-Dimm Enable
732          *         0 = Do nothing
733          *         1 = SO-Dimms present
734          * [10:10] DramEnable
735          *         0 = DRAM not enabled
736          *         1 = DRAM initialized and enabled
737          * [11:11] Memory Clear Status
738          *         0 = Memory Clear function has not completed
739          *         1 = Memory Clear function has completed
740          * [12:12] Exit Self-Refresh
741          *         0 = Exit from self-refresh done or not yet started
742          *         1 = DRAM exiting from self refresh
743          * [13:13] Self-Refresh Status
744          *         0 = Normal Operation
745          *         1 = Self-refresh mode active
746          * [15:14] Read/Write Queue Bypass Count
747          *         00 = 2
748          *         01 = 4
749          *         10 = 8
750          *         11 = 16
751          * [16:16] 128-bit/64-Bit
752          *         0 = 64bit Interface to DRAM
753          *         1 = 128bit Interface to DRAM
754          * [17:17] DIMM ECC Enable
755          *         0 = Some DIMMs do not have ECC
756          *         1 = ALL DIMMS have ECC bits
757          * [18:18] UnBuffered DIMMs
758          *         0 = Buffered DIMMS
759          *         1 = Unbuffered DIMMS
760          * [19:19] Enable 32-Byte Granularity
761          *         0 = Optimize for 64byte bursts
762          *         1 = Optimize for 32byte bursts
763          * [20:20] DIMM 0 is x4
764          * [21:21] DIMM 1 is x4
765          * [22:22] DIMM 2 is x4
766          * [23:23] DIMM 3 is x4
767          *         0 = DIMM is not x4
768          *         1 = x4 DIMM present
769          * [24:24] Disable DRAM Receivers
770          *         0 = Receivers enabled
771          *         1 = Receivers disabled
772          * [27:25] Bypass Max
773          *         000 = Arbiters chois is always respected
774          *         001 = Oldest entry in DCQ can be bypassed 1 time
775          *         010 = Oldest entry in DCQ can be bypassed 2 times
776          *         011 = Oldest entry in DCQ can be bypassed 3 times
777          *         100 = Oldest entry in DCQ can be bypassed 4 times
778          *         101 = Oldest entry in DCQ can be bypassed 5 times
779          *         110 = Oldest entry in DCQ can be bypassed 6 times
780          *         111 = Oldest entry in DCQ can be bypassed 7 times
781          * [31:28] Reserved
782          */
783         PCI_ADDR(0, 0x18, 2, 0x90), 0xf0000000, 
784         (4 << 25)|(0 << 24)| 
785         (0 << 23)|(0 << 22)|(0 << 21)|(0 << 20)| 
786         (1 << 19)|(0 << 18)|(1 << 17)|(0 << 16)| 
787         (2 << 14)|(0 << 13)|(0 << 12)| 
788         (0 << 11)|(0 << 10)|(0 << 9)|(0 << 8)| 
789         (0 << 3) |(0 << 1) |(0 << 0),
790         /* DRAM Config High Register
791          * F2:0x94
792          * [ 0: 3] Maximum Asynchronous Latency
793          *         0000 = 0 ns
794          *         ...
795          *         1111 = 15 ns
796          * [ 7: 4] Reserved
797          * [11: 8] Read Preamble
798          *         0000 = 2.0 ns
799          *         0001 = 2.5 ns
800          *         0010 = 3.0 ns
801          *         0011 = 3.5 ns
802          *         0100 = 4.0 ns
803          *         0101 = 4.5 ns
804          *         0110 = 5.0 ns
805          *         0111 = 5.5 ns
806          *         1000 = 6.0 ns
807          *         1001 = 6.5 ns
808          *         1010 = 7.0 ns
809          *         1011 = 7.5 ns
810          *         1100 = 8.0 ns
811          *         1101 = 8.5 ns
812          *         1110 = 9.0 ns
813          *         1111 = 9.5 ns
814          * [15:12] Reserved
815          * [18:16] Idle Cycle Limit
816          *         000 = 0 cycles
817          *         001 = 4 cycles
818          *         010 = 8 cycles
819          *         011 = 16 cycles
820          *         100 = 32 cycles
821          *         101 = 64 cycles
822          *         110 = 128 cycles
823          *         111 = 256 cycles
824          * [19:19] Dynamic Idle Cycle Center Enable
825          *         0 = Use Idle Cycle Limit
826          *         1 = Generate a dynamic Idle cycle limit
827          * [22:20] DRAM MEMCLK Frequency
828          *         000 = 100Mhz
829          *         001 = reserved
830          *         010 = 133Mhz
831          *         011 = reserved
832          *         100 = reserved
833          *         101 = 166Mhz
834          *         110 = reserved
835          *         111 = reserved
836          * [24:23] Reserved
837          * [25:25] Memory Clock Ratio Valid (FIXME carefully enable memclk)
838          *         0 = Disable MemClks
839          *         1 = Enable MemClks
840          * [26:26] Memory Clock 0 Enable
841          *         0 = Disabled
842          *         1 = Enabled
843          * [27:27] Memory Clock 1 Enable
844          *         0 = Disabled
845          *         1 = Enabled
846          * [28:28] Memory Clock 2 Enable
847          *         0 = Disabled
848          *         1 = Enabled
849          * [29:29] Memory Clock 3 Enable
850          *         0 = Disabled
851          *         1 = Enabled
852          * [31:30] Reserved
853          */
854         PCI_ADDR(0, 0x18, 2, 0x94), 0xc180f0f0,
855         (0 << 29)|(0 << 28)|(0 << 27)|(0 << 26)|(0 << 25)|
856         (0 << 20)|(0 << 19)|(DCH_IDLE_LIMIT_16 << 16)|(0 << 8)|(0 << 0),
857         /* DRAM Delay Line Register
858          * F2:0x98
859          * Adjust the skew of the input DQS strobe relative to DATA
860          * [15: 0] Reserved
861          * [23:16] Delay Line Adjust
862          *         Adjusts the DLL derived PDL delay by one or more delay stages
863          *         in either the faster or slower direction.
864          * [24:24} Adjust Slower
865          *         0 = Do Nothing
866          *         1 = Adj is used to increase the PDL delay
867          * [25:25] Adjust Faster
868          *         0 = Do Nothing
869          *         1 = Adj is used to decrease the PDL delay
870          * [31:26] Reserved
871          */
872         PCI_ADDR(0, 0x18, 2, 0x98), 0xfc00ffff, 0x00000000,
873         /* DRAM Scrub Control Register
874          * F3:0x58
875          * [ 4: 0] DRAM Scrube Rate
876          * [ 7: 5] reserved
877          * [12: 8] L2 Scrub Rate
878          * [15:13] reserved
879          * [20:16] Dcache Scrub
880          * [31:21] reserved
881          *         Scrub Rates
882          *         00000 = Do not scrub
883          *         00001 =  40.00 ns
884          *         00010 =  80.00 ns
885          *         00011 = 160.00 ns
886          *         00100 = 320.00 ns
887          *         00101 = 640.00 ns
888          *         00110 =   1.28 us
889          *         00111 =   2.56 us
890          *         01000 =   5.12 us
891          *         01001 =  10.20 us
892          *         01011 =  41.00 us
893          *         01100 =  81.90 us
894          *         01101 = 163.80 us
895          *         01110 = 327.70 us
896          *         01111 = 655.40 us
897          *         10000 =   1.31 ms
898          *         10001 =   2.62 ms
899          *         10010 =   5.24 ms
900          *         10011 =  10.49 ms
901          *         10100 =  20.97 ms
902          *         10101 =  42.00 ms
903          *         10110 =  84.00 ms
904          *         All Others = Reserved
905          */
906         PCI_ADDR(0, 0x18, 3, 0x58), 0xffe0e0e0, 0x00000000,
907         /* DRAM Scrub Address Low Register
908          * F3:0x5C
909          * [ 0: 0] DRAM Scrubber Redirect Enable
910          *         0 = Do nothing
911          *         1 = Scrubber Corrects errors found in normal operation
912          * [ 5: 1] Reserved
913          * [31: 6] DRAM Scrub Address 31-6
914          */
915         PCI_ADDR(0, 0x18, 3, 0x5C), 0x0000003e, 0x00000000,
916         /* DRAM Scrub Address High Register
917          * F3:0x60
918          * [ 7: 0] DRAM Scrubb Address 39-32
919          * [31: 8] Reserved
920          */
921         PCI_ADDR(0, 0x18, 3, 0x60), 0xffffff00, 0x00000000,
922
923 #if ENABLE_IOMMU != 0
924         /* BY LYH  add IOMMU 64M APERTURE */
925         PCI_ADDR(0, 0x18, 3, 0x94), 0xffff8000, 0x00000f70,
926         PCI_ADDR(0, 0x18, 3, 0x90), 0xffffff80, 0x00000002,
927         PCI_ADDR(0, 0x18, 3, 0x98), 0x0000000f, 0x00068300,
928 #endif
929         };
930         int i;
931         int max;
932         print_debug("setting up CPU");
933         print_debug_hex8(ctrl->node_id);
934         print_debug(" northbridge registers\r\n");
935         max = sizeof(register_values)/sizeof(register_values[0]);
936         for(i = 0; i < max; i += 3) {
937                 device_t dev;
938                 unsigned where;
939                 unsigned long reg;
940 #if 0
941                 print_debug_hex32(register_values[i]);
942                 print_debug(" <-");
943                 print_debug_hex32(register_values[i+2]);
944                 print_debug("\r\n");
945 #endif
946                 dev = (register_values[i] & ~0xff) - PCI_DEV(0, 0x18, 0) + ctrl->f0;
947                 where = register_values[i] & 0xff;
948                 reg = pci_read_config32(dev, where);
949                 reg &= register_values[i+1];
950                 reg |= register_values[i+2];
951                 pci_write_config32(dev, where, reg);
952 #if 0
953
954                 reg = pci_read_config32(register_values[i]);
955                 reg &= register_values[i+1];
956                 reg |= register_values[i+2];
957                 pci_write_config32(register_values[i], reg);
958 #endif
959         }
960         print_debug("done.\r\n");
961 }
962
963
964 static int is_dual_channel(const struct mem_controller *ctrl)
965 {
966         uint32_t dcl;
967         dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
968         return dcl & DCL_128BitEn;
969 }
970
971 static int is_opteron(const struct mem_controller *ctrl)
972 {
973         /* Test to see if I am an Opteron.  
974          * FIXME Testing dual channel capability is correct for now
975          * but a beter test is probably required.
976          */
977 #warning "FIXME implement a better test for opterons"
978         uint32_t nbcap;
979         nbcap = pci_read_config32(ctrl->f3, NORTHBRIDGE_CAP);
980         return !!(nbcap & NBCAP_128Bit);
981 }
982
983 static int is_registered(const struct mem_controller *ctrl)
984 {
985         /* Test to see if we are dealing with registered SDRAM.
986          * If we are not registered we are unbuffered.
987          * This function must be called after spd_handle_unbuffered_dimms.
988          */
989         uint32_t dcl;
990         dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
991         return !(dcl & DCL_UnBufDimm);
992 }
993
994 struct dimm_size {
995         unsigned long side1;
996         unsigned long side2;
997 };
998
999 static struct dimm_size spd_get_dimm_size(unsigned device)
1000 {
1001         /* Calculate the log base 2 size of a DIMM in bits */
1002         struct dimm_size sz;
1003         int value, low;
1004         sz.side1 = 0;
1005         sz.side2 = 0;
1006
1007         /* Note it might be easier to use byte 31 here, it has the DIMM size as
1008          * a multiple of 4MB.  The way we do it now we can size both
1009          * sides of an assymetric dimm.
1010          */
1011         value = spd_read_byte(device, 3);       /* rows */
1012         if (value < 0) goto out;
1013         sz.side1 += value & 0xf;
1014
1015         value = spd_read_byte(device, 4);       /* columns */
1016         if (value < 0) goto out;
1017         sz.side1 += value & 0xf;
1018
1019         value = spd_read_byte(device, 17);      /* banks */
1020         if (value < 0) goto out;
1021         sz.side1 += log2(value & 0xff);
1022
1023         /* Get the module data width and convert it to a power of two */
1024         value = spd_read_byte(device, 7);       /* (high byte) */
1025         if (value < 0) goto out;
1026         value &= 0xff;
1027         value <<= 8;
1028         
1029         low = spd_read_byte(device, 6); /* (low byte) */
1030         if (low < 0) goto out;
1031         value = value | (low & 0xff);
1032         sz.side1 += log2(value);
1033
1034         /* side 2 */
1035         value = spd_read_byte(device, 5);       /* number of physical banks */
1036         if (value <= 1) goto out;
1037
1038         /* Start with the symmetrical case */
1039         sz.side2 = sz.side1;
1040
1041         value = spd_read_byte(device, 3);       /* rows */
1042         if (value < 0) goto out;
1043         if ((value & 0xf0) == 0) goto out;      /* If symmetrical we are done */
1044         sz.side2 -= (value & 0x0f);             /* Subtract out rows on side 1 */
1045         sz.side2 += ((value >> 4) & 0x0f);      /* Add in rows on side 2 */
1046
1047         value = spd_read_byte(device, 4);       /* columns */
1048         if (value < 0) goto out;
1049         sz.side2 -= (value & 0x0f);             /* Subtract out columns on side 1 */
1050         sz.side2 += ((value >> 4) & 0x0f);      /* Add in columsn on side 2 */
1051
1052  out:
1053         return sz;
1054 }
1055
1056 static void set_dimm_size(const struct mem_controller *ctrl, struct dimm_size sz, unsigned index)
1057 {
1058         uint32_t base0, base1, map;
1059         uint32_t dch;
1060
1061 #if 0
1062         print_debug("set_dimm_size: (");
1063         print_debug_hex32(sz.side1);
1064         print_debug_char(',');
1065         print_debug_hex32(sz.side2);
1066         print_debug_char(',');
1067         print_debug_hex32(index);
1068         print_debug(")\r\n");
1069 #endif
1070         if (sz.side1 != sz.side2) {
1071                 sz.side2 = 0;
1072         }
1073         map = pci_read_config32(ctrl->f2, DRAM_BANK_ADDR_MAP);
1074         map &= ~(0xf << (index + 4));
1075
1076         /* For each base register.
1077          * Place the dimm size in 32 MB quantities in the bits 31 - 21.
1078          * The initialize dimm size is in bits.
1079          * Set the base enable bit0.
1080          */
1081         
1082         base0 = base1 = 0;
1083
1084         /* Make certain side1 of the dimm is at least 32MB */
1085         if (sz.side1 >= (25 +3)) {
1086                 map |= (sz.side1 - (25 + 3)) << (index *4);
1087                 base0 = (1 << ((sz.side1 - (25 + 3)) + 21)) | 1;
1088         }
1089         /* Make certain side2 of the dimm is at least 32MB */
1090         if (sz.side2 >= (25 + 3)) {
1091                 base1 = (1 << ((sz.side2 - (25 + 3)) + 21)) | 1;
1092         }
1093
1094         /* Double the size if we are using dual channel memory */
1095         if (is_dual_channel(ctrl)) {
1096                 base0 = (base0 << 1) | (base0 & 1);
1097                 base1 = (base1 << 1) | (base1 & 1);
1098         }
1099
1100         /* Clear the reserved bits */
1101         base0 &= ~0x001ffffe;
1102         base1 &= ~0x001ffffe;
1103
1104         /* Set the appropriate DIMM base address register */
1105         pci_write_config32(ctrl->f2, DRAM_CSBASE + (((index << 1)+0)<<2), base0);
1106         pci_write_config32(ctrl->f2, DRAM_CSBASE + (((index << 1)+1)<<2), base1);
1107         pci_write_config32(ctrl->f2, DRAM_BANK_ADDR_MAP, map);
1108         
1109         /* Enable the memory clocks for this DIMM */
1110         if (base0) {
1111                 dch = pci_read_config32(ctrl->f2, DRAM_CONFIG_HIGH);
1112                 dch |= DCH_MEMCLK_EN0 << index;
1113                 pci_write_config32(ctrl->f2, DRAM_CONFIG_HIGH, dch);
1114         }
1115 }
1116
1117 static void spd_set_ram_size(const struct mem_controller *ctrl)
1118 {
1119         int i;
1120         
1121         for(i = 0; (i < 4) && (ctrl->channel0[i]); i++) {
1122                 struct dimm_size sz;
1123                 sz = spd_get_dimm_size(ctrl->channel0[i]);
1124                 set_dimm_size(ctrl, sz, i);
1125         }
1126 }
1127
1128 //BY LYH //Fill next base reg with right value
1129 static void fill_last(unsigned long node_id,unsigned long base)
1130 {
1131         unsigned i;
1132         unsigned base_reg;
1133         base &=0xffff0000;
1134         device_t device;
1135         for(device = PCI_DEV(0, 0x18, 1); device <= PCI_DEV(0, 0x1f, 1); device
1136 += PCI_DEV(0, 1, 0)) {
1137                 for(i=node_id+1;i<=7;i++) {
1138                         base_reg=0x40+(i<<3);
1139                         pci_write_config32(device,base_reg,base);
1140                 }
1141         }
1142 }
1143 //BY LYH END
1144  
1145 static void route_dram_accesses(const struct mem_controller *ctrl,
1146         unsigned long base_k, unsigned long limit_k)
1147 {
1148         /* Route the addresses to the controller node */
1149         unsigned node_id;
1150         unsigned limit;
1151         unsigned base;
1152         unsigned index;
1153         unsigned limit_reg, base_reg;
1154         device_t device;
1155
1156         node_id = ctrl->node_id;
1157         index = (node_id << 3);
1158         limit = (limit_k << 2);
1159         limit &= 0xffff0000;
1160         limit -= 0x00010000;
1161         limit |= ( 0 << 8) | (node_id << 0);
1162         base = (base_k << 2);
1163         base &= 0xffff0000;
1164         base |= (0 << 8) | (1<<1) | (1<<0);
1165
1166         limit_reg = 0x44 + index;
1167         base_reg = 0x40 + index;
1168         for(device = PCI_DEV(0, 0x18, 1); device <= PCI_DEV(0, 0x1f, 1); device += PCI_DEV(0, 1, 0)) {
1169                 pci_write_config32(device, limit_reg, limit);
1170                 pci_write_config32(device, base_reg, base);
1171         }
1172 }
1173
1174 static void set_top_mem(unsigned tom_k)
1175 {
1176         /* Error if I don't have memory */
1177         if (!tom_k) {
1178                 die("No memory");
1179         }
1180
1181 #if 1
1182         /* Report the amount of memory. */
1183         print_debug("RAM: 0x");
1184         print_debug_hex32(tom_k);
1185         print_debug(" KB\r\n");
1186 #endif
1187
1188         /* Now set top of memory */
1189         msr_t msr;
1190         msr.lo = (tom_k & 0x003fffff) << 10;
1191         msr.hi = (tom_k & 0xffc00000) >> 22;
1192         wrmsr(TOP_MEM2, msr);
1193
1194         /* Leave a 64M hole between TOP_MEM and TOP_MEM2
1195          * so I can see my rom chip and other I/O devices.
1196          */
1197         if (tom_k >= 0x003f0000) {
1198                 tom_k = 0x3f0000;
1199         }
1200         msr.lo = (tom_k & 0x003fffff) << 10;
1201         msr.hi = (tom_k & 0xffc00000) >> 22;
1202         wrmsr(TOP_MEM, msr);
1203 }
1204
1205 static void order_dimms(const struct mem_controller *ctrl)
1206 {
1207         unsigned long tom, tom_k, base_k;
1208         unsigned node_id;
1209
1210         /* Compute the memory base address address */
1211         base_k = 0;
1212         /* Remember which registers we have used in the high 8 bits of tom */
1213         tom = base_k >> 15;
1214         for(;;) {
1215                 /* Find the largest remaining canidate */
1216                 unsigned index, canidate;
1217                 uint32_t csbase, csmask;
1218                 unsigned size;
1219                 csbase = 0;
1220                 canidate = 0;
1221                 for(index = 0; index < 8; index++) {
1222                         uint32_t value;
1223                         value = pci_read_config32(ctrl->f2, DRAM_CSBASE + (index << 2));
1224
1225                         /* Is it enabled? */
1226                         if (!(value & 1)) {
1227                                 continue;
1228                         }
1229                         
1230                         /* Is it greater? */
1231                         if (value <= csbase) {
1232                                 continue;
1233                         }
1234                         
1235                         /* Has it already been selected */
1236                         if (tom & (1 << (index + 24))) {
1237                                 continue;
1238                         }
1239                         /* I have a new canidate */
1240                         csbase = value;
1241                         canidate = index;
1242                 }
1243                 /* See if I have found a new canidate */
1244                 if (csbase == 0) {
1245                         break;
1246                 }
1247
1248                 /* Remember the dimm size */
1249                 size = csbase >> 21;
1250
1251                 /* Remember I have used this register */
1252                 tom |= (1 << (canidate + 24));
1253
1254                 /* Recompute the cs base register value */
1255                 csbase = (tom << 21) | 1;
1256
1257                 /* Increment the top of memory */
1258                 tom += size;
1259
1260                 /* Compute the memory mask */
1261                 csmask = ((size -1) << 21);
1262                 csmask |= 0xfe00;               /* For now don't optimize */
1263 #warning "Don't forget to optimize the DIMM size"
1264
1265                 /* Write the new base register */
1266                 pci_write_config32(ctrl->f2, DRAM_CSBASE + (canidate << 2), csbase);
1267                 /* Write the new mask register */
1268                 pci_write_config32(ctrl->f2, DRAM_CSMASK + (canidate << 2), csmask);
1269                 
1270         }
1271         tom_k = (tom & ~0xff000000) << 15;
1272
1273         /* Compute the memory base address */
1274         base_k = 0;
1275         for(node_id = 0; node_id < ctrl->node_id; node_id++) {
1276                 uint32_t limit, base;
1277                 unsigned index;
1278                 index = node_id << 3;
1279                 base = pci_read_config32(ctrl->f1, 0x40 + index);
1280                 /* Only look at the limit if the base is enabled */
1281                 if ((base & 3) == 3) {
1282                         limit = pci_read_config32(ctrl->f1, 0x44 + index);
1283                         base_k = ((limit + 0x00010000) & 0xffff0000) >> 2;
1284                 }
1285         }
1286         tom_k += base_k;
1287 #if 0
1288         print_debug("tom: ");
1289         print_debug_hex32(tom);
1290         print_debug(" base_k: ");
1291         print_debug_hex32(base_k);
1292         print_debug(" tom_k: ");
1293         print_debug_hex32(tom_k);
1294         print_debug("\r\n");
1295 #endif
1296         route_dram_accesses(ctrl, base_k, tom_k);
1297 //BY LYH
1298         fill_last(ctrl->node_id, tom_k<<2);
1299 //BY LYH END
1300         set_top_mem(tom_k);
1301 }
1302
1303 static void disable_dimm(const struct mem_controller *ctrl, unsigned index)
1304 {
1305         print_debug("disabling dimm"); 
1306         print_debug_hex8(index); 
1307         print_debug("\r\n");
1308         pci_write_config32(ctrl->f2, DRAM_CSBASE + (((index << 1)+0)<<2), 0);
1309         pci_write_config32(ctrl->f2, DRAM_CSBASE + (((index << 1)+1)<<2), 0);
1310 }
1311
1312
1313 static void spd_handle_unbuffered_dimms(const struct mem_controller *ctrl)
1314 {
1315         int i;
1316         int registered;
1317         int unbuffered;
1318         uint32_t dcl;
1319         unbuffered = 0;
1320         registered = 0;
1321         for(i = 0; (i < 4) && (ctrl->channel0[i]); i++) {
1322                 int value;
1323                 value = spd_read_byte(ctrl->channel0[i], 21);
1324                 if (value < 0) {
1325                         disable_dimm(ctrl, i);
1326                         continue;
1327                 }
1328                 /* Registered dimm ? */
1329                 if (value & (1 << 1)) {
1330                         registered = 1;
1331                 } 
1332                 /* Otherwise it must be an unbuffered dimm */
1333                 else {
1334                         unbuffered = 1;
1335                 }
1336         }
1337         if (unbuffered && registered) {
1338                 die("Mixed buffered and registered dimms not supported");
1339         }
1340         if (unbuffered && is_opteron(ctrl)) {
1341                 die("Unbuffered Dimms not supported on Opteron");
1342         }
1343
1344         dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
1345         dcl &= ~DCL_UnBufDimm;
1346         if (unbuffered) {
1347                 dcl |= DCL_UnBufDimm;
1348         }
1349         pci_write_config32(ctrl->f2, DRAM_CONFIG_LOW, dcl);
1350 #if 0
1351         if (is_registered(ctrl)) {
1352                 print_debug("Registered\r\n");
1353         } else {
1354                 print_debug("Unbuffered\r\n");
1355         }
1356 #endif
1357 }
1358
1359 static void spd_enable_2channels(const struct mem_controller *ctrl)
1360 {
1361         int i;
1362         uint32_t nbcap;
1363         /* SPD addresses to verify are identical */
1364 #warning "FINISHME review and see if these are the bytes I need"
1365         /* FINISHME review and see if these are the bytes I need */
1366         static const unsigned addresses[] = {
1367                 2,      /* Type should be DDR SDRAM */
1368                 3,      /* *Row addresses */
1369                 4,      /* *Column addresses */
1370                 5,      /* *Physical Banks */
1371                 6,      /* *Module Data Width low */
1372                 7,      /* *Module Data Width high */
1373                 9,      /* *Cycle time at highest CAS Latency CL=X */
1374                 11,     /* *SDRAM Type */
1375                 13,     /* *SDRAM Width */
1376                 17,     /* *Logical Banks */
1377                 18,     /* *Supported CAS Latencies */
1378                 21,     /* *SDRAM Module Attributes */
1379                 23,     /* *Cycle time at CAS Latnecy (CLX - 0.5) */
1380                 26,     /* *Cycle time at CAS Latnecy (CLX - 1.0) */
1381                 27,     /* *tRP Row precharge time */
1382                 28,     /* *Minimum Row Active to Row Active Delay (tRRD) */
1383                 29,     /* *tRCD RAS to CAS */
1384                 30,     /* *tRAS Activate to Precharge */
1385                 41,     /* *Minimum Active to Active/Auto Refresh Time(Trc) */
1386                 42,     /* *Minimum Auto Refresh Command Time(Trfc) */
1387         };
1388         nbcap = pci_read_config32(ctrl->f3, NORTHBRIDGE_CAP);
1389         if (!(nbcap & NBCAP_128Bit)) {
1390                 return;
1391         }
1392         for(i = 0; (i < 4) && (ctrl->channel0[i]); i++) {
1393                 unsigned device0, device1;
1394                 int value0, value1;
1395                 int j;
1396                 device0 = ctrl->channel0[i];
1397                 device1 = ctrl->channel1[i];
1398                 if (!device1)
1399                         return;
1400                 for(j = 0; j < sizeof(addresses)/sizeof(addresses[0]); j++) {
1401                         unsigned addr;
1402                         addr = addresses[j];
1403                         value0 = spd_read_byte(device0, addr);
1404                         if (value0 < 0) {
1405                                 break;
1406                         }
1407                         value1 = spd_read_byte(device1, addr);
1408                         if (value1 < 0) {
1409                                 return;
1410                         }
1411                         if (value0 != value1) {
1412                                 return;
1413                         }
1414                 }
1415         }
1416         print_debug("Enabling dual channel memory\r\n");
1417         uint32_t dcl;
1418         dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
1419         dcl &= ~DCL_32ByteEn;
1420         dcl |= DCL_128BitEn;
1421         pci_write_config32(ctrl->f2, DRAM_CONFIG_LOW, dcl);
1422 }
1423
1424 struct mem_param {
1425         uint8_t cycle_time;
1426         uint8_t divisor; /* In 1/2 ns increments */
1427         uint8_t tRC;
1428         uint8_t tRFC;
1429         uint32_t dch_memclk;
1430         uint16_t dch_tref4k, dch_tref8k;
1431         uint8_t  dtl_twr;
1432         char name[9];
1433 };
1434
1435 static const struct mem_param *get_mem_param(unsigned min_cycle_time)
1436 {
1437         static const struct mem_param speed[] = {
1438                 {
1439                         .name       = "100Mhz\r\n",
1440                         .cycle_time = 0xa0,
1441                         .divisor    = (10 <<1),
1442                         .tRC        = 0x46,
1443                         .tRFC       = 0x50,
1444                         .dch_memclk = DCH_MEMCLK_100MHZ << DCH_MEMCLK_SHIFT,
1445                         .dch_tref4k = DTH_TREF_100MHZ_4K,
1446                         .dch_tref8k = DTH_TREF_100MHZ_8K,
1447                         .dtl_twr    = 2,
1448                 },
1449                 {
1450                         .name       = "133Mhz\r\n",
1451                         .cycle_time = 0x75,
1452                         .divisor    = (7<<1)+1,
1453                         .tRC        = 0x41,
1454                         .tRFC       = 0x4B,
1455                         .dch_memclk = DCH_MEMCLK_133MHZ << DCH_MEMCLK_SHIFT,
1456                         .dch_tref4k = DTH_TREF_133MHZ_4K,
1457                         .dch_tref8k = DTH_TREF_133MHZ_8K,
1458                         .dtl_twr    = 2,
1459                 },
1460                 {
1461                         .name       = "166Mhz\r\n",
1462                         .cycle_time = 0x60,
1463                         .divisor    = (6<<1),
1464                         .tRC        = 0x3C,
1465                         .tRFC       = 0x48,
1466                         .dch_memclk = DCH_MEMCLK_166MHZ << DCH_MEMCLK_SHIFT,
1467                         .dch_tref4k = DTH_TREF_166MHZ_4K,
1468                         .dch_tref8k = DTH_TREF_166MHZ_8K,
1469                         .dtl_twr    = 3,
1470                 },
1471                 {
1472                         .name       = "200Mhz\r\n",
1473                         .cycle_time = 0x50,
1474                         .divisor    = (5<<1),
1475                         .tRC        = 0x37,
1476                         .tRFC       = 0x46,
1477                         .dch_memclk = DCH_MEMCLK_200MHZ << DCH_MEMCLK_SHIFT,
1478                         .dch_tref4k = DTH_TREF_200MHZ_4K,
1479                         .dch_tref8k = DTH_TREF_200MHZ_8K,
1480                         .dtl_twr    = 3,
1481                 },
1482                 {
1483                         .cycle_time = 0x00,
1484                 },
1485         };
1486         const struct mem_param *param;
1487         for(param = &speed[0]; param->cycle_time ; param++) {
1488                 if (min_cycle_time > (param+1)->cycle_time) {
1489                         break;
1490                 }
1491         }
1492         if (!param->cycle_time) {
1493                 die("min_cycle_time to low");
1494         }
1495 #if 1
1496         print_debug(param->name);
1497 #endif
1498         return param;
1499 }
1500
1501 static const struct mem_param *spd_set_memclk(const struct mem_controller *ctrl)
1502 {
1503         /* Compute the minimum cycle time for these dimms */
1504         const struct mem_param *param;
1505         unsigned min_cycle_time, min_latency;
1506         int i;
1507         uint32_t value;
1508
1509         static const int latency_indicies[] = { 26, 23, 9 };
1510         static const unsigned char min_cycle_times[] = {
1511                 [NBCAP_MEMCLK_200MHZ] = 0x50, /* 5ns */
1512                 [NBCAP_MEMCLK_166MHZ] = 0x60, /* 6ns */
1513                 [NBCAP_MEMCLK_133MHZ] = 0x75, /* 7.5ns */
1514                 [NBCAP_MEMCLK_100MHZ] = 0xa0, /* 10ns */
1515         };
1516
1517
1518         value = pci_read_config32(ctrl->f3, NORTHBRIDGE_CAP);
1519         min_cycle_time = min_cycle_times[(value >> NBCAP_MEMCLK_SHIFT) & NBCAP_MEMCLK_MASK];
1520         min_latency = 2;
1521
1522 #if 0
1523         print_debug("min_cycle_time: "); 
1524         print_debug_hex8(min_cycle_time); 
1525         print_debug(" min_latency: ");
1526         print_debug_hex8(min_latency);
1527         print_debug("\r\n");
1528 #endif
1529
1530         /* Compute the least latency with the fastest clock supported
1531          * by both the memory controller and the dimms.
1532          */
1533         for(i = 0; (i < 4) && (ctrl->channel0[i]); i++) {
1534                 int new_cycle_time, new_latency;
1535                 int index;
1536                 int latencies;
1537                 int latency;
1538
1539                 /* First find the supported CAS latencies
1540                  * Byte 18 for DDR SDRAM is interpreted:
1541                  * bit 0 == CAS Latency = 1.0
1542                  * bit 1 == CAS Latency = 1.5
1543                  * bit 2 == CAS Latency = 2.0
1544                  * bit 3 == CAS Latency = 2.5
1545                  * bit 4 == CAS Latency = 3.0
1546                  * bit 5 == CAS Latency = 3.5
1547                  * bit 6 == TBD
1548                  * bit 7 == TBD
1549                  */
1550                 new_cycle_time = 0xa0;
1551                 new_latency = 5;
1552
1553                 latencies = spd_read_byte(ctrl->channel0[i], 18);
1554                 if (latencies <= 0) continue;
1555
1556                 /* Compute the lowest cas latency supported */
1557                 latency = log2(latencies) -2;
1558
1559                 /* Loop through and find a fast clock with a low latency */
1560                 for(index = 0; index < 3; index++, latency++) {
1561                         int value;
1562                         if ((latency < 2) || (latency > 4) ||
1563                                 (!(latencies & (1 << latency)))) {
1564                                 continue;
1565                         }
1566                         value = spd_read_byte(ctrl->channel0[i], latency_indicies[index]);
1567                         if (value < 0) {
1568                                 continue;
1569                         }
1570
1571                         /* Only increase the latency if we decreas the clock */
1572                         if ((value >= min_cycle_time) && (value < new_cycle_time)) {
1573                                 new_cycle_time = value;
1574                                 new_latency = latency;
1575                         }
1576                 }
1577                 if (new_latency > 4){
1578                         continue;
1579                 }
1580                 /* Does min_latency need to be increased? */
1581                 if (new_cycle_time > min_cycle_time) {
1582                         min_cycle_time = new_cycle_time;
1583                 }
1584                 /* Does min_cycle_time need to be increased? */
1585                 if (new_latency > min_latency) {
1586                         min_latency = new_latency;
1587                 }
1588 #if 0
1589                 print_debug("i: ");
1590                 print_debug_hex8(i);
1591                 print_debug(" min_cycle_time: "); 
1592                 print_debug_hex8(min_cycle_time); 
1593                 print_debug(" min_latency: ");
1594                 print_debug_hex8(min_latency);
1595                 print_debug("\r\n");
1596 #endif
1597         }
1598         /* Make a second pass through the dimms and disable
1599          * any that cannot support the selected memclk and cas latency.
1600          */
1601         
1602         for(i = 0; (i < 4) && (ctrl->channel0[i]); i++) {
1603                 int latencies;
1604                 int latency;
1605                 int index;
1606                 int value;
1607                 int dimm;
1608                 latencies = spd_read_byte(ctrl->channel0[i], 18);
1609                 if (latencies <= 0) {
1610                         goto dimm_err;
1611                 }
1612
1613                 /* Compute the lowest cas latency supported */
1614                 latency = log2(latencies) -2;
1615
1616                 /* Walk through searching for the selected latency */
1617                 for(index = 0; index < 3; index++, latency++) {
1618                         if (!(latencies & (1 << latency))) {
1619                                 continue;
1620                         }
1621                         if (latency == min_latency)
1622                                 break;
1623                 }
1624                 /* If I can't find the latency or my index is bad error */
1625                 if ((latency != min_latency) || (index >= 3)) {
1626                         goto dimm_err;
1627                 }
1628                 
1629                 /* Read the min_cycle_time for this latency */
1630                 value = spd_read_byte(ctrl->channel0[i], latency_indicies[index]);
1631                 
1632                 /* All is good if the selected clock speed 
1633                  * is what I need or slower.
1634                  */
1635                 if (value <= min_cycle_time) {
1636                         continue;
1637                 }
1638                 /* Otherwise I have an error, disable the dimm */
1639         dimm_err:
1640                 disable_dimm(ctrl, i);
1641         }
1642 #if 0
1643         print_debug("min_cycle_time: "); 
1644         print_debug_hex8(min_cycle_time); 
1645         print_debug(" min_latency: ");
1646         print_debug_hex8(min_latency);
1647         print_debug("\r\n");
1648 #endif
1649         /* Now that I know the minimum cycle time lookup the memory parameters */
1650         param = get_mem_param(min_cycle_time);
1651
1652         /* Update DRAM Config High with our selected memory speed */
1653         value = pci_read_config32(ctrl->f2, DRAM_CONFIG_HIGH);
1654         value &= ~(DCH_MEMCLK_MASK << DCH_MEMCLK_SHIFT);
1655         value |= param->dch_memclk;
1656         pci_write_config32(ctrl->f2, DRAM_CONFIG_HIGH, value);
1657
1658         static const unsigned latencies[] = { DTL_CL_2, DTL_CL_2_5, DTL_CL_3 };
1659         /* Update DRAM Timing Low with our selected cas latency */
1660         value = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1661         value &= ~(DTL_TCL_MASK << DTL_TCL_SHIFT);
1662         value |= latencies[min_latency - 2] << DTL_TCL_SHIFT;
1663         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, value);
1664         
1665         return param;
1666 }
1667
1668
1669 static int update_dimm_Trc(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1670 {
1671         unsigned clocks, old_clocks;
1672         uint32_t dtl;
1673         int value;
1674         value = spd_read_byte(ctrl->channel0[i], 41);
1675         if (value < 0) return -1;
1676         if ((value == 0) || (value == 0xff)) {
1677                 value = param->tRC;
1678         }
1679         clocks = ((value << 1) + param->divisor - 1)/param->divisor;
1680         if (clocks < DTL_TRC_MIN) {
1681                 clocks = DTL_TRC_MIN;
1682         }
1683         if (clocks > DTL_TRC_MAX) {
1684                 return -1;
1685         }
1686
1687         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1688         old_clocks = ((dtl >> DTL_TRC_SHIFT) & DTL_TRC_MASK) + DTL_TRC_BASE;
1689         if (old_clocks > clocks) {
1690                 clocks = old_clocks;
1691         }
1692         dtl &= ~(DTL_TRC_MASK << DTL_TRC_SHIFT);
1693         dtl |=  ((clocks - DTL_TRC_BASE) << DTL_TRC_SHIFT);
1694         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1695         return 0;
1696 }
1697
1698 static int update_dimm_Trfc(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1699 {
1700         unsigned clocks, old_clocks;
1701         uint32_t dtl;
1702         int value;
1703         value = spd_read_byte(ctrl->channel0[i], 42);
1704         if (value < 0) return -1;
1705         if ((value == 0) || (value == 0xff)) {
1706                 value = param->tRFC;
1707         }
1708         clocks = ((value << 1) + param->divisor - 1)/param->divisor;
1709         if (clocks < DTL_TRFC_MIN) {
1710                 clocks = DTL_TRFC_MIN;
1711         }
1712         if (clocks > DTL_TRFC_MAX) {
1713                 return -1;
1714         }
1715         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1716         old_clocks = ((dtl >> DTL_TRFC_SHIFT) & DTL_TRFC_MASK) + DTL_TRFC_BASE;
1717         if (old_clocks > clocks) {
1718                 clocks = old_clocks;
1719         }
1720         dtl &= ~(DTL_TRFC_MASK << DTL_TRFC_SHIFT);
1721         dtl |= ((clocks - DTL_TRFC_BASE) << DTL_TRFC_SHIFT);
1722         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1723         return 0;
1724 }
1725
1726
1727 static int update_dimm_Trcd(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1728 {
1729         unsigned clocks, old_clocks;
1730         uint32_t dtl;
1731         int value;
1732         value = spd_read_byte(ctrl->channel0[i], 29);
1733         if (value < 0) return -1;
1734 #if 0
1735         clocks = (value + (param->divisor << 1) -1)/(param->divisor << 1);
1736 #else
1737         clocks = (value + ((param->divisor & 0xff) << 1) -1)/((param->divisor & 0xff) << 1);
1738 #endif
1739         if (clocks < DTL_TRCD_MIN) {
1740                 clocks = DTL_TRCD_MIN;
1741         }
1742         if (clocks > DTL_TRCD_MAX) {
1743                 return -1;
1744         }
1745         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1746         old_clocks = ((dtl >> DTL_TRCD_SHIFT) & DTL_TRCD_MASK) + DTL_TRCD_BASE;
1747         if (old_clocks > clocks) {
1748                 clocks = old_clocks;
1749         }
1750         dtl &= ~(DTL_TRCD_MASK << DTL_TRCD_SHIFT);
1751         dtl |= ((clocks - DTL_TRCD_BASE) << DTL_TRCD_SHIFT);
1752         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1753         return 0;
1754 }
1755
1756 static int update_dimm_Trrd(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1757 {
1758         unsigned clocks, old_clocks;
1759         uint32_t dtl;
1760         int value;
1761         value = spd_read_byte(ctrl->channel0[i], 28);
1762         if (value < 0) return -1;
1763         clocks = (value + ((param->divisor & 0xff) << 1) -1)/((param->divisor & 0xff) << 1);
1764         if (clocks < DTL_TRRD_MIN) {
1765                 clocks = DTL_TRRD_MIN;
1766         }
1767         if (clocks > DTL_TRRD_MAX) {
1768                 return -1;
1769         }
1770         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1771         old_clocks = ((dtl >> DTL_TRRD_SHIFT) & DTL_TRRD_MASK) + DTL_TRRD_BASE;
1772         if (old_clocks > clocks) {
1773                 clocks = old_clocks;
1774         }
1775         dtl &= ~(DTL_TRRD_MASK << DTL_TRRD_SHIFT);
1776         dtl |= ((clocks - DTL_TRRD_BASE) << DTL_TRRD_SHIFT);
1777         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1778         return 0;
1779 }
1780
1781 static int update_dimm_Tras(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1782 {
1783         unsigned clocks, old_clocks;
1784         uint32_t dtl;
1785         int value;
1786         value = spd_read_byte(ctrl->channel0[i], 30);
1787         if (value < 0) return -1;
1788         clocks = ((value << 1) + param->divisor - 1)/param->divisor;
1789         if (clocks < DTL_TRAS_MIN) {
1790                 clocks = DTL_TRAS_MIN;
1791         }
1792         if (clocks > DTL_TRAS_MAX) {
1793                 return -1;
1794         }
1795         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1796         old_clocks = ((dtl >> DTL_TRAS_SHIFT) & DTL_TRAS_MASK) + DTL_TRAS_BASE;
1797         if (old_clocks > clocks) {
1798                 clocks = old_clocks;
1799         }
1800         dtl &= ~(DTL_TRAS_MASK << DTL_TRAS_SHIFT);
1801         dtl |= ((clocks - DTL_TRAS_BASE) << DTL_TRAS_SHIFT);
1802         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1803         return 0;
1804 }
1805
1806 static int update_dimm_Trp(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1807 {
1808         unsigned clocks, old_clocks;
1809         uint32_t dtl;
1810         int value;
1811         value = spd_read_byte(ctrl->channel0[i], 27);
1812         if (value < 0) return -1;
1813 #if 0
1814         clocks = (value + (param->divisor << 1) - 1)/(param->divisor << 1);
1815 #else
1816         clocks = (value + ((param->divisor & 0xff) << 1) - 1)/((param->divisor & 0xff) << 1);
1817 #endif
1818 #if 0
1819         print_debug("Trp: ");
1820         print_debug_hex8(clocks);
1821         print_debug(" spd value: ");
1822         print_debug_hex8(value);
1823         print_debug(" divisor: ");
1824         print_debug_hex8(param->divisor);
1825         print_debug("\r\n");
1826 #endif
1827         if (clocks < DTL_TRP_MIN) {
1828                 clocks = DTL_TRP_MIN;
1829         }
1830         if (clocks > DTL_TRP_MAX) {
1831                 return -1;
1832         }
1833         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1834         old_clocks = ((dtl >> DTL_TRP_SHIFT) & DTL_TRP_MASK) + DTL_TRP_BASE;
1835         if (old_clocks > clocks) {
1836                 clocks = old_clocks;
1837         }
1838         dtl &= ~(DTL_TRP_MASK << DTL_TRP_SHIFT);
1839         dtl |= ((clocks - DTL_TRP_BASE) << DTL_TRP_SHIFT);
1840         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1841         return 0;
1842 }
1843
1844 static void set_Twr(const struct mem_controller *ctrl, const struct mem_param *param)
1845 {
1846         uint32_t dtl;
1847         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1848         dtl &= ~(DTL_TWR_MASK << DTL_TWR_SHIFT);
1849         dtl |= (param->dtl_twr - DTL_TWR_BASE) << DTL_TWR_SHIFT;
1850         pci_write_config32(ctrl->f2, DRAM_TIMING_LOW, dtl);
1851 }
1852
1853
1854 static void init_Tref(const struct mem_controller *ctrl, const struct mem_param *param)
1855 {
1856         uint32_t dth;
1857         dth = pci_read_config32(ctrl->f2, DRAM_TIMING_HIGH);
1858         dth &= ~(DTH_TREF_MASK << DTH_TREF_SHIFT);
1859         dth |= (param->dch_tref4k << DTH_TREF_SHIFT);
1860         pci_write_config32(ctrl->f2, DRAM_TIMING_HIGH, dth);
1861 }
1862
1863 static int update_dimm_Tref(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1864 {
1865         uint32_t dth;
1866         int value;
1867         unsigned tref, old_tref;
1868         value = spd_read_byte(ctrl->channel0[i], 3);
1869         if (value < 0) return -1;
1870         value &= 0xf;
1871
1872         tref = param->dch_tref8k;
1873         if (value == 12) {
1874                 tref = param->dch_tref4k;
1875         }
1876
1877         dth = pci_read_config32(ctrl->f2, DRAM_TIMING_HIGH);
1878         old_tref = (dth >> DTH_TREF_SHIFT) & DTH_TREF_MASK;
1879         if ((value == 12) && (old_tref == param->dch_tref4k)) {
1880                 tref = param->dch_tref4k;
1881         } else {
1882                 tref = param->dch_tref8k;
1883         }
1884         dth &= ~(DTH_TREF_MASK << DTH_TREF_SHIFT);
1885         dth |= (tref << DTH_TREF_SHIFT);
1886         pci_write_config32(ctrl->f2, DRAM_TIMING_HIGH, dth);
1887         return 0;
1888 }
1889
1890
1891 static int update_dimm_x4(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1892 {
1893         uint32_t dcl;
1894         int value;
1895         int dimm;
1896         value = spd_read_byte(ctrl->channel0[i], 13);
1897         if (value < 0) {
1898                 return -1;
1899         }
1900         dimm = i;
1901         dimm += DCL_x4DIMM_SHIFT;
1902         dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
1903         dcl &= ~(1 << dimm);
1904         if (value == 4) {
1905                 dcl |= (1 << dimm);
1906         }
1907         pci_write_config32(ctrl->f2, DRAM_CONFIG_LOW, dcl);
1908         return 0;
1909 }
1910
1911 static int update_dimm_ecc(const struct mem_controller *ctrl, const struct mem_param *param, int i)
1912 {
1913         uint32_t dcl;
1914         int value;
1915         value = spd_read_byte(ctrl->channel0[i], 11);
1916         if (value < 0) {
1917                 return -1;
1918         }
1919         if (value != 2) {
1920                 dcl = pci_read_config32(ctrl->f2, DRAM_CONFIG_LOW);
1921                 dcl &= ~DCL_DimmEccEn;
1922                 pci_write_config32(ctrl->f2, DRAM_CONFIG_LOW, dcl);
1923         }
1924         return 0;
1925 }
1926
1927 static int count_dimms(const struct mem_controller *ctrl)
1928 {
1929         int dimms;
1930         unsigned index;
1931         dimms = 0;
1932         for(index = 0; index < 8; index += 2) {
1933                 uint32_t csbase;
1934                 csbase = pci_read_config32(ctrl->f2, (DRAM_CSBASE + index << 2));
1935                 if (csbase & 1) {
1936                         dimms += 1;
1937                 }
1938         }
1939         return dimms;
1940 }
1941
1942 static void set_Twtr(const struct mem_controller *ctrl, const struct mem_param *param)
1943 {
1944         uint32_t dth;
1945         unsigned clocks;
1946         clocks = 1; /* AMD says hard code this */
1947         dth = pci_read_config32(ctrl->f2, DRAM_TIMING_HIGH);
1948         dth &= ~(DTH_TWTR_MASK << DTH_TWTR_SHIFT);
1949         dth |= ((clocks - DTH_TWTR_BASE) << DTH_TWTR_SHIFT);
1950         pci_write_config32(ctrl->f2, DRAM_TIMING_HIGH, dth);
1951 }
1952
1953 static void set_Trwt(const struct mem_controller *ctrl, const struct mem_param *param)
1954 {
1955         uint32_t dth, dtl;
1956         unsigned divisor;
1957         unsigned latency;
1958         unsigned clocks;
1959
1960         clocks = 0;
1961         dtl = pci_read_config32(ctrl->f2, DRAM_TIMING_LOW);
1962         latency = (dtl >> DTL_TCL_SHIFT) & DTL_TCL_MASK;
1963         divisor = param->divisor;
1964
1965         if (is_opteron(ctrl)) {
1966                 if (latency == DTL_CL_2) {
1967                         if (divisor == ((6 << 0) + 0)) {
1968                                 /* 166Mhz */
1969                                 clocks = 3;
1970                         }
1971                         else if (divisor > ((6 << 0)+0)) {
1972                                 /* 100Mhz && 133Mhz */
1973                                 clocks = 2;
1974                         }
1975                 }
1976                 else if (latency == DTL_CL_2_5) {
1977                         clocks = 3;
1978                 }
1979                 else if (latency == DTL_CL_3) {
1980                         if (divisor == ((6 << 0)+0)) {
1981                                 /* 166Mhz */
1982                                 clocks = 4;
1983                         }
1984                         else if (divisor > ((6 << 0)+0)) {
1985                                 /* 100Mhz && 133Mhz */
1986                                 clocks = 3;
1987                         }
1988                 }
1989         }
1990         else /* Athlon64 */ {
1991                 if (is_registered(ctrl)) {
1992                         if (latency == DTL_CL_2) {
1993                                 clocks = 2;
1994                         }
1995                         else if (latency == DTL_CL_2_5) {
1996                                 clocks = 3;
1997                         }
1998                         else if (latency == DTL_CL_3) {
1999                                 clocks = 3;
2000                         }
2001                 }
2002                 else /* Unbuffered */{
2003                         if (latency == DTL_CL_2) {
2004                                 clocks = 3;
2005                         }
2006                         else if (latency == DTL_CL_2_5) {
2007                                 clocks = 4;
2008                         }
2009                         else if (latency == DTL_CL_3) {
2010                                 clocks = 4;
2011                         }
2012                 }
2013         }
2014         if ((clocks < DTH_TRWT_MIN) || (clocks > DTH_TRWT_MAX)) {
2015                 die("Unknown Trwt");
2016         }
2017         
2018         dth = pci_read_config32(ctrl->f2, DRAM_TIMING_HIGH);
2019         dth &= ~(DTH_TRWT_MASK << DTH_TRWT_SHIFT);
2020         dth |= ((clocks - DTH_TRWT_BASE) << DTH_TRWT_SHIFT);
2021         pci_write_config32(ctrl->f2, DRAM_TIMING_HIGH, dth);
2022         return;
2023 }
2024
2025 static void set_Twcl(const struct mem_controller *ctrl, const struct mem_param *param)
2026 {
2027         /* Memory Clocks after CAS# */
2028         uint32_t dth;
2029         unsigned clocks;
2030         if (is_registered(ctrl)) {
2031                 clocks = 2;
2032         } else {
2033                 clocks = 1;
2034         }
2035         dth = pci_read_config32(ctrl->f2, DRAM_TIMING_HIGH);
2036         dth &= ~(DTH_TWCL_MASK << DTH_TWCL_SHIFT);
2037         dth |= ((clocks - DTH_TWCL_BASE) << DTH_TWCL_SHIFT);
2038         pci_write_config32(ctrl->f2, DRAM_TIMING_HIGH, dth);
2039 }
2040
2041
2042 static void set_read_preamble(const struct mem_controller *ctrl, const struct mem_param *param)
2043 {
2044         uint32_t dch;
2045         unsigned divisor;
2046         unsigned rdpreamble;
2047         divisor = param->divisor;
2048         dch = pci_read_config32(ctrl->f2, DRAM_CONFIG_HIGH);
2049         dch &= ~(DCH_RDPREAMBLE_MASK << DCH_RDPREAMBLE_SHIFT);
2050         rdpreamble = 0;
2051         if (is_registered(ctrl)) {
2052                 if (divisor == ((10 << 1)+0)) {
2053                         /* 100Mhz, 9ns */
2054                         rdpreamble = ((9 << 1)+ 0);
2055                 }
2056                 else if (divisor == ((7 << 1)+1)) {
2057                         /* 133Mhz, 8ns */
2058                         rdpreamble = ((8 << 1)+0);
2059                 }
2060                 else if (divisor == ((6 << 1)+0)) {
2061                         /* 166Mhz, 7.5ns */
2062                         rdpreamble = ((7 << 1)+1);
2063                 }
2064         }
2065         else {
2066                 int slots;
2067                 int i;
2068                 slots = 0;
2069                 for(i = 0; i < 4; i++) {
2070                         if (ctrl->channel0[i]) {
2071                                 slots += 1;
2072                         }
2073                 }
2074                 if (divisor == ((10 << 1)+0)) {
2075                         /* 100Mhz */
2076                         if (slots <= 2) {
2077                                 /* 9ns */
2078                                 rdpreamble = ((9 << 1)+0);
2079                         } else {
2080                                 /* 14ns */
2081                                 rdpreamble = ((14 << 1)+0);
2082                         }
2083                 }
2084                 else if (divisor == ((7 << 1)+1)) {
2085                         /* 133Mhz */
2086                         if (slots <= 2) {
2087                                 /* 7ns */
2088                                 rdpreamble = ((7 << 1)+0);
2089                         } else {
2090                                 /* 11 ns */
2091                                 rdpreamble = ((11 << 1)+0);
2092                         }
2093                 }
2094                 else if (divisor == ((6 << 1)+0)) {
2095                         /* 166Mhz */
2096                         if (slots <= 2) {
2097                                 /* 6ns */
2098                                 rdpreamble = ((7 << 1)+0);
2099                         } else {
2100                                 /* 9ns */
2101                                 rdpreamble = ((9 << 1)+0);
2102                         }
2103                 }
2104                 else if (divisor == ((5 << 1)+0)) {
2105                         /* 200Mhz */
2106                         if (slots <= 2) {
2107                                 /* 5ns */
2108                                 rdpreamble = ((5 << 1)+0);
2109                         } else {
2110                                 /* 7ns */
2111                                 rdpreamble = ((7 << 1)+0);
2112                         }
2113                 }
2114         }
2115         if ((rdpreamble < DCH_RDPREAMBLE_MIN) || (rdpreamble > DCH_RDPREAMBLE_MAX)) {
2116                 die("Unknown rdpreamble");
2117         }
2118         dch |= (rdpreamble - DCH_RDPREAMBLE_BASE) << DCH_RDPREAMBLE_SHIFT;
2119         pci_write_config32(ctrl->f2, DRAM_CONFIG_HIGH, dch);
2120 }
2121
2122 static void set_max_async_latency(const struct mem_controller *ctrl, const struct mem_param *param)
2123 {
2124         uint32_t dch;
2125         int i;
2126         unsigned async_lat;
2127         int dimms;
2128
2129         dimms = count_dimms(ctrl);
2130
2131         dch = pci_read_config32(ctrl->f2, DRAM_CONFIG_HIGH);
2132         dch &= ~(DCH_ASYNC_LAT_MASK << DCH_ASYNC_LAT_SHIFT);
2133         async_lat = 0;
2134         if (is_registered(ctrl)) {
2135                 if (dimms == 4) {
2136                         /* 9ns */
2137                         async_lat = 9;
2138                 } 
2139                 else {
2140                         /* 8ns */
2141                         async_lat = 8;
2142                 }
2143         }
2144         else {
2145                 if (dimms > 3) {
2146                         die("Too many unbuffered dimms");
2147                 }
2148                 else if (dimms == 3) {
2149                         /* 7ns */
2150                         async_lat = 7;
2151                 }
2152                 else {
2153                         /* 6ns */
2154                         async_lat = 6;
2155                 }
2156         }
2157         dch |= ((async_lat - DCH_ASYNC_LAT_BASE) << DCH_ASYNC_LAT_SHIFT);
2158         pci_write_config32(ctrl->f2, DRAM_CONFIG_HIGH, dch);
2159 }
2160
2161 static void set_idle_cycle_limit(const struct mem_controller *ctrl, const struct mem_param *param)
2162 {
2163         uint32_t dch;
2164         /* AMD says to Hardcode this */
2165         dch = pci_read_config32(ctrl->f2, DRAM_CONFIG_HIGH);
2166         dch &= ~(DCH_IDLE_LIMIT_MASK << DCH_IDLE_LIMIT_SHIFT);
2167         dch |= DCH_IDLE_LIMIT_16 << DCH_IDLE_LIMIT_SHIFT;
2168         dch |= DCH_DYN_IDLE_CTR_EN;
2169         pci_write_config32(ctrl->f2, DRAM_CONFIG_HIGH, dch);
2170 }
2171
2172 static void spd_set_dram_timing(const struct mem_controller *ctrl, const struct mem_param *param)
2173 {
2174         int dimms;
2175         int i;
2176         init_Tref(ctrl, param);
2177         for(i = 0; (i < 4) && ctrl->channel0[i]; i++) {
2178                 int rc;
2179                 /* DRAM Timing Low Register */
2180                 if (update_dimm_Trc (ctrl, param, i) < 0) goto dimm_err;
2181                 if (update_dimm_Trfc(ctrl, param, i) < 0) goto dimm_err;
2182                 if (update_dimm_Trcd(ctrl, param, i) < 0) goto dimm_err;
2183                 if (update_dimm_Trrd(ctrl, param, i) < 0) goto dimm_err;
2184                 if (update_dimm_Tras(ctrl, param, i) < 0) goto dimm_err;
2185                 if (update_dimm_Trp (ctrl, param, i) < 0) goto dimm_err;
2186
2187                 /* DRAM Timing High Register */
2188                 if (update_dimm_Tref(ctrl, param, i) < 0) goto dimm_err;
2189
2190                 /* DRAM Config Low */
2191                 if (update_dimm_x4 (ctrl, param, i) < 0) goto dimm_err;
2192                 if (update_dimm_ecc(ctrl, param, i) < 0) goto dimm_err;
2193                 continue;
2194         dimm_err:
2195                 disable_dimm(ctrl, i);
2196                 
2197         }
2198         /* DRAM Timing Low Register */
2199         set_Twr(ctrl, param);
2200
2201         /* DRAM Timing High Register */
2202         set_Twtr(ctrl, param);
2203         set_Trwt(ctrl, param);
2204         set_Twcl(ctrl, param);
2205
2206         /* DRAM Config High */
2207         set_read_preamble(ctrl, param);
2208         set_max_async_latency(ctrl, param);
2209         set_idle_cycle_limit(ctrl, param);
2210 }
2211
2212 static void sdram_set_spd_registers(const struct mem_controller *ctrl) 
2213 {
2214         const struct mem_param *param;
2215         spd_enable_2channels(ctrl);
2216         spd_set_ram_size(ctrl);
2217         spd_handle_unbuffered_dimms(ctrl);
2218         param = spd_set_memclk(ctrl);
2219         spd_set_dram_timing(ctrl, param);
2220         order_dimms(ctrl);
2221 }
2222
2223 #define TIMEOUT_LOOPS 300000
2224 static void sdram_enable(int controllers, const struct mem_controller *ctrl)
2225 {
2226         int i;
2227
2228         /* Before enabling memory start the memory clocks */
2229         for(i = 0; i < controllers; i++) {
2230                 uint32_t dch;
2231                 dch = pci_read_config32(ctrl[i].f2, DRAM_CONFIG_HIGH);
2232                 dch |= DCH_MEMCLK_VALID;
2233                 pci_write_config32(ctrl[i].f2, DRAM_CONFIG_HIGH, dch);
2234         }
2235
2236         /* And if necessary toggle the the reset on the dimms by hand */
2237         memreset(controllers, ctrl);
2238
2239         for(i = 0; i < controllers; i++) {
2240                 uint32_t dcl;
2241                 /* Toggle DisDqsHys to get it working */
2242                 dcl = pci_read_config32(ctrl[i].f2, DRAM_CONFIG_LOW);
2243 #if 0
2244                 print_debug("dcl: ");
2245                 print_debug_hex32(dcl);
2246                 print_debug("\r\n");
2247 #endif
2248 #warning "FIXME set the ECC type to perform"
2249 #warning "FIXME initialize the scrub registers"
2250 #if 1
2251                 if (dcl & DCL_DimmEccEn) {
2252                         print_debug("ECC enabled\r\n");
2253                 }
2254 #endif
2255                 dcl |= DCL_DisDqsHys;
2256                 pci_write_config32(ctrl[i].f2, DRAM_CONFIG_LOW, dcl);
2257                 dcl &= ~DCL_DisDqsHys;
2258                 dcl &= ~DCL_DLL_Disable;
2259                 dcl &= ~DCL_D_DRV;
2260                 dcl &= ~DCL_QFC_EN;
2261                 dcl |= DCL_DramInit;
2262                 pci_write_config32(ctrl[i].f2, DRAM_CONFIG_LOW, dcl);
2263
2264         }
2265         for(i = 0; i < controllers; i++) {
2266                 uint32_t dcl;
2267                 print_debug("Initializing memory: ");
2268                 int loops = 0;
2269                 do {
2270                         dcl = pci_read_config32(ctrl[i].f2, DRAM_CONFIG_LOW);
2271                         loops += 1;
2272                         if ((loops & 1023) == 0) {
2273                                 print_debug(".");
2274                         }
2275                 } while(((dcl & DCL_DramInit) != 0) && (loops < TIMEOUT_LOOPS));
2276                 if (loops >= TIMEOUT_LOOPS) {
2277                         print_debug(" failed\r\n");
2278                 } else {
2279                         print_debug(" done\r\n");
2280                 }
2281 #if 0
2282                 if (dcl & DCL_DimmEccEn) {
2283                         print_debug("Clearing memory: ");
2284                         loops = 0;
2285                         dcl &= ~DCL_MemClrStatus;
2286                         pci_write_config32(ctrl[i].f2, DRAM_CONFIG_LOW, dcl);
2287                         
2288                         do {
2289                                 dcl = pci_read_config32(ctrl[i].f2, DRAM_CONFIG_LOW);
2290                                 loops += 1;
2291                                 if ((loops & 1023) == 0) {
2292                                         print_debug(" ");
2293                                         print_debug_hex32(loops);
2294                                 }
2295                         } while(((dcl & DCL_MemClrStatus) == 0) && (loops < TIMEOUT_LOOPS));
2296                         if (loops >= TIMEOUT_LOOPS) {
2297                                 print_debug("failed\r\n");
2298                         } else {
2299                                 print_debug("done\r\n");
2300                         }
2301                         pci_write_config32(ctrl[i].f3, SCRUB_ADDR_LOW, 0);
2302                         pci_write_config32(ctrl[i].f3, SCRUB_ADDR_HIGH, 0);
2303                 }
2304 #endif
2305         }
2306 }