blob: 8791a084693e6afceb5946c44afa6f53723c2861 [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
15#include <linux/device.h>
16#include <linux/hid.h>
17#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Michael Poole128537c2010-02-06 12:24:36 -050019#include <linux/usb.h>
20
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;
35static int param_set_scroll_speed(const char *val, struct kernel_param *kp) {
36 unsigned long speed;
37 if (!val || strict_strtoul(val, 0, &speed) || speed > 63)
38 return -EINVAL;
39 scroll_speed = speed;
40 return 0;
41}
42module_param_call(scroll_speed, param_set_scroll_speed, param_get_uint, &scroll_speed, 0644);
43MODULE_PARM_DESC(scroll_speed, "Scroll speed, value from 0 (slow) to 63 (fast)");
44
Chase Douglas9846f352010-06-02 10:28:27 -040045static bool scroll_acceleration = false;
46module_param(scroll_acceleration, bool, 0644);
47MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events");
48
Michael Poole71b38bd2010-02-11 00:32:57 -050049static bool report_touches = true;
Michael Poole128537c2010-02-06 12:24:36 -050050module_param(report_touches, bool, 0644);
51MODULE_PARM_DESC(report_touches, "Emit touch records (otherwise, only use them for emulation)");
52
Michael Poole71b38bd2010-02-11 00:32:57 -050053static bool report_undeciphered;
Michael Poole128537c2010-02-06 12:24:36 -050054module_param(report_undeciphered, bool, 0644);
55MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event");
56
Chase Douglasa4622302010-08-31 21:56:23 -040057#define TRACKPAD_REPORT_ID 0x28
58#define MOUSE_REPORT_ID 0x29
59#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 Douglasa4622302010-08-31 21:56:23 -040073/* Single touch emulation should only begin when no touches are currently down.
74 * This is true when single_touch_id is equal to NO_TOUCHES. If multiple touches
75 * are down and the touch providing for single touch emulation is lifted,
76 * single_touch_id is equal to SINGLE_TOUCH_UP. While single touch emulation is
77 * occuring, single_touch_id corresponds with the tracking id of the touch used.
78 */
79#define NO_TOUCHES -1
80#define SINGLE_TOUCH_UP -2
81
Michael Poole128537c2010-02-06 12:24:36 -050082/**
83 * struct magicmouse_sc - Tracks Magic Mouse-specific data.
84 * @input: Input device through which we report events.
85 * @quirks: Currently unused.
Michael Poole128537c2010-02-06 12:24:36 -050086 * @ntouches: Number of touches in most recent touch report.
87 * @scroll_accel: Number of consecutive scroll motions.
88 * @scroll_jiffies: Time of last scroll motion.
89 * @touches: Most recent data for a touch, indexed by tracking ID.
90 * @tracking_ids: Mapping of current touch input data to @touches.
91 */
92struct magicmouse_sc {
93 struct input_dev *input;
94 unsigned long quirks;
95
Michael Poole128537c2010-02-06 12:24:36 -050096 int ntouches;
97 int scroll_accel;
98 unsigned long scroll_jiffies;
99
100 struct {
101 short x;
102 short y;
Chase Douglasc0426682010-06-20 21:32:31 -0400103 short scroll_x;
Michael Poole128537c2010-02-06 12:24:36 -0500104 short scroll_y;
105 u8 size;
106 } touches[16];
107 int tracking_ids[16];
Chase Douglasa4622302010-08-31 21:56:23 -0400108 int single_touch_id;
Michael Poole128537c2010-02-06 12:24:36 -0500109};
110
111static int magicmouse_firm_touch(struct magicmouse_sc *msc)
112{
113 int touch = -1;
114 int ii;
115
116 /* If there is only one "firm" touch, set touch to its
117 * tracking ID.
118 */
119 for (ii = 0; ii < msc->ntouches; ii++) {
120 int idx = msc->tracking_ids[ii];
121 if (msc->touches[idx].size < 8) {
122 /* Ignore this touch. */
123 } else if (touch >= 0) {
124 touch = -1;
125 break;
126 } else {
127 touch = idx;
128 }
129 }
130
131 return touch;
132}
133
134static void magicmouse_emit_buttons(struct magicmouse_sc *msc, int state)
135{
Michael Poole71b38bd2010-02-11 00:32:57 -0500136 int last_state = test_bit(BTN_LEFT, msc->input->key) << 0 |
137 test_bit(BTN_RIGHT, msc->input->key) << 1 |
138 test_bit(BTN_MIDDLE, msc->input->key) << 2;
Michael Poole128537c2010-02-06 12:24:36 -0500139
140 if (emulate_3button) {
141 int id;
142
143 /* If some button was pressed before, keep it held
144 * down. Otherwise, if there's exactly one firm
145 * touch, use that to override the mouse's guess.
146 */
147 if (state == 0) {
148 /* The button was released. */
149 } else if (last_state != 0) {
150 state = last_state;
151 } else if ((id = magicmouse_firm_touch(msc)) >= 0) {
152 int x = msc->touches[id].x;
153 if (x < middle_button_start)
154 state = 1;
155 else if (x > middle_button_stop)
156 state = 2;
157 else
158 state = 4;
159 } /* else: we keep the mouse's guess */
160
161 input_report_key(msc->input, BTN_MIDDLE, state & 4);
162 }
163
164 input_report_key(msc->input, BTN_LEFT, state & 1);
165 input_report_key(msc->input, BTN_RIGHT, state & 2);
166
167 if (state != last_state)
Chase Douglas0b778e72010-06-20 21:32:30 -0400168 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
Michael Poole128537c2010-02-06 12:24:36 -0500169}
170
171static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata)
172{
173 struct input_dev *input = msc->input;
Chase Douglasa4622302010-08-31 21:56:23 -0400174 int id, x, y, size, orientation, touch_major, touch_minor, state, down;
175
176 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
177 id = (tdata[6] << 2 | tdata[5] >> 6) & 0xf;
178 x = (tdata[1] << 28 | tdata[0] << 20) >> 20;
179 y = -((tdata[2] << 24 | tdata[1] << 16) >> 20);
180 size = tdata[5] & 0x3f;
181 orientation = (tdata[6] >> 2) - 32;
182 touch_major = tdata[3];
183 touch_minor = tdata[4];
184 state = tdata[7] & TOUCH_STATE_MASK;
185 down = state != TOUCH_STATE_NONE;
186 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
187 id = (tdata[7] << 2 | tdata[6] >> 6) & 0xf;
188 x = (tdata[1] << 27 | tdata[0] << 19) >> 19;
189 y = -((tdata[3] << 30 | tdata[2] << 22 | tdata[1] << 14) >> 19);
190 size = tdata[6] & 0x3f;
191 orientation = (tdata[7] >> 2) - 32;
192 touch_major = tdata[4];
193 touch_minor = tdata[5];
194 state = tdata[8] & TOUCH_STATE_MASK;
195 down = state != TOUCH_STATE_NONE;
196 }
Michael Poole128537c2010-02-06 12:24:36 -0500197
198 /* Store tracking ID and other fields. */
199 msc->tracking_ids[raw_id] = id;
200 msc->touches[id].x = x;
201 msc->touches[id].y = y;
Chase Douglas6de048b2010-08-31 21:56:20 -0400202 msc->touches[id].size = size;
Michael Poole128537c2010-02-06 12:24:36 -0500203
204 /* If requested, emulate a scroll wheel by detecting small
Chase Douglasef566d32010-06-02 10:28:25 -0400205 * vertical touch motions.
Michael Poole128537c2010-02-06 12:24:36 -0500206 */
Chase Douglasef566d32010-06-02 10:28:25 -0400207 if (emulate_scroll_wheel) {
Michael Poole128537c2010-02-06 12:24:36 -0500208 unsigned long now = jiffies;
Chase Douglasc0426682010-06-20 21:32:31 -0400209 int step_x = msc->touches[id].scroll_x - x;
210 int step_y = msc->touches[id].scroll_y - y;
Michael Poole128537c2010-02-06 12:24:36 -0500211
Michael Poole128537c2010-02-06 12:24:36 -0500212 /* Calculate and apply the scroll motion. */
Chase Douglas6de048b2010-08-31 21:56:20 -0400213 switch (state) {
Michael Poole128537c2010-02-06 12:24:36 -0500214 case TOUCH_STATE_START:
Chase Douglasc0426682010-06-20 21:32:31 -0400215 msc->touches[id].scroll_x = x;
Michael Poole128537c2010-02-06 12:24:36 -0500216 msc->touches[id].scroll_y = y;
Chase Douglas0b778e72010-06-20 21:32:30 -0400217
218 /* Reset acceleration after half a second. */
219 if (scroll_acceleration && time_before(now,
220 msc->scroll_jiffies + HZ / 2))
221 msc->scroll_accel = max_t(int,
222 msc->scroll_accel - 1, 1);
223 else
224 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
225
Michael Poole128537c2010-02-06 12:24:36 -0500226 break;
227 case TOUCH_STATE_DRAG:
Chase Douglasc0426682010-06-20 21:32:31 -0400228 step_x /= (64 - (int)scroll_speed) * msc->scroll_accel;
229 if (step_x != 0) {
230 msc->touches[id].scroll_x -= step_x *
Chase Douglas0b778e72010-06-20 21:32:30 -0400231 (64 - scroll_speed) * msc->scroll_accel;
Michael Poole128537c2010-02-06 12:24:36 -0500232 msc->scroll_jiffies = now;
Chase Douglasc0426682010-06-20 21:32:31 -0400233 input_report_rel(input, REL_HWHEEL, -step_x);
234 }
235
236 step_y /= (64 - (int)scroll_speed) * msc->scroll_accel;
237 if (step_y != 0) {
238 msc->touches[id].scroll_y -= step_y *
239 (64 - scroll_speed) * msc->scroll_accel;
240 msc->scroll_jiffies = now;
241 input_report_rel(input, REL_WHEEL, step_y);
Michael Poole128537c2010-02-06 12:24:36 -0500242 }
243 break;
244 }
245 }
246
Chase Douglasa4622302010-08-31 21:56:23 -0400247 if (down) {
248 msc->ntouches++;
249 if (msc->single_touch_id == NO_TOUCHES)
250 msc->single_touch_id = id;
251 } else if (msc->single_touch_id == id)
252 msc->single_touch_id = SINGLE_TOUCH_UP;
253
Michael Poole128537c2010-02-06 12:24:36 -0500254 /* Generate the input events for this touch. */
Chase Douglase3612e82010-07-05 09:57:52 -0400255 if (report_touches && down) {
Michael Poole128537c2010-02-06 12:24:36 -0500256 input_report_abs(input, ABS_MT_TRACKING_ID, id);
Chase Douglas6de048b2010-08-31 21:56:20 -0400257 input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major);
258 input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor);
Michael Poole128537c2010-02-06 12:24:36 -0500259 input_report_abs(input, ABS_MT_ORIENTATION, orientation);
260 input_report_abs(input, ABS_MT_POSITION_X, x);
261 input_report_abs(input, ABS_MT_POSITION_Y, y);
262
Chase Douglasa4622302010-08-31 21:56:23 -0400263 if (report_undeciphered) {
264 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
265 input_event(input, EV_MSC, MSC_RAW, tdata[7]);
266 else /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
267 input_event(input, EV_MSC, MSC_RAW, tdata[8]);
268 }
Michael Poole128537c2010-02-06 12:24:36 -0500269
270 input_mt_sync(input);
271 }
272}
273
274static int magicmouse_raw_event(struct hid_device *hdev,
275 struct hid_report *report, u8 *data, int size)
276{
277 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
278 struct input_dev *input = msc->input;
Chase Douglasa4622302010-08-31 21:56:23 -0400279 int x = 0, y = 0, ii, clicks = 0, npoints;
Michael Poole128537c2010-02-06 12:24:36 -0500280
281 switch (data[0]) {
282 case 0x10:
283 if (size != 6)
284 return 0;
285 x = (__s16)(data[2] | data[3] << 8);
286 y = (__s16)(data[4] | data[5] << 8);
287 clicks = data[1];
288 break;
Chase Douglasa4622302010-08-31 21:56:23 -0400289 case TRACKPAD_REPORT_ID:
290 /* Expect four bytes of prefix, and N*9 bytes of touch data. */
291 if (size < 4 || ((size - 4) % 9) != 0)
292 return 0;
293 npoints = (size - 4) / 9;
294 msc->ntouches = 0;
295 for (ii = 0; ii < npoints; ii++)
296 magicmouse_emit_touch(msc, ii, data + ii * 9 + 4);
297
298 /* We don't need an MT sync here because trackpad emits a
299 * BTN_TOUCH event in a new frame when all touches are released.
300 */
301 if (msc->ntouches == 0)
302 msc->single_touch_id = NO_TOUCHES;
303
304 clicks = data[1];
305
306 /* The following bits provide a device specific timestamp. They
307 * are unused here.
308 *
309 * ts = data[1] >> 6 | data[2] << 2 | data[3] << 10;
310 */
311 break;
312 case MOUSE_REPORT_ID:
Michael Poole128537c2010-02-06 12:24:36 -0500313 /* Expect six bytes of prefix, and N*8 bytes of touch data. */
314 if (size < 6 || ((size - 6) % 8) != 0)
315 return 0;
Chase Douglas0228db72010-09-02 16:49:52 +0200316 npoints = (size - 6) / 8;
317 msc->ntouches = 0;
318 for (ii = 0; ii < npoints; ii++)
Michael Poole128537c2010-02-06 12:24:36 -0500319 magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
Chase Douglase3612e82010-07-05 09:57:52 -0400320
Chase Douglas0228db72010-09-02 16:49:52 +0200321 if (report_touches && msc->ntouches == 0)
322 input_mt_sync(input);
Chase Douglase3612e82010-07-05 09:57:52 -0400323
Michael Poole128537c2010-02-06 12:24:36 -0500324 /* When emulating three-button mode, it is important
325 * to have the current touch information before
326 * generating a click event.
327 */
Michael Poole7d876c02010-07-05 10:50:09 -0400328 x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22;
329 y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22;
Michael Poole128537c2010-02-06 12:24:36 -0500330 clicks = data[3];
Chase Douglasc61b7ce2010-09-02 16:51:54 +0200331
332 /* The following bits provide a device specific timestamp. They
333 * are unused here.
334 *
335 * ts = data[3] >> 6 | data[4] << 2 | data[5] << 10;
336 */
Michael Poole128537c2010-02-06 12:24:36 -0500337 break;
Chase Douglasa4622302010-08-31 21:56:23 -0400338 case DOUBLE_REPORT_ID:
339 /* Sometimes the trackpad sends two touch reports in one
340 * packet.
341 */
342 magicmouse_raw_event(hdev, report, data + 2, data[1]);
343 magicmouse_raw_event(hdev, report, data + 2 + data[1],
344 size - 2 - data[1]);
345 break;
Michael Poole128537c2010-02-06 12:24:36 -0500346 case 0x20: /* Theoretically battery status (0-100), but I have
347 * never seen it -- maybe it is only upon request.
348 */
349 case 0x60: /* Unknown, maybe laser on/off. */
350 case 0x61: /* Laser reflection status change.
351 * data[1]: 0 = spotted, 1 = lost
352 */
353 default:
354 return 0;
355 }
356
Chase Douglasa4622302010-08-31 21:56:23 -0400357 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
358 magicmouse_emit_buttons(msc, clicks & 3);
359 input_report_rel(input, REL_X, x);
360 input_report_rel(input, REL_Y, y);
361 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
362 input_report_key(input, BTN_MOUSE, clicks & 1);
363 input_report_key(input, BTN_TOUCH, msc->ntouches > 0);
364 input_report_key(input, BTN_TOOL_FINGER, msc->ntouches == 1);
365 input_report_key(input, BTN_TOOL_DOUBLETAP, msc->ntouches == 2);
366 input_report_key(input, BTN_TOOL_TRIPLETAP, msc->ntouches == 3);
367 input_report_key(input, BTN_TOOL_QUADTAP, msc->ntouches == 4);
368 if (msc->single_touch_id >= 0) {
369 input_report_abs(input, ABS_X,
370 msc->touches[msc->single_touch_id].x);
371 input_report_abs(input, ABS_Y,
372 msc->touches[msc->single_touch_id].y);
373 }
374 }
375
Michael Poole128537c2010-02-06 12:24:36 -0500376 input_sync(input);
377 return 1;
378}
379
380static int magicmouse_input_open(struct input_dev *dev)
381{
382 struct hid_device *hid = input_get_drvdata(dev);
383
384 return hid->ll_driver->open(hid);
385}
386
387static void magicmouse_input_close(struct input_dev *dev)
388{
389 struct hid_device *hid = input_get_drvdata(dev);
390
391 hid->ll_driver->close(hid);
392}
393
394static void magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev)
395{
396 input_set_drvdata(input, hdev);
397 input->event = hdev->ll_driver->hidinput_input_event;
398 input->open = magicmouse_input_open;
399 input->close = magicmouse_input_close;
400
401 input->name = hdev->name;
402 input->phys = hdev->phys;
403 input->uniq = hdev->uniq;
404 input->id.bustype = hdev->bus;
405 input->id.vendor = hdev->vendor;
406 input->id.product = hdev->product;
407 input->id.version = hdev->version;
408 input->dev.parent = hdev->dev.parent;
409
Michael Poole71b38bd2010-02-11 00:32:57 -0500410 __set_bit(EV_KEY, input->evbit);
Michael Poole128537c2010-02-06 12:24:36 -0500411
Chase Douglasa4622302010-08-31 21:56:23 -0400412 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
413 __set_bit(BTN_LEFT, input->keybit);
414 __set_bit(BTN_RIGHT, input->keybit);
415 if (emulate_3button)
416 __set_bit(BTN_MIDDLE, input->keybit);
417
418 __set_bit(EV_REL, input->evbit);
419 __set_bit(REL_X, input->relbit);
420 __set_bit(REL_Y, input->relbit);
421 if (emulate_scroll_wheel) {
422 __set_bit(REL_WHEEL, input->relbit);
423 __set_bit(REL_HWHEEL, input->relbit);
424 }
425 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
426 __set_bit(BTN_MOUSE, input->keybit);
427 __set_bit(BTN_TOOL_FINGER, input->keybit);
428 __set_bit(BTN_TOOL_DOUBLETAP, input->keybit);
429 __set_bit(BTN_TOOL_TRIPLETAP, input->keybit);
430 __set_bit(BTN_TOOL_QUADTAP, input->keybit);
431 __set_bit(BTN_TOUCH, input->keybit);
Chase Douglasc0426682010-06-20 21:32:31 -0400432 }
Michael Poole128537c2010-02-06 12:24:36 -0500433
434 if (report_touches) {
Michael Poole71b38bd2010-02-11 00:32:57 -0500435 __set_bit(EV_ABS, input->evbit);
Michael Poole128537c2010-02-06 12:24:36 -0500436
Michael Poole71b38bd2010-02-11 00:32:57 -0500437 input_set_abs_params(input, ABS_MT_TRACKING_ID, 0, 15, 0, 0);
438 input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255, 4, 0);
439 input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255, 4, 0);
440 input_set_abs_params(input, ABS_MT_ORIENTATION, -32, 31, 1, 0);
Chase Douglasa4622302010-08-31 21:56:23 -0400441
Michael Poole128537c2010-02-06 12:24:36 -0500442 /* Note: Touch Y position from the device is inverted relative
443 * to how pointer motion is reported (and relative to how USB
444 * HID recommends the coordinates work). This driver keeps
445 * the origin at the same position, and just uses the additive
446 * inverse of the reported Y.
447 */
Chase Douglasa4622302010-08-31 21:56:23 -0400448 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) {
449 input_set_abs_params(input, ABS_MT_POSITION_X, -1100,
450 1358, 4, 0);
451 input_set_abs_params(input, ABS_MT_POSITION_Y, -1589,
452 2047, 4, 0);
453 } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
454 input_set_abs_params(input, ABS_X, -2909, 3167, 4, 0);
455 input_set_abs_params(input, ABS_Y, -2456, 2565, 4, 0);
456 input_set_abs_params(input, ABS_MT_POSITION_X, -2909,
457 3167, 4, 0);
458 input_set_abs_params(input, ABS_MT_POSITION_Y, -2456,
459 2565, 4, 0);
460 }
Michael Poole128537c2010-02-06 12:24:36 -0500461 }
462
463 if (report_undeciphered) {
Michael Poole71b38bd2010-02-11 00:32:57 -0500464 __set_bit(EV_MSC, input->evbit);
465 __set_bit(MSC_RAW, input->mscbit);
Michael Poole128537c2010-02-06 12:24:36 -0500466 }
467}
468
469static int magicmouse_probe(struct hid_device *hdev,
470 const struct hid_device_id *id)
471{
Chase Douglas07735902010-08-31 21:56:19 -0400472 __u8 feature[] = { 0xd7, 0x01 };
Michael Poole128537c2010-02-06 12:24:36 -0500473 struct input_dev *input;
474 struct magicmouse_sc *msc;
475 struct hid_report *report;
476 int ret;
477
478 msc = kzalloc(sizeof(*msc), GFP_KERNEL);
479 if (msc == NULL) {
480 dev_err(&hdev->dev, "can't alloc magicmouse descriptor\n");
481 return -ENOMEM;
482 }
483
Chase Douglas0b778e72010-06-20 21:32:30 -0400484 msc->scroll_accel = SCROLL_ACCEL_DEFAULT;
485
Michael Poole128537c2010-02-06 12:24:36 -0500486 msc->quirks = id->driver_data;
487 hid_set_drvdata(hdev, msc);
488
Chase Douglasa4622302010-08-31 21:56:23 -0400489 msc->single_touch_id = NO_TOUCHES;
490
Michael Poole128537c2010-02-06 12:24:36 -0500491 ret = hid_parse(hdev);
492 if (ret) {
493 dev_err(&hdev->dev, "magicmouse hid parse failed\n");
494 goto err_free;
495 }
496
Jiri Kosina23d02112010-05-12 16:01:26 +0200497 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
Michael Poole128537c2010-02-06 12:24:36 -0500498 if (ret) {
499 dev_err(&hdev->dev, "magicmouse hw start failed\n");
500 goto err_free;
501 }
502
Jiri Kosina23d02112010-05-12 16:01:26 +0200503 /* we are handling the input ourselves */
504 hidinput_disconnect(hdev);
505
Chase Douglasa4622302010-08-31 21:56:23 -0400506 if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE)
507 report = hid_register_report(hdev, HID_INPUT_REPORT,
508 MOUSE_REPORT_ID);
509 else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
510 report = hid_register_report(hdev, HID_INPUT_REPORT,
511 TRACKPAD_REPORT_ID);
512 report = hid_register_report(hdev, HID_INPUT_REPORT,
513 DOUBLE_REPORT_ID);
514 }
515
Michael Poole128537c2010-02-06 12:24:36 -0500516 if (!report) {
517 dev_err(&hdev->dev, "unable to register touch report\n");
518 ret = -ENOMEM;
Michael Poole71b38bd2010-02-11 00:32:57 -0500519 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500520 }
521 report->size = 6;
522
Chase Douglas07735902010-08-31 21:56:19 -0400523 ret = hdev->hid_output_raw_report(hdev, feature, sizeof(feature),
Michael Poole128537c2010-02-06 12:24:36 -0500524 HID_FEATURE_REPORT);
Chase Douglas07735902010-08-31 21:56:19 -0400525 if (ret != sizeof(feature)) {
526 dev_err(&hdev->dev, "unable to request touch data (%d)\n",
Michael Poole128537c2010-02-06 12:24:36 -0500527 ret);
Michael Poole71b38bd2010-02-11 00:32:57 -0500528 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500529 }
530
531 input = input_allocate_device();
532 if (!input) {
533 dev_err(&hdev->dev, "can't alloc input device\n");
534 ret = -ENOMEM;
Michael Poole71b38bd2010-02-11 00:32:57 -0500535 goto err_stop_hw;
Michael Poole128537c2010-02-06 12:24:36 -0500536 }
537 magicmouse_setup_input(input, hdev);
538
539 ret = input_register_device(input);
540 if (ret) {
541 dev_err(&hdev->dev, "input device registration failed\n");
Michael Poole71b38bd2010-02-11 00:32:57 -0500542 goto err_input;
Michael Poole128537c2010-02-06 12:24:36 -0500543 }
544 msc->input = input;
545
546 return 0;
Michael Poole71b38bd2010-02-11 00:32:57 -0500547err_input:
Michael Poole128537c2010-02-06 12:24:36 -0500548 input_free_device(input);
Michael Poole71b38bd2010-02-11 00:32:57 -0500549err_stop_hw:
550 hid_hw_stop(hdev);
551err_free:
Michael Poole128537c2010-02-06 12:24:36 -0500552 kfree(msc);
553 return ret;
554}
555
556static void magicmouse_remove(struct hid_device *hdev)
557{
Michael Poole28918c22010-03-09 06:47:35 -0500558 struct magicmouse_sc *msc = hid_get_drvdata(hdev);
559
Michael Poole128537c2010-02-06 12:24:36 -0500560 hid_hw_stop(hdev);
Michael Poole28918c22010-03-09 06:47:35 -0500561 input_unregister_device(msc->input);
562 kfree(msc);
Michael Poole128537c2010-02-06 12:24:36 -0500563}
564
565static const struct hid_device_id magic_mice[] = {
Chase Douglasa4622302010-08-31 21:56:23 -0400566 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
567 USB_DEVICE_ID_APPLE_MAGICMOUSE), .driver_data = 0 },
568 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE,
569 USB_DEVICE_ID_APPLE_MAGICTRACKPAD), .driver_data = 0 },
Michael Poole128537c2010-02-06 12:24:36 -0500570 { }
571};
572MODULE_DEVICE_TABLE(hid, magic_mice);
573
574static struct hid_driver magicmouse_driver = {
575 .name = "magicmouse",
576 .id_table = magic_mice,
577 .probe = magicmouse_probe,
578 .remove = magicmouse_remove,
579 .raw_event = magicmouse_raw_event,
580};
581
582static int __init magicmouse_init(void)
583{
584 int ret;
585
586 ret = hid_register_driver(&magicmouse_driver);
587 if (ret)
588 printk(KERN_ERR "can't register magicmouse driver\n");
589
590 return ret;
591}
592
593static void __exit magicmouse_exit(void)
594{
595 hid_unregister_driver(&magicmouse_driver);
596}
597
598module_init(magicmouse_init);
599module_exit(magicmouse_exit);
600MODULE_LICENSE("GPL");