diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2023-06-09 18:54:28 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-10 16:19:06 +0000 |
commit | bcbab2497dc30fadbfa10504b7c13662a967d9cb (patch) | |
tree | 04d9ef34a7addbb135cbdb2ac272906306bb87da | |
parent | 5eb77928e48a37d04b4dc9f60c85e015c6a8ec2f (diff) |
mb/google/myst: Enable PSP Verstage
Split the signed AMDFW binaries into their own section and enable PSP
verstage.
BUG=b:284984667
TEST=Build Myst BIOS image with PSP Verstage. Boot to OS successfully
with PSP verstage and a separate section for signed AMDFW binaries.
Change-Id: Ie0a54c157ebdebf9a0c95933c96865e0782a0f90
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75703
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Van Patten <timvp@google.com>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
-rw-r--r-- | src/mainboard/google/myst/Kconfig | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mainboard/google/myst/Kconfig b/src/mainboard/google/myst/Kconfig index 4bbfc20cc4..0c7db6fd65 100644 --- a/src/mainboard/google/myst/Kconfig +++ b/src/mainboard/google/myst/Kconfig @@ -75,7 +75,15 @@ config VBOOT select EC_GOOGLE_CHROMEEC_SWITCHES select VBOOT_LID_SWITCH select VBOOT_SEPARATE_VERSTAGE - select VBOOT_STARTS_IN_BOOTBLOCK + +config VBOOT_STARTS_BEFORE_BOOTBLOCK + bool "Enable PSP_verstage" + default y if VBOOT + select SEPARATE_SIGNED_PSPFW + +config VBOOT_STARTS_IN_BOOTBLOCK + bool + default y if VBOOT && !VBOOT_STARTS_BEFORE_BOOTBLOCK # TODO(b/277087492): Enable GSC CBFS verification config VBOOT_GSCVD |