git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1878c32
)
arch/x86/cpu: Call x86_cpu_reinit_f for 64-bits
author
Jeremy Compostella
<jeremy.compostella@intel.com>
Tue, 18 Mar 2025 17:40:03 +0000
(10:40 -0700)
committer
Tom Rini
<trini@konsulko.com>
Fri, 4 Apr 2025 18:26:35 +0000
(12:26 -0600)
As both CONFIG_X86_RUN_64BIT and X86_RUN_64BIT_NO_SPL cases run U-Boot
in 64-bit mode with the CPU fully initialized already.
Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/coreboot/coreboot.c
patch
|
blob
|
history
diff --git
a/arch/x86/cpu/coreboot/coreboot.c
b/arch/x86/cpu/coreboot/coreboot.c
index
fa7430b
..
d0719d1
100644
(file)
--- a/
arch/x86/cpu/coreboot/coreboot.c
+++ b/
arch/x86/cpu/coreboot/coreboot.c
@@
-22,7
+22,7
@@
int arch_cpu_init(void)
{
int ret;
- ret = IS_ENABLED(CONFIG_X86_
RUN_64BIT
) ? x86_cpu_reinit_f() :
+ ret = IS_ENABLED(CONFIG_X86_
64
) ? x86_cpu_reinit_f() :
x86_cpu_init_f();
if (ret)
return ret;