diff options
author | Tom Rini <trini@ti.com> | 2012-08-14 12:26:08 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-09-27 09:49:59 -0700 |
commit | d7cb93b28a41237b689c9d84230d7d72a2048021 (patch) | |
tree | 9edbde2af8df4105db86940df089ba0b6d4d64b3 /arch/arm/cpu/armv7/omap-common | |
parent | d4c4e0e11710f26904c288ad1bf05d8b73abddf7 (diff) | |
download | u-boot-imx-d7cb93b28a41237b689c9d84230d7d72a2048021.zip u-boot-imx-d7cb93b28a41237b689c9d84230d7d72a2048021.tar.gz u-boot-imx-d7cb93b28a41237b689c9d84230d7d72a2048021.tar.bz2 |
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/omap-common')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/boot-common.c | 7 | ||||
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/spl_nand.c | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/boot-common.c b/arch/arm/cpu/armv7/omap-common/boot-common.c index 3406cfb..ed398fd 100644 --- a/arch/arm/cpu/armv7/omap-common/boot-common.c +++ b/arch/arm/cpu/armv7/omap-common/boot-common.c @@ -49,6 +49,13 @@ u32 spl_boot_mode(void) return omap_bootmode; } +void spl_board_init(void) +{ +#ifdef CONFIG_SPL_NAND_SUPPORT + gpmc_init(); +#endif +} + int board_mmc_init(bd_t *bis) { switch (spl_boot_device()) { diff --git a/arch/arm/cpu/armv7/omap-common/spl_nand.c b/arch/arm/cpu/armv7/omap-common/spl_nand.c index 3e2f359..1e6b5f0 100644 --- a/arch/arm/cpu/armv7/omap-common/spl_nand.c +++ b/arch/arm/cpu/armv7/omap-common/spl_nand.c @@ -35,7 +35,6 @@ void spl_nand_load_image(void) int *dst __attribute__((unused)); debug("spl: nand - using hw ecc\n"); - gpmc_init(); nand_init(); /*use CONFIG_SYS_TEXT_BASE as temporary storage area */ |