Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 1 | /* |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 2 | * Copyright (C) 2006,2010-2011 Freescale Semiconductor, Inc. |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 3 | * Dave Liu <daveliu@freescale.com> |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <ioports.h> |
| 10 | #include <mpc83xx.h> |
| 11 | #include <i2c.h> |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 12 | #include <miiphy.h> |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 13 | #include <phy.h> |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 14 | #if defined(CONFIG_PCI) |
| 15 | #include <pci.h> |
| 16 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 17 | #include <spd_sdram.h> |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 18 | #include <asm/mmu.h> |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 19 | #include <asm/io.h> |
Kumar Gala | a1964ea | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 20 | #include <asm/fsl_enet.h> |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 21 | #include <asm/mmu.h> |
Kim Phillips | b3458d2 | 2007-12-20 15:57:28 -0600 | [diff] [blame] | 22 | #if defined(CONFIG_OF_LIBFDT) |
Gerald Van Baren | 213bf8c | 2007-03-31 12:23:51 -0400 | [diff] [blame] | 23 | #include <libfdt.h> |
Gerald Van Baren | 213bf8c | 2007-03-31 12:23:51 -0400 | [diff] [blame] | 24 | #endif |
Anton Vorontsov | da6eea0 | 2009-09-16 23:22:08 +0400 | [diff] [blame] | 25 | #include <hwconfig.h> |
| 26 | #include <fdt_support.h> |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 27 | #if defined(CONFIG_PQ_MDS_PIB) |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 28 | #include "../common/pq-mds-pib.h" |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 29 | #endif |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 30 | #include "../../../drivers/qe/uec.h" |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 31 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 32 | const qe_iop_conf_t qe_iop_conf_tab[] = { |
| 33 | /* GETH1 */ |
| 34 | {0, 3, 1, 0, 1}, /* TxD0 */ |
| 35 | {0, 4, 1, 0, 1}, /* TxD1 */ |
| 36 | {0, 5, 1, 0, 1}, /* TxD2 */ |
| 37 | {0, 6, 1, 0, 1}, /* TxD3 */ |
| 38 | {1, 6, 1, 0, 3}, /* TxD4 */ |
| 39 | {1, 7, 1, 0, 1}, /* TxD5 */ |
| 40 | {1, 9, 1, 0, 2}, /* TxD6 */ |
| 41 | {1, 10, 1, 0, 2}, /* TxD7 */ |
| 42 | {0, 9, 2, 0, 1}, /* RxD0 */ |
| 43 | {0, 10, 2, 0, 1}, /* RxD1 */ |
| 44 | {0, 11, 2, 0, 1}, /* RxD2 */ |
| 45 | {0, 12, 2, 0, 1}, /* RxD3 */ |
| 46 | {0, 13, 2, 0, 1}, /* RxD4 */ |
| 47 | {1, 1, 2, 0, 2}, /* RxD5 */ |
| 48 | {1, 0, 2, 0, 2}, /* RxD6 */ |
| 49 | {1, 4, 2, 0, 2}, /* RxD7 */ |
| 50 | {0, 7, 1, 0, 1}, /* TX_EN */ |
| 51 | {0, 8, 1, 0, 1}, /* TX_ER */ |
| 52 | {0, 15, 2, 0, 1}, /* RX_DV */ |
| 53 | {0, 16, 2, 0, 1}, /* RX_ER */ |
| 54 | {0, 0, 2, 0, 1}, /* RX_CLK */ |
| 55 | {2, 9, 1, 0, 3}, /* GTX_CLK - CLK10 */ |
| 56 | {2, 8, 2, 0, 1}, /* GTX125 - CLK9 */ |
| 57 | /* GETH2 */ |
| 58 | {0, 17, 1, 0, 1}, /* TxD0 */ |
| 59 | {0, 18, 1, 0, 1}, /* TxD1 */ |
| 60 | {0, 19, 1, 0, 1}, /* TxD2 */ |
| 61 | {0, 20, 1, 0, 1}, /* TxD3 */ |
| 62 | {1, 2, 1, 0, 1}, /* TxD4 */ |
| 63 | {1, 3, 1, 0, 2}, /* TxD5 */ |
| 64 | {1, 5, 1, 0, 3}, /* TxD6 */ |
| 65 | {1, 8, 1, 0, 3}, /* TxD7 */ |
| 66 | {0, 23, 2, 0, 1}, /* RxD0 */ |
| 67 | {0, 24, 2, 0, 1}, /* RxD1 */ |
| 68 | {0, 25, 2, 0, 1}, /* RxD2 */ |
| 69 | {0, 26, 2, 0, 1}, /* RxD3 */ |
| 70 | {0, 27, 2, 0, 1}, /* RxD4 */ |
| 71 | {1, 12, 2, 0, 2}, /* RxD5 */ |
| 72 | {1, 13, 2, 0, 3}, /* RxD6 */ |
| 73 | {1, 11, 2, 0, 2}, /* RxD7 */ |
| 74 | {0, 21, 1, 0, 1}, /* TX_EN */ |
| 75 | {0, 22, 1, 0, 1}, /* TX_ER */ |
| 76 | {0, 29, 2, 0, 1}, /* RX_DV */ |
| 77 | {0, 30, 2, 0, 1}, /* RX_ER */ |
| 78 | {0, 31, 2, 0, 1}, /* RX_CLK */ |
| 79 | {2, 2, 1, 0, 2}, /* GTX_CLK = CLK10 */ |
| 80 | {2, 3, 2, 0, 1}, /* GTX125 - CLK4 */ |
| 81 | |
| 82 | {0, 1, 3, 0, 2}, /* MDIO */ |
| 83 | {0, 2, 1, 0, 1}, /* MDC */ |
| 84 | |
Anton Vorontsov | 651d96f | 2007-11-14 18:54:53 +0300 | [diff] [blame] | 85 | {5, 0, 1, 0, 2}, /* UART2_SOUT */ |
| 86 | {5, 1, 2, 0, 3}, /* UART2_CTS */ |
| 87 | {5, 2, 1, 0, 1}, /* UART2_RTS */ |
| 88 | {5, 3, 2, 0, 2}, /* UART2_SIN */ |
| 89 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 90 | {0, 0, 0, 0, QE_IOP_TAB_END}, /* END of table */ |
| 91 | }; |
| 92 | |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 93 | /* Handle "mpc8360ea rev.2.1 erratum 2: RGMII Timing"? */ |
| 94 | static int board_handle_erratum2(void) |
| 95 | { |
| 96 | const immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
| 97 | |
| 98 | return REVID_MAJOR(immr->sysconf.spridr) == 2 && |
| 99 | REVID_MINOR(immr->sysconf.spridr) == 1; |
| 100 | } |
| 101 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 102 | int board_early_init_f(void) |
| 103 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 104 | const immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 105 | u8 *bcsr = (u8 *)CONFIG_SYS_BCSR; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 106 | |
| 107 | /* Enable flash write */ |
| 108 | bcsr[0xa] &= ~0x04; |
| 109 | |
Kim Phillips | e5c4ade | 2008-03-28 10:19:07 -0500 | [diff] [blame] | 110 | /* Disable G1TXCLK, G2TXCLK h/w buffers (rev.2.x h/w bug workaround) */ |
| 111 | if (REVID_MAJOR(immr->sysconf.spridr) == 2) |
Kim Phillips | 3fc0bd1 | 2007-02-14 19:50:53 -0600 | [diff] [blame] | 112 | bcsr[0xe] = 0x30; |
| 113 | |
Anton Vorontsov | 651d96f | 2007-11-14 18:54:53 +0300 | [diff] [blame] | 114 | /* Enable second UART */ |
| 115 | bcsr[0x9] &= ~0x01; |
| 116 | |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 117 | if (board_handle_erratum2()) { |
| 118 | void *immap = (immap_t *)(CONFIG_SYS_IMMR + 0x14a8); |
| 119 | |
| 120 | /* |
| 121 | * IMMR + 0x14A8[4:5] = 11 (clk delay for UCC 2) |
| 122 | * IMMR + 0x14A8[18:19] = 11 (clk delay for UCC 1) |
| 123 | */ |
| 124 | setbits_be32(immap, 0x0c003000); |
| 125 | |
| 126 | /* |
| 127 | * IMMR + 0x14AC[20:27] = 10101010 |
| 128 | * (data delay for both UCC's) |
| 129 | */ |
| 130 | clrsetbits_be32(immap + 4, 0xff0, 0xaa0); |
| 131 | } |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 135 | int board_early_init_r(void) |
| 136 | { |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 137 | gd_t *gd; |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 138 | #ifdef CONFIG_PQ_MDS_PIB |
| 139 | pib_init(); |
| 140 | #endif |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 141 | /* |
| 142 | * BAT6 is used for SDRAM when DDR size is 512MB or larger than 256MB |
| 143 | * So re-setup PCI MEM space used BAT5 after relocated to DDR |
| 144 | */ |
| 145 | gd = (gd_t *)(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
| 146 | if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) { |
| 147 | write_bat(DBAT5, CONFIG_SYS_DBAT6U, CONFIG_SYS_DBAT6L); |
| 148 | write_bat(IBAT5, CONFIG_SYS_IBAT6U, CONFIG_SYS_IBAT6L); |
| 149 | } |
| 150 | |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 151 | return 0; |
| 152 | } |
| 153 | |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 154 | #ifdef CONFIG_UEC_ETH |
| 155 | static uec_info_t uec_info[] = { |
| 156 | #ifdef CONFIG_UEC_ETH1 |
| 157 | STD_UEC_INFO(1), |
| 158 | #endif |
| 159 | #ifdef CONFIG_UEC_ETH2 |
| 160 | STD_UEC_INFO(2), |
| 161 | #endif |
| 162 | }; |
| 163 | |
| 164 | int board_eth_init(bd_t *bd) |
| 165 | { |
| 166 | if (board_handle_erratum2()) { |
| 167 | int i; |
| 168 | |
Kim Phillips | b86c770 | 2011-11-15 22:59:52 +0000 | [diff] [blame] | 169 | for (i = 0; i < ARRAY_SIZE(uec_info); i++) { |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 170 | uec_info[i].enet_interface_type = |
| 171 | PHY_INTERFACE_MODE_RGMII_RXID; |
| 172 | uec_info[i].speed = SPEED_1000; |
Kim Phillips | b86c770 | 2011-11-15 22:59:52 +0000 | [diff] [blame] | 173 | } |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 174 | } |
| 175 | return uec_eth_init(bd, uec_info, ARRAY_SIZE(uec_info)); |
| 176 | } |
| 177 | #endif /* CONFIG_UEC_ETH */ |
| 178 | |
Peter Tyser | 9adda54 | 2009-06-30 17:15:50 -0500 | [diff] [blame] | 179 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 180 | extern void ddr_enable_ecc(unsigned int dram_size); |
| 181 | #endif |
| 182 | int fixed_sdram(void); |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 183 | static int sdram_init(unsigned int base); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 184 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 185 | phys_size_t initdram(int board_type) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 186 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 187 | volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 188 | u32 msize = 0; |
Anton Vorontsov | 034477b | 2009-09-16 23:21:57 +0400 | [diff] [blame] | 189 | u32 lbc_sdram_size; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 190 | |
| 191 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im) |
| 192 | return -1; |
| 193 | |
| 194 | /* DDR SDRAM - Main SODIMM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 195 | im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 196 | #if defined(CONFIG_SPD_EEPROM) |
| 197 | msize = spd_sdram(); |
| 198 | #else |
| 199 | msize = fixed_sdram(); |
| 200 | #endif |
| 201 | |
Peter Tyser | 9adda54 | 2009-06-30 17:15:50 -0500 | [diff] [blame] | 202 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 203 | /* |
| 204 | * Initialize DDR ECC byte |
| 205 | */ |
| 206 | ddr_enable_ecc(msize * 1024 * 1024); |
| 207 | #endif |
| 208 | /* |
| 209 | * Initialize SDRAM if it is on local bus. |
| 210 | */ |
Anton Vorontsov | 034477b | 2009-09-16 23:21:57 +0400 | [diff] [blame] | 211 | lbc_sdram_size = sdram_init(msize * 1024 * 1024); |
| 212 | if (!msize) |
| 213 | msize = lbc_sdram_size; |
Kim Phillips | bbea46f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 214 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 215 | /* return total bus SDRAM size(bytes) -- DDR */ |
| 216 | return (msize * 1024 * 1024); |
| 217 | } |
| 218 | |
| 219 | #if !defined(CONFIG_SPD_EEPROM) |
| 220 | /************************************************************************* |
| 221 | * fixed sdram init -- doesn't use serial presence detect. |
| 222 | ************************************************************************/ |
| 223 | int fixed_sdram(void) |
| 224 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR; |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 226 | u32 msize = CONFIG_SYS_DDR_SIZE; |
| 227 | u32 ddr_size = msize << 20; |
| 228 | u32 ddr_size_log2 = __ilog2(ddr_size); |
| 229 | u32 half_ddr_size = ddr_size >> 1; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 230 | |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 231 | im->sysconf.ddrlaw[0].bar = |
| 232 | CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 233 | im->sysconf.ddrlaw[0].ar = |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 234 | LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 235 | #if (CONFIG_SYS_DDR_SIZE != 256) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 236 | #warning Currenly any ddr size other than 256 is not supported |
| 237 | #endif |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 238 | #ifdef CONFIG_DDR_II |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 239 | im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 240 | im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG; |
| 241 | im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 242 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 243 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 244 | im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 245 | im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG; |
| 246 | im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2; |
| 247 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
| 248 | im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2; |
| 249 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 250 | im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL; |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 251 | #else |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 252 | |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 253 | #if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0) |
| 254 | #warning Chip select bounds is only configurable in 16MB increments |
| 255 | #endif |
| 256 | im->ddr.csbnds[0].csbnds = |
| 257 | ((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) | |
| 258 | (((CONFIG_SYS_DDR_SDRAM_BASE + half_ddr_size - 1) >> |
| 259 | CSBNDS_EA_SHIFT) & CSBNDS_EA); |
| 260 | im->ddr.csbnds[1].csbnds = |
| 261 | (((CONFIG_SYS_DDR_SDRAM_BASE + half_ddr_size) >> |
| 262 | CSBNDS_SA_SHIFT) & CSBNDS_SA) | |
| 263 | (((CONFIG_SYS_DDR_SDRAM_BASE + ddr_size - 1) >> |
| 264 | CSBNDS_EA_SHIFT) & CSBNDS_EA); |
| 265 | |
| 266 | im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG; |
| 267 | im->ddr.cs_config[1] = CONFIG_SYS_DDR_CS1_CONFIG; |
| 268 | |
| 269 | im->ddr.cs_config[2] = 0; |
| 270 | im->ddr.cs_config[3] = 0; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 271 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 272 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 273 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 274 | im->ddr.sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 275 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 276 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
| 277 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 278 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 279 | udelay(200); |
| 280 | im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN; |
| 281 | |
| 282 | return msize; |
| 283 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 284 | #endif /*!CONFIG_SYS_SPD_EEPROM */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 285 | |
| 286 | int checkboard(void) |
| 287 | { |
| 288 | puts("Board: Freescale MPC8360EMDS\n"); |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * if MPC8360EMDS is soldered with SDRAM |
| 294 | */ |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 295 | #ifdef CONFIG_SYS_LB_SDRAM |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 296 | /* |
| 297 | * Initialize SDRAM memory on the Local Bus. |
| 298 | */ |
| 299 | |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 300 | static int sdram_init(unsigned int base) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 301 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 302 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 303 | fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 304 | const int sdram_size = CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024; |
| 305 | int rem = base % sdram_size; |
| 306 | uint *sdram_addr; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 307 | |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 308 | /* window base address should be aligned to the window size */ |
| 309 | if (rem) |
| 310 | base = base - rem + sdram_size; |
| 311 | |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 312 | /* |
| 313 | * Setup BAT6 for SDRAM when DDR size is 512MB or larger than 256MB |
| 314 | * After relocated to DDR, reuse BAT5 for PCI MEM space |
| 315 | */ |
| 316 | if (base > CONFIG_MAX_MEM_MAPPED) { |
| 317 | unsigned long batl = base | BATL_PP_10 | BATL_MEMCOHERENCE; |
| 318 | unsigned long batu = base | BATU_BL_64M | BATU_VS | BATU_VP; |
| 319 | |
| 320 | /* Setup the BAT6 for SDRAM */ |
| 321 | write_bat(DBAT6, batu, batl); |
| 322 | write_bat(IBAT6, batu, batl); |
| 323 | } |
| 324 | |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 325 | sdram_addr = (uint *)base; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 326 | /* |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 327 | * Setup SDRAM Base and Option Registers |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 328 | */ |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 329 | set_lbc_br(2, base | CONFIG_SYS_BR2); |
| 330 | set_lbc_or(2, CONFIG_SYS_OR2); |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 331 | immap->sysconf.lblaw[2].bar = base; |
| 332 | immap->sysconf.lblaw[2].ar = CONFIG_SYS_LBLAWAR2; |
| 333 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 334 | /*setup mtrpt, lsrt and lbcr for LB bus */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 335 | lbc->lbcr = CONFIG_SYS_LBC_LBCR; |
| 336 | lbc->mrtpr = CONFIG_SYS_LBC_MRTPR; |
| 337 | lbc->lsrt = CONFIG_SYS_LBC_LSRT; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 338 | asm("sync"); |
| 339 | |
| 340 | /* |
| 341 | * Configure the SDRAM controller Machine Mode Register. |
| 342 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 343 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5; /* Normal Operation */ |
| 344 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_1; /* Precharge All Banks */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 345 | asm("sync"); |
| 346 | *sdram_addr = 0xff; |
| 347 | udelay(100); |
| 348 | |
| 349 | /* |
| 350 | * We need do 8 times auto refresh operation. |
| 351 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 352 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_2; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 353 | asm("sync"); |
| 354 | *sdram_addr = 0xff; /* 1 times */ |
| 355 | udelay(100); |
| 356 | *sdram_addr = 0xff; /* 2 times */ |
| 357 | udelay(100); |
| 358 | *sdram_addr = 0xff; /* 3 times */ |
| 359 | udelay(100); |
| 360 | *sdram_addr = 0xff; /* 4 times */ |
| 361 | udelay(100); |
| 362 | *sdram_addr = 0xff; /* 5 times */ |
| 363 | udelay(100); |
| 364 | *sdram_addr = 0xff; /* 6 times */ |
| 365 | udelay(100); |
| 366 | *sdram_addr = 0xff; /* 7 times */ |
| 367 | udelay(100); |
| 368 | *sdram_addr = 0xff; /* 8 times */ |
| 369 | udelay(100); |
| 370 | |
| 371 | /* Mode register write operation */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 372 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_4; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 373 | asm("sync"); |
| 374 | *(sdram_addr + 0xcc) = 0xff; |
| 375 | udelay(100); |
| 376 | |
| 377 | /* Normal operation */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 378 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5 | 0x40000000; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 379 | asm("sync"); |
| 380 | *sdram_addr = 0xff; |
| 381 | udelay(100); |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 382 | |
| 383 | /* |
| 384 | * In non-aligned case we don't [normally] use that memory because |
| 385 | * there is a hole. |
| 386 | */ |
| 387 | if (rem) |
| 388 | return 0; |
| 389 | return CONFIG_SYS_LBC_SDRAM_SIZE; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 390 | } |
| 391 | #else |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 392 | static int sdram_init(unsigned int base) { return 0; } |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 393 | #endif |
| 394 | |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 395 | #if defined(CONFIG_OF_BOARD_SETUP) |
Anton Vorontsov | da6eea0 | 2009-09-16 23:22:08 +0400 | [diff] [blame] | 396 | static void ft_board_fixup_qe_usb(void *blob, bd_t *bd) |
| 397 | { |
| 398 | if (!hwconfig_subarg_cmp("qe_usb", "mode", "peripheral")) |
| 399 | return; |
| 400 | |
| 401 | do_fixup_by_compat(blob, "fsl,mpc8323-qe-usb", "mode", |
| 402 | "peripheral", sizeof("peripheral"), 1); |
| 403 | } |
| 404 | |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 405 | void ft_board_setup(void *blob, bd_t *bd) |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 406 | { |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 407 | ft_cpu_setup(blob, bd); |
Gerald Van Baren | 213bf8c | 2007-03-31 12:23:51 -0400 | [diff] [blame] | 408 | #ifdef CONFIG_PCI |
| 409 | ft_pci_setup(blob, bd); |
| 410 | #endif |
Anton Vorontsov | da6eea0 | 2009-09-16 23:22:08 +0400 | [diff] [blame] | 411 | ft_board_fixup_qe_usb(blob, bd); |
Kim Phillips | 24f8684 | 2007-11-09 14:28:08 -0600 | [diff] [blame] | 412 | /* |
| 413 | * mpc8360ea pb mds errata 2: RGMII timing |
| 414 | * if on mpc8360ea rev. 2.1, |
| 415 | * change both ucc phy-connection-types from rgmii-id to rgmii-rxid |
| 416 | */ |
Anton Vorontsov | 89da44c | 2009-09-16 23:21:59 +0400 | [diff] [blame] | 417 | if (board_handle_erratum2()) { |
Kim Phillips | 24f8684 | 2007-11-09 14:28:08 -0600 | [diff] [blame] | 418 | int nodeoffset; |
Kim Phillips | f602082 | 2007-12-10 14:16:22 -0600 | [diff] [blame] | 419 | const char *prop; |
Kim Phillips | 363eea9 | 2008-01-15 09:51:12 -0600 | [diff] [blame] | 420 | int path; |
Kim Phillips | 24f8684 | 2007-11-09 14:28:08 -0600 | [diff] [blame] | 421 | |
Kim Phillips | f09880e | 2008-01-14 16:14:46 -0600 | [diff] [blame] | 422 | nodeoffset = fdt_path_offset(blob, "/aliases"); |
Kim Phillips | 24f8684 | 2007-11-09 14:28:08 -0600 | [diff] [blame] | 423 | if (nodeoffset >= 0) { |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 424 | #if defined(CONFIG_HAS_ETH0) |
| 425 | /* fixup UCC 1 if using rgmii-id mode */ |
Kim Phillips | 363eea9 | 2008-01-15 09:51:12 -0600 | [diff] [blame] | 426 | prop = fdt_getprop(blob, nodeoffset, "ethernet0", NULL); |
| 427 | if (prop) { |
| 428 | path = fdt_path_offset(blob, prop); |
Kim Phillips | f09880e | 2008-01-14 16:14:46 -0600 | [diff] [blame] | 429 | prop = fdt_getprop(blob, path, |
| 430 | "phy-connection-type", 0); |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 431 | if (prop && (strcmp(prop, "rgmii-id") == 0)) |
Kumar Gala | a1964ea | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 432 | fdt_fixup_phy_connection(blob, path, |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 433 | PHY_INTERFACE_MODE_RGMII_RXID); |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 434 | } |
| 435 | #endif |
| 436 | #if defined(CONFIG_HAS_ETH1) |
| 437 | /* fixup UCC 2 if using rgmii-id mode */ |
Kim Phillips | 363eea9 | 2008-01-15 09:51:12 -0600 | [diff] [blame] | 438 | prop = fdt_getprop(blob, nodeoffset, "ethernet1", NULL); |
| 439 | if (prop) { |
| 440 | path = fdt_path_offset(blob, prop); |
Kim Phillips | f09880e | 2008-01-14 16:14:46 -0600 | [diff] [blame] | 441 | prop = fdt_getprop(blob, path, |
| 442 | "phy-connection-type", 0); |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 443 | if (prop && (strcmp(prop, "rgmii-id") == 0)) |
Kumar Gala | a1964ea | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 444 | fdt_fixup_phy_connection(blob, path, |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 445 | PHY_INTERFACE_MODE_RGMII_RXID); |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 446 | } |
| 447 | #endif |
Kim Phillips | 24f8684 | 2007-11-09 14:28:08 -0600 | [diff] [blame] | 448 | } |
| 449 | } |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 450 | } |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 451 | #endif |