Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Apple "Magic" Wireless Mouse driver |
| 3 | * |
| 4 | * Copyright (c) 2010 Michael Poole <mdpoole@troilus.org> |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 5 | * Copyright (c) 2010 Chase Douglas <chase.douglas@canonical.com> |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 6 | */ |
| 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 Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 15 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 16 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 17 | #include <linux/device.h> |
| 18 | #include <linux/hid.h> |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 19 | #include <linux/input/mt.h> |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 20 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 22 | |
| 23 | #include "hid-ids.h" |
| 24 | |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 25 | static bool emulate_3button = true; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 26 | module_param(emulate_3button, bool, 0644); |
| 27 | MODULE_PARM_DESC(emulate_3button, "Emulate a middle button"); |
| 28 | |
| 29 | static int middle_button_start = -350; |
| 30 | static int middle_button_stop = +350; |
| 31 | |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 32 | static bool emulate_scroll_wheel = true; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 33 | module_param(emulate_scroll_wheel, bool, 0644); |
| 34 | MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel"); |
| 35 | |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 36 | static unsigned int scroll_speed = 32; |
| 37 | static int param_set_scroll_speed(const char *val, struct kernel_param *kp) { |
| 38 | unsigned long speed; |
Jingoo Han | dfc450b | 2013-07-19 15:53:16 +0900 | [diff] [blame] | 39 | if (!val || kstrtoul(val, 0, &speed) || speed > 63) |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 40 | return -EINVAL; |
| 41 | scroll_speed = speed; |
| 42 | return 0; |
| 43 | } |
| 44 | module_param_call(scroll_speed, param_set_scroll_speed, param_get_uint, &scroll_speed, 0644); |
| 45 | MODULE_PARM_DESC(scroll_speed, "Scroll speed, value from 0 (slow) to 63 (fast)"); |
| 46 | |
Chase Douglas | 9846f35 | 2010-06-02 10:28:27 -0400 | [diff] [blame] | 47 | static bool scroll_acceleration = false; |
| 48 | module_param(scroll_acceleration, bool, 0644); |
| 49 | MODULE_PARM_DESC(scroll_acceleration, "Accelerate sequential scroll events"); |
| 50 | |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 51 | static bool report_undeciphered; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 52 | module_param(report_undeciphered, bool, 0644); |
| 53 | MODULE_PARM_DESC(report_undeciphered, "Report undeciphered multi-touch state field using a MSC_RAW event"); |
| 54 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 55 | #define TRACKPAD_REPORT_ID 0x28 |
| 56 | #define MOUSE_REPORT_ID 0x29 |
| 57 | #define DOUBLE_REPORT_ID 0xf7 |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 58 | /* 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 Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 69 | #define SCROLL_ACCEL_DEFAULT 7 |
| 70 | |
Chase Douglas | 4f6fdf0 | 2011-08-05 09:16:57 -0700 | [diff] [blame] | 71 | /* Touch surface information. Dimension is in hundredths of a mm, min and max |
| 72 | * are in units. */ |
| 73 | #define MOUSE_DIMENSION_X (float)9056 |
| 74 | #define MOUSE_MIN_X -1100 |
| 75 | #define MOUSE_MAX_X 1258 |
| 76 | #define MOUSE_RES_X ((MOUSE_MAX_X - MOUSE_MIN_X) / (MOUSE_DIMENSION_X / 100)) |
| 77 | #define MOUSE_DIMENSION_Y (float)5152 |
| 78 | #define MOUSE_MIN_Y -1589 |
| 79 | #define MOUSE_MAX_Y 2047 |
| 80 | #define MOUSE_RES_Y ((MOUSE_MAX_Y - MOUSE_MIN_Y) / (MOUSE_DIMENSION_Y / 100)) |
| 81 | |
| 82 | #define TRACKPAD_DIMENSION_X (float)13000 |
| 83 | #define TRACKPAD_MIN_X -2909 |
| 84 | #define TRACKPAD_MAX_X 3167 |
| 85 | #define TRACKPAD_RES_X \ |
| 86 | ((TRACKPAD_MAX_X - TRACKPAD_MIN_X) / (TRACKPAD_DIMENSION_X / 100)) |
| 87 | #define TRACKPAD_DIMENSION_Y (float)11000 |
| 88 | #define TRACKPAD_MIN_Y -2456 |
| 89 | #define TRACKPAD_MAX_Y 2565 |
| 90 | #define TRACKPAD_RES_Y \ |
| 91 | ((TRACKPAD_MAX_Y - TRACKPAD_MIN_Y) / (TRACKPAD_DIMENSION_Y / 100)) |
| 92 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 93 | /** |
| 94 | * struct magicmouse_sc - Tracks Magic Mouse-specific data. |
| 95 | * @input: Input device through which we report events. |
| 96 | * @quirks: Currently unused. |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 97 | * @ntouches: Number of touches in most recent touch report. |
| 98 | * @scroll_accel: Number of consecutive scroll motions. |
| 99 | * @scroll_jiffies: Time of last scroll motion. |
| 100 | * @touches: Most recent data for a touch, indexed by tracking ID. |
| 101 | * @tracking_ids: Mapping of current touch input data to @touches. |
| 102 | */ |
| 103 | struct magicmouse_sc { |
| 104 | struct input_dev *input; |
| 105 | unsigned long quirks; |
| 106 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 107 | int ntouches; |
| 108 | int scroll_accel; |
| 109 | unsigned long scroll_jiffies; |
| 110 | |
| 111 | struct { |
| 112 | short x; |
| 113 | short y; |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 114 | short scroll_x; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 115 | short scroll_y; |
| 116 | u8 size; |
| 117 | } touches[16]; |
| 118 | int tracking_ids[16]; |
| 119 | }; |
| 120 | |
| 121 | static int magicmouse_firm_touch(struct magicmouse_sc *msc) |
| 122 | { |
| 123 | int touch = -1; |
| 124 | int ii; |
| 125 | |
| 126 | /* If there is only one "firm" touch, set touch to its |
| 127 | * tracking ID. |
| 128 | */ |
| 129 | for (ii = 0; ii < msc->ntouches; ii++) { |
| 130 | int idx = msc->tracking_ids[ii]; |
| 131 | if (msc->touches[idx].size < 8) { |
| 132 | /* Ignore this touch. */ |
| 133 | } else if (touch >= 0) { |
| 134 | touch = -1; |
| 135 | break; |
| 136 | } else { |
| 137 | touch = idx; |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | return touch; |
| 142 | } |
| 143 | |
| 144 | static void magicmouse_emit_buttons(struct magicmouse_sc *msc, int state) |
| 145 | { |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 146 | int last_state = test_bit(BTN_LEFT, msc->input->key) << 0 | |
| 147 | test_bit(BTN_RIGHT, msc->input->key) << 1 | |
| 148 | test_bit(BTN_MIDDLE, msc->input->key) << 2; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 149 | |
| 150 | if (emulate_3button) { |
| 151 | int id; |
| 152 | |
| 153 | /* If some button was pressed before, keep it held |
| 154 | * down. Otherwise, if there's exactly one firm |
| 155 | * touch, use that to override the mouse's guess. |
| 156 | */ |
| 157 | if (state == 0) { |
| 158 | /* The button was released. */ |
| 159 | } else if (last_state != 0) { |
| 160 | state = last_state; |
| 161 | } else if ((id = magicmouse_firm_touch(msc)) >= 0) { |
| 162 | int x = msc->touches[id].x; |
| 163 | if (x < middle_button_start) |
| 164 | state = 1; |
| 165 | else if (x > middle_button_stop) |
| 166 | state = 2; |
| 167 | else |
| 168 | state = 4; |
| 169 | } /* else: we keep the mouse's guess */ |
| 170 | |
| 171 | input_report_key(msc->input, BTN_MIDDLE, state & 4); |
| 172 | } |
| 173 | |
| 174 | input_report_key(msc->input, BTN_LEFT, state & 1); |
| 175 | input_report_key(msc->input, BTN_RIGHT, state & 2); |
| 176 | |
| 177 | if (state != last_state) |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 178 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata) |
| 182 | { |
| 183 | struct input_dev *input = msc->input; |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 184 | int id, x, y, size, orientation, touch_major, touch_minor, state, down; |
| 185 | |
| 186 | if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { |
| 187 | id = (tdata[6] << 2 | tdata[5] >> 6) & 0xf; |
| 188 | x = (tdata[1] << 28 | tdata[0] << 20) >> 20; |
| 189 | y = -((tdata[2] << 24 | tdata[1] << 16) >> 20); |
| 190 | size = tdata[5] & 0x3f; |
| 191 | orientation = (tdata[6] >> 2) - 32; |
| 192 | touch_major = tdata[3]; |
| 193 | touch_minor = tdata[4]; |
| 194 | state = tdata[7] & TOUCH_STATE_MASK; |
| 195 | down = state != TOUCH_STATE_NONE; |
| 196 | } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
| 197 | id = (tdata[7] << 2 | tdata[6] >> 6) & 0xf; |
| 198 | x = (tdata[1] << 27 | tdata[0] << 19) >> 19; |
| 199 | y = -((tdata[3] << 30 | tdata[2] << 22 | tdata[1] << 14) >> 19); |
| 200 | size = tdata[6] & 0x3f; |
| 201 | orientation = (tdata[7] >> 2) - 32; |
| 202 | touch_major = tdata[4]; |
| 203 | touch_minor = tdata[5]; |
| 204 | state = tdata[8] & TOUCH_STATE_MASK; |
| 205 | down = state != TOUCH_STATE_NONE; |
| 206 | } |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 207 | |
| 208 | /* Store tracking ID and other fields. */ |
| 209 | msc->tracking_ids[raw_id] = id; |
| 210 | msc->touches[id].x = x; |
| 211 | msc->touches[id].y = y; |
Chase Douglas | 6de048b | 2010-08-31 21:56:20 -0400 | [diff] [blame] | 212 | msc->touches[id].size = size; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 213 | |
| 214 | /* If requested, emulate a scroll wheel by detecting small |
Chase Douglas | ef566d3 | 2010-06-02 10:28:25 -0400 | [diff] [blame] | 215 | * vertical touch motions. |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 216 | */ |
Chase Douglas | ef566d3 | 2010-06-02 10:28:25 -0400 | [diff] [blame] | 217 | if (emulate_scroll_wheel) { |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 218 | unsigned long now = jiffies; |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 219 | int step_x = msc->touches[id].scroll_x - x; |
| 220 | int step_y = msc->touches[id].scroll_y - y; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 221 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 222 | /* Calculate and apply the scroll motion. */ |
Chase Douglas | 6de048b | 2010-08-31 21:56:20 -0400 | [diff] [blame] | 223 | switch (state) { |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 224 | case TOUCH_STATE_START: |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 225 | msc->touches[id].scroll_x = x; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 226 | msc->touches[id].scroll_y = y; |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 227 | |
| 228 | /* Reset acceleration after half a second. */ |
| 229 | if (scroll_acceleration && time_before(now, |
| 230 | msc->scroll_jiffies + HZ / 2)) |
| 231 | msc->scroll_accel = max_t(int, |
| 232 | msc->scroll_accel - 1, 1); |
| 233 | else |
| 234 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; |
| 235 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 236 | break; |
| 237 | case TOUCH_STATE_DRAG: |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 238 | step_x /= (64 - (int)scroll_speed) * msc->scroll_accel; |
| 239 | if (step_x != 0) { |
| 240 | msc->touches[id].scroll_x -= step_x * |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 241 | (64 - scroll_speed) * msc->scroll_accel; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 242 | msc->scroll_jiffies = now; |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 243 | input_report_rel(input, REL_HWHEEL, -step_x); |
| 244 | } |
| 245 | |
| 246 | step_y /= (64 - (int)scroll_speed) * msc->scroll_accel; |
| 247 | if (step_y != 0) { |
| 248 | msc->touches[id].scroll_y -= step_y * |
| 249 | (64 - scroll_speed) * msc->scroll_accel; |
| 250 | msc->scroll_jiffies = now; |
| 251 | input_report_rel(input, REL_WHEEL, step_y); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 252 | } |
| 253 | break; |
| 254 | } |
| 255 | } |
| 256 | |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 257 | if (down) |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 258 | msc->ntouches++; |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 259 | |
| 260 | input_mt_slot(input, id); |
| 261 | input_mt_report_slot_state(input, MT_TOOL_FINGER, down); |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 262 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 263 | /* Generate the input events for this touch. */ |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 264 | if (down) { |
Henrik Rydberg | 921990b | 2010-08-31 21:56:24 -0400 | [diff] [blame] | 265 | input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major << 2); |
| 266 | input_report_abs(input, ABS_MT_TOUCH_MINOR, touch_minor << 2); |
Henrik Rydberg | 2d9ca4e | 2011-03-09 18:38:57 +0100 | [diff] [blame] | 267 | input_report_abs(input, ABS_MT_ORIENTATION, -orientation); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 268 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 269 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
| 270 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 271 | if (report_undeciphered) { |
| 272 | if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) |
| 273 | input_event(input, EV_MSC, MSC_RAW, tdata[7]); |
| 274 | else /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
| 275 | input_event(input, EV_MSC, MSC_RAW, tdata[8]); |
| 276 | } |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
| 280 | static int magicmouse_raw_event(struct hid_device *hdev, |
| 281 | struct hid_report *report, u8 *data, int size) |
| 282 | { |
| 283 | struct magicmouse_sc *msc = hid_get_drvdata(hdev); |
| 284 | struct input_dev *input = msc->input; |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 285 | int x = 0, y = 0, ii, clicks = 0, npoints; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 286 | |
| 287 | switch (data[0]) { |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 288 | case TRACKPAD_REPORT_ID: |
| 289 | /* Expect four bytes of prefix, and N*9 bytes of touch data. */ |
| 290 | if (size < 4 || ((size - 4) % 9) != 0) |
| 291 | return 0; |
| 292 | npoints = (size - 4) / 9; |
Jiri Kosina | c54def7 | 2014-08-27 09:12:24 +0200 | [diff] [blame] | 293 | if (npoints > 15) { |
| 294 | hid_warn(hdev, "invalid size value (%d) for TRACKPAD_REPORT_ID\n", |
| 295 | size); |
| 296 | return 0; |
| 297 | } |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 298 | msc->ntouches = 0; |
| 299 | for (ii = 0; ii < npoints; ii++) |
| 300 | magicmouse_emit_touch(msc, ii, data + ii * 9 + 4); |
| 301 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 302 | clicks = data[1]; |
| 303 | |
| 304 | /* The following bits provide a device specific timestamp. They |
| 305 | * are unused here. |
| 306 | * |
| 307 | * ts = data[1] >> 6 | data[2] << 2 | data[3] << 10; |
| 308 | */ |
| 309 | break; |
| 310 | case MOUSE_REPORT_ID: |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 311 | /* Expect six bytes of prefix, and N*8 bytes of touch data. */ |
| 312 | if (size < 6 || ((size - 6) % 8) != 0) |
| 313 | return 0; |
Chase Douglas | 0228db7 | 2010-09-02 16:49:52 +0200 | [diff] [blame] | 314 | npoints = (size - 6) / 8; |
Jiri Kosina | c54def7 | 2014-08-27 09:12:24 +0200 | [diff] [blame] | 315 | if (npoints > 15) { |
| 316 | hid_warn(hdev, "invalid size value (%d) for MOUSE_REPORT_ID\n", |
| 317 | size); |
| 318 | return 0; |
| 319 | } |
Chase Douglas | 0228db7 | 2010-09-02 16:49:52 +0200 | [diff] [blame] | 320 | msc->ntouches = 0; |
| 321 | for (ii = 0; ii < npoints; ii++) |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 322 | magicmouse_emit_touch(msc, ii, data + ii * 8 + 6); |
Chase Douglas | e3612e8 | 2010-07-05 09:57:52 -0400 | [diff] [blame] | 323 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 324 | /* When emulating three-button mode, it is important |
| 325 | * to have the current touch information before |
| 326 | * generating a click event. |
| 327 | */ |
Michael Poole | 7d876c0 | 2010-07-05 10:50:09 -0400 | [diff] [blame] | 328 | x = (int)(((data[3] & 0x0c) << 28) | (data[1] << 22)) >> 22; |
| 329 | y = (int)(((data[3] & 0x30) << 26) | (data[2] << 22)) >> 22; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 330 | clicks = data[3]; |
Chase Douglas | c61b7ce | 2010-09-02 16:51:54 +0200 | [diff] [blame] | 331 | |
| 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 Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 337 | break; |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 338 | 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 Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 346 | default: |
| 347 | return 0; |
| 348 | } |
| 349 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 350 | if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { |
| 351 | magicmouse_emit_buttons(msc, clicks & 3); |
| 352 | input_report_rel(input, REL_X, x); |
| 353 | input_report_rel(input, REL_Y, y); |
| 354 | } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
| 355 | input_report_key(input, BTN_MOUSE, clicks & 1); |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 356 | input_mt_report_pointer_emulation(input, true); |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 357 | } |
| 358 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 359 | input_sync(input); |
| 360 | return 1; |
| 361 | } |
| 362 | |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 363 | static int magicmouse_setup_input(struct input_dev *input, struct hid_device *hdev) |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 364 | { |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 365 | int error; |
| 366 | |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 367 | __set_bit(EV_KEY, input->evbit); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 368 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 369 | if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { |
| 370 | __set_bit(BTN_LEFT, input->keybit); |
| 371 | __set_bit(BTN_RIGHT, input->keybit); |
| 372 | if (emulate_3button) |
| 373 | __set_bit(BTN_MIDDLE, input->keybit); |
| 374 | |
| 375 | __set_bit(EV_REL, input->evbit); |
| 376 | __set_bit(REL_X, input->relbit); |
| 377 | __set_bit(REL_Y, input->relbit); |
| 378 | if (emulate_scroll_wheel) { |
| 379 | __set_bit(REL_WHEEL, input->relbit); |
| 380 | __set_bit(REL_HWHEEL, input->relbit); |
| 381 | } |
| 382 | } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
Daniel van Vugt | bca6214 | 2011-10-14 13:39:34 +0800 | [diff] [blame] | 383 | /* input->keybit is initialized with incorrect button info |
| 384 | * for Magic Trackpad. There really is only one physical |
| 385 | * button (BTN_LEFT == BTN_MOUSE). Make sure we don't |
| 386 | * advertise buttons that don't exist... |
| 387 | */ |
| 388 | __clear_bit(BTN_RIGHT, input->keybit); |
| 389 | __clear_bit(BTN_MIDDLE, input->keybit); |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 390 | __set_bit(BTN_MOUSE, input->keybit); |
| 391 | __set_bit(BTN_TOOL_FINGER, input->keybit); |
| 392 | __set_bit(BTN_TOOL_DOUBLETAP, input->keybit); |
| 393 | __set_bit(BTN_TOOL_TRIPLETAP, input->keybit); |
| 394 | __set_bit(BTN_TOOL_QUADTAP, input->keybit); |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 395 | __set_bit(BTN_TOOL_QUINTTAP, input->keybit); |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 396 | __set_bit(BTN_TOUCH, input->keybit); |
Chase Douglas | 503f7d5 | 2012-02-13 20:12:31 -0800 | [diff] [blame] | 397 | __set_bit(INPUT_PROP_POINTER, input->propbit); |
| 398 | __set_bit(INPUT_PROP_BUTTONPAD, input->propbit); |
Chase Douglas | c042668 | 2010-06-20 21:32:31 -0400 | [diff] [blame] | 399 | } |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 400 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 401 | |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 402 | __set_bit(EV_ABS, input->evbit); |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 403 | |
Henrik Rydberg | b4adbbe | 2012-08-11 22:07:55 +0200 | [diff] [blame] | 404 | error = input_mt_init_slots(input, 16, 0); |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 405 | if (error) |
| 406 | return error; |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 407 | input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255 << 2, |
| 408 | 4, 0); |
| 409 | input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255 << 2, |
| 410 | 4, 0); |
| 411 | input_set_abs_params(input, ABS_MT_ORIENTATION, -31, 32, 1, 0); |
Chase Douglas | 4f6fdf0 | 2011-08-05 09:16:57 -0700 | [diff] [blame] | 412 | |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 413 | /* Note: Touch Y position from the device is inverted relative |
| 414 | * to how pointer motion is reported (and relative to how USB |
| 415 | * HID recommends the coordinates work). This driver keeps |
| 416 | * the origin at the same position, and just uses the additive |
| 417 | * inverse of the reported Y. |
| 418 | */ |
| 419 | if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { |
| 420 | input_set_abs_params(input, ABS_MT_POSITION_X, |
| 421 | MOUSE_MIN_X, MOUSE_MAX_X, 4, 0); |
| 422 | input_set_abs_params(input, ABS_MT_POSITION_Y, |
| 423 | MOUSE_MIN_Y, MOUSE_MAX_Y, 4, 0); |
Chase Douglas | 4f6fdf0 | 2011-08-05 09:16:57 -0700 | [diff] [blame] | 424 | |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 425 | input_abs_set_res(input, ABS_MT_POSITION_X, |
| 426 | MOUSE_RES_X); |
| 427 | input_abs_set_res(input, ABS_MT_POSITION_Y, |
| 428 | MOUSE_RES_Y); |
| 429 | } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
| 430 | input_set_abs_params(input, ABS_X, TRACKPAD_MIN_X, |
| 431 | TRACKPAD_MAX_X, 4, 0); |
| 432 | input_set_abs_params(input, ABS_Y, TRACKPAD_MIN_Y, |
| 433 | TRACKPAD_MAX_Y, 4, 0); |
| 434 | input_set_abs_params(input, ABS_MT_POSITION_X, |
| 435 | TRACKPAD_MIN_X, TRACKPAD_MAX_X, 4, 0); |
| 436 | input_set_abs_params(input, ABS_MT_POSITION_Y, |
| 437 | TRACKPAD_MIN_Y, TRACKPAD_MAX_Y, 4, 0); |
Chase Douglas | cc5e0f0 | 2011-04-01 17:03:39 -0400 | [diff] [blame] | 438 | |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 439 | input_abs_set_res(input, ABS_X, TRACKPAD_RES_X); |
| 440 | input_abs_set_res(input, ABS_Y, TRACKPAD_RES_Y); |
| 441 | input_abs_set_res(input, ABS_MT_POSITION_X, |
| 442 | TRACKPAD_RES_X); |
| 443 | input_abs_set_res(input, ABS_MT_POSITION_Y, |
| 444 | TRACKPAD_RES_Y); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 445 | } |
| 446 | |
Yufeng Shen | 6264307 | 2012-07-04 12:14:43 -0400 | [diff] [blame] | 447 | input_set_events_per_packet(input, 60); |
| 448 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 449 | if (report_undeciphered) { |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 450 | __set_bit(EV_MSC, input->evbit); |
| 451 | __set_bit(MSC_RAW, input->mscbit); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 452 | } |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 453 | |
| 454 | return 0; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 455 | } |
| 456 | |
Michael Poole | 64eb105 | 2010-09-24 13:58:18 +0200 | [diff] [blame] | 457 | static int magicmouse_input_mapping(struct hid_device *hdev, |
| 458 | struct hid_input *hi, struct hid_field *field, |
| 459 | struct hid_usage *usage, unsigned long **bit, int *max) |
| 460 | { |
| 461 | struct magicmouse_sc *msc = hid_get_drvdata(hdev); |
| 462 | |
| 463 | if (!msc->input) |
| 464 | msc->input = hi->input; |
| 465 | |
Chase Douglas | 6a66bbd | 2010-12-08 15:08:04 -0800 | [diff] [blame] | 466 | /* Magic Trackpad does not give relative data after switching to MT */ |
| 467 | if (hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD && |
| 468 | field->flags & HID_MAIN_ITEM_RELATIVE) |
| 469 | return -1; |
| 470 | |
Michael Poole | 64eb105 | 2010-09-24 13:58:18 +0200 | [diff] [blame] | 471 | return 0; |
| 472 | } |
| 473 | |
Benjamin Tissoires | f1a9a14 | 2013-04-02 11:11:52 +0200 | [diff] [blame] | 474 | static void magicmouse_input_configured(struct hid_device *hdev, |
| 475 | struct hid_input *hi) |
| 476 | |
| 477 | { |
| 478 | struct magicmouse_sc *msc = hid_get_drvdata(hdev); |
| 479 | |
| 480 | int ret = magicmouse_setup_input(msc->input, hdev); |
| 481 | if (ret) { |
| 482 | hid_err(hdev, "magicmouse setup input failed (%d)\n", ret); |
| 483 | /* clean msc->input to notify probe() of the failure */ |
| 484 | msc->input = NULL; |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 489 | static int magicmouse_probe(struct hid_device *hdev, |
| 490 | const struct hid_device_id *id) |
| 491 | { |
Chase Douglas | 0773590 | 2010-08-31 21:56:19 -0400 | [diff] [blame] | 492 | __u8 feature[] = { 0xd7, 0x01 }; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 493 | struct magicmouse_sc *msc; |
| 494 | struct hid_report *report; |
| 495 | int ret; |
| 496 | |
Benjamin Tissoires | abf832b | 2013-07-24 19:38:04 +0200 | [diff] [blame] | 497 | msc = devm_kzalloc(&hdev->dev, sizeof(*msc), GFP_KERNEL); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 498 | if (msc == NULL) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 499 | hid_err(hdev, "can't alloc magicmouse descriptor\n"); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 500 | return -ENOMEM; |
| 501 | } |
| 502 | |
Chase Douglas | 0b778e7 | 2010-06-20 21:32:30 -0400 | [diff] [blame] | 503 | msc->scroll_accel = SCROLL_ACCEL_DEFAULT; |
| 504 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 505 | msc->quirks = id->driver_data; |
| 506 | hid_set_drvdata(hdev, msc); |
| 507 | |
| 508 | ret = hid_parse(hdev); |
| 509 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 510 | hid_err(hdev, "magicmouse hid parse failed\n"); |
Benjamin Tissoires | abf832b | 2013-07-24 19:38:04 +0200 | [diff] [blame] | 511 | return ret; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 512 | } |
| 513 | |
Jiri Kosina | 23d0211 | 2010-05-12 16:01:26 +0200 | [diff] [blame] | 514 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 515 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 516 | hid_err(hdev, "magicmouse hw start failed\n"); |
Benjamin Tissoires | abf832b | 2013-07-24 19:38:04 +0200 | [diff] [blame] | 517 | return ret; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 518 | } |
| 519 | |
Benjamin Tissoires | f1a9a14 | 2013-04-02 11:11:52 +0200 | [diff] [blame] | 520 | if (!msc->input) { |
| 521 | hid_err(hdev, "magicmouse input not registered\n"); |
| 522 | ret = -ENOMEM; |
| 523 | goto err_stop_hw; |
Yufeng Shen | a6d1bc1 | 2012-07-04 12:15:43 -0400 | [diff] [blame] | 524 | } |
Jiri Kosina | 23d0211 | 2010-05-12 16:01:26 +0200 | [diff] [blame] | 525 | |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 526 | if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE) |
| 527 | report = hid_register_report(hdev, HID_INPUT_REPORT, |
| 528 | MOUSE_REPORT_ID); |
| 529 | else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */ |
| 530 | report = hid_register_report(hdev, HID_INPUT_REPORT, |
| 531 | TRACKPAD_REPORT_ID); |
| 532 | report = hid_register_report(hdev, HID_INPUT_REPORT, |
| 533 | DOUBLE_REPORT_ID); |
| 534 | } |
| 535 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 536 | if (!report) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 537 | hid_err(hdev, "unable to register touch report\n"); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 538 | ret = -ENOMEM; |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 539 | goto err_stop_hw; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 540 | } |
| 541 | report->size = 6; |
| 542 | |
Jiri Kosina | 35d851d | 2011-08-25 14:21:37 +0200 | [diff] [blame] | 543 | /* |
| 544 | * Some devices repond with 'invalid report id' when feature |
| 545 | * report switching it into multitouch mode is sent to it. |
| 546 | * |
| 547 | * This results in -EIO from the _raw low-level transport callback, |
| 548 | * but there seems to be no other way of switching the mode. |
| 549 | * Thus the super-ugly hacky success check below. |
| 550 | */ |
Benjamin Tissoires | b0dd72a | 2014-02-10 12:58:54 -0500 | [diff] [blame] | 551 | ret = hid_hw_raw_request(hdev, feature[0], feature, sizeof(feature), |
| 552 | HID_FEATURE_REPORT, HID_REQ_SET_REPORT); |
Jiri Kosina | 35d851d | 2011-08-25 14:21:37 +0200 | [diff] [blame] | 553 | if (ret != -EIO && ret != sizeof(feature)) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 554 | hid_err(hdev, "unable to request touch data (%d)\n", ret); |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 555 | goto err_stop_hw; |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 556 | } |
| 557 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 558 | return 0; |
Michael Poole | 71b38bd | 2010-02-11 00:32:57 -0500 | [diff] [blame] | 559 | err_stop_hw: |
| 560 | hid_hw_stop(hdev); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 561 | return ret; |
| 562 | } |
| 563 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 564 | static const struct hid_device_id magic_mice[] = { |
Chase Douglas | a462230 | 2010-08-31 21:56:23 -0400 | [diff] [blame] | 565 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, |
| 566 | USB_DEVICE_ID_APPLE_MAGICMOUSE), .driver_data = 0 }, |
| 567 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, |
| 568 | USB_DEVICE_ID_APPLE_MAGICTRACKPAD), .driver_data = 0 }, |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 569 | { } |
| 570 | }; |
| 571 | MODULE_DEVICE_TABLE(hid, magic_mice); |
| 572 | |
| 573 | static struct hid_driver magicmouse_driver = { |
| 574 | .name = "magicmouse", |
| 575 | .id_table = magic_mice, |
| 576 | .probe = magicmouse_probe, |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 577 | .raw_event = magicmouse_raw_event, |
Michael Poole | 64eb105 | 2010-09-24 13:58:18 +0200 | [diff] [blame] | 578 | .input_mapping = magicmouse_input_mapping, |
Benjamin Tissoires | f1a9a14 | 2013-04-02 11:11:52 +0200 | [diff] [blame] | 579 | .input_configured = magicmouse_input_configured, |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 580 | }; |
H Hartley Sweeten | f425458 | 2012-12-17 15:28:26 -0700 | [diff] [blame] | 581 | module_hid_driver(magicmouse_driver); |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 582 | |
Michael Poole | 128537c | 2010-02-06 12:24:36 -0500 | [diff] [blame] | 583 | MODULE_LICENSE("GPL"); |