[PATCH v1 3/3] efi/efistub: Make libstub to supply boot_param from RDI
From: Khalid Ali
Date: Mon Jun 23 2025 - 04:18:03 EST
From: Khalid Ali <khaliidcaliy@xxxxxxxxx>
This adjusts the libstub to supply argument from RDI instead of RSI.
Signed-off-by: Khalid Ali <khaliidcaliy@xxxxxxxxx>
---
drivers/firmware/efi/libstub/x86-stub.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/firmware/efi/libstub/x86-stub.c b/drivers/firmware/efi/libstub/x86-stub.c
index 09ed1c122106..9da9b6295b1d 100644
--- a/drivers/firmware/efi/libstub/x86-stub.c
+++ b/drivers/firmware/efi/libstub/x86-stub.c
@@ -794,8 +794,8 @@ static efi_status_t efi_decompress_kernel(unsigned long *kernel_entry,
static void __noreturn enter_kernel(unsigned long kernel_addr,
struct boot_params *boot_params)
{
- /* enter decompressed kernel with boot_params pointer in RSI/ESI */
- asm("jmp *%0"::"r"(kernel_addr), "S"(boot_params));
+ /* enter decompressed kernel with boot_params pointer in RDI/EDI */
+ asm("jmp *%0"::"r"(kernel_addr), "D"(boot_params));
unreachable();
}
--
2.49.0