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 __user
*buffer
, size_t *lenp
,
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 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
,
243 /* dir in /proc/sys/dev */
244 static struct ctl_table mac_hid_dir
[] = {
246 .procname
= "mac_hid",
249 .child
= mac_hid_files
,
254 /* /proc/sys/dev itself, in case that is not there yet */
255 static struct ctl_table mac_hid_root_dir
[] = {
260 .child
= mac_hid_dir
,
265 static struct ctl_table_header
*mac_hid_sysctl_header
;
267 static int __init
mac_hid_init(void)
269 mac_hid_sysctl_header
= register_sysctl_table(mac_hid_root_dir
);
270 if (!mac_hid_sysctl_header
)
275 module_init(mac_hid_init
);
277 static void __exit
mac_hid_exit(void)
279 unregister_sysctl_table(mac_hid_sysctl_header
);
281 if (mouse_emulate_buttons
)
282 mac_hid_stop_emulation();
284 module_exit(mac_hid_exit
);