blob: 097870e43cfe890cd82793a365567383cafde116 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Michael Poole128537c2010-02-06 12:24:36 -05002/*
3 * Apple "Magic" Wireless Mouse driver
4 *
5 * Copyright (c) 2010 Michael Poole <mdpoole@troilus.org>
Chase Douglasa4622302010-08-31 21:56:23 -04006 * Copyright (c) 2010 Chase Douglas <chase.douglas@canonical.com>
Michael Poole128537c2010-02-06 12:24:36 -05007 */
8
9/*
Michael Poole128537c2010-02-06 12:24:36 -050010 */
11
Joe Perches4291ee32010-12-09 19:29:03 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Michael Poole128537c2010-02-06 12:24:36 -050014#include <linux/device.h>
15#include <linux/hid.h>
Yufeng Shena6d1bc12012-07-04 12:15:43 -040016#include <linux/input/mt.h>
Michael Poole128537c2010-02-06 12:24:36 -050017#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
John Chenc0dc5582021-03-30 19:33:18 +080019#include <linux/workqueue.h>
Michael Poole128537c2010-02-06 12:24:36 -050020
21#include "hid-ids.h"
22
Michael Poole71b38bd2010-02-11 00:32:57 -050023static bool emulate_3button = true;
Michael Poole128537c2010-02-06 12:24:36 -050024module_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
Michael Poole71b38bd2010-02-11 00:32:57 -050030static bool emulate_scroll_wheel = true;
Michael Poole128537c2010-02-06 12:24:36 -050031module_param(emulate_scroll_wheel, bool, 0644);
32MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel");
33
Chase Douglas0b778e72010-06-20 21:32:30 -040034static unsigned int scroll_speed = 32;
Kees Cooke4dca7b2017-10-17 19:04:42 -070035static int param_set_scroll_speed(const char *val,
36 const struct kernel_param *kp) {
Chase Douglas0b778e72010-06-20 21:32:30 -040037 unsigned long speed;
Jingoo Handfc450b2013-07-19 15:53:16 +090038 if (!val || kstrtoul(val, 0, &speed) || speed > 63)
Chase Douglas0b778e72010-06-20 21:32:30 -040039 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
Chase Douglas9846f352010-06-02 10:28:27 -040046static bool scroll_acceleration = false;
47module_param(scroll_acceleration, bool, 0644);
48MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events");
49
Michael Poole71b38bd2010-02-11 00:32:57 -050050static bool report_undeciphered;
Michael Poole128537c2010-02-06 12:24:36 -050051module_param(report_undeciphered, bool, 0644);
52MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event");
53
Chase Douglasa4622302010-08-31 21:56:23 -040054#define TRACKPAD_REPORT_ID 0x28
Sean O'Brien9d7b1862018-10-02 15:53:37 -070055#define TRACKPAD2_USB_REPORT_ID 0x02
56#define TRACKPAD2_BT_REPORT_ID 0x31
Chase Douglasa4622302010-08-31 21:56:23 -040057#define MOUSE_REPORT_ID 0x29
John Chen2b0c0862021-03-30 19:33:16 +080058#define MOUSE2_REPORT_ID 0x12
Chase Douglasa4622302010-08-31 21:56:23 -040059#define DOUBLE_REPORT_ID 0xf7
Michael Poole128537c2010-02-06 12:24:36 -050060/* 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
Chase Douglas0b778e72010-06-20 21:32:30 -040071#define SCROLL_ACCEL_DEFAULT 7
72
Chase Douglas4f6fdf02011-08-05 09:16:57 -070073/* 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
Sean O'Brien9d7b1862018-10-02 15:53:37 -070095#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
Michael Poole128537c2010-02-06 12:24:36 -0500106/**
107 * struct magicmouse_sc - Tracks Magic Mouse-specific data.
108 * @input: Input device through which we report events.
109 * @quirks: Currently unused.
Michael Poole128537c2010-02-06 12:24:36 -0500110 * @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
Michael Poole128537c2010-02-06 12:24:36 -0500120 int ntouches;
121 int scroll_accel;
122 unsigned long scroll_jiffies;
123
124 struct {
125 short x;
126 short y;
Chase Douglasc0426682010-06-20 21:32:31 -0400127 short scroll_x;
Michael Poole128537c2010-02-06 12:24:36 -0500128 short scroll_y;
129 u8 size;
130 } touches[16];
131 int tracking_ids[16];
John Chenc0dc5582021-03-30 19:33:18 +0800132
133 struct hid_device *hdev;
134 struct delayed_work work;
Michael Poole128537c2010-02-06 12:24:36 -0500135};
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{
Michael Poole71b38bd2010-02-11 00:32:57 -0500162 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;
Michael Poole128537c2010-02-06 12:24:36 -0500165
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)
Chase Douglas0b778e72010-06-20 21:32:30 -0400194 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
Michael Poole128537c2010-02-06 12:24:36 -0500195}
196
197static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata)
198{
199 struct input_dev *input = msc->input;
Chase Douglasa4622302010-08-31 21:56:23 -0400200 int id, x, y, size, orientation, touch_major, touch_minor, state, down;
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700201 int pressure = 0;
Chase Douglasa4622302010-08-31 21:56:23 -0400202
John Chen2b0c0862021-03-30 19:33:16 +0800203 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
204 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
Chase Douglasa4622302010-08-31 21:56:23 -0400205 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;
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700214 } 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;
Chase Douglasa4622302010-08-31 21:56:23 -0400225 } 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 }
Michael Poole128537c2010-02-06 12:24:36 -0500236
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;
Chase Douglas6de048b2010-08-31 21:56:20 -0400241 msc->touches[id].size = size;
Michael Poole128537c2010-02-06 12:24:36 -0500242
243 /* If requested, emulate a scroll wheel by detecting small
Chase Douglasef566d32010-06-02 10:28:25 -0400244 * vertical touch motions.
Michael Poole128537c2010-02-06 12:24:36 -0500245 */
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700246 if (emulate_scroll_wheel && (input->id.product !=
247 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)) {
Michael Poole128537c2010-02-06 12:24:36 -0500248 unsigned long now = jiffies;
Chase Douglasc0426682010-06-20 21:32:31 -0400249 int step_x = msc->touches[id].scroll_x - x;
250 int step_y = msc->touches[id].scroll_y - y;
Michael Poole128537c2010-02-06 12:24:36 -0500251
Michael Poole128537c2010-02-06 12:24:36 -0500252 /* Calculate and apply the scroll motion. */
Chase Douglas6de048b2010-08-31 21:56:20 -0400253 switch (state) {
Michael Poole128537c2010-02-06 12:24:36 -0500254 case TOUCH_STATE_START:
Chase Douglasc0426682010-06-20 21:32:31 -0400255 msc->touches[id].scroll_x = x;
Michael Poole128537c2010-02-06 12:24:36 -0500256 msc->touches[id].scroll_y = y;
Chase Douglas0b778e72010-06-20 21:32:30 -0400257
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
Michael Poole128537c2010-02-06 12:24:36 -0500266 break;
267 case TOUCH_STATE_DRAG:
Chase Douglasc0426682010-06-20 21:32:31 -0400268 step_x /= (64 - (int)scroll_speed) * msc->scroll_accel;
269 if (step_x != 0) {
270 msc->touches[id].scroll_x -= step_x *
Chase Douglas0b778e72010-06-20 21:32:30 -0400271 (64 - scroll_speed) * msc->scroll_accel;
Michael Poole128537c2010-02-06 12:24:36 -0500272 msc->scroll_jiffies = now;
Chase Douglasc0426682010-06-20 21:32:31 -0400273 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);
Michael Poole128537c2010-02-06 12:24:36 -0500282 }
283 break;
284 }
285 }
286
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400287 if (down)
Chase Douglasa4622302010-08-31 21:56:23 -0400288 msc->ntouches++;
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400289
290 input_mt_slot(input, id);
291 input_mt_report_slot_state(input, MT_TOOL_FINGER, down);
Chase Douglasa4622302010-08-31 21:56:23 -0400292
Michael Poole128537c2010-02-06 12:24:36 -0500293 /* Generate the input events for this touch. */
Yufeng Shen62643072012-07-04 12:14:43 -0400294 if (down) {
Henrik Rydberg921990b2010-08-31 21:56:24 -0400295 input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major << 2);
296 input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor << 2);
Henrik Rydberg2d9ca4e2011-03-09 18:38:57 +0100297 input_report_abs(input, ABS_MT_ORIENTATION, -orientation);
Michael Poole128537c2010-02-06 12:24:36 -0500298 input_report_abs(input, ABS_MT_POSITION_X, x);
299 input_report_abs(input, ABS_MT_POSITION_Y, y);
300
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700301 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)
302 input_report_abs(input, ABS_MT_PRESSURE, pressure);
303
Chase Douglasa4622302010-08-31 21:56:23 -0400304 if (report_undeciphered) {
John Chen2b0c0862021-03-30 19:33:16 +0800305 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
306 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2)
Chase Douglasa4622302010-08-31 21:56:23 -0400307 input_event(input, EV_MSC, MSC_RAW, tdata[7]);
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700308 else if (input->id.product !=
309 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2)
Chase Douglasa4622302010-08-31 21:56:23 -0400310 input_event(input, EV_MSC, MSC_RAW, tdata[8]);
311 }
Michael Poole128537c2010-02-06 12:24:36 -0500312 }
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;
Chase Douglasa4622302010-08-31 21:56:23 -0400320 int x = 0, y = 0, ii, clicks = 0, npoints;
Michael Poole128537c2010-02-06 12:24:36 -0500321
322 switch (data[0]) {
Chase Douglasa4622302010-08-31 21:56:23 -0400323 case TRACKPAD_REPORT_ID:
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700324 case TRACKPAD2_BT_REPORT_ID:
Chase Douglasa4622302010-08-31 21:56:23 -0400325 /* 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;
Jiri Kosinac54def72014-08-27 09:12:24 +0200329 if (npoints > 15) {
330 hid_warn(hdev, "invalid size value (%d) for TRACKPAD_REPORT_ID\n",
331 size);
332 return 0;
333 }
Chase Douglasa4622302010-08-31 21:56:23 -0400334 msc->ntouches = 0;
335 for (ii = 0; ii < npoints; ii++)
336 magicmouse_emit_touch(msc, ii, data + ii * 9 + 4);
337
Chase Douglasa4622302010-08-31 21:56:23 -0400338 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;
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700346 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;
Chase Douglasa4622302010-08-31 21:56:23 -0400362 case MOUSE_REPORT_ID:
Michael Poole128537c2010-02-06 12:24:36 -0500363 /* Expect six bytes of prefix, and N*8 bytes of touch data. */
364 if (size < 6 || ((size - 6) % 8) != 0)
365 return 0;
Chase Douglas0228db72010-09-02 16:49:52 +0200366 npoints = (size - 6) / 8;
Jiri Kosinac54def72014-08-27 09:12:24 +0200367 if (npoints > 15) {
368 hid_warn(hdev, "invalid size value (%d) for MOUSE_REPORT_ID\n",
369 size);
370 return 0;
371 }
Chase Douglas0228db72010-09-02 16:49:52 +0200372 msc->ntouches = 0;
373 for (ii = 0; ii < npoints; ii++)
Michael Poole128537c2010-02-06 12:24:36 -0500374 magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
Chase Douglase3612e82010-07-05 09:57:52 -0400375
Michael Poole128537c2010-02-06 12:24:36 -0500376 /* When emulating three-button mode, it is important
377 * to have the current touch information before
378 * generating a click event.
379 */
Michael Poole7d876c02010-07-05 10:50:09 -0400380 x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22;
381 y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22;
Michael Poole128537c2010-02-06 12:24:36 -0500382 clicks = data[3];
Chase Douglasc61b7ce2010-09-02 16:51:54 +0200383
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 */
Michael Poole128537c2010-02-06 12:24:36 -0500389 break;
John Chen2b0c0862021-03-30 19:33:16 +0800390 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;
Chase Douglasa4622302010-08-31 21:56:23 -0400418 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;
Michael Poole128537c2010-02-06 12:24:36 -0500426 default:
427 return 0;
428 }
429
John Chen2b0c0862021-03-30 19:33:16 +0800430 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
431 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
Chase Douglasa4622302010-08-31 21:56:23 -0400432 magicmouse_emit_buttons(msc, clicks & 3);
433 input_report_rel(input, REL_X, x);
434 input_report_rel(input, REL_Y, y);
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700435 } 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);
Chase Douglasa4622302010-08-31 21:56:23 -0400438 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
439 input_report_key(input, BTN_MOUSE, clicks & 1);
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400440 input_mt_report_pointer_emulation(input, true);
Chase Douglasa4622302010-08-31 21:56:23 -0400441 }
442
Michael Poole128537c2010-02-06 12:24:36 -0500443 input_sync(input);
444 return 1;
445}
446
John Chen3dcc5f72021-03-30 19:33:17 +0800447static 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
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400464static int magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev)
Michael Poole128537c2010-02-06 12:24:36 -0500465{
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400466 int error;
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700467 int mt_flags = 0;
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400468
Michael Poole71b38bd2010-02-11 00:32:57 -0500469 __set_bit(EV_KEY, input->evbit);
Michael Poole128537c2010-02-06 12:24:36 -0500470
John Chen2b0c0862021-03-30 19:33:16 +0800471 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
472 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
Chase Douglasa4622302010-08-31 21:56:23 -0400473 __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 }
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700485 } 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;
Chase Douglasa4622302010-08-31 21:56:23 -0400501 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
Daniel van Vugtbca62142011-10-14 13:39:34 +0800502 /* 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);
Chase Douglasa4622302010-08-31 21:56:23 -0400509 __set_bit(BTN_MOUSE, input->keybit);
Daniel Stone53145c22017-06-15 13:35:50 +0100510 __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);
Chase Douglas503f7d52012-02-13 20:12:31 -0800517 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
Chase Douglasc0426682010-06-20 21:32:31 -0400518 }
Michael Poole128537c2010-02-06 12:24:36 -0500519
Michael Poole128537c2010-02-06 12:24:36 -0500520
Yufeng Shen62643072012-07-04 12:14:43 -0400521 __set_bit(EV_ABS, input->evbit);
Chase Douglasa4622302010-08-31 21:56:23 -0400522
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700523 error = input_mt_init_slots(input, 16, mt_flags);
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400524 if (error)
525 return error;
Yufeng Shen62643072012-07-04 12:14:43 -0400526 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);
Chase Douglas4f6fdf02011-08-05 09:16:57 -0700530
Yufeng Shen62643072012-07-04 12:14:43 -0400531 /* 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 */
John Chen2b0c0862021-03-30 19:33:16 +0800537 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE ||
538 input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700539 input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0);
Yufeng Shen62643072012-07-04 12:14:43 -0400540 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);
Chase Douglas4f6fdf02011-08-05 09:16:57 -0700544
Yufeng Shen62643072012-07-04 12:14:43 -0400545 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);
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700549 } 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);
Yufeng Shen62643072012-07-04 12:14:43 -0400566 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700567 input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0);
Yufeng Shen62643072012-07-04 12:14:43 -0400568 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);
Chase Douglascc5e0f02011-04-01 17:03:39 -0400576
Yufeng Shen62643072012-07-04 12:14:43 -0400577 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);
Michael Poole128537c2010-02-06 12:24:36 -0500583 }
584
Yufeng Shen62643072012-07-04 12:14:43 -0400585 input_set_events_per_packet(input, 60);
586
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700587 if (report_undeciphered &&
588 input->id.product != USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) {
Michael Poole71b38bd2010-02-11 00:32:57 -0500589 __set_bit(EV_MSC, input->evbit);
590 __set_bit(MSC_RAW, input->mscbit);
Michael Poole128537c2010-02-06 12:24:36 -0500591 }
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400592
Dmitry Torokhov6363d202020-05-24 16:51:34 -0700593 /*
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
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400599 return 0;
Michael Poole128537c2010-02-06 12:24:36 -0500600}
601
Michael Poole64eb1052010-09-24 13:58:18 +0200602static 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
Chase Douglas6a66bbd2010-12-08 15:08:04 -0800611 /* Magic Trackpad does not give relative data after switching to MT */
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700612 if ((hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD ||
613 hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2) &&
Chase Douglas6a66bbd2010-12-08 15:08:04 -0800614 field->flags & HID_MAIN_ITEM_RELATIVE)
615 return -1;
616
Michael Poole64eb1052010-09-24 13:58:18 +0200617 return 0;
618}
619
Dmitry Torokhov91543012015-09-29 15:52:59 -0700620static int magicmouse_input_configured(struct hid_device *hdev,
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200621 struct hid_input *hi)
622
623{
624 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
Dmitry Torokhov91543012015-09-29 15:52:59 -0700625 int ret;
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200626
Dmitry Torokhov91543012015-09-29 15:52:59 -0700627 ret = magicmouse_setup_input(msc->input, hdev);
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200628 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;
Dmitry Torokhov91543012015-09-29 15:52:59 -0700632 return ret;
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200633 }
Dmitry Torokhov91543012015-09-29 15:52:59 -0700634
635 return 0;
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200636}
637
John Chenc0dc5582021-03-30 19:33:18 +0800638static int magicmouse_enable_multitouch(struct hid_device *hdev)
Michael Poole128537c2010-02-06 12:24:36 -0500639{
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700640 const u8 *feature;
641 const u8 feature_mt[] = { 0xD7, 0x01 };
John Chen2b0c0862021-03-30 19:33:16 +0800642 const u8 feature_mt_mouse2[] = { 0xF1, 0x02, 0x01 };
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700643 const u8 feature_mt_trackpad2_usb[] = { 0x02, 0x01 };
644 const u8 feature_mt_trackpad2_bt[] = { 0xF1, 0x02, 0x01 };
Benjamin Tissoiresb7a87ad2016-11-21 11:48:41 +0100645 u8 *buf;
John Chenc0dc5582021-03-30 19:33:18 +0800646 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{
Michael Poole128537c2010-02-06 12:24:36 -0500689 struct magicmouse_sc *msc;
690 struct hid_report *report;
691 int ret;
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700692
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;
Michael Poole128537c2010-02-06 12:24:36 -0500697
Benjamin Tissoiresabf832b2013-07-24 19:38:04 +0200698 msc = devm_kzalloc(&hdev->dev, sizeof(*msc), GFP_KERNEL);
Michael Poole128537c2010-02-06 12:24:36 -0500699 if (msc == NULL) {
Joe Perches4291ee32010-12-09 19:29:03 -0800700 hid_err(hdev, "can't alloc magicmouse descriptor\n");
Michael Poole128537c2010-02-06 12:24:36 -0500701 return -ENOMEM;
702 }
703
Chase Douglas0b778e72010-06-20 21:32:30 -0400704 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
John Chenc0dc5582021-03-30 19:33:18 +0800705 msc->hdev = hdev;
706 INIT_DEFERRABLE_WORK(&msc->work, magicmouse_enable_mt_work);
Chase Douglas0b778e72010-06-20 21:32:30 -0400707
Michael Poole128537c2010-02-06 12:24:36 -0500708 msc->quirks = id->driver_data;
709 hid_set_drvdata(hdev, msc);
710
711 ret = hid_parse(hdev);
712 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800713 hid_err(hdev, "magicmouse hid parse failed\n");
Benjamin Tissoiresabf832b2013-07-24 19:38:04 +0200714 return ret;
Michael Poole128537c2010-02-06 12:24:36 -0500715 }
716
Jiri Kosina23d02112010-05-12 16:01:26 +0200717 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
Michael Poole128537c2010-02-06 12:24:36 -0500718 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800719 hid_err(hdev, "magicmouse hw start failed\n");
Benjamin Tissoiresabf832b2013-07-24 19:38:04 +0200720 return ret;
Michael Poole128537c2010-02-06 12:24:36 -0500721 }
722
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200723 if (!msc->input) {
724 hid_err(hdev, "magicmouse input not registered\n");
725 ret = -ENOMEM;
726 goto err_stop_hw;
Yufeng Shena6d1bc12012-07-04 12:15:43 -0400727 }
Jiri Kosina23d02112010-05-12 16:01:26 +0200728
Chase Douglasa4622302010-08-31 21:56:23 -0400729 if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
730 report = hid_register_report(hdev, HID_INPUT_REPORT,
Benjamin Tissoiresf07b3c12018-04-24 10:04:33 +0200731 MOUSE_REPORT_ID, 0);
John Chen2b0c0862021-03-30 19:33:16 +0800732 else if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE2)
733 report = hid_register_report(hdev, HID_INPUT_REPORT,
734 MOUSE2_REPORT_ID, 0);
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700735 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 */
Chase Douglasa4622302010-08-31 21:56:23 -0400743 report = hid_register_report(hdev, HID_INPUT_REPORT,
Benjamin Tissoiresf07b3c12018-04-24 10:04:33 +0200744 TRACKPAD_REPORT_ID, 0);
Chase Douglasa4622302010-08-31 21:56:23 -0400745 report = hid_register_report(hdev, HID_INPUT_REPORT,
Benjamin Tissoiresf07b3c12018-04-24 10:04:33 +0200746 DOUBLE_REPORT_ID, 0);
Chase Douglasa4622302010-08-31 21:56:23 -0400747 }
748
Michael Poole128537c2010-02-06 12:24:36 -0500749 if (!report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800750 hid_err(hdev, "unable to register touch report\n");
Michael Poole128537c2010-02-06 12:24:36 -0500751 ret = -ENOMEM;
Michael Poole71b38bd2010-02-11 00:32:57 -0500752 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500753 }
754 report->size = 6;
755
Jiri Kosina35d851d2011-08-25 14:21:37 +0200756 /*
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 */
John Chenc0dc5582021-03-30 19:33:18 +0800764 ret = magicmouse_enable_multitouch(hdev);
765 if (ret != -EIO && ret < 0) {
Joe Perches4291ee32010-12-09 19:29:03 -0800766 hid_err(hdev, "unable to request touch data (%d)\n", ret);
Michael Poole71b38bd2010-02-11 00:32:57 -0500767 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500768 }
John Chenc0dc5582021-03-30 19:33:18 +0800769 if (ret == -EIO && id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE2) {
770 schedule_delayed_work(&msc->work, msecs_to_jiffies(500));
771 }
Michael Poole128537c2010-02-06 12:24:36 -0500772
Michael Poole128537c2010-02-06 12:24:36 -0500773 return 0;
Michael Poole71b38bd2010-02-11 00:32:57 -0500774err_stop_hw:
775 hid_hw_stop(hdev);
Michael Poole128537c2010-02-06 12:24:36 -0500776 return ret;
777}
778
John Chenc0dc5582021-03-30 19:33:18 +0800779static void magicmouse_remove(struct hid_device *hdev)
780{
781 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
José Expósito4fb12512021-05-10 08:22:37 +0200782
783 if (msc)
784 cancel_delayed_work_sync(&msc->work);
785
John Chenc0dc5582021-03-30 19:33:18 +0800786 hid_hw_stop(hdev);
787}
788
Michael Poole128537c2010-02-06 12:24:36 -0500789static const struct hid_device_id magic_mice[] = {
Chase Douglasa4622302010-08-31 21:56:23 -0400790 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
791 USB_DEVICE_ID_APPLE_MAGICMOUSE), .driver_data = 0 },
John Chen2b0c0862021-03-30 19:33:16 +0800792 { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE,
793 USB_DEVICE_ID_APPLE_MAGICMOUSE2), .driver_data = 0 },
Chase Douglasa4622302010-08-31 21:56:23 -0400794 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
795 USB_DEVICE_ID_APPLE_MAGICTRACKPAD), .driver_data = 0 },
Sean O'Brien9d7b1862018-10-02 15:53:37 -0700796 { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE,
797 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2), .driver_data = 0 },
798 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE,
799 USB_DEVICE_ID_APPLE_MAGICTRACKPAD2), .driver_data = 0 },
Michael Poole128537c2010-02-06 12:24:36 -0500800 { }
801};
802MODULE_DEVICE_TABLE(hid, magic_mice);
803
804static struct hid_driver magicmouse_driver = {
805 .name = "magicmouse",
806 .id_table = magic_mice,
807 .probe = magicmouse_probe,
John Chenc0dc5582021-03-30 19:33:18 +0800808 .remove = magicmouse_remove,
Michael Poole128537c2010-02-06 12:24:36 -0500809 .raw_event = magicmouse_raw_event,
John Chen3dcc5f72021-03-30 19:33:17 +0800810 .event = magicmouse_event,
Michael Poole64eb1052010-09-24 13:58:18 +0200811 .input_mapping = magicmouse_input_mapping,
Benjamin Tissoiresf1a9a142013-04-02 11:11:52 +0200812 .input_configured = magicmouse_input_configured,
Michael Poole128537c2010-02-06 12:24:36 -0500813};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700814module_hid_driver(magicmouse_driver);
Michael Poole128537c2010-02-06 12:24:36 -0500815
Michael Poole128537c2010-02-06 12:24:36 -0500816MODULE_LICENSE("GPL");