summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/folio_9480m_bdw/dsdt.asl
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2020-11-09 00:24:58 +0800
committerIru Cai <mytbk920423@gmail.com>2020-11-14 18:10:49 +0800
commite5e233e6d9dc12dbccdf07b810869d659954129c (patch)
tree7f554c61f34ccb1b45011aba6230853f20410a1b /src/mainboard/hp/folio_9480m_bdw/dsdt.asl
parent6615c6eaf798556b94ecc44d241222d6b19cd119 (diff)
downloadcoreboot-e5e233e6d9dc12dbccdf07b810869d659954129c.tar.xz
[HACK] Add soc/broadwell based hp/folio_9480m code
The laptop still boots with this code. Change-Id: I0d74c59ff8e8f32f49627fb7edc270887ebd5339 Signed-off-by: Iru Cai <mytbk920423@gmail.com>
Diffstat (limited to 'src/mainboard/hp/folio_9480m_bdw/dsdt.asl')
-rw-r--r--src/mainboard/hp/folio_9480m_bdw/dsdt.asl28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/mainboard/hp/folio_9480m_bdw/dsdt.asl b/src/mainboard/hp/folio_9480m_bdw/dsdt.asl
new file mode 100644
index 0000000000..895d639840
--- /dev/null
+++ b/src/mainboard/hp/folio_9480m_bdw/dsdt.asl
@@ -0,0 +1,28 @@
+/* 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 <soc/intel/broadwell/acpi/platform.asl>
+ #include <soc/intel/broadwell/pch/acpi/globalnvs.asl>
+ #include <cpu/intel/common/acpi/cpu.asl>
+ #include <southbridge/intel/common/acpi/sleepstates.asl>
+
+ Device (\_SB.PCI0)
+ {
+ #include <soc/intel/broadwell/acpi/systemagent.asl>
+ #include <soc/intel/broadwell/pch/acpi/pch.asl>
+ }
+
+ /* FIXME: We cannot override the default _WAK and _PTS in soc/broadwell */
+ /* #include "acpi/platform.asl" */
+}