blob: b40e4b15150a507077facfae1498eae41888e637 [file] [log] [blame]
Stefan Roese4037ed32007-02-20 10:43:34 +01001/*
2 * cpu/ppc4xx/44x_spd_ddr2.c
3 * This SPD SDRAM detection code supports AMCC PPC44x cpu's with a
Stefan Roeseea9202a2008-04-30 10:49:43 +02004 * DDR2 controller (non Denali Core). Those currently are:
5 *
Grant Ericksonc821b5f2008-05-22 14:44:14 -07006 * 405: 405EX(r)
Stefan Roeseea9202a2008-04-30 10:49:43 +02007 * 440/460: 440SP/440SPe/460EX/460GT
Stefan Roese4037ed32007-02-20 10:43:34 +01008 *
Grant Ericksonc821b5f2008-05-22 14:44:14 -07009 * Copyright (c) 2008 Nuovation System Designs, LLC
10 * Grant Erickson <gerickson@nuovations.com>
11
Stefan Roese845c6c92008-01-05 09:12:41 +010012 * (C) Copyright 2007-2008
Stefan Roese4037ed32007-02-20 10:43:34 +010013 * Stefan Roese, DENX Software Engineering, sr@denx.de.
14 *
15 * COPYRIGHT AMCC CORPORATION 2004
16 *
17 * See file CREDITS for list of people who contributed to this
18 * project.
19 *
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License as
22 * published by the Free Software Foundation; either version 2 of
23 * the License, or (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 * MA 02111-1307 USA
34 *
35 */
36
37/* define DEBUG for debugging output (obviously ;-)) */
38#if 0
39#define DEBUG
40#endif
41
42#include <common.h>
Stefan Roeseba58e4c2007-03-01 21:11:36 +010043#include <command.h>
Stefan Roese4037ed32007-02-20 10:43:34 +010044#include <ppc4xx.h>
45#include <i2c.h>
46#include <asm/io.h>
47#include <asm/processor.h>
48#include <asm/mmu.h>
Stefan Roese85ad1842008-04-29 13:57:07 +020049#include <asm/cache.h>
Stefan Roese4037ed32007-02-20 10:43:34 +010050
Grant Ericksonc821b5f2008-05-22 14:44:14 -070051#include "ecc.h"
52
Stefan Roese08250eb2008-07-10 15:32:32 +020053#if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR2)
54
55#define PPC4xx_IBM_DDR2_DUMP_REGISTER(mnemonic) \
56 do { \
57 u32 data; \
58 mfsdram(SDRAM_##mnemonic, data); \
59 printf("%20s[%02x] = 0x%08X\n", \
60 "SDRAM_" #mnemonic, SDRAM_##mnemonic, data); \
61 } while (0)
62
Adam Graham59217ba2008-10-08 10:13:14 -070063#if defined(CONFIG_440)
64/*
65 * This DDR2 setup code can dynamically setup the TLB entries for the DDR2
66 * memory region. Right now the cache should still be disabled in U-Boot
67 * because of the EMAC driver, that need its buffer descriptor to be located
68 * in non cached memory.
69 *
70 * If at some time this restriction doesn't apply anymore, just define
71 * CONFIG_4xx_DCACHE in the board config file and this code should setup
72 * everything correctly.
73 */
74#ifdef CONFIG_4xx_DCACHE
75/* enable caching on SDRAM */
76#define MY_TLB_WORD2_I_ENABLE 0
77#else
78/* disable caching on SDRAM */
79#define MY_TLB_WORD2_I_ENABLE TLB_WORD2_I_ENABLE
80#endif /* CONFIG_4xx_DCACHE */
81#endif /* CONFIG_440 */
82
Stefan Roese08250eb2008-07-10 15:32:32 +020083#if defined(CONFIG_SPD_EEPROM)
Stefan Roese4037ed32007-02-20 10:43:34 +010084
Stefan Roeseba58e4c2007-03-01 21:11:36 +010085/*-----------------------------------------------------------------------------+
86 * Defines
87 *-----------------------------------------------------------------------------*/
Stefan Roese4037ed32007-02-20 10:43:34 +010088#ifndef TRUE
Wolfgang Denk74357112007-02-27 14:26:04 +010089#define TRUE 1
Stefan Roese4037ed32007-02-20 10:43:34 +010090#endif
91#ifndef FALSE
Wolfgang Denk74357112007-02-27 14:26:04 +010092#define FALSE 0
Stefan Roese4037ed32007-02-20 10:43:34 +010093#endif
94
95#define SDRAM_DDR1 1
96#define SDRAM_DDR2 2
97#define SDRAM_NONE 0
98
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020099#define MAXDIMMS 2
100#define MAXRANKS 4
Stefan Roese4037ed32007-02-20 10:43:34 +0100101#define MAXBXCF 4
102#define MAX_SPD_BYTES 256 /* Max number of bytes on the DIMM's SPD EEPROM */
103
104#define ONE_BILLION 1000000000
105
106#define MULDIV64(m1, m2, d) (u32)(((u64)(m1) * (u64)(m2)) / (u64)(d))
107
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100108#define CMD_NOP (7 << 19)
109#define CMD_PRECHARGE (2 << 19)
110#define CMD_REFRESH (1 << 19)
111#define CMD_EMR (0 << 19)
112#define CMD_READ (5 << 19)
113#define CMD_WRITE (4 << 19)
Stefan Roese4037ed32007-02-20 10:43:34 +0100114
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100115#define SELECT_MR (0 << 16)
116#define SELECT_EMR (1 << 16)
117#define SELECT_EMR2 (2 << 16)
118#define SELECT_EMR3 (3 << 16)
119
120/* MR */
121#define DLL_RESET 0x00000100
122
123#define WRITE_RECOV_2 (1 << 9)
124#define WRITE_RECOV_3 (2 << 9)
125#define WRITE_RECOV_4 (3 << 9)
126#define WRITE_RECOV_5 (4 << 9)
127#define WRITE_RECOV_6 (5 << 9)
128
129#define BURST_LEN_4 0x00000002
130
131/* EMR */
132#define ODT_0_OHM 0x00000000
133#define ODT_50_OHM 0x00000044
134#define ODT_75_OHM 0x00000004
135#define ODT_150_OHM 0x00000040
136
137#define ODS_FULL 0x00000000
138#define ODS_REDUCED 0x00000002
Prodyut Hazarika04737d52008-08-27 16:39:00 -0700139#define OCD_CALIB_DEF 0x00000380
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100140
141/* defines for ODT (On Die Termination) of the 440SP(e) DDR2 controller */
142#define ODT_EB0R (0x80000000 >> 8)
143#define ODT_EB0W (0x80000000 >> 7)
144#define CALC_ODT_R(n) (ODT_EB0R << (n << 1))
145#define CALC_ODT_W(n) (ODT_EB0W << (n << 1))
146#define CALC_ODT_RW(n) (CALC_ODT_R(n) | CALC_ODT_W(n))
147
Stefan Roese4037ed32007-02-20 10:43:34 +0100148/* Defines for the Read Cycle Delay test */
Stefan Roese94f54702007-03-31 08:46:08 +0200149#define NUMMEMTESTS 8
150#define NUMMEMWORDS 8
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200151#define NUMLOOPS 64 /* memory test loops */
Stefan Roese4037ed32007-02-20 10:43:34 +0100152
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100153/*
Stefan Roese5d812b82008-07-09 17:33:57 +0200154 * Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
155 * To support such configurations, we "only" map the first 2GB via the TLB's. We
156 * need some free virtual address space for the remaining peripherals like, SoC
157 * devices, FLASH etc.
158 *
159 * Note that ECC is currently not supported on configurations with more than 2GB
160 * SDRAM. This is because we only map the first 2GB on such systems, and therefore
161 * the ECC parity byte of the remaining area can't be written.
162 */
163#ifndef CONFIG_MAX_MEM_MAPPED
164#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
165#endif
166
167/*
Heiko Schochera5d71e22007-06-25 19:11:37 +0200168 * Board-specific Platform code can reimplement spd_ddr_init_hang () if needed
169 */
170void __spd_ddr_init_hang (void)
171{
172 hang ();
173}
174void spd_ddr_init_hang (void) __attribute__((weak, alias("__spd_ddr_init_hang")));
175
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200176/*
177 * To provide an interface for board specific config values in this common
178 * DDR setup code, we implement he "weak" default functions here. They return
179 * the default value back to the caller.
180 *
181 * Please see include/configs/yucca.h for an example fora board specific
182 * implementation.
183 */
184u32 __ddr_wrdtr(u32 default_val)
185{
186 return default_val;
187}
188u32 ddr_wrdtr(u32) __attribute__((weak, alias("__ddr_wrdtr")));
189
190u32 __ddr_clktr(u32 default_val)
191{
192 return default_val;
193}
194u32 ddr_clktr(u32) __attribute__((weak, alias("__ddr_clktr")));
195
Heiko Schocher566a4942007-06-22 19:11:54 +0200196
Stefan Roese4037ed32007-02-20 10:43:34 +0100197/* Private Structure Definitions */
198
199/* enum only to ease code for cas latency setting */
200typedef enum ddr_cas_id {
201 DDR_CAS_2 = 20,
202 DDR_CAS_2_5 = 25,
203 DDR_CAS_3 = 30,
204 DDR_CAS_4 = 40,
205 DDR_CAS_5 = 50
206} ddr_cas_id_t;
207
208/*-----------------------------------------------------------------------------+
209 * Prototypes
210 *-----------------------------------------------------------------------------*/
Stefan Roese5d812b82008-07-09 17:33:57 +0200211static phys_size_t sdram_memsize(void);
Stefan Roese4037ed32007-02-20 10:43:34 +0100212static void get_spd_info(unsigned long *dimm_populated,
213 unsigned char *iic0_dimm_addr,
214 unsigned long num_dimm_banks);
215static void check_mem_type(unsigned long *dimm_populated,
216 unsigned char *iic0_dimm_addr,
217 unsigned long num_dimm_banks);
218static void check_frequency(unsigned long *dimm_populated,
219 unsigned char *iic0_dimm_addr,
220 unsigned long num_dimm_banks);
221static void check_rank_number(unsigned long *dimm_populated,
222 unsigned char *iic0_dimm_addr,
223 unsigned long num_dimm_banks);
224static void check_voltage_type(unsigned long *dimm_populated,
225 unsigned char *iic0_dimm_addr,
226 unsigned long num_dimm_banks);
227static void program_memory_queue(unsigned long *dimm_populated,
228 unsigned char *iic0_dimm_addr,
229 unsigned long num_dimm_banks);
230static void program_codt(unsigned long *dimm_populated,
231 unsigned char *iic0_dimm_addr,
232 unsigned long num_dimm_banks);
233static void program_mode(unsigned long *dimm_populated,
234 unsigned char *iic0_dimm_addr,
235 unsigned long num_dimm_banks,
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100236 ddr_cas_id_t *selected_cas,
237 int *write_recovery);
Stefan Roese4037ed32007-02-20 10:43:34 +0100238static void program_tr(unsigned long *dimm_populated,
239 unsigned char *iic0_dimm_addr,
240 unsigned long num_dimm_banks);
241static void program_rtr(unsigned long *dimm_populated,
242 unsigned char *iic0_dimm_addr,
243 unsigned long num_dimm_banks);
244static void program_bxcf(unsigned long *dimm_populated,
245 unsigned char *iic0_dimm_addr,
246 unsigned long num_dimm_banks);
247static void program_copt1(unsigned long *dimm_populated,
248 unsigned char *iic0_dimm_addr,
249 unsigned long num_dimm_banks);
250static void program_initplr(unsigned long *dimm_populated,
251 unsigned char *iic0_dimm_addr,
252 unsigned long num_dimm_banks,
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100253 ddr_cas_id_t selected_cas,
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100254 int write_recovery);
Stefan Roese4037ed32007-02-20 10:43:34 +0100255static unsigned long is_ecc_enabled(void);
Stefan Roesedf294492007-03-08 10:06:09 +0100256#ifdef CONFIG_DDR_ECC
Stefan Roese4037ed32007-02-20 10:43:34 +0100257static void program_ecc(unsigned long *dimm_populated,
258 unsigned char *iic0_dimm_addr,
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100259 unsigned long num_dimm_banks,
260 unsigned long tlb_word2_i_value);
Stefan Roese4037ed32007-02-20 10:43:34 +0100261static void program_ecc_addr(unsigned long start_address,
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100262 unsigned long num_bytes,
263 unsigned long tlb_word2_i_value);
Stefan Roesedf294492007-03-08 10:06:09 +0100264#endif
Adam Grahamf6b6c452008-09-03 12:26:59 -0700265#if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100266static void program_DQS_calibration(unsigned long *dimm_populated,
Adam Grahamf6b6c452008-09-03 12:26:59 -0700267 unsigned char *iic0_dimm_addr,
268 unsigned long num_dimm_banks);
Stefan Roese4037ed32007-02-20 10:43:34 +0100269#ifdef HARD_CODED_DQS /* calibration test with hardvalues */
Wolfgang Denk74357112007-02-27 14:26:04 +0100270static void test(void);
Stefan Roese4037ed32007-02-20 10:43:34 +0100271#else
Wolfgang Denk74357112007-02-27 14:26:04 +0100272static void DQS_calibration_process(void);
Stefan Roese4037ed32007-02-20 10:43:34 +0100273#endif
Adam Grahamf6b6c452008-09-03 12:26:59 -0700274#endif
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100275int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
276void dcbz_area(u32 start_address, u32 num_bytes);
Stefan Roese4037ed32007-02-20 10:43:34 +0100277
Stefan Roese4037ed32007-02-20 10:43:34 +0100278static unsigned char spd_read(uchar chip, uint addr)
279{
280 unsigned char data[2];
281
282 if (i2c_probe(chip) == 0)
283 if (i2c_read(chip, addr, 1, data, 1) == 0)
284 return data[0];
285
286 return 0;
287}
288
289/*-----------------------------------------------------------------------------+
290 * sdram_memsize
291 *-----------------------------------------------------------------------------*/
Stefan Roese5d812b82008-07-09 17:33:57 +0200292static phys_size_t sdram_memsize(void)
Stefan Roese4037ed32007-02-20 10:43:34 +0100293{
Stefan Roese5d812b82008-07-09 17:33:57 +0200294 phys_size_t mem_size;
Stefan Roese4037ed32007-02-20 10:43:34 +0100295 unsigned long mcopt2;
296 unsigned long mcstat;
297 unsigned long mb0cf;
298 unsigned long sdsz;
299 unsigned long i;
300
301 mem_size = 0;
302
303 mfsdram(SDRAM_MCOPT2, mcopt2);
304 mfsdram(SDRAM_MCSTAT, mcstat);
305
306 /* DDR controller must be enabled and not in self-refresh. */
307 /* Otherwise memsize is zero. */
308 if (((mcopt2 & SDRAM_MCOPT2_DCEN_MASK) == SDRAM_MCOPT2_DCEN_ENABLE)
309 && ((mcopt2 & SDRAM_MCOPT2_SREN_MASK) == SDRAM_MCOPT2_SREN_EXIT)
310 && ((mcstat & (SDRAM_MCSTAT_MIC_MASK | SDRAM_MCSTAT_SRMS_MASK))
311 == (SDRAM_MCSTAT_MIC_COMP | SDRAM_MCSTAT_SRMS_NOT_SF))) {
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100312 for (i = 0; i < MAXBXCF; i++) {
Stefan Roese4037ed32007-02-20 10:43:34 +0100313 mfsdram(SDRAM_MB0CF + (i << 2), mb0cf);
314 /* Banks enabled */
315 if ((mb0cf & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
316 sdsz = mfdcr_any(SDRAM_R0BAS + i) & SDRAM_RXBAS_SDSZ_MASK;
317
318 switch(sdsz) {
319 case SDRAM_RXBAS_SDSZ_8:
320 mem_size+=8;
321 break;
322 case SDRAM_RXBAS_SDSZ_16:
323 mem_size+=16;
324 break;
325 case SDRAM_RXBAS_SDSZ_32:
326 mem_size+=32;
327 break;
328 case SDRAM_RXBAS_SDSZ_64:
329 mem_size+=64;
330 break;
331 case SDRAM_RXBAS_SDSZ_128:
332 mem_size+=128;
333 break;
334 case SDRAM_RXBAS_SDSZ_256:
335 mem_size+=256;
336 break;
337 case SDRAM_RXBAS_SDSZ_512:
338 mem_size+=512;
339 break;
340 case SDRAM_RXBAS_SDSZ_1024:
341 mem_size+=1024;
342 break;
343 case SDRAM_RXBAS_SDSZ_2048:
344 mem_size+=2048;
345 break;
346 case SDRAM_RXBAS_SDSZ_4096:
347 mem_size+=4096;
348 break;
349 default:
Stefan Roeseb0021442008-07-10 09:58:06 +0200350 printf("WARNING: Unsupported bank size (SDSZ=0x%lx)!\n"
Stefan Roese5d812b82008-07-09 17:33:57 +0200351 , sdsz);
Stefan Roese4037ed32007-02-20 10:43:34 +0100352 mem_size=0;
353 break;
354 }
355 }
356 }
357 }
358
Stefan Roese5d812b82008-07-09 17:33:57 +0200359 return mem_size << 20;
Stefan Roese4037ed32007-02-20 10:43:34 +0100360}
361
362/*-----------------------------------------------------------------------------+
363 * initdram. Initializes the 440SP Memory Queue and DDR SDRAM controller.
364 * Note: This routine runs from flash with a stack set up in the chip's
365 * sram space. It is important that the routine does not require .sbss, .bss or
366 * .data sections. It also cannot call routines that require these sections.
367 *-----------------------------------------------------------------------------*/
368/*-----------------------------------------------------------------------------
Wolfgang Denk74357112007-02-27 14:26:04 +0100369 * Function: initdram
Stefan Roese4037ed32007-02-20 10:43:34 +0100370 * Description: Configures SDRAM memory banks for DDR operation.
Wolfgang Denk74357112007-02-27 14:26:04 +0100371 * Auto Memory Configuration option reads the DDR SDRAM EEPROMs
372 * via the IIC bus and then configures the DDR SDRAM memory
373 * banks appropriately. If Auto Memory Configuration is
374 * not used, it is assumed that no DIMM is plugged
Stefan Roese4037ed32007-02-20 10:43:34 +0100375 *-----------------------------------------------------------------------------*/
Becky Bruce9973e3c2008-06-09 16:03:40 -0500376phys_size_t initdram(int board_type)
Stefan Roese4037ed32007-02-20 10:43:34 +0100377{
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100378 unsigned char iic0_dimm_addr[] = SPD_EEPROM_ADDRESS;
Stefan Roese4037ed32007-02-20 10:43:34 +0100379 unsigned char spd0[MAX_SPD_BYTES];
380 unsigned char spd1[MAX_SPD_BYTES];
381 unsigned char *dimm_spd[MAXDIMMS];
382 unsigned long dimm_populated[MAXDIMMS];
Stefan Roese9adfc9f2008-01-15 10:11:02 +0100383 unsigned long num_dimm_banks; /* on board dimm banks */
Stefan Roese4037ed32007-02-20 10:43:34 +0100384 unsigned long val;
Stefan Roese9adfc9f2008-01-15 10:11:02 +0100385 ddr_cas_id_t selected_cas = DDR_CAS_5; /* preset to silence compiler */
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100386 int write_recovery;
Stefan Roese5d812b82008-07-09 17:33:57 +0200387 phys_size_t dram_size = 0;
Stefan Roese4037ed32007-02-20 10:43:34 +0100388
389 num_dimm_banks = sizeof(iic0_dimm_addr);
390
391 /*------------------------------------------------------------------
392 * Set up an array of SPD matrixes.
393 *-----------------------------------------------------------------*/
394 dimm_spd[0] = spd0;
395 dimm_spd[1] = spd1;
396
397 /*------------------------------------------------------------------
Stefan Roese4037ed32007-02-20 10:43:34 +0100398 * Reset the DDR-SDRAM controller.
399 *-----------------------------------------------------------------*/
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100400 mtsdr(SDR0_SRST, (0x80000000 >> 10));
Stefan Roese4037ed32007-02-20 10:43:34 +0100401 mtsdr(SDR0_SRST, 0x00000000);
402
403 /*
404 * Make sure I2C controller is initialized
405 * before continuing.
406 */
407
408 /* switch to correct I2C bus */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409 I2C_SET_BUS(CONFIG_SYS_SPD_BUS_NUM);
410 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Stefan Roese4037ed32007-02-20 10:43:34 +0100411
412 /*------------------------------------------------------------------
413 * Clear out the serial presence detect buffers.
414 * Perform IIC reads from the dimm. Fill in the spds.
415 * Check to see if the dimm slots are populated
416 *-----------------------------------------------------------------*/
417 get_spd_info(dimm_populated, iic0_dimm_addr, num_dimm_banks);
418
419 /*------------------------------------------------------------------
420 * Check the memory type for the dimms plugged.
421 *-----------------------------------------------------------------*/
422 check_mem_type(dimm_populated, iic0_dimm_addr, num_dimm_banks);
423
424 /*------------------------------------------------------------------
425 * Check the frequency supported for the dimms plugged.
426 *-----------------------------------------------------------------*/
427 check_frequency(dimm_populated, iic0_dimm_addr, num_dimm_banks);
428
429 /*------------------------------------------------------------------
430 * Check the total rank number.
431 *-----------------------------------------------------------------*/
432 check_rank_number(dimm_populated, iic0_dimm_addr, num_dimm_banks);
433
434 /*------------------------------------------------------------------
435 * Check the voltage type for the dimms plugged.
436 *-----------------------------------------------------------------*/
437 check_voltage_type(dimm_populated, iic0_dimm_addr, num_dimm_banks);
438
439 /*------------------------------------------------------------------
440 * Program SDRAM controller options 2 register
441 * Except Enabling of the memory controller.
442 *-----------------------------------------------------------------*/
443 mfsdram(SDRAM_MCOPT2, val);
444 mtsdram(SDRAM_MCOPT2,
445 (val &
446 ~(SDRAM_MCOPT2_SREN_MASK | SDRAM_MCOPT2_PMEN_MASK |
447 SDRAM_MCOPT2_IPTR_MASK | SDRAM_MCOPT2_XSRP_MASK |
448 SDRAM_MCOPT2_ISIE_MASK))
449 | (SDRAM_MCOPT2_SREN_ENTER | SDRAM_MCOPT2_PMEN_DISABLE |
450 SDRAM_MCOPT2_IPTR_IDLE | SDRAM_MCOPT2_XSRP_ALLOW |
451 SDRAM_MCOPT2_ISIE_ENABLE));
452
453 /*------------------------------------------------------------------
454 * Program SDRAM controller options 1 register
455 * Note: Does not enable the memory controller.
456 *-----------------------------------------------------------------*/
457 program_copt1(dimm_populated, iic0_dimm_addr, num_dimm_banks);
458
459 /*------------------------------------------------------------------
460 * Set the SDRAM Controller On Die Termination Register
461 *-----------------------------------------------------------------*/
462 program_codt(dimm_populated, iic0_dimm_addr, num_dimm_banks);
463
464 /*------------------------------------------------------------------
465 * Program SDRAM refresh register.
466 *-----------------------------------------------------------------*/
467 program_rtr(dimm_populated, iic0_dimm_addr, num_dimm_banks);
468
469 /*------------------------------------------------------------------
470 * Program SDRAM mode register.
471 *-----------------------------------------------------------------*/
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100472 program_mode(dimm_populated, iic0_dimm_addr, num_dimm_banks,
473 &selected_cas, &write_recovery);
Stefan Roese4037ed32007-02-20 10:43:34 +0100474
475 /*------------------------------------------------------------------
476 * Set the SDRAM Write Data/DM/DQS Clock Timing Reg
477 *-----------------------------------------------------------------*/
478 mfsdram(SDRAM_WRDTR, val);
479 mtsdram(SDRAM_WRDTR, (val & ~(SDRAM_WRDTR_LLWP_MASK | SDRAM_WRDTR_WTR_MASK)) |
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200480 ddr_wrdtr(SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_90_DEG_ADV));
Stefan Roese4037ed32007-02-20 10:43:34 +0100481
482 /*------------------------------------------------------------------
483 * Set the SDRAM Clock Timing Register
484 *-----------------------------------------------------------------*/
485 mfsdram(SDRAM_CLKTR, val);
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200486 mtsdram(SDRAM_CLKTR, (val & ~SDRAM_CLKTR_CLKP_MASK) |
487 ddr_clktr(SDRAM_CLKTR_CLKP_0_DEG));
Stefan Roese4037ed32007-02-20 10:43:34 +0100488
489 /*------------------------------------------------------------------
490 * Program the BxCF registers.
491 *-----------------------------------------------------------------*/
492 program_bxcf(dimm_populated, iic0_dimm_addr, num_dimm_banks);
493
494 /*------------------------------------------------------------------
495 * Program SDRAM timing registers.
496 *-----------------------------------------------------------------*/
497 program_tr(dimm_populated, iic0_dimm_addr, num_dimm_banks);
498
499 /*------------------------------------------------------------------
500 * Set the Extended Mode register
501 *-----------------------------------------------------------------*/
502 mfsdram(SDRAM_MEMODE, val);
503 mtsdram(SDRAM_MEMODE,
504 (val & ~(SDRAM_MEMODE_DIC_MASK | SDRAM_MEMODE_DLL_MASK |
505 SDRAM_MEMODE_RTT_MASK | SDRAM_MEMODE_DQS_MASK)) |
506 (SDRAM_MEMODE_DIC_NORMAL | SDRAM_MEMODE_DLL_ENABLE
Stefan Roesedf294492007-03-08 10:06:09 +0100507 | SDRAM_MEMODE_RTT_150OHM | SDRAM_MEMODE_DQS_ENABLE));
Stefan Roese4037ed32007-02-20 10:43:34 +0100508
509 /*------------------------------------------------------------------
510 * Program Initialization preload registers.
511 *-----------------------------------------------------------------*/
512 program_initplr(dimm_populated, iic0_dimm_addr, num_dimm_banks,
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100513 selected_cas, write_recovery);
Stefan Roese4037ed32007-02-20 10:43:34 +0100514
515 /*------------------------------------------------------------------
516 * Delay to ensure 200usec have elapsed since reset.
517 *-----------------------------------------------------------------*/
518 udelay(400);
519
520 /*------------------------------------------------------------------
521 * Set the memory queue core base addr.
522 *-----------------------------------------------------------------*/
523 program_memory_queue(dimm_populated, iic0_dimm_addr, num_dimm_banks);
524
525 /*------------------------------------------------------------------
526 * Program SDRAM controller options 2 register
527 * Enable the memory controller.
528 *-----------------------------------------------------------------*/
529 mfsdram(SDRAM_MCOPT2, val);
530 mtsdram(SDRAM_MCOPT2,
531 (val & ~(SDRAM_MCOPT2_SREN_MASK | SDRAM_MCOPT2_DCEN_MASK |
532 SDRAM_MCOPT2_IPTR_MASK | SDRAM_MCOPT2_ISIE_MASK)) |
Prodyut Hazarika04737d52008-08-27 16:39:00 -0700533 SDRAM_MCOPT2_IPTR_EXECUTE);
Stefan Roese4037ed32007-02-20 10:43:34 +0100534
535 /*------------------------------------------------------------------
Prodyut Hazarika04737d52008-08-27 16:39:00 -0700536 * Wait for IPTR_EXECUTE init sequence to complete.
Stefan Roese4037ed32007-02-20 10:43:34 +0100537 *-----------------------------------------------------------------*/
538 do {
539 mfsdram(SDRAM_MCSTAT, val);
540 } while ((val & SDRAM_MCSTAT_MIC_MASK) == SDRAM_MCSTAT_MIC_NOTCOMP);
541
Prodyut Hazarika04737d52008-08-27 16:39:00 -0700542 /* enable the controller only after init sequence completes */
543 mfsdram(SDRAM_MCOPT2, val);
544 mtsdram(SDRAM_MCOPT2, (val | SDRAM_MCOPT2_DCEN_ENABLE));
545
546 /* Make sure delay-line calibration is done before proceeding */
547 do {
548 mfsdram(SDRAM_DLCR, val);
549 } while (!(val & SDRAM_DLCR_DLCS_COMPLETE));
550
Stefan Roese4037ed32007-02-20 10:43:34 +0100551 /* get installed memory size */
552 dram_size = sdram_memsize();
553
Stefan Roese5d812b82008-07-09 17:33:57 +0200554 /*
555 * Limit size to 2GB
556 */
557 if (dram_size > CONFIG_MAX_MEM_MAPPED)
558 dram_size = CONFIG_MAX_MEM_MAPPED;
559
Stefan Roese4037ed32007-02-20 10:43:34 +0100560 /* and program tlb entries for this size (dynamic) */
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200561
562 /*
563 * Program TLB entries with caches enabled, for best performace
564 * while auto-calibrating and ECC generation
565 */
566 program_tlb(0, 0, dram_size, 0);
Stefan Roese4037ed32007-02-20 10:43:34 +0100567
568 /*------------------------------------------------------------------
569 * DQS calibration.
570 *-----------------------------------------------------------------*/
Adam Grahamf6b6c452008-09-03 12:26:59 -0700571#if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
572 DQS_autocalibration();
573#else
Stefan Roese4037ed32007-02-20 10:43:34 +0100574 program_DQS_calibration(dimm_populated, iic0_dimm_addr, num_dimm_banks);
Adam Grahamf6b6c452008-09-03 12:26:59 -0700575#endif
Stefan Roese4037ed32007-02-20 10:43:34 +0100576
Stefan Roesedf294492007-03-08 10:06:09 +0100577#ifdef CONFIG_DDR_ECC
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100578 /*------------------------------------------------------------------
579 * If ecc is enabled, initialize the parity bits.
580 *-----------------------------------------------------------------*/
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200581 program_ecc(dimm_populated, iic0_dimm_addr, num_dimm_banks, 0);
Stefan Roesedf294492007-03-08 10:06:09 +0100582#endif
Stefan Roeseba58e4c2007-03-01 21:11:36 +0100583
Stefan Roese6ed14ad2007-07-16 09:57:00 +0200584 /*
585 * Now after initialization (auto-calibration and ECC generation)
586 * remove the TLB entries with caches enabled and program again with
587 * desired cache functionality
588 */
589 remove_tlb(0, dram_size);
590 program_tlb(0, 0, dram_size, MY_TLB_WORD2_I_ENABLE);
591
Grant Erickson2e205082008-07-09 16:46:35 -0700592 ppc4xx_ibm_ddr2_register_dump();
Stefan Roese4037ed32007-02-20 10:43:34 +0100593
Stefan Roese8ac41e32008-03-11 15:05:26 +0100594 /*
595 * Clear potential errors resulting from auto-calibration.
596 * If not done, then we could get an interrupt later on when
597 * exceptions are enabled.
598 */
599 set_mcsr(get_mcsr());
600
Stefan Roese5d812b82008-07-09 17:33:57 +0200601 return sdram_memsize();
Stefan Roese4037ed32007-02-20 10:43:34 +0100602}
603
604static void get_spd_info(unsigned long *dimm_populated,
605 unsigned char *iic0_dimm_addr,
606 unsigned long num_dimm_banks)
607{
608 unsigned long dimm_num;
609 unsigned long dimm_found;
610 unsigned char num_of_bytes;
611 unsigned char total_size;
612
613 dimm_found = FALSE;
614 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
615 num_of_bytes = 0;
616 total_size = 0;
617
618 num_of_bytes = spd_read(iic0_dimm_addr[dimm_num], 0);
619 debug("\nspd_read(0x%x) returned %d\n",
620 iic0_dimm_addr[dimm_num], num_of_bytes);
621 total_size = spd_read(iic0_dimm_addr[dimm_num], 1);
622 debug("spd_read(0x%x) returned %d\n",
623 iic0_dimm_addr[dimm_num], total_size);
624
625 if ((num_of_bytes != 0) && (total_size != 0)) {
626 dimm_populated[dimm_num] = TRUE;
627 dimm_found = TRUE;
628 debug("DIMM slot %lu: populated\n", dimm_num);
629 } else {
630 dimm_populated[dimm_num] = FALSE;
631 debug("DIMM slot %lu: Not populated\n", dimm_num);
632 }
633 }
634
635 if (dimm_found == FALSE) {
636 printf("ERROR - No memory installed. Install a DDR-SDRAM DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200637 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100638 }
639}
640
Stefan Roese4037ed32007-02-20 10:43:34 +0100641void board_add_ram_info(int use_default)
642{
Stefan Roese087dfdb2007-10-21 08:12:41 +0200643 PPC4xx_SYS_INFO board_cfg;
Stefan Roese94f54702007-03-31 08:46:08 +0200644 u32 val;
645
Wolfgang Denk74357112007-02-27 14:26:04 +0100646 if (is_ecc_enabled())
Stefan Roesecabee752007-03-31 13:15:06 +0200647 puts(" (ECC");
Wolfgang Denk74357112007-02-27 14:26:04 +0100648 else
Stefan Roesecabee752007-03-31 13:15:06 +0200649 puts(" (ECC not");
650
651 get_sys_info(&board_cfg);
652
653 mfsdr(SDR0_DDR0, val);
654 val = MULDIV64((board_cfg.freqPLB), SDR0_DDR0_DDRM_DECODE(val), 1);
655 printf(" enabled, %d MHz", (val * 2) / 1000000);
Stefan Roese94f54702007-03-31 08:46:08 +0200656
657 mfsdram(SDRAM_MMODE, val);
658 val = (val & SDRAM_MMODE_DCL_MASK) >> 4;
Stefan Roesecabee752007-03-31 13:15:06 +0200659 printf(", CL%d)", val);
Stefan Roese4037ed32007-02-20 10:43:34 +0100660}
Stefan Roese4037ed32007-02-20 10:43:34 +0100661
662/*------------------------------------------------------------------
663 * For the memory DIMMs installed, this routine verifies that they
664 * really are DDR specific DIMMs.
665 *-----------------------------------------------------------------*/
666static void check_mem_type(unsigned long *dimm_populated,
667 unsigned char *iic0_dimm_addr,
668 unsigned long num_dimm_banks)
669{
670 unsigned long dimm_num;
671 unsigned long dimm_type;
672
673 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
674 if (dimm_populated[dimm_num] == TRUE) {
675 dimm_type = spd_read(iic0_dimm_addr[dimm_num], 2);
676 switch (dimm_type) {
677 case 1:
678 printf("ERROR: Standard Fast Page Mode DRAM DIMM detected in "
679 "slot %d.\n", (unsigned int)dimm_num);
680 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
681 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200682 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100683 break;
684 case 2:
685 printf("ERROR: EDO DIMM detected in slot %d.\n",
686 (unsigned int)dimm_num);
687 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
688 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200689 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100690 break;
691 case 3:
692 printf("ERROR: Pipelined Nibble DIMM detected in slot %d.\n",
693 (unsigned int)dimm_num);
694 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
695 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200696 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100697 break;
698 case 4:
699 printf("ERROR: SDRAM DIMM detected in slot %d.\n",
700 (unsigned int)dimm_num);
701 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
702 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200703 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100704 break;
705 case 5:
706 printf("ERROR: Multiplexed ROM DIMM detected in slot %d.\n",
707 (unsigned int)dimm_num);
708 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
709 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200710 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100711 break;
712 case 6:
713 printf("ERROR: SGRAM DIMM detected in slot %d.\n",
714 (unsigned int)dimm_num);
715 printf("Only DDR and DDR2 SDRAM DIMMs are supported.\n");
716 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200717 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100718 break;
719 case 7:
720 debug("DIMM slot %d: DDR1 SDRAM detected\n", dimm_num);
721 dimm_populated[dimm_num] = SDRAM_DDR1;
722 break;
723 case 8:
724 debug("DIMM slot %d: DDR2 SDRAM detected\n", dimm_num);
725 dimm_populated[dimm_num] = SDRAM_DDR2;
726 break;
727 default:
728 printf("ERROR: Unknown DIMM detected in slot %d.\n",
729 (unsigned int)dimm_num);
730 printf("Only DDR1 and DDR2 SDRAM DIMMs are supported.\n");
731 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200732 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100733 break;
734 }
735 }
736 }
737 for (dimm_num = 1; dimm_num < num_dimm_banks; dimm_num++) {
738 if ((dimm_populated[dimm_num-1] != SDRAM_NONE)
739 && (dimm_populated[dimm_num] != SDRAM_NONE)
740 && (dimm_populated[dimm_num-1] != dimm_populated[dimm_num])) {
741 printf("ERROR: DIMM's DDR1 and DDR2 type can not be mixed.\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200742 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100743 }
744 }
745}
746
747/*------------------------------------------------------------------
748 * For the memory DIMMs installed, this routine verifies that
749 * frequency previously calculated is supported.
750 *-----------------------------------------------------------------*/
751static void check_frequency(unsigned long *dimm_populated,
752 unsigned char *iic0_dimm_addr,
753 unsigned long num_dimm_banks)
754{
755 unsigned long dimm_num;
756 unsigned long tcyc_reg;
757 unsigned long cycle_time;
758 unsigned long calc_cycle_time;
759 unsigned long sdram_freq;
760 unsigned long sdr_ddrpll;
Stefan Roese087dfdb2007-10-21 08:12:41 +0200761 PPC4xx_SYS_INFO board_cfg;
Stefan Roese4037ed32007-02-20 10:43:34 +0100762
763 /*------------------------------------------------------------------
764 * Get the board configuration info.
765 *-----------------------------------------------------------------*/
766 get_sys_info(&board_cfg);
767
Stefan Roesedf294492007-03-08 10:06:09 +0100768 mfsdr(SDR0_DDR0, sdr_ddrpll);
Stefan Roese4037ed32007-02-20 10:43:34 +0100769 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
770
771 /*
772 * calc_cycle_time is calculated from DDR frequency set by board/chip
773 * and is expressed in multiple of 10 picoseconds
774 * to match the way DIMM cycle time is calculated below.
775 */
776 calc_cycle_time = MULDIV64(ONE_BILLION, 100, sdram_freq);
777
778 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
779 if (dimm_populated[dimm_num] != SDRAM_NONE) {
780 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 9);
781 /*
782 * Byte 9, Cycle time for CAS Latency=X, is split into two nibbles:
783 * the higher order nibble (bits 4-7) designates the cycle time
784 * to a granularity of 1ns;
785 * the value presented by the lower order nibble (bits 0-3)
786 * has a granularity of .1ns and is added to the value designated
787 * by the higher nibble. In addition, four lines of the lower order
788 * nibble are assigned to support +.25,+.33, +.66 and +.75.
789 */
790 /* Convert from hex to decimal */
791 if ((tcyc_reg & 0x0F) == 0x0D)
792 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 75;
793 else if ((tcyc_reg & 0x0F) == 0x0C)
794 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 66;
795 else if ((tcyc_reg & 0x0F) == 0x0B)
796 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 33;
797 else if ((tcyc_reg & 0x0F) == 0x0A)
798 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) + 25;
799 else
800 cycle_time = (((tcyc_reg & 0xF0) >> 4) * 100) +
801 ((tcyc_reg & 0x0F)*10);
Stefan Roese94f54702007-03-31 08:46:08 +0200802 debug("cycle_time=%d [10 picoseconds]\n", cycle_time);
Stefan Roese4037ed32007-02-20 10:43:34 +0100803
804 if (cycle_time > (calc_cycle_time + 10)) {
805 /*
806 * the provided sdram cycle_time is too small
807 * for the available DIMM cycle_time.
808 * The additionnal 100ps is here to accept a small incertainty.
809 */
810 printf("ERROR: DRAM DIMM detected with cycle_time %d ps in "
811 "slot %d \n while calculated cycle time is %d ps.\n",
812 (unsigned int)(cycle_time*10),
813 (unsigned int)dimm_num,
814 (unsigned int)(calc_cycle_time*10));
815 printf("Replace the DIMM, or change DDR frequency via "
816 "strapping bits.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200817 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100818 }
819 }
820 }
821}
822
823/*------------------------------------------------------------------
824 * For the memory DIMMs installed, this routine verifies two
825 * ranks/banks maximum are availables.
826 *-----------------------------------------------------------------*/
827static void check_rank_number(unsigned long *dimm_populated,
828 unsigned char *iic0_dimm_addr,
829 unsigned long num_dimm_banks)
830{
831 unsigned long dimm_num;
832 unsigned long dimm_rank;
833 unsigned long total_rank = 0;
834
835 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
836 if (dimm_populated[dimm_num] != SDRAM_NONE) {
837 dimm_rank = spd_read(iic0_dimm_addr[dimm_num], 5);
838 if (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
839 dimm_rank = (dimm_rank & 0x0F) +1;
840 else
841 dimm_rank = dimm_rank & 0x0F;
842
843
844 if (dimm_rank > MAXRANKS) {
Stefan Roeseb0021442008-07-10 09:58:06 +0200845 printf("ERROR: DRAM DIMM detected with %lu ranks in "
846 "slot %lu is not supported.\n", dimm_rank, dimm_num);
Stefan Roese4037ed32007-02-20 10:43:34 +0100847 printf("Only %d ranks are supported for all DIMM.\n", MAXRANKS);
848 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200849 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100850 } else
851 total_rank += dimm_rank;
852 }
853 if (total_rank > MAXRANKS) {
854 printf("ERROR: DRAM DIMM detected with a total of %d ranks "
855 "for all slots.\n", (unsigned int)total_rank);
856 printf("Only %d ranks are supported for all DIMM.\n", MAXRANKS);
857 printf("Remove one of the DIMM modules.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +0200858 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100859 }
860 }
861}
862
863/*------------------------------------------------------------------
864 * only support 2.5V modules.
865 * This routine verifies this.
866 *-----------------------------------------------------------------*/
867static void check_voltage_type(unsigned long *dimm_populated,
868 unsigned char *iic0_dimm_addr,
869 unsigned long num_dimm_banks)
870{
871 unsigned long dimm_num;
872 unsigned long voltage_type;
873
874 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
875 if (dimm_populated[dimm_num] != SDRAM_NONE) {
876 voltage_type = spd_read(iic0_dimm_addr[dimm_num], 8);
877 switch (voltage_type) {
878 case 0x00:
879 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
880 printf("This DIMM is 5.0 Volt/TTL.\n");
881 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
882 (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +0200883 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100884 break;
885 case 0x01:
886 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
887 printf("This DIMM is LVTTL.\n");
888 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
889 (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +0200890 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100891 break;
892 case 0x02:
893 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
894 printf("This DIMM is 1.5 Volt.\n");
895 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
896 (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +0200897 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100898 break;
899 case 0x03:
900 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
901 printf("This DIMM is 3.3 Volt/TTL.\n");
902 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
903 (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +0200904 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100905 break;
906 case 0x04:
907 /* 2.5 Voltage only for DDR1 */
908 break;
909 case 0x05:
910 /* 1.8 Voltage only for DDR2 */
911 break;
912 default:
913 printf("ERROR: Only DIMMs DDR 2.5V or DDR2 1.8V are supported.\n");
914 printf("Replace the DIMM module in slot %d with a supported DIMM.\n\n",
915 (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +0200916 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +0100917 break;
918 }
919 }
920 }
921}
922
923/*-----------------------------------------------------------------------------+
924 * program_copt1.
925 *-----------------------------------------------------------------------------*/
926static void program_copt1(unsigned long *dimm_populated,
927 unsigned char *iic0_dimm_addr,
928 unsigned long num_dimm_banks)
929{
930 unsigned long dimm_num;
931 unsigned long mcopt1;
932 unsigned long ecc_enabled;
933 unsigned long ecc = 0;
934 unsigned long data_width = 0;
935 unsigned long dimm_32bit;
936 unsigned long dimm_64bit;
937 unsigned long registered = 0;
938 unsigned long attribute = 0;
939 unsigned long buf0, buf1; /* TODO: code to be changed for IOP1.6 to support 4 DIMMs */
940 unsigned long bankcount;
941 unsigned long ddrtype;
942 unsigned long val;
943
Stefan Roesedf294492007-03-08 10:06:09 +0100944#ifdef CONFIG_DDR_ECC
Stefan Roese4037ed32007-02-20 10:43:34 +0100945 ecc_enabled = TRUE;
Stefan Roesedf294492007-03-08 10:06:09 +0100946#else
947 ecc_enabled = FALSE;
948#endif
Stefan Roese4037ed32007-02-20 10:43:34 +0100949 dimm_32bit = FALSE;
950 dimm_64bit = FALSE;
951 buf0 = FALSE;
952 buf1 = FALSE;
953
954 /*------------------------------------------------------------------
955 * Set memory controller options reg 1, SDRAM_MCOPT1.
956 *-----------------------------------------------------------------*/
957 mfsdram(SDRAM_MCOPT1, val);
958 mcopt1 = val & ~(SDRAM_MCOPT1_MCHK_MASK | SDRAM_MCOPT1_RDEN_MASK |
959 SDRAM_MCOPT1_PMU_MASK | SDRAM_MCOPT1_DMWD_MASK |
960 SDRAM_MCOPT1_UIOS_MASK | SDRAM_MCOPT1_BCNT_MASK |
961 SDRAM_MCOPT1_DDR_TYPE_MASK | SDRAM_MCOPT1_RWOO_MASK |
962 SDRAM_MCOPT1_WOOO_MASK | SDRAM_MCOPT1_DCOO_MASK |
963 SDRAM_MCOPT1_DREF_MASK);
964
965 mcopt1 |= SDRAM_MCOPT1_QDEP;
966 mcopt1 |= SDRAM_MCOPT1_PMU_OPEN;
967 mcopt1 |= SDRAM_MCOPT1_RWOO_DISABLED;
968 mcopt1 |= SDRAM_MCOPT1_WOOO_DISABLED;
969 mcopt1 |= SDRAM_MCOPT1_DCOO_DISABLED;
970 mcopt1 |= SDRAM_MCOPT1_DREF_NORMAL;
971
972 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
973 if (dimm_populated[dimm_num] != SDRAM_NONE) {
974 /* test ecc support */
975 ecc = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 11);
976 if (ecc != 0x02) /* ecc not supported */
977 ecc_enabled = FALSE;
978
979 /* test bank count */
980 bankcount = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 17);
981 if (bankcount == 0x04) /* bank count = 4 */
982 mcopt1 |= SDRAM_MCOPT1_4_BANKS;
983 else /* bank count = 8 */
984 mcopt1 |= SDRAM_MCOPT1_8_BANKS;
985
986 /* test DDR type */
987 ddrtype = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 2);
988 /* test for buffered/unbuffered, registered, differential clocks */
989 registered = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 20);
990 attribute = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 21);
991
992 /* TODO: code to be changed for IOP1.6 to support 4 DIMMs */
993 if (dimm_num == 0) {
994 if (dimm_populated[dimm_num] == SDRAM_DDR1) /* DDR1 type */
995 mcopt1 |= SDRAM_MCOPT1_DDR1_TYPE;
996 if (dimm_populated[dimm_num] == SDRAM_DDR2) /* DDR2 type */
997 mcopt1 |= SDRAM_MCOPT1_DDR2_TYPE;
998 if (registered == 1) { /* DDR2 always buffered */
999 /* TODO: what about above comments ? */
1000 mcopt1 |= SDRAM_MCOPT1_RDEN;
1001 buf0 = TRUE;
1002 } else {
1003 /* TODO: the mask 0x02 doesn't match Samsung def for byte 21. */
1004 if ((attribute & 0x02) == 0x00) {
1005 /* buffered not supported */
1006 buf0 = FALSE;
1007 } else {
1008 mcopt1 |= SDRAM_MCOPT1_RDEN;
1009 buf0 = TRUE;
1010 }
1011 }
1012 }
1013 else if (dimm_num == 1) {
1014 if (dimm_populated[dimm_num] == SDRAM_DDR1) /* DDR1 type */
1015 mcopt1 |= SDRAM_MCOPT1_DDR1_TYPE;
1016 if (dimm_populated[dimm_num] == SDRAM_DDR2) /* DDR2 type */
1017 mcopt1 |= SDRAM_MCOPT1_DDR2_TYPE;
1018 if (registered == 1) {
1019 /* DDR2 always buffered */
1020 mcopt1 |= SDRAM_MCOPT1_RDEN;
1021 buf1 = TRUE;
1022 } else {
1023 if ((attribute & 0x02) == 0x00) {
1024 /* buffered not supported */
1025 buf1 = FALSE;
1026 } else {
1027 mcopt1 |= SDRAM_MCOPT1_RDEN;
1028 buf1 = TRUE;
1029 }
1030 }
1031 }
1032
1033 /* Note that for DDR2 the byte 7 is reserved, but OK to keep code as is. */
1034 data_width = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 6) +
1035 (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 7)) << 8);
1036
1037 switch (data_width) {
1038 case 72:
1039 case 64:
1040 dimm_64bit = TRUE;
1041 break;
1042 case 40:
1043 case 32:
1044 dimm_32bit = TRUE;
1045 break;
1046 default:
Stefan Roeseb0021442008-07-10 09:58:06 +02001047 printf("WARNING: Detected a DIMM with a data width of %lu bits.\n",
Stefan Roese4037ed32007-02-20 10:43:34 +01001048 data_width);
1049 printf("Only DIMMs with 32 or 64 bit DDR-SDRAM widths are supported.\n");
1050 break;
1051 }
1052 }
1053 }
1054
1055 /* verify matching properties */
1056 if ((dimm_populated[0] != SDRAM_NONE) && (dimm_populated[1] != SDRAM_NONE)) {
1057 if (buf0 != buf1) {
1058 printf("ERROR: DIMM's buffered/unbuffered, registered, clocking don't match.\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001059 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001060 }
1061 }
1062
1063 if ((dimm_64bit == TRUE) && (dimm_32bit == TRUE)) {
1064 printf("ERROR: Cannot mix 32 bit and 64 bit DDR-SDRAM DIMMs together.\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001065 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001066 }
1067 else if ((dimm_64bit == TRUE) && (dimm_32bit == FALSE)) {
1068 mcopt1 |= SDRAM_MCOPT1_DMWD_64;
1069 } else if ((dimm_64bit == FALSE) && (dimm_32bit == TRUE)) {
1070 mcopt1 |= SDRAM_MCOPT1_DMWD_32;
1071 } else {
1072 printf("ERROR: Please install only 32 or 64 bit DDR-SDRAM DIMMs.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001073 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001074 }
1075
1076 if (ecc_enabled == TRUE)
1077 mcopt1 |= SDRAM_MCOPT1_MCHK_GEN;
1078 else
1079 mcopt1 |= SDRAM_MCOPT1_MCHK_NON;
1080
1081 mtsdram(SDRAM_MCOPT1, mcopt1);
1082}
1083
1084/*-----------------------------------------------------------------------------+
1085 * program_codt.
1086 *-----------------------------------------------------------------------------*/
1087static void program_codt(unsigned long *dimm_populated,
1088 unsigned char *iic0_dimm_addr,
1089 unsigned long num_dimm_banks)
1090{
1091 unsigned long codt;
1092 unsigned long modt0 = 0;
1093 unsigned long modt1 = 0;
1094 unsigned long modt2 = 0;
1095 unsigned long modt3 = 0;
1096 unsigned char dimm_num;
1097 unsigned char dimm_rank;
1098 unsigned char total_rank = 0;
1099 unsigned char total_dimm = 0;
1100 unsigned char dimm_type = 0;
1101 unsigned char firstSlot = 0;
1102
1103 /*------------------------------------------------------------------
1104 * Set the SDRAM Controller On Die Termination Register
1105 *-----------------------------------------------------------------*/
1106 mfsdram(SDRAM_CODT, codt);
1107 codt |= (SDRAM_CODT_IO_NMODE
1108 & (~SDRAM_CODT_DQS_SINGLE_END
1109 & ~SDRAM_CODT_CKSE_SINGLE_END
1110 & ~SDRAM_CODT_FEEBBACK_RCV_SINGLE_END
1111 & ~SDRAM_CODT_FEEBBACK_DRV_SINGLE_END));
1112
1113 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1114 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1115 dimm_rank = (unsigned long)spd_read(iic0_dimm_addr[dimm_num], 5);
1116 if (((unsigned long)spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08) {
1117 dimm_rank = (dimm_rank & 0x0F) + 1;
1118 dimm_type = SDRAM_DDR2;
1119 } else {
1120 dimm_rank = dimm_rank & 0x0F;
1121 dimm_type = SDRAM_DDR1;
1122 }
1123
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001124 total_rank += dimm_rank;
1125 total_dimm++;
Stefan Roese4037ed32007-02-20 10:43:34 +01001126 if ((dimm_num == 0) && (total_dimm == 1))
1127 firstSlot = TRUE;
1128 else
1129 firstSlot = FALSE;
1130 }
1131 }
1132 if (dimm_type == SDRAM_DDR2) {
1133 codt |= SDRAM_CODT_DQS_1_8_V_DDR2;
1134 if ((total_dimm == 1) && (firstSlot == TRUE)) {
Stefan Roesef2302d42008-08-06 14:05:38 +02001135 if (total_rank == 1) { /* PUUU */
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001136 codt |= CALC_ODT_R(0);
1137 modt0 = CALC_ODT_W(0);
Stefan Roese4037ed32007-02-20 10:43:34 +01001138 modt1 = 0x00000000;
1139 modt2 = 0x00000000;
1140 modt3 = 0x00000000;
1141 }
Stefan Roesef2302d42008-08-06 14:05:38 +02001142 if (total_rank == 2) { /* PPUU */
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001143 codt |= CALC_ODT_R(0) | CALC_ODT_R(1);
Stefan Roesef2302d42008-08-06 14:05:38 +02001144 modt0 = CALC_ODT_W(0) | CALC_ODT_W(1);
1145 modt1 = 0x00000000;
Stefan Roese4037ed32007-02-20 10:43:34 +01001146 modt2 = 0x00000000;
1147 modt3 = 0x00000000;
1148 }
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001149 } else if ((total_dimm == 1) && (firstSlot != TRUE)) {
Stefan Roesef2302d42008-08-06 14:05:38 +02001150 if (total_rank == 1) { /* UUPU */
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001151 codt |= CALC_ODT_R(2);
1152 modt0 = 0x00000000;
Stefan Roese4037ed32007-02-20 10:43:34 +01001153 modt1 = 0x00000000;
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001154 modt2 = CALC_ODT_W(2);
Stefan Roese4037ed32007-02-20 10:43:34 +01001155 modt3 = 0x00000000;
1156 }
Stefan Roesef2302d42008-08-06 14:05:38 +02001157 if (total_rank == 2) { /* UUPP */
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001158 codt |= CALC_ODT_R(2) | CALC_ODT_R(3);
1159 modt0 = 0x00000000;
1160 modt1 = 0x00000000;
Stefan Roesef2302d42008-08-06 14:05:38 +02001161 modt2 = CALC_ODT_W(2) | CALC_ODT_W(3);
1162 modt3 = 0x00000000;
Stefan Roese4037ed32007-02-20 10:43:34 +01001163 }
1164 }
1165 if (total_dimm == 2) {
Stefan Roesef2302d42008-08-06 14:05:38 +02001166 if (total_rank == 2) { /* PUPU */
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001167 codt |= CALC_ODT_R(0) | CALC_ODT_R(2);
1168 modt0 = CALC_ODT_RW(2);
Stefan Roese4037ed32007-02-20 10:43:34 +01001169 modt1 = 0x00000000;
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001170 modt2 = CALC_ODT_RW(0);
Stefan Roese4037ed32007-02-20 10:43:34 +01001171 modt3 = 0x00000000;
1172 }
Stefan Roesef2302d42008-08-06 14:05:38 +02001173 if (total_rank == 4) { /* PPPP */
Stefan Roese7187db72007-06-01 13:45:00 +02001174 codt |= CALC_ODT_R(0) | CALC_ODT_R(1) |
1175 CALC_ODT_R(2) | CALC_ODT_R(3);
Stefan Roesef2302d42008-08-06 14:05:38 +02001176 modt0 = CALC_ODT_RW(2) | CALC_ODT_RW(3);
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001177 modt1 = 0x00000000;
Stefan Roesef2302d42008-08-06 14:05:38 +02001178 modt2 = CALC_ODT_RW(0) | CALC_ODT_RW(1);
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001179 modt3 = 0x00000000;
Stefan Roese4037ed32007-02-20 10:43:34 +01001180 }
1181 }
Wolfgang Denk647d3c32007-03-04 01:36:05 +01001182 } else {
Stefan Roese4037ed32007-02-20 10:43:34 +01001183 codt |= SDRAM_CODT_DQS_2_5_V_DDR1;
1184 modt0 = 0x00000000;
1185 modt1 = 0x00000000;
1186 modt2 = 0x00000000;
1187 modt3 = 0x00000000;
1188
1189 if (total_dimm == 1) {
1190 if (total_rank == 1)
1191 codt |= 0x00800000;
1192 if (total_rank == 2)
1193 codt |= 0x02800000;
1194 }
1195 if (total_dimm == 2) {
1196 if (total_rank == 2)
1197 codt |= 0x08800000;
1198 if (total_rank == 4)
1199 codt |= 0x2a800000;
1200 }
1201 }
1202
1203 debug("nb of dimm %d\n", total_dimm);
1204 debug("nb of rank %d\n", total_rank);
1205 if (total_dimm == 1)
1206 debug("dimm in slot %d\n", firstSlot);
1207
1208 mtsdram(SDRAM_CODT, codt);
1209 mtsdram(SDRAM_MODT0, modt0);
1210 mtsdram(SDRAM_MODT1, modt1);
1211 mtsdram(SDRAM_MODT2, modt2);
1212 mtsdram(SDRAM_MODT3, modt3);
1213}
1214
1215/*-----------------------------------------------------------------------------+
1216 * program_initplr.
1217 *-----------------------------------------------------------------------------*/
1218static void program_initplr(unsigned long *dimm_populated,
1219 unsigned char *iic0_dimm_addr,
1220 unsigned long num_dimm_banks,
Wolfgang Denkad5bb452007-03-06 18:08:43 +01001221 ddr_cas_id_t selected_cas,
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001222 int write_recovery)
Stefan Roese4037ed32007-02-20 10:43:34 +01001223{
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001224 u32 cas = 0;
1225 u32 odt = 0;
1226 u32 ods = 0;
1227 u32 mr;
1228 u32 wr;
1229 u32 emr;
1230 u32 emr2;
1231 u32 emr3;
1232 int dimm_num;
1233 int total_dimm = 0;
Stefan Roese4037ed32007-02-20 10:43:34 +01001234
1235 /******************************************************
1236 ** Assumption: if more than one DIMM, all DIMMs are the same
Wolfgang Denk74357112007-02-27 14:26:04 +01001237 ** as already checked in check_memory_type
Stefan Roese4037ed32007-02-20 10:43:34 +01001238 ******************************************************/
1239
1240 if ((dimm_populated[0] == SDRAM_DDR1) || (dimm_populated[1] == SDRAM_DDR1)) {
1241 mtsdram(SDRAM_INITPLR0, 0x81B80000);
1242 mtsdram(SDRAM_INITPLR1, 0x81900400);
1243 mtsdram(SDRAM_INITPLR2, 0x81810000);
1244 mtsdram(SDRAM_INITPLR3, 0xff800162);
1245 mtsdram(SDRAM_INITPLR4, 0x81900400);
1246 mtsdram(SDRAM_INITPLR5, 0x86080000);
1247 mtsdram(SDRAM_INITPLR6, 0x86080000);
1248 mtsdram(SDRAM_INITPLR7, 0x81000062);
1249 } else if ((dimm_populated[0] == SDRAM_DDR2) || (dimm_populated[1] == SDRAM_DDR2)) {
1250 switch (selected_cas) {
Stefan Roese4037ed32007-02-20 10:43:34 +01001251 case DDR_CAS_3:
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001252 cas = 3 << 4;
Stefan Roese4037ed32007-02-20 10:43:34 +01001253 break;
1254 case DDR_CAS_4:
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001255 cas = 4 << 4;
Stefan Roese4037ed32007-02-20 10:43:34 +01001256 break;
1257 case DDR_CAS_5:
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001258 cas = 5 << 4;
Stefan Roese4037ed32007-02-20 10:43:34 +01001259 break;
1260 default:
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001261 printf("ERROR: ucode error on selected_cas value %d", selected_cas);
Heiko Schochera5d71e22007-06-25 19:11:37 +02001262 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001263 break;
1264 }
1265
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001266#if 0
1267 /*
1268 * ToDo - Still a problem with the write recovery:
1269 * On the Corsair CM2X512-5400C4 module, setting write recovery
1270 * in the INITPLR reg to the value calculated in program_mode()
1271 * results in not correctly working DDR2 memory (crash after
1272 * relocation).
1273 *
1274 * So for now, set the write recovery to 3. This seems to work
1275 * on the Corair module too.
1276 *
1277 * 2007-03-01, sr
1278 */
1279 switch (write_recovery) {
1280 case 3:
1281 wr = WRITE_RECOV_3;
1282 break;
1283 case 4:
1284 wr = WRITE_RECOV_4;
1285 break;
1286 case 5:
1287 wr = WRITE_RECOV_5;
1288 break;
1289 case 6:
1290 wr = WRITE_RECOV_6;
1291 break;
1292 default:
1293 printf("ERROR: write recovery not support (%d)", write_recovery);
Heiko Schochera5d71e22007-06-25 19:11:37 +02001294 spd_ddr_init_hang ();
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001295 break;
1296 }
1297#else
1298 wr = WRITE_RECOV_3; /* test-only, see description above */
1299#endif
1300
1301 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++)
1302 if (dimm_populated[dimm_num] != SDRAM_NONE)
1303 total_dimm++;
1304 if (total_dimm == 1) {
1305 odt = ODT_150_OHM;
1306 ods = ODS_FULL;
1307 } else if (total_dimm == 2) {
1308 odt = ODT_75_OHM;
1309 ods = ODS_REDUCED;
1310 } else {
1311 printf("ERROR: Unsupported number of DIMM's (%d)", total_dimm);
Heiko Schochera5d71e22007-06-25 19:11:37 +02001312 spd_ddr_init_hang ();
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001313 }
1314
1315 mr = CMD_EMR | SELECT_MR | BURST_LEN_4 | wr | cas;
1316 emr = CMD_EMR | SELECT_EMR | odt | ods;
1317 emr2 = CMD_EMR | SELECT_EMR2;
1318 emr3 = CMD_EMR | SELECT_EMR3;
Prodyut Hazarika04737d52008-08-27 16:39:00 -07001319 /* NOP - Wait 106 MemClk cycles */
1320 mtsdram(SDRAM_INITPLR0, SDRAM_INITPLR_ENABLE | CMD_NOP |
1321 SDRAM_INITPLR_IMWT_ENCODE(106));
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001322 udelay(1000);
Prodyut Hazarika04737d52008-08-27 16:39:00 -07001323 /* precharge 4 MemClk cycles */
1324 mtsdram(SDRAM_INITPLR1, SDRAM_INITPLR_ENABLE | CMD_PRECHARGE |
1325 SDRAM_INITPLR_IMWT_ENCODE(4));
1326 /* EMR2 - Wait tMRD (2 MemClk cycles) */
1327 mtsdram(SDRAM_INITPLR2, SDRAM_INITPLR_ENABLE | emr2 |
1328 SDRAM_INITPLR_IMWT_ENCODE(2));
1329 /* EMR3 - Wait tMRD (2 MemClk cycles) */
1330 mtsdram(SDRAM_INITPLR3, SDRAM_INITPLR_ENABLE | emr3 |
1331 SDRAM_INITPLR_IMWT_ENCODE(2));
1332 /* EMR DLL ENABLE - Wait tMRD (2 MemClk cycles) */
1333 mtsdram(SDRAM_INITPLR4, SDRAM_INITPLR_ENABLE | emr |
1334 SDRAM_INITPLR_IMWT_ENCODE(2));
1335 /* MR w/ DLL reset - 200 cycle wait for DLL reset */
1336 mtsdram(SDRAM_INITPLR5, SDRAM_INITPLR_ENABLE | mr | DLL_RESET |
1337 SDRAM_INITPLR_IMWT_ENCODE(200));
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001338 udelay(1000);
Prodyut Hazarika04737d52008-08-27 16:39:00 -07001339 /* precharge 4 MemClk cycles */
1340 mtsdram(SDRAM_INITPLR6, SDRAM_INITPLR_ENABLE | CMD_PRECHARGE |
1341 SDRAM_INITPLR_IMWT_ENCODE(4));
1342 /* Refresh 25 MemClk cycles */
1343 mtsdram(SDRAM_INITPLR7, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1344 SDRAM_INITPLR_IMWT_ENCODE(25));
1345 /* Refresh 25 MemClk cycles */
1346 mtsdram(SDRAM_INITPLR8, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1347 SDRAM_INITPLR_IMWT_ENCODE(25));
1348 /* Refresh 25 MemClk cycles */
1349 mtsdram(SDRAM_INITPLR9, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1350 SDRAM_INITPLR_IMWT_ENCODE(25));
1351 /* Refresh 25 MemClk cycles */
1352 mtsdram(SDRAM_INITPLR10, SDRAM_INITPLR_ENABLE | CMD_REFRESH |
1353 SDRAM_INITPLR_IMWT_ENCODE(25));
1354 /* MR w/o DLL reset - Wait tMRD (2 MemClk cycles) */
1355 mtsdram(SDRAM_INITPLR11, SDRAM_INITPLR_ENABLE | mr |
1356 SDRAM_INITPLR_IMWT_ENCODE(2));
1357 /* EMR OCD Default - Wait tMRD (2 MemClk cycles) */
1358 mtsdram(SDRAM_INITPLR12, SDRAM_INITPLR_ENABLE | OCD_CALIB_DEF |
1359 SDRAM_INITPLR_IMWT_ENCODE(2) | emr);
1360 /* EMR OCD Exit */
1361 mtsdram(SDRAM_INITPLR13, SDRAM_INITPLR_ENABLE | emr |
1362 SDRAM_INITPLR_IMWT_ENCODE(2));
Stefan Roese4037ed32007-02-20 10:43:34 +01001363 } else {
1364 printf("ERROR: ucode error as unknown DDR type in program_initplr");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001365 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001366 }
1367}
1368
1369/*------------------------------------------------------------------
1370 * This routine programs the SDRAM_MMODE register.
1371 * the selected_cas is an output parameter, that will be passed
1372 * by caller to call the above program_initplr( )
1373 *-----------------------------------------------------------------*/
1374static void program_mode(unsigned long *dimm_populated,
1375 unsigned char *iic0_dimm_addr,
1376 unsigned long num_dimm_banks,
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001377 ddr_cas_id_t *selected_cas,
1378 int *write_recovery)
Stefan Roese4037ed32007-02-20 10:43:34 +01001379{
1380 unsigned long dimm_num;
1381 unsigned long sdram_ddr1;
1382 unsigned long t_wr_ns;
1383 unsigned long t_wr_clk;
1384 unsigned long cas_bit;
1385 unsigned long cas_index;
1386 unsigned long sdram_freq;
1387 unsigned long ddr_check;
1388 unsigned long mmode;
1389 unsigned long tcyc_reg;
1390 unsigned long cycle_2_0_clk;
1391 unsigned long cycle_2_5_clk;
1392 unsigned long cycle_3_0_clk;
1393 unsigned long cycle_4_0_clk;
1394 unsigned long cycle_5_0_clk;
1395 unsigned long max_2_0_tcyc_ns_x_100;
1396 unsigned long max_2_5_tcyc_ns_x_100;
1397 unsigned long max_3_0_tcyc_ns_x_100;
1398 unsigned long max_4_0_tcyc_ns_x_100;
1399 unsigned long max_5_0_tcyc_ns_x_100;
1400 unsigned long cycle_time_ns_x_100[3];
Stefan Roese087dfdb2007-10-21 08:12:41 +02001401 PPC4xx_SYS_INFO board_cfg;
Stefan Roese4037ed32007-02-20 10:43:34 +01001402 unsigned char cas_2_0_available;
1403 unsigned char cas_2_5_available;
1404 unsigned char cas_3_0_available;
1405 unsigned char cas_4_0_available;
1406 unsigned char cas_5_0_available;
1407 unsigned long sdr_ddrpll;
1408
1409 /*------------------------------------------------------------------
1410 * Get the board configuration info.
1411 *-----------------------------------------------------------------*/
1412 get_sys_info(&board_cfg);
1413
Stefan Roesedf294492007-03-08 10:06:09 +01001414 mfsdr(SDR0_DDR0, sdr_ddrpll);
Stefan Roese4037ed32007-02-20 10:43:34 +01001415 sdram_freq = MULDIV64((board_cfg.freqPLB), SDR0_DDR0_DDRM_DECODE(sdr_ddrpll), 1);
Stefan Roesecabee752007-03-31 13:15:06 +02001416 debug("sdram_freq=%d\n", sdram_freq);
Stefan Roese4037ed32007-02-20 10:43:34 +01001417
1418 /*------------------------------------------------------------------
1419 * Handle the timing. We need to find the worst case timing of all
1420 * the dimm modules installed.
1421 *-----------------------------------------------------------------*/
1422 t_wr_ns = 0;
1423 cas_2_0_available = TRUE;
1424 cas_2_5_available = TRUE;
1425 cas_3_0_available = TRUE;
1426 cas_4_0_available = TRUE;
1427 cas_5_0_available = TRUE;
1428 max_2_0_tcyc_ns_x_100 = 10;
1429 max_2_5_tcyc_ns_x_100 = 10;
1430 max_3_0_tcyc_ns_x_100 = 10;
1431 max_4_0_tcyc_ns_x_100 = 10;
1432 max_5_0_tcyc_ns_x_100 = 10;
1433 sdram_ddr1 = TRUE;
1434
1435 /* loop through all the DIMM slots on the board */
1436 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1437 /* If a dimm is installed in a particular slot ... */
1438 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1439 if (dimm_populated[dimm_num] == SDRAM_DDR1)
1440 sdram_ddr1 = TRUE;
1441 else
1442 sdram_ddr1 = FALSE;
1443
1444 /* t_wr_ns = max(t_wr_ns, (unsigned long)dimm_spd[dimm_num][36] >> 2); */ /* not used in this loop. */
1445 cas_bit = spd_read(iic0_dimm_addr[dimm_num], 18);
Stefan Roesecabee752007-03-31 13:15:06 +02001446 debug("cas_bit[SPD byte 18]=%02x\n", cas_bit);
Stefan Roese4037ed32007-02-20 10:43:34 +01001447
1448 /* For a particular DIMM, grab the three CAS values it supports */
1449 for (cas_index = 0; cas_index < 3; cas_index++) {
1450 switch (cas_index) {
1451 case 0:
1452 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 9);
1453 break;
1454 case 1:
1455 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 23);
1456 break;
1457 default:
1458 tcyc_reg = spd_read(iic0_dimm_addr[dimm_num], 25);
1459 break;
1460 }
1461
1462 if ((tcyc_reg & 0x0F) >= 10) {
1463 if ((tcyc_reg & 0x0F) == 0x0D) {
1464 /* Convert from hex to decimal */
Stefan Roesecabee752007-03-31 13:15:06 +02001465 cycle_time_ns_x_100[cas_index] =
1466 (((tcyc_reg & 0xF0) >> 4) * 100) + 75;
Stefan Roese4037ed32007-02-20 10:43:34 +01001467 } else {
1468 printf("ERROR: SPD reported Tcyc is incorrect for DIMM "
1469 "in slot %d\n", (unsigned int)dimm_num);
Heiko Schochera5d71e22007-06-25 19:11:37 +02001470 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001471 }
1472 } else {
1473 /* Convert from hex to decimal */
Stefan Roesecabee752007-03-31 13:15:06 +02001474 cycle_time_ns_x_100[cas_index] =
1475 (((tcyc_reg & 0xF0) >> 4) * 100) +
Stefan Roese4037ed32007-02-20 10:43:34 +01001476 ((tcyc_reg & 0x0F)*10);
1477 }
Stefan Roesecabee752007-03-31 13:15:06 +02001478 debug("cas_index=%d: cycle_time_ns_x_100=%d\n", cas_index,
1479 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001480 }
1481
1482 /* The rest of this routine determines if CAS 2.0, 2.5, 3.0, 4.0 and 5.0 are */
1483 /* supported for a particular DIMM. */
1484 cas_index = 0;
1485
1486 if (sdram_ddr1) {
1487 /*
1488 * DDR devices use the following bitmask for CAS latency:
1489 * Bit 7 6 5 4 3 2 1 0
1490 * TBD 4.0 3.5 3.0 2.5 2.0 1.5 1.0
1491 */
Stefan Roesecabee752007-03-31 13:15:06 +02001492 if (((cas_bit & 0x40) == 0x40) && (cas_index < 3) &&
1493 (cycle_time_ns_x_100[cas_index] != 0)) {
1494 max_4_0_tcyc_ns_x_100 = max(max_4_0_tcyc_ns_x_100,
1495 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001496 cas_index++;
1497 } else {
1498 if (cas_index != 0)
1499 cas_index++;
1500 cas_4_0_available = FALSE;
1501 }
1502
Stefan Roesecabee752007-03-31 13:15:06 +02001503 if (((cas_bit & 0x10) == 0x10) && (cas_index < 3) &&
1504 (cycle_time_ns_x_100[cas_index] != 0)) {
1505 max_3_0_tcyc_ns_x_100 = max(max_3_0_tcyc_ns_x_100,
1506 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001507 cas_index++;
1508 } else {
1509 if (cas_index != 0)
1510 cas_index++;
1511 cas_3_0_available = FALSE;
1512 }
1513
Stefan Roesecabee752007-03-31 13:15:06 +02001514 if (((cas_bit & 0x08) == 0x08) && (cas_index < 3) &&
1515 (cycle_time_ns_x_100[cas_index] != 0)) {
1516 max_2_5_tcyc_ns_x_100 = max(max_2_5_tcyc_ns_x_100,
1517 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001518 cas_index++;
1519 } else {
1520 if (cas_index != 0)
1521 cas_index++;
1522 cas_2_5_available = FALSE;
1523 }
1524
Stefan Roesecabee752007-03-31 13:15:06 +02001525 if (((cas_bit & 0x04) == 0x04) && (cas_index < 3) &&
1526 (cycle_time_ns_x_100[cas_index] != 0)) {
1527 max_2_0_tcyc_ns_x_100 = max(max_2_0_tcyc_ns_x_100,
1528 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001529 cas_index++;
1530 } else {
1531 if (cas_index != 0)
1532 cas_index++;
1533 cas_2_0_available = FALSE;
1534 }
1535 } else {
1536 /*
1537 * DDR2 devices use the following bitmask for CAS latency:
1538 * Bit 7 6 5 4 3 2 1 0
1539 * TBD 6.0 5.0 4.0 3.0 2.0 TBD TBD
1540 */
Stefan Roesecabee752007-03-31 13:15:06 +02001541 if (((cas_bit & 0x20) == 0x20) && (cas_index < 3) &&
1542 (cycle_time_ns_x_100[cas_index] != 0)) {
1543 max_5_0_tcyc_ns_x_100 = max(max_5_0_tcyc_ns_x_100,
1544 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001545 cas_index++;
1546 } else {
1547 if (cas_index != 0)
1548 cas_index++;
1549 cas_5_0_available = FALSE;
1550 }
1551
Stefan Roesecabee752007-03-31 13:15:06 +02001552 if (((cas_bit & 0x10) == 0x10) && (cas_index < 3) &&
1553 (cycle_time_ns_x_100[cas_index] != 0)) {
1554 max_4_0_tcyc_ns_x_100 = max(max_4_0_tcyc_ns_x_100,
1555 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001556 cas_index++;
1557 } else {
1558 if (cas_index != 0)
1559 cas_index++;
1560 cas_4_0_available = FALSE;
1561 }
1562
Stefan Roesecabee752007-03-31 13:15:06 +02001563 if (((cas_bit & 0x08) == 0x08) && (cas_index < 3) &&
1564 (cycle_time_ns_x_100[cas_index] != 0)) {
1565 max_3_0_tcyc_ns_x_100 = max(max_3_0_tcyc_ns_x_100,
1566 cycle_time_ns_x_100[cas_index]);
Stefan Roese4037ed32007-02-20 10:43:34 +01001567 cas_index++;
1568 } else {
1569 if (cas_index != 0)
1570 cas_index++;
1571 cas_3_0_available = FALSE;
1572 }
1573 }
1574 }
1575 }
1576
1577 /*------------------------------------------------------------------
1578 * Set the SDRAM mode, SDRAM_MMODE
1579 *-----------------------------------------------------------------*/
1580 mfsdram(SDRAM_MMODE, mmode);
1581 mmode = mmode & ~(SDRAM_MMODE_WR_MASK | SDRAM_MMODE_DCL_MASK);
1582
Stefan Roesedf294492007-03-08 10:06:09 +01001583 /* add 10 here because of rounding problems */
1584 cycle_2_0_clk = MULDIV64(ONE_BILLION, 100, max_2_0_tcyc_ns_x_100) + 10;
1585 cycle_2_5_clk = MULDIV64(ONE_BILLION, 100, max_2_5_tcyc_ns_x_100) + 10;
1586 cycle_3_0_clk = MULDIV64(ONE_BILLION, 100, max_3_0_tcyc_ns_x_100) + 10;
1587 cycle_4_0_clk = MULDIV64(ONE_BILLION, 100, max_4_0_tcyc_ns_x_100) + 10;
1588 cycle_5_0_clk = MULDIV64(ONE_BILLION, 100, max_5_0_tcyc_ns_x_100) + 10;
Stefan Roesecabee752007-03-31 13:15:06 +02001589 debug("cycle_3_0_clk=%d\n", cycle_3_0_clk);
1590 debug("cycle_4_0_clk=%d\n", cycle_4_0_clk);
1591 debug("cycle_5_0_clk=%d\n", cycle_5_0_clk);
Stefan Roese4037ed32007-02-20 10:43:34 +01001592
1593 if (sdram_ddr1 == TRUE) { /* DDR1 */
1594 if ((cas_2_0_available == TRUE) && (sdram_freq <= cycle_2_0_clk)) {
1595 mmode |= SDRAM_MMODE_DCL_DDR1_2_0_CLK;
1596 *selected_cas = DDR_CAS_2;
1597 } else if ((cas_2_5_available == TRUE) && (sdram_freq <= cycle_2_5_clk)) {
1598 mmode |= SDRAM_MMODE_DCL_DDR1_2_5_CLK;
1599 *selected_cas = DDR_CAS_2_5;
1600 } else if ((cas_3_0_available == TRUE) && (sdram_freq <= cycle_3_0_clk)) {
1601 mmode |= SDRAM_MMODE_DCL_DDR1_3_0_CLK;
1602 *selected_cas = DDR_CAS_3;
1603 } else {
1604 printf("ERROR: Cannot find a supported CAS latency with the installed DIMMs.\n");
1605 printf("Only DIMMs DDR1 with CAS latencies of 2.0, 2.5, and 3.0 are supported.\n");
1606 printf("Make sure the PLB speed is within the supported range of the DIMMs.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001607 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001608 }
1609 } else { /* DDR2 */
Stefan Roese94f54702007-03-31 08:46:08 +02001610 debug("cas_3_0_available=%d\n", cas_3_0_available);
1611 debug("cas_4_0_available=%d\n", cas_4_0_available);
1612 debug("cas_5_0_available=%d\n", cas_5_0_available);
Stefan Roese4037ed32007-02-20 10:43:34 +01001613 if ((cas_3_0_available == TRUE) && (sdram_freq <= cycle_3_0_clk)) {
1614 mmode |= SDRAM_MMODE_DCL_DDR2_3_0_CLK;
1615 *selected_cas = DDR_CAS_3;
1616 } else if ((cas_4_0_available == TRUE) && (sdram_freq <= cycle_4_0_clk)) {
1617 mmode |= SDRAM_MMODE_DCL_DDR2_4_0_CLK;
1618 *selected_cas = DDR_CAS_4;
1619 } else if ((cas_5_0_available == TRUE) && (sdram_freq <= cycle_5_0_clk)) {
1620 mmode |= SDRAM_MMODE_DCL_DDR2_5_0_CLK;
1621 *selected_cas = DDR_CAS_5;
1622 } else {
1623 printf("ERROR: Cannot find a supported CAS latency with the installed DIMMs.\n");
1624 printf("Only DIMMs DDR2 with CAS latencies of 3.0, 4.0, and 5.0 are supported.\n");
Stefan Roesedf294492007-03-08 10:06:09 +01001625 printf("Make sure the PLB speed is within the supported range of the DIMMs.\n");
1626 printf("cas3=%d cas4=%d cas5=%d\n",
1627 cas_3_0_available, cas_4_0_available, cas_5_0_available);
Stefan Roeseb0021442008-07-10 09:58:06 +02001628 printf("sdram_freq=%lu cycle3=%lu cycle4=%lu cycle5=%lu\n\n",
Stefan Roesedf294492007-03-08 10:06:09 +01001629 sdram_freq, cycle_3_0_clk, cycle_4_0_clk, cycle_5_0_clk);
Heiko Schochera5d71e22007-06-25 19:11:37 +02001630 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001631 }
1632 }
1633
1634 if (sdram_ddr1 == TRUE)
1635 mmode |= SDRAM_MMODE_WR_DDR1;
1636 else {
1637
1638 /* loop through all the DIMM slots on the board */
1639 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1640 /* If a dimm is installed in a particular slot ... */
1641 if (dimm_populated[dimm_num] != SDRAM_NONE)
1642 t_wr_ns = max(t_wr_ns,
1643 spd_read(iic0_dimm_addr[dimm_num], 36) >> 2);
1644 }
1645
1646 /*
1647 * convert from nanoseconds to ddr clocks
1648 * round up if necessary
1649 */
1650 t_wr_clk = MULDIV64(sdram_freq, t_wr_ns, ONE_BILLION);
1651 ddr_check = MULDIV64(ONE_BILLION, t_wr_clk, t_wr_ns);
1652 if (sdram_freq != ddr_check)
1653 t_wr_clk++;
1654
1655 switch (t_wr_clk) {
1656 case 0:
1657 case 1:
1658 case 2:
1659 case 3:
1660 mmode |= SDRAM_MMODE_WR_DDR2_3_CYC;
1661 break;
1662 case 4:
1663 mmode |= SDRAM_MMODE_WR_DDR2_4_CYC;
1664 break;
1665 case 5:
1666 mmode |= SDRAM_MMODE_WR_DDR2_5_CYC;
1667 break;
1668 default:
1669 mmode |= SDRAM_MMODE_WR_DDR2_6_CYC;
1670 break;
1671 }
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001672 *write_recovery = t_wr_clk;
Stefan Roese4037ed32007-02-20 10:43:34 +01001673 }
1674
Stefan Roeseba58e4c2007-03-01 21:11:36 +01001675 debug("CAS latency = %d\n", *selected_cas);
1676 debug("Write recovery = %d\n", *write_recovery);
1677
Stefan Roese4037ed32007-02-20 10:43:34 +01001678 mtsdram(SDRAM_MMODE, mmode);
1679}
1680
1681/*-----------------------------------------------------------------------------+
1682 * program_rtr.
1683 *-----------------------------------------------------------------------------*/
1684static void program_rtr(unsigned long *dimm_populated,
1685 unsigned char *iic0_dimm_addr,
1686 unsigned long num_dimm_banks)
1687{
Stefan Roese087dfdb2007-10-21 08:12:41 +02001688 PPC4xx_SYS_INFO board_cfg;
Stefan Roese4037ed32007-02-20 10:43:34 +01001689 unsigned long max_refresh_rate;
1690 unsigned long dimm_num;
1691 unsigned long refresh_rate_type;
1692 unsigned long refresh_rate;
1693 unsigned long rint;
1694 unsigned long sdram_freq;
1695 unsigned long sdr_ddrpll;
1696 unsigned long val;
1697
1698 /*------------------------------------------------------------------
1699 * Get the board configuration info.
1700 *-----------------------------------------------------------------*/
1701 get_sys_info(&board_cfg);
1702
1703 /*------------------------------------------------------------------
1704 * Set the SDRAM Refresh Timing Register, SDRAM_RTR
1705 *-----------------------------------------------------------------*/
Stefan Roesedf294492007-03-08 10:06:09 +01001706 mfsdr(SDR0_DDR0, sdr_ddrpll);
Stefan Roese4037ed32007-02-20 10:43:34 +01001707 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
1708
1709 max_refresh_rate = 0;
1710 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1711 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1712
1713 refresh_rate_type = spd_read(iic0_dimm_addr[dimm_num], 12);
1714 refresh_rate_type &= 0x7F;
1715 switch (refresh_rate_type) {
1716 case 0:
1717 refresh_rate = 15625;
1718 break;
1719 case 1:
1720 refresh_rate = 3906;
1721 break;
1722 case 2:
1723 refresh_rate = 7812;
1724 break;
1725 case 3:
1726 refresh_rate = 31250;
1727 break;
1728 case 4:
1729 refresh_rate = 62500;
1730 break;
1731 case 5:
1732 refresh_rate = 125000;
1733 break;
1734 default:
1735 refresh_rate = 0;
1736 printf("ERROR: DIMM %d unsupported refresh rate/type.\n",
1737 (unsigned int)dimm_num);
1738 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02001739 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01001740 break;
1741 }
1742
1743 max_refresh_rate = max(max_refresh_rate, refresh_rate);
1744 }
1745 }
1746
1747 rint = MULDIV64(sdram_freq, max_refresh_rate, ONE_BILLION);
1748 mfsdram(SDRAM_RTR, val);
1749 mtsdram(SDRAM_RTR, (val & ~SDRAM_RTR_RINT_MASK) |
1750 (SDRAM_RTR_RINT_ENCODE(rint)));
1751}
1752
1753/*------------------------------------------------------------------
1754 * This routine programs the SDRAM_TRx registers.
1755 *-----------------------------------------------------------------*/
1756static void program_tr(unsigned long *dimm_populated,
1757 unsigned char *iic0_dimm_addr,
1758 unsigned long num_dimm_banks)
1759{
1760 unsigned long dimm_num;
1761 unsigned long sdram_ddr1;
1762 unsigned long t_rp_ns;
1763 unsigned long t_rcd_ns;
1764 unsigned long t_rrd_ns;
1765 unsigned long t_ras_ns;
1766 unsigned long t_rc_ns;
1767 unsigned long t_rfc_ns;
1768 unsigned long t_wpc_ns;
1769 unsigned long t_wtr_ns;
1770 unsigned long t_rpc_ns;
1771 unsigned long t_rp_clk;
1772 unsigned long t_rcd_clk;
1773 unsigned long t_rrd_clk;
1774 unsigned long t_ras_clk;
1775 unsigned long t_rc_clk;
1776 unsigned long t_rfc_clk;
1777 unsigned long t_wpc_clk;
1778 unsigned long t_wtr_clk;
1779 unsigned long t_rpc_clk;
1780 unsigned long sdtr1, sdtr2, sdtr3;
1781 unsigned long ddr_check;
1782 unsigned long sdram_freq;
1783 unsigned long sdr_ddrpll;
1784
Stefan Roese087dfdb2007-10-21 08:12:41 +02001785 PPC4xx_SYS_INFO board_cfg;
Stefan Roese4037ed32007-02-20 10:43:34 +01001786
1787 /*------------------------------------------------------------------
1788 * Get the board configuration info.
1789 *-----------------------------------------------------------------*/
1790 get_sys_info(&board_cfg);
1791
Stefan Roesedf294492007-03-08 10:06:09 +01001792 mfsdr(SDR0_DDR0, sdr_ddrpll);
Stefan Roese4037ed32007-02-20 10:43:34 +01001793 sdram_freq = ((board_cfg.freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
1794
1795 /*------------------------------------------------------------------
1796 * Handle the timing. We need to find the worst case timing of all
1797 * the dimm modules installed.
1798 *-----------------------------------------------------------------*/
1799 t_rp_ns = 0;
1800 t_rrd_ns = 0;
1801 t_rcd_ns = 0;
1802 t_ras_ns = 0;
1803 t_rc_ns = 0;
1804 t_rfc_ns = 0;
1805 t_wpc_ns = 0;
1806 t_wtr_ns = 0;
1807 t_rpc_ns = 0;
1808 sdram_ddr1 = TRUE;
1809
1810 /* loop through all the DIMM slots on the board */
1811 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1812 /* If a dimm is installed in a particular slot ... */
1813 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1814 if (dimm_populated[dimm_num] == SDRAM_DDR2)
1815 sdram_ddr1 = TRUE;
1816 else
1817 sdram_ddr1 = FALSE;
1818
1819 t_rcd_ns = max(t_rcd_ns, spd_read(iic0_dimm_addr[dimm_num], 29) >> 2);
1820 t_rrd_ns = max(t_rrd_ns, spd_read(iic0_dimm_addr[dimm_num], 28) >> 2);
1821 t_rp_ns = max(t_rp_ns, spd_read(iic0_dimm_addr[dimm_num], 27) >> 2);
1822 t_ras_ns = max(t_ras_ns, spd_read(iic0_dimm_addr[dimm_num], 30));
1823 t_rc_ns = max(t_rc_ns, spd_read(iic0_dimm_addr[dimm_num], 41));
1824 t_rfc_ns = max(t_rfc_ns, spd_read(iic0_dimm_addr[dimm_num], 42));
1825 }
1826 }
1827
1828 /*------------------------------------------------------------------
1829 * Set the SDRAM Timing Reg 1, SDRAM_TR1
1830 *-----------------------------------------------------------------*/
1831 mfsdram(SDRAM_SDTR1, sdtr1);
1832 sdtr1 &= ~(SDRAM_SDTR1_LDOF_MASK | SDRAM_SDTR1_RTW_MASK |
1833 SDRAM_SDTR1_WTWO_MASK | SDRAM_SDTR1_RTRO_MASK);
1834
1835 /* default values */
1836 sdtr1 |= SDRAM_SDTR1_LDOF_2_CLK;
1837 sdtr1 |= SDRAM_SDTR1_RTW_2_CLK;
1838
1839 /* normal operations */
1840 sdtr1 |= SDRAM_SDTR1_WTWO_0_CLK;
1841 sdtr1 |= SDRAM_SDTR1_RTRO_1_CLK;
1842
1843 mtsdram(SDRAM_SDTR1, sdtr1);
1844
1845 /*------------------------------------------------------------------
1846 * Set the SDRAM Timing Reg 2, SDRAM_TR2
1847 *-----------------------------------------------------------------*/
1848 mfsdram(SDRAM_SDTR2, sdtr2);
1849 sdtr2 &= ~(SDRAM_SDTR2_RCD_MASK | SDRAM_SDTR2_WTR_MASK |
1850 SDRAM_SDTR2_XSNR_MASK | SDRAM_SDTR2_WPC_MASK |
1851 SDRAM_SDTR2_RPC_MASK | SDRAM_SDTR2_RP_MASK |
1852 SDRAM_SDTR2_RRD_MASK);
1853
1854 /*
1855 * convert t_rcd from nanoseconds to ddr clocks
1856 * round up if necessary
1857 */
1858 t_rcd_clk = MULDIV64(sdram_freq, t_rcd_ns, ONE_BILLION);
1859 ddr_check = MULDIV64(ONE_BILLION, t_rcd_clk, t_rcd_ns);
1860 if (sdram_freq != ddr_check)
1861 t_rcd_clk++;
1862
1863 switch (t_rcd_clk) {
1864 case 0:
1865 case 1:
1866 sdtr2 |= SDRAM_SDTR2_RCD_1_CLK;
1867 break;
1868 case 2:
1869 sdtr2 |= SDRAM_SDTR2_RCD_2_CLK;
1870 break;
1871 case 3:
1872 sdtr2 |= SDRAM_SDTR2_RCD_3_CLK;
1873 break;
1874 case 4:
1875 sdtr2 |= SDRAM_SDTR2_RCD_4_CLK;
1876 break;
1877 default:
1878 sdtr2 |= SDRAM_SDTR2_RCD_5_CLK;
1879 break;
1880 }
1881
1882 if (sdram_ddr1 == TRUE) { /* DDR1 */
1883 if (sdram_freq < 200000000) {
1884 sdtr2 |= SDRAM_SDTR2_WTR_1_CLK;
1885 sdtr2 |= SDRAM_SDTR2_WPC_2_CLK;
1886 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
1887 } else {
1888 sdtr2 |= SDRAM_SDTR2_WTR_2_CLK;
1889 sdtr2 |= SDRAM_SDTR2_WPC_3_CLK;
1890 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
1891 }
1892 } else { /* DDR2 */
1893 /* loop through all the DIMM slots on the board */
1894 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
1895 /* If a dimm is installed in a particular slot ... */
1896 if (dimm_populated[dimm_num] != SDRAM_NONE) {
1897 t_wpc_ns = max(t_wtr_ns, spd_read(iic0_dimm_addr[dimm_num], 36) >> 2);
1898 t_wtr_ns = max(t_wtr_ns, spd_read(iic0_dimm_addr[dimm_num], 37) >> 2);
1899 t_rpc_ns = max(t_rpc_ns, spd_read(iic0_dimm_addr[dimm_num], 38) >> 2);
1900 }
1901 }
1902
1903 /*
1904 * convert from nanoseconds to ddr clocks
1905 * round up if necessary
1906 */
1907 t_wpc_clk = MULDIV64(sdram_freq, t_wpc_ns, ONE_BILLION);
1908 ddr_check = MULDIV64(ONE_BILLION, t_wpc_clk, t_wpc_ns);
1909 if (sdram_freq != ddr_check)
1910 t_wpc_clk++;
1911
1912 switch (t_wpc_clk) {
1913 case 0:
1914 case 1:
1915 case 2:
1916 sdtr2 |= SDRAM_SDTR2_WPC_2_CLK;
1917 break;
1918 case 3:
1919 sdtr2 |= SDRAM_SDTR2_WPC_3_CLK;
1920 break;
1921 case 4:
1922 sdtr2 |= SDRAM_SDTR2_WPC_4_CLK;
1923 break;
1924 case 5:
1925 sdtr2 |= SDRAM_SDTR2_WPC_5_CLK;
1926 break;
1927 default:
1928 sdtr2 |= SDRAM_SDTR2_WPC_6_CLK;
1929 break;
1930 }
1931
1932 /*
1933 * convert from nanoseconds to ddr clocks
1934 * round up if necessary
1935 */
1936 t_wtr_clk = MULDIV64(sdram_freq, t_wtr_ns, ONE_BILLION);
1937 ddr_check = MULDIV64(ONE_BILLION, t_wtr_clk, t_wtr_ns);
1938 if (sdram_freq != ddr_check)
1939 t_wtr_clk++;
1940
1941 switch (t_wtr_clk) {
1942 case 0:
1943 case 1:
1944 sdtr2 |= SDRAM_SDTR2_WTR_1_CLK;
1945 break;
1946 case 2:
1947 sdtr2 |= SDRAM_SDTR2_WTR_2_CLK;
1948 break;
1949 case 3:
1950 sdtr2 |= SDRAM_SDTR2_WTR_3_CLK;
1951 break;
1952 default:
1953 sdtr2 |= SDRAM_SDTR2_WTR_4_CLK;
1954 break;
1955 }
1956
1957 /*
1958 * convert from nanoseconds to ddr clocks
1959 * round up if necessary
1960 */
1961 t_rpc_clk = MULDIV64(sdram_freq, t_rpc_ns, ONE_BILLION);
1962 ddr_check = MULDIV64(ONE_BILLION, t_rpc_clk, t_rpc_ns);
1963 if (sdram_freq != ddr_check)
1964 t_rpc_clk++;
1965
1966 switch (t_rpc_clk) {
1967 case 0:
1968 case 1:
1969 case 2:
1970 sdtr2 |= SDRAM_SDTR2_RPC_2_CLK;
1971 break;
1972 case 3:
1973 sdtr2 |= SDRAM_SDTR2_RPC_3_CLK;
1974 break;
1975 default:
1976 sdtr2 |= SDRAM_SDTR2_RPC_4_CLK;
1977 break;
1978 }
1979 }
1980
1981 /* default value */
1982 sdtr2 |= SDRAM_SDTR2_XSNR_16_CLK;
1983
1984 /*
1985 * convert t_rrd from nanoseconds to ddr clocks
1986 * round up if necessary
1987 */
1988 t_rrd_clk = MULDIV64(sdram_freq, t_rrd_ns, ONE_BILLION);
1989 ddr_check = MULDIV64(ONE_BILLION, t_rrd_clk, t_rrd_ns);
1990 if (sdram_freq != ddr_check)
1991 t_rrd_clk++;
1992
1993 if (t_rrd_clk == 3)
1994 sdtr2 |= SDRAM_SDTR2_RRD_3_CLK;
1995 else
1996 sdtr2 |= SDRAM_SDTR2_RRD_2_CLK;
1997
1998 /*
1999 * convert t_rp from nanoseconds to ddr clocks
2000 * round up if necessary
2001 */
2002 t_rp_clk = MULDIV64(sdram_freq, t_rp_ns, ONE_BILLION);
2003 ddr_check = MULDIV64(ONE_BILLION, t_rp_clk, t_rp_ns);
2004 if (sdram_freq != ddr_check)
2005 t_rp_clk++;
2006
2007 switch (t_rp_clk) {
2008 case 0:
2009 case 1:
2010 case 2:
2011 case 3:
2012 sdtr2 |= SDRAM_SDTR2_RP_3_CLK;
2013 break;
2014 case 4:
2015 sdtr2 |= SDRAM_SDTR2_RP_4_CLK;
2016 break;
2017 case 5:
2018 sdtr2 |= SDRAM_SDTR2_RP_5_CLK;
2019 break;
2020 case 6:
2021 sdtr2 |= SDRAM_SDTR2_RP_6_CLK;
2022 break;
2023 default:
2024 sdtr2 |= SDRAM_SDTR2_RP_7_CLK;
2025 break;
2026 }
2027
2028 mtsdram(SDRAM_SDTR2, sdtr2);
2029
2030 /*------------------------------------------------------------------
2031 * Set the SDRAM Timing Reg 3, SDRAM_TR3
2032 *-----------------------------------------------------------------*/
2033 mfsdram(SDRAM_SDTR3, sdtr3);
2034 sdtr3 &= ~(SDRAM_SDTR3_RAS_MASK | SDRAM_SDTR3_RC_MASK |
2035 SDRAM_SDTR3_XCS_MASK | SDRAM_SDTR3_RFC_MASK);
2036
2037 /*
2038 * convert t_ras from nanoseconds to ddr clocks
2039 * round up if necessary
2040 */
2041 t_ras_clk = MULDIV64(sdram_freq, t_ras_ns, ONE_BILLION);
2042 ddr_check = MULDIV64(ONE_BILLION, t_ras_clk, t_ras_ns);
2043 if (sdram_freq != ddr_check)
2044 t_ras_clk++;
2045
2046 sdtr3 |= SDRAM_SDTR3_RAS_ENCODE(t_ras_clk);
2047
2048 /*
2049 * convert t_rc from nanoseconds to ddr clocks
2050 * round up if necessary
2051 */
2052 t_rc_clk = MULDIV64(sdram_freq, t_rc_ns, ONE_BILLION);
2053 ddr_check = MULDIV64(ONE_BILLION, t_rc_clk, t_rc_ns);
2054 if (sdram_freq != ddr_check)
2055 t_rc_clk++;
2056
2057 sdtr3 |= SDRAM_SDTR3_RC_ENCODE(t_rc_clk);
2058
2059 /* default xcs value */
2060 sdtr3 |= SDRAM_SDTR3_XCS;
2061
2062 /*
2063 * convert t_rfc from nanoseconds to ddr clocks
2064 * round up if necessary
2065 */
2066 t_rfc_clk = MULDIV64(sdram_freq, t_rfc_ns, ONE_BILLION);
2067 ddr_check = MULDIV64(ONE_BILLION, t_rfc_clk, t_rfc_ns);
2068 if (sdram_freq != ddr_check)
2069 t_rfc_clk++;
2070
2071 sdtr3 |= SDRAM_SDTR3_RFC_ENCODE(t_rfc_clk);
2072
2073 mtsdram(SDRAM_SDTR3, sdtr3);
2074}
2075
2076/*-----------------------------------------------------------------------------+
2077 * program_bxcf.
2078 *-----------------------------------------------------------------------------*/
2079static void program_bxcf(unsigned long *dimm_populated,
2080 unsigned char *iic0_dimm_addr,
2081 unsigned long num_dimm_banks)
2082{
2083 unsigned long dimm_num;
2084 unsigned long num_col_addr;
2085 unsigned long num_ranks;
2086 unsigned long num_banks;
2087 unsigned long mode;
2088 unsigned long ind_rank;
2089 unsigned long ind;
2090 unsigned long ind_bank;
2091 unsigned long bank_0_populated;
2092
2093 /*------------------------------------------------------------------
2094 * Set the BxCF regs. First, wipe out the bank config registers.
2095 *-----------------------------------------------------------------*/
Stefan Roese087dfdb2007-10-21 08:12:41 +02002096 mtsdram(SDRAM_MB0CF, 0x00000000);
2097 mtsdram(SDRAM_MB1CF, 0x00000000);
2098 mtsdram(SDRAM_MB2CF, 0x00000000);
2099 mtsdram(SDRAM_MB3CF, 0x00000000);
Stefan Roese4037ed32007-02-20 10:43:34 +01002100
2101 mode = SDRAM_BXCF_M_BE_ENABLE;
2102
2103 bank_0_populated = 0;
2104
2105 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
2106 if (dimm_populated[dimm_num] != SDRAM_NONE) {
2107 num_col_addr = spd_read(iic0_dimm_addr[dimm_num], 4);
2108 num_ranks = spd_read(iic0_dimm_addr[dimm_num], 5);
2109 if ((spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
2110 num_ranks = (num_ranks & 0x0F) +1;
2111 else
2112 num_ranks = num_ranks & 0x0F;
2113
2114 num_banks = spd_read(iic0_dimm_addr[dimm_num], 17);
2115
2116 for (ind_bank = 0; ind_bank < 2; ind_bank++) {
2117 if (num_banks == 4)
2118 ind = 0;
2119 else
Stefan Roeseea9202a2008-04-30 10:49:43 +02002120 ind = 5 << 8;
Stefan Roese4037ed32007-02-20 10:43:34 +01002121 switch (num_col_addr) {
2122 case 0x08:
2123 mode |= (SDRAM_BXCF_M_AM_0 + ind);
2124 break;
2125 case 0x09:
2126 mode |= (SDRAM_BXCF_M_AM_1 + ind);
2127 break;
2128 case 0x0A:
2129 mode |= (SDRAM_BXCF_M_AM_2 + ind);
2130 break;
2131 case 0x0B:
2132 mode |= (SDRAM_BXCF_M_AM_3 + ind);
2133 break;
2134 case 0x0C:
2135 mode |= (SDRAM_BXCF_M_AM_4 + ind);
2136 break;
2137 default:
2138 printf("DDR-SDRAM: DIMM %d BxCF configuration.\n",
2139 (unsigned int)dimm_num);
2140 printf("ERROR: Unsupported value for number of "
2141 "column addresses: %d.\n", (unsigned int)num_col_addr);
2142 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02002143 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01002144 }
2145 }
2146
2147 if ((dimm_populated[dimm_num] != SDRAM_NONE)&& (dimm_num ==1))
2148 bank_0_populated = 1;
2149
2150 for (ind_rank = 0; ind_rank < num_ranks; ind_rank++) {
Stefan Roese087dfdb2007-10-21 08:12:41 +02002151 mtsdram(SDRAM_MB0CF +
2152 ((dimm_num + bank_0_populated + ind_rank) << 2),
2153 mode);
Stefan Roese4037ed32007-02-20 10:43:34 +01002154 }
2155 }
2156 }
2157}
2158
2159/*------------------------------------------------------------------
2160 * program memory queue.
2161 *-----------------------------------------------------------------*/
2162static void program_memory_queue(unsigned long *dimm_populated,
2163 unsigned char *iic0_dimm_addr,
2164 unsigned long num_dimm_banks)
2165{
2166 unsigned long dimm_num;
Stefan Roese5d812b82008-07-09 17:33:57 +02002167 phys_size_t rank_base_addr;
Stefan Roese4037ed32007-02-20 10:43:34 +01002168 unsigned long rank_reg;
Stefan Roese5d812b82008-07-09 17:33:57 +02002169 phys_size_t rank_size_bytes;
Stefan Roese4037ed32007-02-20 10:43:34 +01002170 unsigned long rank_size_id;
2171 unsigned long num_ranks;
2172 unsigned long baseadd_size;
2173 unsigned long i;
2174 unsigned long bank_0_populated = 0;
Stefan Roese5d812b82008-07-09 17:33:57 +02002175 phys_size_t total_size = 0;
Stefan Roese4037ed32007-02-20 10:43:34 +01002176
2177 /*------------------------------------------------------------------
2178 * Reset the rank_base_address.
2179 *-----------------------------------------------------------------*/
2180 rank_reg = SDRAM_R0BAS;
2181
2182 rank_base_addr = 0x00000000;
2183
2184 for (dimm_num = 0; dimm_num < num_dimm_banks; dimm_num++) {
2185 if (dimm_populated[dimm_num] != SDRAM_NONE) {
2186 num_ranks = spd_read(iic0_dimm_addr[dimm_num], 5);
2187 if ((spd_read(iic0_dimm_addr[dimm_num], 2)) == 0x08)
2188 num_ranks = (num_ranks & 0x0F) + 1;
2189 else
2190 num_ranks = num_ranks & 0x0F;
2191
2192 rank_size_id = spd_read(iic0_dimm_addr[dimm_num], 31);
2193
2194 /*------------------------------------------------------------------
2195 * Set the sizes
2196 *-----------------------------------------------------------------*/
2197 baseadd_size = 0;
Stefan Roese4037ed32007-02-20 10:43:34 +01002198 switch (rank_size_id) {
Stefan Roese8ac41e32008-03-11 15:05:26 +01002199 case 0x01:
2200 baseadd_size |= SDRAM_RXBAS_SDSZ_1024;
2201 total_size = 1024;
2202 break;
Stefan Roese4037ed32007-02-20 10:43:34 +01002203 case 0x02:
Stefan Roese8ac41e32008-03-11 15:05:26 +01002204 baseadd_size |= SDRAM_RXBAS_SDSZ_2048;
2205 total_size = 2048;
Stefan Roese4037ed32007-02-20 10:43:34 +01002206 break;
2207 case 0x04:
Stefan Roese8ac41e32008-03-11 15:05:26 +01002208 baseadd_size |= SDRAM_RXBAS_SDSZ_4096;
2209 total_size = 4096;
Stefan Roese4037ed32007-02-20 10:43:34 +01002210 break;
2211 case 0x08:
2212 baseadd_size |= SDRAM_RXBAS_SDSZ_32;
Stefan Roese8ac41e32008-03-11 15:05:26 +01002213 total_size = 32;
Stefan Roese4037ed32007-02-20 10:43:34 +01002214 break;
2215 case 0x10:
2216 baseadd_size |= SDRAM_RXBAS_SDSZ_64;
Stefan Roese8ac41e32008-03-11 15:05:26 +01002217 total_size = 64;
Stefan Roese4037ed32007-02-20 10:43:34 +01002218 break;
2219 case 0x20:
2220 baseadd_size |= SDRAM_RXBAS_SDSZ_128;
Stefan Roese8ac41e32008-03-11 15:05:26 +01002221 total_size = 128;
Stefan Roese4037ed32007-02-20 10:43:34 +01002222 break;
2223 case 0x40:
2224 baseadd_size |= SDRAM_RXBAS_SDSZ_256;
Stefan Roese8ac41e32008-03-11 15:05:26 +01002225 total_size = 256;
Stefan Roese4037ed32007-02-20 10:43:34 +01002226 break;
2227 case 0x80:
2228 baseadd_size |= SDRAM_RXBAS_SDSZ_512;
Stefan Roese8ac41e32008-03-11 15:05:26 +01002229 total_size = 512;
Stefan Roese4037ed32007-02-20 10:43:34 +01002230 break;
2231 default:
2232 printf("DDR-SDRAM: DIMM %d memory queue configuration.\n",
2233 (unsigned int)dimm_num);
2234 printf("ERROR: Unsupported value for the banksize: %d.\n",
2235 (unsigned int)rank_size_id);
2236 printf("Replace the DIMM module with a supported DIMM.\n\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02002237 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01002238 }
Stefan Roese8ac41e32008-03-11 15:05:26 +01002239 rank_size_bytes = total_size << 20;
Stefan Roese4037ed32007-02-20 10:43:34 +01002240
2241 if ((dimm_populated[dimm_num] != SDRAM_NONE) && (dimm_num == 1))
2242 bank_0_populated = 1;
2243
2244 for (i = 0; i < num_ranks; i++) {
2245 mtdcr_any(rank_reg+i+dimm_num+bank_0_populated,
Stefan Roesedf294492007-03-08 10:06:09 +01002246 (SDRAM_RXBAS_SDBA_ENCODE(rank_base_addr) |
2247 baseadd_size));
Stefan Roese4037ed32007-02-20 10:43:34 +01002248 rank_base_addr += rank_size_bytes;
2249 }
2250 }
2251 }
Stefan Roese8ac41e32008-03-11 15:05:26 +01002252
Prodyut Hazarika079589b2008-08-20 09:38:51 -07002253#if defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
2254 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
2255 defined(CONFIG_460SX)
Stefan Roese8ac41e32008-03-11 15:05:26 +01002256 /*
Prodyut Hazarika079589b2008-08-20 09:38:51 -07002257 * Enable high bandwidth access
Stefan Roese8ac41e32008-03-11 15:05:26 +01002258 * This is currently not used, but with this setup
2259 * it is possible to use it later on in e.g. the Linux
2260 * EMAC driver for performance gain.
2261 */
2262 mtdcr(SDRAM_PLBADDULL, 0x00000000); /* MQ0_BAUL */
2263 mtdcr(SDRAM_PLBADDUHB, 0x00000008); /* MQ0_BAUH */
Prodyut Hazarika079589b2008-08-20 09:38:51 -07002264
2265 /*
2266 * Set optimal value for Memory Queue HB/LL Configuration registers
2267 */
Yuri Tikhonovbf29e0e2008-10-17 12:54:18 +02002268 mtdcr(SDRAM_CONF1HB, (mfdcr(SDRAM_CONF1HB) & ~SDRAM_CONF1HB_MASK) |
2269 SDRAM_CONF1HB_AAFR | SDRAM_CONF1HB_RPEN | SDRAM_CONF1HB_RFTE |
2270 SDRAM_CONF1HB_RPLM | SDRAM_CONF1HB_WRCL);
2271 mtdcr(SDRAM_CONF1LL, (mfdcr(SDRAM_CONF1LL) & ~SDRAM_CONF1LL_MASK) |
2272 SDRAM_CONF1LL_AAFR | SDRAM_CONF1LL_RPEN | SDRAM_CONF1LL_RFTE |
2273 SDRAM_CONF1LL_RPLM);
Stefan Roesef5564832008-08-21 11:05:03 +02002274 mtdcr(SDRAM_CONFPATHB, mfdcr(SDRAM_CONFPATHB) | SDRAM_CONFPATHB_TPEN);
Stefan Roese8ac41e32008-03-11 15:05:26 +01002275#endif
Stefan Roese4037ed32007-02-20 10:43:34 +01002276}
2277
2278/*-----------------------------------------------------------------------------+
2279 * is_ecc_enabled.
2280 *-----------------------------------------------------------------------------*/
2281static unsigned long is_ecc_enabled(void)
2282{
2283 unsigned long dimm_num;
2284 unsigned long ecc;
2285 unsigned long val;
2286
2287 ecc = 0;
2288 /* loop through all the DIMM slots on the board */
2289 for (dimm_num = 0; dimm_num < MAXDIMMS; dimm_num++) {
2290 mfsdram(SDRAM_MCOPT1, val);
2291 ecc = max(ecc, SDRAM_MCOPT1_MCHK_CHK_DECODE(val));
2292 }
2293
Stefan Roesedf294492007-03-08 10:06:09 +01002294 return ecc;
Stefan Roese4037ed32007-02-20 10:43:34 +01002295}
2296
Stefan Roesedf294492007-03-08 10:06:09 +01002297#ifdef CONFIG_DDR_ECC
Stefan Roese4037ed32007-02-20 10:43:34 +01002298/*-----------------------------------------------------------------------------+
2299 * program_ecc.
2300 *-----------------------------------------------------------------------------*/
2301static void program_ecc(unsigned long *dimm_populated,
2302 unsigned char *iic0_dimm_addr,
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002303 unsigned long num_dimm_banks,
2304 unsigned long tlb_word2_i_value)
Stefan Roese4037ed32007-02-20 10:43:34 +01002305{
2306 unsigned long mcopt1;
2307 unsigned long mcopt2;
2308 unsigned long mcstat;
2309 unsigned long dimm_num;
2310 unsigned long ecc;
2311
2312 ecc = 0;
2313 /* loop through all the DIMM slots on the board */
2314 for (dimm_num = 0; dimm_num < MAXDIMMS; dimm_num++) {
2315 /* If a dimm is installed in a particular slot ... */
2316 if (dimm_populated[dimm_num] != SDRAM_NONE)
2317 ecc = max(ecc, spd_read(iic0_dimm_addr[dimm_num], 11));
2318 }
2319 if (ecc == 0)
2320 return;
2321
Stefan Roese5d812b82008-07-09 17:33:57 +02002322 if (sdram_memsize() > CONFIG_MAX_MEM_MAPPED) {
2323 printf("\nWarning: Can't enable ECC on systems with more than 2GB of SDRAM!\n");
2324 return;
2325 }
2326
Stefan Roese4037ed32007-02-20 10:43:34 +01002327 mfsdram(SDRAM_MCOPT1, mcopt1);
2328 mfsdram(SDRAM_MCOPT2, mcopt2);
2329
2330 if ((mcopt1 & SDRAM_MCOPT1_MCHK_MASK) != SDRAM_MCOPT1_MCHK_NON) {
2331 /* DDR controller must be enabled and not in self-refresh. */
2332 mfsdram(SDRAM_MCSTAT, mcstat);
2333 if (((mcopt2 & SDRAM_MCOPT2_DCEN_MASK) == SDRAM_MCOPT2_DCEN_ENABLE)
2334 && ((mcopt2 & SDRAM_MCOPT2_SREN_MASK) == SDRAM_MCOPT2_SREN_EXIT)
2335 && ((mcstat & (SDRAM_MCSTAT_MIC_MASK | SDRAM_MCSTAT_SRMS_MASK))
2336 == (SDRAM_MCSTAT_MIC_COMP | SDRAM_MCSTAT_SRMS_NOT_SF))) {
2337
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002338 program_ecc_addr(0, sdram_memsize(), tlb_word2_i_value);
Stefan Roese4037ed32007-02-20 10:43:34 +01002339 }
2340 }
2341
2342 return;
2343}
2344
Stefan Roesedf294492007-03-08 10:06:09 +01002345static void wait_ddr_idle(void)
2346{
2347 u32 val;
2348
2349 do {
2350 mfsdram(SDRAM_MCSTAT, val);
2351 } while ((val & SDRAM_MCSTAT_IDLE_MASK) == SDRAM_MCSTAT_IDLE_NOT);
2352}
2353
Stefan Roese4037ed32007-02-20 10:43:34 +01002354/*-----------------------------------------------------------------------------+
2355 * program_ecc_addr.
2356 *-----------------------------------------------------------------------------*/
2357static void program_ecc_addr(unsigned long start_address,
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002358 unsigned long num_bytes,
2359 unsigned long tlb_word2_i_value)
Stefan Roese4037ed32007-02-20 10:43:34 +01002360{
2361 unsigned long current_address;
2362 unsigned long end_address;
2363 unsigned long address_increment;
2364 unsigned long mcopt1;
Stefan Roese94f54702007-03-31 08:46:08 +02002365 char str[] = "ECC generation -";
2366 char slash[] = "\\|/-\\|/-";
2367 int loop = 0;
2368 int loopi = 0;
Stefan Roese4037ed32007-02-20 10:43:34 +01002369
2370 current_address = start_address;
2371 mfsdram(SDRAM_MCOPT1, mcopt1);
2372 if ((mcopt1 & SDRAM_MCOPT1_MCHK_MASK) != SDRAM_MCOPT1_MCHK_NON) {
2373 mtsdram(SDRAM_MCOPT1,
2374 (mcopt1 & ~SDRAM_MCOPT1_MCHK_MASK) | SDRAM_MCOPT1_MCHK_GEN);
2375 sync();
2376 eieio();
2377 wait_ddr_idle();
2378
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002379 puts(str);
2380 if (tlb_word2_i_value == TLB_WORD2_I_ENABLE) {
2381 /* ECC bit set method for non-cached memory */
2382 if ((mcopt1 & SDRAM_MCOPT1_DMWD_MASK) == SDRAM_MCOPT1_DMWD_32)
2383 address_increment = 4;
2384 else
2385 address_increment = 8;
2386 end_address = current_address + num_bytes;
Stefan Roese4037ed32007-02-20 10:43:34 +01002387
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002388 while (current_address < end_address) {
2389 *((unsigned long *)current_address) = 0x00000000;
2390 current_address += address_increment;
Stefan Roese94f54702007-03-31 08:46:08 +02002391
2392 if ((loop++ % (2 << 20)) == 0) {
2393 putc('\b');
2394 putc(slash[loopi++ % 8]);
2395 }
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002396 }
Stefan Roese94f54702007-03-31 08:46:08 +02002397
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002398 } else {
2399 /* ECC bit set method for cached memory */
2400 dcbz_area(start_address, num_bytes);
Stefan Roese85ad1842008-04-29 13:57:07 +02002401 /* Write modified dcache lines back to memory */
2402 clean_dcache_range(start_address, start_address + num_bytes);
Stefan Roese4037ed32007-02-20 10:43:34 +01002403 }
Stefan Roese94f54702007-03-31 08:46:08 +02002404
2405 blank_string(strlen(str));
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002406
Stefan Roese4037ed32007-02-20 10:43:34 +01002407 sync();
2408 eieio();
2409 wait_ddr_idle();
2410
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002411 /* clear ECC error repoting registers */
2412 mtsdram(SDRAM_ECCCR, 0xffffffff);
2413 mtdcr(0x4c, 0xffffffff);
2414
Stefan Roese4037ed32007-02-20 10:43:34 +01002415 mtsdram(SDRAM_MCOPT1,
Stefan Roeseba58e4c2007-03-01 21:11:36 +01002416 (mcopt1 & ~SDRAM_MCOPT1_MCHK_MASK) | SDRAM_MCOPT1_MCHK_CHK_REP);
Stefan Roese4037ed32007-02-20 10:43:34 +01002417 sync();
2418 eieio();
2419 wait_ddr_idle();
Stefan Roese4037ed32007-02-20 10:43:34 +01002420 }
2421}
Stefan Roesedf294492007-03-08 10:06:09 +01002422#endif
Stefan Roese4037ed32007-02-20 10:43:34 +01002423
Adam Grahamf6b6c452008-09-03 12:26:59 -07002424#if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
Stefan Roese4037ed32007-02-20 10:43:34 +01002425/*-----------------------------------------------------------------------------+
2426 * program_DQS_calibration.
2427 *-----------------------------------------------------------------------------*/
2428static void program_DQS_calibration(unsigned long *dimm_populated,
2429 unsigned char *iic0_dimm_addr,
2430 unsigned long num_dimm_banks)
2431{
2432 unsigned long val;
2433
2434#ifdef HARD_CODED_DQS /* calibration test with hardvalues */
2435 mtsdram(SDRAM_RQDC, 0x80000037);
2436 mtsdram(SDRAM_RDCC, 0x40000000);
2437 mtsdram(SDRAM_RFDC, 0x000001DF);
2438
2439 test();
2440#else
2441 /*------------------------------------------------------------------
2442 * Program RDCC register
2443 * Read sample cycle auto-update enable
2444 *-----------------------------------------------------------------*/
2445
Stefan Roese4037ed32007-02-20 10:43:34 +01002446 mfsdram(SDRAM_RDCC, val);
2447 mtsdram(SDRAM_RDCC,
2448 (val & ~(SDRAM_RDCC_RDSS_MASK | SDRAM_RDCC_RSAE_MASK))
Stefan Roese845c6c92008-01-05 09:12:41 +01002449 | SDRAM_RDCC_RSAE_ENABLE);
Stefan Roese4037ed32007-02-20 10:43:34 +01002450
2451 /*------------------------------------------------------------------
2452 * Program RQDC register
2453 * Internal DQS delay mechanism enable
2454 *-----------------------------------------------------------------*/
2455 mtsdram(SDRAM_RQDC, (SDRAM_RQDC_RQDE_ENABLE|SDRAM_RQDC_RQFD_ENCODE(0x38)));
2456
2457 /*------------------------------------------------------------------
2458 * Program RFDC register
2459 * Set Feedback Fractional Oversample
2460 * Auto-detect read sample cycle enable
Prodyut Hazarika04737d52008-08-27 16:39:00 -07002461 * Set RFOS to 1/4 of memclk cycle (0x3f)
Stefan Roese4037ed32007-02-20 10:43:34 +01002462 *-----------------------------------------------------------------*/
2463 mfsdram(SDRAM_RFDC, val);
2464 mtsdram(SDRAM_RFDC,
2465 (val & ~(SDRAM_RFDC_ARSE_MASK | SDRAM_RFDC_RFOS_MASK |
2466 SDRAM_RFDC_RFFD_MASK))
Prodyut Hazarika04737d52008-08-27 16:39:00 -07002467 | (SDRAM_RFDC_ARSE_ENABLE | SDRAM_RFDC_RFOS_ENCODE(0x3f) |
Stefan Roese4037ed32007-02-20 10:43:34 +01002468 SDRAM_RFDC_RFFD_ENCODE(0)));
2469
2470 DQS_calibration_process();
2471#endif
2472}
2473
Stefan Roese94f54702007-03-31 08:46:08 +02002474static int short_mem_test(void)
Stefan Roese4037ed32007-02-20 10:43:34 +01002475{
2476 u32 *membase;
2477 u32 bxcr_num;
2478 u32 bxcf;
2479 int i;
2480 int j;
Stefan Roese5d812b82008-07-09 17:33:57 +02002481 phys_size_t base_addr;
Stefan Roese4037ed32007-02-20 10:43:34 +01002482 u32 test[NUMMEMTESTS][NUMMEMWORDS] = {
2483 {0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
2484 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF},
2485 {0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
2486 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000},
2487 {0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
2488 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555},
2489 {0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
2490 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA},
2491 {0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
2492 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A},
2493 {0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
2494 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5},
2495 {0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
2496 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA},
2497 {0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55,
2498 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55} };
Stefan Roese94f54702007-03-31 08:46:08 +02002499 int l;
Stefan Roese4037ed32007-02-20 10:43:34 +01002500
2501 for (bxcr_num = 0; bxcr_num < MAXBXCF; bxcr_num++) {
2502 mfsdram(SDRAM_MB0CF + (bxcr_num << 2), bxcf);
2503
2504 /* Banks enabled */
2505 if ((bxcf & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
Stefan Roese4037ed32007-02-20 10:43:34 +01002506 /* Bank is enabled */
Stefan Roese4037ed32007-02-20 10:43:34 +01002507
Stefan Roese5d812b82008-07-09 17:33:57 +02002508 /*
2509 * Only run test on accessable memory (below 2GB)
2510 */
2511 base_addr = SDRAM_RXBAS_SDBA_DECODE(mfdcr_any(SDRAM_R0BAS+bxcr_num));
2512 if (base_addr >= CONFIG_MAX_MEM_MAPPED)
2513 continue;
2514
Stefan Roese4037ed32007-02-20 10:43:34 +01002515 /*------------------------------------------------------------------
2516 * Run the short memory test.
2517 *-----------------------------------------------------------------*/
Stefan Roese5d812b82008-07-09 17:33:57 +02002518 membase = (u32 *)(u32)base_addr;
Stefan Roese94f54702007-03-31 08:46:08 +02002519
Stefan Roese4037ed32007-02-20 10:43:34 +01002520 for (i = 0; i < NUMMEMTESTS; i++) {
2521 for (j = 0; j < NUMMEMWORDS; j++) {
2522 membase[j] = test[i][j];
2523 ppcDcbf((u32)&(membase[j]));
2524 }
2525 sync();
Stefan Roese94f54702007-03-31 08:46:08 +02002526 for (l=0; l<NUMLOOPS; l++) {
2527 for (j = 0; j < NUMMEMWORDS; j++) {
2528 if (membase[j] != test[i][j]) {
2529 ppcDcbf((u32)&(membase[j]));
2530 return 0;
2531 }
Stefan Roese4037ed32007-02-20 10:43:34 +01002532 ppcDcbf((u32)&(membase[j]));
Stefan Roese4037ed32007-02-20 10:43:34 +01002533 }
Stefan Roese94f54702007-03-31 08:46:08 +02002534 sync();
Stefan Roese4037ed32007-02-20 10:43:34 +01002535 }
Stefan Roese4037ed32007-02-20 10:43:34 +01002536 }
Stefan Roese4037ed32007-02-20 10:43:34 +01002537 } /* if bank enabled */
2538 } /* for bxcf_num */
2539
Stefan Roese94f54702007-03-31 08:46:08 +02002540 return 1;
Stefan Roese4037ed32007-02-20 10:43:34 +01002541}
2542
2543#ifndef HARD_CODED_DQS
2544/*-----------------------------------------------------------------------------+
2545 * DQS_calibration_process.
2546 *-----------------------------------------------------------------------------*/
2547static void DQS_calibration_process(void)
2548{
Stefan Roese4037ed32007-02-20 10:43:34 +01002549 unsigned long rfdc_reg;
2550 unsigned long rffd;
Stefan Roese4037ed32007-02-20 10:43:34 +01002551 unsigned long val;
Stefan Roese4037ed32007-02-20 10:43:34 +01002552 long rffd_average;
2553 long max_start;
2554 long min_end;
2555 unsigned long begin_rqfd[MAXRANKS];
2556 unsigned long begin_rffd[MAXRANKS];
2557 unsigned long end_rqfd[MAXRANKS];
2558 unsigned long end_rffd[MAXRANKS];
2559 char window_found;
2560 unsigned long dlycal;
2561 unsigned long dly_val;
2562 unsigned long max_pass_length;
2563 unsigned long current_pass_length;
2564 unsigned long current_fail_length;
2565 unsigned long current_start;
2566 long max_end;
2567 unsigned char fail_found;
2568 unsigned char pass_found;
Stefan Roese845c6c92008-01-05 09:12:41 +01002569#if !defined(CONFIG_DDR_RQDC_FIXED)
2570 u32 rqdc_reg;
2571 u32 rqfd;
Stefan Roese94f54702007-03-31 08:46:08 +02002572 u32 rqfd_start;
Stefan Roese845c6c92008-01-05 09:12:41 +01002573 u32 rqfd_average;
2574 int loopi = 0;
Stefan Roese94f54702007-03-31 08:46:08 +02002575 char str[] = "Auto calibration -";
2576 char slash[] = "\\|/-\\|/-";
Stefan Roese4037ed32007-02-20 10:43:34 +01002577
2578 /*------------------------------------------------------------------
2579 * Test to determine the best read clock delay tuning bits.
2580 *
2581 * Before the DDR controller can be used, the read clock delay needs to be
2582 * set. This is SDRAM_RQDC[RQFD] and SDRAM_RFDC[RFFD].
2583 * This value cannot be hardcoded into the program because it changes
2584 * depending on the board's setup and environment.
2585 * To do this, all delay values are tested to see if they
2586 * work or not. By doing this, you get groups of fails with groups of
2587 * passing values. The idea is to find the start and end of a passing
2588 * window and take the center of it to use as the read clock delay.
2589 *
2590 * A failure has to be seen first so that when we hit a pass, we know
2591 * that it is truely the start of the window. If we get passing values
2592 * to start off with, we don't know if we are at the start of the window.
2593 *
2594 * The code assumes that a failure will always be found.
2595 * If a failure is not found, there is no easy way to get the middle
2596 * of the passing window. I guess we can pretty much pick any value
2597 * but some values will be better than others. Since the lowest speed
2598 * we can clock the DDR interface at is 200 MHz (2x 100 MHz PLB speed),
2599 * from experimentation it is safe to say you will always have a failure.
2600 *-----------------------------------------------------------------*/
Stefan Roese94f54702007-03-31 08:46:08 +02002601
2602 /* first fix RQDC[RQFD] to an average of 80 degre phase shift to find RFDC[RFFD] */
2603 rqfd_start = 64; /* test-only: don't know if this is the _best_ start value */
2604
2605 puts(str);
2606
2607calibration_loop:
2608 mfsdram(SDRAM_RQDC, rqdc_reg);
2609 mtsdram(SDRAM_RQDC, (rqdc_reg & ~SDRAM_RQDC_RQFD_MASK) |
2610 SDRAM_RQDC_RQFD_ENCODE(rqfd_start));
Stefan Roese845c6c92008-01-05 09:12:41 +01002611#else /* CONFIG_DDR_RQDC_FIXED */
2612 /*
2613 * On Katmai the complete auto-calibration somehow doesn't seem to
2614 * produce the best results, meaning optimal values for RQFD/RFFD.
2615 * This was discovered by GDA using a high bandwidth scope,
2616 * analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
2617 * so now on Katmai "only" RFFD is auto-calibrated.
2618 */
2619 mtsdram(SDRAM_RQDC, CONFIG_DDR_RQDC_FIXED);
2620#endif /* CONFIG_DDR_RQDC_FIXED */
Stefan Roese4037ed32007-02-20 10:43:34 +01002621
2622 max_start = 0;
2623 min_end = 0;
2624 begin_rqfd[0] = 0;
2625 begin_rffd[0] = 0;
2626 begin_rqfd[1] = 0;
2627 begin_rffd[1] = 0;
2628 end_rqfd[0] = 0;
2629 end_rffd[0] = 0;
2630 end_rqfd[1] = 0;
2631 end_rffd[1] = 0;
2632 window_found = FALSE;
2633
2634 max_pass_length = 0;
2635 max_start = 0;
2636 max_end = 0;
2637 current_pass_length = 0;
2638 current_fail_length = 0;
2639 current_start = 0;
2640 window_found = FALSE;
2641 fail_found = FALSE;
2642 pass_found = FALSE;
2643
Stefan Roese4037ed32007-02-20 10:43:34 +01002644 /*
2645 * get the delay line calibration register value
2646 */
2647 mfsdram(SDRAM_DLCR, dlycal);
2648 dly_val = SDRAM_DLYCAL_DLCV_DECODE(dlycal) << 2;
2649
2650 for (rffd = 0; rffd <= SDRAM_RFDC_RFFD_MAX; rffd++) {
2651 mfsdram(SDRAM_RFDC, rfdc_reg);
2652 rfdc_reg &= ~(SDRAM_RFDC_RFFD_MASK);
2653
2654 /*------------------------------------------------------------------
2655 * Set the timing reg for the test.
2656 *-----------------------------------------------------------------*/
2657 mtsdram(SDRAM_RFDC, rfdc_reg | SDRAM_RFDC_RFFD_ENCODE(rffd));
2658
Stefan Roese4037ed32007-02-20 10:43:34 +01002659 /*------------------------------------------------------------------
2660 * See if the rffd value passed.
2661 *-----------------------------------------------------------------*/
Stefan Roese94f54702007-03-31 08:46:08 +02002662 if (short_mem_test()) {
Stefan Roese4037ed32007-02-20 10:43:34 +01002663 if (fail_found == TRUE) {
2664 pass_found = TRUE;
2665 if (current_pass_length == 0)
2666 current_start = rffd;
2667
2668 current_fail_length = 0;
2669 current_pass_length++;
2670
2671 if (current_pass_length > max_pass_length) {
2672 max_pass_length = current_pass_length;
2673 max_start = current_start;
2674 max_end = rffd;
2675 }
2676 }
2677 } else {
2678 current_pass_length = 0;
2679 current_fail_length++;
2680
2681 if (current_fail_length >= (dly_val >> 2)) {
2682 if (fail_found == FALSE) {
2683 fail_found = TRUE;
2684 } else if (pass_found == TRUE) {
2685 window_found = TRUE;
2686 break;
2687 }
2688 }
2689 }
2690 } /* for rffd */
2691
Stefan Roese4037ed32007-02-20 10:43:34 +01002692 /*------------------------------------------------------------------
2693 * Set the average RFFD value
2694 *-----------------------------------------------------------------*/
2695 rffd_average = ((max_start + max_end) >> 1);
2696
2697 if (rffd_average < 0)
2698 rffd_average = 0;
2699
2700 if (rffd_average > SDRAM_RFDC_RFFD_MAX)
2701 rffd_average = SDRAM_RFDC_RFFD_MAX;
2702 /* now fix RFDC[RFFD] found and find RQDC[RQFD] */
2703 mtsdram(SDRAM_RFDC, rfdc_reg | SDRAM_RFDC_RFFD_ENCODE(rffd_average));
2704
Stefan Roese845c6c92008-01-05 09:12:41 +01002705#if !defined(CONFIG_DDR_RQDC_FIXED)
Stefan Roese4037ed32007-02-20 10:43:34 +01002706 max_pass_length = 0;
2707 max_start = 0;
2708 max_end = 0;
2709 current_pass_length = 0;
2710 current_fail_length = 0;
2711 current_start = 0;
2712 window_found = FALSE;
2713 fail_found = FALSE;
2714 pass_found = FALSE;
2715
2716 for (rqfd = 0; rqfd <= SDRAM_RQDC_RQFD_MAX; rqfd++) {
2717 mfsdram(SDRAM_RQDC, rqdc_reg);
2718 rqdc_reg &= ~(SDRAM_RQDC_RQFD_MASK);
2719
2720 /*------------------------------------------------------------------
2721 * Set the timing reg for the test.
2722 *-----------------------------------------------------------------*/
2723 mtsdram(SDRAM_RQDC, rqdc_reg | SDRAM_RQDC_RQFD_ENCODE(rqfd));
2724
Stefan Roese4037ed32007-02-20 10:43:34 +01002725 /*------------------------------------------------------------------
2726 * See if the rffd value passed.
2727 *-----------------------------------------------------------------*/
Stefan Roese94f54702007-03-31 08:46:08 +02002728 if (short_mem_test()) {
Stefan Roese4037ed32007-02-20 10:43:34 +01002729 if (fail_found == TRUE) {
2730 pass_found = TRUE;
2731 if (current_pass_length == 0)
2732 current_start = rqfd;
2733
2734 current_fail_length = 0;
2735 current_pass_length++;
2736
2737 if (current_pass_length > max_pass_length) {
2738 max_pass_length = current_pass_length;
2739 max_start = current_start;
2740 max_end = rqfd;
2741 }
2742 }
2743 } else {
2744 current_pass_length = 0;
2745 current_fail_length++;
2746
2747 if (fail_found == FALSE) {
2748 fail_found = TRUE;
2749 } else if (pass_found == TRUE) {
2750 window_found = TRUE;
2751 break;
2752 }
2753 }
2754 }
2755
Stefan Roese94f54702007-03-31 08:46:08 +02002756 rqfd_average = ((max_start + max_end) >> 1);
2757
Stefan Roese4037ed32007-02-20 10:43:34 +01002758 /*------------------------------------------------------------------
2759 * Make sure we found the valid read passing window. Halt if not
2760 *-----------------------------------------------------------------*/
2761 if (window_found == FALSE) {
Stefan Roese94f54702007-03-31 08:46:08 +02002762 if (rqfd_start < SDRAM_RQDC_RQFD_MAX) {
2763 putc('\b');
2764 putc(slash[loopi++ % 8]);
2765
2766 /* try again from with a different RQFD start value */
2767 rqfd_start++;
2768 goto calibration_loop;
2769 }
2770
2771 printf("\nERROR: Cannot determine a common read delay for the "
Stefan Roese4037ed32007-02-20 10:43:34 +01002772 "DIMM(s) installed.\n");
2773 debug("%s[%d] ERROR : \n", __FUNCTION__,__LINE__);
Grant Erickson2e205082008-07-09 16:46:35 -07002774 ppc4xx_ibm_ddr2_register_dump();
Heiko Schochera5d71e22007-06-25 19:11:37 +02002775 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01002776 }
2777
Stefan Roese4037ed32007-02-20 10:43:34 +01002778 if (rqfd_average < 0)
2779 rqfd_average = 0;
2780
2781 if (rqfd_average > SDRAM_RQDC_RQFD_MAX)
2782 rqfd_average = SDRAM_RQDC_RQFD_MAX;
2783
Stefan Roese4037ed32007-02-20 10:43:34 +01002784 mtsdram(SDRAM_RQDC,
2785 (rqdc_reg & ~SDRAM_RQDC_RQFD_MASK) |
2786 SDRAM_RQDC_RQFD_ENCODE(rqfd_average));
2787
Stefan Roese845c6c92008-01-05 09:12:41 +01002788 blank_string(strlen(str));
2789#endif /* CONFIG_DDR_RQDC_FIXED */
2790
2791 /*
2792 * Now complete RDSS configuration as mentioned on page 7 of the AMCC
2793 * PowerPC440SP/SPe DDR2 application note:
2794 * "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
2795 */
2796 mfsdram(SDRAM_RTSR, val);
2797 if ((val & SDRAM_RTSR_TRK1SM_MASK) == SDRAM_RTSR_TRK1SM_ATPLS1) {
2798 mfsdram(SDRAM_RDCC, val);
2799 if ((val & SDRAM_RDCC_RDSS_MASK) != SDRAM_RDCC_RDSS_T4) {
2800 val += 0x40000000;
2801 mtsdram(SDRAM_RDCC, val);
2802 }
2803 }
2804
Stefan Roese4037ed32007-02-20 10:43:34 +01002805 mfsdram(SDRAM_DLCR, val);
2806 debug("%s[%d] DLCR: 0x%08X\n", __FUNCTION__, __LINE__, val);
2807 mfsdram(SDRAM_RQDC, val);
2808 debug("%s[%d] RQDC: 0x%08X\n", __FUNCTION__, __LINE__, val);
2809 mfsdram(SDRAM_RFDC, val);
2810 debug("%s[%d] RFDC: 0x%08X\n", __FUNCTION__, __LINE__, val);
Stefan Roese845c6c92008-01-05 09:12:41 +01002811 mfsdram(SDRAM_RDCC, val);
2812 debug("%s[%d] RDCC: 0x%08X\n", __FUNCTION__, __LINE__, val);
Stefan Roese4037ed32007-02-20 10:43:34 +01002813}
2814#else /* calibration test with hardvalues */
2815/*-----------------------------------------------------------------------------+
2816 * DQS_calibration_process.
2817 *-----------------------------------------------------------------------------*/
2818static void test(void)
2819{
2820 unsigned long dimm_num;
2821 unsigned long ecc_temp;
2822 unsigned long i, j;
2823 unsigned long *membase;
2824 unsigned long bxcf[MAXRANKS];
2825 unsigned long val;
2826 char window_found;
2827 char begin_found[MAXDIMMS];
2828 char end_found[MAXDIMMS];
2829 char search_end[MAXDIMMS];
2830 unsigned long test[NUMMEMTESTS][NUMMEMWORDS] = {
2831 {0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
2832 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF},
2833 {0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
2834 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000},
2835 {0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
2836 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555},
2837 {0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
2838 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA},
2839 {0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
2840 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A},
2841 {0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
2842 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5},
2843 {0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
2844 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA},
2845 {0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55,
2846 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55} };
2847
2848 /*------------------------------------------------------------------
2849 * Test to determine the best read clock delay tuning bits.
2850 *
2851 * Before the DDR controller can be used, the read clock delay needs to be
2852 * set. This is SDRAM_RQDC[RQFD] and SDRAM_RFDC[RFFD].
2853 * This value cannot be hardcoded into the program because it changes
2854 * depending on the board's setup and environment.
2855 * To do this, all delay values are tested to see if they
2856 * work or not. By doing this, you get groups of fails with groups of
2857 * passing values. The idea is to find the start and end of a passing
2858 * window and take the center of it to use as the read clock delay.
2859 *
2860 * A failure has to be seen first so that when we hit a pass, we know
2861 * that it is truely the start of the window. If we get passing values
2862 * to start off with, we don't know if we are at the start of the window.
2863 *
2864 * The code assumes that a failure will always be found.
2865 * If a failure is not found, there is no easy way to get the middle
2866 * of the passing window. I guess we can pretty much pick any value
2867 * but some values will be better than others. Since the lowest speed
2868 * we can clock the DDR interface at is 200 MHz (2x 100 MHz PLB speed),
2869 * from experimentation it is safe to say you will always have a failure.
2870 *-----------------------------------------------------------------*/
2871 mfsdram(SDRAM_MCOPT1, ecc_temp);
2872 ecc_temp &= SDRAM_MCOPT1_MCHK_MASK;
2873 mfsdram(SDRAM_MCOPT1, val);
2874 mtsdram(SDRAM_MCOPT1, (val & ~SDRAM_MCOPT1_MCHK_MASK) |
2875 SDRAM_MCOPT1_MCHK_NON);
2876
2877 window_found = FALSE;
2878 begin_found[0] = FALSE;
2879 end_found[0] = FALSE;
2880 search_end[0] = FALSE;
2881 begin_found[1] = FALSE;
2882 end_found[1] = FALSE;
2883 search_end[1] = FALSE;
2884
2885 for (dimm_num = 0; dimm_num < MAXDIMMS; dimm_num++) {
2886 mfsdram(SDRAM_MB0CF + (bxcr_num << 2), bxcf[bxcr_num]);
2887
2888 /* Banks enabled */
2889 if ((bxcf[dimm_num] & SDRAM_BXCF_M_BE_MASK) == SDRAM_BXCF_M_BE_ENABLE) {
2890
2891 /* Bank is enabled */
2892 membase =
2893 (unsigned long*)(SDRAM_RXBAS_SDBA_DECODE(mfdcr_any(SDRAM_R0BAS+dimm_num)));
2894
2895 /*------------------------------------------------------------------
2896 * Run the short memory test.
2897 *-----------------------------------------------------------------*/
2898 for (i = 0; i < NUMMEMTESTS; i++) {
2899 for (j = 0; j < NUMMEMWORDS; j++) {
2900 membase[j] = test[i][j];
2901 ppcDcbf((u32)&(membase[j]));
2902 }
2903 sync();
2904 for (j = 0; j < NUMMEMWORDS; j++) {
2905 if (membase[j] != test[i][j]) {
2906 ppcDcbf((u32)&(membase[j]));
2907 break;
2908 }
2909 ppcDcbf((u32)&(membase[j]));
2910 }
2911 sync();
2912 if (j < NUMMEMWORDS)
2913 break;
2914 }
2915
2916 /*------------------------------------------------------------------
2917 * See if the rffd value passed.
2918 *-----------------------------------------------------------------*/
2919 if (i < NUMMEMTESTS) {
2920 if ((end_found[dimm_num] == FALSE) &&
2921 (search_end[dimm_num] == TRUE)) {
2922 end_found[dimm_num] = TRUE;
2923 }
2924 if ((end_found[0] == TRUE) &&
2925 (end_found[1] == TRUE))
2926 break;
2927 } else {
2928 if (begin_found[dimm_num] == FALSE) {
2929 begin_found[dimm_num] = TRUE;
2930 search_end[dimm_num] = TRUE;
2931 }
2932 }
2933 } else {
2934 begin_found[dimm_num] = TRUE;
2935 end_found[dimm_num] = TRUE;
2936 }
2937 }
2938
2939 if ((begin_found[0] == TRUE) && (begin_found[1] == TRUE))
2940 window_found = TRUE;
2941
2942 /*------------------------------------------------------------------
2943 * Make sure we found the valid read passing window. Halt if not
2944 *-----------------------------------------------------------------*/
2945 if (window_found == FALSE) {
2946 printf("ERROR: Cannot determine a common read delay for the "
2947 "DIMM(s) installed.\n");
Heiko Schochera5d71e22007-06-25 19:11:37 +02002948 spd_ddr_init_hang ();
Stefan Roese4037ed32007-02-20 10:43:34 +01002949 }
2950
2951 /*------------------------------------------------------------------
2952 * Restore the ECC variable to what it originally was
2953 *-----------------------------------------------------------------*/
2954 mtsdram(SDRAM_MCOPT1,
2955 (ppcMfdcr_sdram(SDRAM_MCOPT1) & ~SDRAM_MCOPT1_MCHK_MASK)
2956 | ecc_temp);
2957}
Adam Grahamf6b6c452008-09-03 12:26:59 -07002958#endif /* !HARD_CODED_DQS */
2959#endif /* !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION) */
Stefan Roese4037ed32007-02-20 10:43:34 +01002960
Stefan Roese08250eb2008-07-10 15:32:32 +02002961#else /* CONFIG_SPD_EEPROM */
2962
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002963/*-----------------------------------------------------------------------------
2964 * Function: initdram
Adam Graham59217ba2008-10-08 10:13:14 -07002965 * Description: Configures the PPC4xx IBM DDR1/DDR2 SDRAM memory controller.
2966 * The configuration is performed using static, compile-
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002967 * time parameters.
Adam Graham59217ba2008-10-08 10:13:14 -07002968 * Configures the PPC405EX(r) and PPC460EX/GT
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002969 *---------------------------------------------------------------------------*/
Becky Bruce9973e3c2008-06-09 16:03:40 -05002970phys_size_t initdram(int board_type)
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002971{
Stefan Roeseec724f82008-06-02 17:13:55 +02002972 /*
2973 * Only run this SDRAM init code once. For NAND booting
2974 * targets like Kilauea, we call initdram() early from the
2975 * 4k NAND booting image (CONFIG_NAND_SPL) from nand_boot().
2976 * Later on the NAND U-Boot image runs (CONFIG_NAND_U_BOOT)
2977 * which calls initdram() again. This time the controller
2978 * mustn't be reconfigured again since we're already running
2979 * from SDRAM.
2980 */
2981#if !defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002982 unsigned long val;
2983
Adam Graham59217ba2008-10-08 10:13:14 -07002984#if defined(CONFIG_440)
2985 mtdcr(SDRAM_R0BAS, CONFIG_SYS_SDRAM_R0BAS);
2986 mtdcr(SDRAM_R1BAS, CONFIG_SYS_SDRAM_R1BAS);
2987 mtdcr(SDRAM_R2BAS, CONFIG_SYS_SDRAM_R2BAS);
2988 mtdcr(SDRAM_R3BAS, CONFIG_SYS_SDRAM_R3BAS);
2989 mtdcr(SDRAM_PLBADDULL, CONFIG_SYS_SDRAM_PLBADDULL); /* MQ0_BAUL */
2990 mtdcr(SDRAM_PLBADDUHB, CONFIG_SYS_SDRAM_PLBADDUHB); /* MQ0_BAUH */
2991 mtdcr(SDRAM_CONF1LL, CONFIG_SYS_SDRAM_CONF1LL);
2992 mtdcr(SDRAM_CONF1HB, CONFIG_SYS_SDRAM_CONF1HB);
2993 mtdcr(SDRAM_CONFPATHB, CONFIG_SYS_SDRAM_CONFPATHB);
2994#endif
2995
Grant Ericksonc821b5f2008-05-22 14:44:14 -07002996 /* Set Memory Bank Configuration Registers */
2997
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002998 mtsdram(SDRAM_MB0CF, CONFIG_SYS_SDRAM0_MB0CF);
2999 mtsdram(SDRAM_MB1CF, CONFIG_SYS_SDRAM0_MB1CF);
3000 mtsdram(SDRAM_MB2CF, CONFIG_SYS_SDRAM0_MB2CF);
3001 mtsdram(SDRAM_MB3CF, CONFIG_SYS_SDRAM0_MB3CF);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003002
3003 /* Set Memory Clock Timing Register */
3004
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003005 mtsdram(SDRAM_CLKTR, CONFIG_SYS_SDRAM0_CLKTR);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003006
3007 /* Set Refresh Time Register */
3008
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003009 mtsdram(SDRAM_RTR, CONFIG_SYS_SDRAM0_RTR);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003010
3011 /* Set SDRAM Timing Registers */
3012
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003013 mtsdram(SDRAM_SDTR1, CONFIG_SYS_SDRAM0_SDTR1);
3014 mtsdram(SDRAM_SDTR2, CONFIG_SYS_SDRAM0_SDTR2);
3015 mtsdram(SDRAM_SDTR3, CONFIG_SYS_SDRAM0_SDTR3);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003016
3017 /* Set Mode and Extended Mode Registers */
3018
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003019 mtsdram(SDRAM_MMODE, CONFIG_SYS_SDRAM0_MMODE);
3020 mtsdram(SDRAM_MEMODE, CONFIG_SYS_SDRAM0_MEMODE);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003021
3022 /* Set Memory Controller Options 1 Register */
3023
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003024 mtsdram(SDRAM_MCOPT1, CONFIG_SYS_SDRAM0_MCOPT1);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003025
3026 /* Set Manual Initialization Control Registers */
3027
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003028 mtsdram(SDRAM_INITPLR0, CONFIG_SYS_SDRAM0_INITPLR0);
3029 mtsdram(SDRAM_INITPLR1, CONFIG_SYS_SDRAM0_INITPLR1);
3030 mtsdram(SDRAM_INITPLR2, CONFIG_SYS_SDRAM0_INITPLR2);
3031 mtsdram(SDRAM_INITPLR3, CONFIG_SYS_SDRAM0_INITPLR3);
3032 mtsdram(SDRAM_INITPLR4, CONFIG_SYS_SDRAM0_INITPLR4);
3033 mtsdram(SDRAM_INITPLR5, CONFIG_SYS_SDRAM0_INITPLR5);
3034 mtsdram(SDRAM_INITPLR6, CONFIG_SYS_SDRAM0_INITPLR6);
3035 mtsdram(SDRAM_INITPLR7, CONFIG_SYS_SDRAM0_INITPLR7);
3036 mtsdram(SDRAM_INITPLR8, CONFIG_SYS_SDRAM0_INITPLR8);
3037 mtsdram(SDRAM_INITPLR9, CONFIG_SYS_SDRAM0_INITPLR9);
3038 mtsdram(SDRAM_INITPLR10, CONFIG_SYS_SDRAM0_INITPLR10);
3039 mtsdram(SDRAM_INITPLR11, CONFIG_SYS_SDRAM0_INITPLR11);
3040 mtsdram(SDRAM_INITPLR12, CONFIG_SYS_SDRAM0_INITPLR12);
3041 mtsdram(SDRAM_INITPLR13, CONFIG_SYS_SDRAM0_INITPLR13);
3042 mtsdram(SDRAM_INITPLR14, CONFIG_SYS_SDRAM0_INITPLR14);
3043 mtsdram(SDRAM_INITPLR15, CONFIG_SYS_SDRAM0_INITPLR15);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003044
3045 /* Set On-Die Termination Registers */
3046
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003047 mtsdram(SDRAM_CODT, CONFIG_SYS_SDRAM0_CODT);
3048 mtsdram(SDRAM_MODT0, CONFIG_SYS_SDRAM0_MODT0);
3049 mtsdram(SDRAM_MODT1, CONFIG_SYS_SDRAM0_MODT1);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003050
3051 /* Set Write Timing Register */
3052
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003053 mtsdram(SDRAM_WRDTR, CONFIG_SYS_SDRAM0_WRDTR);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003054
3055 /*
3056 * Start Initialization by SDRAM0_MCOPT2[SREN] = 0 and
3057 * SDRAM0_MCOPT2[IPTR] = 1
3058 */
3059
3060 mtsdram(SDRAM_MCOPT2, (SDRAM_MCOPT2_SREN_EXIT |
3061 SDRAM_MCOPT2_IPTR_EXECUTE));
3062
3063 /*
3064 * Poll SDRAM0_MCSTAT[MIC] for assertion to indicate the
3065 * completion of initialization.
3066 */
3067
3068 do {
3069 mfsdram(SDRAM_MCSTAT, val);
3070 } while ((val & SDRAM_MCSTAT_MIC_MASK) != SDRAM_MCSTAT_MIC_COMP);
3071
3072 /* Set Delay Control Registers */
3073
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003074 mtsdram(SDRAM_DLCR, CONFIG_SYS_SDRAM0_DLCR);
Adam Grahamf6b6c452008-09-03 12:26:59 -07003075
3076#if !defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003077 mtsdram(SDRAM_RDCC, CONFIG_SYS_SDRAM0_RDCC);
3078 mtsdram(SDRAM_RQDC, CONFIG_SYS_SDRAM0_RQDC);
3079 mtsdram(SDRAM_RFDC, CONFIG_SYS_SDRAM0_RFDC);
Adam Grahamf6b6c452008-09-03 12:26:59 -07003080#endif /* !CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003081
3082 /*
3083 * Enable Controller by SDRAM0_MCOPT2[DCEN] = 1:
3084 */
3085
3086 mfsdram(SDRAM_MCOPT2, val);
3087 mtsdram(SDRAM_MCOPT2, val | SDRAM_MCOPT2_DCEN_ENABLE);
3088
Adam Graham59217ba2008-10-08 10:13:14 -07003089#if defined(CONFIG_440)
3090 /*
3091 * Program TLB entries with caches enabled, for best performace
3092 * while auto-calibrating and ECC generation
3093 */
3094 program_tlb(0, 0, (CONFIG_SYS_MBYTES_SDRAM << 20), 0);
3095#endif
3096
Adam Grahamf6b6c452008-09-03 12:26:59 -07003097#if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
3098#if !defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
3099 /*------------------------------------------------------------------
3100 | DQS calibration.
3101 +-----------------------------------------------------------------*/
3102 DQS_autocalibration();
3103#endif /* !defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL) */
3104#endif /* CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
3105
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003106#if defined(CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003107 ecc_init(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MBYTES_SDRAM << 20);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003108#endif /* defined(CONFIG_DDR_ECC) */
Grant Erickson2e205082008-07-09 16:46:35 -07003109
Adam Graham59217ba2008-10-08 10:13:14 -07003110#if defined(CONFIG_440)
3111 /*
3112 * Now after initialization (auto-calibration and ECC generation)
3113 * remove the TLB entries with caches enabled and program again with
3114 * desired cache functionality
3115 */
3116 remove_tlb(0, (CONFIG_SYS_MBYTES_SDRAM << 20));
3117 program_tlb(0, 0, (CONFIG_SYS_MBYTES_SDRAM << 20), MY_TLB_WORD2_I_ENABLE);
3118#endif
3119
Grant Erickson2e205082008-07-09 16:46:35 -07003120 ppc4xx_ibm_ddr2_register_dump();
Adam Grahamf6b6c452008-09-03 12:26:59 -07003121
3122#if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
3123 /*
3124 * Clear potential errors resulting from auto-calibration.
3125 * If not done, then we could get an interrupt later on when
3126 * exceptions are enabled.
3127 */
3128 set_mcsr(get_mcsr());
3129#endif /* CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
3130
Stefan Roeseec724f82008-06-02 17:13:55 +02003131#endif /* !defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003133 return (CONFIG_SYS_MBYTES_SDRAM << 20);
Grant Ericksonc821b5f2008-05-22 14:44:14 -07003134}
Stefan Roese08250eb2008-07-10 15:32:32 +02003135#endif /* CONFIG_SPD_EEPROM */
Grant Erickson2e205082008-07-09 16:46:35 -07003136
Adam Grahamf6b6c452008-09-03 12:26:59 -07003137#if !defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
3138#if defined(CONFIG_440)
3139u32 mfdcr_any(u32 dcr)
3140{
3141 u32 val;
3142
3143 switch (dcr) {
3144 case SDRAM_R0BAS + 0:
3145 val = mfdcr(SDRAM_R0BAS + 0);
3146 break;
3147 case SDRAM_R0BAS + 1:
3148 val = mfdcr(SDRAM_R0BAS + 1);
3149 break;
3150 case SDRAM_R0BAS + 2:
3151 val = mfdcr(SDRAM_R0BAS + 2);
3152 break;
3153 case SDRAM_R0BAS + 3:
3154 val = mfdcr(SDRAM_R0BAS + 3);
3155 break;
3156 default:
3157 printf("DCR %d not defined in case statement!!!\n", dcr);
3158 val = 0; /* just to satisfy the compiler */
3159 }
3160
3161 return val;
3162}
3163
3164void mtdcr_any(u32 dcr, u32 val)
3165{
3166 switch (dcr) {
3167 case SDRAM_R0BAS + 0:
3168 mtdcr(SDRAM_R0BAS + 0, val);
3169 break;
3170 case SDRAM_R0BAS + 1:
3171 mtdcr(SDRAM_R0BAS + 1, val);
3172 break;
3173 case SDRAM_R0BAS + 2:
3174 mtdcr(SDRAM_R0BAS + 2, val);
3175 break;
3176 case SDRAM_R0BAS + 3:
3177 mtdcr(SDRAM_R0BAS + 3, val);
3178 break;
3179 default:
3180 printf("DCR %d not defined in case statement!!!\n", dcr);
3181 }
3182}
3183#endif /* defined(CONFIG_440) */
3184
3185void blank_string(int size)
3186{
3187 int i;
3188
3189 for (i = 0; i < size; i++)
3190 putc('\b');
3191 for (i = 0; i < size; i++)
3192 putc(' ');
3193 for (i = 0; i < size; i++)
3194 putc('\b');
3195}
3196#endif /* !defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL) */
3197
3198inline void ppc4xx_ibm_ddr2_register_dump(void)
Grant Erickson2e205082008-07-09 16:46:35 -07003199{
Stefan Roese08250eb2008-07-10 15:32:32 +02003200#if defined(DEBUG)
Grant Erickson2e205082008-07-09 16:46:35 -07003201 printf("\nPPC4xx IBM DDR2 Register Dump:\n");
3202
3203#if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3204 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3205 PPC4xx_IBM_DDR2_DUMP_REGISTER(R0BAS);
3206 PPC4xx_IBM_DDR2_DUMP_REGISTER(R1BAS);
3207 PPC4xx_IBM_DDR2_DUMP_REGISTER(R2BAS);
3208 PPC4xx_IBM_DDR2_DUMP_REGISTER(R3BAS);
3209#endif /* (defined(CONFIG_440SP) || ... */
3210#if defined(CONFIG_405EX)
3211 PPC4xx_IBM_DDR2_DUMP_REGISTER(BESR);
3212 PPC4xx_IBM_DDR2_DUMP_REGISTER(BEARL);
3213 PPC4xx_IBM_DDR2_DUMP_REGISTER(BEARH);
3214 PPC4xx_IBM_DDR2_DUMP_REGISTER(WMIRQ);
3215 PPC4xx_IBM_DDR2_DUMP_REGISTER(PLBOPT);
3216 PPC4xx_IBM_DDR2_DUMP_REGISTER(PUABA);
3217#endif /* defined(CONFIG_405EX) */
3218 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB0CF);
3219 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB1CF);
3220 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB2CF);
3221 PPC4xx_IBM_DDR2_DUMP_REGISTER(MB3CF);
3222 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCSTAT);
3223 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCOPT1);
3224 PPC4xx_IBM_DDR2_DUMP_REGISTER(MCOPT2);
3225 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT0);
3226 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT1);
3227 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT2);
3228 PPC4xx_IBM_DDR2_DUMP_REGISTER(MODT3);
3229 PPC4xx_IBM_DDR2_DUMP_REGISTER(CODT);
3230#if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3231 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3232 PPC4xx_IBM_DDR2_DUMP_REGISTER(VVPR);
3233 PPC4xx_IBM_DDR2_DUMP_REGISTER(OPARS);
3234 /*
3235 * OPART is only used as a trigger register.
3236 *
3237 * No data is contained in this register, and reading or writing
3238 * to is can cause bad things to happen (hangs). Just skip it and
3239 * report "N/A".
3240 */
3241 printf("%20s = N/A\n", "SDRAM_OPART");
3242#endif /* defined(CONFIG_440SP) || ... */
3243 PPC4xx_IBM_DDR2_DUMP_REGISTER(RTR);
3244 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR0);
3245 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR1);
3246 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR2);
3247 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR3);
3248 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR4);
3249 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR5);
3250 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR6);
3251 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR7);
3252 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR8);
3253 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR9);
3254 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR10);
3255 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR11);
3256 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR12);
3257 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR13);
3258 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR14);
3259 PPC4xx_IBM_DDR2_DUMP_REGISTER(INITPLR15);
3260 PPC4xx_IBM_DDR2_DUMP_REGISTER(RQDC);
3261 PPC4xx_IBM_DDR2_DUMP_REGISTER(RFDC);
3262 PPC4xx_IBM_DDR2_DUMP_REGISTER(RDCC);
3263 PPC4xx_IBM_DDR2_DUMP_REGISTER(DLCR);
3264 PPC4xx_IBM_DDR2_DUMP_REGISTER(CLKTR);
3265 PPC4xx_IBM_DDR2_DUMP_REGISTER(WRDTR);
3266 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR1);
3267 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR2);
3268 PPC4xx_IBM_DDR2_DUMP_REGISTER(SDTR3);
3269 PPC4xx_IBM_DDR2_DUMP_REGISTER(MMODE);
3270 PPC4xx_IBM_DDR2_DUMP_REGISTER(MEMODE);
3271 PPC4xx_IBM_DDR2_DUMP_REGISTER(ECCCR);
3272#if (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
3273 defined(CONFIG_460EX) || defined(CONFIG_460GT))
3274 PPC4xx_IBM_DDR2_DUMP_REGISTER(CID);
3275#endif /* defined(CONFIG_440SP) || ... */
3276 PPC4xx_IBM_DDR2_DUMP_REGISTER(RID);
3277 PPC4xx_IBM_DDR2_DUMP_REGISTER(FCSR);
3278 PPC4xx_IBM_DDR2_DUMP_REGISTER(RTSR);
Stefan Roese08250eb2008-07-10 15:32:32 +02003279#endif /* defined(DEBUG) */
3280}
3281
3282#endif /* CONFIG_SDRAM_PPC4xx_IBM_DDR2 */