Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/66604 )
Change subject: vc/amd/fsp/mendocino: Update FSP UPD signatures to MNDCNO ......................................................................
vc/amd/fsp/mendocino: Update FSP UPD signatures to MNDCNO
The FSPM and FSPS UPD signatures hadn't been updated from their cezanne origins. Change them to MNDCNO_M/S.
BUG=b:240573135 TEST=Build & boot, see new signature in boot log.
Change-Id: I9e4fcf7a9bf802aaba88f3dccf6da064c5686e96 Signed-off-by: Martin Roth martin.roth@amd.corp-partner.google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/66604 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@amd.corp-partner.google.com --- M src/vendorcode/amd/fsp/mendocino/FspUpd.h 1 file changed, 21 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/vendorcode/amd/fsp/mendocino/FspUpd.h b/src/vendorcode/amd/fsp/mendocino/FspUpd.h index c9202cea..de04f59 100644 --- a/src/vendorcode/amd/fsp/mendocino/FspUpd.h +++ b/src/vendorcode/amd/fsp/mendocino/FspUpd.h @@ -14,9 +14,9 @@ # include <fsp_h_c99.h> #endif
-#define FSPM_UPD_SIGNATURE 0x4d5f454e415a4543 /* 'CEZANE_M' */ +#define FSPM_UPD_SIGNATURE 0x4d5f4f4e43444e4d /* 'MNDCNO_M' */
-#define FSPS_UPD_SIGNATURE 0x535f454e415a4543 /* 'CEZANE_S' */ +#define FSPS_UPD_SIGNATURE 0x535f4f4e43444e4d /* 'MNDCNO_S' */
#endif