Merge tag 'block-5.13-2021-05-09' of git://git.kernel.dk/linux-block
[linux-block.git] / drivers / hid / hid-magicmouse.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
128537ce
MP
2/*
3 * Apple "Magic" Wireless Mouse driver
4 *
5 * Copyright (c) 2010 Michael Poole <mdpoole@troilus.org>
a462230e 6 * Copyright (c) 2010 Chase Douglas <chase.douglas@canonical.com>
128537ce
MP
7 */
8
9/*
128537ce
MP
10 */
11
4291ee30
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
128537ce
MP
14#include <linux/device.h>
15#include <linux/hid.h>
a6d1bc1d 16#include <linux/input/mt.h>
128537ce 17#include <linux/module.h>
5a0e3ad6 18#include <linux/slab.h>
c0dc5582 19#include <linux/workqueue.h>
128537ce
MP
20
21#include "hid-ids.h"
22
71b38bd4 23static bool emulate_3button = true;
128537ce
MP
24module_param(emulate_3button, bool, 0644);
25MODULE_PARM_DESC(emulate_3button, "Emulate a middle button");
26
27static int middle_button_start = -350;
28static int middle_button_stop = +350;
29
71b38bd4 30static bool emulate_scroll_wheel = true;
128537ce
MP
31module_param(emulate_scroll_wheel, bool, 0644);
32MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel");
33
0b778e76 34static unsigned int scroll_speed = 32;
e4dca7b7
KC
35static int param_set_scroll_speed(const char *val,
36 const struct kernel_param *kp) {
0b778e76 37 unsigned long speed;
dfc450b5 38 if (!val || kstrtoul(val, 0, &speed) || speed > 63)
0b778e76
CD
39 return -EINVAL;
40 scroll_speed = speed;
41 return 0;
42}
43module_param_call(scroll_speed, param_set_scroll_speed, param_get_uint, &scroll_speed, 0644);
44MODULE_PARM_DESC(scroll_speed, "Scroll speed, value from 0 (slow) to 63 (fast)");
45
9846f350
CD
46static bool scroll_acceleration = false;
47module_param(scroll_acceleration, bool, 0644);
48MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events");
49
71b38bd4 50static bool report_undeciphered;
128537ce
MP
51module_param(report_undeciphered, bool, 0644);
52MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event");
53
a462230e 54#define TRACKPAD_REPORT_ID 0x28
9d7b1866
SB
55#define TRACKPAD2_USB_REPORT_ID 0x02
56#define TRACKPAD2_BT_REPORT_ID 0x31
a462230e 57#define MOUSE_REPORT_ID 0x29
2b0c086c 58#define MOUSE2_REPORT_ID 0x12
a462230e 59#define DOUBLE_REPORT_ID 0xf7
128537ce
MP
60/* These definitions are not precise, but they're close enough. (Bits
61 * 0x03 seem to indicate the aspect ratio of the touch, bits 0x70 seem
62 * to be some kind of bit mask -- 0x20 may be a near-field reading,
63 * and 0x40 is actual contact, and 0x10 may be a start/stop or change
64 * indication.)
65 */
66#define TOUCH_STATE_MASK 0xf0
67#define TOUCH_STATE_NONE 0x00
68#define TOUCH_STATE_START 0x30
69#define TOUCH_STATE_DRAG 0x40
70
0b778e76
CD
71#define SCROLL_ACCEL_DEFAULT 7
72
4f6fdf08
CD
73/* Touch surface information. Dimension is in hundredths of a mm, min and max
74 * are in units. */
75#define MOUSE_DIMENSION_X (float)9056
76#define MOUSE_MIN_X -1100
77#define MOUSE_MAX_X 1258
78#define MOUSE_RES_X ((MOUSE_MAX_X - MOUSE_MIN_X) / (MOUSE_DIMENSION_X / 100))
79#define MOUSE_DIMENSION_Y (float)5152
80#define MOUSE_MIN_Y -1589
81#define MOUSE_MAX_Y 2047
82#define MOUSE_RES_Y ((MOUSE_MAX_Y - MOUSE_MIN_Y) / (MOUSE_DIMENSION_Y / 100))
83
84#define TRACKPAD_DIMENSION_X (float)13000
85#define TRACKPAD_MIN_X -2909
86#define TRACKPAD_MAX_X 3167
87#define TRACKPAD_RES_X \
88 ((TRACKPAD_MAX_X - TRACKPAD_MIN_X) / (TRACKPAD_DIMENSION_X / 100))
89#define TRACKPAD_DIMENSION_Y (float)11000
90#define TRACKPAD_MIN_Y -2456
91#define TRACKPAD_MAX_Y 2565
92#define TRACKPAD_RES_Y \
93 ((TRACKPAD_MAX_Y - TRACKPAD_MIN_Y) / (TRACKPAD_DIMENSION_Y / 100))
94
9d7b1866
SB
95#define TRACKPAD2_DIMENSION_X (float)16000
96#define TRACKPAD2_MIN_X -3678
97#define TRACKPAD2_MAX_X 3934
98#define TRACKPAD2_RES_X \
99 ((TRACKPAD2_MAX_X - TRACKPAD2_MIN_X) / (TRACKPAD2_DIMENSION_X / 100))
100#define TRACKPAD2_DIMENSION_Y (float)11490
101#define TRACKPAD2_MIN_Y -2478
102#define TRACKPAD2_MAX_Y 2587
103#define TRACKPAD2_RES_Y \
104 ((TRACKPAD2_MAX_Y - TRACKPAD2_MIN_Y) / (TRACKPAD2_DIMENSION_Y / 100))
105
128537ce
MP
106/**
107 * struct magicmouse_sc - Tracks Magic Mouse-specific data.
108 * @input: Input device through which we report events.
109 * @quirks: Currently unused.
128537ce
MP
110 * @ntouches: Number of touches in most recent touch report.
111 * @scroll_accel: Number of consecutive scroll motions.
112 * @scroll_jiffies: Time of last scroll motion.
113 * @touches: Most recent data for a touch, indexed by tracking ID.
114 * @tracking_ids: Mapping of current touch input data to @touches.
115 */
116struct magicmouse_sc {
117 struct input_dev *input;
118 unsigned long quirks;
119
128537ce
MP
120 int ntouches;
121 int scroll_accel;
122 unsigned long scroll_jiffies;
123
124 struct {
125 short x;
126 short y;
c0426688 127 short scroll_x;
128537ce
MP
128 short scroll_y;
129 u8 size;
130 } touches[16];
131 int tracking_ids[16];
c0dc5582
JC
132
133 struct hid_device *hdev;
134 struct delayed_work work;
128537ce
MP
135};
136
137static int magicmouse_firm_touch(struct magicmouse_sc *msc)
138{
139 int touch = -1;
140 int ii;
141
142 /* If there is only one "firm" touch, set touch to its
143 * tracking ID.
144 */
145 for (ii = 0; ii < msc->ntouches; ii++) {
146 int idx = msc->tracking_ids[ii];
147 if (msc->touches[idx].size < 8) {
148 /* Ignore this touch. */
149 } else if (touch >= 0) {
150 touch = -1;
151 break;
152 } else {
153 touch = idx;
154 }
155 }
156
157 return touch;
158}
159
160static void magicmouse_emit_buttons(struct magicmouse_sc *msc, int state)
161{
71b38bd4
MP
162 int last_state = test_bit(BTN_LEFT, msc->input->key) << 0 |
163 test_bit(BTN_RIGHT, msc->input->key) << 1 |
164 test_bit(BTN_MIDDLE, msc->input->key) << 2;
128537ce
MP
165
166 if (emulate_3button) {
167 int id;
168
169 /* If some button was pressed before, keep it held
170 * down. Otherwise, if there's exactly one firm
171 * touch, use that to override the mouse's guess.
172 */
173 if (state == 0) {
174 /* The button was released. */
175 } else if (last_state != 0) {
176 state = last_state;
177 } else if ((id = magicmouse_firm_touch(msc)) >= 0) {
178 int x = msc->touches[id].x;
179 if (x < middle_button_start)
180 state = 1;
181 else if (x > middle_button_stop)
182 state = 2;
183 else
184 state = 4;
185 } /* else: we keep the mouse's guess */
186
187 input_report_key(msc->input, BTN_MIDDLE, state & 4);
188 }
189
190 input_report_key(msc->input, BTN_LEFT, state & 1);
191 input_report_key(msc->input, BTN_RIGHT, state & 2);
192
193 if (state != last_state)
0b778e76 194 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
128537ce
MP
195}
196
197static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata)
198{
199 struct input_dev *input = msc->input;
a462230e 200 int id, x, y, size, orientation, touch_major, touch_minor, state, down;
9d7b1866 201 int pressure = 0;
a462230e 202
2b0c086c
JC
203 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
204 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
a462230e
CD
205 id = (tdata[6] << 2 | tdata[5] >> 6) & 0xf;
206 x = (tdata[1] << 28 | tdata[0] << 20) >> 20;
207 y = -((tdata[2] << 24 | tdata[1] << 16) >> 20);
208 size = tdata[5] & 0x3f;
209 orientation = (tdata[6] >> 2) - 32;
210 touch_major = tdata[3];
211 touch_minor = tdata[4];
212 state = tdata[7] & TOUCH_STATE_MASK;
213 down = state != TOUCH_STATE_NONE;
9d7b1866
SB
214 } else if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
215 id = tdata[8] & 0xf;
216 x = (tdata[1] << 27 | tdata[0] << 19) >> 19;
217 y = -((tdata[3] << 30 | tdata[2] << 22 | tdata[1] << 14) >> 19);
218 size = tdata[6];
219 orientation = (tdata[8] >> 5) - 4;
220 touch_major = tdata[4];
221 touch_minor = tdata[5];
222 pressure = tdata[7];
223 state = tdata[3] & 0xC0;
224 down = state == 0x80;
a462230e
CD
225 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
226 id = (tdata[7] << 2 | tdata[6] >> 6) & 0xf;
227 x = (tdata[1] << 27 | tdata[0] << 19) >> 19;
228 y = -((tdata[3] << 30 | tdata[2] << 22 | tdata[1] << 14) >> 19);
229 size = tdata[6] & 0x3f;
230 orientation = (tdata[7] >> 2) - 32;
231 touch_major = tdata[4];
232 touch_minor = tdata[5];
233 state = tdata[8] & TOUCH_STATE_MASK;
234 down = state != TOUCH_STATE_NONE;
235 }
128537ce
MP
236
237 /* Store tracking ID and other fields. */
238 msc->tracking_ids[raw_id] = id;
239 msc->touches[id].x = x;
240 msc->touches[id].y = y;
6de048bf 241 msc->touches[id].size = size;
128537ce
MP
242
243 /* If requested, emulate a scroll wheel by detecting small
ef566d30 244 * vertical touch motions.
128537ce 245 */
9d7b1866
SB
246 if (emulate_scroll_wheel && (input->id.product !=
247 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)) {
128537ce 248 unsigned long now = jiffies;
c0426688
CD
249 int step_x = msc->touches[id].scroll_x - x;
250 int step_y = msc->touches[id].scroll_y - y;
128537ce 251
128537ce 252 /* Calculate and apply the scroll motion. */
6de048bf 253 switch (state) {
128537ce 254 case TOUCH_STATE_START:
c0426688 255 msc->touches[id].scroll_x = x;
128537ce 256 msc->touches[id].scroll_y = y;
0b778e76
CD
257
258 /* Reset acceleration after half a second. */
259 if (scroll_acceleration && time_before(now,
260 msc->scroll_jiffies + HZ / 2))
261 msc->scroll_accel = max_t(int,
262 msc->scroll_accel - 1, 1);
263 else
264 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
265
128537ce
MP
266 break;
267 case TOUCH_STATE_DRAG:
c0426688
CD
268 step_x /= (64 - (int)scroll_speed) * msc->scroll_accel;
269 if (step_x != 0) {
270 msc->touches[id].scroll_x -= step_x *
0b778e76 271 (64 - scroll_speed) * msc->scroll_accel;
128537ce 272 msc->scroll_jiffies = now;
c0426688
CD
273 input_report_rel(input, REL_HWHEEL, -step_x);
274 }
275
276 step_y /= (64 - (int)scroll_speed) * msc->scroll_accel;
277 if (step_y != 0) {
278 msc->touches[id].scroll_y -= step_y *
279 (64 - scroll_speed) * msc->scroll_accel;
280 msc->scroll_jiffies = now;
281 input_report_rel(input, REL_WHEEL, step_y);
128537ce
MP
282 }
283 break;
284 }
285 }
286
a6d1bc1d 287 if (down)
a462230e 288 msc->ntouches++;
a6d1bc1d
YS
289
290 input_mt_slot(input, id);
291 input_mt_report_slot_state(input, MT_TOOL_FINGER, down);
a462230e 292
128537ce 293 /* Generate the input events for this touch. */
6264307e 294 if (down) {
921990b7
HR
295 input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major << 2);
296 input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor << 2);
2d9ca4e9 297 input_report_abs(input, ABS_MT_ORIENTATION, -orientation);
128537ce
MP
298 input_report_abs(input, ABS_MT_POSITION_X, x);
299 input_report_abs(input, ABS_MT_POSITION_Y, y);
300
9d7b1866
SB
301 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)
302 input_report_abs(input, ABS_MT_PRESSURE, pressure);
303
a462230e 304 if (report_undeciphered) {
2b0c086c
JC
305 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
306 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2)
a462230e 307 input_event(input, EV_MSC, MSC_RAW, tdata[7]);
9d7b1866
SB
308 else if (input->id.product !=
309 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)
a462230e
CD
310 input_event(input, EV_MSC, MSC_RAW, tdata[8]);
311 }
128537ce
MP
312 }
313}
314
315static int magicmouse_raw_event(struct hid_device *hdev,
316 struct hid_report *report, u8 *data, int size)
317{
318 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
319 struct input_dev *input = msc->input;
a462230e 320 int x = 0, y = 0, ii, clicks = 0, npoints;
128537ce
MP
321
322 switch (data[0]) {
a462230e 323 case TRACKPAD_REPORT_ID:
9d7b1866 324 case TRACKPAD2_BT_REPORT_ID:
a462230e
CD
325 /* Expect four bytes of prefix, and N*9 bytes of touch data. */
326 if (size < 4 || ((size - 4) % 9) != 0)
327 return 0;
328 npoints = (size - 4) / 9;
c54def7b
JK
329 if (npoints > 15) {
330 hid_warn(hdev, "invalid size value (%d) for TRACKPAD_REPORT_ID\n",
331 size);
332 return 0;
333 }
a462230e
CD
334 msc->ntouches = 0;
335 for (ii = 0; ii < npoints; ii++)
336 magicmouse_emit_touch(msc, ii, data + ii * 9 + 4);
337
a462230e
CD
338 clicks = data[1];
339
340 /* The following bits provide a device specific timestamp. They
341 * are unused here.
342 *
343 * ts = data[1] >> 6 | data[2] << 2 | data[3] << 10;
344 */
345 break;
9d7b1866
SB
346 case TRACKPAD2_USB_REPORT_ID:
347 /* Expect twelve bytes of prefix and N*9 bytes of touch data. */
348 if (size < 12 || ((size - 12) % 9) != 0)
349 return 0;
350 npoints = (size - 12) / 9;
351 if (npoints > 15) {
352 hid_warn(hdev, "invalid size value (%d) for TRACKPAD2_USB_REPORT_ID\n",
353 size);
354 return 0;
355 }
356 msc->ntouches = 0;
357 for (ii = 0; ii < npoints; ii++)
358 magicmouse_emit_touch(msc, ii, data + ii * 9 + 12);
359
360 clicks = data[1];
361 break;
a462230e 362 case MOUSE_REPORT_ID:
128537ce
MP
363 /* Expect six bytes of prefix, and N*8 bytes of touch data. */
364 if (size < 6 || ((size - 6) % 8) != 0)
365 return 0;
0228db70 366 npoints = (size - 6) / 8;
c54def7b
JK
367 if (npoints > 15) {
368 hid_warn(hdev, "invalid size value (%d) for MOUSE_REPORT_ID\n",
369 size);
370 return 0;
371 }
0228db70
CD
372 msc->ntouches = 0;
373 for (ii = 0; ii < npoints; ii++)
128537ce 374 magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
e3612e86 375
128537ce
MP
376 /* When emulating three-button mode, it is important
377 * to have the current touch information before
378 * generating a click event.
379 */
7d876c05
MP
380 x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22;
381 y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22;
128537ce 382 clicks = data[3];
c61b7cee
CD
383
384 /* The following bits provide a device specific timestamp. They
385 * are unused here.
386 *
387 * ts = data[3] >> 6 | data[4] << 2 | data[5] << 10;
388 */
128537ce 389 break;
2b0c086c
JC
390 case MOUSE2_REPORT_ID:
391 /* Size is either 8 or (14 + 8 * N) */
392 if (size != 8 && (size < 14 || (size - 14) % 8 != 0))
393 return 0;
394 npoints = (size - 14) / 8;
395 if (npoints > 15) {
396 hid_warn(hdev, "invalid size value (%d) for MOUSE2_REPORT_ID\n",
397 size);
398 return 0;
399 }
400 msc->ntouches = 0;
401 for (ii = 0; ii < npoints; ii++)
402 magicmouse_emit_touch(msc, ii, data + ii * 8 + 14);
403
404 /* When emulating three-button mode, it is important
405 * to have the current touch information before
406 * generating a click event.
407 */
408 x = (int)((data[3] << 24) | (data[2] << 16)) >> 16;
409 y = (int)((data[5] << 24) | (data[4] << 16)) >> 16;
410 clicks = data[1];
411
412 /* The following bits provide a device specific timestamp. They
413 * are unused here.
414 *
415 * ts = data[11] >> 6 | data[12] << 2 | data[13] << 10;
416 */
417 break;
a462230e
CD
418 case DOUBLE_REPORT_ID:
419 /* Sometimes the trackpad sends two touch reports in one
420 * packet.
421 */
422 magicmouse_raw_event(hdev, report, data + 2, data[1]);
423 magicmouse_raw_event(hdev, report, data + 2 + data[1],
424 size - 2 - data[1]);
425 break;
128537ce
MP
426 default:
427 return 0;
428 }
429
2b0c086c
JC
430 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
431 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
a462230e
CD
432 magicmouse_emit_buttons(msc, clicks & 3);
433 input_report_rel(input, REL_X, x);
434 input_report_rel(input, REL_Y, y);
9d7b1866
SB
435 } else if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
436 input_mt_sync_frame(input);
437 input_report_key(input, BTN_MOUSE, clicks & 1);
a462230e
CD
438 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
439 input_report_key(input, BTN_MOUSE, clicks & 1);
a6d1bc1d 440 input_mt_report_pointer_emulation(input, true);
a462230e
CD
441 }
442
128537ce
MP
443 input_sync(input);
444 return 1;
445}
446
3dcc5f7b
JC
447static int magicmouse_event(struct hid_device *hdev, struct hid_field *field,
448 struct hid_usage *usage, __s32 value)
449{
450 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
451 if (msc->input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2 &&
452 field->report->id == MOUSE2_REPORT_ID) {
453 /*
454 * magic_mouse_raw_event has done all the work. Skip hidinput.
455 *
456 * Specifically, hidinput may modify BTN_LEFT and BTN_RIGHT,
457 * breaking emulate_3button.
458 */
459 return 1;
460 }
461 return 0;
462}
463
a6d1bc1d 464static int magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev)
128537ce 465{
a6d1bc1d 466 int error;
9d7b1866 467 int mt_flags = 0;
a6d1bc1d 468
71b38bd4 469 __set_bit(EV_KEY, input->evbit);
a462230e 470
2b0c086c
JC
471 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
472 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
a462230e
CD
473 __set_bit(BTN_LEFT, input->keybit);
474 __set_bit(BTN_RIGHT, input->keybit);
475 if (emulate_3button)
476 __set_bit(BTN_MIDDLE, input->keybit);
477
478 __set_bit(EV_REL, input->evbit);
479 __set_bit(REL_X, input->relbit);
480 __set_bit(REL_Y, input->relbit);
481 if (emulate_scroll_wheel) {
482 __set_bit(REL_WHEEL, input->relbit);
483 __set_bit(REL_HWHEEL, input->relbit);
484 }
9d7b1866
SB
485 } else if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
486 /* setting the device name to ensure the same driver settings
487 * get loaded, whether connected through bluetooth or USB
488 */
489 input->name = "Apple Inc. Magic Trackpad 2";
490
491 __clear_bit(EV_MSC, input->evbit);
492 __clear_bit(BTN_0, input->keybit);
493 __clear_bit(BTN_RIGHT, input->keybit);
494 __clear_bit(BTN_MIDDLE, input->keybit);
495 __set_bit(BTN_MOUSE, input->keybit);
496 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
497 __set_bit(BTN_TOOL_FINGER, input->keybit);
498
499 mt_flags = INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED |
500 INPUT_MT_TRACK;
a462230e 501 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
bca62142
DV
502 /* input->keybit is initialized with incorrect button info
503 * for Magic Trackpad. There really is only one physical
504 * button (BTN_LEFT == BTN_MOUSE). Make sure we don't
505 * advertise buttons that don't exist...
506 */
507 __clear_bit(BTN_RIGHT, input->keybit);
508 __clear_bit(BTN_MIDDLE, input->keybit);
a462230e 509 __set_bit(BTN_MOUSE, input->keybit);
53145c2e
DS
510 __set_bit(BTN_TOOL_FINGER, input->keybit);
511 __set_bit(BTN_TOOL_DOUBLETAP, input->keybit);
512 __set_bit(BTN_TOOL_TRIPLETAP, input->keybit);
513 __set_bit(BTN_TOOL_QUADTAP, input->keybit);
514 __set_bit(BTN_TOOL_QUINTTAP, input->keybit);
515 __set_bit(BTN_TOUCH, input->keybit);
516 __set_bit(INPUT_PROP_POINTER, input->propbit);
503f7d53 517 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
c0426688 518 }
128537ce 519
cc5e0f08 520
6264307e
YS
521 __set_bit(EV_ABS, input->evbit);
522
9d7b1866 523 error = input_mt_init_slots(input, 16, mt_flags);
a6d1bc1d
YS
524 if (error)
525 return error;
6264307e
YS
526 input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255 << 2,
527 4, 0);
528 input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255 << 2,
529 4, 0);
6264307e
YS
530
531 /* Note: Touch Y position from the device is inverted relative
532 * to how pointer motion is reported (and relative to how USB
533 * HID recommends the coordinates work). This driver keeps
534 * the origin at the same position, and just uses the additive
535 * inverse of the reported Y.
536 */
2b0c086c
JC
537 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
538 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
9d7b1866 539 input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0);
6264307e
YS
540 input_set_abs_params(input, ABS_MT_POSITION_X,
541 MOUSE_MIN_X, MOUSE_MAX_X, 4, 0);
542 input_set_abs_params(input, ABS_MT_POSITION_Y,
543 MOUSE_MIN_Y, MOUSE_MAX_Y, 4, 0);
544
545 input_abs_set_res(input, ABS_MT_POSITION_X,
546 MOUSE_RES_X);
547 input_abs_set_res(input, ABS_MT_POSITION_Y,
548 MOUSE_RES_Y);
9d7b1866
SB
549 } else if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
550 input_set_abs_params(input, ABS_MT_PRESSURE, 0, 253, 0, 0);
551 input_set_abs_params(input, ABS_PRESSURE, 0, 253, 0, 0);
552 input_set_abs_params(input, ABS_MT_ORIENTATION, -3, 4, 0, 0);
553 input_set_abs_params(input, ABS_X, TRACKPAD2_MIN_X,
554 TRACKPAD2_MAX_X, 0, 0);
555 input_set_abs_params(input, ABS_Y, TRACKPAD2_MIN_Y,
556 TRACKPAD2_MAX_Y, 0, 0);
557 input_set_abs_params(input, ABS_MT_POSITION_X,
558 TRACKPAD2_MIN_X, TRACKPAD2_MAX_X, 0, 0);
559 input_set_abs_params(input, ABS_MT_POSITION_Y,
560 TRACKPAD2_MIN_Y, TRACKPAD2_MAX_Y, 0, 0);
561
562 input_abs_set_res(input, ABS_X, TRACKPAD2_RES_X);
563 input_abs_set_res(input, ABS_Y, TRACKPAD2_RES_Y);
564 input_abs_set_res(input, ABS_MT_POSITION_X, TRACKPAD2_RES_X);
565 input_abs_set_res(input, ABS_MT_POSITION_Y, TRACKPAD2_RES_Y);
6264307e 566 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
9d7b1866 567 input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0);
6264307e
YS
568 input_set_abs_params(input, ABS_X, TRACKPAD_MIN_X,
569 TRACKPAD_MAX_X, 4, 0);
570 input_set_abs_params(input, ABS_Y, TRACKPAD_MIN_Y,
571 TRACKPAD_MAX_Y, 4, 0);
572 input_set_abs_params(input, ABS_MT_POSITION_X,
573 TRACKPAD_MIN_X, TRACKPAD_MAX_X, 4, 0);
574 input_set_abs_params(input, ABS_MT_POSITION_Y,
575 TRACKPAD_MIN_Y, TRACKPAD_MAX_Y, 4, 0);
576
577 input_abs_set_res(input, ABS_X, TRACKPAD_RES_X);
578 input_abs_set_res(input, ABS_Y, TRACKPAD_RES_Y);
579 input_abs_set_res(input, ABS_MT_POSITION_X,
580 TRACKPAD_RES_X);
581 input_abs_set_res(input, ABS_MT_POSITION_Y,
582 TRACKPAD_RES_Y);
128537ce
MP
583 }
584
6264307e
YS
585 input_set_events_per_packet(input, 60);
586
9d7b1866
SB
587 if (report_undeciphered &&
588 input->id.product != USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
71b38bd4
MP
589 __set_bit(EV_MSC, input->evbit);
590 __set_bit(MSC_RAW, input->mscbit);
128537ce 591 }
a6d1bc1d 592
6363d206
DT
593 /*
594 * hid-input may mark device as using autorepeat, but neither
595 * the trackpad, nor the mouse actually want it.
596 */
597 __clear_bit(EV_REP, input->evbit);
598
a6d1bc1d 599 return 0;
128537ce
MP
600}
601
64eb105d
MP
602static int magicmouse_input_mapping(struct hid_device *hdev,
603 struct hid_input *hi, struct hid_field *field,
604 struct hid_usage *usage, unsigned long **bit, int *max)
605{
606 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
607
608 if (!msc->input)
609 msc->input = hi->input;
610
6a66bbd6 611 /* Magic Trackpad does not give relative data after switching to MT */
9d7b1866
SB
612 if ((hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD ||
613 hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) &&
6a66bbd6
CD
614 field->flags & HID_MAIN_ITEM_RELATIVE)
615 return -1;
616
64eb105d
MP
617 return 0;
618}
619
9154301a 620static int magicmouse_input_configured(struct hid_device *hdev,
f1a9a149
BT
621 struct hid_input *hi)
622
623{
624 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
9154301a 625 int ret;
f1a9a149 626
9154301a 627 ret = magicmouse_setup_input(msc->input, hdev);
f1a9a149
BT
628 if (ret) {
629 hid_err(hdev, "magicmouse setup input failed (%d)\n", ret);
630 /* clean msc->input to notify probe() of the failure */
631 msc->input = NULL;
9154301a 632 return ret;
f1a9a149 633 }
9154301a
DT
634
635 return 0;
f1a9a149
BT
636}
637
c0dc5582 638static int magicmouse_enable_multitouch(struct hid_device *hdev)
128537ce 639{
9d7b1866
SB
640 const u8 *feature;
641 const u8 feature_mt[] = { 0xD7, 0x01 };
2b0c086c 642 const u8 feature_mt_mouse2[] = { 0xF1, 0x02, 0x01 };
9d7b1866
SB
643 const u8 feature_mt_trackpad2_usb[] = { 0x02, 0x01 };
644 const u8 feature_mt_trackpad2_bt[] = { 0xF1, 0x02, 0x01 };
b7a87ad6 645 u8 *buf;
c0dc5582
JC
646 int ret;
647 int feature_size;
648
649 if (hdev->product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
650 if (hdev->vendor == BT_VENDOR_ID_APPLE) {
651 feature_size = sizeof(feature_mt_trackpad2_bt);
652 feature = feature_mt_trackpad2_bt;
653 } else { /* USB_VENDOR_ID_APPLE */
654 feature_size = sizeof(feature_mt_trackpad2_usb);
655 feature = feature_mt_trackpad2_usb;
656 }
657 } else if (hdev->product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
658 feature_size = sizeof(feature_mt_mouse2);
659 feature = feature_mt_mouse2;
660 } else {
661 feature_size = sizeof(feature_mt);
662 feature = feature_mt;
663 }
664
665 buf = kmemdup(feature, feature_size, GFP_KERNEL);
666 if (!buf)
667 return -ENOMEM;
668
669 ret = hid_hw_raw_request(hdev, buf[0], buf, feature_size,
670 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
671 kfree(buf);
672 return ret;
673}
674
675static void magicmouse_enable_mt_work(struct work_struct *work)
676{
677 struct magicmouse_sc *msc =
678 container_of(work, struct magicmouse_sc, work.work);
679 int ret;
680
681 ret = magicmouse_enable_multitouch(msc->hdev);
682 if (ret < 0)
683 hid_err(msc->hdev, "unable to request touch data (%d)\n", ret);
684}
685
686static int magicmouse_probe(struct hid_device *hdev,
687 const struct hid_device_id *id)
688{
128537ce
MP
689 struct magicmouse_sc *msc;
690 struct hid_report *report;
691 int ret;
9d7b1866
SB
692
693 if (id->vendor == USB_VENDOR_ID_APPLE &&
694 id->product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2 &&
695 hdev->type != HID_TYPE_USBMOUSE)
696 return 0;
128537ce 697
abf832bf 698 msc = devm_kzalloc(&hdev->dev, sizeof(*msc), GFP_KERNEL);
128537ce 699 if (msc == NULL) {
4291ee30 700 hid_err(hdev, "can't alloc magicmouse descriptor\n");
128537ce
MP
701 return -ENOMEM;
702 }
703
0b778e76 704 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
c0dc5582
JC
705 msc->hdev = hdev;
706 INIT_DEFERRABLE_WORK(&msc->work, magicmouse_enable_mt_work);
0b778e76 707
128537ce
MP
708 msc->quirks = id->driver_data;
709 hid_set_drvdata(hdev, msc);
710
711 ret = hid_parse(hdev);
712 if (ret) {
4291ee30 713 hid_err(hdev, "magicmouse hid parse failed\n");
abf832bf 714 return ret;
128537ce
MP
715 }
716
23d02116 717 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
128537ce 718 if (ret) {
4291ee30 719 hid_err(hdev, "magicmouse hw start failed\n");
abf832bf 720 return ret;
128537ce
MP
721 }
722
f1a9a149
BT
723 if (!msc->input) {
724 hid_err(hdev, "magicmouse input not registered\n");
725 ret = -ENOMEM;
726 goto err_stop_hw;
a6d1bc1d 727 }
23d02116 728
a462230e
CD
729 if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
730 report = hid_register_report(hdev, HID_INPUT_REPORT,
f07b3c1d 731 MOUSE_REPORT_ID, 0);
2b0c086c
JC
732 else if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE2)
733 report = hid_register_report(hdev, HID_INPUT_REPORT,
734 MOUSE2_REPORT_ID, 0);
9d7b1866
SB
735 else if (id->product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
736 if (id->vendor == BT_VENDOR_ID_APPLE)
737 report = hid_register_report(hdev, HID_INPUT_REPORT,
738 TRACKPAD2_BT_REPORT_ID, 0);
739 else /* USB_VENDOR_ID_APPLE */
740 report = hid_register_report(hdev, HID_INPUT_REPORT,
741 TRACKPAD2_USB_REPORT_ID, 0);
742 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
a462230e 743 report = hid_register_report(hdev, HID_INPUT_REPORT,
f07b3c1d 744 TRACKPAD_REPORT_ID, 0);
a462230e 745 report = hid_register_report(hdev, HID_INPUT_REPORT,
f07b3c1d 746 DOUBLE_REPORT_ID, 0);
a462230e
CD
747 }
748
128537ce 749 if (!report) {
4291ee30 750 hid_err(hdev, "unable to register touch report\n");
128537ce 751 ret = -ENOMEM;
71b38bd4 752 goto err_stop_hw;
128537ce
MP
753 }
754 report->size = 6;
755
35d851df
JK
756 /*
757 * Some devices repond with 'invalid report id' when feature
758 * report switching it into multitouch mode is sent to it.
759 *
760 * This results in -EIO from the _raw low-level transport callback,
761 * but there seems to be no other way of switching the mode.
762 * Thus the super-ugly hacky success check below.
763 */
c0dc5582
JC
764 ret = magicmouse_enable_multitouch(hdev);
765 if (ret != -EIO && ret < 0) {
4291ee30 766 hid_err(hdev, "unable to request touch data (%d)\n", ret);
71b38bd4 767 goto err_stop_hw;
128537ce 768 }
c0dc5582
JC
769 if (ret == -EIO && id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
770 schedule_delayed_work(&msc->work, msecs_to_jiffies(500));
771 }
128537ce 772
128537ce 773 return 0;
71b38bd4
MP
774err_stop_hw:
775 hid_hw_stop(hdev);
128537ce
MP
776 return ret;
777}
778
c0dc5582
JC
779static void magicmouse_remove(struct hid_device *hdev)
780{
781 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
782 cancel_delayed_work_sync(&msc->work);
783 hid_hw_stop(hdev);
784}
785
128537ce 786static const struct hid_device_id magic_mice[] = {
a462230e
CD
787 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
788 USB_DEVICE_ID_APPLE_MAGICMOUSE), .driver_data = 0 },
2b0c086c
JC
789 { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE,
790 USB_DEVICE_ID_APPLE_MAGICMOUSE2), .driver_data = 0 },
a462230e
CD
791 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
792 USB_DEVICE_ID_APPLE_MAGICTRACKPAD), .driver_data = 0 },
9d7b1866
SB
793 { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE,
794 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2), .driver_data = 0 },
795 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE,
796 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2), .driver_data = 0 },
128537ce
MP
797 { }
798};
799MODULE_DEVICE_TABLE(hid, magic_mice);
800
801static struct hid_driver magicmouse_driver = {
802 .name = "magicmouse",
803 .id_table = magic_mice,
804 .probe = magicmouse_probe,
c0dc5582 805 .remove = magicmouse_remove,
128537ce 806 .raw_event = magicmouse_raw_event,
3dcc5f7b 807 .event = magicmouse_event,
64eb105d 808 .input_mapping = magicmouse_input_mapping,
f1a9a149 809 .input_configured = magicmouse_input_configured,
128537ce 810};
f425458e 811module_hid_driver(magicmouse_driver);
128537ce 812
128537ce 813MODULE_LICENSE("GPL");