diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2020-10-16 11:29:06 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-10-19 15:00:31 +0000 |
commit | 188f1bd5b84e22763680f2bb9b1908835537b3d7 (patch) | |
tree | 4e5289b096c2055d5d67faf67ea6b5d5392a3b08 /src/soc/amd/picasso | |
parent | e4ab31bc7f45ac78fad24be0e2d6b89c3c232264 (diff) |
soc/amd/picasso: Fix typo in SMU argument base
Correct the base address. This should have no noticeable effect,
as SMC_MSG_S3ENTRY accepts no arguments and doesn't return. The
argument writes were not getting to any target.
BUG=b:171037051
TEST=Run SST on morphius
BRANCH=Zork
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Change-Id: Ie3402f743cf7d4f4f42b8afa3e8b253be4761949
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46505
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/include/soc/smu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/include/soc/smu.h b/src/soc/amd/picasso/include/soc/smu.h index 128f4c4ed7..eb7573c52b 100644 --- a/src/soc/amd/picasso/include/soc/smu.h +++ b/src/soc/amd/picasso/include/soc/smu.h @@ -11,7 +11,7 @@ #define REG_ADDR_MESG_ID 0x3b10528 #define REG_ADDR_MESG_RESP 0x3b10564 -#define REG_ADDR_MESG_ARGS_BASE 0x0b10998 +#define REG_ADDR_MESG_ARGS_BASE 0x3b10998 /* Argument 0-5 indexed locations are contiguous */ #define SMU_NUM_ARGS 6 |