aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-02-09 20:06:59 +0100
committerMartin Roth <martinroth@google.com>2021-02-10 21:11:09 +0000
commita634257f13ad1e6cb915a2921b9fa6d43eece7d0 (patch)
treec0c9b7e0fbaf0985abd7375de0906fa941083203
parent583d531bd68366fb0eadc9799584318bf415a602 (diff)
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>
-rw-r--r--src/soc/amd/common/block/psp/psp_gen2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/psp/psp_gen2.c b/src/soc/amd/common/block/psp/psp_gen2.c
index 0972131fb3..ca84057453 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 @@ static uintptr_t soc_get_psp_base_address(void)
{
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;
}