aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/kontron
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-03-13 00:44:09 +0000
committerStefan Reinauer <stepan@openbios.org>2009-03-13 00:44:09 +0000
commitcc46e73a0221d08a30c78adfc568f162cdda407d (patch)
tree615c999e79cbc8f4b388616d588159f9a782b3e4 /src/mainboard/kontron
parent47e42e5ebb8f912553cad57b4eebfccccfed511d (diff)
ACPI implementation for i945, ICH7, Kontron 986LCD-M
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3999 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/kontron')
-rw-r--r--src/mainboard/kontron/986lcd-m/Config.lb4
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/cpu.asl51
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/ec.asl51
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/globalnvs.asl42
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/platform.asl93
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/sleepstates.asl27
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/superio.asl48
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/thermal.asl96
-rw-r--r--src/mainboard/kontron/986lcd-m/acpi/video.asl45
-rw-r--r--src/mainboard/kontron/986lcd-m/dsdt.asl55
-rw-r--r--src/mainboard/kontron/986lcd-m/dsdt.dsl303
11 files changed, 510 insertions, 305 deletions
diff --git a/src/mainboard/kontron/986lcd-m/Config.lb b/src/mainboard/kontron/986lcd-m/Config.lb
index e5d110c130..e288d3fe5e 100644
--- a/src/mainboard/kontron/986lcd-m/Config.lb
+++ b/src/mainboard/kontron/986lcd-m/Config.lb
@@ -82,8 +82,8 @@ if HAVE_ACPI_TABLES
object fadt.o
object acpi_tables.o
makerule dsdt.c
- depends "$(MAINBOARD)/dsdt.dsl"
- action "iasl -p dsdt -tc $(MAINBOARD)/dsdt.dsl"
+ depends "$(MAINBOARD)/dsdt.asl"
+ action "iasl -p dsdt -tc $(MAINBOARD)/dsdt.asl"
action "mv $(PWD)/dsdt.hex dsdt.c"
end
object ./dsdt.o
diff --git a/src/mainboard/kontron/986lcd-m/acpi/cpu.asl b/src/mainboard/kontron/986lcd-m/acpi/cpu.asl
new file mode 100644
index 0000000000..7378a6b7e5
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/cpu.asl
@@ -0,0 +1,51 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+/* Intel Core (2) Duo CPU node support
+ *
+ * Note: The ACPI P_BLK on the ICH7 (and probably others) lives at
+ * PMBASE + 0x10, and it's 0x06 bytes long. On ICH8 it's 8 bytes.
+ *
+ * The second CPU core does not need its own P_BLK.
+ */
+
+Scope(\_PR)
+{
+ Processor(
+ CPU1, // name of cpu/core 0
+ 1, // numeric id of cpu/core
+ 0x510, // ACPI P_BLK base address
+ 6 // ACPI P_BLK size
+ )
+ {
+ // TODO: _PDT
+ }
+
+ Processor(
+ CPU2, // name of cpu/core 1
+ 2, // numeric id of cpu/core 1
+ 0, // ACPI P_BLK base address
+ 0) // ACPI P_BLK size
+ {
+ // TODO: _PDT
+ }
+} // End _PR
+
diff --git a/src/mainboard/kontron/986lcd-m/acpi/ec.asl b/src/mainboard/kontron/986lcd-m/acpi/ec.asl
new file mode 100644
index 0000000000..680f6cb2be
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/ec.asl
@@ -0,0 +1,51 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+Device(EC0)
+{
+ Name (_HID, EISAID("PNP0C09"))
+ Name (_UID, 1)
+
+ Method (_CRS, 0)
+ {
+ Name (ECMD, ResourceTemplate()
+ {
+ IO (Decode16, 0x62, 0x62, 0, 1)
+ IO (Decode16, 0x66, 0x66, 0, 1)
+ })
+
+ Return (ECMD)
+ }
+
+ Method (_REG, 2)
+ {
+ // This method is needed by Windows XP/2000
+ // for EC initialization before a driver
+ // is loaded
+ }
+
+ Name (_GPE, 23) // GPI07 / GPE23 -> Runtime SCI
+
+ // TODO EC Query methods
+
+ // TODO Scope _SB devices for AC power, LID, Power button
+
+}
diff --git a/src/mainboard/kontron/986lcd-m/acpi/globalnvs.asl b/src/mainboard/kontron/986lcd-m/acpi/globalnvs.asl
new file mode 100644
index 0000000000..a412becebd
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/globalnvs.asl
@@ -0,0 +1,42 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+/* Global Variables */
+
+Name(\PICM,0) // IOAPIC/8259
+
+/* Global ACPI memory region. This region is used for passing information
+ * between coreboot (aka "the system bios"), ACPI, and the SMI handler.
+ * Since we don't know where this will end up in memory at ACPI compile time,
+ * we have to fix it up in coreboot's ACPI creation phase.
+ */
+
+
+OperationRegion (GNVS, SystemMemory, 0xC0DEBABE, 0xFF)
+Field (GNVS, ByteAcc, NoLock, Preserve)
+{
+ Offset (0x00),
+ OSYS, 16, // 0x00 Operating System
+ SMIF, 8, // 0x02 SMI function
+ Offset (0x10),
+ MPEN, 8, // 0x10 Multi Processor Enable
+
+}
diff --git a/src/mainboard/kontron/986lcd-m/acpi/platform.asl b/src/mainboard/kontron/986lcd-m/acpi/platform.asl
new file mode 100644
index 0000000000..c672c7917c
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/platform.asl
@@ -0,0 +1,93 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+/* The APM port can be used for generating software SMIs */
+
+OperationRegion (APMP, SystemIO, 0xb2, 2)
+Field (APMP, ByteAcc, NoLock, Preserve)
+{
+ APMC, 8, // APM command
+ APMS, 8 // APM status
+}
+
+/* Port 80 POST */
+
+OperationRegion (POST, SystemIO, 0x80, 1)
+Field (POST, ByteAcc, Lock, Preserve)
+{
+ DBG0, 8
+}
+
+/* SMI I/O Trap */
+Method(TRAP, 1, Serialized)
+{
+ Store (Arg0, SMIF) // SMI Function
+ Store (0, TRP0) // Generate trap
+ Return (SMIF) // Return value of SMI handler
+}
+
+/* The _PIC method is called by the OS to choose between interrupt
+ * routing via the i8259 interrupt controller or the APIC.
+ *
+ * _PIC is called with a parameter of 0 for i8259 configuration and
+ * with a parameter of 1 for Local Apic/IOAPIC configuration.
+ */
+
+Method(_PIC, 1)
+{
+ // Remember the OS' IRQ routing choice.
+ Store(Arg0, PICM)
+}
+
+/* The _PTS method (Prepare To Sleep) is called before the OS is
+ * entering a sleep state. The sleep state number is passed in Arg0
+ */
+
+Method(_PTS,1)
+{
+ // Call a trap so SMI can prepare for Sleep as well.
+ // TRAP(0x55)
+}
+
+/* The _WAK method is called on system wakeup */
+
+Method(_WAK,1)
+{
+ // CPU specific part
+
+ // Notify PCI Express slots in case a card
+ // was inserted while a sleep state was active.
+
+ // Are we going to S3?
+ If (LEqual(Arg0, 3)) {
+ // ..
+ }
+
+ // Are we going to S4?
+ If (LEqual(Arg0, 4)) {
+ // ..
+ }
+
+ // TODO: Windows XP SP2 P-State restore
+
+ Return(Package(){0,0})
+}
+
diff --git a/src/mainboard/kontron/986lcd-m/acpi/sleepstates.asl b/src/mainboard/kontron/986lcd-m/acpi/sleepstates.asl
new file mode 100644
index 0000000000..61595854b2
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/sleepstates.asl
@@ -0,0 +1,27 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+Name(\_S0, Package(4){0x0,0x0,0,0})
+Name(\_S1, Package(4){0x1,0x0,0,0})
+Name(\_S3, Package(4){0x5,0x0,0,0})
+Name(\_S4, Package(4){0x6,0x0,0,0})
+Name(\_S5, Package(4){0x7,0x0,0,0})
+
diff --git a/src/mainboard/kontron/986lcd-m/acpi/superio.asl b/src/mainboard/kontron/986lcd-m/acpi/superio.asl
new file mode 100644
index 0000000000..d2498d4e5b
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/superio.asl
@@ -0,0 +1,48 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+
+Device (SIO1)
+{
+ Name (_HID, EISAID("PNP0A05"))
+ Name (_UID, 1)
+
+ Device (UAR1)
+ {
+ Name(_HID, EISAID("PNP0501"))
+ Name(_UID, 1)
+
+ // Some methods need an implementation here:
+ // missing: _STA, _DIS, _CRS, _PRS,
+ // missing: _SRS, _PS0, _PS3
+ }
+
+ Device (UAR2)
+ {
+ Name(_HID, EISAID("PNP0501"))
+ Name(_UID, 2)
+
+ // Some methods need an implementation here:
+ // missing: _STA, _DIS, _CRS, _PRS,
+ // missing: _SRS, _PS0, _PS3
+ }
+}
+
diff --git a/src/mainboard/kontron/986lcd-m/acpi/thermal.asl b/src/mainboard/kontron/986lcd-m/acpi/thermal.asl
new file mode 100644
index 0000000000..c1fa3bd947
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/thermal.asl
@@ -0,0 +1,96 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+// Thermal Zone
+
+Scope (\_TZ)
+{
+ ThermalZone (THRM)
+ {
+
+ // FIXME these could/should be read from the
+ // GNVS area, so they can be controlled by
+ // coreboot
+ Name(TC1V, 0x04)
+ Name(TC2V, 0x03)
+ Name(TSPV, 0x64)
+
+ // At which temperature should the OS start
+ // active cooling?
+ Method (_AC0, 0, Serialized)
+ {
+ Return (0xf5c) // Value for Rocky
+ }
+
+ // Method (_AC1, 0, Serialized)
+ // {
+ // Return (0xf5c)
+ // }
+
+ // Critical shutdown temperature
+ Method (_CRT, 0, Serialized)
+ {
+ Return (Add (0x0aac, 0x50)) // FIXME
+ }
+
+ // CPU throttling start temperature
+ Method (_PSV, 0, Serialized)
+ {
+ Return (0xaaf) // FIXME
+ }
+
+ // Get DTS Temperature
+ Method (_TMP, 0, Serialized)
+ {
+ Return (0xaac) // FIXME
+ }
+
+ // Processors used for active cooling
+ Method (_PSL, 0, Serialized)
+ {
+ If (MPEN) {
+ Return (Package() {\_PR.CPU1, \_PR.CPU2})
+ }
+ Return (Package() {\_PR.CPU1})
+ }
+
+ // TC1 value for passive cooling
+ Method (_TC1, 0, Serialized)
+ {
+ Return (TC1V)
+ }
+
+ // TC2 value for passive cooling
+ Method (_TC2, 0, Serialized)
+ {
+ Return (TC2V)
+ }
+
+ // Sampling period for passive cooling
+ Method (_TSP, 0, Serialized)
+ {
+ Return (TSPV)
+ }
+
+
+ }
+}
+
diff --git a/src/mainboard/kontron/986lcd-m/acpi/video.asl b/src/mainboard/kontron/986lcd-m/acpi/video.asl
new file mode 100644
index 0000000000..507a390d27
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/acpi/video.asl
@@ -0,0 +1,45 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+// Brightness write
+Method (BRTW, 1, Serialized)
+{
+ // TODO
+}
+
+// Hot Key Display Switch
+Method (HKDS, 1, Serialized)
+{
+ // TODO
+}
+
+// Lid Switch Display Switch
+Method (LSDS, 1, Serialized)
+{
+ // TODO
+}
+
+// Brightness Notification
+Method(BRTN,1,Serialized)
+{
+ // TODO (no displays defined yet)
+}
+
diff --git a/src/mainboard/kontron/986lcd-m/dsdt.asl b/src/mainboard/kontron/986lcd-m/dsdt.asl
new file mode 100644
index 0000000000..323fd0c307
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/dsdt.asl
@@ -0,0 +1,55 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+DefinitionBlock(
+ "dsdt.aml",
+ "DSDT",
+ 0x02, // DSDT revision: ACPI v2.0
+ "COREv2", // OEM id
+ "COREBOOT", // OEM table id
+ 0x00000001 // OEM revision
+)
+{
+ // Some generic macros
+ Include ("acpi/platform.asl")
+
+ // global NVS and variables
+ Include ("acpi/globalnvs.asl")
+
+ // General Purpose Events
+ //include ("acpi/gpe.asl")
+
+ /* CPU node(s) */
+ include ("acpi/cpu.asl")
+
+ //include ("acpi/thermal.asl")
+
+ Scope (\_SB) {
+ Device (PCI0)
+ {
+ Include ("../../../northbridge/intel/i945/acpi/i945.asl")
+ include ("../../../southbridge/intel/i82801gx/acpi/ich7.asl")
+ }
+ }
+
+ /* Board and Chipset specific sleep states */
+ include ("acpi/sleepstates.asl")
+}
diff --git a/src/mainboard/kontron/986lcd-m/dsdt.dsl b/src/mainboard/kontron/986lcd-m/dsdt.dsl
deleted file mode 100644
index 95627fb45d..0000000000
--- a/src/mainboard/kontron/986lcd-m/dsdt.dsl
+++ /dev/null
@@ -1,303 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2007-2008 coresystems GmbH
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; version 2 of
- * the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- * MA 02110-1301 USA
- */
-
-DefinitionBlock ("DSDT", "DSDT", 1, "986LCD", "COREBOOT", 0x0000001)
-{
- Scope (\_PR)
- {
- Processor (CPU1, 0x01, 0x00000810, 0x06)
- {
- OperationRegion (STBL, SystemMemory, 0xFFFF0000, 0xFFFF)
- Name (NCPU, 0x80)
- Name (TYPE, 0x80000000)
- Name (HNDL, 0x80000000)
- Name (CFGD, 0x80000000)
- Name (TBLD, 0x80)
- Method (_PDC, 1, NotSerialized)
- {
- }
- }
- }
-
- Scope (\_PR)
- {
- Processor (CPU2, 0x02, 0x00000000, 0x00)
- {
- OperationRegion (STBL, SystemMemory, 0xFFFF0000, 0xFFFF)
- Name (NCPU, 0x80)
- Name (TYPE, 0x80000000)
- Name (HNDL, 0x80000000)
- Name (CFGD, 0x80000000)
- Name (TBLD, 0x80)
- Method (_PDC, 1, NotSerialized)
- {
- }
- }
- }
-
- Name (PICM, 0x00)
- Method (_PIC, 1, NotSerialized)
- {
- Store (Arg0, PICM)
- }
-
- Scope (\_SB)
- {
- Name (PR00, Package (0x12)
- {
- Package (0x04) { 0x0001FFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x01, LNKB, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x02, LNKC, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x03, LNKD, 0x00 },
- Package (0x04) { 0x001FFFFF, 0x00, LNKC, 0x00 },
- Package (0x04) { 0x001FFFFF, 0x01, LNKD, 0x00 },
- Package (0x04) { 0x001DFFFF, 0x00, LNKH, 0x00 },
- Package (0x04) { 0x001DFFFF, 0x01, LNKD, 0x00 },
- Package (0x04) { 0x001DFFFF, 0x02, LNKC, 0x00 },
- Package (0x04) { 0x001DFFFF, 0x03, LNKA, 0x00 },
- Package (0x04) { 0x001EFFFF, 0x00, LNKB, 0x00 },
- Package (0x04) { 0x001EFFFF, 0x01, LNKE, 0x00 },
- Package (0x04) { 0x001BFFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0x001CFFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0x001CFFFF, 0x01, LNKB, 0x00 },
- Package (0x04) { 0x001CFFFF, 0x02, LNKC, 0x00 },
- Package (0x04) { 0x001CFFFF, 0x03, LNKD, 0x00 },
- Package (0x04) { 0x0002FFFF, 0x00, LNKA, 0x00 }
- })
- Name (AR00, Package (0x12)
- {
- Package (0x04) { 0x0001FFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0x0001FFFF, 0x01, 0x00, 0x11 },
- Package (0x04) { 0x0001FFFF, 0x02, 0x00, 0x12 },
- Package (0x04) { 0x0001FFFF, 0x03, 0x00, 0x13 },
- Package (0x04) { 0x001FFFFF, 0x00, 0x00, 0x12 },
- Package (0x04) { 0x001FFFFF, 0x01, 0x00, 0x13 },
- Package (0x04) { 0x001DFFFF, 0x00, 0x00, 0x17 },
- Package (0x04) { 0x001DFFFF, 0x01, 0x00, 0x13 },
- Package (0x04) { 0x001DFFFF, 0x02, 0x00, 0x12 },
- Package (0x04) { 0x001DFFFF, 0x03, 0x00, 0x10 },
- Package (0x04) { 0x001EFFFF, 0x00, 0x00, 0x11 },
- Package (0x04) { 0x001EFFFF, 0x01, 0x00, 0x14 },
- Package (0x04) { 0x001BFFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0x001CFFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0x001CFFFF, 0x01, 0x00, 0x11 },
- Package (0x04) { 0x001CFFFF, 0x02, 0x00, 0x12 },
- Package (0x04) { 0x001CFFFF, 0x03, 0x00, 0x13 },
- Package (0x04) { 0x0002FFFF, 0x00, 0x00, 0x10 }
- })
- Name (PR01, Package (0x1D)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x00, LNKE, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x01, LNKF, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x02, LNKG, 0x00 },
- Package (0x04) { 0x0001FFFF, 0x03, LNKH, 0x00 },
- Package (0x04) { 0x0002FFFF, 0x00, LNKF, 0x00 },
- Package (0x04) { 0x0002FFFF, 0x01, LNKG, 0x00 },
- Package (0x04) { 0x0002FFFF, 0x02, LNKH, 0x00 },
- Package (0x04) { 0x0002FFFF, 0x03, LNKE, 0x00 },
- Package (0x04) { 0x0003FFFF, 0x00, LNKG, 0x00 },
- Package (0x04) { 0x0003FFFF, 0x01, LNKH, 0x00 },
- Package (0x04) { 0x0003FFFF, 0x02, LNKE, 0x00 },
- Package (0x04) { 0x0003FFFF, 0x03, LNKF, 0x00 },
- Package (0x04) { 0x0004FFFF, 0x00, LNKH, 0x00 },
- Package (0x04) { 0x0004FFFF, 0x01, LNKE, 0x00 },
- Package (0x04) { 0x0004FFFF, 0x02, LNKF, 0x00 },
- Package (0x04) { 0x0004FFFF, 0x03, LNKG, 0x00 },
- Package (0x04) { 0x0005FFFF, 0x00, LNKD, 0x00 },
- Package (0x04) { 0x0005FFFF, 0x01, LNKC, 0x00 },
- Package (0x04) { 0x0005FFFF, 0x02, LNKB, 0x00 },
- Package (0x04) { 0x0005FFFF, 0x03, LNKA, 0x00 },
- Package (0x04) { 0x0006FFFF, 0x00, LNKC, 0x00 },
- Package (0x04) { 0x0006FFFF, 0x01, LNKB, 0x00 },
- Package (0x04) { 0x0006FFFF, 0x02, LNKA, 0x00 },
- Package (0x04) { 0x0006FFFF, 0x03, LNKD, 0x00 },
- Package (0x04) { 0x0009FFFF, 0x00, LNKF, 0x00 },
- Package (0x04) { 0x0009FFFF, 0x01, LNKG, 0x00 },
- Package (0x04) { 0x0009FFFF, 0x02, LNKH, 0x00 },
- Package (0x04) { 0x0009FFFF, 0x03, LNKE, 0x00 }
- })
- Name (AR01, Package (0x1D)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0x0001FFFF, 0x00, 0x00, 0x14 },
- Package (0x04) { 0x0001FFFF, 0x01, 0x00, 0x15 },
- Package (0x04) { 0x0001FFFF, 0x02, 0x00, 0x16 },
- Package (0x04) { 0x0001FFFF, 0x03, 0x00, 0x17 },
- Package (0x04) { 0x0002FFFF, 0x00, 0x00, 0x15 },
- Package (0x04) { 0x0002FFFF, 0x01, 0x00, 0x16 },
- Package (0x04) { 0x0002FFFF, 0x02, 0x00, 0x17 },
- Package (0x04) { 0x0002FFFF, 0x03, 0x00, 0x14 },
- Package (0x04) { 0x0003FFFF, 0x00, 0x00, 0x16 },
- Package (0x04) { 0x0003FFFF, 0x01, 0x00, 0x17 },
- Package (0x04) { 0x0003FFFF, 0x02, 0x00, 0x14 },
- Package (0x04) { 0x0003FFFF, 0x03, 0x00, 0x15 },
- Package (0x04) { 0x0004FFFF, 0x00, 0x00, 0x17 },
- Package (0x04) { 0x0004FFFF, 0x01, 0x00, 0x14 },
- Package (0x04) { 0x0004FFFF, 0x02, 0x00, 0x15 },
- Package (0x04) { 0x0004FFFF, 0x03, 0x00, 0x16 },
- Package (0x04) { 0x0005FFFF, 0x00, 0x00, 0x13 },
- Package (0x04) { 0x0005FFFF, 0x01, 0x00, 0x12 },
- Package (0x04) { 0x0005FFFF, 0x02, 0x00, 0x11 },
- Package (0x04) { 0x0005FFFF, 0x03, 0x00, 0x10 },
- Package (0x04) { 0x0006FFFF, 0x00, 0x00, 0x12 },
- Package (0x04) { 0x0006FFFF, 0x01, 0x00, 0x11 },
- Package (0x04) { 0x0006FFFF, 0x02, 0x00, 0x10 },
- Package (0x04) { 0x0006FFFF, 0x03, 0x00, 0x13 },
- Package (0x04) { 0x0009FFFF, 0x00, 0x00, 0x15 },
- Package (0x04) { 0x0009FFFF, 0x01, 0x00, 0x16 },
- Package (0x04) { 0x0009FFFF, 0x02, 0x00, 0x17 },
- Package (0x04) { 0x0009FFFF, 0x03, 0x00, 0x14 }
- })
- Name (PR04, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0xFFFF, 0x01, LNKB, 0x00 },
- Package (0x04) { 0xFFFF, 0x02, LNKC, 0x00 },
- Package (0x04) { 0xFFFF, 0x03, LNKD, 0x00 }
- })
- Name (AR04, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0xFFFF, 0x01, 0x00, 0x11 },
- Package (0x04) { 0xFFFF, 0x02, 0x00, 0x12 },
- Package (0x04) { 0xFFFF, 0x03, 0x00, 0x13 }
- })
- Name (PR05, Package (0x01)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKB, 0x00 }
- })
- Name (AR05, Package (0x01)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x11 }
- })
- Name (PR06, Package (0x01)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKC, 0x00 }
- })
- Name (AR06, Package (0x01)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x12 }
- })
- Name (PR07, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKD, 0x00 },
- Package (0x04) { 0xFFFF, 0x01, LNKA, 0x00 },
- Package (0x04) { 0xFFFF, 0x02, LNKB, 0x00 },
- Package (0x04) { 0xFFFF, 0x03, LNKC, 0x00 }
- })
- Name (AR07, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x13 },
- Package (0x04) { 0xFFFF, 0x01, 0x00, 0x10 },
- Package (0x04) { 0xFFFF, 0x02, 0x00, 0x11 },
- Package (0x04) { 0xFFFF, 0x03, 0x00, 0x12 }
- })
- Name (PR08, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKA, 0x00 },
- Package (0x04) { 0xFFFF, 0x01, LNKB, 0x00 },
- Package (0x04) { 0xFFFF, 0x02, LNKC, 0x00 },
- Package (0x04) { 0xFFFF, 0x03, LNKD, 0x00 }
- })
- Name (AR08, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x10 },
- Package (0x04) { 0xFFFF, 0x01, 0x00, 0x11 },
- Package (0x04) { 0xFFFF, 0x02, 0x00, 0x12 },
- Package (0x04) { 0xFFFF, 0x03, 0x00, 0x13 }
- })
- Name (PR09, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, LNKB, 0x00 },
- Package (0x04) { 0xFFFF, 0x01, LNKC, 0x00 },
- Package (0x04) { 0xFFFF, 0x02, LNKD, 0x00 },
- Package (0x04) { 0xFFFF, 0x03, LNKA, 0x00 }
- })
- Name (AR09, Package (0x04)
- {
- Package (0x04) { 0xFFFF, 0x00, 0x00, 0x11 },
- Package (0x04) { 0xFFFF, 0x01, 0x00, 0x12 },
- Package (0x04) { 0xFFFF, 0x02, 0x00, 0x13 },
- Package (0x04) { 0xFFFF, 0x03, 0x00, 0x10 }
- })
-
- Device (LNKA)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x01)
- }
-
- Device (LNKB)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x02)
- }
-
- Device (LNKC)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x03)
- }
-
- Device (LNKD)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x04)
- }
-
- Device (LNKE)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x05)
- }
-
- Device (LNKF)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x06)
- }
-
- Device (LNKG)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x07)
- }
-
- Device (LNKH)
- {
- Name (_HID, EisaId ("PNP0C0F"))
- Name (_UID, 0x08)
- }
- }
-
- Name (\_S0, Package (0x04)
- { 0x00, 0x00, 0x00, 0x00 })
- Name (\_S1, Package (0x04)
- { 0x01, 0x00, 0x00, 0x00 })
- Name (\_S3, Package (0x04)
- { 0x05, 0x00, 0x00, 0x00 })
- Name (\_S4, Package (0x04)
- { 0x06, 0x00, 0x00, 0x00 })
- Name (\_S5, Package (0x04)
- { 0x07, 0x00, 0x00, 0x00 })
-}
-