blob: 7b4ef5bb556b9607c78c9d812f2dba8e888de6b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/macintosh/mac_hid.c
3 *
4 * HID support stuff for Macintosh computers.
5 *
6 * Copyright (C) 2000 Franz Sirl.
7 *
8 * This file will soon be removed in favor of an uinput userspace tool.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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>
Geert Uytterhoeven23010602007-08-22 14:01:35 -070016#include <linux/kbd_kern.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -050019static struct input_dev *emumousebtn;
20static int emumousebtn_input_register(void);
Olaf Hering87275852007-02-10 21:35:12 +010021static int mouse_emulate_buttons;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static int mouse_button2_keycode = KEY_RIGHTCTRL; /* right control key */
23static int mouse_button3_keycode = KEY_RIGHTALT; /* right option key */
Olaf Hering87275852007-02-10 21:35:12 +010024static int mouse_last_keycode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#if defined(CONFIG_SYSCTL)
27/* file(s) in /proc/sys/dev/mac_hid */
Adrian Bunkf3e5d2b2007-03-08 09:41:07 +110028static ctl_table mac_hid_files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .procname = "mouse_button_emulation",
31 .data = &mouse_emulate_buttons,
32 .maxlen = sizeof(int),
33 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080034 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 },
36 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 .procname = "mouse_button2_keycode",
38 .data = &mouse_button2_keycode,
39 .maxlen = sizeof(int),
40 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080041 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 },
43 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .procname = "mouse_button3_keycode",
45 .data = &mouse_button3_keycode,
46 .maxlen = sizeof(int),
47 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080048 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 },
Eric W. Biederman894d2492009-11-05 14:34:02 -080050 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53/* dir in /proc/sys/dev */
Adrian Bunkf3e5d2b2007-03-08 09:41:07 +110054static ctl_table mac_hid_dir[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .procname = "mac_hid",
57 .maxlen = 0,
58 .mode = 0555,
59 .child = mac_hid_files,
60 },
Eric W. Biederman894d2492009-11-05 14:34:02 -080061 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
64/* /proc/sys/dev itself, in case that is not there yet */
Adrian Bunkf3e5d2b2007-03-08 09:41:07 +110065static ctl_table mac_hid_root_dir[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .procname = "dev",
68 .maxlen = 0,
69 .mode = 0555,
70 .child = mac_hid_dir,
71 },
Eric W. Biederman894d2492009-11-05 14:34:02 -080072 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75static struct ctl_table_header *mac_hid_sysctl_header;
76
77#endif /* endif CONFIG_SYSCTL */
78
79int mac_hid_mouse_emulate_buttons(int caller, unsigned int keycode, int down)
80{
81 switch (caller) {
82 case 1:
83 /* Called from keyboard.c */
84 if (mouse_emulate_buttons
85 && (keycode == mouse_button2_keycode
86 || keycode == mouse_button3_keycode)) {
87 if (mouse_emulate_buttons == 1) {
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -050088 input_report_key(emumousebtn,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 keycode == mouse_button2_keycode ? BTN_MIDDLE : BTN_RIGHT,
90 down);
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -050091 input_sync(emumousebtn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return 1;
93 }
94 mouse_last_keycode = down ? keycode : 0;
95 }
96 break;
97 }
98 return 0;
99}
100
Peter Zijlstra8fd76c42008-04-18 00:25:38 -0400101static struct lock_class_key emumousebtn_event_class;
102static struct lock_class_key emumousebtn_mutex_class;
103
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -0500104static int emumousebtn_input_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Dmitry Torokhov4bdbd282006-11-24 00:43:22 -0500106 int ret;
107
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -0500108 emumousebtn = input_allocate_device();
109 if (!emumousebtn)
110 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Harvey Harrisona9291072008-04-25 18:40:01 -0700112 lockdep_set_class(&emumousebtn->event_lock, &emumousebtn_event_class);
113 lockdep_set_class(&emumousebtn->mutex, &emumousebtn_mutex_class);
Peter Zijlstra8fd76c42008-04-18 00:25:38 -0400114
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -0500115 emumousebtn->name = "Macintosh mouse button emulation";
116 emumousebtn->id.bustype = BUS_ADB;
117 emumousebtn->id.vendor = 0x0001;
118 emumousebtn->id.product = 0x0001;
119 emumousebtn->id.version = 0x0100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700121 emumousebtn->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
122 emumousebtn->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
123 BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
124 emumousebtn->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Dmitry Torokhov4bdbd282006-11-24 00:43:22 -0500126 ret = input_register_device(emumousebtn);
127 if (ret)
128 input_free_device(emumousebtn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Dmitry Torokhov4bdbd282006-11-24 00:43:22 -0500130 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Adrian Bunkf3e5d2b2007-03-08 09:41:07 +1100133static int __init mac_hid_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -0500135 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dmitry Torokhovc7f7a562005-09-15 02:01:41 -0500137 err = emumousebtn_input_register();
138 if (err)
139 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141#if defined(CONFIG_SYSCTL)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800142 mac_hid_sysctl_header = register_sysctl_table(mac_hid_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif /* CONFIG_SYSCTL */
144
145 return 0;
146}
147
148device_initcall(mac_hid_init);