diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-15 17:34:37 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-20 01:26:28 +0000 |
commit | 73045b269db1c691a08b786b344963c54a450e99 (patch) | |
tree | 153631bfe5e69ff894bffb949eceeeebf35e2971 /src/mainboard/google/myst/Kconfig | |
parent | 7e0f9edd99796871eeb2cd608caf7071d0937063 (diff) |
soc/amd/phoenix/Kconfig: factor out FSP-specific options
Split the SOC_AMD_PHOENIX Kconfig option into SOC_AMD_PHOENIX_BASE that
selects the non-FSP-specific options and SOC_AMD_PHOENIX_FSP that
selects both SOC_AMD_PHOENIX_BASE and the FSP-specific options. This
will help to separate the FSP-specific from the FSP-agnostic code. The
mainboards using this SoC now select SOC_AMD_PHOENIX_FSP instead of
SOC_AMD_PHOENIX.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I5e95fbfd9d16930ba3e6cc497557d61adba5a6fa
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79983
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/myst/Kconfig')
-rw-r--r-- | src/mainboard/google/myst/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/myst/Kconfig b/src/mainboard/google/myst/Kconfig index 70986f8247..c5077776b9 100644 --- a/src/mainboard/google/myst/Kconfig +++ b/src/mainboard/google/myst/Kconfig @@ -33,7 +33,7 @@ config BOARD_SPECIFIC_OPTIONS # TODO (b/290763369): Enable APOB after resolving data_abort in ABL select SOC_AMD_COMMON_BLOCK_APOB_NV_DISABLE select SOC_AMD_COMMON_BLOCK_USE_ESPI - select SOC_AMD_PHOENIX + select SOC_AMD_PHOENIX_FSP select SPI_FLASH_EXIT_4_BYTE_ADDR_MODE select SYSTEM_TYPE_LAPTOP select TPM_GOOGLE_TI50 |