Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50414 )
Change subject: soc/amd/block/psp/psp: raise log level of PSP failure messages ......................................................................
soc/amd/block/psp/psp: raise log level of PSP failure messages
If the PSP didn't like a command this should be at least a warning on the console and not just a debug message.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: If7e5f6320631cca86813e98f82b8c0c21bf18af1 --- M src/soc/amd/common/block/psp/psp.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/50414/1
diff --git a/src/soc/amd/common/block/psp/psp.c b/src/soc/amd/common/block/psp/psp.c index 2787b73..45d64d8 100644 --- a/src/soc/amd/common/block/psp/psp.c +++ b/src/soc/amd/common/block/psp/psp.c @@ -50,7 +50,7 @@ printk(BIOS_DEBUG, "buffer status=0x%x ", rd_resp_sts(header));
if (cmd_status) - printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status)); + printk(BIOS_WARNING, "%s\n", status_to_string(cmd_status)); else printk(BIOS_DEBUG, "OK\n"); }