2 * Copyright (C) Freescale Semiconductor, Inc. 2006-2007
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS for A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <spd_sdram.h>
31 #include <asm/bitops.h>
34 #include <asm/processor.h>
36 #ifndef CFG_8313ERDB_BROKEN_PMC
37 static void resume_from_sleep(void)
39 DECLARE_GLOBAL_DATA_PTR;
40 u32 magic = *(u32 *)0;
42 typedef void (*func_t)(void);
43 func_t resume = *(func_t *)4;
45 if (magic == 0xf5153ae5)
48 gd->flags &= ~GD_FLG_SILENT;
49 puts("\nResume from sleep failed: bad magic word\n");
53 /* Fixed sdram init -- doesn't use serial presence detect.
55 * This is useful for faster booting in configs where the RAM is unlikely
56 * to be changed, or for things like NAND booting where space is tight.
58 static long fixed_sdram(void)
60 volatile immap_t *im = (volatile immap_t *)CFG_IMMR;
61 u32 msize = CFG_DDR_SIZE * 1024 * 1024;
62 u32 msize_log2 = __ilog2(msize);
64 im->sysconf.ddrlaw[0].bar = CFG_DDR_SDRAM_BASE >> 12;
65 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
66 im->sysconf.ddrcdr = CFG_DDRCDR_VALUE;
69 * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
70 * or the DDR2 controller may fail to initialize correctly.
74 im->ddr.csbnds[0].csbnds = (msize - 1) >> 24;
75 im->ddr.cs_config[0] = CFG_DDR_CONFIG;
77 /* Currently we use only one CS, so disable the other bank. */
78 im->ddr.cs_config[1] = 0;
80 im->ddr.sdram_clk_cntl = CFG_DDR_CLK_CNTL;
81 im->ddr.timing_cfg_3 = CFG_DDR_TIMING_3;
82 im->ddr.timing_cfg_1 = CFG_DDR_TIMING_1;
83 im->ddr.timing_cfg_2 = CFG_DDR_TIMING_2;
84 im->ddr.timing_cfg_0 = CFG_DDR_TIMING_0;
86 #ifndef CFG_8313ERDB_BROKEN_PMC
87 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
88 im->ddr.sdram_cfg = CFG_SDRAM_CFG | SDRAM_CFG_BI;
91 im->ddr.sdram_cfg = CFG_SDRAM_CFG;
93 im->ddr.sdram_cfg2 = CFG_SDRAM_CFG2;
94 im->ddr.sdram_mode = CFG_DDR_MODE;
95 im->ddr.sdram_mode2 = CFG_DDR_MODE_2;
97 im->ddr.sdram_interval = CFG_DDR_INTERVAL;
100 /* enable DDR controller */
101 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
106 long int initdram(int board_type)
108 volatile immap_t *im = (volatile immap_t *)CFG_IMMR;
109 volatile lbus83xx_t *lbc = &im->lbus;
112 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
115 /* DDR SDRAM - Main SODIMM */
116 msize = fixed_sdram();
118 /* Local Bus setup lbcr and mrtpr */
119 lbc->lbcr = CFG_LBC_LBCR;
120 lbc->mrtpr = CFG_LBC_MRTPR;
123 #ifndef CFG_8313ERDB_BROKEN_PMC
124 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
128 /* return total bus SDRAM size(bytes) -- DDR */