diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-01-29 22:31:40 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-01-31 01:09:18 +0000 |
commit | ee04881360db7d551cfa49ca80b9b1c21a466439 (patch) | |
tree | 7347629609311df4724dbb81cfa6389ed93f9994 /src/soc/amd/picasso | |
parent | 5ddcfe5ec17b4b625e7969157a819e931a68d330 (diff) |
soc/amd/*/psp: move MSR_CU_CBBCFG to common and rename to MSR_PSP_ADDR
TEST=Checked that the MSR is the same for Stoneyridge, Picasso and
Cezanne.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Id15715ed1c17f4fc475985dcb1c31a83713ee65c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50149
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/psp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/soc/amd/picasso/psp.c b/src/soc/amd/picasso/psp.c index 6a4a1ea821..ddefd22bd0 100644 --- a/src/soc/amd/picasso/psp.c +++ b/src/soc/amd/picasso/psp.c @@ -8,15 +8,14 @@ #include <amdblocks/smi.h> #define PSP_MAILBOX_OFFSET 0x10570 -#define MSR_CU_CBBCFG 0xc00110a2 void *soc_get_mbox_address(void) { uintptr_t psp_mmio; - psp_mmio = rdmsr(MSR_CU_CBBCFG).lo; + psp_mmio = rdmsr(MSR_PSP_ADDR).lo; if (psp_mmio == 0xffffffff) { - printk(BIOS_WARNING, "PSP: MSR_CU_CBBCFG uninitialized\n"); + printk(BIOS_WARNING, "PSP: MSR_PSP_ADDR uninitialized\n"); return 0; } |