summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicola Corna <nicola@corna.info>2017-02-10 13:05:04 +0100
committerAlexander Couzens <lynxis@fe80.eu>2017-02-28 15:10:42 +0100
commitb1ffff7dab8004aa4c51f5d774f2ee75facc2ed4 (patch)
tree96c7e427bc42975239d43e630c39d9a93cff56bb
parent47f87bd93f6ebbfd771fe0a70777aeff5c65dbff (diff)
downloadcoreboot-b1ffff7dab8004aa4c51f5d774f2ee75facc2ed4.tar.gz
coreboot-b1ffff7dab8004aa4c51f5d774f2ee75facc2ed4.tar.bz2
coreboot-b1ffff7dab8004aa4c51f5d774f2ee75facc2ed4.zip
ec/lenovo/h8: Pulse the power LED during S3, if supported
On the models that support it (like the X220) the LED pulses, on the others (like the X201) the LED powers off. Change-Id: I2ac7dbc30609179e4ca5fc0a7b06763431fe3344 Signed-off-by: Nicola Corna <nicola@corna.info> Reviewed-on: https://review.coreboot.org/18325 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
-rw-r--r--src/ec/lenovo/h8/acpi/systemstatus.asl4
-rw-r--r--src/ec/lenovo/h8/h8.h9
2 files changed, 7 insertions, 6 deletions
diff --git a/src/ec/lenovo/h8/acpi/systemstatus.asl b/src/ec/lenovo/h8/acpi/systemstatus.asl
index e1158429e0c8..378ce01c9b6c 100644
--- a/src/ec/lenovo/h8/acpi/systemstatus.asl
+++ b/src/ec/lenovo/h8/acpi/systemstatus.asl
@@ -49,8 +49,8 @@ Scope (\_SI)
If (LEqual (Arg0, 3)) {
/* sleep state */
- /* power TLED off */
- \_SB.PCI0.LPCB.EC.TLED(0x00)
+ /* power TLED pulsing */
+ \_SB.PCI0.LPCB.EC.TLED(0xa0)
/* suspend TLED on */
\_SB.PCI0.LPCB.EC.TLED(0x87)
}
diff --git a/src/ec/lenovo/h8/h8.h b/src/ec/lenovo/h8/h8.h
index 290db918ece2..c721d3823409 100644
--- a/src/ec/lenovo/h8/h8.h
+++ b/src/ec/lenovo/h8/h8.h
@@ -63,12 +63,9 @@ void h8_mainboard_init_dock (void);
#define H8_LED_CONTROL 0x0c
#define H8_LED_CONTROL_OFF 0x00
#define H8_LED_CONTROL_ON 0x80
+#define H8_LED_CONTROL_PULSE 0xa0 /* Some models, power LED only*/
#define H8_LED_CONTROL_BLINK 0xc0
-#define H8_USB_ALWAYS_ON 0x0d
-#define H8_USB_ALWAYS_ON_ENABLE 0x01
-#define H8_USB_ALWAYS_ON_AC_ONLY 0x0c
-
#define H8_LED_CONTROL_POWER_LED 0x00
#define H8_LED_CONTROL_BAT0_LED 0x01
#define H8_LED_CONTROL_BAT1_LED 0x02
@@ -77,6 +74,10 @@ void h8_mainboard_init_dock (void);
#define H8_LED_CONTROL_DOCK_LED1 0x08
#define H8_LED_CONTROL_DOCK_LED2 0x09
+#define H8_USB_ALWAYS_ON 0x0d
+#define H8_USB_ALWAYS_ON_ENABLE 0x01
+#define H8_USB_ALWAYS_ON_AC_ONLY 0x0c
+
#define H8_FAN_CONTROL 0x2f
#define H8_FAN_CONTROL_AUTO 0x80