diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-01-20 23:37:51 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-06 12:13:15 +0000 |
commit | b01f74ae3efcbb592c342c86c819a9f46bab6949 (patch) | |
tree | 43885f3928797299d33fbf2c6e4d427a59d06c27 /src/mainboard/google/skyrim | |
parent | 8b42a24d036fb6f5fc15a25f8d3d25f6fe6bd060 (diff) |
soc/amd/mendocino: 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 Mendocino 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: I1ed0407826f579eb14169246b7b14ba677c20e8d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72185
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/google/skyrim')
-rw-r--r-- | src/mainboard/google/skyrim/dsdt.asl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/google/skyrim/dsdt.asl b/src/mainboard/google/skyrim/dsdt.asl index 7293683705..1a4116528f 100644 --- a/src/mainboard/google/skyrim/dsdt.asl +++ b/src/mainboard/google/skyrim/dsdt.asl @@ -13,6 +13,9 @@ DefinitionBlock ( ) { #include <acpi/dsdt_top.asl> + + Name(LIDS, 0) + #include <soc.asl> #if CONFIG(FEATURE_DYNAMIC_DPTC) #include <variant/acpi/dtts.asl> |