diff options
author | Matt DeVillier <matt.devillier@puri.sm> | 2021-05-28 13:35:41 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-06-21 05:32:26 +0000 |
commit | 4ccbd49617d9c2f9e51900367c20dcc840735906 (patch) | |
tree | b55e0a6c7ce6015e270f289487d9f27add87be38 /src/ec | |
parent | c60c324d7132e76a0c113ca89fdda0c81848e7a7 (diff) |
ec/purism/librem/ec.asl: Disable notification for touchpad enable/disable
Somehow, enabling the notification to the OS driver breaks the
functionality it was meant to enable. Until this can be resolved,
disable the driver notification, so that the key functions as intended.
Test: build/boot librem_bdw and librem_skl boards, verify trackpad
enable toggle via Fn+F1 works properly.
Change-Id: Ic7bdb3154a87c4202b5ee1fd333281ef78db1104
Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55657
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/purism/librem/acpi/ec.asl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ec/purism/librem/acpi/ec.asl b/src/ec/purism/librem/acpi/ec.asl index abdd8be919..828b44d255 100644 --- a/src/ec/purism/librem/acpi/ec.asl +++ b/src/ec/purism/librem/acpi/ec.asl @@ -176,12 +176,14 @@ Device (EC) Notify (\_SB.SLPB, 0x80) } - /* KEY_F13 (Touchpad Enable/Disable) */ - Method (_Q34) + /* KEY_F13 (Touchpad Enable/Disable) /* + /* Disabled since enabling breaks functionality + with Linux topstar driver */ + /* Method (_Q34) { TPSN (0x87) ^TPAD ^= 1 - } + } */ /* KEY_WLAN */ Method (_Q35) |