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>
This commit is contained in:
Felix Held 2024-10-30 22:46:16 +01:00
commit ade5b9dc48

View file

@ -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");
}