summaryrefslogtreecommitdiff
path: root/src/mainboard/system76/adl/dsdt.asl
diff options
context:
space:
mode:
authorTim Crawford <tcrawford@system76.com>2023-02-06 11:14:57 -0700
committerFelix Held <felix-coreboot@felixheld.de>2023-02-28 17:43:00 +0000
commitf0400e7d3f1bf7e6f8b5fa2ba371a24c39f91b0e (patch)
tree2e0bdcdec2b3e445f3393d698e344cc3baeb1f26 /src/mainboard/system76/adl/dsdt.asl
parent9770df1e9dfff99f8e764a56e6f603d4266edfb7 (diff)
mb/system76: Rename adl-p to adl
The directory holds boards other than ADL-P, such as ADL-U and ADL-H. Change-Id: I8e1b67f83d649cd07645a4a519ba1bf2f6f5e7c6 Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/72802 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jeremy Soller <jeremy@system76.com>
Diffstat (limited to 'src/mainboard/system76/adl/dsdt.asl')
-rw-r--r--src/mainboard/system76/adl/dsdt.asl33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/mainboard/system76/adl/dsdt.asl b/src/mainboard/system76/adl/dsdt.asl
new file mode 100644
index 0000000000..cbf9e6a7e9
--- /dev/null
+++ b/src/mainboard/system76/adl/dsdt.asl
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <acpi/acpi.h>
+DefinitionBlock(
+ "dsdt.aml",
+ "DSDT",
+ ACPI_DSDT_REV_2,
+ OEM_ID,
+ ACPI_TABLE_CREATOR,
+ 0x20110725
+)
+{
+ #include <acpi/dsdt_top.asl>
+ #include <soc/intel/common/block/acpi/acpi/platform.asl>
+ #include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
+ #include <cpu/intel/common/acpi/cpu.asl>
+
+ Device (\_SB.PCI0)
+ {
+ #include <soc/intel/common/block/acpi/acpi/northbridge.asl>
+ #include <soc/intel/alderlake/acpi/southbridge.asl>
+ #include <soc/intel/alderlake/acpi/tcss.asl>
+ }
+
+ #include <southbridge/intel/common/acpi/sleepstates.asl>
+
+ Scope (\_SB.PCI0.LPCB)
+ {
+ #include <drivers/pc80/pc/ps2_controller.asl>
+ }
+
+ #include "acpi/mainboard.asl"
+}