aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/psp
diff options
context:
space:
mode:
authorMarshall Dawson <marshall.dawson@amd.corp-partner.google.com>2020-01-19 16:12:25 -0700
committerFelix Held <felix-coreboot@felixheld.de>2020-04-02 15:13:44 +0000
commit5646a648dfc7fcc53ff4dc86ddbc40620ee4a86c (patch)
tree77f9e39ebda03f25d0f61feea90a5182af1e0584 /src/soc/amd/common/block/psp
parentda1b088885b12e5b20afd5dd99e31acf3c41965b (diff)
soc/amd/common/psp: Make common function to print status
Consolidate commands' printing of status into one static function. BUG=b:130660285 TEST: Verify PSP functionality on google/grunt Change-Id: Id8abe0d1d4ac87f6d4f625593f47bf484729906f Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://chromium-review.googlesource.com/2020363 Reviewed-by: Raul E Rangel <rrangel@chromium.org> Reviewed-by: Eric Peers <epeers@google.com> Tested-by: Eric Peers <epeers@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39998 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/psp')
-rw-r--r--src/soc/amd/common/block/psp/psp.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/soc/amd/common/block/psp/psp.c b/src/soc/amd/common/block/psp/psp.c
index cf25fd1b51..0294422c3d 100644
--- a/src/soc/amd/common/block/psp/psp.c
+++ b/src/soc/amd/common/block/psp/psp.c
@@ -226,6 +226,21 @@ static int send_psp_command(u32 command, void *buffer)
}
/*
+ * Print meaningful status to the console. Caller only passes a pointer to a
+ * buffer if it's expected to contain its own status.
+ */
+static void print_cmd_status(int cmd_status, struct mbox_default_buffer *buffer)
+{
+ if (buffer && rd_resp_sts(buffer))
+ printk(BIOS_DEBUG, "buffer status=0x%x ", rd_resp_sts(buffer));
+
+ if (cmd_status)
+ printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status));
+ else
+ printk(BIOS_DEBUG, "OK\n");
+}
+
+/*
* Notify the PSP that DRAM is present. Upon receiving this command, the PSP
* will load its OS into fenced DRAM that is not accessible to the x86 cores.
*/
@@ -243,13 +258,7 @@ int psp_notify_dram(void)
cmd_status = send_psp_command(MBOX_BIOS_CMD_DRAM_INFO, &buffer);
/* buffer's status shouldn't change but report it if it does */
- if (rd_resp_sts(&buffer))
- printk(BIOS_DEBUG, "buffer status=0x%x ",
- rd_resp_sts(&buffer));
- if (cmd_status)
- printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status));
- else
- printk(BIOS_DEBUG, "OK\n");
+ print_cmd_status(cmd_status, &buffer);
return cmd_status;
}
@@ -273,13 +282,7 @@ static void psp_notify_boot_done(void *unused)
cmd_status = send_psp_command(MBOX_BIOS_CMD_BOOT_DONE, &buffer);
/* buffer's status shouldn't change but report it if it does */
- if (rd_resp_sts(&buffer))
- printk(BIOS_DEBUG, "buffer status=0x%x ",
- rd_resp_sts(&buffer));
- if (cmd_status)
- printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status));
- else
- printk(BIOS_DEBUG, "OK\n");
+ print_cmd_status(cmd_status, &buffer);
}
/*
@@ -305,10 +308,7 @@ static int psp_load_blob(int type, void *addr)
/* Blob commands use the buffer registers as data, not pointer to buf */
cmd_status = send_psp_command(type, addr);
- if (cmd_status)
- printk(BIOS_DEBUG, "%s\n", status_to_string(cmd_status));
- else
- printk(BIOS_DEBUG, "OK\n");
+ print_cmd_status(cmd_status, NULL);
return cmd_status;
}