Re: [PATCH] arch/x86: Add 64-bit U-Boot configuration without SPL

2025-03-18 Thread Jeremy Compostella
Hi Simon, Thank you for your review. I submitted five commits as requested. I believe they are in the queue of the moderator since I am not a member of the mailing list. Regards, Jeremy Simon Glass writes: > Hi Jeremy, > > On Fri, 14 Mar 2025 at 22:59, Jeremy Compostella

[PATCH 3/5] arch/x86/lib: Fix CONFIG_X86_64 usage in zimage.c

2025-03-18 Thread Jeremy Compostella
`. Signed-off-by: Jeremy Compostella Reviewed-by: Simon Glass --- arch/x86/lib/zimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 2eece34a073..ca3bd713ff2 100644 --- a/arch/x86/lib/zimage.c +++ b/arch/x86/lib/zimage.c

[PATCH 5/5] configs: Add coreboot64-no-spl_defconfig for 64-bit X86 without SPL

2025-03-18 Thread Jeremy Compostella
Create a new defconfig file called `coreboot64-no-spl_defconfig`, tailored specifically for 64-bit X86 architecture systems that operate without the Secondary Program Loader (SPL). This configuration takes its inspiration from `coreboot64_defconfig`.. Signed-off-by: Jeremy Compostella Reviewed

[PATCH 4/5] Fix EFI boot file name definition for 64-bit x86

2025-03-18 Thread Jeremy Compostella
This change aligns the preprocessor directive with the standard configuration flag used for detecting 64-bit x86 architecture. Signed-off-by: Jeremy Compostella Reviewed-by: Simon Glass --- include/config_distro_bootcmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 1/5] arch/x86: Add 64-bit U-Boot configuration without SPL

2025-03-18 Thread Jeremy Compostella
ry Program Loader) to the main 64-bit U-Boot. Signed-off-by: Jeremy Compostella Reviewed-by: Simon Glass --- arch/x86/Kconfig | 10 +- arch/x86/cpu/coreboot/Kconfig | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kco

[PATCH 2/5] arch/x86/cpu: Call x86_cpu_reinit_f for 64-bits

2025-03-18 Thread Jeremy Compostella
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 Reviewed-by: Simon Glass --- arch/x86/cpu/coreboot/coreboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch

[PATCH 0/5] 64-bit U-Boot configuration without SPL

2025-03-18 Thread Jeremy Compostella
-bit coreboot firmware. Jeremy Compostella (5): arch/x86: Add 64-bit U-Boot configuration without SPL arch/x86/cpu: Call x86_cpu_reinit_f for 64-bits arch/x86/lib: Fix CONFIG_X86_64 usage in zimage.c Fix EFI boot file name definition for 64-bit x86 architecture configs: Add coreboot64-no

[PATCH] arch/x86: Add 64-bit U-Boot configuration without SPL

2025-03-14 Thread Jeremy Compostella
-off-by: Jeremy Compostella --- arch/x86/Kconfig| 8 +++- arch/x86/cpu/coreboot/Kconfig | 2 +- arch/x86/cpu/coreboot/coreboot.c| 2 +- arch/x86/lib/zimage.c | 2 +- configs/coreboot64-no-spl_defconfig | 62 + include