]>
Commit | Line | Data |
---|---|---|
128537ce MP |
1 | /* |
2 | * Apple "Magic" Wireless Mouse driver | |
3 | * | |
4 | * Copyright (c) 2010 Michael Poole <[email protected]> | |
5 | */ | |
6 | ||
7 | /* | |
8 | * This program is free software; you can redistribute it and/or modify it | |
9 | * under the terms of the GNU General Public License as published by the Free | |
10 | * Software Foundation; either version 2 of the License, or (at your option) | |
11 | * any later version. | |
12 | */ | |
13 | ||
14 | #include <linux/device.h> | |
15 | #include <linux/hid.h> | |
16 | #include <linux/module.h> | |
5a0e3ad6 | 17 | #include <linux/slab.h> |
128537ce MP |
18 | #include <linux/usb.h> |
19 | ||
20 | #include "hid-ids.h" | |
21 | ||
71b38bd4 | 22 | static bool emulate_3button = true; |
128537ce MP |
23 | module_param(emulate_3button, bool, 0644); |
24 | MODULE_PARM_DESC(emulate_3button, "Emulate a middle button"); | |
25 | ||
26 | static int middle_button_start = -350; | |
27 | static int middle_button_stop = +350; | |
28 | ||
71b38bd4 | 29 | static bool emulate_scroll_wheel = true; |
128537ce MP |
30 | module_param(emulate_scroll_wheel, bool, 0644); |
31 | MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel"); | |
32 | ||
0b778e76 CD |
33 | static unsigned int scroll_speed = 32; |
34 | static int param_set_scroll_speed(const char *val, struct kernel_param *kp) { | |
35 | unsigned long speed; | |
36 | if (!val || strict_strtoul(val, 0, &speed) || speed > 63) | |
37 | return -EINVAL; | |
38 | scroll_speed = speed; | |
39 | return 0; | |
40 | } | |
41 | module_param_call(scroll_speed, param_set_scroll_speed, param_get_uint, &scroll_speed, 0644); | |
42 | MODULE_PARM_DESC(scroll_speed, "Scroll speed, value from 0 (slow) to 63 (fast)"); | |
43 | ||
9846f350 CD |
44 | static bool scroll_acceleration = false; |
45 | module_param(scroll_acceleration, bool, 0644); | |
46 | MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events"); | |
47 | ||
71b38bd4 | 48 | static bool report_touches = true; |
128537ce MP |
49 | module_param(report_touches, bool, 0644); |
50 | MODULE_PARM_DESC(report_touches, "Emit touch records (otherwise, only use them for emulation)"); | |
51 | ||
71b38bd4 | 52 | static bool report_undeciphered; |
128537ce MP |
53 | module_param(report_undeciphered, bool, 0644); |
54 | MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event"); | |
55 | ||
56 | #define TOUCH_REPORT_ID 0x29 | |
57 | /* These definitions are not precise, but they're close enough. (Bits | |
58 | * 0x03 seem to indicate the aspect ratio of the touch, bits 0x70 seem | |
59 | * to be some kind of bit mask -- 0x20 may be a near-field reading, | |
60 | * and 0x40 is actual contact, and 0x10 may be a start/stop or change | |
61 | * indication.) | |
62 | */ | |
63 | #define TOUCH_STATE_MASK 0xf0 | |
64 | #define TOUCH_STATE_NONE 0x00 | |
65 | #define TOUCH_STATE_START 0x30 | |
66 | #define TOUCH_STATE_DRAG 0x40 | |
67 | ||
0b778e76 CD |
68 | #define SCROLL_ACCEL_DEFAULT 7 |
69 | ||
128537ce MP |
70 | /** |
71 | * struct magicmouse_sc - Tracks Magic Mouse-specific data. | |
72 | * @input: Input device through which we report events. | |
73 | * @quirks: Currently unused. | |
128537ce MP |
74 | * @ntouches: Number of touches in most recent touch report. |
75 | * @scroll_accel: Number of consecutive scroll motions. | |
76 | * @scroll_jiffies: Time of last scroll motion. | |
77 | * @touches: Most recent data for a touch, indexed by tracking ID. | |
78 | * @tracking_ids: Mapping of current touch input data to @touches. | |
79 | */ | |
80 | struct magicmouse_sc { | |
81 | struct input_dev *input; | |
82 | unsigned long quirks; | |
83 | ||
128537ce MP |
84 | int ntouches; |
85 | int scroll_accel; | |
86 | unsigned long scroll_jiffies; | |
87 | ||
88 | struct { | |
89 | short x; | |
90 | short y; | |
c0426688 | 91 | short scroll_x; |
128537ce MP |
92 | short scroll_y; |
93 | u8 size; | |
94 | } touches[16]; | |
95 | int tracking_ids[16]; | |
96 | }; | |
97 | ||
98 | static int magicmouse_firm_touch(struct magicmouse_sc *msc) | |
99 | { | |
100 | int touch = -1; | |
101 | int ii; | |
102 | ||
103 | /* If there is only one "firm" touch, set touch to its | |
104 | * tracking ID. | |
105 | */ | |
106 | for (ii = 0; ii < msc->ntouches; ii++) { | |
107 | int idx = msc->tracking_ids[ii]; | |
108 | if (msc->touches[idx].size < 8) { | |
109 | /* Ignore this touch. */ | |
110 | } else if (touch >= 0) { | |
111 | touch = -1; | |
112 | break; | |
113 | } else { | |
114 | touch = idx; | |
115 | } | |
116 | } | |
117 | ||
118 | return touch; | |
119 | } | |
120 | ||
121 | static void magicmouse_emit_buttons(struct magicmouse_sc *msc, int state) | |
122 | { | |
71b38bd4 MP |
123 | int last_state = test_bit(BTN_LEFT, msc->input->key) << 0 | |
124 | test_bit(BTN_RIGHT, msc->input->key) << 1 | | |
125 | test_bit(BTN_MIDDLE, msc->input->key) << 2; | |
128537ce MP |
126 | |
127 | if (emulate_3button) { | |
128 | int id; | |
129 | ||
130 | /* If some button was pressed before, keep it held | |
131 | * down. Otherwise, if there's exactly one firm | |
132 | * touch, use that to override the mouse's guess. | |
133 | */ | |
134 | if (state == 0) { | |
135 | /* The button was released. */ | |
136 | } else if (last_state != 0) { | |
137 | state = last_state; | |
138 | } else if ((id = magicmouse_firm_touch(msc)) >= 0) { | |
139 | int x = msc->touches[id].x; | |
140 | if (x < middle_button_start) | |
141 | state = 1; | |
142 | else if (x > middle_button_stop) | |
143 | state = 2; | |
144 | else | |
145 | state = 4; | |
146 | } /* else: we keep the mouse's guess */ | |
147 | ||
148 | input_report_key(msc->input, BTN_MIDDLE, state & 4); | |
149 | } | |
150 | ||
151 | input_report_key(msc->input, BTN_LEFT, state & 1); | |
152 | input_report_key(msc->input, BTN_RIGHT, state & 2); | |
153 | ||
154 | if (state != last_state) | |
0b778e76 | 155 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; |
128537ce MP |
156 | } |
157 | ||
158 | static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata) | |
159 | { | |
160 | struct input_dev *input = msc->input; | |
6de048bf CD |
161 | int id = (tdata[6] << 2 | tdata[5] >> 6) & 0xf; |
162 | int x = (tdata[1] << 28 | tdata[0] << 20) >> 20; | |
163 | int y = -((tdata[2] << 24 | tdata[1] << 16) >> 20); | |
164 | int size = tdata[5] & 0x3f; | |
165 | int orientation = (tdata[6] >> 2) - 32; | |
166 | int touch_major = tdata[3]; | |
167 | int touch_minor = tdata[4]; | |
168 | int state = tdata[7] & TOUCH_STATE_MASK; | |
169 | int down = state != TOUCH_STATE_NONE; | |
128537ce MP |
170 | |
171 | /* Store tracking ID and other fields. */ | |
172 | msc->tracking_ids[raw_id] = id; | |
173 | msc->touches[id].x = x; | |
174 | msc->touches[id].y = y; | |
6de048bf | 175 | msc->touches[id].size = size; |
128537ce MP |
176 | |
177 | /* If requested, emulate a scroll wheel by detecting small | |
ef566d30 | 178 | * vertical touch motions. |
128537ce | 179 | */ |
ef566d30 | 180 | if (emulate_scroll_wheel) { |
128537ce | 181 | unsigned long now = jiffies; |
c0426688 CD |
182 | int step_x = msc->touches[id].scroll_x - x; |
183 | int step_y = msc->touches[id].scroll_y - y; | |
128537ce | 184 | |
128537ce | 185 | /* Calculate and apply the scroll motion. */ |
6de048bf | 186 | switch (state) { |
128537ce | 187 | case TOUCH_STATE_START: |
c0426688 | 188 | msc->touches[id].scroll_x = x; |
128537ce | 189 | msc->touches[id].scroll_y = y; |
0b778e76 CD |
190 | |
191 | /* Reset acceleration after half a second. */ | |
192 | if (scroll_acceleration && time_before(now, | |
193 | msc->scroll_jiffies + HZ / 2)) | |
194 | msc->scroll_accel = max_t(int, | |
195 | msc->scroll_accel - 1, 1); | |
196 | else | |
197 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; | |
198 | ||
128537ce MP |
199 | break; |
200 | case TOUCH_STATE_DRAG: | |
c0426688 CD |
201 | step_x /= (64 - (int)scroll_speed) * msc->scroll_accel; |
202 | if (step_x != 0) { | |
203 | msc->touches[id].scroll_x -= step_x * | |
0b778e76 | 204 | (64 - scroll_speed) * msc->scroll_accel; |
128537ce | 205 | msc->scroll_jiffies = now; |
c0426688 CD |
206 | input_report_rel(input, REL_HWHEEL, -step_x); |
207 | } | |
208 | ||
209 | step_y /= (64 - (int)scroll_speed) * msc->scroll_accel; | |
210 | if (step_y != 0) { | |
211 | msc->touches[id].scroll_y -= step_y * | |
212 | (64 - scroll_speed) * msc->scroll_accel; | |
213 | msc->scroll_jiffies = now; | |
214 | input_report_rel(input, REL_WHEEL, step_y); | |
128537ce MP |
215 | } |
216 | break; | |
217 | } | |
218 | } | |
219 | ||
220 | /* Generate the input events for this touch. */ | |
e3612e86 | 221 | if (report_touches && down) { |
128537ce | 222 | input_report_abs(input, ABS_MT_TRACKING_ID, id); |
6de048bf CD |
223 | input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major); |
224 | input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor); | |
128537ce MP |
225 | input_report_abs(input, ABS_MT_ORIENTATION, orientation); |
226 | input_report_abs(input, ABS_MT_POSITION_X, x); | |
227 | input_report_abs(input, ABS_MT_POSITION_Y, y); | |
228 | ||
71b38bd4 | 229 | if (report_undeciphered) |
128537ce | 230 | input_event(input, EV_MSC, MSC_RAW, tdata[7]); |
128537ce MP |
231 | |
232 | input_mt_sync(input); | |
233 | } | |
0228db70 CD |
234 | |
235 | if (down) | |
236 | msc->ntouches++; | |
128537ce MP |
237 | } |
238 | ||
239 | static int magicmouse_raw_event(struct hid_device *hdev, | |
240 | struct hid_report *report, u8 *data, int size) | |
241 | { | |
242 | struct magicmouse_sc *msc = hid_get_drvdata(hdev); | |
243 | struct input_dev *input = msc->input; | |
c61b7cee | 244 | int x, y, ii, clicks, npoints; |
128537ce MP |
245 | |
246 | switch (data[0]) { | |
247 | case 0x10: | |
248 | if (size != 6) | |
249 | return 0; | |
250 | x = (__s16)(data[2] | data[3] << 8); | |
251 | y = (__s16)(data[4] | data[5] << 8); | |
252 | clicks = data[1]; | |
253 | break; | |
254 | case TOUCH_REPORT_ID: | |
255 | /* Expect six bytes of prefix, and N*8 bytes of touch data. */ | |
256 | if (size < 6 || ((size - 6) % 8) != 0) | |
257 | return 0; | |
0228db70 CD |
258 | npoints = (size - 6) / 8; |
259 | msc->ntouches = 0; | |
260 | for (ii = 0; ii < npoints; ii++) | |
128537ce | 261 | magicmouse_emit_touch(msc, ii, data + ii * 8 + 6); |
e3612e86 | 262 | |
0228db70 CD |
263 | if (report_touches && msc->ntouches == 0) |
264 | input_mt_sync(input); | |
e3612e86 | 265 | |
128537ce MP |
266 | /* When emulating three-button mode, it is important |
267 | * to have the current touch information before | |
268 | * generating a click event. | |
269 | */ | |
7d876c05 MP |
270 | x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22; |
271 | y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22; | |
128537ce | 272 | clicks = data[3]; |
c61b7cee CD |
273 | |
274 | /* The following bits provide a device specific timestamp. They | |
275 | * are unused here. | |
276 | * | |
277 | * ts = data[3] >> 6 | data[4] << 2 | data[5] << 10; | |
278 | */ | |
128537ce MP |
279 | break; |
280 | case 0x20: /* Theoretically battery status (0-100), but I have | |
281 | * never seen it -- maybe it is only upon request. | |
282 | */ | |
283 | case 0x60: /* Unknown, maybe laser on/off. */ | |
284 | case 0x61: /* Laser reflection status change. | |
285 | * data[1]: 0 = spotted, 1 = lost | |
286 | */ | |
287 | default: | |
288 | return 0; | |
289 | } | |
290 | ||
291 | magicmouse_emit_buttons(msc, clicks & 3); | |
292 | input_report_rel(input, REL_X, x); | |
293 | input_report_rel(input, REL_Y, y); | |
294 | input_sync(input); | |
295 | return 1; | |
296 | } | |
297 | ||
298 | static int magicmouse_input_open(struct input_dev *dev) | |
299 | { | |
300 | struct hid_device *hid = input_get_drvdata(dev); | |
301 | ||
302 | return hid->ll_driver->open(hid); | |
303 | } | |
304 | ||
305 | static void magicmouse_input_close(struct input_dev *dev) | |
306 | { | |
307 | struct hid_device *hid = input_get_drvdata(dev); | |
308 | ||
309 | hid->ll_driver->close(hid); | |
310 | } | |
311 | ||
312 | static void magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev) | |
313 | { | |
314 | input_set_drvdata(input, hdev); | |
315 | input->event = hdev->ll_driver->hidinput_input_event; | |
316 | input->open = magicmouse_input_open; | |
317 | input->close = magicmouse_input_close; | |
318 | ||
319 | input->name = hdev->name; | |
320 | input->phys = hdev->phys; | |
321 | input->uniq = hdev->uniq; | |
322 | input->id.bustype = hdev->bus; | |
323 | input->id.vendor = hdev->vendor; | |
324 | input->id.product = hdev->product; | |
325 | input->id.version = hdev->version; | |
326 | input->dev.parent = hdev->dev.parent; | |
327 | ||
71b38bd4 MP |
328 | __set_bit(EV_KEY, input->evbit); |
329 | __set_bit(BTN_LEFT, input->keybit); | |
330 | __set_bit(BTN_RIGHT, input->keybit); | |
128537ce | 331 | if (emulate_3button) |
71b38bd4 MP |
332 | __set_bit(BTN_MIDDLE, input->keybit); |
333 | __set_bit(BTN_TOOL_FINGER, input->keybit); | |
128537ce | 334 | |
71b38bd4 MP |
335 | __set_bit(EV_REL, input->evbit); |
336 | __set_bit(REL_X, input->relbit); | |
337 | __set_bit(REL_Y, input->relbit); | |
c0426688 | 338 | if (emulate_scroll_wheel) { |
71b38bd4 | 339 | __set_bit(REL_WHEEL, input->relbit); |
c0426688 CD |
340 | __set_bit(REL_HWHEEL, input->relbit); |
341 | } | |
128537ce MP |
342 | |
343 | if (report_touches) { | |
71b38bd4 MP |
344 | __set_bit(EV_ABS, input->evbit); |
345 | ||
346 | input_set_abs_params(input, ABS_MT_TRACKING_ID, 0, 15, 0, 0); | |
347 | input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255, 4, 0); | |
348 | input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255, 4, 0); | |
349 | input_set_abs_params(input, ABS_MT_ORIENTATION, -32, 31, 1, 0); | |
350 | input_set_abs_params(input, ABS_MT_POSITION_X, -1100, 1358, | |
351 | 4, 0); | |
128537ce MP |
352 | /* Note: Touch Y position from the device is inverted relative |
353 | * to how pointer motion is reported (and relative to how USB | |
354 | * HID recommends the coordinates work). This driver keeps | |
355 | * the origin at the same position, and just uses the additive | |
356 | * inverse of the reported Y. | |
357 | */ | |
71b38bd4 MP |
358 | input_set_abs_params(input, ABS_MT_POSITION_Y, -1589, 2047, |
359 | 4, 0); | |
128537ce MP |
360 | } |
361 | ||
362 | if (report_undeciphered) { | |
71b38bd4 MP |
363 | __set_bit(EV_MSC, input->evbit); |
364 | __set_bit(MSC_RAW, input->mscbit); | |
128537ce MP |
365 | } |
366 | } | |
367 | ||
368 | static int magicmouse_probe(struct hid_device *hdev, | |
369 | const struct hid_device_id *id) | |
370 | { | |
0773590c | 371 | __u8 feature[] = { 0xd7, 0x01 }; |
128537ce MP |
372 | struct input_dev *input; |
373 | struct magicmouse_sc *msc; | |
374 | struct hid_report *report; | |
375 | int ret; | |
376 | ||
377 | msc = kzalloc(sizeof(*msc), GFP_KERNEL); | |
378 | if (msc == NULL) { | |
379 | dev_err(&hdev->dev, "can't alloc magicmouse descriptor\n"); | |
380 | return -ENOMEM; | |
381 | } | |
382 | ||
0b778e76 CD |
383 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; |
384 | ||
128537ce MP |
385 | msc->quirks = id->driver_data; |
386 | hid_set_drvdata(hdev, msc); | |
387 | ||
388 | ret = hid_parse(hdev); | |
389 | if (ret) { | |
390 | dev_err(&hdev->dev, "magicmouse hid parse failed\n"); | |
391 | goto err_free; | |
392 | } | |
393 | ||
23d02116 | 394 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
128537ce MP |
395 | if (ret) { |
396 | dev_err(&hdev->dev, "magicmouse hw start failed\n"); | |
397 | goto err_free; | |
398 | } | |
399 | ||
23d02116 JK |
400 | /* we are handling the input ourselves */ |
401 | hidinput_disconnect(hdev); | |
402 | ||
128537ce MP |
403 | report = hid_register_report(hdev, HID_INPUT_REPORT, TOUCH_REPORT_ID); |
404 | if (!report) { | |
405 | dev_err(&hdev->dev, "unable to register touch report\n"); | |
406 | ret = -ENOMEM; | |
71b38bd4 | 407 | goto err_stop_hw; |
128537ce MP |
408 | } |
409 | report->size = 6; | |
410 | ||
0773590c | 411 | ret = hdev->hid_output_raw_report(hdev, feature, sizeof(feature), |
128537ce | 412 | HID_FEATURE_REPORT); |
0773590c CD |
413 | if (ret != sizeof(feature)) { |
414 | dev_err(&hdev->dev, "unable to request touch data (%d)\n", | |
128537ce | 415 | ret); |
71b38bd4 | 416 | goto err_stop_hw; |
128537ce MP |
417 | } |
418 | ||
419 | input = input_allocate_device(); | |
420 | if (!input) { | |
421 | dev_err(&hdev->dev, "can't alloc input device\n"); | |
422 | ret = -ENOMEM; | |
71b38bd4 | 423 | goto err_stop_hw; |
128537ce MP |
424 | } |
425 | magicmouse_setup_input(input, hdev); | |
426 | ||
427 | ret = input_register_device(input); | |
428 | if (ret) { | |
429 | dev_err(&hdev->dev, "input device registration failed\n"); | |
71b38bd4 | 430 | goto err_input; |
128537ce MP |
431 | } |
432 | msc->input = input; | |
433 | ||
434 | return 0; | |
71b38bd4 | 435 | err_input: |
128537ce | 436 | input_free_device(input); |
71b38bd4 MP |
437 | err_stop_hw: |
438 | hid_hw_stop(hdev); | |
439 | err_free: | |
128537ce MP |
440 | kfree(msc); |
441 | return ret; | |
442 | } | |
443 | ||
444 | static void magicmouse_remove(struct hid_device *hdev) | |
445 | { | |
28918c21 MP |
446 | struct magicmouse_sc *msc = hid_get_drvdata(hdev); |
447 | ||
128537ce | 448 | hid_hw_stop(hdev); |
28918c21 MP |
449 | input_unregister_device(msc->input); |
450 | kfree(msc); | |
128537ce MP |
451 | } |
452 | ||
453 | static const struct hid_device_id magic_mice[] = { | |
454 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE), | |
455 | .driver_data = 0 }, | |
456 | { } | |
457 | }; | |
458 | MODULE_DEVICE_TABLE(hid, magic_mice); | |
459 | ||
460 | static struct hid_driver magicmouse_driver = { | |
461 | .name = "magicmouse", | |
462 | .id_table = magic_mice, | |
463 | .probe = magicmouse_probe, | |
464 | .remove = magicmouse_remove, | |
465 | .raw_event = magicmouse_raw_event, | |
466 | }; | |
467 | ||
468 | static int __init magicmouse_init(void) | |
469 | { | |
470 | int ret; | |
471 | ||
472 | ret = hid_register_driver(&magicmouse_driver); | |
473 | if (ret) | |
474 | printk(KERN_ERR "can't register magicmouse driver\n"); | |
475 | ||
476 | return ret; | |
477 | } | |
478 | ||
479 | static void __exit magicmouse_exit(void) | |
480 | { | |
481 | hid_unregister_driver(&magicmouse_driver); | |
482 | } | |
483 | ||
484 | module_init(magicmouse_init); | |
485 | module_exit(magicmouse_exit); | |
486 | MODULE_LICENSE("GPL"); |