From f8beac6b7ada62e9ad8e5dc2eabd381071a8482e Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sun, 3 Sep 2023 14:44:44 -0500 Subject: [PATCH] soc/amd/common/vboot: Drop reporting of Silicon level Per the PSP team, this field in the transfer buffer isn't used anymore and always set to zero, causing devices to incorrectly report having pre-production silicon. Change-Id: Ida4bf4b9328ac83d905e4c3f822e6ceabe9be79d Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/77630 Reviewed-by: Martin L Roth Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai Reviewed-by: Fred Reitberger --- src/soc/amd/common/vboot/transfer_buffer.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/soc/amd/common/vboot/transfer_buffer.c b/src/soc/amd/common/vboot/transfer_buffer.c index a9644d3a08..6ca366aefd 100644 --- a/src/soc/amd/common/vboot/transfer_buffer.c +++ b/src/soc/amd/common/vboot/transfer_buffer.c @@ -57,9 +57,6 @@ void show_psp_transfer_info(void) printk(BIOS_INFO, "PSP boot mode: %s\n", info->psp_info & PSP_INFO_PRODUCTION_MODE ? "Production" : "Development"); - printk(BIOS_INFO, "Silicon level: %s\n", - info->psp_info & PSP_INFO_PRODUCTION_SILICON ? - "Production" : "Pre-Production"); } }