2007-04-16 19:54:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) Freescale Semiconductor, Inc. 2006-2007
|
|
|
|
*
|
|
|
|
* Authors: Nick.Spence@freescale.com
|
|
|
|
* Wilson.Lo@freescale.com
|
|
|
|
* scottwood@freescale.com
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-04-16 19:54:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <mpc83xx.h>
|
|
|
|
#include <spd_sdram.h>
|
|
|
|
|
|
|
|
#include <asm/bitops.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
2007-09-15 18:48:41 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
|
2007-04-16 19:54:15 +00:00
|
|
|
static void resume_from_sleep(void)
|
|
|
|
{
|
|
|
|
u32 magic = *(u32 *)0;
|
|
|
|
|
|
|
|
typedef void (*func_t)(void);
|
|
|
|
func_t resume = *(func_t *)4;
|
|
|
|
|
|
|
|
if (magic == 0xf5153ae5)
|
|
|
|
resume();
|
|
|
|
|
|
|
|
gd->flags &= ~GD_FLG_SILENT;
|
|
|
|
puts("\nResume from sleep failed: bad magic word\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Fixed sdram init -- doesn't use serial presence detect.
|
|
|
|
*
|
|
|
|
* This is useful for faster booting in configs where the RAM is unlikely
|
|
|
|
* to be changed, or for things like NAND booting where space is tight.
|
|
|
|
*/
|
|
|
|
static long fixed_sdram(void)
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
|
2008-06-30 19:13:28 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_RAMBOOT
|
|
|
|
volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
|
2007-04-16 19:54:15 +00:00
|
|
|
u32 msize_log2 = __ilog2(msize);
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
|
2007-04-16 19:54:15 +00:00
|
|
|
im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
|
2008-10-16 13:01:15 +00:00
|
|
|
im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
|
|
|
|
* or the DDR2 controller may fail to initialize correctly.
|
|
|
|
*/
|
2009-11-24 13:09:21 +00:00
|
|
|
__udelay(50000);
|
2007-04-16 19:54:15 +00:00
|
|
|
|
2011-10-12 04:57:31 +00:00
|
|
|
#if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0)
|
|
|
|
#warning Chip select bounds is only configurable in 16MB increments
|
|
|
|
#endif
|
|
|
|
im->ddr.csbnds[0].csbnds =
|
|
|
|
((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
|
|
|
|
(((CONFIG_SYS_DDR_SDRAM_BASE + msize - 1) >> CSBNDS_EA_SHIFT) &
|
|
|
|
CSBNDS_EA);
|
|
|
|
im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
/* Currently we use only one CS, so disable the other bank. */
|
|
|
|
im->ddr.cs_config[1] = 0;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
|
|
|
|
im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
|
|
|
|
im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
|
|
|
|
im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
|
|
|
|
im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
|
2007-04-16 19:54:15 +00:00
|
|
|
if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
|
2008-10-16 13:01:15 +00:00
|
|
|
im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG | SDRAM_CFG_BI;
|
2007-04-16 19:54:15 +00:00
|
|
|
else
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
im->ddr.sdram_cfg2 = CONFIG_SYS_SDRAM_CFG2;
|
|
|
|
im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
|
|
|
|
im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE_2;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
|
2007-04-16 19:54:15 +00:00
|
|
|
sync();
|
|
|
|
|
|
|
|
/* enable DDR controller */
|
|
|
|
im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
|
2008-06-30 19:13:28 +00:00
|
|
|
#endif
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
return msize;
|
|
|
|
}
|
|
|
|
|
2017-04-06 18:47:05 +00:00
|
|
|
int dram_init(void)
|
2007-04-16 19:54:15 +00:00
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
|
2010-06-17 16:37:20 +00:00
|
|
|
volatile fsl_lbc_t *lbc = &im->im_lbc;
|
2007-04-16 19:54:15 +00:00
|
|
|
u32 msize;
|
|
|
|
|
|
|
|
if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
|
2017-03-31 14:40:25 +00:00
|
|
|
return -ENXIO;
|
2007-04-16 19:54:15 +00:00
|
|
|
|
|
|
|
/* DDR SDRAM - Main SODIMM */
|
|
|
|
msize = fixed_sdram();
|
|
|
|
|
|
|
|
/* Local Bus setup lbcr and mrtpr */
|
2008-10-16 13:01:15 +00:00
|
|
|
lbc->lbcr = CONFIG_SYS_LBC_LBCR;
|
|
|
|
lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
|
2007-04-16 19:54:15 +00:00
|
|
|
sync();
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
|
2007-04-16 19:54:15 +00:00
|
|
|
if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
|
|
|
|
resume_from_sleep();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* return total bus SDRAM size(bytes) -- DDR */
|
2017-03-31 14:40:25 +00:00
|
|
|
gd->ram_size = msize;
|
|
|
|
|
|
|
|
return 0;
|
2007-04-16 19:54:15 +00:00
|
|
|
}
|