diff options
author | Eric Lai <ericr_lai@compal.corp-partner.google.com> | 2020-04-27 15:17:56 +0800 |
---|---|---|
committer | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2020-04-28 16:45:37 +0000 |
commit | c486c78020fc426d8ddb2a74fac5f7c402e4af29 (patch) | |
tree | 7b9bda3c3f4c0dbe8046c2bedbf335bf3bddb9b7 /src/mainboard | |
parent | 0ee9b14c09c4dfeb59ad94315051ae423b26384d (diff) |
mb/google/deltaur: Enable PS/2 keyboard
By default, the ACPI status method _STA returns false for the PS/2
keyboard and mouse device of the Wilco EC, so the OS does not enable it.
Enable these devices, by defining the macro SIO_EC_ENABLE_PS2K.
BUG=b:154790509
TEST=Check Keyboard is functional under OS.
Signed-off-by: Eric Lai <ericr_lai@compal.corp-partner.google.com>
Change-Id: I31c74ddb3608589e5a4753c7e487f250b112bb1e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40745
Reviewed-by: Ivy Jian <ivy_jian@compal.corp-partner.google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/deltaur/variants/baseboard/include/baseboard/ec.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/ec.h b/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/ec.h index 3825cc8824..9f688ae963 100644 --- a/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/ec.h +++ b/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/ec.h @@ -7,8 +7,7 @@ #ifndef __MAINBOARD_EC_H__ #define __MAINBOARD_EC_H__ - - - +/* Enable PS/2 keyboard */ +#define SIO_EC_ENABLE_PS2K #endif /* __MAINBOARD_EC_H__ */ |