bcm5974.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  1. /*
  2. * Apple USB BCM5974 (Macbook Air and Penryn Macbook Pro) multitouch driver
  3. *
  4. * Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se)
  5. *
  6. * The USB initialization and package decoding was made by
  7. * Scott Shawcroft as part of the touchd user-space driver project:
  8. * Copyright (C) 2008 Scott Shawcroft (scott.shawcroft@gmail.com)
  9. *
  10. * The BCM5974 driver is based on the appletouch driver:
  11. * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
  12. * Copyright (C) 2005 Johannes Berg (johannes@sipsolutions.net)
  13. * Copyright (C) 2005 Stelian Pop (stelian@popies.net)
  14. * Copyright (C) 2005 Frank Arnold (frank@scirocco-5v-turbo.de)
  15. * Copyright (C) 2005 Peter Osterlund (petero2@telia.com)
  16. * Copyright (C) 2005 Michael Hanselmann (linux-kernel@hansmi.ch)
  17. * Copyright (C) 2006 Nicolas Boichat (nicolas@boichat.ch)
  18. *
  19. * This program is free software; you can redistribute it and/or modify
  20. * it under the terms of the GNU General Public License as published by
  21. * the Free Software Foundation; either version 2 of the License, or
  22. * (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program; if not, write to the Free Software
  31. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  32. *
  33. */
  34. #include <linux/kernel.h>
  35. #include <linux/errno.h>
  36. #include <linux/init.h>
  37. #include <linux/slab.h>
  38. #include <linux/module.h>
  39. #include <linux/usb/input.h>
  40. #include <linux/hid.h>
  41. #include <linux/mutex.h>
  42. #define USB_VENDOR_ID_APPLE 0x05ac
  43. /* MacbookAir, aka wellspring */
  44. #define USB_DEVICE_ID_APPLE_WELLSPRING_ANSI 0x0223
  45. #define USB_DEVICE_ID_APPLE_WELLSPRING_ISO 0x0224
  46. #define USB_DEVICE_ID_APPLE_WELLSPRING_JIS 0x0225
  47. /* MacbookProPenryn, aka wellspring2 */
  48. #define USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI 0x0230
  49. #define USB_DEVICE_ID_APPLE_WELLSPRING2_ISO 0x0231
  50. #define USB_DEVICE_ID_APPLE_WELLSPRING2_JIS 0x0232
  51. /* Macbook5,1 (unibody), aka wellspring3 */
  52. #define USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI 0x0236
  53. #define USB_DEVICE_ID_APPLE_WELLSPRING3_ISO 0x0237
  54. #define USB_DEVICE_ID_APPLE_WELLSPRING3_JIS 0x0238
  55. /* MacbookAir3,2 (unibody), aka wellspring5 */
  56. #define USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI 0x023f
  57. #define USB_DEVICE_ID_APPLE_WELLSPRING4_ISO 0x0240
  58. #define USB_DEVICE_ID_APPLE_WELLSPRING4_JIS 0x0241
  59. /* MacbookAir3,1 (unibody), aka wellspring4 */
  60. #define USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI 0x0242
  61. #define USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO 0x0243
  62. #define USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS 0x0244
  63. #define BCM5974_DEVICE(prod) { \
  64. .match_flags = (USB_DEVICE_ID_MATCH_DEVICE | \
  65. USB_DEVICE_ID_MATCH_INT_CLASS | \
  66. USB_DEVICE_ID_MATCH_INT_PROTOCOL), \
  67. .idVendor = USB_VENDOR_ID_APPLE, \
  68. .idProduct = (prod), \
  69. .bInterfaceClass = USB_INTERFACE_CLASS_HID, \
  70. .bInterfaceProtocol = USB_INTERFACE_PROTOCOL_MOUSE \
  71. }
  72. /* table of devices that work with this driver */
  73. static const struct usb_device_id bcm5974_table[] = {
  74. /* MacbookAir1.1 */
  75. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING_ANSI),
  76. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING_ISO),
  77. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING_JIS),
  78. /* MacbookProPenryn */
  79. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI),
  80. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING2_ISO),
  81. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING2_JIS),
  82. /* Macbook5,1 */
  83. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI),
  84. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING3_ISO),
  85. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING3_JIS),
  86. /* MacbookAir3,2 */
  87. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI),
  88. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4_ISO),
  89. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4_JIS),
  90. /* MacbookAir3,1 */
  91. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI),
  92. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO),
  93. BCM5974_DEVICE(USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS),
  94. /* Terminating entry */
  95. {}
  96. };
  97. MODULE_DEVICE_TABLE(usb, bcm5974_table);
  98. MODULE_AUTHOR("Henrik Rydberg");
  99. MODULE_DESCRIPTION("Apple USB BCM5974 multitouch driver");
  100. MODULE_LICENSE("GPL");
  101. #define dprintk(level, format, a...)\
  102. { if (debug >= level) printk(KERN_DEBUG format, ##a); }
  103. static int debug = 1;
  104. module_param(debug, int, 0644);
  105. MODULE_PARM_DESC(debug, "Activate debugging output");
  106. /* button data structure */
  107. struct bt_data {
  108. u8 unknown1; /* constant */
  109. u8 button; /* left button */
  110. u8 rel_x; /* relative x coordinate */
  111. u8 rel_y; /* relative y coordinate */
  112. };
  113. /* trackpad header types */
  114. enum tp_type {
  115. TYPE1, /* plain trackpad */
  116. TYPE2 /* button integrated in trackpad */
  117. };
  118. /* trackpad finger data offsets, le16-aligned */
  119. #define FINGER_TYPE1 (13 * sizeof(__le16))
  120. #define FINGER_TYPE2 (15 * sizeof(__le16))
  121. /* trackpad button data offsets */
  122. #define BUTTON_TYPE2 15
  123. /* list of device capability bits */
  124. #define HAS_INTEGRATED_BUTTON 1
  125. /* trackpad finger structure, le16-aligned */
  126. struct tp_finger {
  127. __le16 origin; /* zero when switching track finger */
  128. __le16 abs_x; /* absolute x coodinate */
  129. __le16 abs_y; /* absolute y coodinate */
  130. __le16 rel_x; /* relative x coodinate */
  131. __le16 rel_y; /* relative y coodinate */
  132. __le16 size_major; /* finger size, major axis? */
  133. __le16 size_minor; /* finger size, minor axis? */
  134. __le16 orientation; /* 16384 when point, else 15 bit angle */
  135. __le16 force_major; /* trackpad force, major axis? */
  136. __le16 force_minor; /* trackpad force, minor axis? */
  137. __le16 unused[3]; /* zeros */
  138. __le16 multi; /* one finger: varies, more fingers: constant */
  139. } __attribute__((packed,aligned(2)));
  140. /* trackpad finger data size, empirically at least ten fingers */
  141. #define SIZEOF_FINGER sizeof(struct tp_finger)
  142. #define SIZEOF_ALL_FINGERS (16 * SIZEOF_FINGER)
  143. #define MAX_FINGER_ORIENTATION 16384
  144. /* device-specific parameters */
  145. struct bcm5974_param {
  146. int dim; /* logical dimension */
  147. int fuzz; /* logical noise value */
  148. int devmin; /* device minimum reading */
  149. int devmax; /* device maximum reading */
  150. };
  151. /* device-specific configuration */
  152. struct bcm5974_config {
  153. int ansi, iso, jis; /* the product id of this device */
  154. int caps; /* device capability bitmask */
  155. int bt_ep; /* the endpoint of the button interface */
  156. int bt_datalen; /* data length of the button interface */
  157. int tp_ep; /* the endpoint of the trackpad interface */
  158. enum tp_type tp_type; /* type of trackpad interface */
  159. int tp_offset; /* offset to trackpad finger data */
  160. int tp_datalen; /* data length of the trackpad interface */
  161. struct bcm5974_param p; /* finger pressure limits */
  162. struct bcm5974_param w; /* finger width limits */
  163. struct bcm5974_param x; /* horizontal limits */
  164. struct bcm5974_param y; /* vertical limits */
  165. };
  166. /* logical device structure */
  167. struct bcm5974 {
  168. char phys[64];
  169. struct usb_device *udev; /* usb device */
  170. struct usb_interface *intf; /* our interface */
  171. struct input_dev *input; /* input dev */
  172. struct bcm5974_config cfg; /* device configuration */
  173. struct mutex pm_mutex; /* serialize access to open/suspend */
  174. int opened; /* 1: opened, 0: closed */
  175. struct urb *bt_urb; /* button usb request block */
  176. struct bt_data *bt_data; /* button transferred data */
  177. struct urb *tp_urb; /* trackpad usb request block */
  178. u8 *tp_data; /* trackpad transferred data */
  179. int fingers; /* number of fingers on trackpad */
  180. };
  181. /* logical dimensions */
  182. #define DIM_PRESSURE 256 /* maximum finger pressure */
  183. #define DIM_WIDTH 16 /* maximum finger width */
  184. #define DIM_X 1280 /* maximum trackpad x value */
  185. #define DIM_Y 800 /* maximum trackpad y value */
  186. /* logical signal quality */
  187. #define SN_PRESSURE 45 /* pressure signal-to-noise ratio */
  188. #define SN_WIDTH 100 /* width signal-to-noise ratio */
  189. #define SN_COORD 250 /* coordinate signal-to-noise ratio */
  190. /* pressure thresholds */
  191. #define PRESSURE_LOW (2 * DIM_PRESSURE / SN_PRESSURE)
  192. #define PRESSURE_HIGH (3 * PRESSURE_LOW)
  193. /* device constants */
  194. static const struct bcm5974_config bcm5974_config_table[] = {
  195. {
  196. USB_DEVICE_ID_APPLE_WELLSPRING_ANSI,
  197. USB_DEVICE_ID_APPLE_WELLSPRING_ISO,
  198. USB_DEVICE_ID_APPLE_WELLSPRING_JIS,
  199. 0,
  200. 0x84, sizeof(struct bt_data),
  201. 0x81, TYPE1, FINGER_TYPE1, FINGER_TYPE1 + SIZEOF_ALL_FINGERS,
  202. { DIM_PRESSURE, DIM_PRESSURE / SN_PRESSURE, 0, 256 },
  203. { DIM_WIDTH, DIM_WIDTH / SN_WIDTH, 0, 2048 },
  204. { DIM_X, DIM_X / SN_COORD, -4824, 5342 },
  205. { DIM_Y, DIM_Y / SN_COORD, -172, 5820 }
  206. },
  207. {
  208. USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI,
  209. USB_DEVICE_ID_APPLE_WELLSPRING2_ISO,
  210. USB_DEVICE_ID_APPLE_WELLSPRING2_JIS,
  211. 0,
  212. 0x84, sizeof(struct bt_data),
  213. 0x81, TYPE1, FINGER_TYPE1, FINGER_TYPE1 + SIZEOF_ALL_FINGERS,
  214. { DIM_PRESSURE, DIM_PRESSURE / SN_PRESSURE, 0, 256 },
  215. { DIM_WIDTH, DIM_WIDTH / SN_WIDTH, 0, 2048 },
  216. { DIM_X, DIM_X / SN_COORD, -4824, 4824 },
  217. { DIM_Y, DIM_Y / SN_COORD, -172, 4290 }
  218. },
  219. {
  220. USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI,
  221. USB_DEVICE_ID_APPLE_WELLSPRING3_ISO,
  222. USB_DEVICE_ID_APPLE_WELLSPRING3_JIS,
  223. HAS_INTEGRATED_BUTTON,
  224. 0x84, sizeof(struct bt_data),
  225. 0x81, TYPE2, FINGER_TYPE2, FINGER_TYPE2 + SIZEOF_ALL_FINGERS,
  226. { DIM_PRESSURE, DIM_PRESSURE / SN_PRESSURE, 0, 300 },
  227. { DIM_WIDTH, DIM_WIDTH / SN_WIDTH, 0, 2048 },
  228. { DIM_X, DIM_X / SN_COORD, -4460, 5166 },
  229. { DIM_Y, DIM_Y / SN_COORD, -75, 6700 }
  230. },
  231. {
  232. USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI,
  233. USB_DEVICE_ID_APPLE_WELLSPRING4_ISO,
  234. USB_DEVICE_ID_APPLE_WELLSPRING4_JIS,
  235. HAS_INTEGRATED_BUTTON,
  236. 0x84, sizeof(struct bt_data),
  237. 0x81, TYPE2, FINGER_TYPE2, FINGER_TYPE2 + SIZEOF_ALL_FINGERS,
  238. { DIM_PRESSURE, DIM_PRESSURE / SN_PRESSURE, 0, 300 },
  239. { DIM_WIDTH, DIM_WIDTH / SN_WIDTH, 0, 2048 },
  240. { DIM_X, DIM_X / SN_COORD, -4620, 5140 },
  241. { DIM_Y, DIM_Y / SN_COORD, -150, 6600 }
  242. },
  243. {
  244. USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI,
  245. USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO,
  246. USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS,
  247. HAS_INTEGRATED_BUTTON,
  248. 0x84, sizeof(struct bt_data),
  249. 0x81, TYPE2, FINGER_TYPE2, FINGER_TYPE2 + SIZEOF_ALL_FINGERS,
  250. { DIM_PRESSURE, DIM_PRESSURE / SN_PRESSURE, 0, 300 },
  251. { DIM_WIDTH, DIM_WIDTH / SN_WIDTH, 0, 2048 },
  252. { DIM_X, DIM_X / SN_COORD, -4616, 5112 },
  253. { DIM_Y, DIM_Y / SN_COORD, -142, 5234 }
  254. },
  255. {}
  256. };
  257. /* return the device-specific configuration by device */
  258. static const struct bcm5974_config *bcm5974_get_config(struct usb_device *udev)
  259. {
  260. u16 id = le16_to_cpu(udev->descriptor.idProduct);
  261. const struct bcm5974_config *cfg;
  262. for (cfg = bcm5974_config_table; cfg->ansi; ++cfg)
  263. if (cfg->ansi == id || cfg->iso == id || cfg->jis == id)
  264. return cfg;
  265. return bcm5974_config_table;
  266. }
  267. /* convert 16-bit little endian to signed integer */
  268. static inline int raw2int(__le16 x)
  269. {
  270. return (signed short)le16_to_cpu(x);
  271. }
  272. /* scale device data to logical dimensions (asserts devmin < devmax) */
  273. static inline int int2scale(const struct bcm5974_param *p, int x)
  274. {
  275. return x * p->dim / (p->devmax - p->devmin);
  276. }
  277. /* all logical value ranges are [0,dim). */
  278. static inline int int2bound(const struct bcm5974_param *p, int x)
  279. {
  280. int s = int2scale(p, x);
  281. return clamp_val(s, 0, p->dim - 1);
  282. }
  283. /* setup which logical events to report */
  284. static void setup_events_to_report(struct input_dev *input_dev,
  285. const struct bcm5974_config *cfg)
  286. {
  287. __set_bit(EV_ABS, input_dev->evbit);
  288. input_set_abs_params(input_dev, ABS_PRESSURE,
  289. 0, cfg->p.dim, cfg->p.fuzz, 0);
  290. input_set_abs_params(input_dev, ABS_TOOL_WIDTH,
  291. 0, cfg->w.dim, cfg->w.fuzz, 0);
  292. input_set_abs_params(input_dev, ABS_X,
  293. 0, cfg->x.dim, cfg->x.fuzz, 0);
  294. input_set_abs_params(input_dev, ABS_Y,
  295. 0, cfg->y.dim, cfg->y.fuzz, 0);
  296. /* finger touch area */
  297. input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR,
  298. cfg->w.devmin, cfg->w.devmax, 0, 0);
  299. input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR,
  300. cfg->w.devmin, cfg->w.devmax, 0, 0);
  301. /* finger approach area */
  302. input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR,
  303. cfg->w.devmin, cfg->w.devmax, 0, 0);
  304. input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR,
  305. cfg->w.devmin, cfg->w.devmax, 0, 0);
  306. /* finger orientation */
  307. input_set_abs_params(input_dev, ABS_MT_ORIENTATION,
  308. -MAX_FINGER_ORIENTATION,
  309. MAX_FINGER_ORIENTATION, 0, 0);
  310. /* finger position */
  311. input_set_abs_params(input_dev, ABS_MT_POSITION_X,
  312. cfg->x.devmin, cfg->x.devmax, 0, 0);
  313. input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
  314. cfg->y.devmin, cfg->y.devmax, 0, 0);
  315. __set_bit(EV_KEY, input_dev->evbit);
  316. __set_bit(BTN_TOUCH, input_dev->keybit);
  317. __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
  318. __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
  319. __set_bit(BTN_TOOL_TRIPLETAP, input_dev->keybit);
  320. __set_bit(BTN_TOOL_QUADTAP, input_dev->keybit);
  321. __set_bit(BTN_LEFT, input_dev->keybit);
  322. input_set_events_per_packet(input_dev, 60);
  323. }
  324. /* report button data as logical button state */
  325. static int report_bt_state(struct bcm5974 *dev, int size)
  326. {
  327. if (size != sizeof(struct bt_data))
  328. return -EIO;
  329. dprintk(7,
  330. "bcm5974: button data: %x %x %x %x\n",
  331. dev->bt_data->unknown1, dev->bt_data->button,
  332. dev->bt_data->rel_x, dev->bt_data->rel_y);
  333. input_report_key(dev->input, BTN_LEFT, dev->bt_data->button);
  334. input_sync(dev->input);
  335. return 0;
  336. }
  337. static void report_finger_data(struct input_dev *input,
  338. const struct bcm5974_config *cfg,
  339. const struct tp_finger *f)
  340. {
  341. input_report_abs(input, ABS_MT_TOUCH_MAJOR,
  342. raw2int(f->force_major) << 1);
  343. input_report_abs(input, ABS_MT_TOUCH_MINOR,
  344. raw2int(f->force_minor) << 1);
  345. input_report_abs(input, ABS_MT_WIDTH_MAJOR,
  346. raw2int(f->size_major) << 1);
  347. input_report_abs(input, ABS_MT_WIDTH_MINOR,
  348. raw2int(f->size_minor) << 1);
  349. input_report_abs(input, ABS_MT_ORIENTATION,
  350. MAX_FINGER_ORIENTATION - raw2int(f->orientation));
  351. input_report_abs(input, ABS_MT_POSITION_X, raw2int(f->abs_x));
  352. input_report_abs(input, ABS_MT_POSITION_Y,
  353. cfg->y.devmin + cfg->y.devmax - raw2int(f->abs_y));
  354. input_mt_sync(input);
  355. }
  356. /* report trackpad data as logical trackpad state */
  357. static int report_tp_state(struct bcm5974 *dev, int size)
  358. {
  359. const struct bcm5974_config *c = &dev->cfg;
  360. const struct tp_finger *f;
  361. struct input_dev *input = dev->input;
  362. int raw_p, raw_w, raw_x, raw_y, raw_n, i;
  363. int ptest, origin, ibt = 0, nmin = 0, nmax = 0;
  364. int abs_p = 0, abs_w = 0, abs_x = 0, abs_y = 0;
  365. if (size < c->tp_offset || (size - c->tp_offset) % SIZEOF_FINGER != 0)
  366. return -EIO;
  367. /* finger data, le16-aligned */
  368. f = (const struct tp_finger *)(dev->tp_data + c->tp_offset);
  369. raw_n = (size - c->tp_offset) / SIZEOF_FINGER;
  370. /* always track the first finger; when detached, start over */
  371. if (raw_n) {
  372. /* report raw trackpad data */
  373. for (i = 0; i < raw_n; i++)
  374. report_finger_data(input, c, &f[i]);
  375. raw_p = raw2int(f->force_major);
  376. raw_w = raw2int(f->size_major);
  377. raw_x = raw2int(f->abs_x);
  378. raw_y = raw2int(f->abs_y);
  379. dprintk(9,
  380. "bcm5974: "
  381. "raw: p: %+05d w: %+05d x: %+05d y: %+05d n: %d\n",
  382. raw_p, raw_w, raw_x, raw_y, raw_n);
  383. ptest = int2bound(&c->p, raw_p);
  384. origin = raw2int(f->origin);
  385. /* set the integrated button if applicable */
  386. if (c->tp_type == TYPE2)
  387. ibt = raw2int(dev->tp_data[BUTTON_TYPE2]);
  388. /* while tracking finger still valid, count all fingers */
  389. if (ptest > PRESSURE_LOW && origin) {
  390. abs_p = ptest;
  391. abs_w = int2bound(&c->w, raw_w);
  392. abs_x = int2bound(&c->x, raw_x - c->x.devmin);
  393. abs_y = int2bound(&c->y, c->y.devmax - raw_y);
  394. while (raw_n--) {
  395. ptest = int2bound(&c->p,
  396. raw2int(f->force_major));
  397. if (ptest > PRESSURE_LOW)
  398. nmax++;
  399. if (ptest > PRESSURE_HIGH)
  400. nmin++;
  401. f++;
  402. }
  403. }
  404. }
  405. if (dev->fingers < nmin)
  406. dev->fingers = nmin;
  407. if (dev->fingers > nmax)
  408. dev->fingers = nmax;
  409. input_report_key(input, BTN_TOUCH, dev->fingers > 0);
  410. input_report_key(input, BTN_TOOL_FINGER, dev->fingers == 1);
  411. input_report_key(input, BTN_TOOL_DOUBLETAP, dev->fingers == 2);
  412. input_report_key(input, BTN_TOOL_TRIPLETAP, dev->fingers == 3);
  413. input_report_key(input, BTN_TOOL_QUADTAP, dev->fingers > 3);
  414. input_report_abs(input, ABS_PRESSURE, abs_p);
  415. input_report_abs(input, ABS_TOOL_WIDTH, abs_w);
  416. if (abs_p) {
  417. input_report_abs(input, ABS_X, abs_x);
  418. input_report_abs(input, ABS_Y, abs_y);
  419. dprintk(8,
  420. "bcm5974: abs: p: %+05d w: %+05d x: %+05d y: %+05d "
  421. "nmin: %d nmax: %d n: %d ibt: %d\n", abs_p, abs_w,
  422. abs_x, abs_y, nmin, nmax, dev->fingers, ibt);
  423. }
  424. /* type 2 reports button events via ibt only */
  425. if (c->tp_type == TYPE2)
  426. input_report_key(input, BTN_LEFT, ibt);
  427. input_sync(input);
  428. return 0;
  429. }
  430. /* Wellspring initialization constants */
  431. #define BCM5974_WELLSPRING_MODE_READ_REQUEST_ID 1
  432. #define BCM5974_WELLSPRING_MODE_WRITE_REQUEST_ID 9
  433. #define BCM5974_WELLSPRING_MODE_REQUEST_VALUE 0x300
  434. #define BCM5974_WELLSPRING_MODE_REQUEST_INDEX 0
  435. #define BCM5974_WELLSPRING_MODE_VENDOR_VALUE 0x01
  436. #define BCM5974_WELLSPRING_MODE_NORMAL_VALUE 0x08
  437. static int bcm5974_wellspring_mode(struct bcm5974 *dev, bool on)
  438. {
  439. char *data = kmalloc(8, GFP_KERNEL);
  440. int retval = 0, size;
  441. if (!data) {
  442. err("bcm5974: out of memory");
  443. retval = -ENOMEM;
  444. goto out;
  445. }
  446. /* read configuration */
  447. size = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
  448. BCM5974_WELLSPRING_MODE_READ_REQUEST_ID,
  449. USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
  450. BCM5974_WELLSPRING_MODE_REQUEST_VALUE,
  451. BCM5974_WELLSPRING_MODE_REQUEST_INDEX, data, 8, 5000);
  452. if (size != 8) {
  453. err("bcm5974: could not read from device");
  454. retval = -EIO;
  455. goto out;
  456. }
  457. /* apply the mode switch */
  458. data[0] = on ?
  459. BCM5974_WELLSPRING_MODE_VENDOR_VALUE :
  460. BCM5974_WELLSPRING_MODE_NORMAL_VALUE;
  461. /* write configuration */
  462. size = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
  463. BCM5974_WELLSPRING_MODE_WRITE_REQUEST_ID,
  464. USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
  465. BCM5974_WELLSPRING_MODE_REQUEST_VALUE,
  466. BCM5974_WELLSPRING_MODE_REQUEST_INDEX, data, 8, 5000);
  467. if (size != 8) {
  468. err("bcm5974: could not write to device");
  469. retval = -EIO;
  470. goto out;
  471. }
  472. dprintk(2, "bcm5974: switched to %s mode.\n",
  473. on ? "wellspring" : "normal");
  474. out:
  475. kfree(data);
  476. return retval;
  477. }
  478. static void bcm5974_irq_button(struct urb *urb)
  479. {
  480. struct bcm5974 *dev = urb->context;
  481. int error;
  482. switch (urb->status) {
  483. case 0:
  484. break;
  485. case -EOVERFLOW:
  486. case -ECONNRESET:
  487. case -ENOENT:
  488. case -ESHUTDOWN:
  489. dbg("bcm5974: button urb shutting down: %d", urb->status);
  490. return;
  491. default:
  492. dbg("bcm5974: button urb status: %d", urb->status);
  493. goto exit;
  494. }
  495. if (report_bt_state(dev, dev->bt_urb->actual_length))
  496. dprintk(1, "bcm5974: bad button package, length: %d\n",
  497. dev->bt_urb->actual_length);
  498. exit:
  499. error = usb_submit_urb(dev->bt_urb, GFP_ATOMIC);
  500. if (error)
  501. err("bcm5974: button urb failed: %d", error);
  502. }
  503. static void bcm5974_irq_trackpad(struct urb *urb)
  504. {
  505. struct bcm5974 *dev = urb->context;
  506. int error;
  507. switch (urb->status) {
  508. case 0:
  509. break;
  510. case -EOVERFLOW:
  511. case -ECONNRESET:
  512. case -ENOENT:
  513. case -ESHUTDOWN:
  514. dbg("bcm5974: trackpad urb shutting down: %d", urb->status);
  515. return;
  516. default:
  517. dbg("bcm5974: trackpad urb status: %d", urb->status);
  518. goto exit;
  519. }
  520. /* control response ignored */
  521. if (dev->tp_urb->actual_length == 2)
  522. goto exit;
  523. if (report_tp_state(dev, dev->tp_urb->actual_length))
  524. dprintk(1, "bcm5974: bad trackpad package, length: %d\n",
  525. dev->tp_urb->actual_length);
  526. exit:
  527. error = usb_submit_urb(dev->tp_urb, GFP_ATOMIC);
  528. if (error)
  529. err("bcm5974: trackpad urb failed: %d", error);
  530. }
  531. /*
  532. * The Wellspring trackpad, like many recent Apple trackpads, share
  533. * the usb device with the keyboard. Since keyboards are usually
  534. * handled by the HID system, the device ends up being handled by two
  535. * modules. Setting up the device therefore becomes slightly
  536. * complicated. To enable multitouch features, a mode switch is
  537. * required, which is usually applied via the control interface of the
  538. * device. It can be argued where this switch should take place. In
  539. * some drivers, like appletouch, the switch is made during
  540. * probe. However, the hid module may also alter the state of the
  541. * device, resulting in trackpad malfunction under certain
  542. * circumstances. To get around this problem, there is at least one
  543. * example that utilizes the USB_QUIRK_RESET_RESUME quirk in order to
  544. * recieve a reset_resume request rather than the normal resume.
  545. * Since the implementation of reset_resume is equal to mode switch
  546. * plus start_traffic, it seems easier to always do the switch when
  547. * starting traffic on the device.
  548. */
  549. static int bcm5974_start_traffic(struct bcm5974 *dev)
  550. {
  551. int error;
  552. error = bcm5974_wellspring_mode(dev, true);
  553. if (error) {
  554. dprintk(1, "bcm5974: mode switch failed\n");
  555. goto err_out;
  556. }
  557. error = usb_submit_urb(dev->bt_urb, GFP_KERNEL);
  558. if (error)
  559. goto err_reset_mode;
  560. error = usb_submit_urb(dev->tp_urb, GFP_KERNEL);
  561. if (error)
  562. goto err_kill_bt;
  563. return 0;
  564. err_kill_bt:
  565. usb_kill_urb(dev->bt_urb);
  566. err_reset_mode:
  567. bcm5974_wellspring_mode(dev, false);
  568. err_out:
  569. return error;
  570. }
  571. static void bcm5974_pause_traffic(struct bcm5974 *dev)
  572. {
  573. usb_kill_urb(dev->tp_urb);
  574. usb_kill_urb(dev->bt_urb);
  575. bcm5974_wellspring_mode(dev, false);
  576. }
  577. /*
  578. * The code below implements open/close and manual suspend/resume.
  579. * All functions may be called in random order.
  580. *
  581. * Opening a suspended device fails with EACCES - permission denied.
  582. *
  583. * Failing a resume leaves the device resumed but closed.
  584. */
  585. static int bcm5974_open(struct input_dev *input)
  586. {
  587. struct bcm5974 *dev = input_get_drvdata(input);
  588. int error;
  589. error = usb_autopm_get_interface(dev->intf);
  590. if (error)
  591. return error;
  592. mutex_lock(&dev->pm_mutex);
  593. error = bcm5974_start_traffic(dev);
  594. if (!error)
  595. dev->opened = 1;
  596. mutex_unlock(&dev->pm_mutex);
  597. if (error)
  598. usb_autopm_put_interface(dev->intf);
  599. return error;
  600. }
  601. static void bcm5974_close(struct input_dev *input)
  602. {
  603. struct bcm5974 *dev = input_get_drvdata(input);
  604. mutex_lock(&dev->pm_mutex);
  605. bcm5974_pause_traffic(dev);
  606. dev->opened = 0;
  607. mutex_unlock(&dev->pm_mutex);
  608. usb_autopm_put_interface(dev->intf);
  609. }
  610. static int bcm5974_suspend(struct usb_interface *iface, pm_message_t message)
  611. {
  612. struct bcm5974 *dev = usb_get_intfdata(iface);
  613. mutex_lock(&dev->pm_mutex);
  614. if (dev->opened)
  615. bcm5974_pause_traffic(dev);
  616. mutex_unlock(&dev->pm_mutex);
  617. return 0;
  618. }
  619. static int bcm5974_resume(struct usb_interface *iface)
  620. {
  621. struct bcm5974 *dev = usb_get_intfdata(iface);
  622. int error = 0;
  623. mutex_lock(&dev->pm_mutex);
  624. if (dev->opened)
  625. error = bcm5974_start_traffic(dev);
  626. mutex_unlock(&dev->pm_mutex);
  627. return error;
  628. }
  629. static int bcm5974_probe(struct usb_interface *iface,
  630. const struct usb_device_id *id)
  631. {
  632. struct usb_device *udev = interface_to_usbdev(iface);
  633. const struct bcm5974_config *cfg;
  634. struct bcm5974 *dev;
  635. struct input_dev *input_dev;
  636. int error = -ENOMEM;
  637. /* find the product index */
  638. cfg = bcm5974_get_config(udev);
  639. /* allocate memory for our device state and initialize it */
  640. dev = kzalloc(sizeof(struct bcm5974), GFP_KERNEL);
  641. input_dev = input_allocate_device();
  642. if (!dev || !input_dev) {
  643. err("bcm5974: out of memory");
  644. goto err_free_devs;
  645. }
  646. dev->udev = udev;
  647. dev->intf = iface;
  648. dev->input = input_dev;
  649. dev->cfg = *cfg;
  650. mutex_init(&dev->pm_mutex);
  651. /* setup urbs */
  652. dev->bt_urb = usb_alloc_urb(0, GFP_KERNEL);
  653. if (!dev->bt_urb)
  654. goto err_free_devs;
  655. dev->tp_urb = usb_alloc_urb(0, GFP_KERNEL);
  656. if (!dev->tp_urb)
  657. goto err_free_bt_urb;
  658. dev->bt_data = usb_alloc_coherent(dev->udev,
  659. dev->cfg.bt_datalen, GFP_KERNEL,
  660. &dev->bt_urb->transfer_dma);
  661. if (!dev->bt_data)
  662. goto err_free_urb;
  663. dev->tp_data = usb_alloc_coherent(dev->udev,
  664. dev->cfg.tp_datalen, GFP_KERNEL,
  665. &dev->tp_urb->transfer_dma);
  666. if (!dev->tp_data)
  667. goto err_free_bt_buffer;
  668. usb_fill_int_urb(dev->bt_urb, udev,
  669. usb_rcvintpipe(udev, cfg->bt_ep),
  670. dev->bt_data, dev->cfg.bt_datalen,
  671. bcm5974_irq_button, dev, 1);
  672. usb_fill_int_urb(dev->tp_urb, udev,
  673. usb_rcvintpipe(udev, cfg->tp_ep),
  674. dev->tp_data, dev->cfg.tp_datalen,
  675. bcm5974_irq_trackpad, dev, 1);
  676. /* create bcm5974 device */
  677. usb_make_path(udev, dev->phys, sizeof(dev->phys));
  678. strlcat(dev->phys, "/input0", sizeof(dev->phys));
  679. input_dev->name = "bcm5974";
  680. input_dev->phys = dev->phys;
  681. usb_to_input_id(dev->udev, &input_dev->id);
  682. /* report driver capabilities via the version field */
  683. input_dev->id.version = cfg->caps;
  684. input_dev->dev.parent = &iface->dev;
  685. input_set_drvdata(input_dev, dev);
  686. input_dev->open = bcm5974_open;
  687. input_dev->close = bcm5974_close;
  688. setup_events_to_report(input_dev, cfg);
  689. error = input_register_device(dev->input);
  690. if (error)
  691. goto err_free_buffer;
  692. /* save our data pointer in this interface device */
  693. usb_set_intfdata(iface, dev);
  694. return 0;
  695. err_free_buffer:
  696. usb_free_coherent(dev->udev, dev->cfg.tp_datalen,
  697. dev->tp_data, dev->tp_urb->transfer_dma);
  698. err_free_bt_buffer:
  699. usb_free_coherent(dev->udev, dev->cfg.bt_datalen,
  700. dev->bt_data, dev->bt_urb->transfer_dma);
  701. err_free_urb:
  702. usb_free_urb(dev->tp_urb);
  703. err_free_bt_urb:
  704. usb_free_urb(dev->bt_urb);
  705. err_free_devs:
  706. usb_set_intfdata(iface, NULL);
  707. input_free_device(input_dev);
  708. kfree(dev);
  709. return error;
  710. }
  711. static void bcm5974_disconnect(struct usb_interface *iface)
  712. {
  713. struct bcm5974 *dev = usb_get_intfdata(iface);
  714. usb_set_intfdata(iface, NULL);
  715. input_unregister_device(dev->input);
  716. usb_free_coherent(dev->udev, dev->cfg.tp_datalen,
  717. dev->tp_data, dev->tp_urb->transfer_dma);
  718. usb_free_coherent(dev->udev, dev->cfg.bt_datalen,
  719. dev->bt_data, dev->bt_urb->transfer_dma);
  720. usb_free_urb(dev->tp_urb);
  721. usb_free_urb(dev->bt_urb);
  722. kfree(dev);
  723. }
  724. static struct usb_driver bcm5974_driver = {
  725. .name = "bcm5974",
  726. .probe = bcm5974_probe,
  727. .disconnect = bcm5974_disconnect,
  728. .suspend = bcm5974_suspend,
  729. .resume = bcm5974_resume,
  730. .id_table = bcm5974_table,
  731. .supports_autosuspend = 1,
  732. };
  733. static int __init bcm5974_init(void)
  734. {
  735. return usb_register(&bcm5974_driver);
  736. }
  737. static void __exit bcm5974_exit(void)
  738. {
  739. usb_deregister(&bcm5974_driver);
  740. }
  741. module_init(bcm5974_init);
  742. module_exit(bcm5974_exit);