summaryrefslogtreecommitdiff
path: root/src/mainboard/supermicro/x9sae/dsdt.asl
diff options
context:
space:
mode:
authorBill XIE <persmule@hardenedlinux.org>2021-08-26 19:12:13 +0800
committerFelix Held <felix-coreboot@felixheld.de>2021-09-05 20:37:50 +0000
commitd00febc99bd83be74e6f1d2386e36eea5051578b (patch)
tree12f9c013e5826d557e84e7bb39a3e1dc3dd21a0f /src/mainboard/supermicro/x9sae/dsdt.asl
parent957857de6afb1f4e1431edc6b3f0ef5c7a60542f (diff)
mb/supermicro: Add X9SAE and X9SAE-V
Mainboard information can be found in the included documentation. Change-Id: I9dfc58bb99e14cd9dac2ac53afc0ea11d2252aa9 Signed-off-by: Bill XIE <persmule@hardenedlinux.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57191 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/supermicro/x9sae/dsdt.asl')
-rw-r--r--src/mainboard/supermicro/x9sae/dsdt.asl29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mainboard/supermicro/x9sae/dsdt.asl b/src/mainboard/supermicro/x9sae/dsdt.asl
new file mode 100644
index 0000000000..77577de2ac
--- /dev/null
+++ b/src/mainboard/supermicro/x9sae/dsdt.asl
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+
+#include <acpi/acpi.h>
+
+DefinitionBlock(
+ "dsdt.aml",
+ "DSDT",
+ ACPI_DSDT_REV_2,
+ OEM_ID,
+ ACPI_TABLE_CREATOR,
+ 0x20141018 /* OEM revision */
+)
+{
+ #include <acpi/dsdt_top.asl>
+ #include "acpi/platform.asl"
+ #include <cpu/intel/common/acpi/cpu.asl>
+ #include <southbridge/intel/common/acpi/platform.asl>
+ #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
+ #include <southbridge/intel/common/acpi/sleepstates.asl>
+
+ Device (\_SB.PCI0)
+ {
+ #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
+ #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
+ #include <southbridge/intel/bd82x6x/acpi/pch.asl>
+ #include "acpi/pci.asl"
+ }
+}