diff options
author | Subrata Banik <subratabanik@google.com> | 2024-05-18 12:26:40 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-05-26 01:26:31 +0000 |
commit | afa39105d8e09e5bc9ce2053b10a40839ab9fddd (patch) | |
tree | f91dd504481261abae734b52eb12c6c46028a925 /payloads/libpayload/Kconfig | |
parent | 4244527d8ccf2256c567ec4c4091c5edad72d06c (diff) |
libpayload: Add x86_64 (64-bit) support
This patch introduces x86_64 (64-bit) support to the payload, building
upon the existing x86 (32-bit) architecture. Files necessary for 64-bit
compilation are now guarded by the `CONFIG_LP_ARCH_X86_64` Kconfig
option.
BUG=b:242829490
TEST=Able to verify all valid combinations between coreboot and
payload with this patch.
Payload Entry Point Behavior with below code.
+----------------+--------------------+----------------------------+
| LP_ARCH_X86_64 | Payload Entry Mode | Description |
+----------------+--------------------+----------------------------+
| No | 32-bit | Direct protected mode init |
+----------------+--------------------+----------------------------+
| Yes | 32-bit | Protected to long mode |
+----------------+--------------------+----------------------------+
| Yes | 64-bit | Long mode initialization |
+----------------+--------------------+----------------------------+
Change-Id: I69fda47bedf1a14807b1515c4aed6e3a1d5b8585
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81968
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads/libpayload/Kconfig')
-rw-r--r-- | payloads/libpayload/Kconfig | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig index 39d316b1ab..0c07ecd998 100644 --- a/payloads/libpayload/Kconfig +++ b/payloads/libpayload/Kconfig @@ -106,17 +106,22 @@ menu "Architecture Options" choice prompt "Target Architecture" - default ARCH_X86 + default ARCH_X86_32 config ARCH_ARM bool "ARM" help Support the ARM architecture -config ARCH_X86 - bool "x86" +config ARCH_X86_32 + bool "x86_32" + help + Support the x86_32 architecture + +config ARCH_X86_64 + bool "x86_64" help - Support the x86 architecture + Support the x86_64 architecture config ARCH_ARM64 bool "ARM64" @@ -133,6 +138,12 @@ config ARCH_MOCK endchoice +config ARCH_X86 + bool + default y if ARCH_X86_32 || ARCH_X86_64 + help + Support the x86 architecture + config MULTIBOOT bool "Multiboot header support" depends on ARCH_X86 |