3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 /* sdram_init.c - automatic memory sizing */
28 #include <galileo/memory.h>
29 #include <galileo/pci.h>
30 #include <galileo/gt64260R.h>
32 #include <linux/compiler.h>
39 DECLARE_GLOBAL_DATA_PTR;
52 /* structure to store the relevant information about an sdram bank */
53 typedef struct sdram_info {
55 uchar registered, ecc;
60 int size; /* detected size, not from I2C but from dram_size() */
64 void dump_dimm_info (struct sdram_info *d)
66 static const char *ecc_legend[] = { "", " Parity", " ECC" };
68 printf ("dimm%s %sDRAM: %dMibytes:\n",
70 d->registered ? "R" : "", (d->size >> 20));
71 printf (" drb=%d tpar=%d tras=%d burstlen=%d banks=%d slot=%d\n",
72 d->drb_size, d->tpar, d->tras_clocks, d->burst_len,
78 memory_map_bank (unsigned int bankNo,
79 unsigned int bankBase, unsigned int bankLength)
83 printf ("mapping bank %d at %08x - %08x\n",
84 bankNo, bankBase, bankBase + bankLength - 1);
86 printf ("unmapping bank %d\n", bankNo);
90 memoryMapBank (bankNo, bankBase, bankLength);
97 memory_map_bank_pci (unsigned int bankNo,
98 unsigned int bankBase, unsigned int bankLength)
102 for (host = PCI_HOST0; host <= PCI_HOST1; host++) {
105 DELAYED_READ_ENABLE |
106 AGGRESSIVE_PREFETCH |
107 READ_LINE_AGGRESSIVE_PREFETCH |
108 READ_MULTI_AGGRESSIVE_PREFETCH |
109 MAX_BURST_4 | PCI_NO_SWAP;
111 pciMapMemoryBank (host, bankNo, bankBase, bankLength);
113 pciSetRegionSnoopMode (host, bankNo, PCI_SNOOP_WB, bankBase,
116 pciSetRegionFeatures (host, bankNo, features, bankBase,
123 /* ------------------------------------------------------------------------- */
125 /* much of this code is based on (or is) the code in the pip405 port */
126 /* thanks go to the authors of said port - Josh */
130 * translate ns.ns/10 coding of SPD timing values
131 * into 10 ps unit values
133 static inline unsigned short NS10to10PS (unsigned char spd_byte)
135 unsigned short ns, ns10;
137 /* isolate upper nibble */
138 ns = (spd_byte >> 4) & 0x0F;
139 /* isolate lower nibble */
140 ns10 = (spd_byte & 0x0F);
142 return (ns * 100 + ns10 * 10);
146 * translate ns coding of SPD timing values
147 * into 10 ps unit values
149 static inline unsigned short NSto10PS (unsigned char spd_byte)
151 return (spd_byte * 100);
154 #ifdef CONFIG_ZUMA_V2
155 static int check_dimm (uchar slot, sdram_info_t * info)
157 /* assume 2 dimms, 2 banks each 256M - we dont have an
158 * dimm i2c so rely on the detection routines later */
160 memset (info, 0, sizeof (*info));
163 info->banks = 2; /* Detect later */
164 info->registered = 0;
165 info->drb_size = 32; /* 16 - 256MBit, 32 - 512MBit
166 but doesn't matter, both do same
167 thing in setup_sdram() */
169 info->tras_clocks = 5;
172 info->ecc = 0; /* Detect later */
173 #endif /* CONFIG_ECC */
177 #elif defined(CONFIG_P3G4)
179 static int check_dimm (uchar slot, sdram_info_t * info)
181 memset (info, 0, sizeof (*info));
188 info->registered = 0;
191 info->tras_clocks = 6;
199 #else /* ! CONFIG_ZUMA_V2 && ! CONFIG_P3G4 */
201 /* This code reads the SPD chip on the sdram and populates
202 * the array which is passed in with the relevant information */
203 static int check_dimm (uchar slot, sdram_info_t * info)
205 uchar addr = slot == 0 ? DIMM0_I2C_ADDR : DIMM1_I2C_ADDR;
207 uchar rows, cols, sdram_banks, supp_cal, width, cal_val;
209 uchar trp_clocks, trcd_clocks;
214 tmemclk = 1000000000 / (gd->bus_clk / 100); /* in 10 ps units */
216 #ifdef CONFIG_EVB64260_750CX
218 printf ("check_dimm: The EVB-64260-750CX only has 1 DIMM,");
219 printf (" called with slot=%d insetad!\n", slot);
223 DP (puts ("before i2c read\n"));
225 ret = i2c_read (addr, 0, 128, data, 0);
227 DP (puts ("after i2c read\n"));
229 /* zero all the values */
230 memset (info, 0, sizeof (*info));
233 DP (printf ("No DIMM in slot %d [err = %x]\n", slot, ret));
237 /* first, do some sanity checks */
238 if (data[2] != 0x4) {
239 printf ("Not SDRAM in slot %d\n", slot);
243 /* get various information */
246 info->banks = data[5];
247 sdram_banks = data[17];
248 width = data[13] & 0x7f;
251 ("sdram_banks: %d, banks: %d\n", sdram_banks, info->banks));
253 /* check if the memory is registered */
254 if (data[21] & (BIT1 | BIT4))
255 info->registered = 1;
258 /* check for ECC/parity [0 = none, 1 = parity, 2 = ecc] */
259 info->ecc = (data[11] & 2) >> 1;
262 /* bit 1 is CL2, bit 2 is CL3 */
263 supp_cal = (data[18] & 0x6) >> 1;
265 /* compute the relevant clock values */
266 trp_clocks = (NSto10PS (data[27]) + (tmemclk - 1)) / tmemclk;
267 trcd_clocks = (NSto10PS (data[29]) + (tmemclk - 1)) / tmemclk;
268 info->tras_clocks = (NSto10PS (data[30]) + (tmemclk - 1)) / tmemclk;
270 DP (printf ("trp = %d\ntrcd_clocks = %d\ntras_clocks = %d\n",
271 trp_clocks, trcd_clocks, info->tras_clocks));
273 /* try a CAS latency of 3 first... */
276 if (NS10to10PS (data[9]) <= tmemclk)
282 if (NS10to10PS (data[23]) <= tmemclk)
286 DP (printf ("cal_val = %d\n", cal_val));
288 /* bummer, did't work... */
290 DP (printf ("Couldn't find a good CAS latency\n"));
294 /* get the largest delay -- these values need to all be the same
296 info->tpar = cal_val;
297 if (trp_clocks > info->tpar)
298 info->tpar = trp_clocks;
299 if (trcd_clocks > info->tpar)
300 info->tpar = trcd_clocks;
302 DP (printf ("tpar set to: %d\n", info->tpar));
304 #ifdef CONFIG_SYS_BROKEN_CL2
305 if (info->tpar == 2) {
307 DP (printf ("tpar fixed-up to: %d\n", info->tpar));
310 /* compute the module DRB size */
312 (((1 << (rows + cols)) * sdram_banks) * width) / _16M;
314 DP (printf ("drb_size set to: %d\n", info->drb_size));
316 /* find the burst len */
317 info->burst_len = data[16] & 0xf;
318 if ((info->burst_len & 8) == 8) {
320 } else if ((info->burst_len & 4) == 4) {
329 #endif /* ! CONFIG_ZUMA_V2 */
331 static int setup_sdram_common (sdram_info_t info[2])
334 int tpar = 2, tras_clocks = 5, registered = 1;
335 __maybe_unused int ecc = 2;
337 if (!info[0].banks && !info[1].banks)
341 if (info[0].tpar > tpar)
343 if (info[0].tras_clocks > tras_clocks)
344 tras_clocks = info[0].tras_clocks;
345 if (!info[0].registered)
347 if (info[0].ecc != 2)
352 if (info[1].tpar > tpar)
354 if (info[1].tras_clocks > tras_clocks)
355 tras_clocks = info[1].tras_clocks;
356 if (!info[1].registered)
358 if (info[1].ecc != 2)
362 /* SDRAM configuration */
363 tmp = GTREGREAD (SDRAM_CONFIGURATION);
365 /* Turn on physical interleave if both DIMMs
366 * have even numbers of banks. */
367 if ((info[0].banks == 0 || info[0].banks == 2) &&
368 (info[1].banks == 0 || info[1].banks == 2)) {
369 /* physical interleave on */
372 /* physical interleave off */
376 tmp |= (registered << 17);
378 /* Use buffer 1 to return read data to the CPU
382 GT_REG_WRITE (SDRAM_CONFIGURATION, tmp);
383 DP (printf ("SDRAM config: %08x\n", GTREGREAD (SDRAM_CONFIGURATION)));
386 tmp = (((tpar == 3) ? 2 : 1) |
387 (((tpar == 3) ? 2 : 1) << 2) |
388 (((tpar == 3) ? 2 : 1) << 4) | (tras_clocks << 8));
394 #endif /* CONFIG_ECC */
396 GT_REG_WRITE (SDRAM_TIMING, tmp);
397 DP (printf ("SDRAM timing: %08x (%d,%d,%d,%d)\n",
398 GTREGREAD (SDRAM_TIMING), tpar, tpar, tpar, tras_clocks));
400 /* SDRAM address decode register */
401 /* program this with the default value */
402 GT_REG_WRITE (SDRAM_ADDRESS_DECODE, 0x2);
403 DP (printf ("SDRAM decode: %08x\n",
404 GTREGREAD (SDRAM_ADDRESS_DECODE)));
409 /* sets up the GT properly with information passed in */
410 static int setup_sdram (sdram_info_t * info)
414 __maybe_unused ulong check;
417 /* sanity checking */
421 /* ---------------------------- */
422 /* Program the GT with the discovered data */
424 /* bank parameters */
425 tmp = (0xf << 16); /* leave all virt bank pages open */
427 DP (printf ("drb_size: %d\n", info->drb_size));
428 switch (info->drb_size) {
441 printf ("Error in dram size calculation\n");
445 /* SDRAM bank parameters */
446 /* the param registers for slot 1 (banks 2+3) are offset by 0x8 */
447 GT_REG_WRITE (SDRAM_BANK0PARAMETERS + (info->slot * 0x8), tmp);
448 GT_REG_WRITE (SDRAM_BANK1PARAMETERS + (info->slot * 0x8), tmp);
450 ("SDRAM bankparam slot %d (bank %d+%d): %08lx\n", info->slot,
451 info->slot * 2, (info->slot * 2) + 1, tmp));
453 /* set the SDRAM configuration for each bank */
454 for (i = info->slot * 2; i < ((info->slot * 2) + info->banks); i++) {
455 DP (printf ("*** Running a MRS cycle for bank %d ***\n", i));
458 memory_map_bank (i, 0, GB / 4);
461 GT_REG_WRITE (SDRAM_OPERATION_MODE, 0x3);
462 check = GTREGREAD (SDRAM_OPERATION_MODE);
467 /* wait for the command to complete */
468 while ((GTREGREAD (SDRAM_OPERATION_MODE) & (1 << 31)) == 0);
470 /* switch back to normal operation mode */
471 GT_REG_WRITE (SDRAM_OPERATION_MODE, 0);
472 check = GTREGREAD (SDRAM_OPERATION_MODE);
475 memory_map_bank (i, 0, 0);
476 DP (printf ("*** MRS cycle for bank %d done ***\n", i));
483 * Check memory range for valid RAM. A simple memory test determines
484 * the actually available RAM size between addresses `base' and
485 * `base + maxsize'. Some (not all) hardware errors are detected:
486 * - short between address lines
487 * - short between data lines
489 static long int dram_size (long int *base, long int maxsize)
491 volatile long int *addr, *b = base;
492 long int cnt, val, save1, save2;
494 #define STARTVAL (1<<20) /* start test at 1M */
495 for (cnt = STARTVAL / sizeof (long); cnt < maxsize / sizeof (long);
497 addr = base + cnt; /* pointer arith! */
499 save1 = *addr; /* save contents of addr */
500 save2 = *b; /* save contents of base */
502 *addr = cnt; /* write cnt to addr */
503 *b = 0; /* put null at base */
505 /* check at base address */
507 *addr = save1; /* restore *addr */
508 *b = save2; /* restore *b */
511 val = *addr; /* read *addr */
517 /* fix boundary condition.. STARTVAL means zero */
518 if (cnt == STARTVAL / sizeof (long))
520 return (cnt * sizeof (long));
526 /* ------------------------------------------------------------------------- */
528 /* U-Boot interface function to SDRAM init - this is where all the
529 * controlling logic happens */
530 phys_size_t initdram (int board_type)
532 ulong checkbank[4] = {[0 ... 3] = 0 };
536 sdram_info_t dimm_info[2];
539 /* first, use the SPD to get info about the SDRAM */
541 /* check the NHR bit and skip mem init if it's already done */
542 nhr = get_hid0 () & (1 << 16);
545 printf ("Skipping SDRAM setup due to NHR bit being set\n");
548 check_dimm (0, &dimm_info[0]);
551 #ifndef CONFIG_EVB64260_750CX /* EVB64260_750CX has only 1 DIMM */
552 check_dimm (1, &dimm_info[1]);
553 #else /* CONFIG_EVB64260_750CX */
554 memset (&dimm_info[1], 0, sizeof (sdram_info_t));
557 /* unmap all banks */
558 memory_map_bank (0, 0, 0);
559 memory_map_bank (1, 0, 0);
560 memory_map_bank (2, 0, 0);
561 memory_map_bank (3, 0, 0);
563 /* Now, program the GT with the correct values */
564 if (setup_sdram_common (dimm_info)) {
565 printf ("Setup common failed.\n");
568 if (setup_sdram (&dimm_info[0])) {
569 printf ("Setup for DIMM1 failed.\n");
572 if (setup_sdram (&dimm_info[1])) {
573 printf ("Setup for DIMM2 failed.\n");
576 /* set the NHR bit */
577 set_hid0 (get_hid0 () | (1 << 16));
579 /* next, size the SDRAM banks */
582 if (dimm_info[0].banks > 0)
584 if (dimm_info[0].banks > 1)
586 if (dimm_info[0].banks > 2)
587 printf ("Error, SPD claims DIMM1 has >2 banks\n");
589 if (dimm_info[1].banks > 0)
591 if (dimm_info[1].banks > 1)
593 if (dimm_info[1].banks > 2)
594 printf ("Error, SPD claims DIMM2 has >2 banks\n");
596 /* Generic dram sizer: works even if we don't have i2c DIMMs,
597 * as long as the timing settings are more or less correct */
600 * pass 1: size all the banks, using first bat (0-256M)
601 * limitation: we only support 256M per bank due to
602 * us only having 1 BAT for all DRAM
604 for (bank_no = 0; bank_no < CONFIG_SYS_DRAM_BANKS; bank_no++) {
605 /* skip over banks that are not populated */
606 if (!checkbank[bank_no])
609 DP (printf ("checking bank %d\n", bank_no));
611 memory_map_bank (bank_no, 0, GB / 4);
612 checkbank[bank_no] = dram_size (NULL, GB / 4);
613 memory_map_bank (bank_no, 0, 0);
615 DP (printf ("bank %d %08lx\n", bank_no, checkbank[bank_no]));
619 * pass 2: contiguously map each bank into physical address
622 dimm_info[0].banks = dimm_info[1].banks = 0;
623 for (bank_no = 0; bank_no < CONFIG_SYS_DRAM_BANKS; bank_no++) {
624 if (!checkbank[bank_no])
627 dimm_info[bank_no / 2].banks++;
628 dimm_info[bank_no / 2].size += checkbank[bank_no];
630 memory_map_bank (bank_no, total, checkbank[bank_no]);
632 memory_map_bank_pci (bank_no, total, checkbank[bank_no]);
634 total += checkbank[bank_no];
638 #ifdef CONFIG_ZUMA_V2
640 * We always enable ECC when bank 2 and 3 are unpopulated
641 * If we 2 or 3 are populated, we CAN'T support ECC.
642 * (Zuma boards only support ECC in banks 0 and 1; assume that
643 * in that configuration, ECC chips are mounted, even for stacked
646 if (checkbank[2] == 0 && checkbank[3] == 0) {
647 dimm_info[0].ecc = 2;
648 GT_REG_WRITE (SDRAM_TIMING,
649 GTREGREAD (SDRAM_TIMING) | (1 << 13));
650 /* TODO: do we have to run MRS cycles again? */
652 #endif /* CONFIG_ZUMA_V2 */
654 if (GTREGREAD (SDRAM_TIMING) & (1 << 13)) {
657 #endif /* CONFIG_ECC */
660 dump_dimm_info (&dimm_info[0]);
661 dump_dimm_info (&dimm_info[1]);
663 /* TODO: return at MOST 256M? */
664 /* return total > GB/4 ? GB/4 : total; */