diff options
| author | Park, Aiden <[email protected]> | 2019-08-03 08:31:20 +0000 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2019-08-09 22:24:02 +0800 |
| commit | dbaec467671fd5b56cf380121340844863f5472d (patch) | |
| tree | 76a67ce818240d1efbb1f0700663b3958766fbb8 | |
| parent | d8f6db4768bc8516cf346546435588427a06e46b (diff) | |
x86: Skip setting up MTRRs in slimbootloader
The setting up MTRRs have already been done in previous
Slim Bootloader stages.
Signed-off-by: Aiden Park <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Tested-by: Bin Meng <[email protected]>
| -rw-r--r-- | arch/x86/lib/init_helpers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/lib/init_helpers.c b/arch/x86/lib/init_helpers.c index 0481f453ca6..5e19f13720f 100644 --- a/arch/x86/lib/init_helpers.c +++ b/arch/x86/lib/init_helpers.c @@ -18,7 +18,8 @@ __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_HAVE_FSP) && \ + !defined(CONFIG_SYS_SLIMBOOTLOADER) int ret; ret = mtrr_commit(false); |
