blob: 6c9431202f8cf47f416aefa31ec83d7369714e0e [file] [log] [blame]
Dave Liu8bd522c2008-01-11 18:48:24 +08001/*
2 * Copyright (C) 2007 Freescale Semiconductor, Inc.
3 *
4 * Authors: Nick.Spence@freescale.com
5 * Wilson.Lo@freescale.com
6 * scottwood@freescale.com
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Dave Liu8bd522c2008-01-11 18:48:24 +08009 */
10
11#include <common.h>
12#include <mpc83xx.h>
13#include <spd_sdram.h>
14
15#include <asm/bitops.h>
16#include <asm/io.h>
17
18#include <asm/processor.h>
19
20DECLARE_GLOBAL_DATA_PTR;
21
22static void resume_from_sleep(void)
23{
24 u32 magic = *(u32 *)0;
25
26 typedef void (*func_t)(void);
27 func_t resume = *(func_t *)4;
28
29 if (magic == 0xf5153ae5)
30 resume();
31
32 gd->flags &= ~GD_FLG_SILENT;
33 puts("\nResume from sleep failed: bad magic word\n");
34}
35
36/* Fixed sdram init -- doesn't use serial presence detect.
37 *
38 * This is useful for faster booting in configs where the RAM is unlikely
39 * to be changed, or for things like NAND booting where space is tight.
40 */
Anton Vorontsov2e950042009-11-24 20:12:12 +030041#ifndef CONFIG_SYS_RAMBOOT
Dave Liu8bd522c2008-01-11 18:48:24 +080042static long fixed_sdram(void)
43{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
45 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
Dave Liu8bd522c2008-01-11 18:48:24 +080046 u32 msize_log2 = __ilog2(msize);
47
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
Dave Liu8bd522c2008-01-11 18:48:24 +080049 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Dave Liu8bd522c2008-01-11 18:48:24 +080051
52 /*
53 * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
54 * or the DDR2 controller may fail to initialize correctly.
55 */
Anton Vorontsov2e950042009-11-24 20:12:12 +030056 __udelay(50000);
Dave Liu8bd522c2008-01-11 18:48:24 +080057
58 im->ddr.csbnds[0].csbnds = (msize - 1) >> 24;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020059 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
Dave Liu8bd522c2008-01-11 18:48:24 +080060
61 /* Currently we use only one CS, so disable the other bank. */
62 im->ddr.cs_config[1] = 0;
63
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
65 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
66 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
67 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
68 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
Dave Liu8bd522c2008-01-11 18:48:24 +080069
70 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020071 im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG | SDRAM_CFG_BI;
Dave Liu8bd522c2008-01-11 18:48:24 +080072 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073 im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
Dave Liu8bd522c2008-01-11 18:48:24 +080074
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075 im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
76 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
77 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
Dave Liu8bd522c2008-01-11 18:48:24 +080078
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
Dave Liu8bd522c2008-01-11 18:48:24 +080080 sync();
81
82 /* enable DDR controller */
83 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
84 sync();
85
86 return msize;
87}
Anton Vorontsov2e950042009-11-24 20:12:12 +030088#else
89static long fixed_sdram(void)
90{
91 return CONFIG_SYS_DDR_SIZE * 1024 * 1024;
92}
93#endif /* CONFIG_SYS_RAMBOOT */
Dave Liu8bd522c2008-01-11 18:48:24 +080094
Becky Bruce9973e3c2008-06-09 16:03:40 -050095phys_size_t initdram(int board_type)
Dave Liu8bd522c2008-01-11 18:48:24 +080096{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
Dave Liu8bd522c2008-01-11 18:48:24 +080098 u32 msize;
99
100 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
101 return -1;
102
103 /* DDR SDRAM */
104 msize = fixed_sdram();
105
106 if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
107 resume_from_sleep();
108
109 /* return total bus SDRAM size(bytes) -- DDR */
110 return msize;
111}