Martin Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/50448 )
Change subject: soc/amd/common/psp_gen2: print error for uninitialized MSR_PSP_ADDR ......................................................................
soc/amd/common/psp_gen2: print error for uninitialized MSR_PSP_ADDR
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I8b6362a9eb2344293dad22357651f646774af789 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50448 Reviewed-by: Raul Rangel rrangel@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/common/block/psp/psp_gen2.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Raul Rangel: Looks good to me, approved
diff --git a/src/soc/amd/common/block/psp/psp_gen2.c b/src/soc/amd/common/block/psp/psp_gen2.c index 0972131..ca84057 100644 --- a/src/soc/amd/common/block/psp/psp_gen2.c +++ b/src/soc/amd/common/block/psp/psp_gen2.c @@ -14,7 +14,7 @@ { uintptr_t psp_mmio = rdmsr(MSR_PSP_ADDR).lo; if (!psp_mmio) - printk(BIOS_WARNING, "PSP: MSR_PSP_ADDR uninitialized\n"); + printk(BIOS_ERR, "PSP: MSR_PSP_ADDR uninitialized\n"); return psp_mmio; }