diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-10-30 22:46:16 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-11-07 15:09:40 +0000 |
commit | ade5b9dc4837cdca17358b021c840d4f90383b40 (patch) | |
tree | 256116c0be954f9e3b04859156ebcf86bbcbc7a1 /src | |
parent | 6327e4f348de275e896ca9383a01c8fd095a68fc (diff) |
soc/amd/common/psp/rpmc: bring debug output in line with fmap section
Call the PSP RPMC NVRAM 'PSP RPMC NVRAM' instead of 'PSP NVRAM' in the
debug console output to not be misleading, since the RPMC feature uses
the 'PSP_RPMC_NVRAM' fmap section and not the 'PSP_NVRAM' fmap section.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ie89dfcfe4b8780f422c222477bb627e03bd3662d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85007
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/common/block/psp/rpmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/psp/rpmc.c b/src/soc/amd/common/block/psp/rpmc.c index a557459854..dd097c52e3 100644 --- a/src/soc/amd/common/block/psp/rpmc.c +++ b/src/soc/amd/common/block/psp/rpmc.c @@ -68,8 +68,8 @@ static enum psp_rpmc_revision get_rpmc_rev(union psp_rpmc_caps psp_caps) static void print_rpmc_general_status(uint8_t healthy, uint8_t rpmc_protected) { - printk(BIOS_SPEW, "PSP NVRAM %s healthy\n", healthy ? "is" : "isn't"); - printk(BIOS_SPEW, "PSP NVRAM %s using RPMC protection\n", + printk(BIOS_SPEW, "PSP RPMC NVRAM %s healthy\n", healthy ? "is" : "isn't"); + printk(BIOS_SPEW, "PSP RPMC NVRAM %s using RPMC protection\n", rpmc_protected ? "is" : " isn't"); } |