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_DESCRIPTION("Mouse button 2+3 emulation");
20 MODULE_LICENSE("GPL");
22 static int mouse_emulate_buttons;
23 static int mouse_button2_keycode = KEY_RIGHTCTRL; /* right control key */
24 static int mouse_button3_keycode = KEY_RIGHTALT; /* right option key */
26 static struct input_dev *mac_hid_emumouse_dev;
28 static DEFINE_MUTEX(mac_hid_emumouse_mutex);
30 static int mac_hid_create_emumouse(void)
32 static struct lock_class_key mac_hid_emumouse_dev_event_class;
33 static struct lock_class_key mac_hid_emumouse_dev_mutex_class;
36 mac_hid_emumouse_dev = input_allocate_device();
37 if (!mac_hid_emumouse_dev)
40 lockdep_set_class(&mac_hid_emumouse_dev->event_lock,
41 &mac_hid_emumouse_dev_event_class);
42 lockdep_set_class(&mac_hid_emumouse_dev->mutex,
43 &mac_hid_emumouse_dev_mutex_class);
45 mac_hid_emumouse_dev->name = "Macintosh mouse button emulation";
46 mac_hid_emumouse_dev->id.bustype = BUS_ADB;
47 mac_hid_emumouse_dev->id.vendor = 0x0001;
48 mac_hid_emumouse_dev->id.product = 0x0001;
49 mac_hid_emumouse_dev->id.version = 0x0100;
51 mac_hid_emumouse_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
52 mac_hid_emumouse_dev->keybit[BIT_WORD(BTN_MOUSE)] =
53 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
54 mac_hid_emumouse_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
56 err = input_register_device(mac_hid_emumouse_dev);
58 input_free_device(mac_hid_emumouse_dev);
59 mac_hid_emumouse_dev = NULL;
66 static void mac_hid_destroy_emumouse(void)
68 input_unregister_device(mac_hid_emumouse_dev);
69 mac_hid_emumouse_dev = NULL;
72 static bool mac_hid_emumouse_filter(struct input_handle *handle,
73 unsigned int type, unsigned int code,
81 if (code == mouse_button2_keycode)
83 else if (code == mouse_button3_keycode)
88 input_report_key(mac_hid_emumouse_dev, btn, value);
89 input_sync(mac_hid_emumouse_dev);
94 static int mac_hid_emumouse_connect(struct input_handler *handler,
95 struct input_dev *dev,
96 const struct input_device_id *id)
98 struct input_handle *handle;
101 /* Don't bind to ourselves */
102 if (dev == mac_hid_emumouse_dev)
105 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
110 handle->handler = handler;
111 handle->name = "mac-button-emul";
113 error = input_register_handle(handle);
116 "mac_hid: Failed to register button emulation handle, "
117 "error %d\n", error);
121 error = input_open_device(handle);
124 "mac_hid: Failed to open input device, error %d\n",
132 input_unregister_handle(handle);
138 static void mac_hid_emumouse_disconnect(struct input_handle *handle)
140 input_close_device(handle);
141 input_unregister_handle(handle);
145 static const struct input_device_id mac_hid_emumouse_ids[] = {
147 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
148 .evbit = { BIT_MASK(EV_KEY) },
153 MODULE_DEVICE_TABLE(input, mac_hid_emumouse_ids);
155 static struct input_handler mac_hid_emumouse_handler = {
156 .filter = mac_hid_emumouse_filter,
157 .connect = mac_hid_emumouse_connect,
158 .disconnect = mac_hid_emumouse_disconnect,
159 .name = "mac-button-emul",
160 .id_table = mac_hid_emumouse_ids,
163 static int mac_hid_start_emulation(void)
167 err = mac_hid_create_emumouse();
171 err = input_register_handler(&mac_hid_emumouse_handler);
173 mac_hid_destroy_emumouse();
180 static void mac_hid_stop_emulation(void)
182 input_unregister_handler(&mac_hid_emumouse_handler);
183 mac_hid_destroy_emumouse();
186 static int mac_hid_toggle_emumouse(const struct ctl_table *table, int write,
187 void *buffer, size_t *lenp, loff_t *ppos)
189 int *valp = table->data;
193 rc = mutex_lock_killable(&mac_hid_emumouse_mutex);
197 rc = proc_dointvec(table, write, buffer, lenp, ppos);
199 if (rc == 0 && write && *valp != old_val) {
201 rc = mac_hid_start_emulation();
203 mac_hid_stop_emulation();
208 /* Restore the old value in case of error */
212 mutex_unlock(&mac_hid_emumouse_mutex);
217 /* file(s) in /proc/sys/dev/mac_hid */
218 static const struct ctl_table mac_hid_files[] = {
220 .procname = "mouse_button_emulation",
221 .data = &mouse_emulate_buttons,
222 .maxlen = sizeof(int),
224 .proc_handler = mac_hid_toggle_emumouse,
227 .procname = "mouse_button2_keycode",
228 .data = &mouse_button2_keycode,
229 .maxlen = sizeof(int),
231 .proc_handler = proc_dointvec,
234 .procname = "mouse_button3_keycode",
235 .data = &mouse_button3_keycode,
236 .maxlen = sizeof(int),
238 .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);