summaryrefslogtreecommitdiff
path: root/src/mainboard/dell/latitude_e6230/dsdt.asl
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2017-10-26 21:26:43 +0800
committerIru Cai <mytbk920423@gmail.com>2020-06-25 20:51:45 +0800
commit25db03deaaf0483d75bba6d870cec06539590527 (patch)
tree600d3d5c0a2865d4e86e26c2248298eaa1237b60 /src/mainboard/dell/latitude_e6230/dsdt.asl
parent43c100356aba5ea3ebab3157b8443275b3d06dbf (diff)
downloadcoreboot-e6230.tar.xz
[WIP] new board: Dell Latitude E6230e6230
The code is based on autoport. The USB debug port is next to the HDMI port. Working components: * i3-3130M, 8G+0, 8G+4G * Arch Linux (kernel 4.13.12) loaded by SeaBIOS and GRUB payload * keyboard * USB * WLAN * eSATA Issues: * WLAN rfkill status cannot be switched when running * The 8MB flash chip cannot be accessed via ISP Change-Id: I8cdc01e902e670310628809416290045c2102340 Signed-off-by: Iru Cai <mytbk920423@gmail.com>
Diffstat (limited to 'src/mainboard/dell/latitude_e6230/dsdt.asl')
-rw-r--r--src/mainboard/dell/latitude_e6230/dsdt.asl32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mainboard/dell/latitude_e6230/dsdt.asl b/src/mainboard/dell/latitude_e6230/dsdt.asl
new file mode 100644
index 0000000000..15c538d286
--- /dev/null
+++ b/src/mainboard/dell/latitude_e6230/dsdt.asl
@@ -0,0 +1,32 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+DefinitionBlock(
+ "dsdt.aml",
+ "DSDT",
+ 0x03, // DSDT revision: ACPI v3.0
+ "COREv4", // OEM id
+ "COREBOOT", // OEM table id
+ 0x20141018 // OEM revision
+)
+{
+ #include <southbridge/intel/common/acpi/platform.asl>
+
+ #include "acpi/platform.asl"
+
+ /* global NVS and variables. */
+ #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
+
+ #include <cpu/intel/common/acpi/cpu.asl>
+
+ Scope (\_SB) {
+ Device (PCI0)
+ {
+ #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
+ #include <southbridge/intel/bd82x6x/acpi/pch.asl>
+
+ #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
+ }
+ }
+
+ #include <southbridge/intel/common/acpi/sleepstates.asl>
+}