diff options
| author | Christian Riesch <christian.riesch@omicron.at> | 2012-02-02 00:44:37 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-12 10:11:33 +0100 | 
| commit | 27b66622b51f350ce6c143f82d104860ee887f5c (patch) | |
| tree | f4747f95622b6d7809baf4ee8bebdd8a6c56d9b4 /include | |
| parent | eb93524224d269e4e4124429e91757cab4ee27e6 (diff) | |
| download | olio-uboot-2014.01-27b66622b51f350ce6c143f82d104860ee887f5c.tar.xz olio-uboot-2014.01-27b66622b51f350ce6c143f82d104860ee887f5c.zip | |
arm, arm926ejs: Do cpu critical inits only for boards that require it
This patch reverts commit ca4b55800ed74207c35271bf7335a092d4955416
"arm, arm926ejs: always do cpu critical inits" since it impacts all
arm926ejs based configurations and caused problems, e.g., with
the hawkboard.
Instead the patch removes the CONFIG_SKIP_LOWLEVEL_INIT defines
from the board configurations that need low level initialization.
Signed-off-by: Christian Riesch <christian.riesch@omicron.at>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Tom Rini <trini@ti.com>
Cc: Heiko Schocher <hs@denx.de>
Acked-by: Heiko Schocher <hs@denx.de>
Tested-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/cam_enc_4xx.h | 6 | ||||
| -rw-r--r-- | include/configs/da850evm.h | 1 | ||||
| -rw-r--r-- | include/configs/enbw_cmc.h | 1 | 
3 files changed, 0 insertions, 8 deletions
| diff --git a/include/configs/cam_enc_4xx.h b/include/configs/cam_enc_4xx.h index 79a8611f8..0fee53f75 100644 --- a/include/configs/cam_enc_4xx.h +++ b/include/configs/cam_enc_4xx.h @@ -275,12 +275,6 @@  #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000  #define CONFIG_SYS_NAND_U_BOOT_SIZE	0xa0000 -/* - * U-Boot is a 3rd stage loader and if booting with spl, cpu setup is - * done in board_init_f from c code. - */ -#define CONFIG_SKIP_LOWLEVEL_INIT -  /* for UBL header */  #define CONFIG_SYS_UBL_BLOCK		(CONFIG_SYS_NAND_PAGE_SIZE) diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h index f32bd34ad..51a5a09a7 100644 --- a/include/configs/da850evm.h +++ b/include/configs/da850evm.h @@ -42,7 +42,6 @@  #define CONFIG_SYS_TIMERBASE		DAVINCI_TIMER0_BASE  #define CONFIG_SYS_HZ_CLOCK		clk_get(DAVINCI_AUXCLK_CLKID)  #define CONFIG_SYS_HZ			1000 -#define CONFIG_SKIP_LOWLEVEL_INIT  #define CONFIG_SYS_TEXT_BASE		0xc1080000  /* diff --git a/include/configs/enbw_cmc.h b/include/configs/enbw_cmc.h index 9fd6a4f18..98421795b 100644 --- a/include/configs/enbw_cmc.h +++ b/include/configs/enbw_cmc.h @@ -45,7 +45,6 @@  #define CONFIG_SYS_TIMERBASE		DAVINCI_TIMER0_BASE  #define CONFIG_SYS_HZ_CLOCK		clk_get(DAVINCI_AUXCLK_CLKID)  #define CONFIG_SYS_HZ			1000 -#define CONFIG_SKIP_LOWLEVEL_INIT  #define CONFIG_DA850_LOWLEVEL  #define CONFIG_ARCH_CPU_INIT  #define CONFIG_DA8XX_GPIO |