diff options
author | Matt DeVillier <matt.devillier@amd.corp-partner.google.com> | 2023-09-03 14:44:44 -0500 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-09-05 14:39:27 +0000 |
commit | f8beac6b7ada62e9ad8e5dc2eabd381071a8482e (patch) | |
tree | 3c3185f5623f43a8e3f5430bb4fcffb402fcf386 /src/soc/amd/common | |
parent | 6b69af8f774bb4131b61227cdb0bc30ff9025e01 (diff) |
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 <matt.devillier@amd.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77630
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/vboot/transfer_buffer.c | 3 |
1 files changed, 0 insertions, 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"); } } |