Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Freescale Semiconductor, Inc. 2006-2007 |
| 3 | * |
| 4 | * Authors: Nick.Spence@freescale.com |
| 5 | * Wilson.Lo@freescale.com |
| 6 | * scottwood@freescale.com |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 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. |
| 15 | * |
| 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. |
| 20 | * |
| 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, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <mpc83xx.h> |
| 29 | #include <spd_sdram.h> |
| 30 | |
| 31 | #include <asm/bitops.h> |
| 32 | #include <asm/io.h> |
| 33 | |
| 34 | #include <asm/processor.h> |
| 35 | |
Wolfgang Denk | 1218abf | 2007-09-15 20:48:41 +0200 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 39 | static void resume_from_sleep(void) |
| 40 | { |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 41 | u32 magic = *(u32 *)0; |
| 42 | |
| 43 | typedef void (*func_t)(void); |
| 44 | func_t resume = *(func_t *)4; |
| 45 | |
| 46 | if (magic == 0xf5153ae5) |
| 47 | resume(); |
| 48 | |
| 49 | gd->flags &= ~GD_FLG_SILENT; |
| 50 | puts("\nResume from sleep failed: bad magic word\n"); |
| 51 | } |
| 52 | #endif |
| 53 | |
| 54 | /* Fixed sdram init -- doesn't use serial presence detect. |
| 55 | * |
| 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. |
| 58 | */ |
| 59 | static long fixed_sdram(void) |
| 60 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 61 | u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024; |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 62 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 63 | #ifndef CONFIG_SYS_RAMBOOT |
| 64 | volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 65 | u32 msize_log2 = __ilog2(msize); |
| 66 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 67 | im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 68 | im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg], |
| 73 | * or the DDR2 controller may fail to initialize correctly. |
| 74 | */ |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 75 | __udelay(50000); |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 76 | |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 77 | #if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0) |
| 78 | #warning Chip select bounds is only configurable in 16MB increments |
| 79 | #endif |
| 80 | im->ddr.csbnds[0].csbnds = |
| 81 | ((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) | |
| 82 | (((CONFIG_SYS_DDR_SDRAM_BASE + msize - 1) >> CSBNDS_EA_SHIFT) & |
| 83 | CSBNDS_EA); |
| 84 | im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 85 | |
| 86 | /* Currently we use only one CS, so disable the other bank. */ |
| 87 | im->ddr.cs_config[1] = 0; |
| 88 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL; |
| 90 | im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 91 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 92 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 93 | im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 94 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 95 | #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 96 | if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 97 | im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG | SDRAM_CFG_BI; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 98 | else |
| 99 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 101 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 102 | im->ddr.sdram_cfg2 = CONFIG_SYS_SDRAM_CFG2; |
| 103 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
| 104 | im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE_2; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 105 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 106 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 107 | sync(); |
| 108 | |
| 109 | /* enable DDR controller */ |
| 110 | im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN; |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 111 | #endif |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 112 | |
| 113 | return msize; |
| 114 | } |
| 115 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 116 | phys_size_t initdram(int board_type) |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 117 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 118 | volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR; |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 119 | volatile fsl_lbc_t *lbc = &im->im_lbc; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 120 | u32 msize; |
| 121 | |
| 122 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im) |
| 123 | return -1; |
| 124 | |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 125 | /* DDR SDRAM - Main SODIMM */ |
| 126 | msize = fixed_sdram(); |
| 127 | |
| 128 | /* Local Bus setup lbcr and mrtpr */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | lbc->lbcr = CONFIG_SYS_LBC_LBCR; |
| 130 | lbc->mrtpr = CONFIG_SYS_LBC_MRTPR; |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 131 | sync(); |
| 132 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 133 | #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 134 | if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) |
| 135 | resume_from_sleep(); |
| 136 | #endif |
| 137 | |
Scott Wood | 96b8a05 | 2007-04-16 14:54:15 -0500 | [diff] [blame] | 138 | /* return total bus SDRAM size(bytes) -- DDR */ |
| 139 | return msize; |
| 140 | } |