mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
x86: Use X86_32BIT_INIT instead of X86_RESET_VECTOR
Use this new option to control the location of 32-bit init. This will allow us to place this in SPL if needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
972188b3a8
commit
2eff989585
2 changed files with 7 additions and 5 deletions
|
@ -19,7 +19,7 @@ __weak ulong board_get_usable_ram_top(ulong total_size)
|
|||
|
||||
int init_cache_f_r(void)
|
||||
{
|
||||
#if defined(CONFIG_X86_RESET_VECTOR) & !defined(CONFIG_HAVE_FSP)
|
||||
#if CONFIG_IS_ENABLED(X86_32BIT_INIT) && !defined(CONFIG_HAVE_FSP)
|
||||
int ret;
|
||||
|
||||
ret = mtrr_commit(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue