diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2017-05-21 15:17:28 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-16 16:09:09 +0200 |
commit | 739ded5c182917083975230bea7d125e87923a85 (patch) | |
tree | 6f52c3599a114b425045206a10c85bb48af7cac6 | |
parent | 5aaa8ce21c85a41c313c18ca7a4e41a25ab711d9 (diff) | |
download | coreboot-739ded5c182917083975230bea7d125e87923a85.tar.xz |
purism/librem13v2: Fix EC_SCI_GPI value
Existing value was copied from librem13 v1 board, use value
obtained from AMI firmware.
TEST: Observe Windows boots correctly, function keys work
under both Windows and Linux.
Change-Id: I0ea6cc4602ce1047cb803acc65cbca1af1f480b0
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/19945
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | src/mainboard/purism/librem13v2/acpi/ec.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/purism/librem13v2/acpi/ec.asl b/src/mainboard/purism/librem13v2/acpi/ec.asl index cf8b9a91d9..4215213737 100644 --- a/src/mainboard/purism/librem13v2/acpi/ec.asl +++ b/src/mainboard/purism/librem13v2/acpi/ec.asl @@ -13,6 +13,6 @@ * GNU General Public License for more details. */ -#define EC_SCI_GPI 10 +#define EC_SCI_GPI 0x50 #include <ec/purism/librem/acpi/ec.asl> |