diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-01-20 21:25:07 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-06 12:12:43 +0000 |
commit | 8b42a24d036fb6f5fc15a25f8d3d25f6fe6bd060 (patch) | |
tree | c852984e2fc38ea03bba2dde25418825e03dccc1 /src/mainboard/google | |
parent | c5d71dc7ff9bc253a9151d1da9f55b0c59406820 (diff) |
soc/amd/cezanne: remove LIDS field from global NVS
Since the LIDS field is only used in the ACPI code and not in the C code
of any mainboard using the Cezanne SoC, remove it form the global NVS
and add an ACPI object for this in the DSDT of the mainboards that use
it in their ACPI code.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I6953da5e0f1966aa3022364d9a9c72ebafc698cc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72184
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/guybrush/dsdt.asl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/google/guybrush/dsdt.asl b/src/mainboard/google/guybrush/dsdt.asl index 6c208cf6c6..782bd9d4d7 100644 --- a/src/mainboard/google/guybrush/dsdt.asl +++ b/src/mainboard/google/guybrush/dsdt.asl @@ -13,6 +13,9 @@ DefinitionBlock ( ) { #include <acpi/dsdt_top.asl> + + Name(LIDS, 0) + #include <soc.asl> /* ChromeOS Embedded Controller */ |