Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include <common.h> |
| 26 | #include <ioports.h> |
| 27 | #include <mpc83xx.h> |
| 28 | #include <asm/mpc8349_pci.h> |
| 29 | #include <i2c.h> |
| 30 | #include <spd.h> |
| 31 | #include <miiphy.h> |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 32 | #if defined(CONFIG_SPD_EEPROM) |
| 33 | #include <spd_sdram.h> |
| 34 | #endif |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 35 | #if defined(CONFIG_OF_FLAT_TREE) |
| 36 | #include <ft_build.h> |
| 37 | #endif |
| 38 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 39 | int fixed_sdram(void); |
| 40 | void sdram_init(void); |
| 41 | |
| 42 | #if defined(CONFIG_DDR_ECC) && defined(CONFIG_MPC83XX) |
| 43 | void ddr_enable_ecc(unsigned int dram_size); |
| 44 | #endif |
| 45 | |
| 46 | int board_early_init_f (void) |
| 47 | { |
| 48 | volatile u8* bcsr = (volatile u8*)CFG_BCSR; |
| 49 | |
| 50 | /* Enable flash write */ |
| 51 | bcsr[1] &= ~0x01; |
| 52 | |
Kumar Gala | 8fe9bf6 | 2006-04-20 13:45:32 -0500 | [diff] [blame] | 53 | #ifdef CFG_USE_MPC834XSYS_USB_PHY |
| 54 | /* Use USB PHY on SYS board */ |
| 55 | bcsr[5] |= 0x02; |
| 56 | #endif |
| 57 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | #define ns2clk(ns) (ns / (1000000000 / CONFIG_8349_CLKIN) + 1) |
| 62 | |
| 63 | long int initdram (int board_type) |
| 64 | { |
Timur Tabi | d239d74 | 2006-11-03 12:00:28 -0600 | [diff] [blame] | 65 | volatile immap_t *im = (immap_t *)CFG_IMMR; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 66 | u32 msize = 0; |
| 67 | |
| 68 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im) |
| 69 | return -1; |
| 70 | |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 71 | puts("Initializing\n"); |
| 72 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 73 | /* DDR SDRAM - Main SODIMM */ |
| 74 | im->sysconf.ddrlaw[0].bar = CFG_DDR_BASE & LAWBAR_BAR; |
| 75 | #if defined(CONFIG_SPD_EEPROM) |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 76 | msize = spd_sdram(); |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 77 | #else |
| 78 | msize = fixed_sdram(); |
| 79 | #endif |
| 80 | /* |
| 81 | * Initialize SDRAM if it is on local bus. |
| 82 | */ |
| 83 | sdram_init(); |
| 84 | |
| 85 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 86 | /* |
| 87 | * Initialize and enable DDR ECC. |
| 88 | */ |
| 89 | ddr_enable_ecc(msize * 1024 * 1024); |
| 90 | #endif |
| 91 | puts(" DDR RAM: "); |
| 92 | /* return total bus SDRAM size(bytes) -- DDR */ |
| 93 | return (msize * 1024 * 1024); |
| 94 | } |
| 95 | |
| 96 | #if !defined(CONFIG_SPD_EEPROM) |
| 97 | /************************************************************************* |
| 98 | * fixed sdram init -- doesn't use serial presence detect. |
| 99 | ************************************************************************/ |
| 100 | int fixed_sdram(void) |
| 101 | { |
Timur Tabi | d239d74 | 2006-11-03 12:00:28 -0600 | [diff] [blame] | 102 | volatile immap_t *im = (immap_t *)CFG_IMMR; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 103 | u32 msize = 0; |
| 104 | u32 ddr_size; |
| 105 | u32 ddr_size_log2; |
| 106 | |
| 107 | msize = CFG_DDR_SIZE; |
| 108 | for (ddr_size = msize << 20, ddr_size_log2 = 0; |
| 109 | (ddr_size > 1); |
| 110 | ddr_size = ddr_size>>1, ddr_size_log2++) { |
| 111 | if (ddr_size & 1) { |
| 112 | return -1; |
| 113 | } |
| 114 | } |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 115 | im->sysconf.ddrlaw[0].bar = ((CFG_DDR_SDRAM_BASE>>12) & 0xfffff); |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 116 | im->sysconf.ddrlaw[0].ar = LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE); |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 117 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 118 | #if (CFG_DDR_SIZE != 256) |
| 119 | #warning Currenly any ddr size other than 256 is not supported |
| 120 | #endif |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 121 | #ifdef CONFIG_DDR_II |
| 122 | im->ddr.csbnds[2].csbnds = CFG_DDR_CS2_BNDS; |
| 123 | im->ddr.cs_config[2] = CFG_DDR_CS2_CONFIG; |
| 124 | im->ddr.timing_cfg_0 = CFG_DDR_TIMING_0; |
| 125 | im->ddr.timing_cfg_1 = CFG_DDR_TIMING_1; |
| 126 | im->ddr.timing_cfg_2 = CFG_DDR_TIMING_2; |
| 127 | im->ddr.timing_cfg_3 = CFG_DDR_TIMING_3; |
| 128 | im->ddr.sdram_cfg = CFG_DDR_SDRAM_CFG; |
| 129 | im->ddr.sdram_cfg2 = CFG_DDR_SDRAM_CFG2; |
| 130 | im->ddr.sdram_mode = CFG_DDR_MODE; |
| 131 | im->ddr.sdram_mode2 = CFG_DDR_MODE2; |
| 132 | im->ddr.sdram_interval = CFG_DDR_INTERVAL; |
| 133 | im->ddr.sdram_clk_cntl = CFG_DDR_CLK_CNTL; |
| 134 | #else |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 135 | im->ddr.csbnds[2].csbnds = 0x0000000f; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 136 | im->ddr.cs_config[2] = CFG_DDR_CONFIG; |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 137 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 138 | /* currently we use only one CS, so disable the other banks */ |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 139 | im->ddr.cs_config[0] = 0; |
| 140 | im->ddr.cs_config[1] = 0; |
| 141 | im->ddr.cs_config[3] = 0; |
| 142 | |
| 143 | im->ddr.timing_cfg_1 = CFG_DDR_TIMING_1; |
| 144 | im->ddr.timing_cfg_2 = CFG_DDR_TIMING_2; |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 145 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 146 | im->ddr.sdram_cfg = |
| 147 | SDRAM_CFG_SREN |
| 148 | #if defined(CONFIG_DDR_2T_TIMING) |
| 149 | | SDRAM_CFG_2T_EN |
| 150 | #endif |
| 151 | | 2 << SDRAM_CFG_SDRAM_TYPE_SHIFT; |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 152 | #if defined (CONFIG_DDR_32BIT) |
| 153 | /* for 32-bit mode burst length is 8 */ |
| 154 | im->ddr.sdram_cfg |= (SDRAM_CFG_32_BE | SDRAM_CFG_8_BE); |
| 155 | #endif |
| 156 | im->ddr.sdram_mode = CFG_DDR_MODE; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 157 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 158 | im->ddr.sdram_interval = CFG_DDR_INTERVAL; |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 159 | #endif |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 160 | udelay(200); |
| 161 | |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 162 | /* enable DDR controller */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 163 | im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 164 | return msize; |
| 165 | } |
| 166 | #endif/*!CFG_SPD_EEPROM*/ |
| 167 | |
| 168 | |
| 169 | int checkboard (void) |
| 170 | { |
| 171 | puts("Board: Freescale MPC8349EMDS\n"); |
| 172 | return 0; |
| 173 | } |
| 174 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 175 | /* |
| 176 | * if MPC8349EMDS is soldered with SDRAM |
| 177 | */ |
| 178 | #if defined(CFG_BR2_PRELIM) \ |
| 179 | && defined(CFG_OR2_PRELIM) \ |
| 180 | && defined(CFG_LBLAWBAR2_PRELIM) \ |
| 181 | && defined(CFG_LBLAWAR2_PRELIM) |
| 182 | /* |
| 183 | * Initialize SDRAM memory on the Local Bus. |
| 184 | */ |
| 185 | |
| 186 | void sdram_init(void) |
| 187 | { |
Timur Tabi | d239d74 | 2006-11-03 12:00:28 -0600 | [diff] [blame] | 188 | volatile immap_t *immap = (immap_t *)CFG_IMMR; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 189 | volatile lbus83xx_t *lbc= &immap->lbus; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 190 | uint *sdram_addr = (uint *)CFG_LBC_SDRAM_BASE; |
| 191 | |
| 192 | puts("\n SDRAM on Local Bus: "); |
| 193 | print_size (CFG_LBC_SDRAM_SIZE * 1024 * 1024, "\n"); |
| 194 | |
| 195 | /* |
| 196 | * Setup SDRAM Base and Option Registers, already done in cpu_init.c |
| 197 | */ |
| 198 | |
| 199 | /* setup mtrpt, lsrt and lbcr for LB bus */ |
| 200 | lbc->lbcr = CFG_LBC_LBCR; |
| 201 | lbc->mrtpr = CFG_LBC_MRTPR; |
| 202 | lbc->lsrt = CFG_LBC_LSRT; |
| 203 | asm("sync"); |
| 204 | |
| 205 | /* |
| 206 | * Configure the SDRAM controller Machine Mode Register. |
| 207 | */ |
| 208 | lbc->lsdmr = CFG_LBC_LSDMR_5; /* 0x40636733; normal operation */ |
| 209 | |
| 210 | lbc->lsdmr = CFG_LBC_LSDMR_1; /* 0x68636733; precharge all the banks */ |
| 211 | asm("sync"); |
| 212 | *sdram_addr = 0xff; |
| 213 | udelay(100); |
| 214 | |
| 215 | lbc->lsdmr = CFG_LBC_LSDMR_2; /* 0x48636733; auto refresh */ |
| 216 | asm("sync"); |
| 217 | /*1 times*/ |
| 218 | *sdram_addr = 0xff; |
| 219 | udelay(100); |
| 220 | /*2 times*/ |
| 221 | *sdram_addr = 0xff; |
| 222 | udelay(100); |
| 223 | /*3 times*/ |
| 224 | *sdram_addr = 0xff; |
| 225 | udelay(100); |
| 226 | /*4 times*/ |
| 227 | *sdram_addr = 0xff; |
| 228 | udelay(100); |
| 229 | /*5 times*/ |
| 230 | *sdram_addr = 0xff; |
| 231 | udelay(100); |
| 232 | /*6 times*/ |
| 233 | *sdram_addr = 0xff; |
| 234 | udelay(100); |
| 235 | /*7 times*/ |
| 236 | *sdram_addr = 0xff; |
| 237 | udelay(100); |
| 238 | /*8 times*/ |
| 239 | *sdram_addr = 0xff; |
| 240 | udelay(100); |
| 241 | |
| 242 | /* 0x58636733; mode register write operation */ |
| 243 | lbc->lsdmr = CFG_LBC_LSDMR_4; |
| 244 | asm("sync"); |
| 245 | *sdram_addr = 0xff; |
| 246 | udelay(100); |
| 247 | |
| 248 | lbc->lsdmr = CFG_LBC_LSDMR_5; /* 0x40636733; normal operation */ |
| 249 | asm("sync"); |
| 250 | *sdram_addr = 0xff; |
| 251 | udelay(100); |
| 252 | } |
| 253 | #else |
| 254 | void sdram_init(void) |
| 255 | { |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 256 | puts(" SDRAM on Local Bus is NOT available!\n"); |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 257 | } |
| 258 | #endif |
Marian Balakowicz | d326f4a | 2006-03-16 15:19:35 +0100 | [diff] [blame] | 259 | |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 260 | #if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP) |
| 261 | void |
| 262 | ft_board_setup(void *blob, bd_t *bd) |
| 263 | { |
| 264 | u32 *p; |
| 265 | int len; |
| 266 | |
| 267 | #ifdef CONFIG_PCI |
| 268 | ft_pci_setup(blob, bd); |
| 269 | #endif |
| 270 | ft_cpu_setup(blob, bd); |
| 271 | |
| 272 | p = ft_get_prop(blob, "/memory/reg", &len); |
| 273 | if (p != NULL) { |
| 274 | *p++ = cpu_to_be32(bd->bi_memstart); |
| 275 | *p = cpu_to_be32(bd->bi_memsize); |
| 276 | } |
| 277 | } |
| 278 | #endif |