From f8e2e47e2b26d09742b51b9f04b5f9c5687edf44 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 29 Mar 2022 23:28:49 +0200 Subject: util/amdfwtool: use ISH support for Sabrina SoC The PSP in the Sabrina SoC uses the image slot header to find the second level PSP directory table, so it needs the ISH to be generated. Signed-off-by: Felix Held Change-Id: I9e6308854147c9f6f72d722215c833ee86ee4f94 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63186 Reviewed-by: Raul Rangel Tested-by: build bot (Jenkins) --- util/amdfwtool/amdfwtool.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'util') diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 4b76228912..80595ddb0d 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -1458,6 +1458,14 @@ static int identify_platform(char *soc_name) } +static bool needs_ish(enum platform platform_type) +{ + if (platform_type == PLATFORM_SABRINA) + return true; + else + return false; +} + int main(int argc, char **argv) { int c; @@ -1689,6 +1697,9 @@ int main(int argc, char **argv) } } + if (needs_ish(soc_id)) + cb_config.need_ish = true; + if (cb_config.need_ish) cb_config.recovery_ab = true; -- cgit v1.2.3