Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40221 )
Change subject: mb/purism: Remove unused ACPI generic sleep button device SLPB ......................................................................
mb/purism: Remove unused ACPI generic sleep button device SLPB
The Puri.sm devices use the dual-button model, where the power button generates a soft-off transition request and a sleep button (function key for ESC key) generates a sleep transition request.
But the fixed hardware sleep button with its event programming model in the PM1x_EVT_BLK is used.
For this to work the flag SLEEP_BUTTON in the FADT has to be cleared.
Change-Id: I533818d106703b1dda745ceb633129661ac61cdf Signed-off-by: Paul Menzel pmenzel@molgen.mpg.de --- M src/mainboard/purism/librem_bdw/acpi/mainboard.asl M src/mainboard/purism/librem_skl/acpi/mainboard.asl 2 files changed, 0 insertions(+), 20 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/21/40221/1
diff --git a/src/mainboard/purism/librem_bdw/acpi/mainboard.asl b/src/mainboard/purism/librem_bdw/acpi/mainboard.asl index 8aaf285..b160e28 100644 --- a/src/mainboard/purism/librem_bdw/acpi/mainboard.asl +++ b/src/mainboard/purism/librem_bdw/acpi/mainboard.asl @@ -17,14 +17,4 @@ Return (_SB.PCI0.LPCB.EC.LIDS) } } - - Device (SLPB) - { - Name (_HID, EisaId ("PNP0C0E")) - - Method (_STA) - { - Return (0xF) - } - } } diff --git a/src/mainboard/purism/librem_skl/acpi/mainboard.asl b/src/mainboard/purism/librem_skl/acpi/mainboard.asl index 8aaf285..b160e28 100644 --- a/src/mainboard/purism/librem_skl/acpi/mainboard.asl +++ b/src/mainboard/purism/librem_skl/acpi/mainboard.asl @@ -17,14 +17,4 @@ Return (_SB.PCI0.LPCB.EC.LIDS) } } - - Device (SLPB) - { - Name (_HID, EisaId ("PNP0C0E")) - - Method (_STA) - { - Return (0xF) - } - } }