google/chromeec: Add support for cros_ec_keyb device
This is required to pass button information from EC to kernel without using 8042 keyboard driver. 1. Define EC buttons device using GOOG0007 ACPI ID. 2. Guard enabling of this device using EC_ENABLE_MKBP_DEVICE. BUG=b:35774934 BRANCH=None TEST=Verified using evtest that kernel is able to get button press/release information from EC. Change-Id: I4578f16648305350d36fb50f2a5d2285514daed4 Signed-off-by: Furquan Shaikh <furquan@chromium.org> Reviewed-on: https://review.coreboot.org/18641 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
b1aded2f0c
commit
d4a0a348e4
|
@ -18,4 +18,13 @@ Device (CREC)
|
|||
Name (_HID, "GOOG0004")
|
||||
Name (_UID, 1)
|
||||
Name (_DDN, "EC Command Device")
|
||||
|
||||
#ifdef EC_ENABLE_MKBP_DEVICE
|
||||
Device (CKSC)
|
||||
{
|
||||
Name (_HID, "GOOG0007")
|
||||
Name (_UID, 1)
|
||||
Name (_DDN, "EC MKBP Device")
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue