diff options
author | Adam Ford <aford173@gmail.com> | 2019-11-10 10:17:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-03 08:44:13 -0500 |
commit | 69acc36864d55229b9520bb620fdc546488ab78d (patch) | |
tree | a49edaf13d1b4c330f605df2b5c48346d4cf387e | |
parent | 5d7f5ac38eb1a83dc7fc03db941f038622ef4403 (diff) | |
download | u-boot-69acc36864d55229b9520bb620fdc546488ab78d.tar.gz |
ARM: omapl138_lcdk: Allow early init to start instruction cache
Currently the omapl138_lcdk has SKIP_LOWLEVEL_INIT set.
The README states there is a variation of this for the ARM926EJ-S
which allows the board to just skip the call to lowlevel_init()
and do the normal CP15 init which enables the instruction cache.
On the da850evm, this was shown to improve startup time.
This patch switches SKIP_LOWLEVEL_INIT to SKIP_LOWLEVEL_INIT_ONLY
thus, enabling the cache.
Signed-off-by: Adam Ford <aford173@gmail.com>
Tested-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Reviewed-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
-rw-r--r-- | include/configs/omapl138_lcdk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index fc5c87cc9a..2c499d812b 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -23,7 +23,7 @@ #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_SKIP_LOWLEVEL_INIT_ONLY /* * Memory Info |