2 * Copyright (C) Freescale Semiconductor, Inc. 2006-2007
4 * Authors: Nick.Spence@freescale.com
5 * Wilson.Lo@freescale.com
6 * scottwood@freescale.com
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 DECLARE_GLOBAL_DATA_PTR;
38 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
39 static void resume_from_sleep(void)
41 u32 magic = *(u32 *)0;
43 typedef void (*func_t)(void);
44 func_t resume = *(func_t *)4;
46 if (magic == 0xf5153ae5)
49 gd->flags &= ~GD_FLG_SILENT;
50 puts("\nResume from sleep failed: bad magic word\n");
54 /* Fixed sdram init -- doesn't use serial presence detect.
56 * This is useful for faster booting in configs where the RAM is unlikely
57 * to be changed, or for things like NAND booting where space is tight.
59 static long fixed_sdram(void)
61 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
63 #ifndef CONFIG_SYS_RAMBOOT
64 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
65 u32 msize_log2 = __ilog2(msize);
67 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
68 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
69 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
72 * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
73 * or the DDR2 controller may fail to initialize correctly.
77 im->ddr.csbnds[0].csbnds = (msize - 1) >> 24;
78 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CONFIG;
80 /* Currently we use only one CS, so disable the other bank. */
81 im->ddr.cs_config[1] = 0;
83 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
84 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
85 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
86 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
87 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
89 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
90 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
91 im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG | SDRAM_CFG_BI;
94 im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG;
96 im->ddr.sdram_cfg2 = CONFIG_SYS_SDRAM_CFG2;
97 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
98 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE_2;
100 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
103 /* enable DDR controller */
104 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
110 phys_size_t initdram(int board_type)
112 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
113 volatile lbus83xx_t *lbc = &im->lbus;
116 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
119 /* DDR SDRAM - Main SODIMM */
120 msize = fixed_sdram();
122 /* Local Bus setup lbcr and mrtpr */
123 lbc->lbcr = CONFIG_SYS_LBC_LBCR;
124 lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
127 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
128 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
132 /* return total bus SDRAM size(bytes) -- DDR */