You've already forked linux-t2-patches
mirror of
https://github.com/t2linux/linux-t2-patches.git
synced 2026-04-30 13:52:11 -07:00
613d856ea6
This reverts commit 70181d5e8e.
102 lines
3.2 KiB
Diff
102 lines
3.2 KiB
Diff
From: Aditya Garg <gargaditya08@live.com>
|
|
|
|
This patch adds the Fn mapping for keyboards on certain T2 Macs.
|
|
|
|
Signed-off-by: Aditya Garg <gargaditya08@live.com>
|
|
---
|
|
drivers/hid/hid-apple.c | 64 ++++++++++++++++++++++++++++++++++++++++-
|
|
1 file changed, 63 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c
|
|
index b6e1a29a2..70e9f6f74 100644
|
|
--- a/drivers/hid/hid-apple.c
|
|
+++ b/drivers/hid/hid-apple.c
|
|
@@ -113,6 +113,51 @@ static const struct apple_key_translation macbookair_fn_keys[] = {
|
|
{ }
|
|
};
|
|
|
|
+static const struct apple_key_translation macbookpro_no_esc_fn_keys[] = {
|
|
+ { KEY_BACKSPACE, KEY_DELETE },
|
|
+ { KEY_ENTER, KEY_INSERT },
|
|
+ { KEY_GRAVE, KEY_ESC },
|
|
+ { KEY_1, KEY_F1 },
|
|
+ { KEY_2, KEY_F2 },
|
|
+ { KEY_3, KEY_F3 },
|
|
+ { KEY_4, KEY_F4 },
|
|
+ { KEY_5, KEY_F5 },
|
|
+ { KEY_6, KEY_F6 },
|
|
+ { KEY_7, KEY_F7 },
|
|
+ { KEY_8, KEY_F8 },
|
|
+ { KEY_9, KEY_F9 },
|
|
+ { KEY_0, KEY_F10 },
|
|
+ { KEY_MINUS, KEY_F11 },
|
|
+ { KEY_EQUAL, KEY_F12 },
|
|
+ { KEY_UP, KEY_PAGEUP },
|
|
+ { KEY_DOWN, KEY_PAGEDOWN },
|
|
+ { KEY_LEFT, KEY_HOME },
|
|
+ { KEY_RIGHT, KEY_END },
|
|
+ { }
|
|
+};
|
|
+
|
|
+static const struct apple_key_translation macbookpro_dedicated_esc_fn_keys[] = {
|
|
+ { KEY_BACKSPACE, KEY_DELETE },
|
|
+ { KEY_ENTER, KEY_INSERT },
|
|
+ { KEY_1, KEY_F1 },
|
|
+ { KEY_2, KEY_F2 },
|
|
+ { KEY_3, KEY_F3 },
|
|
+ { KEY_4, KEY_F4 },
|
|
+ { KEY_5, KEY_F5 },
|
|
+ { KEY_6, KEY_F6 },
|
|
+ { KEY_7, KEY_F7 },
|
|
+ { KEY_8, KEY_F8 },
|
|
+ { KEY_9, KEY_F9 },
|
|
+ { KEY_0, KEY_F10 },
|
|
+ { KEY_MINUS, KEY_F11 },
|
|
+ { KEY_EQUAL, KEY_F12 },
|
|
+ { KEY_UP, KEY_PAGEUP },
|
|
+ { KEY_DOWN, KEY_PAGEDOWN },
|
|
+ { KEY_LEFT, KEY_HOME },
|
|
+ { KEY_RIGHT, KEY_END },
|
|
+ { }
|
|
+};
|
|
+
|
|
static const struct apple_key_translation apple_fn_keys[] = {
|
|
{ KEY_BACKSPACE, KEY_DELETE },
|
|
{ KEY_ENTER, KEY_INSERT },
|
|
@@ -236,7 +281,18 @@ static int hidinput_apple_event(struct hid_device *hid, struct input_dev *input,
|
|
}
|
|
|
|
if (fnmode) {
|
|
- if (hid->product >= USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI &&
|
|
+ if (hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J132 ||
|
|
+ hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J680 ||
|
|
+ hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J213)
|
|
+ table = macbookpro_no_esc_fn_keys;
|
|
+ else if (hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J214K ||
|
|
+ hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J223 ||
|
|
+ hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J152F)
|
|
+ table = macbookpro_dedicated_esc_fn_keys;
|
|
+ else if (hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J140K ||
|
|
+ hid->product == USB_DEVICE_ID_APPLE_WELLSPRINGT2_J230K)
|
|
+ table = apple_fn_keys;
|
|
+ else if (hid->product >= USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI &&
|
|
hid->product <= USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS)
|
|
table = macbookair_fn_keys;
|
|
else if (hid->product < 0x21d || hid->product >= 0x300)
|
|
@@ -386,6 +442,12 @@ static void apple_setup_input(struct input_dev *input)
|
|
set_bit(KEY_NUMLOCK, input->keybit);
|
|
|
|
/* Enable all needed keys */
|
|
+ for (trans = macbookpro_no_esc_fn_keys; trans->from; trans++)
|
|
+ set_bit(trans->to, input->keybit);
|
|
+
|
|
+ for (trans = macbookpro_dedicated_esc_fn_keys; trans->from; trans++)
|
|
+ set_bit(trans->to, input->keybit);
|
|
+
|
|
for (trans = apple_fn_keys; trans->from; trans++)
|
|
set_bit(trans->to, input->keybit);
|
|
|
|
--
|
|
2.25.1
|
|
|