2 * arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c
3 * This SPD SDRAM detection code supports AMCC PPC44x cpu's with a
4 * DDR2 controller (non Denali Core). Those currently are:
7 * 440/460: 440SP/440SPe/460EX/460GT
9 * Copyright (c) 2008 Nuovation System Designs, LLC
10 * Grant Erickson <gerickson@nuovations.com>
12 * (C) Copyright 2007-2009
13 * Stefan Roese, DENX Software Engineering, sr@denx.de.
15 * COPYRIGHT AMCC CORPORATION 2004
17 * SPDX-License-Identifier: GPL-2.0+
20 /* define DEBUG for debugging output (obviously ;-)) */
27 #include <asm/ppc4xx.h>
30 #include <asm/processor.h>
32 #include <asm/cache.h>
36 DECLARE_GLOBAL_DATA_PTR;
38 #define PPC4xx_IBM_DDR2_DUMP_REGISTER(mnemonic) \
41 mfsdram(SDRAM_##mnemonic, data); \
42 printf("%20s[%02x] = 0x%08X\n", \
43 "SDRAM_" #mnemonic, SDRAM_##mnemonic, data); \
46 #define PPC4xx_IBM_DDR2_DUMP_MQ_REGISTER(mnemonic) \
49 data = mfdcr(SDRAM_##mnemonic); \
50 printf("%20s[%02x] = 0x%08X\n", \
51 "SDRAM_" #mnemonic, SDRAM_##mnemonic, data); \
54 static void update_rdcc(void)
59 * Complete RDSS configuration as mentioned on page 7 of the AMCC
60 * PowerPC440SP/SPe DDR2 application note:
61 * "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
63 * Or item #10 "10. Complete RDSS configuration" in chapter
64 * "22.2.9 SDRAM Initialization" of AMCC PPC460EX/EXr/GT users
67 mfsdram(SDRAM_RTSR, val);
68 if ((val & SDRAM_RTSR_TRK1SM_MASK) == SDRAM_RTSR_TRK1SM_ATPLS1) {
69 mfsdram(SDRAM_RDCC, val);
70 if ((val & SDRAM_RDCC_RDSS_MASK) != SDRAM_RDCC_RDSS_T4) {
72 mtsdram(SDRAM_RDCC, val);
77 #if defined(CONFIG_440)
79 * This DDR2 setup code can dynamically setup the TLB entries for the DDR2
80 * memory region. Right now the cache should still be disabled in U-Boot
81 * because of the EMAC driver, that need its buffer descriptor to be located
82 * in non cached memory.
84 * If at some time this restriction doesn't apply anymore, just define
85 * CONFIG_4xx_DCACHE in the board config file and this code should setup
86 * everything correctly.
88 #ifdef CONFIG_4xx_DCACHE
89 /* enable caching on SDRAM */
90 #define MY_TLB_WORD2_I_ENABLE 0
92 /* disable caching on SDRAM */
93 #define MY_TLB_WORD2_I_ENABLE TLB_WORD2_I_ENABLE
94 #endif /* CONFIG_4xx_DCACHE */
96 void dcbz_area(u32 start_address, u32 num_bytes);
97 #endif /* CONFIG_440 */
102 #define MULDIV64(m1, m2, d) (u32)(((u64)(m1) * (u64)(m2)) / (u64)(d))
104 /*-----------------------------------------------------------------------------+
106 *-----------------------------------------------------------------------------*/
107 phys_size_t sdram_memsize(void)
109 phys_size_t mem_size;
110 unsigned long mcopt2;
111 unsigned long mcstat;
118 mfsdram(SDRAM_MCOPT2, mcopt2);
119 mfsdram(SDRAM_MCSTAT, mcstat);
121 /* DDR controller must be enabled and not in self-refresh. */
122 /* Otherwise memsize is zero. */
123 if (((mcopt2 & SDRAM_MCOPT2_DCEN_MASK) == SDRAM_MCOPT2_DCEN_ENABLE)
124 && ((mcopt2 & SDRAM_MCOPT2_SREN_MASK) == SDRAM_MCOPT2_SREN_EXIT)
125 && ((mcstat & (SDRAM_MCSTAT_MIC_MASK | SDRAM_MCSTAT_SRMS_MASK))
126 == (SDRAM_MCSTAT_MIC_COMP | SDRAM_MCSTAT_SRMS_NOT_SF))) {
127 for (i = 0; i < MAXBXCF; i++) {
128 mfsdram(SDRAM_MB0CF + (i << 2), mb0cf);
130 if ((mb0cf & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
131 #if defined(CONFIG_440)
132 sdsz = mfdcr_any(SDRAM_R0BAS + i) & SDRAM_RXBAS_SDSZ_MASK;
134 sdsz = mb0cf & SDRAM_RXBAS_SDSZ_MASK;
137 case SDRAM_RXBAS_SDSZ_8:
140 case SDRAM_RXBAS_SDSZ_16:
143 case SDRAM_RXBAS_SDSZ_32:
146 case SDRAM_RXBAS_SDSZ_64:
149 case SDRAM_RXBAS_SDSZ_128:
152 case SDRAM_RXBAS_SDSZ_256:
155 case SDRAM_RXBAS_SDSZ_512:
158 case SDRAM_RXBAS_SDSZ_1024:
161 case SDRAM_RXBAS_SDSZ_2048:
164 case SDRAM_RXBAS_SDSZ_4096:
168 printf("WARNING: Unsupported bank size (SDSZ=0x%lx)!\n"
177 return mem_size << 20;
180 /*-----------------------------------------------------------------------------+
182 *-----------------------------------------------------------------------------*/
183 static unsigned long is_ecc_enabled(void)
187 mfsdram(SDRAM_MCOPT1, val);
189 return SDRAM_MCOPT1_MCHK_CHK_DECODE(val);
192 /*-----------------------------------------------------------------------------+
194 *-----------------------------------------------------------------------------*/
195 void board_add_ram_info(int use_default)
197 PPC4xx_SYS_INFO board_cfg;
200 if (is_ecc_enabled())
205 get_sys_info(&board_cfg);
207 #if defined(CONFIG_405EX)
208 val = board_cfg.freqPLB;
210 mfsdr(SDR0_DDR0, val);
211 val = MULDIV64((board_cfg.freqPLB), SDR0_DDR0_DDRM_DECODE(val), 1);
213 printf(" enabled, %d MHz", (val * 2) / 1000000);
215 mfsdram(SDRAM_MMODE, val);
216 val = (val & SDRAM_MMODE_DCL_MASK) >> 4;
217 printf(", CL%d)", val);
220 #if defined(CONFIG_SPD_EEPROM)
222 /*-----------------------------------------------------------------------------+
224 *-----------------------------------------------------------------------------*/
230 #define MAX_SPD_BYTES 256 /* Max number of bytes on the DIMM's SPD EEPROM */
232 #define ONE_BILLION 1000000000
234 #define CMD_NOP (7 << 19)
235 #define CMD_PRECHARGE (2 << 19)
236 #define CMD_REFRESH (1 << 19)
237 #define CMD_EMR (0 << 19)
238 #define CMD_READ (5 << 19)
239 #define CMD_WRITE (4 << 19)
241 #define SELECT_MR (0 << 16)
242 #define SELECT_EMR (1 << 16)
243 #define SELECT_EMR2 (2 << 16)
244 #define SELECT_EMR3 (3 << 16)
247 #define DLL_RESET 0x00000100
249 #define WRITE_RECOV_2 (1 << 9)
250 #define WRITE_RECOV_3 (2 << 9)
251 #define WRITE_RECOV_4 (3 << 9)
252 #define WRITE_RECOV_5 (4 << 9)
253 #define WRITE_RECOV_6 (5 << 9)
255 #define BURST_LEN_4 0x00000002
258 #define ODT_0_OHM 0x00000000
259 #define ODT_50_OHM 0x00000044
260 #define ODT_75_OHM 0x00000004
261 #define ODT_150_OHM 0x00000040
263 #define ODS_FULL 0x00000000
264 #define ODS_REDUCED 0x00000002
265 #define OCD_CALIB_DEF 0x00000380
267 /* defines for ODT (On Die Termination) of the 440SP(e) DDR2 controller */
268 #define ODT_EB0R (0x80000000 >> 8)
269 #define ODT_EB0W (0x80000000 >> 7)
270 #define CALC_ODT_R(n) (ODT_EB0R << (n << 1))
271 #define CALC_ODT_W(n) (ODT_EB0W << (n << 1))
272 #define CALC_ODT_RW(n) (CALC_ODT_R(n) | CALC_ODT_W(n))
274 /* Defines for the Read Cycle Delay test */
275 #define NUMMEMTESTS 8
276 #define NUMMEMWORDS 8
277 #define NUMLOOPS 64 /* memory test loops */
280 * Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
281 * To support such configurations, we "only" map the first 2GB via the TLB's. We
282 * need some free virtual address space for the remaining peripherals like, SoC
283 * devices, FLASH etc.
285 * Note that ECC is currently not supported on configurations with more than 2GB
286 * SDRAM. This is because we only map the first 2GB on such systems, and therefore
287 * the ECC parity byte of the remaining area can't be written.
291 * Board-specific Platform code can reimplement spd_ddr_init_hang () if needed
293 void __spd_ddr_init_hang (void)
297 void spd_ddr_init_hang (void) __attribute__((weak, alias("__spd_ddr_init_hang")));
300 * To provide an interface for board specific config values in this common
301 * DDR setup code, we implement he "weak" default functions here. They return
302 * the default value back to the caller.
304 * Please see include/configs/yucca.h for an example fora board specific
307 u32 __ddr_wrdtr(u32 default_val)
311 u32 ddr_wrdtr(u32) __attribute__((weak, alias("__ddr_wrdtr")));
313 u32 __ddr_clktr(u32 default_val)
317 u32 ddr_clktr(u32) __attribute__((weak, alias("__ddr_clktr")));
320 /* Private Structure Definitions */
322 /* enum only to ease code for cas latency setting */
323 typedef enum ddr_cas_id {
331 /*-----------------------------------------------------------------------------+
333 *-----------------------------------------------------------------------------*/
334 static void get_spd_info(unsigned long *dimm_populated,
335 unsigned char *iic0_dimm_addr,
336 unsigned long num_dimm_banks);
337 static void check_mem_type(unsigned long *dimm_populated,
338 unsigned char *iic0_dimm_addr,
339 unsigned long num_dimm_banks);
340 static void check_frequency(unsigned long *dimm_populated,
341 unsigned char *iic0_dimm_addr,
342 unsigned long num_dimm_banks);
343 static void check_rank_number(unsigned long *dimm_populated,
344 unsigned char *iic0_dimm_addr,
345 unsigned long num_dimm_banks);
346 static void check_voltage_type(unsigned long *dimm_populated,
347 unsigned char *iic0_dimm_addr,
348 unsigned long num_dimm_banks);
349 static void program_memory_queue(unsigned long *dimm_populated,
350 unsigned char *iic0_dimm_addr,
351 unsigned long num_dimm_banks);
352 static void program_codt(unsigned long *dimm_populated,
353 unsigned char *iic0_dimm_addr,
354 unsigned long num_dimm_banks);
355 static void program_mode(unsigned long *dimm_populated,
356 unsigned char *iic0_dimm_addr,
357 unsigned long num_dimm_banks,
358 ddr_cas_id_t *selected_cas,
359 int *write_recovery);
360 static void program_tr(unsigned long *dimm_populated,
361 unsigned char *iic0_dimm_addr,
362 unsigned long num_dimm_banks);
363 static void program_rtr(unsigned long *dimm_populated,
364 unsigned char *iic0_dimm_addr,
365 unsigned long num_dimm_banks);
366 static void program_bxcf(unsigned long *dimm_populated,
367 unsigned char *iic0_dimm_addr,
368 unsigned long num_dimm_banks);
369 static void program_copt1(unsigned long *dimm_populated,
370 unsigned char *iic0_dimm_addr,
371 unsigned long num_dimm_banks);
372 static void program_initplr(unsigned long *dimm_populated,
373 unsigned char *iic0_dimm_addr,
374 unsigned long num_dimm_banks,
375 ddr_cas_id_t selected_cas,
377 #ifdef CONFIG_DDR_ECC
378 static void program_ecc(unsigned long *dimm_populated,
379 unsigned char *iic0_dimm_addr,
380 unsigned long num_dimm_banks,
381 unsigned long tlb_word2_i_value);
383 #if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
384 static void program_DQS_calibration(unsigned long *dimm_populated,
385 unsigned char *iic0_dimm_addr,
386 unsigned long num_dimm_banks);
387 #ifdef HARD_CODED_DQS /* calibration test with hardvalues */
388 static void test(void);
390 static void DQS_calibration_process(void);
394 static unsigned char spd_read(uchar chip, uint addr)
396 unsigned char data[2];
398 if (i2c_probe(chip) == 0)
399 if (i2c_read(chip, addr, 1, data, 1) == 0)
405 /*-----------------------------------------------------------------------------+
406 * dram_init. Initializes the 440SP Memory Queue and DDR SDRAM controller.
407 * Note: This routine runs from flash with a stack set up in the chip's
408 * sram space. It is important that the routine does not require .sbss, .bss or
409 * .data sections. It also cannot call routines that require these sections.
410 *-----------------------------------------------------------------------------*/
411 /*-----------------------------------------------------------------------------
412 * Function: dram_init
413 * Description: Configures SDRAM memory banks for DDR operation.
414 * Auto Memory Configuration option reads the DDR SDRAM EEPROMs
415 * via the IIC bus and then configures the DDR SDRAM memory
416 * banks appropriately. If Auto Memory Configuration is
417 * not used, it is assumed that no DIMM is plugged
418 *-----------------------------------------------------------------------------*/
421 unsigned char iic0_dimm_addr[] = SPD_EEPROM_ADDRESS;
422 unsigned long dimm_populated[MAXDIMMS] = {SDRAM_NONE, SDRAM_NONE};
423 unsigned long num_dimm_banks; /* on board dimm banks */
425 ddr_cas_id_t selected_cas = DDR_CAS_5; /* preset to silence compiler */
427 phys_size_t dram_size = 0;
429 if (IS_ENABLED(CONFIG_SYS_RAMBOOT)) {
431 * Reduce RAM size to avoid overwriting memory used by
432 * current stack? Not sure what is happening.
434 gd->ram_size = sdram_memsize() / 2;
439 num_dimm_banks = sizeof(iic0_dimm_addr);
441 /*------------------------------------------------------------------
442 * Reset the DDR-SDRAM controller.
443 *-----------------------------------------------------------------*/
444 mtsdr(SDR0_SRST, SDR0_SRST0_DMC);
445 mtsdr(SDR0_SRST, 0x00000000);
448 * Make sure I2C controller is initialized
452 /* switch to correct I2C bus */
453 i2c_set_bus_num(CONFIG_SYS_SPD_BUS_NUM);
455 /*------------------------------------------------------------------
456 * Clear out the serial presence detect buffers.
457 * Perform IIC reads from the dimm. Fill in the spds.
458 * Check to see if the dimm slots are populated
459 *-----------------------------------------------------------------*/
460 get_spd_info(dimm_populated, iic0_dimm_addr, num_dimm_banks);
462 /*------------------------------------------------------------------
463 * Check the memory type for the dimms plugged.
464 *-----------------------------------------------------------------*/
465 check_mem_type(dimm_populated, iic0_dimm_addr, num_dimm_banks);
467 /*------------------------------------------------------------------
468 * Check the frequency supported for the dimms plugged.
469 *-----------------------------------------------------------------*/
470 check_frequency(dimm_populated, iic0_dimm_addr, num_dimm_banks);
472 /*------------------------------------------------------------------
473 * Check the total rank number.
474 *-----------------------------------------------------------------*/
475 check_rank_number(dimm_populated, iic0_dimm_addr, num_dimm_banks);
477 /*------------------------------------------------------------------
478 * Check the voltage type for the dimms plugged.
479 *-----------------------------------------------------------------*/
480 check_voltage_type(dimm_populated, iic0_dimm_addr, num_dimm_banks);
482 /*------------------------------------------------------------------
483 * Program SDRAM controller options 2 register
484 * Except Enabling of the memory controller.
485 *-----------------------------------------------------------------*/
486 mfsdram(SDRAM_MCOPT2, val);
487 mtsdram(SDRAM_MCOPT2,
489 ~(SDRAM_MCOPT2_SREN_MASK | SDRAM_MCOPT2_PMEN_MASK |
490 SDRAM_MCOPT2_IPTR_MASK | SDRAM_MCOPT2_XSRP_MASK |
491 SDRAM_MCOPT2_ISIE_MASK))
492 | (SDRAM_MCOPT2_SREN_ENTER | SDRAM_MCOPT2_PMEN_DISABLE |
493 SDRAM_MCOPT2_IPTR_IDLE | SDRAM_MCOPT2_XSRP_ALLOW |
494 SDRAM_MCOPT2_ISIE_ENABLE));
496 /*------------------------------------------------------------------
497 * Program SDRAM controller options 1 register
498 * Note: Does not enable the memory controller.
499 *-----------------------------------------------------------------*/
500 program_copt1(dimm_populated, iic0_dimm_addr, num_dimm_banks);
502 /*------------------------------------------------------------------
503 * Set the SDRAM Controller On Die Termination Register
504 *-----------------------------------------------------------------*/
505 program_codt(dimm_populated, iic0_dimm_addr, num_dimm_banks);
507 /*------------------------------------------------------------------
508 * Program SDRAM refresh register.
509 *-----------------------------------------------------------------*/
510 program_rtr(dimm_populated, iic0_dimm_addr, num_dimm_banks);
512 /*------------------------------------------------------------------
513 * Program SDRAM mode register.
514 *-----------------------------------------------------------------*/
515 program_mode(dimm_populated, iic0_dimm_addr, num_dimm_banks,
516 &selected_cas, &write_recovery);
518 /*------------------------------------------------------------------
519 * Set the SDRAM Write Data/DM/DQS Clock Timing Reg
520 *-----------------------------------------------------------------*/
521 mfsdram(SDRAM_WRDTR, val);
522 mtsdram(SDRAM_WRDTR, (val & ~(SDRAM_WRDTR_LLWP_MASK | SDRAM_WRDTR_WTR_MASK)) |
523 ddr_wrdtr(SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_90_DEG_ADV));
525 /*------------------------------------------------------------------
526 * Set the SDRAM Clock Timing Register
527 *-----------------------------------------------------------------*/
528 mfsdram(SDRAM_CLKTR, val);
529 mtsdram(SDRAM_CLKTR, (val & ~SDRAM_CLKTR_CLKP_MASK) |
530 ddr_clktr(SDRAM_CLKTR_CLKP_0_DEG));
532 /*------------------------------------------------------------------
533 * Program the BxCF registers.
534 *-----------------------------------------------------------------*/
535 program_bxcf(dimm_populated, iic0_dimm_addr, num_dimm_banks);
537 /*------------------------------------------------------------------
538 * Program SDRAM timing registers.
539 *-----------------------------------------------------------------*/
540 program_tr(dimm_populated, iic0_dimm_addr, num_dimm_banks);
542 /*------------------------------------------------------------------
543 * Set the Extended Mode register
544 *-----------------------------------------------------------------*/
545 mfsdram(SDRAM_MEMODE, val);
546 mtsdram(SDRAM_MEMODE,
547 (val & ~(SDRAM_MEMODE_DIC_MASK | SDRAM_MEMODE_DLL_MASK |
548 SDRAM_MEMODE_RTT_MASK | SDRAM_MEMODE_DQS_MASK)) |
549 (SDRAM_MEMODE_DIC_NORMAL | SDRAM_MEMODE_DLL_ENABLE
550 | SDRAM_MEMODE_RTT_150OHM | SDRAM_MEMODE_DQS_ENABLE));
552 /*------------------------------------------------------------------
553 * Program Initialization preload registers.
554 *-----------------------------------------------------------------*/
555 program_initplr(dimm_populated, iic0_dimm_addr, num_dimm_banks,
556 selected_cas, write_recovery);
558 /*------------------------------------------------------------------
559 * Delay to ensure 200usec have elapsed since reset.
560 *-----------------------------------------------------------------*/
563 /*------------------------------------------------------------------
564 * Set the memory queue core base addr.
565 *-----------------------------------------------------------------*/
566 program_memory_queue(dimm_populated, iic0_dimm_addr, num_dimm_banks);
568 /*------------------------------------------------------------------
569 * Program SDRAM controller options 2 register
570 * Enable the memory controller.
571 *-----------------------------------------------------------------*/
572 mfsdram(SDRAM_MCOPT2, val);
573 mtsdram(SDRAM_MCOPT2,
574 (val & ~(SDRAM_MCOPT2_SREN_MASK | SDRAM_MCOPT2_DCEN_MASK |
575 SDRAM_MCOPT2_IPTR_MASK | SDRAM_MCOPT2_ISIE_MASK)) |
576 SDRAM_MCOPT2_IPTR_EXECUTE);
578 /*------------------------------------------------------------------
579 * Wait for IPTR_EXECUTE init sequence to complete.
580 *-----------------------------------------------------------------*/
582 mfsdram(SDRAM_MCSTAT, val);
583 } while ((val & SDRAM_MCSTAT_MIC_MASK) == SDRAM_MCSTAT_MIC_NOTCOMP);
585 /* enable the controller only after init sequence completes */
586 mfsdram(SDRAM_MCOPT2, val);
587 mtsdram(SDRAM_MCOPT2, (val | SDRAM_MCOPT2_DCEN_ENABLE));
589 /* Make sure delay-line calibration is done before proceeding */
591 mfsdram(SDRAM_DLCR, val);
592 } while (!(val & SDRAM_DLCR_DLCS_COMPLETE));
594 /* get installed memory size */
595 dram_size = sdram_memsize();
600 if (dram_size > CONFIG_MAX_MEM_MAPPED)
601 dram_size = CONFIG_MAX_MEM_MAPPED;
603 /* and program tlb entries for this size (dynamic) */
606 * Program TLB entries with caches enabled, for best performace
607 * while auto-calibrating and ECC generation
609 program_tlb(0, 0, dram_size, 0);
611 /*------------------------------------------------------------------
613 *-----------------------------------------------------------------*/
614 #if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
615 DQS_autocalibration();
617 program_DQS_calibration(dimm_populated, iic0_dimm_addr, num_dimm_banks);
620 * Now complete RDSS configuration as mentioned on page 7 of the AMCC
621 * PowerPC440SP/SPe DDR2 application note:
622 * "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
626 #ifdef CONFIG_DDR_ECC
627 /*------------------------------------------------------------------
628 * If ecc is enabled, initialize the parity bits.
629 *-----------------------------------------------------------------*/
630 program_ecc(dimm_populated, iic0_dimm_addr, num_dimm_banks, 0);
634 * Flush the dcache before removing the TLB with caches
635 * enabled. Otherwise this might lead to problems later on,
636 * e.g. while booting Linux (as seen on ICON-440SPe).
641 * Now after initialization (auto-calibration and ECC generation)
642 * remove the TLB entries with caches enabled and program again with
643 * desired cache functionality
645 remove_tlb(0, dram_size);
646 program_tlb(0, 0, dram_size, MY_TLB_WORD2_I_ENABLE);
648 ppc4xx_ibm_ddr2_register_dump();
651 * Clear potential errors resulting from auto-calibration.
652 * If not done, then we could get an interrupt later on when
653 * exceptions are enabled.
655 set_mcsr(get_mcsr());
657 gd->ram_size = sdram_memsize();
662 static void get_spd_info(unsigned long *dimm_populated,
663 unsigned char *iic0_dimm_addr,
664 unsigned long num_dimm_banks)
666 unsigned long dimm_num;
667 unsigned long dimm_found;
668 unsigned char num_of_bytes;
669 unsigned char total_size;
672 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
676 num_of_bytes = spd_read(iic0_dimm_addr[dimm_num], 0);
677 debug("\nspd_read(0x%x) returned %d\n",
678 iic0_dimm_addr[dimm_num], num_of_bytes);
679 total_size = spd_read(iic0_dimm_addr[dimm_num], 1);
680 debug("spd_read(0x%x) returned %d\n",
681 iic0_dimm_addr[dimm_num], total_size);
683 if ((num_of_bytes != 0) && (total_size != 0)) {
684 dimm_populated[dimm_num] = true;
686 debug("DIMM slot %lu: populated\n", dimm_num);
688 dimm_populated[dimm_num] = false;
689 debug("DIMM slot %lu: Not populated\n", dimm_num);
693 if (dimm_found == false) {
694 printf("ERROR - No memory installed. Install a DDR-SDRAM DIMM.\n\n");
695 spd_ddr_init_hang ();
700 /*------------------------------------------------------------------
701 * For the memory DIMMs installed, this routine verifies that they
702 * really are DDR specific DIMMs.
703 *-----------------------------------------------------------------*/
704 static void check_mem_type(unsigned long *dimm_populated,
705 unsigned char *iic0_dimm_addr,
706 unsigned long num_dimm_banks)
708 unsigned long dimm_num;
709 unsigned long dimm_type;
711 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
712 if (dimm_populated[dimm_num] == true) {
713 dimm_type = spd_read(iic0_dimm_addr[dimm_num], 2);
716 printf("ERROR: Standard Fast Page Mode DRAM DIMM detected in "
717 "slot %d.\n", (unsigned int)dimm_num);
718 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
719 printf("Replace the DIMM module with a supported DIMM.\n\n");
720 spd_ddr_init_hang ();
723 printf("ERROR: EDO DIMM detected in slot %d.\n",
724 (unsigned int)dimm_num);
725 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
726 printf("Replace the DIMM module with a supported DIMM.\n\n");
727 spd_ddr_init_hang ();
730 printf("ERROR: Pipelined Nibble DIMM detected in slot %d.\n",
731 (unsigned int)dimm_num);
732 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
733 printf("Replace the DIMM module with a supported DIMM.\n\n");
734 spd_ddr_init_hang ();
737 printf("ERROR: SDRAM DIMM detected in slot %d.\n",
738 (unsigned int)dimm_num);
739 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
740 printf("Replace the DIMM module with a supported DIMM.\n\n");
741 spd_ddr_init_hang ();
744 printf("ERROR: Multiplexed ROM DIMM detected in slot %d.\n",
745 (unsigned int)dimm_num);
746 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
747 printf("Replace the DIMM module with a supported DIMM.\n\n");
748 spd_ddr_init_hang ();
751 printf("ERROR: SGRAM DIMM detected in slot %d.\n",
752 (unsigned int)dimm_num);
753 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
754 printf("Replace the DIMM module with a supported DIMM.\n\n");
755 spd_ddr_init_hang ();
758 debug("DIMM slot %lu: DDR1 SDRAM detected\n", dimm_num);
759 dimm_populated[dimm_num] = SDRAM_DDR1;
762 debug("DIMM slot %lu: DDR2 SDRAM detected\n", dimm_num);
763 dimm_populated[dimm_num] = SDRAM_DDR2;
766 printf("ERROR: Unknown DIMM detected in slot %d.\n",
767 (unsigned int)dimm_num);
768 printf("Only DDR1 and DDR2 SDRAM DIMMs are supported.\n");
769 printf("Replace the DIMM module with a supported DIMM.\n\n");
770 spd_ddr_init_hang ();
775 for (dimm_num = 1; dimm_num < num_dimm_banks; dimm_num++) {
776 if ((dimm_populated[dimm_num-1] != SDRAM_NONE)
777 && (dimm_populated[dimm_num] != SDRAM_NONE)
778 && (dimm_populated[dimm_num-1] != dimm_populated[dimm_num])) {
779 printf("ERROR: DIMM's DDR1 and DDR2 type can not be mixed.\n");
780 spd_ddr_init_hang ();
785 /*------------------------------------------------------------------
786 * For the memory DIMMs installed, this routine verifies that
787 * frequency previously calculated is supported.
788 *-----------------------------------------------------------------*/
789 static void check_frequency(unsigned long *dimm_populated,
790 unsigned char *iic0_dimm_addr,
791 unsigned long num_dimm_banks)
793 unsigned long dimm_num;
794 unsigned long tcyc_reg;
795 unsigned long cycle_time;
796 unsigned long calc_cycle_time;
797 unsigned long sdram_freq;
798 unsigned long sdr_ddrpll;
799 PPC4xx_SYS_INFO board_cfg;
801 /*------------------------------------------------------------------
802 * Get the board configuration info.
803 *-----------------------------------------------------------------*/
804 get_sys_info(&board_cfg);
806 mfsdr(SDR0_DDR0, sdr_ddrpll);
807 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
810 * calc_cycle_time is calculated from DDR frequency set by board/chip
811 * and is expressed in multiple of 10 picoseconds
812 * to match the way DIMM cycle time is calculated below.
814 calc_cycle_time = MULDIV64(ONE_BILLION, 100, sdram_freq);
816 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
817 if (dimm_populated[dimm_num] != SDRAM_NONE) {
818 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 9);
820 * Byte 9, Cycle time for CAS Latency=X, is split into two nibbles:
821 * the higher order nibble (bits 4-7) designates the cycle time
822 * to a granularity of 1ns;
823 * the value presented by the lower order nibble (bits 0-3)
824 * has a granularity of .1ns and is added to the value designated
825 * by the higher nibble. In addition, four lines of the lower order
826 * nibble are assigned to support +.25,+.33, +.66 and +.75.
828 /* Convert from hex to decimal */
829 if ((tcyc_reg & 0x0F) == 0x0D)
830 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 75;
831 else if ((tcyc_reg & 0x0F) == 0x0C)
832 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 66;
833 else if ((tcyc_reg & 0x0F) == 0x0B)
834 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 33;
835 else if ((tcyc_reg & 0x0F) == 0x0A)
836 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 25;
838 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) +
839 ((tcyc_reg & 0x0F)*10);
840 debug("cycle_time=%lu [10 picoseconds]\n", cycle_time);
842 if (cycle_time > (calc_cycle_time + 10)) {
844 * the provided sdram cycle_time is too small
845 * for the available DIMM cycle_time.
846 * The additionnal 100ps is here to accept a small incertainty.
848 printf("ERROR: DRAM DIMM detected with cycle_time %d ps in "
849 "slot %d \n while calculated cycle time is %d ps.\n",
850 (unsigned int)(cycle_time*10),
851 (unsigned int)dimm_num,
852 (unsigned int)(calc_cycle_time*10));
853 printf("Replace the DIMM, or change DDR frequency via "
854 "strapping bits.\n\n");
855 spd_ddr_init_hang ();
861 /*------------------------------------------------------------------
862 * For the memory DIMMs installed, this routine verifies two
863 * ranks/banks maximum are availables.
864 *-----------------------------------------------------------------*/
865 static void check_rank_number(unsigned long *dimm_populated,
866 unsigned char *iic0_dimm_addr,
867 unsigned long num_dimm_banks)
869 unsigned long dimm_num;
870 unsigned long dimm_rank;
871 unsigned long total_rank = 0;
873 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
874 if (dimm_populated[dimm_num] != SDRAM_NONE) {
875 dimm_rank = spd_read(iic0_dimm_addr[dimm_num], 5);
876 if (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
877 dimm_rank = (dimm_rank & 0x0F) +1;
879 dimm_rank = dimm_rank & 0x0F;
882 if (dimm_rank > MAXRANKS) {
883 printf("ERROR: DRAM DIMM detected with %lu ranks in "
884 "slot %lu is not supported.\n", dimm_rank, dimm_num);
885 printf("Only %d ranks are supported for all DIMM.\n", MAXRANKS);
886 printf("Replace the DIMM module with a supported DIMM.\n\n");
887 spd_ddr_init_hang ();
889 total_rank += dimm_rank;
891 if (total_rank > MAXRANKS) {
892 printf("ERROR: DRAM DIMM detected with a total of %d ranks "
893 "for all slots.\n", (unsigned int)total_rank);
894 printf("Only %d ranks are supported for all DIMM.\n", MAXRANKS);
895 printf("Remove one of the DIMM modules.\n\n");
896 spd_ddr_init_hang ();
901 /*------------------------------------------------------------------
902 * only support 2.5V modules.
903 * This routine verifies this.
904 *-----------------------------------------------------------------*/
905 static void check_voltage_type(unsigned long *dimm_populated,
906 unsigned char *iic0_dimm_addr,
907 unsigned long num_dimm_banks)
909 unsigned long dimm_num;
910 unsigned long voltage_type;
912 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
913 if (dimm_populated[dimm_num] != SDRAM_NONE) {
914 voltage_type = spd_read(iic0_dimm_addr[dimm_num], 8);
915 switch (voltage_type) {
917 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
918 printf("This DIMM is 5.0 Volt/TTL.\n");
919 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
920 (unsigned int)dimm_num);
921 spd_ddr_init_hang ();
924 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
925 printf("This DIMM is LVTTL.\n");
926 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
927 (unsigned int)dimm_num);
928 spd_ddr_init_hang ();
931 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
932 printf("This DIMM is 1.5 Volt.\n");
933 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
934 (unsigned int)dimm_num);
935 spd_ddr_init_hang ();
938 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
939 printf("This DIMM is 3.3 Volt/TTL.\n");
940 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
941 (unsigned int)dimm_num);
942 spd_ddr_init_hang ();
945 /* 2.5 Voltage only for DDR1 */
948 /* 1.8 Voltage only for DDR2 */
951 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
952 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
953 (unsigned int)dimm_num);
954 spd_ddr_init_hang ();
961 /*-----------------------------------------------------------------------------+
963 *-----------------------------------------------------------------------------*/
964 static void program_copt1(unsigned long *dimm_populated,
965 unsigned char *iic0_dimm_addr,
966 unsigned long num_dimm_banks)
968 unsigned long dimm_num;
969 unsigned long mcopt1;
970 unsigned long ecc_enabled;
971 unsigned long ecc = 0;
972 unsigned long data_width = 0;
973 unsigned long dimm_32bit;
974 unsigned long dimm_64bit;
975 unsigned long registered = 0;
976 unsigned long attribute = 0;
977 unsigned long buf0, buf1; /* TODO: code to be changed for IOP1.6 to support 4 DIMMs */
978 unsigned long bankcount;
981 #ifdef CONFIG_DDR_ECC
991 /*------------------------------------------------------------------
992 * Set memory controller options reg 1, SDRAM_MCOPT1.
993 *-----------------------------------------------------------------*/
994 mfsdram(SDRAM_MCOPT1, val);
995 mcopt1 = val & ~(SDRAM_MCOPT1_MCHK_MASK | SDRAM_MCOPT1_RDEN_MASK |
996 SDRAM_MCOPT1_PMU_MASK | SDRAM_MCOPT1_DMWD_MASK |
997 SDRAM_MCOPT1_UIOS_MASK | SDRAM_MCOPT1_BCNT_MASK |
998 SDRAM_MCOPT1_DDR_TYPE_MASK | SDRAM_MCOPT1_RWOO_MASK |
999 SDRAM_MCOPT1_WOOO_MASK | SDRAM_MCOPT1_DCOO_MASK |
1000 SDRAM_MCOPT1_DREF_MASK);
1002 mcopt1 |= SDRAM_MCOPT1_QDEP;
1003 mcopt1 |= SDRAM_MCOPT1_PMU_OPEN;
1004 mcopt1 |= SDRAM_MCOPT1_RWOO_DISABLED;
1005 mcopt1 |= SDRAM_MCOPT1_WOOO_DISABLED;
1006 mcopt1 |= SDRAM_MCOPT1_DCOO_DISABLED;
1007 mcopt1 |= SDRAM_MCOPT1_DREF_NORMAL;
1009 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1010 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1011 /* test ecc support */
1012 ecc = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 11);
1013 if (ecc != 0x02) /* ecc not supported */
1014 ecc_enabled = false;
1016 /* test bank count */
1017 bankcount = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 17);
1018 if (bankcount == 0x04) /* bank count = 4 */
1019 mcopt1 |= SDRAM_MCOPT1_4_BANKS;
1020 else /* bank count = 8 */
1021 mcopt1 |= SDRAM_MCOPT1_8_BANKS;
1023 /* test for buffered/unbuffered, registered, differential clocks */
1024 registered = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 20);
1025 attribute = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 21);
1027 /* TODO: code to be changed for IOP1.6 to support 4 DIMMs */
1028 if (dimm_num == 0) {
1029 if (dimm_populated[dimm_num] == SDRAM_DDR1) /* DDR1 type */
1030 mcopt1 |= SDRAM_MCOPT1_DDR1_TYPE;
1031 if (dimm_populated[dimm_num] == SDRAM_DDR2) /* DDR2 type */
1032 mcopt1 |= SDRAM_MCOPT1_DDR2_TYPE;
1033 if (registered == 1) { /* DDR2 always buffered */
1034 /* TODO: what about above comments ? */
1035 mcopt1 |= SDRAM_MCOPT1_RDEN;
1038 /* TODO: the mask 0x02 doesn't match Samsung def for byte 21. */
1039 if ((attribute & 0x02) == 0x00) {
1040 /* buffered not supported */
1043 mcopt1 |= SDRAM_MCOPT1_RDEN;
1048 else if (dimm_num == 1) {
1049 if (dimm_populated[dimm_num] == SDRAM_DDR1) /* DDR1 type */
1050 mcopt1 |= SDRAM_MCOPT1_DDR1_TYPE;
1051 if (dimm_populated[dimm_num] == SDRAM_DDR2) /* DDR2 type */
1052 mcopt1 |= SDRAM_MCOPT1_DDR2_TYPE;
1053 if (registered == 1) {
1054 /* DDR2 always buffered */
1055 mcopt1 |= SDRAM_MCOPT1_RDEN;
1058 if ((attribute & 0x02) == 0x00) {
1059 /* buffered not supported */
1062 mcopt1 |= SDRAM_MCOPT1_RDEN;
1068 /* Note that for DDR2 the byte 7 is reserved, but OK to keep code as is. */
1069 data_width = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 6) +
1070 (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 7)) << 8);
1072 switch (data_width) {
1082 printf("WARNING: Detected a DIMM with a data width of %lu bits.\n",
1084 printf("Only DIMMs with 32 or 64 bit DDR-SDRAM widths are supported.\n");
1090 /* verify matching properties */
1091 if ((dimm_populated[0] != SDRAM_NONE) && (dimm_populated[1] != SDRAM_NONE)) {
1093 printf("ERROR: DIMM's buffered/unbuffered, registered, clocking don't match.\n");
1094 spd_ddr_init_hang ();
1098 if ((dimm_64bit == true) && (dimm_32bit == true)) {
1099 printf("ERROR: Cannot mix 32 bit and 64 bit DDR-SDRAM DIMMs together.\n");
1100 spd_ddr_init_hang ();
1101 } else if ((dimm_64bit == true) && (dimm_32bit == false)) {
1102 mcopt1 |= SDRAM_MCOPT1_DMWD_64;
1103 } else if ((dimm_64bit == false) && (dimm_32bit == true)) {
1104 mcopt1 |= SDRAM_MCOPT1_DMWD_32;
1106 printf("ERROR: Please install only 32 or 64 bit DDR-SDRAM DIMMs.\n\n");
1107 spd_ddr_init_hang ();
1110 if (ecc_enabled == true)
1111 mcopt1 |= SDRAM_MCOPT1_MCHK_GEN;
1113 mcopt1 |= SDRAM_MCOPT1_MCHK_NON;
1115 mtsdram(SDRAM_MCOPT1, mcopt1);
1118 /*-----------------------------------------------------------------------------+
1120 *-----------------------------------------------------------------------------*/
1121 static void program_codt(unsigned long *dimm_populated,
1122 unsigned char *iic0_dimm_addr,
1123 unsigned long num_dimm_banks)
1126 unsigned long modt0 = 0;
1127 unsigned long modt1 = 0;
1128 unsigned long modt2 = 0;
1129 unsigned long modt3 = 0;
1130 unsigned char dimm_num;
1131 unsigned char dimm_rank;
1132 unsigned char total_rank = 0;
1133 unsigned char total_dimm = 0;
1134 unsigned char dimm_type = 0;
1135 unsigned char firstSlot = 0;
1137 /*------------------------------------------------------------------
1138 * Set the SDRAM Controller On Die Termination Register
1139 *-----------------------------------------------------------------*/
1140 mfsdram(SDRAM_CODT, codt);
1141 codt &= ~(SDRAM_CODT_DQS_SINGLE_END | SDRAM_CODT_CKSE_SINGLE_END);
1142 codt |= SDRAM_CODT_IO_NMODE;
1144 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1145 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1146 dimm_rank = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 5);
1147 if (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08) {
1148 dimm_rank = (dimm_rank & 0x0F) + 1;
1149 dimm_type = SDRAM_DDR2;
1151 dimm_rank = dimm_rank & 0x0F;
1152 dimm_type = SDRAM_DDR1;
1155 total_rank += dimm_rank;
1157 if ((dimm_num == 0) && (total_dimm == 1))
1163 if (dimm_type == SDRAM_DDR2) {
1164 codt |= SDRAM_CODT_DQS_1_8_V_DDR2;
1165 if ((total_dimm == 1) && (firstSlot == true)) {
1166 if (total_rank == 1) { /* PUUU */
1167 codt |= CALC_ODT_R(0);
1168 modt0 = CALC_ODT_W(0);
1173 if (total_rank == 2) { /* PPUU */
1174 codt |= CALC_ODT_R(0) | CALC_ODT_R(1);
1175 modt0 = CALC_ODT_W(0) | CALC_ODT_W(1);
1180 } else if ((total_dimm == 1) && (firstSlot != true)) {
1181 if (total_rank == 1) { /* UUPU */
1182 codt |= CALC_ODT_R(2);
1185 modt2 = CALC_ODT_W(2);
1188 if (total_rank == 2) { /* UUPP */
1189 codt |= CALC_ODT_R(2) | CALC_ODT_R(3);
1192 modt2 = CALC_ODT_W(2) | CALC_ODT_W(3);
1196 if (total_dimm == 2) {
1197 if (total_rank == 2) { /* PUPU */
1198 codt |= CALC_ODT_R(0) | CALC_ODT_R(2);
1199 modt0 = CALC_ODT_RW(2);
1201 modt2 = CALC_ODT_RW(0);
1204 if (total_rank == 4) { /* PPPP */
1205 codt |= CALC_ODT_R(0) | CALC_ODT_R(1) |
1206 CALC_ODT_R(2) | CALC_ODT_R(3);
1207 modt0 = CALC_ODT_RW(2) | CALC_ODT_RW(3);
1209 modt2 = CALC_ODT_RW(0) | CALC_ODT_RW(1);
1214 codt |= SDRAM_CODT_DQS_2_5_V_DDR1;
1220 if (total_dimm == 1) {
1221 if (total_rank == 1)
1223 if (total_rank == 2)
1226 if (total_dimm == 2) {
1227 if (total_rank == 2)
1229 if (total_rank == 4)
1234 debug("nb of dimm %d\n", total_dimm);
1235 debug("nb of rank %d\n", total_rank);
1236 if (total_dimm == 1)
1237 debug("dimm in slot %d\n", firstSlot);
1239 mtsdram(SDRAM_CODT, codt);
1240 mtsdram(SDRAM_MODT0, modt0);
1241 mtsdram(SDRAM_MODT1, modt1);
1242 mtsdram(SDRAM_MODT2, modt2);
1243 mtsdram(SDRAM_MODT3, modt3);
1246 /*-----------------------------------------------------------------------------+
1248 *-----------------------------------------------------------------------------*/
1249 static void program_initplr(unsigned long *dimm_populated,
1250 unsigned char *iic0_dimm_addr,
1251 unsigned long num_dimm_banks,
1252 ddr_cas_id_t selected_cas,
1266 /******************************************************
1267 ** Assumption: if more than one DIMM, all DIMMs are the same
1268 ** as already checked in check_memory_type
1269 ******************************************************/
1271 if ((dimm_populated[0] == SDRAM_DDR1) || (dimm_populated[1] == SDRAM_DDR1)) {
1272 mtsdram(SDRAM_INITPLR0, 0x81B80000);
1273 mtsdram(SDRAM_INITPLR1, 0x81900400);
1274 mtsdram(SDRAM_INITPLR2, 0x81810000);
1275 mtsdram(SDRAM_INITPLR3, 0xff800162);
1276 mtsdram(SDRAM_INITPLR4, 0x81900400);
1277 mtsdram(SDRAM_INITPLR5, 0x86080000);
1278 mtsdram(SDRAM_INITPLR6, 0x86080000);
1279 mtsdram(SDRAM_INITPLR7, 0x81000062);
1280 } else if ((dimm_populated[0] == SDRAM_DDR2) || (dimm_populated[1] == SDRAM_DDR2)) {
1281 switch (selected_cas) {
1292 printf("ERROR: ucode error on selected_cas value %d", selected_cas);
1293 spd_ddr_init_hang ();
1299 * ToDo - Still a problem with the write recovery:
1300 * On the Corsair CM2X512-5400C4 module, setting write recovery
1301 * in the INITPLR reg to the value calculated in program_mode()
1302 * results in not correctly working DDR2 memory (crash after
1305 * So for now, set the write recovery to 3. This seems to work
1306 * on the Corair module too.
1310 switch (write_recovery) {
1324 printf("ERROR: write recovery not support (%d)", write_recovery);
1325 spd_ddr_init_hang ();
1329 wr = WRITE_RECOV_3; /* test-only, see description above */
1332 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++)
1333 if (dimm_populated[dimm_num] != SDRAM_NONE)
1335 if (total_dimm == 1) {
1338 } else if (total_dimm == 2) {
1342 printf("ERROR: Unsupported number of DIMM's (%d)", total_dimm);
1343 spd_ddr_init_hang ();
1346 mr = CMD_EMR | SELECT_MR | BURST_LEN_4 | wr | cas;
1347 emr = CMD_EMR | SELECT_EMR | odt | ods;
1348 emr2 = CMD_EMR | SELECT_EMR2;
1349 emr3 = CMD_EMR | SELECT_EMR3;
1350 /* NOP - Wait 106 MemClk cycles */
1351 mtsdram(SDRAM_INITPLR0, SDRAM_INITPLR_ENABLE | CMD_NOP |
1352 SDRAM_INITPLR_IMWT_ENCODE(106));
1354 /* precharge 4 MemClk cycles */
1355 mtsdram(SDRAM_INITPLR1, SDRAM_INITPLR_ENABLE | CMD_PRECHARGE |
1356 SDRAM_INITPLR_IMWT_ENCODE(4));
1357 /* EMR2 - Wait tMRD (2 MemClk cycles) */
1358 mtsdram(SDRAM_INITPLR2, SDRAM_INITPLR_ENABLE | emr2 |
1359 SDRAM_INITPLR_IMWT_ENCODE(2));
1360 /* EMR3 - Wait tMRD (2 MemClk cycles) */
1361 mtsdram(SDRAM_INITPLR3, SDRAM_INITPLR_ENABLE | emr3 |
1362 SDRAM_INITPLR_IMWT_ENCODE(2));
1363 /* EMR DLL ENABLE - Wait tMRD (2 MemClk cycles) */
1364 mtsdram(SDRAM_INITPLR4, SDRAM_INITPLR_ENABLE | emr |
1365 SDRAM_INITPLR_IMWT_ENCODE(2));
1366 /* MR w/ DLL reset - 200 cycle wait for DLL reset */
1367 mtsdram(SDRAM_INITPLR5, SDRAM_INITPLR_ENABLE | mr | DLL_RESET |
1368 SDRAM_INITPLR_IMWT_ENCODE(200));
1370 /* precharge 4 MemClk cycles */
1371 mtsdram(SDRAM_INITPLR6, SDRAM_INITPLR_ENABLE | CMD_PRECHARGE |
1372 SDRAM_INITPLR_IMWT_ENCODE(4));
1373 /* Refresh 25 MemClk cycles */
1374 mtsdram(SDRAM_INITPLR7, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1375 SDRAM_INITPLR_IMWT_ENCODE(25));
1376 /* Refresh 25 MemClk cycles */
1377 mtsdram(SDRAM_INITPLR8, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1378 SDRAM_INITPLR_IMWT_ENCODE(25));
1379 /* Refresh 25 MemClk cycles */
1380 mtsdram(SDRAM_INITPLR9, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1381 SDRAM_INITPLR_IMWT_ENCODE(25));
1382 /* Refresh 25 MemClk cycles */
1383 mtsdram(SDRAM_INITPLR10, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1384 SDRAM_INITPLR_IMWT_ENCODE(25));
1385 /* MR w/o DLL reset - Wait tMRD (2 MemClk cycles) */
1386 mtsdram(SDRAM_INITPLR11, SDRAM_INITPLR_ENABLE | mr |
1387 SDRAM_INITPLR_IMWT_ENCODE(2));
1388 /* EMR OCD Default - Wait tMRD (2 MemClk cycles) */
1389 mtsdram(SDRAM_INITPLR12, SDRAM_INITPLR_ENABLE | OCD_CALIB_DEF |
1390 SDRAM_INITPLR_IMWT_ENCODE(2) | emr);
1392 mtsdram(SDRAM_INITPLR13, SDRAM_INITPLR_ENABLE | emr |
1393 SDRAM_INITPLR_IMWT_ENCODE(2));
1395 printf("ERROR: ucode error as unknown DDR type in program_initplr");
1396 spd_ddr_init_hang ();
1400 /*------------------------------------------------------------------
1401 * This routine programs the SDRAM_MMODE register.
1402 * the selected_cas is an output parameter, that will be passed
1403 * by caller to call the above program_initplr( )
1404 *-----------------------------------------------------------------*/
1405 static void program_mode(unsigned long *dimm_populated,
1406 unsigned char *iic0_dimm_addr,
1407 unsigned long num_dimm_banks,
1408 ddr_cas_id_t *selected_cas,
1409 int *write_recovery)
1411 unsigned long dimm_num;
1412 unsigned long sdram_ddr1;
1413 unsigned long t_wr_ns;
1414 unsigned long t_wr_clk;
1415 unsigned long cas_bit;
1416 unsigned long cas_index;
1417 unsigned long sdram_freq;
1418 unsigned long ddr_check;
1419 unsigned long mmode;
1420 unsigned long tcyc_reg;
1421 unsigned long cycle_2_0_clk;
1422 unsigned long cycle_2_5_clk;
1423 unsigned long cycle_3_0_clk;
1424 unsigned long cycle_4_0_clk;
1425 unsigned long cycle_5_0_clk;
1426 unsigned long max_2_0_tcyc_ns_x_100;
1427 unsigned long max_2_5_tcyc_ns_x_100;
1428 unsigned long max_3_0_tcyc_ns_x_100;
1429 unsigned long max_4_0_tcyc_ns_x_100;
1430 unsigned long max_5_0_tcyc_ns_x_100;
1431 unsigned long cycle_time_ns_x_100[3];
1432 PPC4xx_SYS_INFO board_cfg;
1433 unsigned char cas_2_0_available;
1434 unsigned char cas_2_5_available;
1435 unsigned char cas_3_0_available;
1436 unsigned char cas_4_0_available;
1437 unsigned char cas_5_0_available;
1438 unsigned long sdr_ddrpll;
1440 /*------------------------------------------------------------------
1441 * Get the board configuration info.
1442 *-----------------------------------------------------------------*/
1443 get_sys_info(&board_cfg);
1445 mfsdr(SDR0_DDR0, sdr_ddrpll);
1446 sdram_freq = MULDIV64((board_cfg.freqPLB), SDR0_DDR0_DDRM_DECODE(sdr_ddrpll), 1);
1447 debug("sdram_freq=%lu\n", sdram_freq);
1449 /*------------------------------------------------------------------
1450 * Handle the timing. We need to find the worst case timing of all
1451 * the dimm modules installed.
1452 *-----------------------------------------------------------------*/
1454 cas_2_0_available = true;
1455 cas_2_5_available = true;
1456 cas_3_0_available = true;
1457 cas_4_0_available = true;
1458 cas_5_0_available = true;
1459 max_2_0_tcyc_ns_x_100 = 10;
1460 max_2_5_tcyc_ns_x_100 = 10;
1461 max_3_0_tcyc_ns_x_100 = 10;
1462 max_4_0_tcyc_ns_x_100 = 10;
1463 max_5_0_tcyc_ns_x_100 = 10;
1466 /* loop through all the DIMM slots on the board */
1467 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1468 /* If a dimm is installed in a particular slot ... */
1469 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1470 if (dimm_populated[dimm_num] == SDRAM_DDR1)
1475 cas_bit = spd_read(iic0_dimm_addr[dimm_num], 18);
1476 debug("cas_bit[SPD byte 18]=%02lx\n", cas_bit);
1478 /* For a particular DIMM, grab the three CAS values it supports */
1479 for (cas_index = 0; cas_index < 3; cas_index++) {
1480 switch (cas_index) {
1482 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 9);
1485 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 23);
1488 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 25);
1492 if ((tcyc_reg & 0x0F) >= 10) {
1493 if ((tcyc_reg & 0x0F) == 0x0D) {
1494 /* Convert from hex to decimal */
1495 cycle_time_ns_x_100[cas_index] =
1496 (((tcyc_reg & 0xF0) >> 4) * 100) + 75;
1498 printf("ERROR: SPD reported Tcyc is incorrect for DIMM "
1499 "in slot %d\n", (unsigned int)dimm_num);
1500 spd_ddr_init_hang ();
1503 /* Convert from hex to decimal */
1504 cycle_time_ns_x_100[cas_index] =
1505 (((tcyc_reg & 0xF0) >> 4) * 100) +
1506 ((tcyc_reg & 0x0F)*10);
1508 debug("cas_index=%lu: cycle_time_ns_x_100=%lu\n", cas_index,
1509 cycle_time_ns_x_100[cas_index]);
1512 /* The rest of this routine determines if CAS 2.0, 2.5, 3.0, 4.0 and 5.0 are */
1513 /* supported for a particular DIMM. */
1518 * DDR devices use the following bitmask for CAS latency:
1519 * Bit 7 6 5 4 3 2 1 0
1520 * TBD 4.0 3.5 3.0 2.5 2.0 1.5 1.0
1522 if (((cas_bit & 0x40) == 0x40) && (cas_index < 3) &&
1523 (cycle_time_ns_x_100[cas_index] != 0)) {
1524 max_4_0_tcyc_ns_x_100 = max(max_4_0_tcyc_ns_x_100,
1525 cycle_time_ns_x_100[cas_index]);
1530 cas_4_0_available = false;
1533 if (((cas_bit & 0x10) == 0x10) && (cas_index < 3) &&
1534 (cycle_time_ns_x_100[cas_index] != 0)) {
1535 max_3_0_tcyc_ns_x_100 = max(max_3_0_tcyc_ns_x_100,
1536 cycle_time_ns_x_100[cas_index]);
1541 cas_3_0_available = false;
1544 if (((cas_bit & 0x08) == 0x08) && (cas_index < 3) &&
1545 (cycle_time_ns_x_100[cas_index] != 0)) {
1546 max_2_5_tcyc_ns_x_100 = max(max_2_5_tcyc_ns_x_100,
1547 cycle_time_ns_x_100[cas_index]);
1552 cas_2_5_available = false;
1555 if (((cas_bit & 0x04) == 0x04) && (cas_index < 3) &&
1556 (cycle_time_ns_x_100[cas_index] != 0)) {
1557 max_2_0_tcyc_ns_x_100 = max(max_2_0_tcyc_ns_x_100,
1558 cycle_time_ns_x_100[cas_index]);
1563 cas_2_0_available = false;
1567 * DDR2 devices use the following bitmask for CAS latency:
1568 * Bit 7 6 5 4 3 2 1 0
1569 * TBD 6.0 5.0 4.0 3.0 2.0 TBD TBD
1571 if (((cas_bit & 0x20) == 0x20) && (cas_index < 3) &&
1572 (cycle_time_ns_x_100[cas_index] != 0)) {
1573 max_5_0_tcyc_ns_x_100 = max(max_5_0_tcyc_ns_x_100,
1574 cycle_time_ns_x_100[cas_index]);
1579 cas_5_0_available = false;
1582 if (((cas_bit & 0x10) == 0x10) && (cas_index < 3) &&
1583 (cycle_time_ns_x_100[cas_index] != 0)) {
1584 max_4_0_tcyc_ns_x_100 = max(max_4_0_tcyc_ns_x_100,
1585 cycle_time_ns_x_100[cas_index]);
1590 cas_4_0_available = false;
1593 if (((cas_bit & 0x08) == 0x08) && (cas_index < 3) &&
1594 (cycle_time_ns_x_100[cas_index] != 0)) {
1595 max_3_0_tcyc_ns_x_100 = max(max_3_0_tcyc_ns_x_100,
1596 cycle_time_ns_x_100[cas_index]);
1601 cas_3_0_available = false;
1607 /*------------------------------------------------------------------
1608 * Set the SDRAM mode, SDRAM_MMODE
1609 *-----------------------------------------------------------------*/
1610 mfsdram(SDRAM_MMODE, mmode);
1611 mmode = mmode & ~(SDRAM_MMODE_WR_MASK | SDRAM_MMODE_DCL_MASK);
1613 /* add 10 here because of rounding problems */
1614 cycle_2_0_clk = MULDIV64(ONE_BILLION, 100, max_2_0_tcyc_ns_x_100) + 10;
1615 cycle_2_5_clk = MULDIV64(ONE_BILLION, 100, max_2_5_tcyc_ns_x_100) + 10;
1616 cycle_3_0_clk = MULDIV64(ONE_BILLION, 100, max_3_0_tcyc_ns_x_100) + 10;
1617 cycle_4_0_clk = MULDIV64(ONE_BILLION, 100, max_4_0_tcyc_ns_x_100) + 10;
1618 cycle_5_0_clk = MULDIV64(ONE_BILLION, 100, max_5_0_tcyc_ns_x_100) + 10;
1619 debug("cycle_3_0_clk=%lu\n", cycle_3_0_clk);
1620 debug("cycle_4_0_clk=%lu\n", cycle_4_0_clk);
1621 debug("cycle_5_0_clk=%lu\n", cycle_5_0_clk);
1623 if (sdram_ddr1 == true) { /* DDR1 */
1624 if ((cas_2_0_available == true) &&
1625 (sdram_freq <= cycle_2_0_clk)) {
1626 mmode |= SDRAM_MMODE_DCL_DDR1_2_0_CLK;
1627 *selected_cas = DDR_CAS_2;
1628 } else if ((cas_2_5_available == true) &&
1629 (sdram_freq <= cycle_2_5_clk)) {
1630 mmode |= SDRAM_MMODE_DCL_DDR1_2_5_CLK;
1631 *selected_cas = DDR_CAS_2_5;
1632 } else if ((cas_3_0_available == true) &&
1633 (sdram_freq <= cycle_3_0_clk)) {
1634 mmode |= SDRAM_MMODE_DCL_DDR1_3_0_CLK;
1635 *selected_cas = DDR_CAS_3;
1637 printf("ERROR: Cannot find a supported CAS latency with the installed DIMMs.\n");
1638 printf("Only DIMMs DDR1 with CAS latencies of 2.0, 2.5, and 3.0 are supported.\n");
1639 printf("Make sure the PLB speed is within the supported range of the DIMMs.\n\n");
1640 spd_ddr_init_hang ();
1643 debug("cas_3_0_available=%d\n", cas_3_0_available);
1644 debug("cas_4_0_available=%d\n", cas_4_0_available);
1645 debug("cas_5_0_available=%d\n", cas_5_0_available);
1646 if ((cas_3_0_available == true) &&
1647 (sdram_freq <= cycle_3_0_clk)) {
1648 mmode |= SDRAM_MMODE_DCL_DDR2_3_0_CLK;
1649 *selected_cas = DDR_CAS_3;
1650 } else if ((cas_4_0_available == true) &&
1651 (sdram_freq <= cycle_4_0_clk)) {
1652 mmode |= SDRAM_MMODE_DCL_DDR2_4_0_CLK;
1653 *selected_cas = DDR_CAS_4;
1654 } else if ((cas_5_0_available == true) &&
1655 (sdram_freq <= cycle_5_0_clk)) {
1656 mmode |= SDRAM_MMODE_DCL_DDR2_5_0_CLK;
1657 *selected_cas = DDR_CAS_5;
1659 printf("ERROR: Cannot find a supported CAS latency with the installed DIMMs.\n");
1660 printf("Only DIMMs DDR2 with CAS latencies of 3.0, 4.0, and 5.0 are supported.\n");
1661 printf("Make sure the PLB speed is within the supported range of the DIMMs.\n");
1662 printf("cas3=%d cas4=%d cas5=%d\n",
1663 cas_3_0_available, cas_4_0_available, cas_5_0_available);
1664 printf("sdram_freq=%lu cycle3=%lu cycle4=%lu cycle5=%lu\n\n",
1665 sdram_freq, cycle_3_0_clk, cycle_4_0_clk, cycle_5_0_clk);
1666 spd_ddr_init_hang ();
1670 if (sdram_ddr1 == true)
1671 mmode |= SDRAM_MMODE_WR_DDR1;
1674 /* loop through all the DIMM slots on the board */
1675 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1676 /* If a dimm is installed in a particular slot ... */
1677 if (dimm_populated[dimm_num] != SDRAM_NONE)
1678 t_wr_ns = max(t_wr_ns, (unsigned long)
1679 spd_read(iic0_dimm_addr[dimm_num], 36) >> 2);
1683 * convert from nanoseconds to ddr clocks
1684 * round up if necessary
1686 t_wr_clk = MULDIV64(sdram_freq, t_wr_ns, ONE_BILLION);
1687 ddr_check = MULDIV64(ONE_BILLION, t_wr_clk, t_wr_ns);
1688 if (sdram_freq != ddr_check)
1696 mmode |= SDRAM_MMODE_WR_DDR2_3_CYC;
1699 mmode |= SDRAM_MMODE_WR_DDR2_4_CYC;
1702 mmode |= SDRAM_MMODE_WR_DDR2_5_CYC;
1705 mmode |= SDRAM_MMODE_WR_DDR2_6_CYC;
1708 *write_recovery = t_wr_clk;
1711 debug("CAS latency = %d\n", *selected_cas);
1712 debug("Write recovery = %d\n", *write_recovery);
1714 mtsdram(SDRAM_MMODE, mmode);
1717 /*-----------------------------------------------------------------------------+
1719 *-----------------------------------------------------------------------------*/
1720 static void program_rtr(unsigned long *dimm_populated,
1721 unsigned char *iic0_dimm_addr,
1722 unsigned long num_dimm_banks)
1724 PPC4xx_SYS_INFO board_cfg;
1725 unsigned long max_refresh_rate;
1726 unsigned long dimm_num;
1727 unsigned long refresh_rate_type;
1728 unsigned long refresh_rate;
1730 unsigned long sdram_freq;
1731 unsigned long sdr_ddrpll;
1734 /*------------------------------------------------------------------
1735 * Get the board configuration info.
1736 *-----------------------------------------------------------------*/
1737 get_sys_info(&board_cfg);
1739 /*------------------------------------------------------------------
1740 * Set the SDRAM Refresh Timing Register, SDRAM_RTR
1741 *-----------------------------------------------------------------*/
1742 mfsdr(SDR0_DDR0, sdr_ddrpll);
1743 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
1745 max_refresh_rate = 0;
1746 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1747 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1749 refresh_rate_type = spd_read(iic0_dimm_addr[dimm_num], 12);
1750 refresh_rate_type &= 0x7F;
1751 switch (refresh_rate_type) {
1753 refresh_rate = 15625;
1756 refresh_rate = 3906;
1759 refresh_rate = 7812;
1762 refresh_rate = 31250;
1765 refresh_rate = 62500;
1768 refresh_rate = 125000;
1772 printf("ERROR: DIMM %d unsupported refresh rate/type.\n",
1773 (unsigned int)dimm_num);
1774 printf("Replace the DIMM module with a supported DIMM.\n\n");
1775 spd_ddr_init_hang ();
1779 max_refresh_rate = max(max_refresh_rate, refresh_rate);
1783 rint = MULDIV64(sdram_freq, max_refresh_rate, ONE_BILLION);
1784 mfsdram(SDRAM_RTR, val);
1785 mtsdram(SDRAM_RTR, (val & ~SDRAM_RTR_RINT_MASK) |
1786 (SDRAM_RTR_RINT_ENCODE(rint)));
1789 /*------------------------------------------------------------------
1790 * This routine programs the SDRAM_TRx registers.
1791 *-----------------------------------------------------------------*/
1792 static void program_tr(unsigned long *dimm_populated,
1793 unsigned char *iic0_dimm_addr,
1794 unsigned long num_dimm_banks)
1796 unsigned long dimm_num;
1797 unsigned long sdram_ddr1;
1798 unsigned long t_rp_ns;
1799 unsigned long t_rcd_ns;
1800 unsigned long t_rrd_ns;
1801 unsigned long t_ras_ns;
1802 unsigned long t_rc_ns;
1803 unsigned long t_rfc_ns;
1804 unsigned long t_wpc_ns;
1805 unsigned long t_wtr_ns;
1806 unsigned long t_rpc_ns;
1807 unsigned long t_rp_clk;
1808 unsigned long t_rcd_clk;
1809 unsigned long t_rrd_clk;
1810 unsigned long t_ras_clk;
1811 unsigned long t_rc_clk;
1812 unsigned long t_rfc_clk;
1813 unsigned long t_wpc_clk;
1814 unsigned long t_wtr_clk;
1815 unsigned long t_rpc_clk;
1816 unsigned long sdtr1, sdtr2, sdtr3;
1817 unsigned long ddr_check;
1818 unsigned long sdram_freq;
1819 unsigned long sdr_ddrpll;
1821 PPC4xx_SYS_INFO board_cfg;
1823 /*------------------------------------------------------------------
1824 * Get the board configuration info.
1825 *-----------------------------------------------------------------*/
1826 get_sys_info(&board_cfg);
1828 mfsdr(SDR0_DDR0, sdr_ddrpll);
1829 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
1831 /*------------------------------------------------------------------
1832 * Handle the timing. We need to find the worst case timing of all
1833 * the dimm modules installed.
1834 *-----------------------------------------------------------------*/
1846 /* loop through all the DIMM slots on the board */
1847 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1848 /* If a dimm is installed in a particular slot ... */
1849 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1850 if (dimm_populated[dimm_num] == SDRAM_DDR2)
1855 t_rcd_ns = max(t_rcd_ns,
1856 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 29) >> 2);
1857 t_rrd_ns = max(t_rrd_ns,
1858 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 28) >> 2);
1859 t_rp_ns = max(t_rp_ns,
1860 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 27) >> 2);
1861 t_ras_ns = max(t_ras_ns,
1862 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 30));
1863 t_rc_ns = max(t_rc_ns,
1864 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 41));
1865 t_rfc_ns = max(t_rfc_ns,
1866 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 42));
1870 /*------------------------------------------------------------------
1871 * Set the SDRAM Timing Reg 1, SDRAM_TR1
1872 *-----------------------------------------------------------------*/
1873 mfsdram(SDRAM_SDTR1, sdtr1);
1874 sdtr1 &= ~(SDRAM_SDTR1_LDOF_MASK | SDRAM_SDTR1_RTW_MASK |
1875 SDRAM_SDTR1_WTWO_MASK | SDRAM_SDTR1_RTRO_MASK);
1877 /* default values */
1878 sdtr1 |= SDRAM_SDTR1_LDOF_2_CLK;
1879 sdtr1 |= SDRAM_SDTR1_RTW_2_CLK;
1881 /* normal operations */
1882 sdtr1 |= SDRAM_SDTR1_WTWO_0_CLK;
1883 sdtr1 |= SDRAM_SDTR1_RTRO_1_CLK;
1885 mtsdram(SDRAM_SDTR1, sdtr1);
1887 /*------------------------------------------------------------------
1888 * Set the SDRAM Timing Reg 2, SDRAM_TR2
1889 *-----------------------------------------------------------------*/
1890 mfsdram(SDRAM_SDTR2, sdtr2);
1891 sdtr2 &= ~(SDRAM_SDTR2_RCD_MASK | SDRAM_SDTR2_WTR_MASK |
1892 SDRAM_SDTR2_XSNR_MASK | SDRAM_SDTR2_WPC_MASK |
1893 SDRAM_SDTR2_RPC_MASK | SDRAM_SDTR2_RP_MASK |
1894 SDRAM_SDTR2_RRD_MASK);
1897 * convert t_rcd from nanoseconds to ddr clocks
1898 * round up if necessary
1900 t_rcd_clk = MULDIV64(sdram_freq, t_rcd_ns, ONE_BILLION);
1901 ddr_check = MULDIV64(ONE_BILLION, t_rcd_clk, t_rcd_ns);
1902 if (sdram_freq != ddr_check)
1905 switch (t_rcd_clk) {
1908 sdtr2 |= SDRAM_SDTR2_RCD_1_CLK;
1911 sdtr2 |= SDRAM_SDTR2_RCD_2_CLK;
1914 sdtr2 |= SDRAM_SDTR2_RCD_3_CLK;
1917 sdtr2 |= SDRAM_SDTR2_RCD_4_CLK;
1920 sdtr2 |= SDRAM_SDTR2_RCD_5_CLK;
1924 if (sdram_ddr1 == true) { /* DDR1 */
1925 if (sdram_freq < 200000000) {
1926 sdtr2 |= SDRAM_SDTR2_WTR_1_CLK;
1927 sdtr2 |= SDRAM_SDTR2_WPC_2_CLK;
1928 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
1930 sdtr2 |= SDRAM_SDTR2_WTR_2_CLK;
1931 sdtr2 |= SDRAM_SDTR2_WPC_3_CLK;
1932 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
1935 /* loop through all the DIMM slots on the board */
1936 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1937 /* If a dimm is installed in a particular slot ... */
1938 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1939 t_wpc_ns = max(t_wtr_ns,
1940 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 36) >> 2);
1941 t_wtr_ns = max(t_wtr_ns,
1942 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 37) >> 2);
1943 t_rpc_ns = max(t_rpc_ns,
1944 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 38) >> 2);
1949 * convert from nanoseconds to ddr clocks
1950 * round up if necessary
1952 t_wpc_clk = MULDIV64(sdram_freq, t_wpc_ns, ONE_BILLION);
1953 ddr_check = MULDIV64(ONE_BILLION, t_wpc_clk, t_wpc_ns);
1954 if (sdram_freq != ddr_check)
1957 switch (t_wpc_clk) {
1961 sdtr2 |= SDRAM_SDTR2_WPC_2_CLK;
1964 sdtr2 |= SDRAM_SDTR2_WPC_3_CLK;
1967 sdtr2 |= SDRAM_SDTR2_WPC_4_CLK;
1970 sdtr2 |= SDRAM_SDTR2_WPC_5_CLK;
1973 sdtr2 |= SDRAM_SDTR2_WPC_6_CLK;
1978 * convert from nanoseconds to ddr clocks
1979 * round up if necessary
1981 t_wtr_clk = MULDIV64(sdram_freq, t_wtr_ns, ONE_BILLION);
1982 ddr_check = MULDIV64(ONE_BILLION, t_wtr_clk, t_wtr_ns);
1983 if (sdram_freq != ddr_check)
1986 switch (t_wtr_clk) {
1989 sdtr2 |= SDRAM_SDTR2_WTR_1_CLK;
1992 sdtr2 |= SDRAM_SDTR2_WTR_2_CLK;
1995 sdtr2 |= SDRAM_SDTR2_WTR_3_CLK;
1998 sdtr2 |= SDRAM_SDTR2_WTR_4_CLK;
2003 * convert from nanoseconds to ddr clocks
2004 * round up if necessary
2006 t_rpc_clk = MULDIV64(sdram_freq, t_rpc_ns, ONE_BILLION);
2007 ddr_check = MULDIV64(ONE_BILLION, t_rpc_clk, t_rpc_ns);
2008 if (sdram_freq != ddr_check)
2011 switch (t_rpc_clk) {
2015 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
2018 sdtr2 |= SDRAM_SDTR2_RPC_3_CLK;
2021 sdtr2 |= SDRAM_SDTR2_RPC_4_CLK;
2027 sdtr2 |= SDRAM_SDTR2_XSNR_16_CLK;
2030 * convert t_rrd from nanoseconds to ddr clocks
2031 * round up if necessary
2033 t_rrd_clk = MULDIV64(sdram_freq, t_rrd_ns, ONE_BILLION);
2034 ddr_check = MULDIV64(ONE_BILLION, t_rrd_clk, t_rrd_ns);
2035 if (sdram_freq != ddr_check)
2039 sdtr2 |= SDRAM_SDTR2_RRD_3_CLK;
2041 sdtr2 |= SDRAM_SDTR2_RRD_2_CLK;
2044 * convert t_rp from nanoseconds to ddr clocks
2045 * round up if necessary
2047 t_rp_clk = MULDIV64(sdram_freq, t_rp_ns, ONE_BILLION);
2048 ddr_check = MULDIV64(ONE_BILLION, t_rp_clk, t_rp_ns);
2049 if (sdram_freq != ddr_check)
2057 sdtr2 |= SDRAM_SDTR2_RP_3_CLK;
2060 sdtr2 |= SDRAM_SDTR2_RP_4_CLK;
2063 sdtr2 |= SDRAM_SDTR2_RP_5_CLK;
2066 sdtr2 |= SDRAM_SDTR2_RP_6_CLK;
2069 sdtr2 |= SDRAM_SDTR2_RP_7_CLK;
2073 mtsdram(SDRAM_SDTR2, sdtr2);
2075 /*------------------------------------------------------------------
2076 * Set the SDRAM Timing Reg 3, SDRAM_TR3
2077 *-----------------------------------------------------------------*/
2078 mfsdram(SDRAM_SDTR3, sdtr3);
2079 sdtr3 &= ~(SDRAM_SDTR3_RAS_MASK | SDRAM_SDTR3_RC_MASK |
2080 SDRAM_SDTR3_XCS_MASK | SDRAM_SDTR3_RFC_MASK);
2083 * convert t_ras from nanoseconds to ddr clocks
2084 * round up if necessary
2086 t_ras_clk = MULDIV64(sdram_freq, t_ras_ns, ONE_BILLION);
2087 ddr_check = MULDIV64(ONE_BILLION, t_ras_clk, t_ras_ns);
2088 if (sdram_freq != ddr_check)
2091 sdtr3 |= SDRAM_SDTR3_RAS_ENCODE(t_ras_clk);
2094 * convert t_rc from nanoseconds to ddr clocks
2095 * round up if necessary
2097 t_rc_clk = MULDIV64(sdram_freq, t_rc_ns, ONE_BILLION);
2098 ddr_check = MULDIV64(ONE_BILLION, t_rc_clk, t_rc_ns);
2099 if (sdram_freq != ddr_check)
2102 sdtr3 |= SDRAM_SDTR3_RC_ENCODE(t_rc_clk);
2104 /* default xcs value */
2105 sdtr3 |= SDRAM_SDTR3_XCS;
2108 * convert t_rfc from nanoseconds to ddr clocks
2109 * round up if necessary
2111 t_rfc_clk = MULDIV64(sdram_freq, t_rfc_ns, ONE_BILLION);
2112 ddr_check = MULDIV64(ONE_BILLION, t_rfc_clk, t_rfc_ns);
2113 if (sdram_freq != ddr_check)
2116 sdtr3 |= SDRAM_SDTR3_RFC_ENCODE(t_rfc_clk);
2118 mtsdram(SDRAM_SDTR3, sdtr3);
2121 /*-----------------------------------------------------------------------------+
2123 *-----------------------------------------------------------------------------*/
2124 static void program_bxcf(unsigned long *dimm_populated,
2125 unsigned char *iic0_dimm_addr,
2126 unsigned long num_dimm_banks)
2128 unsigned long dimm_num;
2129 unsigned long num_col_addr;
2130 unsigned long num_ranks;
2131 unsigned long num_banks;
2133 unsigned long ind_rank;
2135 unsigned long ind_bank;
2136 unsigned long bank_0_populated;
2138 /*------------------------------------------------------------------
2139 * Set the BxCF regs. First, wipe out the bank config registers.
2140 *-----------------------------------------------------------------*/
2141 mtsdram(SDRAM_MB0CF, 0x00000000);
2142 mtsdram(SDRAM_MB1CF, 0x00000000);
2143 mtsdram(SDRAM_MB2CF, 0x00000000);
2144 mtsdram(SDRAM_MB3CF, 0x00000000);
2146 mode = SDRAM_BXCF_M_BE_ENABLE;
2148 bank_0_populated = 0;
2150 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
2151 if (dimm_populated[dimm_num] != SDRAM_NONE) {
2152 num_col_addr = spd_read(iic0_dimm_addr[dimm_num], 4);
2153 num_ranks = spd_read(iic0_dimm_addr[dimm_num], 5);
2154 if ((spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
2155 num_ranks = (num_ranks & 0x0F) +1;
2157 num_ranks = num_ranks & 0x0F;
2159 num_banks = spd_read(iic0_dimm_addr[dimm_num], 17);
2161 for (ind_bank = 0; ind_bank < 2; ind_bank++) {
2166 switch (num_col_addr) {
2168 mode |= (SDRAM_BXCF_M_AM_0 + ind);
2171 mode |= (SDRAM_BXCF_M_AM_1 + ind);
2174 mode |= (SDRAM_BXCF_M_AM_2 + ind);
2177 mode |= (SDRAM_BXCF_M_AM_3 + ind);
2180 mode |= (SDRAM_BXCF_M_AM_4 + ind);
2183 printf("DDR-SDRAM: DIMM %d BxCF configuration.\n",
2184 (unsigned int)dimm_num);
2185 printf("ERROR: Unsupported value for number of "
2186 "column addresses: %d.\n", (unsigned int)num_col_addr);
2187 printf("Replace the DIMM module with a supported DIMM.\n\n");
2188 spd_ddr_init_hang ();
2192 if ((dimm_populated[dimm_num] != SDRAM_NONE)&& (dimm_num ==1))
2193 bank_0_populated = 1;
2195 for (ind_rank = 0; ind_rank < num_ranks; ind_rank++) {
2196 mtsdram(SDRAM_MB0CF +
2197 ((dimm_num + bank_0_populated + ind_rank) << 2),
2204 /*------------------------------------------------------------------
2205 * program memory queue.
2206 *-----------------------------------------------------------------*/
2207 static void program_memory_queue(unsigned long *dimm_populated,
2208 unsigned char *iic0_dimm_addr,
2209 unsigned long num_dimm_banks)
2211 unsigned long dimm_num;
2212 phys_size_t rank_base_addr;
2213 unsigned long rank_reg;
2214 phys_size_t rank_size_bytes;
2215 unsigned long rank_size_id;
2216 unsigned long num_ranks;
2217 unsigned long baseadd_size;
2219 unsigned long bank_0_populated = 0;
2220 phys_size_t total_size = 0;
2222 /*------------------------------------------------------------------
2223 * Reset the rank_base_address.
2224 *-----------------------------------------------------------------*/
2225 rank_reg = SDRAM_R0BAS;
2227 rank_base_addr = 0x00000000;
2229 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
2230 if (dimm_populated[dimm_num] != SDRAM_NONE) {
2231 num_ranks = spd_read(iic0_dimm_addr[dimm_num], 5);
2232 if ((spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
2233 num_ranks = (num_ranks & 0x0F) + 1;
2235 num_ranks = num_ranks & 0x0F;
2237 rank_size_id = spd_read(iic0_dimm_addr[dimm_num], 31);
2239 /*------------------------------------------------------------------
2241 *-----------------------------------------------------------------*/
2243 switch (rank_size_id) {
2245 baseadd_size |= SDRAM_RXBAS_SDSZ_1024;
2249 baseadd_size |= SDRAM_RXBAS_SDSZ_2048;
2253 baseadd_size |= SDRAM_RXBAS_SDSZ_4096;
2257 baseadd_size |= SDRAM_RXBAS_SDSZ_32;
2261 baseadd_size |= SDRAM_RXBAS_SDSZ_64;
2265 baseadd_size |= SDRAM_RXBAS_SDSZ_128;
2269 baseadd_size |= SDRAM_RXBAS_SDSZ_256;
2273 baseadd_size |= SDRAM_RXBAS_SDSZ_512;
2277 printf("DDR-SDRAM: DIMM %d memory queue configuration.\n",
2278 (unsigned int)dimm_num);
2279 printf("ERROR: Unsupported value for the banksize: %d.\n",
2280 (unsigned int)rank_size_id);
2281 printf("Replace the DIMM module with a supported DIMM.\n\n");
2282 spd_ddr_init_hang ();
2284 rank_size_bytes = total_size << 20;
2286 if ((dimm_populated[dimm_num] != SDRAM_NONE) && (dimm_num == 1))
2287 bank_0_populated = 1;
2289 for (i = 0; i < num_ranks; i++) {
2290 mtdcr_any(rank_reg+i+dimm_num+bank_0_populated,
2291 (SDRAM_RXBAS_SDBA_ENCODE(rank_base_addr) |
2293 rank_base_addr += rank_size_bytes;
2298 #if defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
2299 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
2300 defined(CONFIG_460SX)
2302 * Enable high bandwidth access
2303 * This is currently not used, but with this setup
2304 * it is possible to use it later on in e.g. the Linux
2305 * EMAC driver for performance gain.
2307 mtdcr(SDRAM_PLBADDULL, 0x00000000); /* MQ0_BAUL */
2308 mtdcr(SDRAM_PLBADDUHB, 0x00000008); /* MQ0_BAUH */
2311 * Set optimal value for Memory Queue HB/LL Configuration registers
2313 mtdcr(SDRAM_CONF1HB, (mfdcr(SDRAM_CONF1HB) & ~SDRAM_CONF1HB_MASK) |
2314 SDRAM_CONF1HB_AAFR | SDRAM_CONF1HB_RPEN | SDRAM_CONF1HB_RFTE |
2315 SDRAM_CONF1HB_RPLM | SDRAM_CONF1HB_WRCL);
2316 mtdcr(SDRAM_CONF1LL, (mfdcr(SDRAM_CONF1LL) & ~SDRAM_CONF1LL_MASK) |
2317 SDRAM_CONF1LL_AAFR | SDRAM_CONF1LL_RPEN | SDRAM_CONF1LL_RFTE |
2318 SDRAM_CONF1LL_RPLM);
2319 mtdcr(SDRAM_CONFPATHB, mfdcr(SDRAM_CONFPATHB) | SDRAM_CONFPATHB_TPEN);
2323 #ifdef CONFIG_DDR_ECC
2324 /*-----------------------------------------------------------------------------+
2326 *-----------------------------------------------------------------------------*/
2327 static void program_ecc(unsigned long *dimm_populated,
2328 unsigned char *iic0_dimm_addr,
2329 unsigned long num_dimm_banks,
2330 unsigned long tlb_word2_i_value)
2332 unsigned long dimm_num;
2336 /* loop through all the DIMM slots on the board */
2337 for (dimm_num = 0; dimm_num < MAXDIMMS; dimm_num++) {
2338 /* If a dimm is installed in a particular slot ... */
2339 if (dimm_populated[dimm_num] != SDRAM_NONE)
2341 (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 11));
2346 do_program_ecc(tlb_word2_i_value);
2350 #if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
2351 /*-----------------------------------------------------------------------------+
2352 * program_DQS_calibration.
2353 *-----------------------------------------------------------------------------*/
2354 static void program_DQS_calibration(unsigned long *dimm_populated,
2355 unsigned char *iic0_dimm_addr,
2356 unsigned long num_dimm_banks)
2360 #ifdef HARD_CODED_DQS /* calibration test with hardvalues */
2361 mtsdram(SDRAM_RQDC, 0x80000037);
2362 mtsdram(SDRAM_RDCC, 0x40000000);
2363 mtsdram(SDRAM_RFDC, 0x000001DF);
2367 /*------------------------------------------------------------------
2368 * Program RDCC register
2369 * Read sample cycle auto-update enable
2370 *-----------------------------------------------------------------*/
2372 mfsdram(SDRAM_RDCC, val);
2374 (val & ~(SDRAM_RDCC_RDSS_MASK | SDRAM_RDCC_RSAE_MASK))
2375 | SDRAM_RDCC_RSAE_ENABLE);
2377 /*------------------------------------------------------------------
2378 * Program RQDC register
2379 * Internal DQS delay mechanism enable
2380 *-----------------------------------------------------------------*/
2381 mtsdram(SDRAM_RQDC, (SDRAM_RQDC_RQDE_ENABLE|SDRAM_RQDC_RQFD_ENCODE(0x38)));
2383 /*------------------------------------------------------------------
2384 * Program RFDC register
2385 * Set Feedback Fractional Oversample
2386 * Auto-detect read sample cycle enable
2387 * Set RFOS to 1/4 of memclk cycle (0x3f)
2388 *-----------------------------------------------------------------*/
2389 mfsdram(SDRAM_RFDC, val);
2391 (val & ~(SDRAM_RFDC_ARSE_MASK | SDRAM_RFDC_RFOS_MASK |
2392 SDRAM_RFDC_RFFD_MASK))
2393 | (SDRAM_RFDC_ARSE_ENABLE | SDRAM_RFDC_RFOS_ENCODE(0x3f) |
2394 SDRAM_RFDC_RFFD_ENCODE(0)));
2396 DQS_calibration_process();
2400 static int short_mem_test(void)
2407 phys_size_t base_addr;
2408 u32 test[NUMMEMTESTS][NUMMEMWORDS] = {
2409 {0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
2410 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF},
2411 {0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
2412 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000},
2413 {0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
2414 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555},
2415 {0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
2416 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA},
2417 {0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
2418 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A},
2419 {0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
2420 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5},
2421 {0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
2422 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA},
2423 {0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55,
2424 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55} };
2427 for (bxcr_num = 0; bxcr_num < MAXBXCF; bxcr_num++) {
2428 mfsdram(SDRAM_MB0CF + (bxcr_num << 2), bxcf);
2431 if ((bxcf & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
2432 /* Bank is enabled */
2435 * Only run test on accessable memory (below 2GB)
2437 base_addr = SDRAM_RXBAS_SDBA_DECODE(mfdcr_any(SDRAM_R0BAS+bxcr_num));
2438 if (base_addr >= CONFIG_MAX_MEM_MAPPED)
2441 /*------------------------------------------------------------------
2442 * Run the short memory test.
2443 *-----------------------------------------------------------------*/
2444 membase = (u32 *)(u32)base_addr;
2446 for (i = 0; i < NUMMEMTESTS; i++) {
2447 for (j = 0; j < NUMMEMWORDS; j++) {
2448 membase[j] = test[i][j];
2449 ppcDcbf((u32)&(membase[j]));
2452 for (l=0; l<NUMLOOPS; l++) {
2453 for (j = 0; j < NUMMEMWORDS; j++) {
2454 if (membase[j] != test[i][j]) {
2455 ppcDcbf((u32)&(membase[j]));
2458 ppcDcbf((u32)&(membase[j]));
2463 } /* if bank enabled */
2464 } /* for bxcf_num */
2469 #ifndef HARD_CODED_DQS
2470 /*-----------------------------------------------------------------------------+
2471 * DQS_calibration_process.
2472 *-----------------------------------------------------------------------------*/
2473 static void DQS_calibration_process(void)
2475 unsigned long rfdc_reg;
2480 unsigned long dlycal;
2481 unsigned long dly_val;
2482 unsigned long max_pass_length;
2483 unsigned long current_pass_length;
2484 unsigned long current_fail_length;
2485 unsigned long current_start;
2487 unsigned char fail_found;
2488 unsigned char pass_found;
2489 #if !defined(CONFIG_DDR_RQDC_FIXED)
2496 char str[] = "Auto calibration -";
2497 char slash[] = "\\|/-\\|/-";
2499 /*------------------------------------------------------------------
2500 * Test to determine the best read clock delay tuning bits.
2502 * Before the DDR controller can be used, the read clock delay needs to be
2503 * set. This is SDRAM_RQDC[RQFD] and SDRAM_RFDC[RFFD].
2504 * This value cannot be hardcoded into the program because it changes
2505 * depending on the board's setup and environment.
2506 * To do this, all delay values are tested to see if they
2507 * work or not. By doing this, you get groups of fails with groups of
2508 * passing values. The idea is to find the start and end of a passing
2509 * window and take the center of it to use as the read clock delay.
2511 * A failure has to be seen first so that when we hit a pass, we know
2512 * that it is truely the start of the window. If we get passing values
2513 * to start off with, we don't know if we are at the start of the window.
2515 * The code assumes that a failure will always be found.
2516 * If a failure is not found, there is no easy way to get the middle
2517 * of the passing window. I guess we can pretty much pick any value
2518 * but some values will be better than others. Since the lowest speed
2519 * we can clock the DDR interface at is 200 MHz (2x 100 MHz PLB speed),
2520 * from experimentation it is safe to say you will always have a failure.
2521 *-----------------------------------------------------------------*/
2523 /* first fix RQDC[RQFD] to an average of 80 degre phase shift to find RFDC[RFFD] */
2524 rqfd_start = 64; /* test-only: don't know if this is the _best_ start value */
2529 mfsdram(SDRAM_RQDC, rqdc_reg);
2530 mtsdram(SDRAM_RQDC, (rqdc_reg & ~SDRAM_RQDC_RQFD_MASK) |
2531 SDRAM_RQDC_RQFD_ENCODE(rqfd_start));
2532 #else /* CONFIG_DDR_RQDC_FIXED */
2534 * On Katmai the complete auto-calibration somehow doesn't seem to
2535 * produce the best results, meaning optimal values for RQFD/RFFD.
2536 * This was discovered by GDA using a high bandwidth scope,
2537 * analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
2538 * so now on Katmai "only" RFFD is auto-calibrated.
2540 mtsdram(SDRAM_RQDC, CONFIG_DDR_RQDC_FIXED);
2541 #endif /* CONFIG_DDR_RQDC_FIXED */
2545 max_pass_length = 0;
2548 current_pass_length = 0;
2549 current_fail_length = 0;
2555 * get the delay line calibration register value
2557 mfsdram(SDRAM_DLCR, dlycal);
2558 dly_val = SDRAM_DLYCAL_DLCV_DECODE(dlycal) << 2;
2560 for (rffd = 0; rffd <= SDRAM_RFDC_RFFD_MAX; rffd++) {
2561 mfsdram(SDRAM_RFDC, rfdc_reg);
2562 rfdc_reg &= ~(SDRAM_RFDC_RFFD_MASK);
2564 /*------------------------------------------------------------------
2565 * Set the timing reg for the test.
2566 *-----------------------------------------------------------------*/
2567 mtsdram(SDRAM_RFDC, rfdc_reg | SDRAM_RFDC_RFFD_ENCODE(rffd));
2569 /*------------------------------------------------------------------
2570 * See if the rffd value passed.
2571 *-----------------------------------------------------------------*/
2572 if (short_mem_test()) {
2573 if (fail_found == true) {
2575 if (current_pass_length == 0)
2576 current_start = rffd;
2578 current_fail_length = 0;
2579 current_pass_length++;
2581 if (current_pass_length > max_pass_length) {
2582 max_pass_length = current_pass_length;
2583 max_start = current_start;
2588 current_pass_length = 0;
2589 current_fail_length++;
2591 if (current_fail_length >= (dly_val >> 2)) {
2592 if (fail_found == false)
2594 else if (pass_found == true)
2600 /*------------------------------------------------------------------
2601 * Set the average RFFD value
2602 *-----------------------------------------------------------------*/
2603 rffd_average = ((max_start + max_end) >> 1);
2605 if (rffd_average < 0)
2608 if (rffd_average > SDRAM_RFDC_RFFD_MAX)
2609 rffd_average = SDRAM_RFDC_RFFD_MAX;
2610 /* now fix RFDC[RFFD] found and find RQDC[RQFD] */
2611 mtsdram(SDRAM_RFDC, rfdc_reg | SDRAM_RFDC_RFFD_ENCODE(rffd_average));
2613 #if !defined(CONFIG_DDR_RQDC_FIXED)
2614 max_pass_length = 0;
2617 current_pass_length = 0;
2618 current_fail_length = 0;
2620 window_found = false;
2624 for (rqfd = 0; rqfd <= SDRAM_RQDC_RQFD_MAX; rqfd++) {
2625 mfsdram(SDRAM_RQDC, rqdc_reg);
2626 rqdc_reg &= ~(SDRAM_RQDC_RQFD_MASK);
2628 /*------------------------------------------------------------------
2629 * Set the timing reg for the test.
2630 *-----------------------------------------------------------------*/
2631 mtsdram(SDRAM_RQDC, rqdc_reg | SDRAM_RQDC_RQFD_ENCODE(rqfd));
2633 /*------------------------------------------------------------------
2634 * See if the rffd value passed.
2635 *-----------------------------------------------------------------*/
2636 if (short_mem_test()) {
2637 if (fail_found == true) {
2639 if (current_pass_length == 0)
2640 current_start = rqfd;
2642 current_fail_length = 0;
2643 current_pass_length++;
2645 if (current_pass_length > max_pass_length) {
2646 max_pass_length = current_pass_length;
2647 max_start = current_start;
2652 current_pass_length = 0;
2653 current_fail_length++;
2655 if (fail_found == false) {
2657 } else if (pass_found == true) {
2658 window_found = true;
2664 rqfd_average = ((max_start + max_end) >> 1);
2666 /*------------------------------------------------------------------
2667 * Make sure we found the valid read passing window. Halt if not
2668 *-----------------------------------------------------------------*/
2669 if (window_found == false) {
2670 if (rqfd_start < SDRAM_RQDC_RQFD_MAX) {
2672 putc(slash[loopi++ % 8]);
2674 /* try again from with a different RQFD start value */
2676 goto calibration_loop;
2679 printf("\nERROR: Cannot determine a common read delay for the "
2680 "DIMM(s) installed.\n");
2681 debug("%s[%d] ERROR : \n", __FUNCTION__,__LINE__);
2682 ppc4xx_ibm_ddr2_register_dump();
2683 spd_ddr_init_hang ();
2686 if (rqfd_average < 0)
2689 if (rqfd_average > SDRAM_RQDC_RQFD_MAX)
2690 rqfd_average = SDRAM_RQDC_RQFD_MAX;
2693 (rqdc_reg & ~SDRAM_RQDC_RQFD_MASK) |
2694 SDRAM_RQDC_RQFD_ENCODE(rqfd_average));
2696 blank_string(strlen(str));
2697 #endif /* CONFIG_DDR_RQDC_FIXED */
2699 mfsdram(SDRAM_DLCR, val);
2700 debug("%s[%d] DLCR: 0x%08lX\n", __FUNCTION__, __LINE__, val);
2701 mfsdram(SDRAM_RQDC, val);
2702 debug("%s[%d] RQDC: 0x%08lX\n", __FUNCTION__, __LINE__, val);
2703 mfsdram(SDRAM_RFDC, val);
2704 debug("%s[%d] RFDC: 0x%08lX\n", __FUNCTION__, __LINE__, val);
2705 mfsdram(SDRAM_RDCC, val);
2706 debug("%s[%d] RDCC: 0x%08lX\n", __FUNCTION__, __LINE__, val);
2708 #else /* calibration test with hardvalues */
2709 /*-----------------------------------------------------------------------------+
2710 * DQS_calibration_process.
2711 *-----------------------------------------------------------------------------*/
2712 static void test(void)
2714 unsigned long dimm_num;
2715 unsigned long ecc_temp;
2717 unsigned long *membase;
2718 unsigned long bxcf[MAXRANKS];
2721 char begin_found[MAXDIMMS];
2722 char end_found[MAXDIMMS];
2723 char search_end[MAXDIMMS];
2724 unsigned long test[NUMMEMTESTS][NUMMEMWORDS] = {
2725 {0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
2726 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF},
2727 {0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
2728 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000},
2729 {0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
2730 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555},
2731 {0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
2732 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA},
2733 {0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
2734 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A},
2735 {0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
2736 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5},
2737 {0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
2738 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA},
2739 {0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55,
2740 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55} };
2742 /*------------------------------------------------------------------
2743 * Test to determine the best read clock delay tuning bits.
2745 * Before the DDR controller can be used, the read clock delay needs to be
2746 * set. This is SDRAM_RQDC[RQFD] and SDRAM_RFDC[RFFD].
2747 * This value cannot be hardcoded into the program because it changes
2748 * depending on the board's setup and environment.
2749 * To do this, all delay values are tested to see if they
2750 * work or not. By doing this, you get groups of fails with groups of
2751 * passing values. The idea is to find the start and end of a passing
2752 * window and take the center of it to use as the read clock delay.
2754 * A failure has to be seen first so that when we hit a pass, we know
2755 * that it is truely the start of the window. If we get passing values
2756 * to start off with, we don't know if we are at the start of the window.
2758 * The code assumes that a failure will always be found.
2759 * If a failure is not found, there is no easy way to get the middle
2760 * of the passing window. I guess we can pretty much pick any value
2761 * but some values will be better than others. Since the lowest speed
2762 * we can clock the DDR interface at is 200 MHz (2x 100 MHz PLB speed),
2763 * from experimentation it is safe to say you will always have a failure.
2764 *-----------------------------------------------------------------*/
2765 mfsdram(SDRAM_MCOPT1, ecc_temp);
2766 ecc_temp &= SDRAM_MCOPT1_MCHK_MASK;
2767 mfsdram(SDRAM_MCOPT1, val);
2768 mtsdram(SDRAM_MCOPT1, (val & ~SDRAM_MCOPT1_MCHK_MASK) |
2769 SDRAM_MCOPT1_MCHK_NON);
2771 window_found = false;
2772 begin_found[0] = false;
2773 end_found[0] = false;
2774 search_end[0] = false;
2775 begin_found[1] = false;
2776 end_found[1] = false;
2777 search_end[1] = false;
2779 for (dimm_num = 0; dimm_num < MAXDIMMS; dimm_num++) {
2780 mfsdram(SDRAM_MB0CF + (bxcr_num << 2), bxcf[bxcr_num]);
2783 if ((bxcf[dimm_num] & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
2785 /* Bank is enabled */
2787 (unsigned long*)(SDRAM_RXBAS_SDBA_DECODE(mfdcr_any(SDRAM_R0BAS+dimm_num)));
2789 /*------------------------------------------------------------------
2790 * Run the short memory test.
2791 *-----------------------------------------------------------------*/
2792 for (i = 0; i < NUMMEMTESTS; i++) {
2793 for (j = 0; j < NUMMEMWORDS; j++) {
2794 membase[j] = test[i][j];
2795 ppcDcbf((u32)&(membase[j]));
2798 for (j = 0; j < NUMMEMWORDS; j++) {
2799 if (membase[j] != test[i][j]) {
2800 ppcDcbf((u32)&(membase[j]));
2803 ppcDcbf((u32)&(membase[j]));
2806 if (j < NUMMEMWORDS)
2810 /*------------------------------------------------------------------
2811 * See if the rffd value passed.
2812 *-----------------------------------------------------------------*/
2813 if (i < NUMMEMTESTS) {
2814 if ((end_found[dimm_num] == false) &&
2815 (search_end[dimm_num] == true)) {
2816 end_found[dimm_num] = true;
2818 if ((end_found[0] == true) &&
2819 (end_found[1] == true))
2822 if (begin_found[dimm_num] == false) {
2823 begin_found[dimm_num] = true;
2824 search_end[dimm_num] = true;
2828 begin_found[dimm_num] = true;
2829 end_found[dimm_num] = true;
2833 if ((begin_found[0] == true) && (begin_found[1] == true))
2834 window_found = true;
2836 /*------------------------------------------------------------------
2837 * Make sure we found the valid read passing window. Halt if not
2838 *-----------------------------------------------------------------*/
2839 if (window_found == false) {
2840 printf("ERROR: Cannot determine a common read delay for the "
2841 "DIMM(s) installed.\n");
2842 spd_ddr_init_hang ();
2845 /*------------------------------------------------------------------
2846 * Restore the ECC variable to what it originally was
2847 *-----------------------------------------------------------------*/
2848 mtsdram(SDRAM_MCOPT1,
2849 (ppcMfdcr_sdram(SDRAM_MCOPT1) & ~SDRAM_MCOPT1_MCHK_MASK)
2852 #endif /* !HARD_CODED_DQS */
2853 #endif /* !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION) */
2855 #else /* CONFIG_SPD_EEPROM */
2857 /*-----------------------------------------------------------------------------
2858 * Function: dram_init
2859 * Description: Configures the PPC4xx IBM DDR1/DDR2 SDRAM memory controller.
2860 * The configuration is performed using static, compile-
2862 * Configures the PPC405EX(r) and PPC460EX/GT
2863 *---------------------------------------------------------------------------*/
2868 #if defined(CONFIG_440)
2869 mtdcr(SDRAM_R0BAS, CONFIG_SYS_SDRAM_R0BAS);
2870 mtdcr(SDRAM_R1BAS, CONFIG_SYS_SDRAM_R1BAS);
2871 mtdcr(SDRAM_R2BAS, CONFIG_SYS_SDRAM_R2BAS);
2872 mtdcr(SDRAM_R3BAS, CONFIG_SYS_SDRAM_R3BAS);
2873 mtdcr(SDRAM_PLBADDULL, CONFIG_SYS_SDRAM_PLBADDULL); /* MQ0_BAUL */
2874 mtdcr(SDRAM_PLBADDUHB, CONFIG_SYS_SDRAM_PLBADDUHB); /* MQ0_BAUH */
2875 mtdcr(SDRAM_CONF1LL, CONFIG_SYS_SDRAM_CONF1LL);
2876 mtdcr(SDRAM_CONF1HB, CONFIG_SYS_SDRAM_CONF1HB);
2877 mtdcr(SDRAM_CONFPATHB, CONFIG_SYS_SDRAM_CONFPATHB);
2880 /* Set Memory Bank Configuration Registers */
2882 mtsdram(SDRAM_MB0CF, CONFIG_SYS_SDRAM0_MB0CF);
2883 mtsdram(SDRAM_MB1CF, CONFIG_SYS_SDRAM0_MB1CF);
2884 mtsdram(SDRAM_MB2CF, CONFIG_SYS_SDRAM0_MB2CF);
2885 mtsdram(SDRAM_MB3CF, CONFIG_SYS_SDRAM0_MB3CF);
2887 /* Set Memory Clock Timing Register */
2889 mtsdram(SDRAM_CLKTR, CONFIG_SYS_SDRAM0_CLKTR);
2891 /* Set Refresh Time Register */
2893 mtsdram(SDRAM_RTR, CONFIG_SYS_SDRAM0_RTR);
2895 /* Set SDRAM Timing Registers */
2897 mtsdram(SDRAM_SDTR1, CONFIG_SYS_SDRAM0_SDTR1);
2898 mtsdram(SDRAM_SDTR2, CONFIG_SYS_SDRAM0_SDTR2);
2899 mtsdram(SDRAM_SDTR3, CONFIG_SYS_SDRAM0_SDTR3);
2901 /* Set Mode and Extended Mode Registers */
2903 mtsdram(SDRAM_MMODE, CONFIG_SYS_SDRAM0_MMODE);
2904 mtsdram(SDRAM_MEMODE, CONFIG_SYS_SDRAM0_MEMODE);
2906 /* Set Memory Controller Options 1 Register */
2908 mtsdram(SDRAM_MCOPT1, CONFIG_SYS_SDRAM0_MCOPT1);
2910 /* Set Manual Initialization Control Registers */
2912 mtsdram(SDRAM_INITPLR0, CONFIG_SYS_SDRAM0_INITPLR0);
2913 mtsdram(SDRAM_INITPLR1, CONFIG_SYS_SDRAM0_INITPLR1);
2914 mtsdram(SDRAM_INITPLR2, CONFIG_SYS_SDRAM0_INITPLR2);
2915 mtsdram(SDRAM_INITPLR3, CONFIG_SYS_SDRAM0_INITPLR3);
2916 mtsdram(SDRAM_INITPLR4, CONFIG_SYS_SDRAM0_INITPLR4);
2917 mtsdram(SDRAM_INITPLR5, CONFIG_SYS_SDRAM0_INITPLR5);
2918 mtsdram(SDRAM_INITPLR6, CONFIG_SYS_SDRAM0_INITPLR6);
2919 mtsdram(SDRAM_INITPLR7, CONFIG_SYS_SDRAM0_INITPLR7);
2920 mtsdram(SDRAM_INITPLR8, CONFIG_SYS_SDRAM0_INITPLR8);
2921 mtsdram(SDRAM_INITPLR9, CONFIG_SYS_SDRAM0_INITPLR9);
2922 mtsdram(SDRAM_INITPLR10, CONFIG_SYS_SDRAM0_INITPLR10);
2923 mtsdram(SDRAM_INITPLR11, CONFIG_SYS_SDRAM0_INITPLR11);
2924 mtsdram(SDRAM_INITPLR12, CONFIG_SYS_SDRAM0_INITPLR12);
2925 mtsdram(SDRAM_INITPLR13, CONFIG_SYS_SDRAM0_INITPLR13);
2926 mtsdram(SDRAM_INITPLR14, CONFIG_SYS_SDRAM0_INITPLR14);
2927 mtsdram(SDRAM_INITPLR15, CONFIG_SYS_SDRAM0_INITPLR15);
2929 /* Set On-Die Termination Registers */
2931 mtsdram(SDRAM_CODT, CONFIG_SYS_SDRAM0_CODT);
2932 mtsdram(SDRAM_MODT0, CONFIG_SYS_SDRAM0_MODT0);
2933 mtsdram(SDRAM_MODT1, CONFIG_SYS_SDRAM0_MODT1);
2935 /* Set Write Timing Register */
2937 mtsdram(SDRAM_WRDTR, CONFIG_SYS_SDRAM0_WRDTR);
2940 * Start Initialization by SDRAM0_MCOPT2[SREN] = 0 and
2941 * SDRAM0_MCOPT2[IPTR] = 1
2944 mtsdram(SDRAM_MCOPT2, (SDRAM_MCOPT2_SREN_EXIT |
2945 SDRAM_MCOPT2_IPTR_EXECUTE));
2948 * Poll SDRAM0_MCSTAT[MIC] for assertion to indicate the
2949 * completion of initialization.
2953 mfsdram(SDRAM_MCSTAT, val);
2954 } while ((val & SDRAM_MCSTAT_MIC_MASK) != SDRAM_MCSTAT_MIC_COMP);
2956 /* Set Delay Control Registers */
2958 mtsdram(SDRAM_DLCR, CONFIG_SYS_SDRAM0_DLCR);
2960 #if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
2961 mtsdram(SDRAM_RDCC, CONFIG_SYS_SDRAM0_RDCC);
2962 mtsdram(SDRAM_RQDC, CONFIG_SYS_SDRAM0_RQDC);
2963 mtsdram(SDRAM_RFDC, CONFIG_SYS_SDRAM0_RFDC);
2964 #endif /* !CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
2967 * Enable Controller by SDRAM0_MCOPT2[DCEN] = 1:
2970 mfsdram(SDRAM_MCOPT2, val);
2971 mtsdram(SDRAM_MCOPT2, val | SDRAM_MCOPT2_DCEN_ENABLE);
2973 #if defined(CONFIG_440)
2975 * Program TLB entries with caches enabled, for best performace
2976 * while auto-calibrating and ECC generation
2978 program_tlb(0, 0, (CONFIG_SYS_MBYTES_SDRAM << 20), 0);
2981 #if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
2982 /*------------------------------------------------------------------
2984 +-----------------------------------------------------------------*/
2985 DQS_autocalibration();
2986 #endif /* CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
2989 * Now complete RDSS configuration as mentioned on page 7 of the AMCC
2990 * PowerPC440SP/SPe DDR2 application note:
2991 * "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
2995 #if defined(CONFIG_DDR_ECC)
2997 #endif /* defined(CONFIG_DDR_ECC) */
2999 #if defined(CONFIG_440)
3001 * Now after initialization (auto-calibration and ECC generation)
3002 * remove the TLB entries with caches enabled and program again with
3003 * desired cache functionality
3005 remove_tlb(0, (CONFIG_SYS_MBYTES_SDRAM << 20));
3006 program_tlb(0, 0, (CONFIG_SYS_MBYTES_SDRAM << 20), MY_TLB_WORD2_I_ENABLE);
3009 ppc4xx_ibm_ddr2_register_dump();
3011 #if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
3013 * Clear potential errors resulting from auto-calibration.
3014 * If not done, then we could get an interrupt later on when
3015 * exceptions are enabled.
3017 set_mcsr(get_mcsr());
3018 #endif /* CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
3020 gd->ram_size = CONFIG_SYS_MBYTES_SDRAM << 20;
3024 #endif /* CONFIG_SPD_EEPROM */
3026 #if defined(CONFIG_440)
3027 u32 mfdcr_any(u32 dcr)
3032 case SDRAM_R0BAS + 0:
3033 val = mfdcr(SDRAM_R0BAS + 0);
3035 case SDRAM_R0BAS + 1:
3036 val = mfdcr(SDRAM_R0BAS + 1);
3038 case SDRAM_R0BAS + 2:
3039 val = mfdcr(SDRAM_R0BAS + 2);
3041 case SDRAM_R0BAS + 3:
3042 val = mfdcr(SDRAM_R0BAS + 3);
3045 printf("DCR %d not defined in case statement!!!\n", dcr);
3046 val = 0; /* just to satisfy the compiler */
3052 void mtdcr_any(u32 dcr, u32 val)
3055 case SDRAM_R0BAS + 0:
3056 mtdcr(SDRAM_R0BAS + 0, val);
3058 case SDRAM_R0BAS + 1:
3059 mtdcr(SDRAM_R0BAS + 1, val);
3061 case SDRAM_R0BAS + 2:
3062 mtdcr(SDRAM_R0BAS + 2, val);
3064 case SDRAM_R0BAS + 3:
3065 mtdcr(SDRAM_R0BAS + 3, val);
3068 printf("DCR %d not defined in case statement!!!\n", dcr);
3071 #endif /* defined(CONFIG_440) */
3073 inline void ppc4xx_ibm_ddr2_register_dump(void)
3076 printf("\nPPC4xx IBM DDR2 Register Dump:\n");
3078 #if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3079 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3080 PPC4xx_IBM_DDR2_DUMP_MQ_REGISTER(R0BAS);
3081 PPC4xx_IBM_DDR2_DUMP_MQ_REGISTER(R1BAS);
3082 PPC4xx_IBM_DDR2_DUMP_MQ_REGISTER(R2BAS);
3083 PPC4xx_IBM_DDR2_DUMP_MQ_REGISTER(R3BAS);
3084 #endif /* (defined(CONFIG_440SP) || ... */
3085 #if defined(CONFIG_405EX)
3086 PPC4xx_IBM_DDR2_DUMP_REGISTER(BESR);
3087 PPC4xx_IBM_DDR2_DUMP_REGISTER(BEARL);
3088 PPC4xx_IBM_DDR2_DUMP_REGISTER(BEARH);
3089 PPC4xx_IBM_DDR2_DUMP_REGISTER(WMIRQ);
3090 PPC4xx_IBM_DDR2_DUMP_REGISTER(PLBOPT);
3091 PPC4xx_IBM_DDR2_DUMP_REGISTER(PUABA);
3092 #endif /* defined(CONFIG_405EX) */
3093 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB0CF);
3094 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB1CF);
3095 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB2CF);
3096 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB3CF);
3097 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCSTAT);
3098 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCOPT1);
3099 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCOPT2);
3100 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT0);
3101 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT1);
3102 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT2);
3103 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT3);
3104 PPC4xx_IBM_DDR2_DUMP_REGISTER(CODT);
3105 #if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3106 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3107 PPC4xx_IBM_DDR2_DUMP_REGISTER(VVPR);
3108 PPC4xx_IBM_DDR2_DUMP_REGISTER(OPARS);
3110 * OPART is only used as a trigger register.
3112 * No data is contained in this register, and reading or writing
3113 * to is can cause bad things to happen (hangs). Just skip it and
3116 printf("%20s = N/A\n", "SDRAM_OPART");
3117 #endif /* defined(CONFIG_440SP) || ... */
3118 PPC4xx_IBM_DDR2_DUMP_REGISTER(RTR);
3119 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR0);
3120 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR1);
3121 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR2);
3122 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR3);
3123 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR4);
3124 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR5);
3125 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR6);
3126 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR7);
3127 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR8);
3128 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR9);
3129 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR10);
3130 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR11);
3131 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR12);
3132 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR13);
3133 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR14);
3134 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR15);
3135 PPC4xx_IBM_DDR2_DUMP_REGISTER(RQDC);
3136 PPC4xx_IBM_DDR2_DUMP_REGISTER(RFDC);
3137 PPC4xx_IBM_DDR2_DUMP_REGISTER(RDCC);
3138 PPC4xx_IBM_DDR2_DUMP_REGISTER(DLCR);
3139 PPC4xx_IBM_DDR2_DUMP_REGISTER(CLKTR);
3140 PPC4xx_IBM_DDR2_DUMP_REGISTER(WRDTR);
3141 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR1);
3142 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR2);
3143 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR3);
3144 PPC4xx_IBM_DDR2_DUMP_REGISTER(MMODE);
3145 PPC4xx_IBM_DDR2_DUMP_REGISTER(MEMODE);
3146 PPC4xx_IBM_DDR2_DUMP_REGISTER(ECCES);
3147 #if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3148 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3149 PPC4xx_IBM_DDR2_DUMP_REGISTER(CID);
3150 #endif /* defined(CONFIG_440SP) || ... */
3151 PPC4xx_IBM_DDR2_DUMP_REGISTER(RID);
3152 PPC4xx_IBM_DDR2_DUMP_REGISTER(FCSR);
3153 PPC4xx_IBM_DDR2_DUMP_REGISTER(RTSR);
3154 #endif /* defined(DEBUG) */