mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
9fa31fc51d
commit
665cb18ea6
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue