Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/77630?usp=email )
Change subject: soc/amd/common/vboot: Drop reporting of Silicon level ......................................................................
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 incorrecly report having pro-production silicon.
Change-Id: Ida4bf4b9328ac83d905e4c3f822e6ceabe9be79d Signed-off-by: Matt DeVillier matt.devillier@amd.corp-partner.google.com --- M src/soc/amd/common/vboot/transfer_buffer.c 1 file changed, 0 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/30/77630/1
diff --git a/src/soc/amd/common/vboot/transfer_buffer.c b/src/soc/amd/common/vboot/transfer_buffer.c index a9644d3..6ca366a 100644 --- a/src/soc/amd/common/vboot/transfer_buffer.c +++ b/src/soc/amd/common/vboot/transfer_buffer.c @@ -57,9 +57,6 @@ 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"); } }