X60: Add _PRW/_PSW methods to LID/SLPB objects
authorSven Schnelle <svens@stackframe.org>
Mon, 14 Mar 2011 13:42:08 +0000 (13:42 +0000)
committerSven Schnelle <svens@stackframe.org>
Mon, 14 Mar 2011 13:42:08 +0000 (13:42 +0000)
This patch adds the required methods for enabling/disabling
the LID and SLPB objects as wake source. On Thinkpads, the
Fn key can (and is by the Vendor BIOS) programmed as Wake source,
so let's do it the same way.

Signed-off-by: Sven Schnelle <svens@stackframe.org>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6444 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/mainboard/lenovo/x60/acpi/lid.asl
src/mainboard/lenovo/x60/acpi/sleepbutton.asl
src/mainboard/lenovo/x60/acpi/systemstatus.asl [new file with mode: 0644]
src/mainboard/lenovo/x60/dsdt.asl

index 2c92ee67e0c3b7e36572407c58e506263da25809..2dfa8d116d046e91cba9d8510e4e4c648bc68628 100644 (file)
 
 Field(ERAM, ByteAcc, NoLock, Preserve)
 {
+                Offset (0x32),
+                           , 2,
+                       WKLD, 1,
                Offset (0x46),
-                               , 2,
-                       LIDS    , 1
+                           , 2,
+                       LIDS, 1
 }
 
 Device(LID)
@@ -34,4 +37,18 @@ Device(LID)
        {
                return (LIDS)
        }
+
+       Method(_PRW, 0, NotSerialized)
+       {
+               Return (Package() { 0x18, 0x03 })
+       }
+
+       Method(_PSW, 1, NotSerialized)
+       {
+               if (Arg0) {
+                       Store(1, WKLD)
+               } else {
+                       Store(0, WKLD)
+               }
+       }
 }
index c339158b31601807e4e07848b6a7c9208cdad722..09e88aa74e935e869576b04d46df03cac09aae43 100644 (file)
  * MA 02110-1301 USA
  */
 
+Field(ERAM, ByteAcc, NoLock, Preserve)
+{
+               Offset (0x32),
+                           , 4,
+                       WKFN, 1,
+               Offset(0x83),
+                       FNKY, 8
+}
+
 Device(SLPB)
 {
         Name (_HID, EisaId ("PNP0C0E"))
+       Method(_PRW, 0, NotSerialized)
+       {
+               Return (Package() { 0x18, 0x03 })
+       }
+
+       Method(_PSW, 1, NotSerialized)
+       {
+               if (Arg0) {
+                       Store(6, FNKY) /* Fn key acts as wake button */
+                       Store(1, WKFN)
+               } else {
+                       Store(0, FNKY) /* Fn key normal operation */
+                       Store(0, WKFN)
+               }
+       }
 }
diff --git a/src/mainboard/lenovo/x60/acpi/systemstatus.asl b/src/mainboard/lenovo/x60/acpi/systemstatus.asl
new file mode 100644 (file)
index 0000000..fb3fa26
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (c) 2011 Sven Schnelle <svens@stackframe.org>
+ *
+ * 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
+ */
+
+
+Scope (\_SI)
+{
+       Method(_SST, 1, NotSerialized)
+       {
+               If (LEqual (Arg0, 0)) {
+                       /* Indicator off */
+
+                       /* power LED off */
+                       \_SB.PCI0.LPC.EC.LED(0x00)
+                       /* suspend LED off */
+                       \_SB.PCI0.LPC.EC.LED(0x07)
+               }
+
+               If (LEqual (Arg0, 1)) {
+                       /* working state */
+
+                       /* power LED on */
+                       \_SB.PCI0.LPC.EC.LED(0x80)
+                       /* suspend LED off */
+                       \_SB.PCI0.LPC.EC.LED(0x07)
+               }
+
+               If (LEqual (Arg0, 2)) {
+                       /* waking state */
+
+                       /* power LED om */
+                       \_SB.PCI0.LPC.EC.LED(0x80)
+                       /* suspend LED blinking */
+                       \_SB.PCI0.LPC.EC.LED(0xc7)
+               }
+
+               If (LEqual (Arg0, 3)) {
+                       /* sleep state */
+
+                       /* power LED off */
+                       \_SB.PCI0.LPC.EC.LED(0x00)
+                       /* suspend LED on */
+                       \_SB.PCI0.LPC.EC.LED(0x87)
+               }
+               
+               
+               
+       }
+}
index e3a62a3a197d615fc7f46920513f06f6f38df144..3117e2915df87bd2196f352a1226b8576c78e679 100644 (file)
@@ -42,7 +42,8 @@ DefinitionBlock(
 
        // Thermal Zone
        #include "acpi/thermal.asl"
-
+       // System status indicators
+       #include "acpi/systemstatus.asl
        Scope (\_SB) {
                Device (PCI0)
                {