1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) Freescale Semiconductor, Inc. 2006-2007
5 * Authors: Nick.Spence@freescale.com
6 * Wilson.Lo@freescale.com
7 * scottwood@freescale.com
13 #include <spd_sdram.h>
15 #include <asm/bitops.h>
18 #include <asm/processor.h>
20 DECLARE_GLOBAL_DATA_PTR;
22 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
23 static void resume_from_sleep(void)
25 u32 magic = *(u32 *)0;
27 typedef void (*func_t)(void);
28 func_t resume = *(func_t *)4;
30 if (magic == 0xf5153ae5)
33 gd->flags &= ~GD_FLG_SILENT;
34 puts("\nResume from sleep failed: bad magic word\n");
38 /* Fixed sdram init -- doesn't use serial presence detect.
40 * This is useful for faster booting in configs where the RAM is unlikely
41 * to be changed, or for things like NAND booting where space is tight.
43 static long fixed_sdram(void)
45 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
47 #ifndef CONFIG_SYS_RAMBOOT
48 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
49 u32 msize_log2 = __ilog2(msize);
51 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
52 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
53 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
56 * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
57 * or the DDR2 controller may fail to initialize correctly.
61 #if ((CONFIG_SYS_SDRAM_BASE & 0x00FFFFFF) != 0)
62 #warning Chip select bounds is only configurable in 16MB increments
64 im->ddr.csbnds[0].csbnds =
65 ((CONFIG_SYS_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
66 (((CONFIG_SYS_SDRAM_BASE + msize - 1) >> CSBNDS_EA_SHIFT) &
68 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
70 /* Currently we use only one CS, so disable the other bank. */
71 im->ddr.cs_config[1] = 0;
73 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
74 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
75 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
76 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
77 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
79 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
80 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
81 im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG | SDRAM_CFG_BI;
84 im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG;
86 im->ddr.sdram_cfg2 = CONFIG_SYS_SDRAM_CFG2;
87 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
88 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE_2;
90 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
93 /* enable DDR controller */
94 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
102 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
103 volatile fsl_lbc_t *lbc = &im->im_lbc;
106 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
109 /* DDR SDRAM - Main SODIMM */
110 msize = fixed_sdram();
112 /* Local Bus setup lbcr and mrtpr */
113 lbc->lbcr = (0x00040000 | (0xFF << LBCR_BMT_SHIFT) | 0xF);
114 /* LB refresh timer prescal, 266MHz/32 */
115 lbc->mrtpr = 0x20000000;
118 #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
119 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
123 /* return total bus SDRAM size(bytes) -- DDR */
124 gd->ram_size = msize;