aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/cezanne')
-rw-r--r--src/soc/amd/cezanne/acpi/globalnvs.asl5
-rw-r--r--src/soc/amd/cezanne/include/soc/nvs.h5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/soc/amd/cezanne/acpi/globalnvs.asl b/src/soc/amd/cezanne/acpi/globalnvs.asl
index 352bc71085..3c1788747b 100644
--- a/src/soc/amd/cezanne/acpi/globalnvs.asl
+++ b/src/soc/amd/cezanne/acpi/globalnvs.asl
@@ -8,7 +8,6 @@
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
+ PM1I, 64, // 0x00 - 0x07 - System Wake Source - PM1 Index
+ GPEI, 64, // 0x08 - 0x0f - GPE Wake Source
}
diff --git a/src/soc/amd/cezanne/include/soc/nvs.h b/src/soc/amd/cezanne/include/soc/nvs.h
index 1d98070de2..5edb878684 100644
--- a/src/soc/amd/cezanne/include/soc/nvs.h
+++ b/src/soc/amd/cezanne/include/soc/nvs.h
@@ -13,9 +13,8 @@
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 */
+ uint64_t pm1i; /* 0x00 - 0x07 - System Wake Source - PM1 Index */
+ uint64_t gpei; /* 0x08 - 0x0f - GPE Wake Source */
};
#endif /* AMD_CEZANNE_NVS_H */