2 * drivers/macintosh/mac_hid.c
4 * HID support stuff for Macintosh computers.
6 * Copyright (C) 2000 Franz Sirl.
8 * This file will soon be removed in favor of an uinput userspace tool.
11 #include <linux/init.h>
12 #include <linux/proc_fs.h>
13 #include <linux/sysctl.h>
14 #include <linux/input.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
18 MODULE_LICENSE("GPL");
20 static int mouse_emulate_buttons
;
21 static int mouse_button2_keycode
= KEY_RIGHTCTRL
; /* right control key */
22 static int mouse_button3_keycode
= KEY_RIGHTALT
; /* right option key */
24 static struct input_dev
*mac_hid_emumouse_dev
;
26 static DEFINE_MUTEX(mac_hid_emumouse_mutex
);
28 static int mac_hid_create_emumouse(void)
30 static struct lock_class_key mac_hid_emumouse_dev_event_class
;
31 static struct lock_class_key mac_hid_emumouse_dev_mutex_class
;
34 mac_hid_emumouse_dev
= input_allocate_device();
35 if (!mac_hid_emumouse_dev
)
38 lockdep_set_class(&mac_hid_emumouse_dev
->event_lock
,
39 &mac_hid_emumouse_dev_event_class
);
40 lockdep_set_class(&mac_hid_emumouse_dev
->mutex
,
41 &mac_hid_emumouse_dev_mutex_class
);
43 mac_hid_emumouse_dev
->name
= "Macintosh mouse button emulation";
44 mac_hid_emumouse_dev
->id
.bustype
= BUS_ADB
;
45 mac_hid_emumouse_dev
->id
.vendor
= 0x0001;
46 mac_hid_emumouse_dev
->id
.product
= 0x0001;
47 mac_hid_emumouse_dev
->id
.version
= 0x0100;
49 mac_hid_emumouse_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_REL
);
50 mac_hid_emumouse_dev
->keybit
[BIT_WORD(BTN_MOUSE
)] =
51 BIT_MASK(BTN_LEFT
) | BIT_MASK(BTN_MIDDLE
) | BIT_MASK(BTN_RIGHT
);
52 mac_hid_emumouse_dev
->relbit
[0] = BIT_MASK(REL_X
) | BIT_MASK(REL_Y
);
54 err
= input_register_device(mac_hid_emumouse_dev
);
56 input_free_device(mac_hid_emumouse_dev
);
57 mac_hid_emumouse_dev
= NULL
;
64 static void mac_hid_destroy_emumouse(void)
66 input_unregister_device(mac_hid_emumouse_dev
);
67 mac_hid_emumouse_dev
= NULL
;
70 static bool mac_hid_emumouse_filter(struct input_handle
*handle
,
71 unsigned int type
, unsigned int code
,
79 if (code
== mouse_button2_keycode
)
81 else if (code
== mouse_button3_keycode
)
86 input_report_key(mac_hid_emumouse_dev
, btn
, value
);
87 input_sync(mac_hid_emumouse_dev
);
92 static int mac_hid_emumouse_connect(struct input_handler
*handler
,
93 struct input_dev
*dev
,
94 const struct input_device_id
*id
)
96 struct input_handle
*handle
;
99 /* Don't bind to ourselves */
100 if (dev
== mac_hid_emumouse_dev
)
103 handle
= kzalloc(sizeof(struct input_handle
), GFP_KERNEL
);
108 handle
->handler
= handler
;
109 handle
->name
= "mac-button-emul";
111 error
= input_register_handle(handle
);
114 "mac_hid: Failed to register button emulation handle, "
115 "error %d\n", error
);
119 error
= input_open_device(handle
);
122 "mac_hid: Failed to open input device, error %d\n",
130 input_unregister_handle(handle
);
136 static void mac_hid_emumouse_disconnect(struct input_handle
*handle
)
138 input_close_device(handle
);
139 input_unregister_handle(handle
);
143 static const struct input_device_id mac_hid_emumouse_ids
[] = {
145 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
,
146 .evbit
= { BIT_MASK(EV_KEY
) },
151 MODULE_DEVICE_TABLE(input
, mac_hid_emumouse_ids
);
153 static struct input_handler mac_hid_emumouse_handler
= {
154 .filter
= mac_hid_emumouse_filter
,
155 .connect
= mac_hid_emumouse_connect
,
156 .disconnect
= mac_hid_emumouse_disconnect
,
157 .name
= "mac-button-emul",
158 .id_table
= mac_hid_emumouse_ids
,
161 static int mac_hid_start_emulation(void)
165 err
= mac_hid_create_emumouse();
169 err
= input_register_handler(&mac_hid_emumouse_handler
);
171 mac_hid_destroy_emumouse();
178 static void mac_hid_stop_emulation(void)
180 input_unregister_handler(&mac_hid_emumouse_handler
);
181 mac_hid_destroy_emumouse();
184 static int mac_hid_toggle_emumouse(ctl_table
*table
, int write
,
185 void __user
*buffer
, size_t *lenp
,
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 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 /* dir in /proc/sys/dev */
243 static ctl_table mac_hid_dir
[] = {
245 .procname
= "mac_hid",
248 .child
= mac_hid_files
,
253 /* /proc/sys/dev itself, in case that is not there yet */
254 static ctl_table mac_hid_root_dir
[] = {
259 .child
= mac_hid_dir
,
264 static struct ctl_table_header
*mac_hid_sysctl_header
;
266 static int __init
mac_hid_init(void)
268 mac_hid_sysctl_header
= register_sysctl_table(mac_hid_root_dir
);
269 if (!mac_hid_sysctl_header
)
274 module_init(mac_hid_init
);
276 static void __exit
mac_hid_exit(void)
278 unregister_sysctl_table(mac_hid_sysctl_header
);
280 if (mouse_emulate_buttons
)
281 mac_hid_stop_emulation();
283 module_exit(mac_hid_exit
);