diff options
author | Konrad Adamczyk <konrada@google.com> | 2023-07-24 09:46:50 +0000 |
---|---|---|
committer | Fred Reitberger <reitbergerfred@gmail.com> | 2023-07-26 13:45:08 +0000 |
commit | 41e2b5879fe18a087ed78d3880d18e10da5de8ed (patch) | |
tree | 6514d21bd4cf61acd0c94c7bb67c6c39065ae754 | |
parent | eb2897b113a04229c7749d1c23990c984775ca13 (diff) |
mb/google/myst: Override PSP_SOFTFUSE_BITS to fix non-serial boot
With currently set default PSP_SOFTFUSE_BITS for phoenix SoC,
the non-serial build does not boot on Myst.
Override PSP_SOFTFUSE_BITS by disabling SPIConfig to also get
the non-serial build booting.
The documentation of PSP_SOFTFUSE_BITS is available in #55758 doc (NDA).
BUG=b:292489356
TEST=Flash image-myst.bin, verify that it's able to boot on Myst
proto0.
Change-Id: Id4472fd85fdefcafb8378199dbaa054fab8b3274
Signed-off-by: Konrad Adamczyk <konrada@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76713
Reviewed-by: Jon Murphy <jpmurphy@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
-rw-r--r-- | src/mainboard/google/myst/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainboard/google/myst/Kconfig b/src/mainboard/google/myst/Kconfig index 281c59c6eb..4bbfc20cc4 100644 --- a/src/mainboard/google/myst/Kconfig +++ b/src/mainboard/google/myst/Kconfig @@ -82,4 +82,10 @@ config VBOOT_GSCVD bool default n +# Override PSP_SOFTFUSE_BITS from soc/amd/phoenix. +# The documentation of PSP_SOFTFUSE_BITS is available in #55758 doc (NDA). +config PSP_SOFTFUSE_BITS + string + default "36 34 28 6" + endif # BOARD_GOOGLE_BASEBOARD_MYST |