Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2016 |
| 3 | * Vikas Manocha, <vikas.manocha@st.com> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/io.h> |
| 10 | #include <asm/armv7m.h> |
| 11 | #include <asm/arch/stm32.h> |
| 12 | #include <asm/arch/gpio.h> |
Toshifumi NISHINAGA | 18bd763 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 13 | #include <asm/arch/fmc.h> |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 14 | #include <dm/platdata.h> |
| 15 | #include <dm/platform_data/serial_stm32x7.h> |
| 16 | #include <asm/arch/stm32_periph.h> |
| 17 | #include <asm/arch/stm32_defs.h> |
Michael Kurz | 812962b | 2017-01-22 16:04:27 +0100 | [diff] [blame] | 18 | #include <asm/arch/syscfg.h> |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 19 | |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
| 22 | const struct stm32_gpio_ctl gpio_ctl_gpout = { |
| 23 | .mode = STM32_GPIO_MODE_OUT, |
| 24 | .otype = STM32_GPIO_OTYPE_PP, |
| 25 | .speed = STM32_GPIO_SPEED_50M, |
| 26 | .pupd = STM32_GPIO_PUPD_NO, |
| 27 | .af = STM32_GPIO_AF0 |
| 28 | }; |
| 29 | |
Toshifumi NISHINAGA | 18bd763 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 30 | const struct stm32_gpio_ctl gpio_ctl_fmc = { |
| 31 | .mode = STM32_GPIO_MODE_AF, |
| 32 | .otype = STM32_GPIO_OTYPE_PP, |
| 33 | .speed = STM32_GPIO_SPEED_100M, |
| 34 | .pupd = STM32_GPIO_PUPD_NO, |
| 35 | .af = STM32_GPIO_AF12 |
| 36 | }; |
| 37 | |
| 38 | static const struct stm32_gpio_dsc ext_ram_fmc_gpio[] = { |
| 39 | /* Chip is LQFP144, see DM00077036.pdf for details */ |
| 40 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_10}, /* 79, FMC_D15 */ |
| 41 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_9}, /* 78, FMC_D14 */ |
| 42 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_8}, /* 77, FMC_D13 */ |
| 43 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_15}, /* 68, FMC_D12 */ |
| 44 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_14}, /* 67, FMC_D11 */ |
| 45 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_13}, /* 66, FMC_D10 */ |
| 46 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_12}, /* 65, FMC_D9 */ |
| 47 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_11}, /* 64, FMC_D8 */ |
| 48 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_10}, /* 63, FMC_D7 */ |
| 49 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_9}, /* 60, FMC_D6 */ |
| 50 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_8}, /* 59, FMC_D5 */ |
| 51 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_7}, /* 58, FMC_D4 */ |
| 52 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_1}, /* 115, FMC_D3 */ |
| 53 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_0}, /* 114, FMC_D2 */ |
| 54 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_15}, /* 86, FMC_D1 */ |
| 55 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_14}, /* 85, FMC_D0 */ |
| 56 | |
| 57 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_1}, /* 142, FMC_NBL1 */ |
| 58 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_0}, /* 141, FMC_NBL0 */ |
| 59 | |
| 60 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_5}, /* 90, FMC_A15, BA1 */ |
| 61 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_4}, /* 89, FMC_A14, BA0 */ |
| 62 | |
| 63 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_1}, /* 57, FMC_A11 */ |
| 64 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_0}, /* 56, FMC_A10 */ |
| 65 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_15}, /* 55, FMC_A9 */ |
| 66 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_14}, /* 54, FMC_A8 */ |
| 67 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_13}, /* 53, FMC_A7 */ |
| 68 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_12}, /* 50, FMC_A6 */ |
| 69 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_5}, /* 15, FMC_A5 */ |
| 70 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_4}, /* 14, FMC_A4 */ |
| 71 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_3}, /* 13, FMC_A3 */ |
| 72 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_2}, /* 12, FMC_A2 */ |
| 73 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_1}, /* 11, FMC_A1 */ |
| 74 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_0}, /* 10, FMC_A0 */ |
| 75 | |
| 76 | {STM32_GPIO_PORT_H, STM32_GPIO_PIN_3}, /* 136, SDRAM_NE */ |
| 77 | {STM32_GPIO_PORT_F, STM32_GPIO_PIN_11}, /* 49, SDRAM_NRAS */ |
| 78 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_15}, /* 132, SDRAM_NCAS */ |
| 79 | {STM32_GPIO_PORT_H, STM32_GPIO_PIN_5}, /* 26, SDRAM_NWE */ |
| 80 | {STM32_GPIO_PORT_C, STM32_GPIO_PIN_3}, /* 135, SDRAM_CKE */ |
| 81 | |
| 82 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_8}, /* 93, SDRAM_CLK */ |
| 83 | }; |
| 84 | |
| 85 | static int fmc_setup_gpio(void) |
| 86 | { |
| 87 | int rv = 0; |
| 88 | int i; |
| 89 | |
| 90 | clock_setup(GPIO_B_CLOCK_CFG); |
| 91 | clock_setup(GPIO_C_CLOCK_CFG); |
| 92 | clock_setup(GPIO_D_CLOCK_CFG); |
| 93 | clock_setup(GPIO_E_CLOCK_CFG); |
| 94 | clock_setup(GPIO_F_CLOCK_CFG); |
| 95 | clock_setup(GPIO_G_CLOCK_CFG); |
| 96 | clock_setup(GPIO_H_CLOCK_CFG); |
| 97 | |
| 98 | for (i = 0; i < ARRAY_SIZE(ext_ram_fmc_gpio); i++) { |
| 99 | rv = stm32_gpio_config(&ext_ram_fmc_gpio[i], |
| 100 | &gpio_ctl_fmc); |
| 101 | if (rv) |
| 102 | goto out; |
| 103 | } |
| 104 | |
| 105 | out: |
| 106 | return rv; |
| 107 | } |
| 108 | |
Toshifumi NISHINAGA | 18bd763 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 109 | static inline u32 _ns2clk(u32 ns, u32 freq) |
| 110 | { |
| 111 | u32 tmp = freq/1000000; |
| 112 | return (tmp * ns) / 1000; |
| 113 | } |
| 114 | |
| 115 | #define NS2CLK(ns) (_ns2clk(ns, freq)) |
| 116 | |
| 117 | /* |
| 118 | * Following are timings for IS42S16400J, from corresponding datasheet |
| 119 | */ |
| 120 | #define SDRAM_CAS 3 /* 3 cycles */ |
| 121 | #define SDRAM_NB 1 /* Number of banks */ |
| 122 | #define SDRAM_MWID 1 /* 16 bit memory */ |
| 123 | |
| 124 | #define SDRAM_NR 0x1 /* 12-bit row */ |
| 125 | #define SDRAM_NC 0x0 /* 8-bit col */ |
| 126 | #define SDRAM_RBURST 0x1 /* Single read requests always as bursts */ |
| 127 | #define SDRAM_RPIPE 0x0 /* No HCLK clock cycle delay */ |
| 128 | |
| 129 | #define SDRAM_TRRD NS2CLK(12) |
| 130 | #define SDRAM_TRCD NS2CLK(18) |
| 131 | #define SDRAM_TRP NS2CLK(18) |
| 132 | #define SDRAM_TRAS NS2CLK(42) |
| 133 | #define SDRAM_TRC NS2CLK(60) |
| 134 | #define SDRAM_TRFC NS2CLK(60) |
| 135 | #define SDRAM_TCDL (1 - 1) |
| 136 | #define SDRAM_TRDL NS2CLK(12) |
| 137 | #define SDRAM_TBDL (1 - 1) |
| 138 | #define SDRAM_TREF (NS2CLK(64000000 / 8192) - 20) |
| 139 | #define SDRAM_TCCD (1 - 1) |
| 140 | |
| 141 | #define SDRAM_TXSR SDRAM_TRFC /* Row cycle time after precharge */ |
| 142 | #define SDRAM_TMRD 1 /* Page 10, Mode Register Set */ |
| 143 | |
| 144 | |
| 145 | /* Last data in to row precharge, need also comply ineq on page 1648 */ |
| 146 | #define SDRAM_TWR max(\ |
| 147 | (int)max((int)SDRAM_TRDL, (int)(SDRAM_TRAS - SDRAM_TRCD)), \ |
| 148 | (int)(SDRAM_TRC - SDRAM_TRCD - SDRAM_TRP)\ |
| 149 | ) |
| 150 | |
| 151 | |
| 152 | #define SDRAM_MODE_BL_SHIFT 0 |
| 153 | #define SDRAM_MODE_CAS_SHIFT 4 |
| 154 | #define SDRAM_MODE_BL 0 |
| 155 | #define SDRAM_MODE_CAS SDRAM_CAS |
| 156 | |
| 157 | int dram_init(void) |
| 158 | { |
| 159 | u32 freq; |
| 160 | int rv; |
| 161 | |
| 162 | rv = fmc_setup_gpio(); |
| 163 | if (rv) |
| 164 | return rv; |
| 165 | |
Michael Kurz | 04bb8db | 2017-01-22 16:04:26 +0100 | [diff] [blame] | 166 | clock_setup(FMC_CLOCK_CFG); |
Toshifumi NISHINAGA | 18bd763 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 167 | |
| 168 | /* |
| 169 | * Get frequency for NS2CLK calculation. |
| 170 | */ |
| 171 | freq = clock_get(CLOCK_AHB) / CONFIG_SYS_RAM_FREQ_DIV; |
| 172 | |
| 173 | writel( |
| 174 | CONFIG_SYS_RAM_FREQ_DIV << FMC_SDCR_SDCLK_SHIFT |
| 175 | | SDRAM_CAS << FMC_SDCR_CAS_SHIFT |
| 176 | | SDRAM_NB << FMC_SDCR_NB_SHIFT |
| 177 | | SDRAM_MWID << FMC_SDCR_MWID_SHIFT |
| 178 | | SDRAM_NR << FMC_SDCR_NR_SHIFT |
| 179 | | SDRAM_NC << FMC_SDCR_NC_SHIFT |
| 180 | | SDRAM_RPIPE << FMC_SDCR_RPIPE_SHIFT |
| 181 | | SDRAM_RBURST << FMC_SDCR_RBURST_SHIFT, |
| 182 | &STM32_SDRAM_FMC->sdcr1); |
| 183 | |
| 184 | writel( |
| 185 | SDRAM_TRCD << FMC_SDTR_TRCD_SHIFT |
| 186 | | SDRAM_TRP << FMC_SDTR_TRP_SHIFT |
| 187 | | SDRAM_TWR << FMC_SDTR_TWR_SHIFT |
| 188 | | SDRAM_TRC << FMC_SDTR_TRC_SHIFT |
| 189 | | SDRAM_TRAS << FMC_SDTR_TRAS_SHIFT |
| 190 | | SDRAM_TXSR << FMC_SDTR_TXSR_SHIFT |
| 191 | | SDRAM_TMRD << FMC_SDTR_TMRD_SHIFT, |
| 192 | &STM32_SDRAM_FMC->sdtr1); |
| 193 | |
| 194 | writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_START_CLOCK, |
| 195 | &STM32_SDRAM_FMC->sdcmr); |
| 196 | |
| 197 | udelay(200); /* 200 us delay, page 10, "Power-Up" */ |
| 198 | FMC_BUSY_WAIT(); |
| 199 | |
| 200 | writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_PRECHARGE, |
| 201 | &STM32_SDRAM_FMC->sdcmr); |
| 202 | |
| 203 | udelay(100); |
| 204 | FMC_BUSY_WAIT(); |
| 205 | |
| 206 | writel((FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_AUTOREFRESH |
| 207 | | 7 << FMC_SDCMR_NRFS_SHIFT), &STM32_SDRAM_FMC->sdcmr); |
| 208 | |
| 209 | udelay(100); |
| 210 | FMC_BUSY_WAIT(); |
| 211 | |
| 212 | writel(FMC_SDCMR_BANK_1 | (SDRAM_MODE_BL << SDRAM_MODE_BL_SHIFT |
| 213 | | SDRAM_MODE_CAS << SDRAM_MODE_CAS_SHIFT) |
| 214 | << FMC_SDCMR_MODE_REGISTER_SHIFT | FMC_SDCMR_MODE_WRITE_MODE, |
| 215 | &STM32_SDRAM_FMC->sdcmr); |
| 216 | |
| 217 | udelay(100); |
| 218 | |
| 219 | FMC_BUSY_WAIT(); |
| 220 | |
| 221 | writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_NORMAL, |
| 222 | &STM32_SDRAM_FMC->sdcmr); |
| 223 | |
| 224 | FMC_BUSY_WAIT(); |
| 225 | |
| 226 | /* Refresh timer */ |
| 227 | writel(SDRAM_TREF, &STM32_SDRAM_FMC->sdrtr); |
| 228 | |
| 229 | /* |
| 230 | * Fill in global info with description of SRAM configuration |
| 231 | */ |
| 232 | gd->bd->bi_dram[0].start = CONFIG_SYS_RAM_BASE; |
| 233 | gd->bd->bi_dram[0].size = CONFIG_SYS_RAM_SIZE; |
| 234 | |
| 235 | gd->ram_size = CONFIG_SYS_RAM_SIZE; |
| 236 | |
| 237 | return rv; |
| 238 | } |
| 239 | |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 240 | int uart_setup_gpio(void) |
| 241 | { |
Tom Rini | 22866944 | 2016-07-21 15:38:13 -0400 | [diff] [blame] | 242 | clock_setup(GPIO_A_CLOCK_CFG); |
| 243 | clock_setup(GPIO_B_CLOCK_CFG); |
Vikas Manocha | 6ad568c | 2017-02-12 10:25:51 -0800 | [diff] [blame^] | 244 | return 0; |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 245 | } |
| 246 | |
Michael Kurz | 812962b | 2017-01-22 16:04:27 +0100 | [diff] [blame] | 247 | #ifdef CONFIG_ETH_DESIGNWARE |
| 248 | const struct stm32_gpio_ctl gpio_ctl_eth = { |
| 249 | .mode = STM32_GPIO_MODE_AF, |
| 250 | .otype = STM32_GPIO_OTYPE_PP, |
| 251 | .speed = STM32_GPIO_SPEED_100M, |
| 252 | .pupd = STM32_GPIO_PUPD_NO, |
| 253 | .af = STM32_GPIO_AF11 |
| 254 | }; |
| 255 | |
| 256 | static const struct stm32_gpio_dsc eth_gpio[] = { |
| 257 | {STM32_GPIO_PORT_A, STM32_GPIO_PIN_1}, /* ETH_RMII_REF_CLK */ |
| 258 | {STM32_GPIO_PORT_A, STM32_GPIO_PIN_2}, /* ETH_MDIO */ |
| 259 | {STM32_GPIO_PORT_A, STM32_GPIO_PIN_7}, /* ETH_RMII_CRS_DV */ |
| 260 | |
| 261 | {STM32_GPIO_PORT_C, STM32_GPIO_PIN_1}, /* ETH_MDC */ |
| 262 | {STM32_GPIO_PORT_C, STM32_GPIO_PIN_4}, /* ETH_RMII_RXD0 */ |
| 263 | {STM32_GPIO_PORT_C, STM32_GPIO_PIN_5}, /* ETH_RMII_RXD1 */ |
| 264 | |
| 265 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_11}, /* ETH_RMII_TX_EN */ |
| 266 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_13}, /* ETH_RMII_TXD0 */ |
| 267 | {STM32_GPIO_PORT_G, STM32_GPIO_PIN_14}, /* ETH_RMII_TXD1 */ |
| 268 | }; |
| 269 | |
| 270 | static int stmmac_setup(void) |
| 271 | { |
| 272 | int res = 0; |
| 273 | int i; |
| 274 | |
| 275 | clock_setup(SYSCFG_CLOCK_CFG); |
| 276 | |
| 277 | /* Set >RMII mode */ |
| 278 | STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL; |
| 279 | |
| 280 | clock_setup(GPIO_A_CLOCK_CFG); |
| 281 | clock_setup(GPIO_C_CLOCK_CFG); |
| 282 | clock_setup(GPIO_G_CLOCK_CFG); |
| 283 | |
| 284 | for (i = 0; i < ARRAY_SIZE(eth_gpio); i++) { |
| 285 | res = stm32_gpio_config(ð_gpio[i], &gpio_ctl_eth); |
| 286 | if (res) |
| 287 | return res; |
| 288 | } |
| 289 | |
| 290 | clock_setup(STMMAC_CLOCK_CFG); |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | #endif |
| 295 | |
Michael Kurz | 337ff2a | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 296 | #ifdef CONFIG_STM32_QSPI |
| 297 | const struct stm32_gpio_ctl gpio_ctl_qspi_9 = { |
| 298 | .mode = STM32_GPIO_MODE_AF, |
| 299 | .otype = STM32_GPIO_OTYPE_PP, |
| 300 | .speed = STM32_GPIO_SPEED_100M, |
| 301 | .pupd = STM32_GPIO_PUPD_NO, |
| 302 | .af = STM32_GPIO_AF9 |
| 303 | }; |
| 304 | |
| 305 | const struct stm32_gpio_ctl gpio_ctl_qspi_10 = { |
| 306 | .mode = STM32_GPIO_MODE_AF, |
| 307 | .otype = STM32_GPIO_OTYPE_PP, |
| 308 | .speed = STM32_GPIO_SPEED_100M, |
| 309 | .pupd = STM32_GPIO_PUPD_NO, |
| 310 | .af = STM32_GPIO_AF10 |
| 311 | }; |
| 312 | |
| 313 | static const struct stm32_gpio_dsc qspi_af9_gpio[] = { |
| 314 | {STM32_GPIO_PORT_B, STM32_GPIO_PIN_2}, /* QUADSPI_CLK */ |
| 315 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_11}, /* QUADSPI_BK1_IO0 */ |
| 316 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_12}, /* QUADSPI_BK1_IO1 */ |
| 317 | {STM32_GPIO_PORT_D, STM32_GPIO_PIN_13}, /* QUADSPI_BK1_IO3 */ |
| 318 | {STM32_GPIO_PORT_E, STM32_GPIO_PIN_2}, /* QUADSPI_BK1_IO2 */ |
| 319 | }; |
| 320 | |
| 321 | static const struct stm32_gpio_dsc qspi_af10_gpio[] = { |
| 322 | {STM32_GPIO_PORT_B, STM32_GPIO_PIN_6}, /* QUADSPI_BK1_NCS */ |
| 323 | }; |
| 324 | |
| 325 | static int qspi_setup(void) |
| 326 | { |
| 327 | int res = 0; |
| 328 | int i; |
| 329 | |
| 330 | clock_setup(GPIO_B_CLOCK_CFG); |
| 331 | clock_setup(GPIO_D_CLOCK_CFG); |
| 332 | clock_setup(GPIO_E_CLOCK_CFG); |
| 333 | |
| 334 | for (i = 0; i < ARRAY_SIZE(qspi_af9_gpio); i++) { |
| 335 | res = stm32_gpio_config(&qspi_af9_gpio[i], &gpio_ctl_qspi_9); |
| 336 | if (res) |
| 337 | return res; |
| 338 | } |
| 339 | |
| 340 | for (i = 0; i < ARRAY_SIZE(qspi_af10_gpio); i++) { |
| 341 | res = stm32_gpio_config(&qspi_af10_gpio[i], &gpio_ctl_qspi_10); |
| 342 | if (res) |
| 343 | return res; |
| 344 | } |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | #endif |
| 349 | |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 350 | u32 get_board_rev(void) |
| 351 | { |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | int board_early_init_f(void) |
| 356 | { |
| 357 | int res; |
| 358 | |
| 359 | res = uart_setup_gpio(); |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 360 | if (res) |
| 361 | return res; |
| 362 | |
Michael Kurz | 812962b | 2017-01-22 16:04:27 +0100 | [diff] [blame] | 363 | #ifdef CONFIG_ETH_DESIGNWARE |
| 364 | res = stmmac_setup(); |
| 365 | if (res) |
| 366 | return res; |
| 367 | #endif |
| 368 | |
Michael Kurz | 337ff2a | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 369 | #ifdef CONFIG_STM32_QSPI |
| 370 | res = qspi_setup(); |
| 371 | if (res) |
| 372 | return res; |
| 373 | #endif |
| 374 | |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | int board_init(void) |
| 379 | { |
| 380 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
| 381 | |
| 382 | return 0; |
| 383 | } |