1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/macintosh/mac_hid.c
5 * HID support stuff for Macintosh computers.
7 * Copyright (C) 2000 Franz Sirl.
9 * This file will soon be removed in favor of an uinput userspace tool.
12 #include <linux/init.h>
13 #include <linux/proc_fs.h>
14 #include <linux/sysctl.h>
15 #include <linux/input.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
19 MODULE_LICENSE("GPL");
21 static int mouse_emulate_buttons;
22 static int mouse_button2_keycode = KEY_RIGHTCTRL; /* right control key */
23 static int mouse_button3_keycode = KEY_RIGHTALT; /* right option key */
25 static struct input_dev *mac_hid_emumouse_dev;
27 static DEFINE_MUTEX(mac_hid_emumouse_mutex);
29 static int mac_hid_create_emumouse(void)
31 static struct lock_class_key mac_hid_emumouse_dev_event_class;
32 static struct lock_class_key mac_hid_emumouse_dev_mutex_class;
35 mac_hid_emumouse_dev = input_allocate_device();
36 if (!mac_hid_emumouse_dev)
39 lockdep_set_class(&mac_hid_emumouse_dev->event_lock,
40 &mac_hid_emumouse_dev_event_class);
41 lockdep_set_class(&mac_hid_emumouse_dev->mutex,
42 &mac_hid_emumouse_dev_mutex_class);
44 mac_hid_emumouse_dev->name = "Macintosh mouse button emulation";
45 mac_hid_emumouse_dev->id.bustype = BUS_ADB;
46 mac_hid_emumouse_dev->id.vendor = 0x0001;
47 mac_hid_emumouse_dev->id.product = 0x0001;
48 mac_hid_emumouse_dev->id.version = 0x0100;
50 mac_hid_emumouse_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
51 mac_hid_emumouse_dev->keybit[BIT_WORD(BTN_MOUSE)] =
52 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
53 mac_hid_emumouse_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
55 err = input_register_device(mac_hid_emumouse_dev);
57 input_free_device(mac_hid_emumouse_dev);
58 mac_hid_emumouse_dev = NULL;
65 static void mac_hid_destroy_emumouse(void)
67 input_unregister_device(mac_hid_emumouse_dev);
68 mac_hid_emumouse_dev = NULL;
71 static bool mac_hid_emumouse_filter(struct input_handle *handle,
72 unsigned int type, unsigned int code,
80 if (code == mouse_button2_keycode)
82 else if (code == mouse_button3_keycode)
87 input_report_key(mac_hid_emumouse_dev, btn, value);
88 input_sync(mac_hid_emumouse_dev);
93 static int mac_hid_emumouse_connect(struct input_handler *handler,
94 struct input_dev *dev,
95 const struct input_device_id *id)
97 struct input_handle *handle;
100 /* Don't bind to ourselves */
101 if (dev == mac_hid_emumouse_dev)
104 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
109 handle->handler = handler;
110 handle->name = "mac-button-emul";
112 error = input_register_handle(handle);
115 "mac_hid: Failed to register button emulation handle, "
116 "error %d\n", error);
120 error = input_open_device(handle);
123 "mac_hid: Failed to open input device, error %d\n",
131 input_unregister_handle(handle);
137 static void mac_hid_emumouse_disconnect(struct input_handle *handle)
139 input_close_device(handle);
140 input_unregister_handle(handle);
144 static const struct input_device_id mac_hid_emumouse_ids[] = {
146 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
147 .evbit = { BIT_MASK(EV_KEY) },
152 MODULE_DEVICE_TABLE(input, mac_hid_emumouse_ids);
154 static struct input_handler mac_hid_emumouse_handler = {
155 .filter = mac_hid_emumouse_filter,
156 .connect = mac_hid_emumouse_connect,
157 .disconnect = mac_hid_emumouse_disconnect,
158 .name = "mac-button-emul",
159 .id_table = mac_hid_emumouse_ids,
162 static int mac_hid_start_emulation(void)
166 err = mac_hid_create_emumouse();
170 err = input_register_handler(&mac_hid_emumouse_handler);
172 mac_hid_destroy_emumouse();
179 static void mac_hid_stop_emulation(void)
181 input_unregister_handler(&mac_hid_emumouse_handler);
182 mac_hid_destroy_emumouse();
185 static int mac_hid_toggle_emumouse(struct ctl_table *table, int write,
186 void *buffer, size_t *lenp, loff_t *ppos)
188 int *valp = table->data;
192 rc = mutex_lock_killable(&mac_hid_emumouse_mutex);
196 rc = proc_dointvec(table, write, buffer, lenp, ppos);
198 if (rc == 0 && write && *valp != old_val) {
200 rc = mac_hid_start_emulation();
202 mac_hid_stop_emulation();
207 /* Restore the old value in case of error */
211 mutex_unlock(&mac_hid_emumouse_mutex);
216 /* file(s) in /proc/sys/dev/mac_hid */
217 static struct ctl_table mac_hid_files[] = {
219 .procname = "mouse_button_emulation",
220 .data = &mouse_emulate_buttons,
221 .maxlen = sizeof(int),
223 .proc_handler = mac_hid_toggle_emumouse,
226 .procname = "mouse_button2_keycode",
227 .data = &mouse_button2_keycode,
228 .maxlen = sizeof(int),
230 .proc_handler = proc_dointvec,
233 .procname = "mouse_button3_keycode",
234 .data = &mouse_button3_keycode,
235 .maxlen = sizeof(int),
237 .proc_handler = proc_dointvec,
242 static struct ctl_table_header *mac_hid_sysctl_header;
244 static int __init mac_hid_init(void)
246 mac_hid_sysctl_header = register_sysctl("dev/mac_hid", mac_hid_files);
247 if (!mac_hid_sysctl_header)
252 module_init(mac_hid_init);
254 static void __exit mac_hid_exit(void)
256 unregister_sysctl_table(mac_hid_sysctl_header);
258 if (mouse_emulate_buttons)
259 mac_hid_stop_emulation();
261 module_exit(mac_hid_exit);