blob: fd88f216720a387fc1dac9bbeadce4edd23c8d38 [file] [log] [blame]
Michael Poole128537c2010-02-06 12:24:36 -05001/*
2 * Apple "Magic" Wireless Mouse driver
3 *
4 * Copyright (c) 2010 Michael Poole <mdpoole@troilus.org>
Chase Douglasa4622302010-08-31 21:56:23 -04005 * Copyright (c) 2010 Chase Douglas <chase.douglas@canonical.com>
Michael Poole128537c2010-02-06 12:24:36 -05006 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 */
14
Joe Perches4291ee32010-12-09 19:29:03 -080015#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
Michael Poole128537c2010-02-06 12:24:36 -050017#include <linux/device.h>
18#include <linux/hid.h>
19#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Michael Poole128537c2010-02-06 12:24:36 -050021#include <linux/usb.h>
22
23#include "hid-ids.h"
24
Michael Poole71b38bd2010-02-11 00:32:57 -050025static bool emulate_3button = true;
Michael Poole128537c2010-02-06 12:24:36 -050026module_param(emulate_3button, bool, 0644);
27MODULE_PARM_DESC(emulate_3button, "Emulate a middle button");
28
29static int middle_button_start = -350;
30static int middle_button_stop = +350;
31
Michael Poole71b38bd2010-02-11 00:32:57 -050032static bool emulate_scroll_wheel = true;
Michael Poole128537c2010-02-06 12:24:36 -050033module_param(emulate_scroll_wheel, bool, 0644);
34MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel");
35
Chase Douglas0b778e72010-06-20 21:32:30 -040036static unsigned int scroll_speed = 32;
37static int param_set_scroll_speed(const char *val, struct kernel_param *kp) {
38 unsigned long speed;
39 if (!val || strict_strtoul(val, 0, &speed) || speed > 63)
40 return -EINVAL;
41 scroll_speed = speed;
42 return 0;
43}
44module_param_call(scroll_speed, param_set_scroll_speed, param_get_uint, &scroll_speed, 0644);
45MODULE_PARM_DESC(scroll_speed, "Scroll speed, value from 0 (slow) to 63 (fast)");
46
Chase Douglas9846f352010-06-02 10:28:27 -040047static bool scroll_acceleration = false;
48module_param(scroll_acceleration, bool, 0644);
49MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events");
50
Michael Poole71b38bd2010-02-11 00:32:57 -050051static bool report_undeciphered;
Michael Poole128537c2010-02-06 12:24:36 -050052module_param(report_undeciphered, bool, 0644);
53MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event");
54
Chase Douglasa4622302010-08-31 21:56:23 -040055#define TRACKPAD_REPORT_ID 0x28
56#define MOUSE_REPORT_ID 0x29
57#define DOUBLE_REPORT_ID 0xf7
Michael Poole128537c2010-02-06 12:24:36 -050058/* These definitions are not precise, but they're close enough. (Bits
59 * 0x03 seem to indicate the aspect ratio of the touch, bits 0x70 seem
60 * to be some kind of bit mask -- 0x20 may be a near-field reading,
61 * and 0x40 is actual contact, and 0x10 may be a start/stop or change
62 * indication.)
63 */
64#define TOUCH_STATE_MASK 0xf0
65#define TOUCH_STATE_NONE 0x00
66#define TOUCH_STATE_START 0x30
67#define TOUCH_STATE_DRAG 0x40
68
Chase Douglas0b778e72010-06-20 21:32:30 -040069#define SCROLL_ACCEL_DEFAULT 7
70
Chase Douglasa4622302010-08-31 21:56:23 -040071/* Single touch emulation should only begin when no touches are currently down.
72 * This is true when single_touch_id is equal to NO_TOUCHES. If multiple touches
73 * are down and the touch providing for single touch emulation is lifted,
74 * single_touch_id is equal to SINGLE_TOUCH_UP. While single touch emulation is
Lucas De Marchi25985ed2011-03-30 22:57:33 -030075 * occurring, single_touch_id corresponds with the tracking id of the touch used.
Chase Douglasa4622302010-08-31 21:56:23 -040076 */
77#define NO_TOUCHES -1
78#define SINGLE_TOUCH_UP -2
79
Chase Douglas4f6fdf02011-08-05 09:16:57 -070080/* Touch surface information. Dimension is in hundredths of a mm, min and max
81 * are in units. */
82#define MOUSE_DIMENSION_X (float)9056
83#define MOUSE_MIN_X -1100
84#define MOUSE_MAX_X 1258
85#define MOUSE_RES_X ((MOUSE_MAX_X - MOUSE_MIN_X) / (MOUSE_DIMENSION_X / 100))
86#define MOUSE_DIMENSION_Y (float)5152
87#define MOUSE_MIN_Y -1589
88#define MOUSE_MAX_Y 2047
89#define MOUSE_RES_Y ((MOUSE_MAX_Y - MOUSE_MIN_Y) / (MOUSE_DIMENSION_Y / 100))
90
91#define TRACKPAD_DIMENSION_X (float)13000
92#define TRACKPAD_MIN_X -2909
93#define TRACKPAD_MAX_X 3167
94#define TRACKPAD_RES_X \
95 ((TRACKPAD_MAX_X - TRACKPAD_MIN_X) / (TRACKPAD_DIMENSION_X / 100))
96#define TRACKPAD_DIMENSION_Y (float)11000
97#define TRACKPAD_MIN_Y -2456
98#define TRACKPAD_MAX_Y 2565
99#define TRACKPAD_RES_Y \
100 ((TRACKPAD_MAX_Y - TRACKPAD_MIN_Y) / (TRACKPAD_DIMENSION_Y / 100))
101
Michael Poole128537c2010-02-06 12:24:36 -0500102/**
103 * struct magicmouse_sc - Tracks Magic Mouse-specific data.
104 * @input: Input device through which we report events.
105 * @quirks: Currently unused.
Michael Poole128537c2010-02-06 12:24:36 -0500106 * @ntouches: Number of touches in most recent touch report.
107 * @scroll_accel: Number of consecutive scroll motions.
108 * @scroll_jiffies: Time of last scroll motion.
109 * @touches: Most recent data for a touch, indexed by tracking ID.
110 * @tracking_ids: Mapping of current touch input data to @touches.
111 */
112struct magicmouse_sc {
113 struct input_dev *input;
114 unsigned long quirks;
115
Michael Poole128537c2010-02-06 12:24:36 -0500116 int ntouches;
117 int scroll_accel;
118 unsigned long scroll_jiffies;
119
120 struct {
121 short x;
122 short y;
Chase Douglasc0426682010-06-20 21:32:31 -0400123 short scroll_x;
Michael Poole128537c2010-02-06 12:24:36 -0500124 short scroll_y;
125 u8 size;
126 } touches[16];
127 int tracking_ids[16];
Chase Douglasa4622302010-08-31 21:56:23 -0400128 int single_touch_id;
Michael Poole128537c2010-02-06 12:24:36 -0500129};
130
131static int magicmouse_firm_touch(struct magicmouse_sc *msc)
132{
133 int touch = -1;
134 int ii;
135
136 /* If there is only one "firm" touch, set touch to its
137 * tracking ID.
138 */
139 for (ii = 0; ii < msc->ntouches; ii++) {
140 int idx = msc->tracking_ids[ii];
141 if (msc->touches[idx].size < 8) {
142 /* Ignore this touch. */
143 } else if (touch >= 0) {
144 touch = -1;
145 break;
146 } else {
147 touch = idx;
148 }
149 }
150
151 return touch;
152}
153
154static void magicmouse_emit_buttons(struct magicmouse_sc *msc, int state)
155{
Michael Poole71b38bd2010-02-11 00:32:57 -0500156 int last_state = test_bit(BTN_LEFT, msc->input->key) << 0 |
157 test_bit(BTN_RIGHT, msc->input->key) << 1 |
158 test_bit(BTN_MIDDLE, msc->input->key) << 2;
Michael Poole128537c2010-02-06 12:24:36 -0500159
160 if (emulate_3button) {
161 int id;
162
163 /* If some button was pressed before, keep it held
164 * down. Otherwise, if there's exactly one firm
165 * touch, use that to override the mouse's guess.
166 */
167 if (state == 0) {
168 /* The button was released. */
169 } else if (last_state != 0) {
170 state = last_state;
171 } else if ((id = magicmouse_firm_touch(msc)) >= 0) {
172 int x = msc->touches[id].x;
173 if (x < middle_button_start)
174 state = 1;
175 else if (x > middle_button_stop)
176 state = 2;
177 else
178 state = 4;
179 } /* else: we keep the mouse's guess */
180
181 input_report_key(msc->input, BTN_MIDDLE, state & 4);
182 }
183
184 input_report_key(msc->input, BTN_LEFT, state & 1);
185 input_report_key(msc->input, BTN_RIGHT, state & 2);
186
187 if (state != last_state)
Chase Douglas0b778e72010-06-20 21:32:30 -0400188 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
Michael Poole128537c2010-02-06 12:24:36 -0500189}
190
191static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata)
192{
193 struct input_dev *input = msc->input;
Chase Douglasa4622302010-08-31 21:56:23 -0400194 int id, x, y, size, orientation, touch_major, touch_minor, state, down;
195
196 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
197 id = (tdata[6] << 2 | tdata[5] >> 6) & 0xf;
198 x = (tdata[1] << 28 | tdata[0] << 20) >> 20;
199 y = -((tdata[2] << 24 | tdata[1] << 16) >> 20);
200 size = tdata[5] & 0x3f;
201 orientation = (tdata[6] >> 2) - 32;
202 touch_major = tdata[3];
203 touch_minor = tdata[4];
204 state = tdata[7] & TOUCH_STATE_MASK;
205 down = state != TOUCH_STATE_NONE;
206 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
207 id = (tdata[7] << 2 | tdata[6] >> 6) & 0xf;
208 x = (tdata[1] << 27 | tdata[0] << 19) >> 19;
209 y = -((tdata[3] << 30 | tdata[2] << 22 | tdata[1] << 14) >> 19);
210 size = tdata[6] & 0x3f;
211 orientation = (tdata[7] >> 2) - 32;
212 touch_major = tdata[4];
213 touch_minor = tdata[5];
214 state = tdata[8] & TOUCH_STATE_MASK;
215 down = state != TOUCH_STATE_NONE;
216 }
Michael Poole128537c2010-02-06 12:24:36 -0500217
218 /* Store tracking ID and other fields. */
219 msc->tracking_ids[raw_id] = id;
220 msc->touches[id].x = x;
221 msc->touches[id].y = y;
Chase Douglas6de048b2010-08-31 21:56:20 -0400222 msc->touches[id].size = size;
Michael Poole128537c2010-02-06 12:24:36 -0500223
224 /* If requested, emulate a scroll wheel by detecting small
Chase Douglasef566d32010-06-02 10:28:25 -0400225 * vertical touch motions.
Michael Poole128537c2010-02-06 12:24:36 -0500226 */
Chase Douglasef566d32010-06-02 10:28:25 -0400227 if (emulate_scroll_wheel) {
Michael Poole128537c2010-02-06 12:24:36 -0500228 unsigned long now = jiffies;
Chase Douglasc0426682010-06-20 21:32:31 -0400229 int step_x = msc->touches[id].scroll_x - x;
230 int step_y = msc->touches[id].scroll_y - y;
Michael Poole128537c2010-02-06 12:24:36 -0500231
Michael Poole128537c2010-02-06 12:24:36 -0500232 /* Calculate and apply the scroll motion. */
Chase Douglas6de048b2010-08-31 21:56:20 -0400233 switch (state) {
Michael Poole128537c2010-02-06 12:24:36 -0500234 case TOUCH_STATE_START:
Chase Douglasc0426682010-06-20 21:32:31 -0400235 msc->touches[id].scroll_x = x;
Michael Poole128537c2010-02-06 12:24:36 -0500236 msc->touches[id].scroll_y = y;
Chase Douglas0b778e72010-06-20 21:32:30 -0400237
238 /* Reset acceleration after half a second. */
239 if (scroll_acceleration && time_before(now,
240 msc->scroll_jiffies + HZ / 2))
241 msc->scroll_accel = max_t(int,
242 msc->scroll_accel - 1, 1);
243 else
244 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
245
Michael Poole128537c2010-02-06 12:24:36 -0500246 break;
247 case TOUCH_STATE_DRAG:
Chase Douglasc0426682010-06-20 21:32:31 -0400248 step_x /= (64 - (int)scroll_speed) * msc->scroll_accel;
249 if (step_x != 0) {
250 msc->touches[id].scroll_x -= step_x *
Chase Douglas0b778e72010-06-20 21:32:30 -0400251 (64 - scroll_speed) * msc->scroll_accel;
Michael Poole128537c2010-02-06 12:24:36 -0500252 msc->scroll_jiffies = now;
Chase Douglasc0426682010-06-20 21:32:31 -0400253 input_report_rel(input, REL_HWHEEL, -step_x);
254 }
255
256 step_y /= (64 - (int)scroll_speed) * msc->scroll_accel;
257 if (step_y != 0) {
258 msc->touches[id].scroll_y -= step_y *
259 (64 - scroll_speed) * msc->scroll_accel;
260 msc->scroll_jiffies = now;
261 input_report_rel(input, REL_WHEEL, step_y);
Michael Poole128537c2010-02-06 12:24:36 -0500262 }
263 break;
264 }
265 }
266
Chase Douglasa4622302010-08-31 21:56:23 -0400267 if (down) {
268 msc->ntouches++;
269 if (msc->single_touch_id == NO_TOUCHES)
270 msc->single_touch_id = id;
271 } else if (msc->single_touch_id == id)
272 msc->single_touch_id = SINGLE_TOUCH_UP;
273
Michael Poole128537c2010-02-06 12:24:36 -0500274 /* Generate the input events for this touch. */
Yufeng Shen62643072012-07-04 12:14:43 -0400275 if (down) {
Michael Poole128537c2010-02-06 12:24:36 -0500276 input_report_abs(input, ABS_MT_TRACKING_ID, id);
Henrik Rydberg921990b2010-08-31 21:56:24 -0400277 input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major << 2);
278 input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor << 2);
Henrik Rydberg2d9ca4e2011-03-09 18:38:57 +0100279 input_report_abs(input, ABS_MT_ORIENTATION, -orientation);
Michael Poole128537c2010-02-06 12:24:36 -0500280 input_report_abs(input, ABS_MT_POSITION_X, x);
281 input_report_abs(input, ABS_MT_POSITION_Y, y);
282
Chase Douglasa4622302010-08-31 21:56:23 -0400283 if (report_undeciphered) {
284 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
285 input_event(input, EV_MSC, MSC_RAW, tdata[7]);
286 else /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
287 input_event(input, EV_MSC, MSC_RAW, tdata[8]);
288 }
Michael Poole128537c2010-02-06 12:24:36 -0500289
290 input_mt_sync(input);
291 }
292}
293
294static int magicmouse_raw_event(struct hid_device *hdev,
295 struct hid_report *report, u8 *data, int size)
296{
297 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
298 struct input_dev *input = msc->input;
Chase Douglasa4622302010-08-31 21:56:23 -0400299 int x = 0, y = 0, ii, clicks = 0, npoints;
Michael Poole128537c2010-02-06 12:24:36 -0500300
301 switch (data[0]) {
Chase Douglasa4622302010-08-31 21:56:23 -0400302 case TRACKPAD_REPORT_ID:
303 /* Expect four bytes of prefix, and N*9 bytes of touch data. */
304 if (size < 4 || ((size - 4) % 9) != 0)
305 return 0;
306 npoints = (size - 4) / 9;
307 msc->ntouches = 0;
308 for (ii = 0; ii < npoints; ii++)
309 magicmouse_emit_touch(msc, ii, data + ii * 9 + 4);
310
311 /* We don't need an MT sync here because trackpad emits a
312 * BTN_TOUCH event in a new frame when all touches are released.
313 */
314 if (msc->ntouches == 0)
315 msc->single_touch_id = NO_TOUCHES;
316
317 clicks = data[1];
318
319 /* The following bits provide a device specific timestamp. They
320 * are unused here.
321 *
322 * ts = data[1] >> 6 | data[2] << 2 | data[3] << 10;
323 */
324 break;
325 case MOUSE_REPORT_ID:
Michael Poole128537c2010-02-06 12:24:36 -0500326 /* Expect six bytes of prefix, and N*8 bytes of touch data. */
327 if (size < 6 || ((size - 6) % 8) != 0)
328 return 0;
Chase Douglas0228db72010-09-02 16:49:52 +0200329 npoints = (size - 6) / 8;
330 msc->ntouches = 0;
331 for (ii = 0; ii < npoints; ii++)
Michael Poole128537c2010-02-06 12:24:36 -0500332 magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
Chase Douglase3612e82010-07-05 09:57:52 -0400333
Yufeng Shen62643072012-07-04 12:14:43 -0400334 if (msc->ntouches == 0)
Chase Douglas0228db72010-09-02 16:49:52 +0200335 input_mt_sync(input);
Chase Douglase3612e82010-07-05 09:57:52 -0400336
Michael Poole128537c2010-02-06 12:24:36 -0500337 /* When emulating three-button mode, it is important
338 * to have the current touch information before
339 * generating a click event.
340 */
Michael Poole7d876c02010-07-05 10:50:09 -0400341 x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22;
342 y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22;
Michael Poole128537c2010-02-06 12:24:36 -0500343 clicks = data[3];
Chase Douglasc61b7ce2010-09-02 16:51:54 +0200344
345 /* The following bits provide a device specific timestamp. They
346 * are unused here.
347 *
348 * ts = data[3] >> 6 | data[4] << 2 | data[5] << 10;
349 */
Michael Poole128537c2010-02-06 12:24:36 -0500350 break;
Chase Douglasa4622302010-08-31 21:56:23 -0400351 case DOUBLE_REPORT_ID:
352 /* Sometimes the trackpad sends two touch reports in one
353 * packet.
354 */
355 magicmouse_raw_event(hdev, report, data + 2, data[1]);
356 magicmouse_raw_event(hdev, report, data + 2 + data[1],
357 size - 2 - data[1]);
358 break;
Michael Poole128537c2010-02-06 12:24:36 -0500359 default:
360 return 0;
361 }
362
Chase Douglasa4622302010-08-31 21:56:23 -0400363 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
364 magicmouse_emit_buttons(msc, clicks & 3);
365 input_report_rel(input, REL_X, x);
366 input_report_rel(input, REL_Y, y);
367 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
368 input_report_key(input, BTN_MOUSE, clicks & 1);
369 input_report_key(input, BTN_TOUCH, msc->ntouches > 0);
370 input_report_key(input, BTN_TOOL_FINGER, msc->ntouches == 1);
371 input_report_key(input, BTN_TOOL_DOUBLETAP, msc->ntouches == 2);
372 input_report_key(input, BTN_TOOL_TRIPLETAP, msc->ntouches == 3);
373 input_report_key(input, BTN_TOOL_QUADTAP, msc->ntouches == 4);
374 if (msc->single_touch_id >= 0) {
375 input_report_abs(input, ABS_X,
376 msc->touches[msc->single_touch_id].x);
377 input_report_abs(input, ABS_Y,
378 msc->touches[msc->single_touch_id].y);
379 }
380 }
381
Michael Poole128537c2010-02-06 12:24:36 -0500382 input_sync(input);
383 return 1;
384}
385
Michael Poole128537c2010-02-06 12:24:36 -0500386static void magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev)
387{
Michael Poole71b38bd2010-02-11 00:32:57 -0500388 __set_bit(EV_KEY, input->evbit);
Michael Poole128537c2010-02-06 12:24:36 -0500389
Chase Douglasa4622302010-08-31 21:56:23 -0400390 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
391 __set_bit(BTN_LEFT, input->keybit);
392 __set_bit(BTN_RIGHT, input->keybit);
393 if (emulate_3button)
394 __set_bit(BTN_MIDDLE, input->keybit);
395
396 __set_bit(EV_REL, input->evbit);
397 __set_bit(REL_X, input->relbit);
398 __set_bit(REL_Y, input->relbit);
399 if (emulate_scroll_wheel) {
400 __set_bit(REL_WHEEL, input->relbit);
401 __set_bit(REL_HWHEEL, input->relbit);
402 }
403 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
Daniel van Vugtbca62142011-10-14 13:39:34 +0800404 /* input->keybit is initialized with incorrect button info
405 * for Magic Trackpad. There really is only one physical
406 * button (BTN_LEFT == BTN_MOUSE). Make sure we don't
407 * advertise buttons that don't exist...
408 */
409 __clear_bit(BTN_RIGHT, input->keybit);
410 __clear_bit(BTN_MIDDLE, input->keybit);
Chase Douglasa4622302010-08-31 21:56:23 -0400411 __set_bit(BTN_MOUSE, input->keybit);
412 __set_bit(BTN_TOOL_FINGER, input->keybit);
413 __set_bit(BTN_TOOL_DOUBLETAP, input->keybit);
414 __set_bit(BTN_TOOL_TRIPLETAP, input->keybit);
415 __set_bit(BTN_TOOL_QUADTAP, input->keybit);
416 __set_bit(BTN_TOUCH, input->keybit);
Chase Douglas503f7d52012-02-13 20:12:31 -0800417 __set_bit(INPUT_PROP_POINTER, input->propbit);
418 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
Chase Douglasc0426682010-06-20 21:32:31 -0400419 }
Michael Poole128537c2010-02-06 12:24:36 -0500420
Michael Poole128537c2010-02-06 12:24:36 -0500421
Yufeng Shen62643072012-07-04 12:14:43 -0400422 __set_bit(EV_ABS, input->evbit);
Chase Douglasa4622302010-08-31 21:56:23 -0400423
Yufeng Shen62643072012-07-04 12:14:43 -0400424 input_set_abs_params(input, ABS_MT_TRACKING_ID, 0, 15, 0, 0);
425 input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255 << 2,
426 4, 0);
427 input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255 << 2,
428 4, 0);
429 input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0);
Chase Douglas4f6fdf02011-08-05 09:16:57 -0700430
Yufeng Shen62643072012-07-04 12:14:43 -0400431 /* Note: Touch Y position from the device is inverted relative
432 * to how pointer motion is reported (and relative to how USB
433 * HID recommends the coordinates work). This driver keeps
434 * the origin at the same position, and just uses the additive
435 * inverse of the reported Y.
436 */
437 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
438 input_set_abs_params(input, ABS_MT_POSITION_X,
439 MOUSE_MIN_X, MOUSE_MAX_X, 4, 0);
440 input_set_abs_params(input, ABS_MT_POSITION_Y,
441 MOUSE_MIN_Y, MOUSE_MAX_Y, 4, 0);
Chase Douglas4f6fdf02011-08-05 09:16:57 -0700442
Yufeng Shen62643072012-07-04 12:14:43 -0400443 input_abs_set_res(input, ABS_MT_POSITION_X,
444 MOUSE_RES_X);
445 input_abs_set_res(input, ABS_MT_POSITION_Y,
446 MOUSE_RES_Y);
447 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
448 input_set_abs_params(input, ABS_X, TRACKPAD_MIN_X,
449 TRACKPAD_MAX_X, 4, 0);
450 input_set_abs_params(input, ABS_Y, TRACKPAD_MIN_Y,
451 TRACKPAD_MAX_Y, 4, 0);
452 input_set_abs_params(input, ABS_MT_POSITION_X,
453 TRACKPAD_MIN_X, TRACKPAD_MAX_X, 4, 0);
454 input_set_abs_params(input, ABS_MT_POSITION_Y,
455 TRACKPAD_MIN_Y, TRACKPAD_MAX_Y, 4, 0);
Chase Douglascc5e0f02011-04-01 17:03:39 -0400456
Yufeng Shen62643072012-07-04 12:14:43 -0400457 input_abs_set_res(input, ABS_X, TRACKPAD_RES_X);
458 input_abs_set_res(input, ABS_Y, TRACKPAD_RES_Y);
459 input_abs_set_res(input, ABS_MT_POSITION_X,
460 TRACKPAD_RES_X);
461 input_abs_set_res(input, ABS_MT_POSITION_Y,
462 TRACKPAD_RES_Y);
Michael Poole128537c2010-02-06 12:24:36 -0500463 }
464
Yufeng Shen62643072012-07-04 12:14:43 -0400465 input_set_events_per_packet(input, 60);
466
Michael Poole128537c2010-02-06 12:24:36 -0500467 if (report_undeciphered) {
Michael Poole71b38bd2010-02-11 00:32:57 -0500468 __set_bit(EV_MSC, input->evbit);
469 __set_bit(MSC_RAW, input->mscbit);
Michael Poole128537c2010-02-06 12:24:36 -0500470 }
471}
472
Michael Poole64eb1052010-09-24 13:58:18 +0200473static int magicmouse_input_mapping(struct hid_device *hdev,
474 struct hid_input *hi, struct hid_field *field,
475 struct hid_usage *usage, unsigned long **bit, int *max)
476{
477 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
478
479 if (!msc->input)
480 msc->input = hi->input;
481
Chase Douglas6a66bbd2010-12-08 15:08:04 -0800482 /* Magic Trackpad does not give relative data after switching to MT */
483 if (hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD &&
484 field->flags & HID_MAIN_ITEM_RELATIVE)
485 return -1;
486
Michael Poole64eb1052010-09-24 13:58:18 +0200487 return 0;
488}
489
Michael Poole128537c2010-02-06 12:24:36 -0500490static int magicmouse_probe(struct hid_device *hdev,
491 const struct hid_device_id *id)
492{
Chase Douglas07735902010-08-31 21:56:19 -0400493 __u8 feature[] = { 0xd7, 0x01 };
Michael Poole128537c2010-02-06 12:24:36 -0500494 struct magicmouse_sc *msc;
495 struct hid_report *report;
496 int ret;
497
498 msc = kzalloc(sizeof(*msc), GFP_KERNEL);
499 if (msc == NULL) {
Joe Perches4291ee32010-12-09 19:29:03 -0800500 hid_err(hdev, "can't alloc magicmouse descriptor\n");
Michael Poole128537c2010-02-06 12:24:36 -0500501 return -ENOMEM;
502 }
503
Chase Douglas0b778e72010-06-20 21:32:30 -0400504 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
505
Michael Poole128537c2010-02-06 12:24:36 -0500506 msc->quirks = id->driver_data;
507 hid_set_drvdata(hdev, msc);
508
Chase Douglasa4622302010-08-31 21:56:23 -0400509 msc->single_touch_id = NO_TOUCHES;
510
Michael Poole128537c2010-02-06 12:24:36 -0500511 ret = hid_parse(hdev);
512 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800513 hid_err(hdev, "magicmouse hid parse failed\n");
Michael Poole128537c2010-02-06 12:24:36 -0500514 goto err_free;
515 }
516
Jiri Kosina23d02112010-05-12 16:01:26 +0200517 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
Michael Poole128537c2010-02-06 12:24:36 -0500518 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800519 hid_err(hdev, "magicmouse hw start failed\n");
Michael Poole128537c2010-02-06 12:24:36 -0500520 goto err_free;
521 }
522
Michael Poole64eb1052010-09-24 13:58:18 +0200523 /* We do this after hid-input is done parsing reports so that
524 * hid-input uses the most natural button and axis IDs.
525 */
526 if (msc->input)
527 magicmouse_setup_input(msc->input, hdev);
Jiri Kosina23d02112010-05-12 16:01:26 +0200528
Chase Douglasa4622302010-08-31 21:56:23 -0400529 if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
530 report = hid_register_report(hdev, HID_INPUT_REPORT,
531 MOUSE_REPORT_ID);
532 else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
533 report = hid_register_report(hdev, HID_INPUT_REPORT,
534 TRACKPAD_REPORT_ID);
535 report = hid_register_report(hdev, HID_INPUT_REPORT,
536 DOUBLE_REPORT_ID);
537 }
538
Michael Poole128537c2010-02-06 12:24:36 -0500539 if (!report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800540 hid_err(hdev, "unable to register touch report\n");
Michael Poole128537c2010-02-06 12:24:36 -0500541 ret = -ENOMEM;
Michael Poole71b38bd2010-02-11 00:32:57 -0500542 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500543 }
544 report->size = 6;
545
Jiri Kosina35d851d2011-08-25 14:21:37 +0200546 /*
547 * Some devices repond with 'invalid report id' when feature
548 * report switching it into multitouch mode is sent to it.
549 *
550 * This results in -EIO from the _raw low-level transport callback,
551 * but there seems to be no other way of switching the mode.
552 * Thus the super-ugly hacky success check below.
553 */
Chase Douglas07735902010-08-31 21:56:19 -0400554 ret = hdev->hid_output_raw_report(hdev, feature, sizeof(feature),
Michael Poole128537c2010-02-06 12:24:36 -0500555 HID_FEATURE_REPORT);
Jiri Kosina35d851d2011-08-25 14:21:37 +0200556 if (ret != -EIO && ret != sizeof(feature)) {
Joe Perches4291ee32010-12-09 19:29:03 -0800557 hid_err(hdev, "unable to request touch data (%d)\n", ret);
Michael Poole71b38bd2010-02-11 00:32:57 -0500558 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500559 }
560
Michael Poole128537c2010-02-06 12:24:36 -0500561 return 0;
Michael Poole71b38bd2010-02-11 00:32:57 -0500562err_stop_hw:
563 hid_hw_stop(hdev);
564err_free:
Michael Poole128537c2010-02-06 12:24:36 -0500565 kfree(msc);
566 return ret;
567}
568
569static void magicmouse_remove(struct hid_device *hdev)
570{
Michael Poole28918c22010-03-09 06:47:35 -0500571 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
572
Michael Poole128537c2010-02-06 12:24:36 -0500573 hid_hw_stop(hdev);
Michael Poole28918c22010-03-09 06:47:35 -0500574 kfree(msc);
Michael Poole128537c2010-02-06 12:24:36 -0500575}
576
577static const struct hid_device_id magic_mice[] = {
Chase Douglasa4622302010-08-31 21:56:23 -0400578 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
579 USB_DEVICE_ID_APPLE_MAGICMOUSE), .driver_data = 0 },
580 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
581 USB_DEVICE_ID_APPLE_MAGICTRACKPAD), .driver_data = 0 },
Michael Poole128537c2010-02-06 12:24:36 -0500582 { }
583};
584MODULE_DEVICE_TABLE(hid, magic_mice);
585
586static struct hid_driver magicmouse_driver = {
587 .name = "magicmouse",
588 .id_table = magic_mice,
589 .probe = magicmouse_probe,
590 .remove = magicmouse_remove,
591 .raw_event = magicmouse_raw_event,
Michael Poole64eb1052010-09-24 13:58:18 +0200592 .input_mapping = magicmouse_input_mapping,
Michael Poole128537c2010-02-06 12:24:36 -0500593};
594
595static int __init magicmouse_init(void)
596{
597 int ret;
598
599 ret = hid_register_driver(&magicmouse_driver);
600 if (ret)
Joe Perches4291ee32010-12-09 19:29:03 -0800601 pr_err("can't register magicmouse driver\n");
Michael Poole128537c2010-02-06 12:24:36 -0500602
603 return ret;
604}
605
606static void __exit magicmouse_exit(void)
607{
608 hid_unregister_driver(&magicmouse_driver);
609}
610
611module_init(magicmouse_init);
612module_exit(magicmouse_exit);
613MODULE_LICENSE("GPL");