Skip to content

Commit bfa26ba

Browse files
William Mahondtor
authored andcommitted
HID: add mapping for KEY_DICTATE
Numerous keyboards are adding dictate keys which allows for text messages to be dictated by a microphone. This patch adds a new key definition KEY_DICTATE and maps 0x0c/0x0d8 usage code to this new keycode. Additionally hid-debug is adjusted to recognize this new usage code as well. Signed-off-by: William Mahon <wmahon@chromium.org> Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Link: https://lore.kernel.org/r/20220303021501.1.I5dbf50eb1a7a6734ee727bda4a8573358c6d3ec0@changeid Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent 04b7762 commit bfa26ba

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

drivers/hid/hid-debug.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ static const char *keys[KEY_MAX + 1] = {
969969
[KEY_ASSISTANT] = "Assistant",
970970
[KEY_KBD_LAYOUT_NEXT] = "KbdLayoutNext",
971971
[KEY_EMOJI_PICKER] = "EmojiPicker",
972+
[KEY_DICTATE] = "Dictate",
972973
[KEY_BRIGHTNESS_MIN] = "BrightnessMin",
973974
[KEY_BRIGHTNESS_MAX] = "BrightnessMax",
974975
[KEY_BRIGHTNESS_AUTO] = "BrightnessAuto",

drivers/hid/hid-input.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
992992
case 0x0cd: map_key_clear(KEY_PLAYPAUSE); break;
993993
case 0x0cf: map_key_clear(KEY_VOICECOMMAND); break;
994994

995+
case 0x0d8: map_key_clear(KEY_DICTATE); break;
995996
case 0x0d9: map_key_clear(KEY_EMOJI_PICKER); break;
996997

997998
case 0x0e0: map_abs_clear(ABS_VOLUME); break;

include/uapi/linux/input-event-codes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,7 @@
612612
#define KEY_ASSISTANT 0x247 /* AL Context-aware desktop assistant */
613613
#define KEY_KBD_LAYOUT_NEXT 0x248 /* AC Next Keyboard Layout Select */
614614
#define KEY_EMOJI_PICKER 0x249 /* Show/hide emoji picker (HUTRR101) */
615+
#define KEY_DICTATE 0x24a /* Start or Stop Voice Dictation Session (HUTRR99) */
615616

616617
#define KEY_BRIGHTNESS_MIN 0x250 /* Set Brightness to Minimum */
617618
#define KEY_BRIGHTNESS_MAX 0x251 /* Set Brightness to Maximum */

0 commit comments

Comments
 (0)