diff options
author | Aseda Aboagye <aaboagye@google.com> | 2024-04-09 20:15:20 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-04-15 13:32:48 +0000 |
commit | f2782b8328d59c2c76b67fced4ebff48cdd17c32 (patch) | |
tree | dbe68cb8f6488acd179dce3e0bf03aa79288d4de /src/include/acpi | |
parent | 35130a8e1facf3389dd2adb8266876a7aa7571cd (diff) |
acpigen_ps2_keybd: Add support for dictation key
Some internal keyboards have a dictation key; this commit simply adds
support for this key by adding the mapping from the scancode to the
Linux keycode for use in the linux,physmap ACPI table.
BUG=b:333101631
TEST=Flash DUT that emits a scancode for a dictation key, verify that it
is mapped to KEY_DICTATE in the Linux kernel.
Change-Id: Iabc56662a9d6b29e84ab81ed93cb46d2e8372de9
Signed-off-by: Aseda Aboagye <aaboagye@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81863
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nick Vaccaro <nvaccaro@google.com>
Diffstat (limited to 'src/include/acpi')
-rw-r--r-- | src/include/acpi/acpigen_ps2_keybd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/acpi/acpigen_ps2_keybd.h b/src/include/acpi/acpigen_ps2_keybd.h index bac991bf36..263eb05ab7 100644 --- a/src/include/acpi/acpigen_ps2_keybd.h +++ b/src/include/acpi/acpigen_ps2_keybd.h @@ -27,6 +27,7 @@ enum ps2_action_key { PS2_KEY_KBD_BKLIGHT_TOGGLE, PS2_KEY_MICMUTE, PS2_KEY_MENU, + PS2_KEY_DICTATE, }; #define PS2_MIN_TOP_ROW_KEYS 2 |