summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/stoneyridge
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-07-06 16:36:41 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-07-07 14:49:42 +0000
commitf3180f07b55dfe29938d2883d9a98a529fe9ef1a (patch)
tree5e00db3f1984230eee05d8f76fc33474f5520efe /src/soc/amd/stoneyridge
parent8f4b015759cf6189d8f942d7c06bea6a42a06c54 (diff)
downloadcoreboot-f3180f07b55dfe29938d2883d9a98a529fe9ef1a.tar.gz
coreboot-f3180f07b55dfe29938d2883d9a98a529fe9ef1a.tar.bz2
coreboot-f3180f07b55dfe29938d2883d9a98a529fe9ef1a.zip
soc/amd/*/globalnvs,nvs: remove deprecated & unused CBMC field from GNVS
Commit cde4f3b2790d ("acpi/gnvs.c: Drop unused pointer to the cbmem console") removed writing the coreboot memory console pointer to the GNVS and kept the CBMC field as reserved. Since those fields aren't needed any more and there are no dependencies on the absolute position of the different fields in GNVS as long as both GNVS definitions on the C and the ASL side match, remove the deprecated and unused CBMC field from the GNVS structs. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Iadfaf5a4ec1401b027dbfb6a7c6ce74a1dcecdfa Reviewed-on: https://review.coreboot.org/c/coreboot/+/76351 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/amd/stoneyridge')
-rw-r--r--src/soc/amd/stoneyridge/acpi/globalnvs.asl11
-rw-r--r--src/soc/amd/stoneyridge/include/soc/nvs.h13
2 files changed, 11 insertions, 13 deletions
diff --git a/src/soc/amd/stoneyridge/acpi/globalnvs.asl b/src/soc/amd/stoneyridge/acpi/globalnvs.asl
index 0c1c4d1f3c3f..40ec74203473 100644
--- a/src/soc/amd/stoneyridge/acpi/globalnvs.asl
+++ b/src/soc/amd/stoneyridge/acpi/globalnvs.asl
@@ -9,12 +9,11 @@
Field (GNVS, ByteAcc, NoLock, Preserve)
{
/* Miscellaneous */
- , 32, // 0x00 - 0x03 - coreboot Memory Console
- PM1I, 64, // 0x04 - 0x0b - System Wake Source - PM1 Index
- GPEI, 64, // 0x0c - 0x13 - GPE Wake Source
- TMPS, 8, // 0x14 - Temperature Sensor ID
- TCRT, 8, // 0x15 - Critical Threshold
- TPSV, 8, // 0x16 - Passive Threshold
+ PM1I, 64, // 0x00 - 0x07 - System Wake Source - PM1 Index
+ GPEI, 64, // 0x08 - 0x0f - GPE Wake Source
+ TMPS, 8, // 0x10 - Temperature Sensor ID
+ TCRT, 8, // 0x11 - Critical Threshold
+ TPSV, 8, // 0x12 - Passive Threshold
Offset (0x20), // 0x20 - AOAC Device Enables
, 5,
IC0E, 1, // I2C0, 5
diff --git a/src/soc/amd/stoneyridge/include/soc/nvs.h b/src/soc/amd/stoneyridge/include/soc/nvs.h
index 226c9f6c2df9..7f461d6b8d6d 100644
--- a/src/soc/amd/stoneyridge/include/soc/nvs.h
+++ b/src/soc/amd/stoneyridge/include/soc/nvs.h
@@ -14,13 +14,12 @@
struct __packed global_nvs {
/* Miscellaneous */
- uint32_t unused_was_cbmc; /* 0x00 - 0x03 - coreboot Memory Console */
- uint64_t pm1i; /* 0x04 - 0x0b - System Wake Source - PM1 Index */
- uint64_t gpei; /* 0x0c - 0x13 - GPE Wake Source */
- uint8_t tmps; /* 0x14 - Temperature Sensor ID */
- uint8_t tcrt; /* 0x15 - Critical Threshold */
- uint8_t tpsv; /* 0x16 - Passive Threshold */
- uint8_t pad1[9];
+ uint64_t pm1i; /* 0x00 - 0x07 - System Wake Source - PM1 Index */
+ uint64_t gpei; /* 0x08 - 0x0f - GPE Wake Source */
+ uint8_t tmps; /* 0x10 - Temperature Sensor ID */
+ uint8_t tcrt; /* 0x11 - Critical Threshold */
+ uint8_t tpsv; /* 0x12 - Passive Threshold */
+ uint8_t pad1[13];
aoac_devs_t aoac; /* 0x20 - AOAC device enables */
uint16_t fw00; /* 0x24 - XhciFwRomAddr_Rom, Boot RAM */
uint16_t fw02; /* 0x26 - XhciFwRomAddr_Ram, Instr RAM */