[coreboot-gerrit] New patch to review for coreboot: 6262097 macbook21: Support wake on LID

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Mon Aug 18 01:12:46 CEST 2014


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6699

-gerrit

commit 626209776f355b210e53485a1be4ee2ba94decb9
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Mon Aug 18 01:12:36 2014 +0200

    macbook21: Support wake on LID
    
    Change-Id: Ifa1045abc761bef05977a8020cf6f18db042ad58
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 src/mainboard/apple/macbook21/acpi/ec.asl | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/mainboard/apple/macbook21/acpi/ec.asl b/src/mainboard/apple/macbook21/acpi/ec.asl
index 01bfb0c..dc248b4 100644
--- a/src/mainboard/apple/macbook21/acpi/ec.asl
+++ b/src/mainboard/apple/macbook21/acpi/ec.asl
@@ -101,6 +101,20 @@ Device(EC)
 		{
 			return(LIDS)
 		}
+
+		Method(_PRW, 0, NotSerialized)
+		{
+			Return (Package() { 0x1d, 0x03 })
+		}
+
+		Method(_PSW, 1, NotSerialized)
+		{
+			if (Arg0) {
+				Store(1, WKLD)
+			} else {
+				Store(0, WKLD)
+			}
+		}
 	}
 
 	Device(AC)



More information about the coreboot-gerrit mailing list