diff options
author | Simon Glass <sjg@chromium.org> | 2019-04-25 21:59:06 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-05-08 13:02:16 +0800 |
commit | 665cb18ea64aabbeb03d27a4c92ddec1baccb87a (patch) | |
tree | 506e37caae7c31559487676f33e5de4c54874c26 /arch | |
parent | 9fa31fc51d5f06bb54c2681c91d793f82fcc537e (diff) | |
download | u-boot-665cb18ea64aabbeb03d27a4c92ddec1baccb87a.zip u-boot-665cb18ea64aabbeb03d27a4c92ddec1baccb87a.tar.gz u-boot-665cb18ea64aabbeb03d27a4c92ddec1baccb87a.tar.bz2 |
x86: Don't set up MTRRs in SPL
The MTRRs are normally set up in U-Boot proper, so avoid setting them up
in SPL as well.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/lib/init_helpers.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/lib/init_helpers.c b/arch/x86/lib/init_helpers.c index 0481f45..ac85278 100644 --- a/arch/x86/lib/init_helpers.c +++ b/arch/x86/lib/init_helpers.c @@ -18,7 +18,10 @@ __weak ulong board_get_usable_ram_top(ulong total_size) int init_cache_f_r(void) { -#if CONFIG_IS_ENABLED(X86_32BIT_INIT) && !defined(CONFIG_HAVE_FSP) +#if (CONFIG_IS_ENABLED(X86_32BIT_INIT) || \ + (!defined(CONFIG_SPL_BUILD) && \ + !CONFIG_IS_ENABLED(CONFIG_X86_RUN_64BIT))) && \ + !defined(CONFIG_HAVE_FSP) int ret; ret = mtrr_commit(false); |