his patch fixes the CAS map for -.5 and -1 CAS settings. The -.5 setting should only...
[coreboot.git] / src / northbridge / amd / lx / raminit.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <cpu/amd/lxdef.h>
21 #include <arch/io.h>
22 #include <spd.h>
23 #include "southbridge/amd/cs5536/cs5536.h"
24
25 static const unsigned char NumColAddr[] = { 
26         0x00, 0x10, 0x11, 0x00, 0x00, 0x00, 0x00, 0x07, 
27         0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F 
28 };
29
30 static void auto_size_dimm(unsigned int dimm)
31 {
32         uint32_t dimm_setting;
33         uint16_t dimm_size;
34         uint8_t spd_byte;
35         msr_t msr;
36
37         dimm_setting = 0;
38
39         /* Check that we have a dimm */
40         if (spd_read_byte(dimm, SPD_MEMORY_TYPE) == 0xFF) {
41                 return;
42         }
43
44         /* Field: Module Banks per DIMM */
45         /* EEPROM byte usage: (5) Number of DIMM Banks */
46         spd_byte = spd_read_byte(dimm, SPD_NUM_DIMM_BANKS);
47         if ((MIN_MOD_BANKS > spd_byte) && (spd_byte > MAX_MOD_BANKS)) {
48                 print_debug("Number of module banks not compatible\n");
49                 POST_CODE(ERROR_BANK_SET);
50                 __asm__ __volatile__("hlt\n");
51         }
52         dimm_setting |= (spd_byte >> 1) << CF07_UPPER_D0_MB_SHIFT;
53
54         /* Field: Banks per SDRAM device */
55         /* EEPROM byte usage: (17) Number of Banks on SDRAM Device */
56         spd_byte = spd_read_byte(dimm, SPD_NUM_BANKS_PER_SDRAM);
57         if ((MIN_DEV_BANKS > spd_byte) && (spd_byte > MAX_DEV_BANKS)) {
58                 print_debug("Number of device banks not compatible\n");
59                 POST_CODE(ERROR_BANK_SET);
60                 __asm__ __volatile__("hlt\n");
61         }
62         dimm_setting |= (spd_byte >> 2) << CF07_UPPER_D0_CB_SHIFT;
63
64         /*; Field: DIMM size
65          *; EEPROM byte usage: (3)  Number or Row Addresses
66          *;                                       (4)  Number of Column Addresses
67          *;                                       (5)  Number of DIMM Banks
68          *;                                       (31) Module Bank Density
69          *; Size = Module Density * Module Banks
70          */
71         if ((spd_read_byte(dimm, SPD_NUM_ROWS) & 0xF0)
72             || (spd_read_byte(dimm, SPD_NUM_COLUMNS) & 0xF0)) {
73                 print_debug("Assymetirc DIMM not compatible\n");
74                 POST_CODE(ERROR_UNSUPPORTED_DIMM);
75                 __asm__ __volatile__("hlt\n");
76         }
77
78         dimm_size = spd_read_byte(dimm, SPD_BANK_DENSITY);
79         dimm_size |= (dimm_size << 8);  /* align so 1GB(bit0) is bit 8, this is a little weird to get gcc to not optimize this out */
80         dimm_size &= 0x01FC;    /* and off 2GB DIMM size : not supported and the 1GB size we just moved up to bit 8 as well as all the extra on top */
81
82         /*       Module Density * Module Banks */
83         dimm_size <<= (dimm_setting >> CF07_UPPER_D0_MB_SHIFT) & 1;     /* shift to multiply by # DIMM banks */
84         dimm_size = __builtin_ctz(dimm_size);
85         if (dimm_size > 8) {    /* 8 is 1GB only support 1GB per DIMM */
86                 print_debug("Only support up to 1 GB per DIMM\n");
87                 POST_CODE(ERROR_DENSITY_DIMM);
88                 __asm__ __volatile__("hlt\n");
89         }
90         dimm_setting |= dimm_size << CF07_UPPER_D0_SZ_SHIFT;
91
92 /*; Field: PAGE size
93 *; EEPROM byte usage: (4)  Number of Column Addresses
94 *; PageSize = 2^# Column Addresses * Data width in bytes (should be 8bytes for a normal DIMM)
95 *
96 *; But this really works by magic.
97 *;If ma[12:0] is the memory address pins, and pa[12:0] is the physical column address
98 *;that MC generates, here is how the MC assigns the pa onto the ma pins:
99 *
100 *;ma  12 11 10 09 08 07 06 05 04 03 02 01 00
101 *;-------------------------------------------
102 *;pa                                    09 08 07 06 05 04 03    (7 col addr bits = 1K page size)
103 *;pa                             10 09 08 07 06 05 04 03        (8 col addr bits = 2K page size)
104 *;pa                      11 10 09 08 07 06 05 04 03    (9 col addr bits = 4K page size)
105 *;pa               12 11 10 09 08 07 06 05 04 03        (10 col addr bits = 8K page size)
106 *;pa     13 AP 12 11 10 09 08 07 06 05 04 03    (11 col addr bits = 16K page size)
107 *;pa  14 13 AP 12 11 10 09 08 07 06 05 04 03    (12 col addr bits = 32K page size)
108 *; *AP=autoprecharge bit
109 *
110 *;Remember that pa[2:0] are zeroed out since it's a 64-bit data bus (8 bytes),
111 *;so lower 3 address bits are dont_cares.So from the table above,
112 *;it's easier to see what the old code is doing: if for example,#col_addr_bits=7(06h),
113 *;it adds 3 to get 10, then does 2^10=1K.  Get it?*/
114
115         spd_byte = NumColAddr[spd_read_byte(dimm, SPD_NUM_COLUMNS) & 0xF];
116         if (spd_byte > MAX_COL_ADDR) {
117                 print_debug("DIMM page size not compatible\n");
118                 POST_CODE(ERROR_SET_PAGE);
119                 __asm__ __volatile__("hlt\n");
120         }
121         spd_byte -= 7;
122         if (spd_byte > 5) {     /* if the value is above 6 it means >12 address lines */
123                 spd_byte = 7;   /* which means >32k so set to disabled */
124         }
125         dimm_setting |= spd_byte << CF07_UPPER_D0_PSZ_SHIFT;    /* 0=1k,1=2k,2=4k,etc */
126
127         msr = rdmsr(MC_CF07_DATA);
128         if (dimm == DIMM0) {
129                 msr.hi &= 0xFFFF0000;
130                 msr.hi |= dimm_setting;
131         } else {
132                 msr.hi &= 0x0000FFFF;
133                 msr.hi |= dimm_setting << 16;
134         }
135         wrmsr(MC_CF07_DATA, msr);
136 }
137
138 static void checkDDRMax(void)
139 {
140         uint8_t spd_byte0, spd_byte1;
141         uint16_t speed;
142
143         /* PC133 identifier */
144         spd_byte0 = spd_read_byte(DIMM0, SPD_MIN_CYCLE_TIME_AT_CAS_MAX);
145         if (spd_byte0 == 0xFF) {
146                 spd_byte0 = 0;
147         }
148         spd_byte1 = spd_read_byte(DIMM1, SPD_MIN_CYCLE_TIME_AT_CAS_MAX);
149         if (spd_byte1 == 0xFF) {
150                 spd_byte1 = 0;
151         }
152
153         /* I don't think you need this check.
154            if (spd_byte0 >= 0xA0 || spd_byte1 >= 0xA0){
155            print_debug("DIMM overclocked. Check GeodeLink Speed\n");
156            POST_CODE(POST_PLL_MEM_FAIL);
157            __asm__       __volatile__("hlt\n");
158            } */
159
160         /* Use the slowest DIMM */
161         if (spd_byte0 < spd_byte1) {
162                 spd_byte0 = spd_byte1;
163         }
164
165         /* Turn SPD ns time into MHZ. Check what the asm does to this math. */
166         speed = 2 * ((10000 / (((spd_byte0 >> 4) * 10) + (spd_byte0 & 0x0F))));
167
168         /* current speed > max speed? */
169         if (GeodeLinkSpeed() > speed) {
170                 print_debug("DIMM overclocked. Check GeodeLink Speed\r\n");
171                 POST_CODE(POST_PLL_MEM_FAIL);
172                 __asm__ __volatile__("hlt\n");
173         }
174 }
175
176 const uint16_t REF_RATE[] = { 15, 3, 7, 31, 62, 125 };  /* ns */
177
178 static void set_refresh_rate(void)
179 {
180         uint8_t spd_byte0, spd_byte1;
181         uint16_t rate0, rate1;
182         msr_t msr;
183
184         spd_byte0 = spd_read_byte(DIMM0, SPD_REFRESH);
185         spd_byte0 &= 0xF;
186         if (spd_byte0 > 5) {
187                 spd_byte0 = 5;
188         }
189         rate0 = REF_RATE[spd_byte0];
190
191         spd_byte1 = spd_read_byte(DIMM1, SPD_REFRESH);
192         spd_byte1 &= 0xF;
193         if (spd_byte1 > 5) {
194                 spd_byte1 = 5;
195         }
196         rate1 = REF_RATE[spd_byte1];
197
198         /* Use the faster rate (lowest number) */
199         if (rate0 > rate1) {
200                 rate0 = rate1;
201         }
202
203         msr = rdmsr(MC_CF07_DATA);
204         msr.lo |= ((rate0 * (GeodeLinkSpeed() / 2)) / 16) 
205                         << CF07_LOWER_REF_INT_SHIFT;
206         wrmsr(MC_CF07_DATA, msr);
207 }
208
209 const uint8_t CASDDR[] = { 5, 5, 2, 6, 3, 7, 4, 0 };    /* 1(1.5), 1.5, 2, 2.5, 3, 3.5, 4, 0 */
210
211 static void setCAS(void)
212 {
213 /*;*****************************************************************************
214 ;*
215 ;*      setCAS
216 ;*      EEPROM byte usage: (18) SDRAM device attributes - CAS latency
217 ;*      EEPROM byte usage: (23) SDRAM Minimum Clock Cycle Time @ CLX -.5
218 ;*      EEPROM byte usage: (25) SDRAM Minimum Clock Cycle Time @ CLX -1
219 ;*
220 ;*      The CAS setting is based on the information provided in each DIMMs SPD.
221 ;*       The speed at which a DIMM can run is described relative to the slowest
222 ;*       CAS the DIMM supports. Each speed for the relative CAS settings is
223 ;*       checked that it is within the GeodeLink speed. If it isn't within the GeodeLink
224 ;*       speed, the CAS setting  is removed from the list of good settings for
225 ;*       the DIMM. This is done for both DIMMs and the lists are compared to
226 ;*       find the lowest common CAS latency setting. If there are no CAS settings
227 ;*       in common we out a ERROR_DIFF_DIMMS (78h) to port 80h and halt.
228 ;*
229 ;*      Entry:
230 ;*      Exit: Set fastest CAS Latency based on GeodeLink speed and SPD information.
231 ;*      Destroys: We really use everything !
232 ;*****************************************************************************/
233         uint16_t glspeed, dimm_speed;
234         uint8_t spd_byte, casmap0, casmap1, casmap_shift;
235         msr_t msr;
236
237         glspeed = GeodeLinkSpeed();
238
239         /**************************      DIMM0  **********************************/
240         casmap0 = spd_read_byte(DIMM0, SPD_ACCEPTABLE_CAS_LATENCIES);
241         if (casmap0 != 0xFF) {
242                 /* IF -.5 timing is supported, check -.5 timing > GeodeLink */
243                 spd_byte = spd_read_byte(DIMM0, SPD_SDRAM_CYCLE_TIME_2ND);
244                 if (spd_byte != 0) {
245                         /* Turn SPD ns time into MHZ. Check what the asm does to this math. */
246                         dimm_speed = 2 * (10000 / (((spd_byte >> 4) * 10) +
247                                                 (spd_byte & 0x0F)));
248                         if (dimm_speed >= glspeed) {
249                                 casmap_shift = 1; /* -.5 is a shift of 1 */
250                                 /* IF -1 timing is supported, check -1 timing > GeodeLink */
251                                 spd_byte = spd_read_byte(DIMM0, SPD_SDRAM_CYCLE_TIME_3RD);
252                                 if (spd_byte != 0) {
253                                         /* Turn SPD ns time into MHZ. Check what the asm does to this math. */
254                                         dimm_speed = 2 * (10000 / (((spd_byte >> 4) * 10) + (spd_byte & 0x0F)));
255                                         if (dimm_speed >= glspeed) {
256                                                 casmap_shift = 2; /* -1 is a shift of 2 */
257                                         }
258                                 }       /* SPD_SDRAM_CYCLE_TIME_3RD (-1) !=0 */
259                         } else {
260                                 casmap_shift = 0;
261                         }
262                 }       /* SPD_SDRAM_CYCLE_TIME_2ND (-.5) !=0 */
263                 /* set the casmap based on the shift to limit possible CAS settings */
264                 spd_byte = 31 - __builtin_clz((uint32_t) casmap0);
265                 /* just want bits in the lower byte since we have to cast to a 32 */
266                 casmap0 &= 0xFF << (spd_byte - casmap_shift);
267         } else {                /* No DIMM */
268                 casmap0 = 0;
269         }
270
271         /**************************      DIMM1  **********************************/
272         casmap1 = spd_read_byte(DIMM1, SPD_ACCEPTABLE_CAS_LATENCIES);
273         if (casmap1 != 0xFF) {
274                 /* IF -.5 timing is supported, check -.5 timing > GeodeLink */
275                 spd_byte = spd_read_byte(DIMM1, SPD_SDRAM_CYCLE_TIME_2ND);
276                 if (spd_byte != 0) {
277                         /* Turn SPD ns time into MHZ. Check what the asm does to this math. */
278                         dimm_speed = 2 * (10000 / (((spd_byte >> 4) * 10) + (spd_byte & 0x0F)));
279                         if (dimm_speed >= glspeed) {
280                                 casmap_shift = 1; /* -.5 is a shift of 1 */
281                                 /* IF -1 timing is supported, check -1 timing > GeodeLink */
282                                 spd_byte = spd_read_byte(DIMM1, SPD_SDRAM_CYCLE_TIME_3RD);
283                                 if (spd_byte != 0) {
284                                         /* Turn SPD ns time into MHZ. Check what the asm does to this math. */
285                                         dimm_speed = 2 * (10000 / (((spd_byte >> 4) * 10) + (spd_byte & 0x0F)));
286                                         if (dimm_speed >= glspeed) {
287                                                 casmap_shift = 2; /* -1 is a shift of 2 */
288                                         }
289                                         /* note that the -1 result doesn't need to change the available CAS map */
290                                 }       /* SPD_SDRAM_CYCLE_TIME_3RD (-1) !=0 */
291                         } else {
292                                 casmap_shift = 0;
293                         }
294                 }       /* SPD_SDRAM_CYCLE_TIME_2ND (-.5) !=0 */
295                 /* set the casmap based on the shift to limit possible CAS settings */
296                 spd_byte = 31 - __builtin_clz((uint32_t) casmap1);
297                 /* just want bits in the lower byte since we have to cast to a 32 */
298                 casmap1 &= 0xFF << (spd_byte - casmap_shift);
299         } else {                /* No DIMM */
300                 casmap1 = 0;
301         }
302
303         /*********************  CAS_LAT MAP COMPARE     ***************************/
304         if (casmap0 == 0) {
305                 spd_byte = CASDDR[__builtin_ctz((uint32_t) casmap1)];
306         } else if (casmap1 == 0) {
307                 spd_byte = CASDDR[__builtin_ctz((uint32_t) casmap0)];
308         } else if ((casmap0 &= casmap1)) {
309                 spd_byte = CASDDR[__builtin_ctz((uint32_t) casmap0)];
310         } else {
311                 print_debug("DIMM CAS Latencies not compatible\r\n");
312                 POST_CODE(ERROR_DIFF_DIMMS);
313                 __asm__ __volatile__("hlt\n");
314         }
315
316         msr = rdmsr(MC_CF8F_DATA);
317         msr.lo &= ~(7 << CF8F_LOWER_CAS_LAT_SHIFT);
318         msr.lo |= spd_byte << CF8F_LOWER_CAS_LAT_SHIFT;
319         wrmsr(MC_CF8F_DATA, msr);
320 }
321
322 static void set_latencies(void)
323 {
324         uint32_t memspeed, dimm_setting;
325         uint8_t spd_byte0, spd_byte1;
326         msr_t msr;
327
328         memspeed = GeodeLinkSpeed() / 2;
329         dimm_setting = 0;
330
331         /* MC_CF8F setup */
332         /* tRAS */
333         spd_byte0 = spd_read_byte(DIMM0, SPD_tRAS);
334         if (spd_byte0 == 0xFF) {
335                 spd_byte0 = 0;
336         }
337         spd_byte1 = spd_read_byte(DIMM1, SPD_tRAS);
338         if (spd_byte1 == 0xFF) {
339                 spd_byte1 = 0;
340         }
341         if (spd_byte0 < spd_byte1) {
342                 spd_byte0 = spd_byte1;
343         }
344
345         /* (ns/(1/MHz) = (us*MHZ)/1000 = clocks/1000 = clocks) */
346         spd_byte1 = (spd_byte0 * memspeed) / 1000;
347         if (((spd_byte0 * memspeed) % 1000)) {
348                 ++spd_byte1;
349         }
350         dimm_setting |= spd_byte1 << CF8F_LOWER_ACT2PRE_SHIFT;
351
352         /* tRP */
353         spd_byte0 = spd_read_byte(DIMM0, SPD_tRP);
354         if (spd_byte0 == 0xFF) {
355                 spd_byte0 = 0;
356         }
357         spd_byte1 = spd_read_byte(DIMM1, SPD_tRP);
358         if (spd_byte1 == 0xFF) {
359                 spd_byte1 = 0;
360         }
361         if (spd_byte0 < spd_byte1) {
362                 spd_byte0 = spd_byte1;
363         }
364
365         /* (ns/(1/MHz) = (us*MHZ)/1000 = clocks/1000 = clocks) */
366         spd_byte1 = ((spd_byte0 >> 2) * memspeed) / 1000;
367         if ((((spd_byte0 >> 2) * memspeed) % 1000)) {
368                 ++spd_byte1;
369         }
370         dimm_setting |= spd_byte1 << CF8F_LOWER_PRE2ACT_SHIFT;
371
372         /* tRCD */
373         spd_byte0 = spd_read_byte(DIMM0, SPD_tRCD);
374         if (spd_byte0 == 0xFF) {
375                 spd_byte0 = 0;
376         }
377         spd_byte1 = spd_read_byte(DIMM1, SPD_tRCD);
378         if (spd_byte1 == 0xFF) {
379                 spd_byte1 = 0;
380         }
381         if (spd_byte0 < spd_byte1) {
382                 spd_byte0 = spd_byte1;
383         }
384
385         /* (ns/(1/MHz) = (us*MHZ)/1000 = clocks/1000 = clocks) */
386         spd_byte1 = ((spd_byte0 >> 2) * memspeed) / 1000;
387         if ((((spd_byte0 >> 2) * memspeed) % 1000)) {
388                 ++spd_byte1;
389         }
390         dimm_setting |= spd_byte1 << CF8F_LOWER_ACT2CMD_SHIFT;
391
392         /* tRRD */
393         spd_byte0 = spd_read_byte(DIMM0, SPD_tRRD);
394         if (spd_byte0 == 0xFF) {
395                 spd_byte0 = 0;
396         }
397         spd_byte1 = spd_read_byte(DIMM1, SPD_tRRD);
398         if (spd_byte1 == 0xFF) {
399                 spd_byte1 = 0;
400         }
401         if (spd_byte0 < spd_byte1) {
402                 spd_byte0 = spd_byte1;
403         }
404
405         /* (ns/(1/MHz) = (us*MHZ)/1000 = clocks/1000 = clocks) */
406         spd_byte1 = ((spd_byte0 >> 2) * memspeed) / 1000;
407         if ((((spd_byte0 >> 2) * memspeed) % 1000)) {
408                 ++spd_byte1;
409         }
410         dimm_setting |= spd_byte1 << CF8F_LOWER_ACT2ACT_SHIFT;
411
412         /* tRC = tRP + tRAS */
413         dimm_setting |= (((dimm_setting >> CF8F_LOWER_ACT2PRE_SHIFT) & 0x0F) +
414                         ((dimm_setting >> CF8F_LOWER_PRE2ACT_SHIFT) & 0x07))
415                                 << CF8F_LOWER_ACT2ACTREF_SHIFT;
416
417         msr = rdmsr(MC_CF8F_DATA);
418         msr.lo &= 0xF00000FF;
419         msr.lo |= dimm_setting;
420         msr.hi |= CF8F_UPPER_REORDER_DIS_SET;
421         wrmsr(MC_CF8F_DATA, msr);
422
423         /* MC_CF1017 setup */
424         /* tRFC */
425         spd_byte0 = spd_read_byte(DIMM0, SPD_tRFC);
426         if (spd_byte0 == 0xFF) {
427                 spd_byte0 = 0;
428         }
429         spd_byte1 = spd_read_byte(DIMM1, SPD_tRFC);
430         if (spd_byte1 == 0xFF) {
431                 spd_byte1 = 0;
432         }
433         if (spd_byte0 < spd_byte1) {
434                 spd_byte0 = spd_byte1;
435         }
436
437         if (spd_byte0) {
438                 /* (ns/(1/MHz) = (us*MHZ)/1000 = clocks/1000 = clocks) */
439                 spd_byte1 = (spd_byte0 * memspeed) / 1000;
440                 if (((spd_byte0 * memspeed) % 1000)) {
441                         ++spd_byte1;
442                 }
443         } else {                /* Not all SPDs have tRFC setting. Use this formula tRFC = tRC + 1 clk */
444                 spd_byte1 = ((dimm_setting >> CF8F_LOWER_ACT2ACTREF_SHIFT) & 0x0F) + 1;
445         }
446         dimm_setting = spd_byte1 << CF1017_LOWER_REF2ACT_SHIFT; /* note this clears the cf8f dimm setting */
447         msr = rdmsr(MC_CF1017_DATA);
448         msr.lo &= ~(0x1F << CF1017_LOWER_REF2ACT_SHIFT);
449         msr.lo |= dimm_setting;
450         wrmsr(MC_CF1017_DATA, msr);
451
452         /* tWTR: Set tWTR to 2 for 400MHz and above GLBUS (200Mhz mem) other wise it stay default(1) */
453         if (memspeed > 198) {
454                 msr = rdmsr(MC_CF1017_DATA);
455                 msr.lo &= ~(0x7 << CF1017_LOWER_WR_TO_RD_SHIFT);
456                 msr.lo |= 2 << CF1017_LOWER_WR_TO_RD_SHIFT;
457                 wrmsr(MC_CF1017_DATA, msr);
458         }
459 }
460
461 static void set_extended_mode_registers(void)
462 {
463         uint8_t spd_byte0, spd_byte1;
464         msr_t msr;
465         spd_byte0 = spd_read_byte(DIMM0, SPD_DEVICE_ATTRIBUTES_GENERAL);
466         if (spd_byte0 == 0xFF) {
467                 spd_byte0 = 0;
468         }
469         spd_byte1 = spd_read_byte(DIMM1, SPD_DEVICE_ATTRIBUTES_GENERAL);
470         if (spd_byte1 == 0xFF) {
471                 spd_byte1 = 0;
472         }
473         spd_byte1 &= spd_byte0;
474
475         msr = rdmsr(MC_CF07_DATA);
476         if (spd_byte1 & 1) {    /* Drive Strength Control */
477                 msr.lo |= CF07_LOWER_EMR_DRV_SET;
478         }
479         if (spd_byte1 & 2) {    /* FET Control */
480                 msr.lo |= CF07_LOWER_EMR_QFC_SET;
481         }
482         wrmsr(MC_CF07_DATA, msr);
483 }
484
485 static void EnableMTest(void)
486 {
487         msr_t msr;
488
489         msr = rdmsr(GLCP_DELAY_CONTROLS);
490         msr.hi &= ~(7 << 20);   /* clear bits 54:52 */
491         if (GeodeLinkSpeed() < 200) {
492                 msr.hi |= 2 << 20;
493         }
494         wrmsr(GLCP_DELAY_CONTROLS, msr);
495
496         msr = rdmsr(MC_CFCLK_DBUG);
497         msr.hi |=
498             CFCLK_UPPER_MTST_B2B_DIS_SET | CFCLK_UPPER_MTEST_EN_SET |
499             CFCLK_UPPER_MTST_RBEX_EN_SET;
500         msr.lo |= CFCLK_LOWER_TRISTATE_DIS_SET;
501         wrmsr(MC_CFCLK_DBUG, msr);
502
503         print_debug("Enabled MTest for TLA debug\r\n");
504 }
505
506 static void sdram_set_registers(const struct mem_controller *ctrl)
507 {
508         msr_t msr;
509         uint32_t msrnum;
510
511         /* Set Timing Control */
512         msrnum = MC_CF1017_DATA;
513         msr = rdmsr(msrnum);
514         msr.lo &= ~(7 << CF1017_LOWER_RD_TMG_CTL_SHIFT);
515         if (GeodeLinkSpeed() < 334) {
516                 msr.lo |= (3 << CF1017_LOWER_RD_TMG_CTL_SHIFT);
517         } else {
518                 msr.lo |= (4 << CF1017_LOWER_RD_TMG_CTL_SHIFT);
519         }
520         wrmsr(msrnum, msr);
521
522         /* Set Refresh Staggering */
523         msrnum = MC_CF07_DATA;
524         msr = rdmsr(msrnum);
525         msr.lo &= ~0xF0;
526         msr.lo |= 0x40;         /* set refresh to 4SDRAM clocks */
527         wrmsr(msrnum, msr);
528
529         /* Memory Interleave: Set HOI here otherwise default is LOI */
530         /* msrnum = MC_CF8F_DATA;
531            msr = rdmsr(msrnum);
532            msr.hi |= CF8F_UPPER_HOI_LOI_SET;
533            wrmsr(msrnum, msr); */
534 }
535
536 static void sdram_set_spd_registers(const struct mem_controller *ctrl)
537 {
538         uint8_t spd_byte;
539
540         POST_CODE(POST_MEM_SETUP);      // post_70h
541
542         spd_byte = spd_read_byte(DIMM0, SPD_MODULE_ATTRIBUTES);
543         /* Check DIMM is not Register and not Buffered DIMMs. */
544         if ((spd_byte != 0xFF) && (spd_byte & 3)) {
545                 print_debug("DIMM0 NOT COMPATIBLE\r\n");
546                 POST_CODE(ERROR_UNSUPPORTED_DIMM);
547                 __asm__ __volatile__("hlt\n");
548         }
549         spd_byte = spd_read_byte(DIMM1, SPD_MODULE_ATTRIBUTES);
550         if ((spd_byte != 0xFF) && (spd_byte & 3)) {
551                 print_debug("DIMM1 NOT COMPATIBLE\n");
552                 POST_CODE(ERROR_UNSUPPORTED_DIMM);
553                 __asm__ __volatile__("hlt\n");
554         }
555
556         POST_CODE(POST_MEM_SETUP2);     // post_72h
557
558         /* Check that the memory is not overclocked. */
559         checkDDRMax();
560
561         /* Size the DIMMS */
562         POST_CODE(POST_MEM_SETUP3);     // post_73h
563         auto_size_dimm(DIMM0);
564         POST_CODE(POST_MEM_SETUP4);     // post_74h
565         auto_size_dimm(DIMM1);
566
567         /* Set CAS latency */
568         POST_CODE(POST_MEM_SETUP5);     // post_75h
569         setCAS();
570
571         /* Set all the other latencies here (tRAS, tRP....) */
572         set_latencies();
573
574         /* Set Extended Mode Registers */
575         set_extended_mode_registers();
576
577         /* Set Memory Refresh Rate */
578         set_refresh_rate();
579
580 }
581
582 /* Section 6.1.3, LX processor databooks, BIOS Initialization Sequence
583  * Section 4.1.4, GX/CS5535 GeodeROM Porting guide */
584 static void sdram_enable(int controllers, const struct mem_controller *ctrl)
585 {
586         uint32_t i, msrnum;
587         msr_t msr;
588
589 /*********************************************************************
590 ;* Turn on MC/DIMM interface per JEDEC
591 ;* 1) Clock stabilizes > 200us
592 ;* 2) Assert CKE
593 ;* 3) Precharge All to put all banks into an idles state
594 ;* 4) EMRS to enable DLL
595 ;* 6) MRS w/ memory config & reset DLL set
596 ;* 7) Wait 200 clocks (2us)
597 ;* 8) Precharge All and 2 Auto refresh
598 ;* 9) MRS w/ memory config & reset DLL clear
599 ;* 8) DDR SDRAM ready for normal operation
600 ;********************************************************************/
601         POST_CODE(POST_MEM_ENABLE);     // post_76h
602
603         /* Only enable MTest for TLA memory debug */
604         /*EnableMTest(); */
605
606         /* If both Page Size = "Not Installed" we have a problems and should halt. */
607         msr = rdmsr(MC_CF07_DATA);
608         if ((msr.hi & ((7 << CF07_UPPER_D1_PSZ_SHIFT) | (7 << CF07_UPPER_D0_PSZ_SHIFT))) == 
609                         ((7 << CF07_UPPER_D1_PSZ_SHIFT) | (7 << CF07_UPPER_D0_PSZ_SHIFT))) {
610                 print_debug("No memory in the system\r\n");
611                 POST_CODE(ERROR_NO_DIMMS);
612                 __asm__ __volatile__("hlt\n");
613         }
614
615         /*      Set CKEs */
616         msrnum = MC_CFCLK_DBUG;
617         msr = rdmsr(msrnum);
618         msr.lo &= ~(CFCLK_LOWER_MASK_CKE_SET0 | CFCLK_LOWER_MASK_CKE_SET1);
619         wrmsr(msrnum, msr);
620
621         /* Force Precharge All on next command, EMRS */
622         msrnum = MC_CFCLK_DBUG;
623         msr = rdmsr(msrnum);
624         msr.lo |= CFCLK_LOWER_FORCE_PRE_SET;
625         wrmsr(msrnum, msr);
626
627         /* EMRS to enable DLL (pre-setup done in setExtendedModeRegisters) */
628         msrnum = MC_CF07_DATA;
629         msr = rdmsr(msrnum);
630         msr.lo |= CF07_LOWER_PROG_DRAM_SET | CF07_LOWER_LOAD_MODE_DDR_SET;
631         wrmsr(msrnum, msr);
632         msr.lo &= ~(CF07_LOWER_PROG_DRAM_SET | CF07_LOWER_LOAD_MODE_DDR_SET);
633         wrmsr(msrnum, msr);
634
635         /* Clear Force Precharge All */
636         msrnum = MC_CFCLK_DBUG;
637         msr = rdmsr(msrnum);
638         msr.lo &= ~CFCLK_LOWER_FORCE_PRE_SET;
639         wrmsr(msrnum, msr);
640
641         /* MRS Reset DLL - set */
642         msrnum = MC_CF07_DATA;
643         msr = rdmsr(msrnum);
644         msr.lo |= CF07_LOWER_PROG_DRAM_SET | CF07_LOWER_LOAD_MODE_DLL_RESET;
645         wrmsr(msrnum, msr);
646         msr.lo &= ~(CF07_LOWER_PROG_DRAM_SET | CF07_LOWER_LOAD_MODE_DLL_RESET);
647         wrmsr(msrnum, msr);
648
649         /* 2us delay (200 clocks @ 200Mhz). We probably really don't need this but.... better safe. */
650         /* Wait 2 PORT61 ticks. between 15us and 30us */
651         /* This would be endless if the timer is stuck. */
652         while ((inb(0x61))) ;   /* find the first edge */
653         while (!(~inb(0x61))) ;
654
655         /* Force Precharge All on the next command, auto-refresh */
656         msrnum = MC_CFCLK_DBUG;
657         msr = rdmsr(msrnum);
658         msr.lo |= CFCLK_LOWER_FORCE_PRE_SET;
659         wrmsr(msrnum, msr);
660
661         /* Manually AUTO refresh #1 */
662         /* If auto refresh was not enabled above we would need to do 8 refreshes to prime the pump before these 2. */
663         msrnum = MC_CF07_DATA;
664         msr = rdmsr(msrnum);
665         msr.lo |= CF07_LOWER_REF_TEST_SET;
666         wrmsr(msrnum, msr);
667         msr.lo &= ~CF07_LOWER_REF_TEST_SET;
668         wrmsr(msrnum, msr);
669
670         /* Clear Force Precharge All */
671         msrnum = MC_CFCLK_DBUG;
672         msr = rdmsr(msrnum);
673         msr.lo &= ~CFCLK_LOWER_FORCE_PRE_SET;
674         wrmsr(msrnum, msr);
675
676         /* Manually AUTO refresh */
677         /* The MC should insert the right delay between the refreshes */
678         msrnum = MC_CF07_DATA;
679         msr = rdmsr(msrnum);
680         msr.lo |= CF07_LOWER_REF_TEST_SET;
681         wrmsr(msrnum, msr);
682         msr.lo &= ~CF07_LOWER_REF_TEST_SET;
683         wrmsr(msrnum, msr);
684
685         /* MRS Reset DLL - clear */
686         msrnum = MC_CF07_DATA;
687         msr = rdmsr(msrnum);
688         msr.lo |= CF07_LOWER_PROG_DRAM_SET;
689         wrmsr(msrnum, msr);
690         msr.lo &= ~CF07_LOWER_PROG_DRAM_SET;
691         wrmsr(msrnum, msr);
692
693         /* Allow MC to tristate during idle cycles with MTEST OFF */
694         msrnum = MC_CFCLK_DBUG;
695         msr = rdmsr(msrnum);
696         msr.lo &= ~CFCLK_LOWER_TRISTATE_DIS_SET;
697         wrmsr(msrnum, msr);
698
699         /* Disable SDCLK DIMM1 slot if no DIMM installed to save power. */
700         msr = rdmsr(MC_CF07_DATA);
701         if ((msr.hi & (7 << CF07_UPPER_D1_PSZ_SHIFT)) ==
702             (7 << CF07_UPPER_D1_PSZ_SHIFT)) {
703                 msrnum = GLCP_DELAY_CONTROLS;
704                 msr = rdmsr(msrnum);
705                 msr.hi |= (1 << 23);    /* SDCLK bit for 2.0 */
706                 wrmsr(msrnum, msr);
707         }
708
709         /* Set PMode0 Sensitivity Counter */
710         msr.lo = 0;             /* pmode 0=0 most aggressive */
711         msr.hi = 0x200;         /* pmode 1=200h */
712         wrmsr(MC_CF_PMCTR, msr);
713
714         /* Set PMode1 Up delay enable */
715         msrnum = MC_CF1017_DATA;
716         msr = rdmsr(msrnum);
717         msr.lo |= (209 << 8);   /* bits[15:8] = 209 */
718         wrmsr(msrnum, msr);
719
720         print_debug("DRAM controller init done.\n");
721         POST_CODE(POST_MEM_SETUP_GOOD); //0x7E
722
723         /* make sure there is nothing stale in the cache */
724         /* CAR stack is in the cache __asm__ __volatile__("wbinvd\n"); */
725
726         /* The RAM dll needs a write to lock on so generate a few dummy writes */
727         /* Note: The descriptor needs to be enabled to point at memory */
728         volatile unsigned long *ptr;
729         for (i = 0; i < 5; i++) {
730                 ptr = (void *)i;
731                 *ptr = (unsigned long)i;
732         }
733         /* SWAPSiF for PBZ 4112 (Errata 34) */
734         /* check for failed DLL settings now that we have done a memory write. */
735         msrnum = GLCP_DELAY_CONTROLS;
736         msr = rdmsr(msrnum);
737         if ((msr.lo & 0x7FF) == 0x104) {
738
739                 /* If you had it you would need to clear out the fail boot count flag */
740                 /*       (depending on where it counts from etc). */
741
742                 /* The reset we are about to perform clears the PM_SSC register in the */
743                 /*       5536 so will need to store the S3 resume flag in NVRAM otherwise */
744                 /*       it would do a normal boot */
745
746                 /* Reset the system */
747                 msrnum = MDD_SOFT_RESET;
748                 msr = rdmsr(msrnum);
749                 msr.lo |= 1;
750                 wrmsr(msrnum, msr);
751         }
752         print_debug("RAM DLL lock\n");
753
754 }