summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/omap3
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2012-08-14 12:26:08 -0700
committerTom Rini <trini@ti.com>2012-09-27 09:49:59 -0700
commitd7cb93b28a41237b689c9d84230d7d72a2048021 (patch)
tree9edbde2af8df4105db86940df089ba0b6d4d64b3 /arch/arm/cpu/armv7/omap3
parentd4c4e0e11710f26904c288ad1bf05d8b73abddf7 (diff)
downloadtalos-obmc-uboot-d7cb93b28a41237b689c9d84230d7d72a2048021.tar.gz
talos-obmc-uboot-d7cb93b28a41237b689c9d84230d7d72a2048021.zip
ARM: SPL: Move gpmc_init() to spl_board_init()
This is an OMAP/related-specific function, move calling it to spl_board_init() and turn on CONFIG_SPL_BOARD_INIT on the boards that enabled NAND and didn't enable this already. Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap3')
-rw-r--r--arch/arm/cpu/armv7/omap3/board.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/omap3/board.c b/arch/arm/cpu/armv7/omap3/board.c
index 3d74f09b0c..52196c8f66 100644
--- a/arch/arm/cpu/armv7/omap3/board.c
+++ b/arch/arm/cpu/armv7/omap3/board.c
@@ -106,6 +106,9 @@ int board_mmc_init(bd_t *bis)
void spl_board_init(void)
{
+#ifdef CONFIG_SPL_NAND_SUPPORT
+ gpmc_init();
+#endif
#ifdef CONFIG_SPL_I2C_SUPPORT
i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
#endif
OpenPOWER on IntegriCloud