From 95ebe66f7f5fef64d363cb48e5a441ad505353d1 Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Thu, 28 Apr 2011 09:29:06 +0000 Subject: Thinkpad: Enable Battery events Enable the following events for battery objects on Thinkpad X60/T60: 24: BAT0 critical 25: BAT1 critical 4A: BAT0 present 4B: BAT0 state change 4C: BAT1 present 4D: BAT1 state change Signed-off-by: Sven Schnelle Acked-by: Sven Schnelle git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6549 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/ec/lenovo/h8/acpi/battery.asl | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'src/ec/lenovo/h8/acpi') diff --git a/src/ec/lenovo/h8/acpi/battery.asl b/src/ec/lenovo/h8/acpi/battery.asl index 7168581604..7dd49fe0fd 100644 --- a/src/ec/lenovo/h8/acpi/battery.asl +++ b/src/ec/lenovo/h8/acpi/battery.asl @@ -294,3 +294,39 @@ Device (BAT1) } } } + +/* Battery 0 critical */ +Method(_Q24, 0, NotSerialized) +{ + Notify(BAT0, 0x80) +} + +/* Battery 1 critical */ +Method(_Q25, 0, NotSerialized) +{ + Notify(BAT1, 0x80) +} + +/* Battery 0 attach/detach */ +Method(_Q4A, 0, NotSerialized) +{ + Notify(BAT0, 0x81) +} + +/* Battery 0 state change */ +Method(_Q4B, 0, NotSerialized) +{ + Notify(BAT0, 0x80) +} + +/* Battery 1 attach/detach */ +Method(_Q4C, 0, NotSerialized) +{ + Notify(BAT1, 0x81) +} + +/* Battery 1 state change */ +Method(_Q4D, 0, NotSerialized) +{ + Notify(BAT1, 0x80) +} -- cgit v1.2.3