synaptics.c 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688
  1. /*
  2. * Synaptics TouchPad PS/2 mouse driver
  3. *
  4. * 2003 Dmitry Torokhov <dtor@mail.ru>
  5. * Added support for pass-through port. Special thanks to Peter Berg Larsen
  6. * for explaining various Synaptics quirks.
  7. *
  8. * 2003 Peter Osterlund <petero2@telia.com>
  9. * Ported to 2.5 input device infrastructure.
  10. *
  11. * Copyright (C) 2001 Stefan Gmeiner <riddlebox@freesurf.ch>
  12. * start merging tpconfig and gpm code to a xfree-input module
  13. * adding some changes and extensions (ex. 3rd and 4th button)
  14. *
  15. * Copyright (c) 1997 C. Scott Ananian <cananian@alumni.priceton.edu>
  16. * Copyright (c) 1998-2000 Bruce Kalk <kall@compass.com>
  17. * code for the special synaptics commands (from the tpconfig-source)
  18. *
  19. * This program is free software; you can redistribute it and/or modify it
  20. * under the terms of the GNU General Public License version 2 as published by
  21. * the Free Software Foundation.
  22. *
  23. * Trademarks are the property of their respective owners.
  24. */
  25. #include <linux/module.h>
  26. #include <linux/delay.h>
  27. #include <linux/dmi.h>
  28. #include <linux/input/mt.h>
  29. #include <linux/serio.h>
  30. #include <linux/libps2.h>
  31. #include <linux/slab.h>
  32. #include "psmouse.h"
  33. #include "synaptics.h"
  34. /*
  35. * The x/y limits are taken from the Synaptics TouchPad interfacing Guide,
  36. * section 2.3.2, which says that they should be valid regardless of the
  37. * actual size of the sensor.
  38. * Note that newer firmware allows querying device for maximum useable
  39. * coordinates.
  40. */
  41. #define XMIN 0
  42. #define XMAX 6143
  43. #define YMIN 0
  44. #define YMAX 6143
  45. #define XMIN_NOMINAL 1472
  46. #define XMAX_NOMINAL 5472
  47. #define YMIN_NOMINAL 1408
  48. #define YMAX_NOMINAL 4448
  49. /* Size in bits of absolute position values reported by the hardware */
  50. #define ABS_POS_BITS 13
  51. /*
  52. * These values should represent the absolute maximum value that will
  53. * be reported for a positive position value. Some Synaptics firmware
  54. * uses this value to indicate a finger near the edge of the touchpad
  55. * whose precise position cannot be determined.
  56. *
  57. * At least one touchpad is known to report positions in excess of this
  58. * value which are actually negative values truncated to the 13-bit
  59. * reporting range. These values have never been observed to be lower
  60. * than 8184 (i.e. -8), so we treat all values greater than 8176 as
  61. * negative and any other value as positive.
  62. */
  63. #define X_MAX_POSITIVE 8176
  64. #define Y_MAX_POSITIVE 8176
  65. /*****************************************************************************
  66. * Stuff we need even when we do not want native Synaptics support
  67. ****************************************************************************/
  68. /*
  69. * Set the synaptics touchpad mode byte by special commands
  70. */
  71. static int synaptics_mode_cmd(struct psmouse *psmouse, unsigned char mode)
  72. {
  73. unsigned char param[1];
  74. if (psmouse_sliced_command(psmouse, mode))
  75. return -1;
  76. param[0] = SYN_PS_SET_MODE2;
  77. if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_SETRATE))
  78. return -1;
  79. return 0;
  80. }
  81. int synaptics_detect(struct psmouse *psmouse, bool set_properties)
  82. {
  83. struct ps2dev *ps2dev = &psmouse->ps2dev;
  84. unsigned char param[4];
  85. param[0] = 0;
  86. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  87. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  88. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  89. ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES);
  90. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO);
  91. if (param[1] != 0x47)
  92. return -ENODEV;
  93. if (set_properties) {
  94. psmouse->vendor = "Synaptics";
  95. psmouse->name = "TouchPad";
  96. }
  97. return 0;
  98. }
  99. void synaptics_reset(struct psmouse *psmouse)
  100. {
  101. /* reset touchpad back to relative mode, gestures enabled */
  102. synaptics_mode_cmd(psmouse, 0);
  103. }
  104. #ifdef CONFIG_MOUSE_PS2_SYNAPTICS
  105. /*****************************************************************************
  106. * Synaptics communications functions
  107. ****************************************************************************/
  108. /*
  109. * Synaptics touchpads report the y coordinate from bottom to top, which is
  110. * opposite from what userspace expects.
  111. * This function is used to invert y before reporting.
  112. */
  113. static int synaptics_invert_y(int y)
  114. {
  115. return YMAX_NOMINAL + YMIN_NOMINAL - y;
  116. }
  117. /*
  118. * Send a command to the synpatics touchpad by special commands
  119. */
  120. static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c, unsigned char *param)
  121. {
  122. if (psmouse_sliced_command(psmouse, c))
  123. return -1;
  124. if (ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO))
  125. return -1;
  126. return 0;
  127. }
  128. /*
  129. * Read the model-id bytes from the touchpad
  130. * see also SYN_MODEL_* macros
  131. */
  132. static int synaptics_model_id(struct psmouse *psmouse)
  133. {
  134. struct synaptics_data *priv = psmouse->private;
  135. unsigned char mi[3];
  136. if (synaptics_send_cmd(psmouse, SYN_QUE_MODEL, mi))
  137. return -1;
  138. priv->model_id = (mi[0]<<16) | (mi[1]<<8) | mi[2];
  139. return 0;
  140. }
  141. /*
  142. * Read the board id from the touchpad
  143. * The board id is encoded in the "QUERY MODES" response
  144. */
  145. static int synaptics_board_id(struct psmouse *psmouse)
  146. {
  147. struct synaptics_data *priv = psmouse->private;
  148. unsigned char bid[3];
  149. if (synaptics_send_cmd(psmouse, SYN_QUE_MODES, bid))
  150. return -1;
  151. priv->board_id = ((bid[0] & 0xfc) << 6) | bid[1];
  152. return 0;
  153. }
  154. /*
  155. * Read the firmware id from the touchpad
  156. */
  157. static int synaptics_firmware_id(struct psmouse *psmouse)
  158. {
  159. struct synaptics_data *priv = psmouse->private;
  160. unsigned char fwid[3];
  161. if (synaptics_send_cmd(psmouse, SYN_QUE_FIRMWARE_ID, fwid))
  162. return -1;
  163. priv->firmware_id = (fwid[0] << 16) | (fwid[1] << 8) | fwid[2];
  164. return 0;
  165. }
  166. /*
  167. * Read the capability-bits from the touchpad
  168. * see also the SYN_CAP_* macros
  169. */
  170. static int synaptics_capability(struct psmouse *psmouse)
  171. {
  172. struct synaptics_data *priv = psmouse->private;
  173. unsigned char cap[3];
  174. if (synaptics_send_cmd(psmouse, SYN_QUE_CAPABILITIES, cap))
  175. return -1;
  176. priv->capabilities = (cap[0] << 16) | (cap[1] << 8) | cap[2];
  177. priv->ext_cap = priv->ext_cap_0c = 0;
  178. /*
  179. * Older firmwares had submodel ID fixed to 0x47
  180. */
  181. if (SYN_ID_FULL(priv->identity) < 0x705 &&
  182. SYN_CAP_SUBMODEL_ID(priv->capabilities) != 0x47) {
  183. return -1;
  184. }
  185. /*
  186. * Unless capExtended is set the rest of the flags should be ignored
  187. */
  188. if (!SYN_CAP_EXTENDED(priv->capabilities))
  189. priv->capabilities = 0;
  190. if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 1) {
  191. if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB, cap)) {
  192. psmouse_warn(psmouse,
  193. "device claims to have extended capabilities, but I'm not able to read them.\n");
  194. } else {
  195. priv->ext_cap = (cap[0] << 16) | (cap[1] << 8) | cap[2];
  196. /*
  197. * if nExtBtn is greater than 8 it should be considered
  198. * invalid and treated as 0
  199. */
  200. if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) > 8)
  201. priv->ext_cap &= 0xff0fff;
  202. }
  203. }
  204. if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 4) {
  205. if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_CAPAB_0C, cap)) {
  206. psmouse_warn(psmouse,
  207. "device claims to have extended capability 0x0c, but I'm not able to read it.\n");
  208. } else {
  209. priv->ext_cap_0c = (cap[0] << 16) | (cap[1] << 8) | cap[2];
  210. }
  211. }
  212. return 0;
  213. }
  214. /*
  215. * Identify Touchpad
  216. * See also the SYN_ID_* macros
  217. */
  218. static int synaptics_identify(struct psmouse *psmouse)
  219. {
  220. struct synaptics_data *priv = psmouse->private;
  221. unsigned char id[3];
  222. if (synaptics_send_cmd(psmouse, SYN_QUE_IDENTIFY, id))
  223. return -1;
  224. priv->identity = (id[0]<<16) | (id[1]<<8) | id[2];
  225. if (SYN_ID_IS_SYNAPTICS(priv->identity))
  226. return 0;
  227. return -1;
  228. }
  229. /*
  230. * Read touchpad resolution and maximum reported coordinates
  231. * Resolution is left zero if touchpad does not support the query
  232. */
  233. static const int *quirk_min_max;
  234. static int synaptics_resolution(struct psmouse *psmouse)
  235. {
  236. struct synaptics_data *priv = psmouse->private;
  237. unsigned char resp[3];
  238. if (quirk_min_max) {
  239. priv->x_min = quirk_min_max[0];
  240. priv->x_max = quirk_min_max[1];
  241. priv->y_min = quirk_min_max[2];
  242. priv->y_max = quirk_min_max[3];
  243. return 0;
  244. }
  245. if (SYN_ID_MAJOR(priv->identity) < 4)
  246. return 0;
  247. if (synaptics_send_cmd(psmouse, SYN_QUE_RESOLUTION, resp) == 0) {
  248. if (resp[0] != 0 && (resp[1] & 0x80) && resp[2] != 0) {
  249. priv->x_res = resp[0]; /* x resolution in units/mm */
  250. priv->y_res = resp[2]; /* y resolution in units/mm */
  251. }
  252. }
  253. if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 5 &&
  254. SYN_CAP_MAX_DIMENSIONS(priv->ext_cap_0c)) {
  255. if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MAX_COORDS, resp)) {
  256. psmouse_warn(psmouse,
  257. "device claims to have max coordinates query, but I'm not able to read it.\n");
  258. } else {
  259. priv->x_max = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
  260. priv->y_max = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
  261. }
  262. }
  263. if (SYN_EXT_CAP_REQUESTS(priv->capabilities) >= 7 &&
  264. SYN_CAP_MIN_DIMENSIONS(priv->ext_cap_0c)) {
  265. if (synaptics_send_cmd(psmouse, SYN_QUE_EXT_MIN_COORDS, resp)) {
  266. psmouse_warn(psmouse,
  267. "device claims to have min coordinates query, but I'm not able to read it.\n");
  268. } else {
  269. priv->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1);
  270. priv->y_min = (resp[2] << 5) | ((resp[1] & 0xf0) >> 3);
  271. }
  272. }
  273. return 0;
  274. }
  275. static int synaptics_query_hardware(struct psmouse *psmouse)
  276. {
  277. if (synaptics_identify(psmouse))
  278. return -1;
  279. if (synaptics_model_id(psmouse))
  280. return -1;
  281. if (synaptics_firmware_id(psmouse))
  282. return -1;
  283. if (synaptics_board_id(psmouse))
  284. return -1;
  285. if (synaptics_capability(psmouse))
  286. return -1;
  287. if (synaptics_resolution(psmouse))
  288. return -1;
  289. return 0;
  290. }
  291. static int synaptics_set_advanced_gesture_mode(struct psmouse *psmouse)
  292. {
  293. static unsigned char param = 0xc8;
  294. struct synaptics_data *priv = psmouse->private;
  295. if (!(SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
  296. SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)))
  297. return 0;
  298. if (psmouse_sliced_command(psmouse, SYN_QUE_MODEL))
  299. return -1;
  300. if (ps2_command(&psmouse->ps2dev, &param, PSMOUSE_CMD_SETRATE))
  301. return -1;
  302. /* Advanced gesture mode also sends multi finger data */
  303. priv->capabilities |= BIT(1);
  304. return 0;
  305. }
  306. static int synaptics_set_mode(struct psmouse *psmouse)
  307. {
  308. struct synaptics_data *priv = psmouse->private;
  309. priv->mode = 0;
  310. if (priv->absolute_mode)
  311. priv->mode |= SYN_BIT_ABSOLUTE_MODE;
  312. if (priv->disable_gesture)
  313. priv->mode |= SYN_BIT_DISABLE_GESTURE;
  314. if (psmouse->rate >= 80)
  315. priv->mode |= SYN_BIT_HIGH_RATE;
  316. if (SYN_CAP_EXTENDED(priv->capabilities))
  317. priv->mode |= SYN_BIT_W_MODE;
  318. if (synaptics_mode_cmd(psmouse, priv->mode))
  319. return -1;
  320. if (priv->absolute_mode &&
  321. synaptics_set_advanced_gesture_mode(psmouse)) {
  322. psmouse_err(psmouse, "Advanced gesture mode init failed.\n");
  323. return -1;
  324. }
  325. return 0;
  326. }
  327. static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
  328. {
  329. struct synaptics_data *priv = psmouse->private;
  330. if (rate >= 80) {
  331. priv->mode |= SYN_BIT_HIGH_RATE;
  332. psmouse->rate = 80;
  333. } else {
  334. priv->mode &= ~SYN_BIT_HIGH_RATE;
  335. psmouse->rate = 40;
  336. }
  337. synaptics_mode_cmd(psmouse, priv->mode);
  338. }
  339. /*****************************************************************************
  340. * Synaptics pass-through PS/2 port support
  341. ****************************************************************************/
  342. static int synaptics_pt_write(struct serio *serio, unsigned char c)
  343. {
  344. struct psmouse *parent = serio_get_drvdata(serio->parent);
  345. char rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
  346. if (psmouse_sliced_command(parent, c))
  347. return -1;
  348. if (ps2_command(&parent->ps2dev, &rate_param, PSMOUSE_CMD_SETRATE))
  349. return -1;
  350. return 0;
  351. }
  352. static int synaptics_pt_start(struct serio *serio)
  353. {
  354. struct psmouse *parent = serio_get_drvdata(serio->parent);
  355. struct synaptics_data *priv = parent->private;
  356. serio_pause_rx(parent->ps2dev.serio);
  357. priv->pt_port = serio;
  358. serio_continue_rx(parent->ps2dev.serio);
  359. return 0;
  360. }
  361. static void synaptics_pt_stop(struct serio *serio)
  362. {
  363. struct psmouse *parent = serio_get_drvdata(serio->parent);
  364. struct synaptics_data *priv = parent->private;
  365. serio_pause_rx(parent->ps2dev.serio);
  366. priv->pt_port = NULL;
  367. serio_continue_rx(parent->ps2dev.serio);
  368. }
  369. static int synaptics_is_pt_packet(unsigned char *buf)
  370. {
  371. return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
  372. }
  373. static void synaptics_pass_pt_packet(struct serio *ptport, unsigned char *packet)
  374. {
  375. struct psmouse *child = serio_get_drvdata(ptport);
  376. if (child && child->state == PSMOUSE_ACTIVATED) {
  377. serio_interrupt(ptport, packet[1], 0);
  378. serio_interrupt(ptport, packet[4], 0);
  379. serio_interrupt(ptport, packet[5], 0);
  380. if (child->pktsize == 4)
  381. serio_interrupt(ptport, packet[2], 0);
  382. } else
  383. serio_interrupt(ptport, packet[1], 0);
  384. }
  385. static void synaptics_pt_activate(struct psmouse *psmouse)
  386. {
  387. struct synaptics_data *priv = psmouse->private;
  388. struct psmouse *child = serio_get_drvdata(priv->pt_port);
  389. /* adjust the touchpad to child's choice of protocol */
  390. if (child) {
  391. if (child->pktsize == 4)
  392. priv->mode |= SYN_BIT_FOUR_BYTE_CLIENT;
  393. else
  394. priv->mode &= ~SYN_BIT_FOUR_BYTE_CLIENT;
  395. if (synaptics_mode_cmd(psmouse, priv->mode))
  396. psmouse_warn(psmouse,
  397. "failed to switch guest protocol\n");
  398. }
  399. }
  400. static void synaptics_pt_create(struct psmouse *psmouse)
  401. {
  402. struct serio *serio;
  403. serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
  404. if (!serio) {
  405. psmouse_err(psmouse,
  406. "not enough memory for pass-through port\n");
  407. return;
  408. }
  409. serio->id.type = SERIO_PS_PSTHRU;
  410. strlcpy(serio->name, "Synaptics pass-through", sizeof(serio->name));
  411. strlcpy(serio->phys, "synaptics-pt/serio0", sizeof(serio->name));
  412. serio->write = synaptics_pt_write;
  413. serio->start = synaptics_pt_start;
  414. serio->stop = synaptics_pt_stop;
  415. serio->parent = psmouse->ps2dev.serio;
  416. psmouse->pt_activate = synaptics_pt_activate;
  417. psmouse_info(psmouse, "serio: %s port at %s\n",
  418. serio->name, psmouse->phys);
  419. serio_register_port(serio);
  420. }
  421. /*****************************************************************************
  422. * Functions to interpret the absolute mode packets
  423. ****************************************************************************/
  424. static void synaptics_mt_state_set(struct synaptics_mt_state *state, int count,
  425. int sgm, int agm)
  426. {
  427. state->count = count;
  428. state->sgm = sgm;
  429. state->agm = agm;
  430. }
  431. static void synaptics_parse_agm(const unsigned char buf[],
  432. struct synaptics_data *priv,
  433. struct synaptics_hw_state *hw)
  434. {
  435. struct synaptics_hw_state *agm = &priv->agm;
  436. int agm_packet_type;
  437. agm_packet_type = (buf[5] & 0x30) >> 4;
  438. switch (agm_packet_type) {
  439. case 1:
  440. /* Gesture packet: (x, y, z) half resolution */
  441. agm->w = hw->w;
  442. agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1;
  443. agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1;
  444. agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1;
  445. break;
  446. case 2:
  447. /* AGM-CONTACT packet: (count, sgm, agm) */
  448. synaptics_mt_state_set(&agm->mt_state, buf[1], buf[2], buf[4]);
  449. break;
  450. default:
  451. break;
  452. }
  453. /* Record that at least one AGM has been received since last SGM */
  454. priv->agm_pending = true;
  455. }
  456. static int synaptics_parse_hw_state(const unsigned char buf[],
  457. struct synaptics_data *priv,
  458. struct synaptics_hw_state *hw)
  459. {
  460. memset(hw, 0, sizeof(struct synaptics_hw_state));
  461. if (SYN_MODEL_NEWABS(priv->model_id)) {
  462. hw->w = (((buf[0] & 0x30) >> 2) |
  463. ((buf[0] & 0x04) >> 1) |
  464. ((buf[3] & 0x04) >> 2));
  465. hw->left = (buf[0] & 0x01) ? 1 : 0;
  466. hw->right = (buf[0] & 0x02) ? 1 : 0;
  467. if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
  468. /*
  469. * Clickpad's button is transmitted as middle button,
  470. * however, since it is primary button, we will report
  471. * it as BTN_LEFT.
  472. */
  473. hw->left = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
  474. } else if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
  475. hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
  476. if (hw->w == 2)
  477. hw->scroll = (signed char)(buf[1]);
  478. }
  479. if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
  480. hw->up = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
  481. hw->down = ((buf[0] ^ buf[3]) & 0x02) ? 1 : 0;
  482. }
  483. if ((SYN_CAP_ADV_GESTURE(priv->ext_cap_0c) ||
  484. SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) &&
  485. hw->w == 2) {
  486. synaptics_parse_agm(buf, priv, hw);
  487. return 1;
  488. }
  489. hw->x = (((buf[3] & 0x10) << 8) |
  490. ((buf[1] & 0x0f) << 8) |
  491. buf[4]);
  492. hw->y = (((buf[3] & 0x20) << 7) |
  493. ((buf[1] & 0xf0) << 4) |
  494. buf[5]);
  495. hw->z = buf[2];
  496. if (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) &&
  497. ((buf[0] ^ buf[3]) & 0x02)) {
  498. switch (SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap) & ~0x01) {
  499. default:
  500. /*
  501. * if nExtBtn is greater than 8 it should be
  502. * considered invalid and treated as 0
  503. */
  504. break;
  505. case 8:
  506. hw->ext_buttons |= ((buf[5] & 0x08)) ? 0x80 : 0;
  507. hw->ext_buttons |= ((buf[4] & 0x08)) ? 0x40 : 0;
  508. case 6:
  509. hw->ext_buttons |= ((buf[5] & 0x04)) ? 0x20 : 0;
  510. hw->ext_buttons |= ((buf[4] & 0x04)) ? 0x10 : 0;
  511. case 4:
  512. hw->ext_buttons |= ((buf[5] & 0x02)) ? 0x08 : 0;
  513. hw->ext_buttons |= ((buf[4] & 0x02)) ? 0x04 : 0;
  514. case 2:
  515. hw->ext_buttons |= ((buf[5] & 0x01)) ? 0x02 : 0;
  516. hw->ext_buttons |= ((buf[4] & 0x01)) ? 0x01 : 0;
  517. }
  518. }
  519. } else {
  520. hw->x = (((buf[1] & 0x1f) << 8) | buf[2]);
  521. hw->y = (((buf[4] & 0x1f) << 8) | buf[5]);
  522. hw->z = (((buf[0] & 0x30) << 2) | (buf[3] & 0x3F));
  523. hw->w = (((buf[1] & 0x80) >> 4) | ((buf[0] & 0x04) >> 1));
  524. hw->left = (buf[0] & 0x01) ? 1 : 0;
  525. hw->right = (buf[0] & 0x02) ? 1 : 0;
  526. }
  527. /*
  528. * Convert wrap-around values to negative. (X|Y)_MAX_POSITIVE
  529. * is used by some firmware to indicate a finger at the edge of
  530. * the touchpad whose precise position cannot be determined, so
  531. * convert these values to the maximum axis value.
  532. */
  533. if (hw->x > X_MAX_POSITIVE)
  534. hw->x -= 1 << ABS_POS_BITS;
  535. else if (hw->x == X_MAX_POSITIVE)
  536. hw->x = XMAX;
  537. if (hw->y > Y_MAX_POSITIVE)
  538. hw->y -= 1 << ABS_POS_BITS;
  539. else if (hw->y == Y_MAX_POSITIVE)
  540. hw->y = YMAX;
  541. return 0;
  542. }
  543. static void synaptics_report_semi_mt_slot(struct input_dev *dev, int slot,
  544. bool active, int x, int y)
  545. {
  546. input_mt_slot(dev, slot);
  547. input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
  548. if (active) {
  549. input_report_abs(dev, ABS_MT_POSITION_X, x);
  550. input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(y));
  551. }
  552. }
  553. static void synaptics_report_semi_mt_data(struct input_dev *dev,
  554. const struct synaptics_hw_state *a,
  555. const struct synaptics_hw_state *b,
  556. int num_fingers)
  557. {
  558. if (num_fingers >= 2) {
  559. synaptics_report_semi_mt_slot(dev, 0, true, min(a->x, b->x),
  560. min(a->y, b->y));
  561. synaptics_report_semi_mt_slot(dev, 1, true, max(a->x, b->x),
  562. max(a->y, b->y));
  563. } else if (num_fingers == 1) {
  564. synaptics_report_semi_mt_slot(dev, 0, true, a->x, a->y);
  565. synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
  566. } else {
  567. synaptics_report_semi_mt_slot(dev, 0, false, 0, 0);
  568. synaptics_report_semi_mt_slot(dev, 1, false, 0, 0);
  569. }
  570. }
  571. static void synaptics_report_buttons(struct psmouse *psmouse,
  572. const struct synaptics_hw_state *hw)
  573. {
  574. struct input_dev *dev = psmouse->dev;
  575. struct synaptics_data *priv = psmouse->private;
  576. int i;
  577. input_report_key(dev, BTN_LEFT, hw->left);
  578. input_report_key(dev, BTN_RIGHT, hw->right);
  579. if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
  580. input_report_key(dev, BTN_MIDDLE, hw->middle);
  581. if (SYN_CAP_FOUR_BUTTON(priv->capabilities)) {
  582. input_report_key(dev, BTN_FORWARD, hw->up);
  583. input_report_key(dev, BTN_BACK, hw->down);
  584. }
  585. for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
  586. input_report_key(dev, BTN_0 + i, hw->ext_buttons & (1 << i));
  587. }
  588. static void synaptics_report_slot(struct input_dev *dev, int slot,
  589. const struct synaptics_hw_state *hw)
  590. {
  591. input_mt_slot(dev, slot);
  592. input_mt_report_slot_state(dev, MT_TOOL_FINGER, (hw != NULL));
  593. if (!hw)
  594. return;
  595. input_report_abs(dev, ABS_MT_POSITION_X, hw->x);
  596. input_report_abs(dev, ABS_MT_POSITION_Y, synaptics_invert_y(hw->y));
  597. input_report_abs(dev, ABS_MT_PRESSURE, hw->z);
  598. }
  599. static void synaptics_report_mt_data(struct psmouse *psmouse,
  600. struct synaptics_mt_state *mt_state,
  601. const struct synaptics_hw_state *sgm)
  602. {
  603. struct input_dev *dev = psmouse->dev;
  604. struct synaptics_data *priv = psmouse->private;
  605. struct synaptics_hw_state *agm = &priv->agm;
  606. struct synaptics_mt_state *old = &priv->mt_state;
  607. switch (mt_state->count) {
  608. case 0:
  609. synaptics_report_slot(dev, 0, NULL);
  610. synaptics_report_slot(dev, 1, NULL);
  611. break;
  612. case 1:
  613. if (mt_state->sgm == -1) {
  614. synaptics_report_slot(dev, 0, NULL);
  615. synaptics_report_slot(dev, 1, NULL);
  616. } else if (mt_state->sgm == 0) {
  617. synaptics_report_slot(dev, 0, sgm);
  618. synaptics_report_slot(dev, 1, NULL);
  619. } else {
  620. synaptics_report_slot(dev, 0, NULL);
  621. synaptics_report_slot(dev, 1, sgm);
  622. }
  623. break;
  624. default:
  625. /*
  626. * If the finger slot contained in SGM is valid, and either
  627. * hasn't changed, or is new, or the old SGM has now moved to
  628. * AGM, then report SGM in MTB slot 0.
  629. * Otherwise, empty MTB slot 0.
  630. */
  631. if (mt_state->sgm != -1 &&
  632. (mt_state->sgm == old->sgm ||
  633. old->sgm == -1 || mt_state->agm == old->sgm))
  634. synaptics_report_slot(dev, 0, sgm);
  635. else
  636. synaptics_report_slot(dev, 0, NULL);
  637. /*
  638. * If the finger slot contained in AGM is valid, and either
  639. * hasn't changed, or is new, then report AGM in MTB slot 1.
  640. * Otherwise, empty MTB slot 1.
  641. *
  642. * However, in the case where the AGM is new, make sure that
  643. * that it is either the same as the old SGM, or there was no
  644. * SGM.
  645. *
  646. * Otherwise, if the SGM was just 1, and the new AGM is 2, then
  647. * the new AGM will keep the old SGM's tracking ID, which can
  648. * cause apparent drumroll. This happens if in the following
  649. * valid finger sequence:
  650. *
  651. * Action SGM AGM (MTB slot:Contact)
  652. * 1. Touch contact 0 (0:0)
  653. * 2. Touch contact 1 (0:0, 1:1)
  654. * 3. Lift contact 0 (1:1)
  655. * 4. Touch contacts 2,3 (0:2, 1:3)
  656. *
  657. * In step 4, contact 3, in AGM must not be given the same
  658. * tracking ID as contact 1 had in step 3. To avoid this,
  659. * the first agm with contact 3 is dropped and slot 1 is
  660. * invalidated (tracking ID = -1).
  661. */
  662. if (mt_state->agm != -1 &&
  663. (mt_state->agm == old->agm ||
  664. (old->agm == -1 &&
  665. (old->sgm == -1 || mt_state->agm == old->sgm))))
  666. synaptics_report_slot(dev, 1, agm);
  667. else
  668. synaptics_report_slot(dev, 1, NULL);
  669. break;
  670. }
  671. /* Don't use active slot count to generate BTN_TOOL events. */
  672. input_mt_report_pointer_emulation(dev, false);
  673. /* Send the number of fingers reported by touchpad itself. */
  674. input_mt_report_finger_count(dev, mt_state->count);
  675. synaptics_report_buttons(psmouse, sgm);
  676. input_sync(dev);
  677. }
  678. /* Handle case where mt_state->count = 0 */
  679. static void synaptics_image_sensor_0f(struct synaptics_data *priv,
  680. struct synaptics_mt_state *mt_state)
  681. {
  682. synaptics_mt_state_set(mt_state, 0, -1, -1);
  683. priv->mt_state_lost = false;
  684. }
  685. /* Handle case where mt_state->count = 1 */
  686. static void synaptics_image_sensor_1f(struct synaptics_data *priv,
  687. struct synaptics_mt_state *mt_state)
  688. {
  689. struct synaptics_hw_state *agm = &priv->agm;
  690. struct synaptics_mt_state *old = &priv->mt_state;
  691. /*
  692. * If the last AGM was (0,0,0), and there is only one finger left,
  693. * then we absolutely know that SGM contains slot 0, and all other
  694. * fingers have been removed.
  695. */
  696. if (priv->agm_pending && agm->z == 0) {
  697. synaptics_mt_state_set(mt_state, 1, 0, -1);
  698. priv->mt_state_lost = false;
  699. return;
  700. }
  701. switch (old->count) {
  702. case 0:
  703. synaptics_mt_state_set(mt_state, 1, 0, -1);
  704. break;
  705. case 1:
  706. /*
  707. * If mt_state_lost, then the previous transition was 3->1,
  708. * and SGM now contains either slot 0 or 1, but we don't know
  709. * which. So, we just assume that the SGM now contains slot 1.
  710. *
  711. * If pending AGM and either:
  712. * (a) the previous SGM slot contains slot 0, or
  713. * (b) there was no SGM slot
  714. * then, the SGM now contains slot 1
  715. *
  716. * Case (a) happens with very rapid "drum roll" gestures, where
  717. * slot 0 finger is lifted and a new slot 1 finger touches
  718. * within one reporting interval.
  719. *
  720. * Case (b) happens if initially two or more fingers tap
  721. * briefly, and all but one lift before the end of the first
  722. * reporting interval.
  723. *
  724. * (In both these cases, slot 0 will becomes empty, so SGM
  725. * contains slot 1 with the new finger)
  726. *
  727. * Else, if there was no previous SGM, it now contains slot 0.
  728. *
  729. * Otherwise, SGM still contains the same slot.
  730. */
  731. if (priv->mt_state_lost ||
  732. (priv->agm_pending && old->sgm <= 0))
  733. synaptics_mt_state_set(mt_state, 1, 1, -1);
  734. else if (old->sgm == -1)
  735. synaptics_mt_state_set(mt_state, 1, 0, -1);
  736. break;
  737. case 2:
  738. /*
  739. * If mt_state_lost, we don't know which finger SGM contains.
  740. *
  741. * So, report 1 finger, but with both slots empty.
  742. * We will use slot 1 on subsequent 1->1
  743. */
  744. if (priv->mt_state_lost) {
  745. synaptics_mt_state_set(mt_state, 1, -1, -1);
  746. break;
  747. }
  748. /*
  749. * Since the last AGM was NOT (0,0,0), it was the finger in
  750. * slot 0 that has been removed.
  751. * So, SGM now contains previous AGM's slot, and AGM is now
  752. * empty.
  753. */
  754. synaptics_mt_state_set(mt_state, 1, old->agm, -1);
  755. break;
  756. case 3:
  757. /*
  758. * Since last AGM was not (0,0,0), we don't know which finger
  759. * is left.
  760. *
  761. * So, report 1 finger, but with both slots empty.
  762. * We will use slot 1 on subsequent 1->1
  763. */
  764. synaptics_mt_state_set(mt_state, 1, -1, -1);
  765. priv->mt_state_lost = true;
  766. break;
  767. case 4:
  768. case 5:
  769. /* mt_state was updated by AGM-CONTACT packet */
  770. break;
  771. }
  772. }
  773. /* Handle case where mt_state->count = 2 */
  774. static void synaptics_image_sensor_2f(struct synaptics_data *priv,
  775. struct synaptics_mt_state *mt_state)
  776. {
  777. struct synaptics_mt_state *old = &priv->mt_state;
  778. switch (old->count) {
  779. case 0:
  780. synaptics_mt_state_set(mt_state, 2, 0, 1);
  781. break;
  782. case 1:
  783. /*
  784. * If previous SGM contained slot 1 or higher, SGM now contains
  785. * slot 0 (the newly touching finger) and AGM contains SGM's
  786. * previous slot.
  787. *
  788. * Otherwise, SGM still contains slot 0 and AGM now contains
  789. * slot 1.
  790. */
  791. if (old->sgm >= 1)
  792. synaptics_mt_state_set(mt_state, 2, 0, old->sgm);
  793. else
  794. synaptics_mt_state_set(mt_state, 2, 0, 1);
  795. break;
  796. case 2:
  797. /*
  798. * If mt_state_lost, SGM now contains either finger 1 or 2, but
  799. * we don't know which.
  800. * So, we just assume that the SGM contains slot 0 and AGM 1.
  801. */
  802. if (priv->mt_state_lost)
  803. synaptics_mt_state_set(mt_state, 2, 0, 1);
  804. /*
  805. * Otherwise, use the same mt_state, since it either hasn't
  806. * changed, or was updated by a recently received AGM-CONTACT
  807. * packet.
  808. */
  809. break;
  810. case 3:
  811. /*
  812. * 3->2 transitions have two unsolvable problems:
  813. * 1) no indication is given which finger was removed
  814. * 2) no way to tell if agm packet was for finger 3
  815. * before 3->2, or finger 2 after 3->2.
  816. *
  817. * So, report 2 fingers, but empty all slots.
  818. * We will guess slots [0,1] on subsequent 2->2.
  819. */
  820. synaptics_mt_state_set(mt_state, 2, -1, -1);
  821. priv->mt_state_lost = true;
  822. break;
  823. case 4:
  824. case 5:
  825. /* mt_state was updated by AGM-CONTACT packet */
  826. break;
  827. }
  828. }
  829. /* Handle case where mt_state->count = 3 */
  830. static void synaptics_image_sensor_3f(struct synaptics_data *priv,
  831. struct synaptics_mt_state *mt_state)
  832. {
  833. struct synaptics_mt_state *old = &priv->mt_state;
  834. switch (old->count) {
  835. case 0:
  836. synaptics_mt_state_set(mt_state, 3, 0, 2);
  837. break;
  838. case 1:
  839. /*
  840. * If previous SGM contained slot 2 or higher, SGM now contains
  841. * slot 0 (one of the newly touching fingers) and AGM contains
  842. * SGM's previous slot.
  843. *
  844. * Otherwise, SGM now contains slot 0 and AGM contains slot 2.
  845. */
  846. if (old->sgm >= 2)
  847. synaptics_mt_state_set(mt_state, 3, 0, old->sgm);
  848. else
  849. synaptics_mt_state_set(mt_state, 3, 0, 2);
  850. break;
  851. case 2:
  852. /*
  853. * If the AGM previously contained slot 3 or higher, then the
  854. * newly touching finger is in the lowest available slot.
  855. *
  856. * If SGM was previously 1 or higher, then the new SGM is
  857. * now slot 0 (with a new finger), otherwise, the new finger
  858. * is now in a hidden slot between 0 and AGM's slot.
  859. *
  860. * In all such cases, the SGM now contains slot 0, and the AGM
  861. * continues to contain the same slot as before.
  862. */
  863. if (old->agm >= 3) {
  864. synaptics_mt_state_set(mt_state, 3, 0, old->agm);
  865. break;
  866. }
  867. /*
  868. * After some 3->1 and all 3->2 transitions, we lose track
  869. * of which slot is reported by SGM and AGM.
  870. *
  871. * For 2->3 in this state, report 3 fingers, but empty all
  872. * slots, and we will guess (0,2) on a subsequent 0->3.
  873. *
  874. * To userspace, the resulting transition will look like:
  875. * 2:[0,1] -> 3:[-1,-1] -> 3:[0,2]
  876. */
  877. if (priv->mt_state_lost) {
  878. synaptics_mt_state_set(mt_state, 3, -1, -1);
  879. break;
  880. }
  881. /*
  882. * If the (SGM,AGM) really previously contained slots (0, 1),
  883. * then we cannot know what slot was just reported by the AGM,
  884. * because the 2->3 transition can occur either before or after
  885. * the AGM packet. Thus, this most recent AGM could contain
  886. * either the same old slot 1 or the new slot 2.
  887. * Subsequent AGMs will be reporting slot 2.
  888. *
  889. * To userspace, the resulting transition will look like:
  890. * 2:[0,1] -> 3:[0,-1] -> 3:[0,2]
  891. */
  892. synaptics_mt_state_set(mt_state, 3, 0, -1);
  893. break;
  894. case 3:
  895. /*
  896. * If, for whatever reason, the previous agm was invalid,
  897. * Assume SGM now contains slot 0, AGM now contains slot 2.
  898. */
  899. if (old->agm <= 2)
  900. synaptics_mt_state_set(mt_state, 3, 0, 2);
  901. /*
  902. * mt_state either hasn't changed, or was updated by a recently
  903. * received AGM-CONTACT packet.
  904. */
  905. break;
  906. case 4:
  907. case 5:
  908. /* mt_state was updated by AGM-CONTACT packet */
  909. break;
  910. }
  911. }
  912. /* Handle case where mt_state->count = 4, or = 5 */
  913. static void synaptics_image_sensor_45f(struct synaptics_data *priv,
  914. struct synaptics_mt_state *mt_state)
  915. {
  916. /* mt_state was updated correctly by AGM-CONTACT packet */
  917. priv->mt_state_lost = false;
  918. }
  919. static void synaptics_image_sensor_process(struct psmouse *psmouse,
  920. struct synaptics_hw_state *sgm)
  921. {
  922. struct synaptics_data *priv = psmouse->private;
  923. struct synaptics_hw_state *agm = &priv->agm;
  924. struct synaptics_mt_state mt_state;
  925. /* Initialize using current mt_state (as updated by last agm) */
  926. mt_state = agm->mt_state;
  927. /*
  928. * Update mt_state using the new finger count and current mt_state.
  929. */
  930. if (sgm->z == 0)
  931. synaptics_image_sensor_0f(priv, &mt_state);
  932. else if (sgm->w >= 4)
  933. synaptics_image_sensor_1f(priv, &mt_state);
  934. else if (sgm->w == 0)
  935. synaptics_image_sensor_2f(priv, &mt_state);
  936. else if (sgm->w == 1 && mt_state.count <= 3)
  937. synaptics_image_sensor_3f(priv, &mt_state);
  938. else
  939. synaptics_image_sensor_45f(priv, &mt_state);
  940. /* Send resulting input events to user space */
  941. synaptics_report_mt_data(psmouse, &mt_state, sgm);
  942. /* Store updated mt_state */
  943. priv->mt_state = agm->mt_state = mt_state;
  944. priv->agm_pending = false;
  945. }
  946. /*
  947. * called for each full received packet from the touchpad
  948. */
  949. static void synaptics_process_packet(struct psmouse *psmouse)
  950. {
  951. struct input_dev *dev = psmouse->dev;
  952. struct synaptics_data *priv = psmouse->private;
  953. struct synaptics_hw_state hw;
  954. int num_fingers;
  955. int finger_width;
  956. if (synaptics_parse_hw_state(psmouse->packet, priv, &hw))
  957. return;
  958. if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
  959. synaptics_image_sensor_process(psmouse, &hw);
  960. return;
  961. }
  962. if (hw.scroll) {
  963. priv->scroll += hw.scroll;
  964. while (priv->scroll >= 4) {
  965. input_report_key(dev, BTN_BACK, !hw.down);
  966. input_sync(dev);
  967. input_report_key(dev, BTN_BACK, hw.down);
  968. input_sync(dev);
  969. priv->scroll -= 4;
  970. }
  971. while (priv->scroll <= -4) {
  972. input_report_key(dev, BTN_FORWARD, !hw.up);
  973. input_sync(dev);
  974. input_report_key(dev, BTN_FORWARD, hw.up);
  975. input_sync(dev);
  976. priv->scroll += 4;
  977. }
  978. return;
  979. }
  980. if (hw.z > 0 && hw.x > 1) {
  981. num_fingers = 1;
  982. finger_width = 5;
  983. if (SYN_CAP_EXTENDED(priv->capabilities)) {
  984. switch (hw.w) {
  985. case 0 ... 1:
  986. if (SYN_CAP_MULTIFINGER(priv->capabilities))
  987. num_fingers = hw.w + 2;
  988. break;
  989. case 2:
  990. if (SYN_MODEL_PEN(priv->model_id))
  991. ; /* Nothing, treat a pen as a single finger */
  992. break;
  993. case 4 ... 15:
  994. if (SYN_CAP_PALMDETECT(priv->capabilities))
  995. finger_width = hw.w;
  996. break;
  997. }
  998. }
  999. } else {
  1000. num_fingers = 0;
  1001. finger_width = 0;
  1002. }
  1003. if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c))
  1004. synaptics_report_semi_mt_data(dev, &hw, &priv->agm,
  1005. num_fingers);
  1006. /* Post events
  1007. * BTN_TOUCH has to be first as mousedev relies on it when doing
  1008. * absolute -> relative conversion
  1009. */
  1010. if (hw.z > 30) input_report_key(dev, BTN_TOUCH, 1);
  1011. if (hw.z < 25) input_report_key(dev, BTN_TOUCH, 0);
  1012. if (num_fingers > 0) {
  1013. input_report_abs(dev, ABS_X, hw.x);
  1014. input_report_abs(dev, ABS_Y, synaptics_invert_y(hw.y));
  1015. }
  1016. input_report_abs(dev, ABS_PRESSURE, hw.z);
  1017. if (SYN_CAP_PALMDETECT(priv->capabilities))
  1018. input_report_abs(dev, ABS_TOOL_WIDTH, finger_width);
  1019. input_report_key(dev, BTN_TOOL_FINGER, num_fingers == 1);
  1020. if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
  1021. input_report_key(dev, BTN_TOOL_DOUBLETAP, num_fingers == 2);
  1022. input_report_key(dev, BTN_TOOL_TRIPLETAP, num_fingers == 3);
  1023. }
  1024. synaptics_report_buttons(psmouse, &hw);
  1025. input_sync(dev);
  1026. }
  1027. static int synaptics_validate_byte(struct psmouse *psmouse,
  1028. int idx, unsigned char pkt_type)
  1029. {
  1030. static const unsigned char newabs_mask[] = { 0xC8, 0x00, 0x00, 0xC8, 0x00 };
  1031. static const unsigned char newabs_rel_mask[] = { 0xC0, 0x00, 0x00, 0xC0, 0x00 };
  1032. static const unsigned char newabs_rslt[] = { 0x80, 0x00, 0x00, 0xC0, 0x00 };
  1033. static const unsigned char oldabs_mask[] = { 0xC0, 0x60, 0x00, 0xC0, 0x60 };
  1034. static const unsigned char oldabs_rslt[] = { 0xC0, 0x00, 0x00, 0x80, 0x00 };
  1035. const char *packet = psmouse->packet;
  1036. if (idx < 0 || idx > 4)
  1037. return 0;
  1038. switch (pkt_type) {
  1039. case SYN_NEWABS:
  1040. case SYN_NEWABS_RELAXED:
  1041. return (packet[idx] & newabs_rel_mask[idx]) == newabs_rslt[idx];
  1042. case SYN_NEWABS_STRICT:
  1043. return (packet[idx] & newabs_mask[idx]) == newabs_rslt[idx];
  1044. case SYN_OLDABS:
  1045. return (packet[idx] & oldabs_mask[idx]) == oldabs_rslt[idx];
  1046. default:
  1047. psmouse_err(psmouse, "unknown packet type %d\n", pkt_type);
  1048. return 0;
  1049. }
  1050. }
  1051. static unsigned char synaptics_detect_pkt_type(struct psmouse *psmouse)
  1052. {
  1053. int i;
  1054. for (i = 0; i < 5; i++)
  1055. if (!synaptics_validate_byte(psmouse, i, SYN_NEWABS_STRICT)) {
  1056. psmouse_info(psmouse, "using relaxed packet validation\n");
  1057. return SYN_NEWABS_RELAXED;
  1058. }
  1059. return SYN_NEWABS_STRICT;
  1060. }
  1061. static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
  1062. {
  1063. struct synaptics_data *priv = psmouse->private;
  1064. if (psmouse->pktcnt >= 6) { /* Full packet received */
  1065. if (unlikely(priv->pkt_type == SYN_NEWABS))
  1066. priv->pkt_type = synaptics_detect_pkt_type(psmouse);
  1067. if (SYN_CAP_PASS_THROUGH(priv->capabilities) &&
  1068. synaptics_is_pt_packet(psmouse->packet)) {
  1069. if (priv->pt_port)
  1070. synaptics_pass_pt_packet(priv->pt_port, psmouse->packet);
  1071. } else
  1072. synaptics_process_packet(psmouse);
  1073. return PSMOUSE_FULL_PACKET;
  1074. }
  1075. return synaptics_validate_byte(psmouse, psmouse->pktcnt - 1, priv->pkt_type) ?
  1076. PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
  1077. }
  1078. /*****************************************************************************
  1079. * Driver initialization/cleanup functions
  1080. ****************************************************************************/
  1081. static void set_abs_position_params(struct input_dev *dev,
  1082. struct synaptics_data *priv, int x_code,
  1083. int y_code)
  1084. {
  1085. int x_min = priv->x_min ?: XMIN_NOMINAL;
  1086. int x_max = priv->x_max ?: XMAX_NOMINAL;
  1087. int y_min = priv->y_min ?: YMIN_NOMINAL;
  1088. int y_max = priv->y_max ?: YMAX_NOMINAL;
  1089. int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ?
  1090. SYN_REDUCED_FILTER_FUZZ : 0;
  1091. input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
  1092. input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
  1093. input_abs_set_res(dev, x_code, priv->x_res);
  1094. input_abs_set_res(dev, y_code, priv->y_res);
  1095. }
  1096. static void set_input_params(struct input_dev *dev, struct synaptics_data *priv)
  1097. {
  1098. int i;
  1099. /* Things that apply to both modes */
  1100. __set_bit(INPUT_PROP_POINTER, dev->propbit);
  1101. __set_bit(EV_KEY, dev->evbit);
  1102. __set_bit(BTN_LEFT, dev->keybit);
  1103. __set_bit(BTN_RIGHT, dev->keybit);
  1104. if (SYN_CAP_MIDDLE_BUTTON(priv->capabilities))
  1105. __set_bit(BTN_MIDDLE, dev->keybit);
  1106. if (!priv->absolute_mode) {
  1107. /* Relative mode */
  1108. __set_bit(EV_REL, dev->evbit);
  1109. __set_bit(REL_X, dev->relbit);
  1110. __set_bit(REL_Y, dev->relbit);
  1111. return;
  1112. }
  1113. /* Absolute mode */
  1114. __set_bit(EV_ABS, dev->evbit);
  1115. set_abs_position_params(dev, priv, ABS_X, ABS_Y);
  1116. input_set_abs_params(dev, ABS_PRESSURE, 0, 255, 0, 0);
  1117. if (SYN_CAP_IMAGE_SENSOR(priv->ext_cap_0c)) {
  1118. set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
  1119. ABS_MT_POSITION_Y);
  1120. /* Image sensors can report per-contact pressure */
  1121. input_set_abs_params(dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
  1122. input_mt_init_slots(dev, 2, INPUT_MT_POINTER);
  1123. /* Image sensors can signal 4 and 5 finger clicks */
  1124. __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
  1125. __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
  1126. } else if (SYN_CAP_ADV_GESTURE(priv->ext_cap_0c)) {
  1127. /* Non-image sensors with AGM use semi-mt */
  1128. __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
  1129. input_mt_init_slots(dev, 2, 0);
  1130. set_abs_position_params(dev, priv, ABS_MT_POSITION_X,
  1131. ABS_MT_POSITION_Y);
  1132. }
  1133. if (SYN_CAP_PALMDETECT(priv->capabilities))
  1134. input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0);
  1135. __set_bit(BTN_TOUCH, dev->keybit);
  1136. __set_bit(BTN_TOOL_FINGER, dev->keybit);
  1137. if (SYN_CAP_MULTIFINGER(priv->capabilities)) {
  1138. __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
  1139. __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
  1140. }
  1141. if (SYN_CAP_FOUR_BUTTON(priv->capabilities) ||
  1142. SYN_CAP_MIDDLE_BUTTON(priv->capabilities)) {
  1143. __set_bit(BTN_FORWARD, dev->keybit);
  1144. __set_bit(BTN_BACK, dev->keybit);
  1145. }
  1146. for (i = 0; i < SYN_CAP_MULTI_BUTTON_NO(priv->ext_cap); i++)
  1147. __set_bit(BTN_0 + i, dev->keybit);
  1148. __clear_bit(EV_REL, dev->evbit);
  1149. __clear_bit(REL_X, dev->relbit);
  1150. __clear_bit(REL_Y, dev->relbit);
  1151. if (SYN_CAP_CLICKPAD(priv->ext_cap_0c)) {
  1152. __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
  1153. /* Clickpads report only left button */
  1154. __clear_bit(BTN_RIGHT, dev->keybit);
  1155. __clear_bit(BTN_MIDDLE, dev->keybit);
  1156. }
  1157. }
  1158. static ssize_t synaptics_show_disable_gesture(struct psmouse *psmouse,
  1159. void *data, char *buf)
  1160. {
  1161. struct synaptics_data *priv = psmouse->private;
  1162. return sprintf(buf, "%c\n", priv->disable_gesture ? '1' : '0');
  1163. }
  1164. static ssize_t synaptics_set_disable_gesture(struct psmouse *psmouse,
  1165. void *data, const char *buf,
  1166. size_t len)
  1167. {
  1168. struct synaptics_data *priv = psmouse->private;
  1169. unsigned int value;
  1170. int err;
  1171. err = kstrtouint(buf, 10, &value);
  1172. if (err)
  1173. return err;
  1174. if (value > 1)
  1175. return -EINVAL;
  1176. if (value == priv->disable_gesture)
  1177. return len;
  1178. priv->disable_gesture = value;
  1179. if (value)
  1180. priv->mode |= SYN_BIT_DISABLE_GESTURE;
  1181. else
  1182. priv->mode &= ~SYN_BIT_DISABLE_GESTURE;
  1183. if (synaptics_mode_cmd(psmouse, priv->mode))
  1184. return -EIO;
  1185. return len;
  1186. }
  1187. PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
  1188. synaptics_show_disable_gesture,
  1189. synaptics_set_disable_gesture);
  1190. static void synaptics_disconnect(struct psmouse *psmouse)
  1191. {
  1192. struct synaptics_data *priv = psmouse->private;
  1193. if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity))
  1194. device_remove_file(&psmouse->ps2dev.serio->dev,
  1195. &psmouse_attr_disable_gesture.dattr);
  1196. synaptics_reset(psmouse);
  1197. kfree(priv);
  1198. psmouse->private = NULL;
  1199. }
  1200. static int synaptics_reconnect(struct psmouse *psmouse)
  1201. {
  1202. struct synaptics_data *priv = psmouse->private;
  1203. struct synaptics_data old_priv = *priv;
  1204. unsigned char param[2];
  1205. int retry = 0;
  1206. int error;
  1207. do {
  1208. psmouse_reset(psmouse);
  1209. if (retry) {
  1210. /*
  1211. * On some boxes, right after resuming, the touchpad
  1212. * needs some time to finish initializing (I assume
  1213. * it needs time to calibrate) and start responding
  1214. * to Synaptics-specific queries, so let's wait a
  1215. * bit.
  1216. */
  1217. ssleep(1);
  1218. }
  1219. ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
  1220. error = synaptics_detect(psmouse, 0);
  1221. } while (error && ++retry < 3);
  1222. if (error)
  1223. return -1;
  1224. if (retry > 1)
  1225. psmouse_dbg(psmouse, "reconnected after %d tries\n", retry);
  1226. if (synaptics_query_hardware(psmouse)) {
  1227. psmouse_err(psmouse, "Unable to query device.\n");
  1228. return -1;
  1229. }
  1230. if (synaptics_set_mode(psmouse)) {
  1231. psmouse_err(psmouse, "Unable to initialize device.\n");
  1232. return -1;
  1233. }
  1234. if (old_priv.identity != priv->identity ||
  1235. old_priv.model_id != priv->model_id ||
  1236. old_priv.capabilities != priv->capabilities ||
  1237. old_priv.ext_cap != priv->ext_cap) {
  1238. psmouse_err(psmouse,
  1239. "hardware appears to be different: id(%ld-%ld), model(%ld-%ld), caps(%lx-%lx), ext(%lx-%lx).\n",
  1240. old_priv.identity, priv->identity,
  1241. old_priv.model_id, priv->model_id,
  1242. old_priv.capabilities, priv->capabilities,
  1243. old_priv.ext_cap, priv->ext_cap);
  1244. return -1;
  1245. }
  1246. return 0;
  1247. }
  1248. static bool impaired_toshiba_kbc;
  1249. static const struct dmi_system_id toshiba_dmi_table[] __initconst = {
  1250. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  1251. {
  1252. /* Toshiba Satellite */
  1253. .matches = {
  1254. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  1255. DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
  1256. },
  1257. },
  1258. {
  1259. /* Toshiba Dynabook */
  1260. .matches = {
  1261. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  1262. DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
  1263. },
  1264. },
  1265. {
  1266. /* Toshiba Portege M300 */
  1267. .matches = {
  1268. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  1269. DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
  1270. },
  1271. },
  1272. {
  1273. /* Toshiba Portege M300 */
  1274. .matches = {
  1275. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  1276. DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
  1277. DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
  1278. },
  1279. },
  1280. #endif
  1281. { }
  1282. };
  1283. static bool broken_olpc_ec;
  1284. static const struct dmi_system_id olpc_dmi_table[] __initconst = {
  1285. #if defined(CONFIG_DMI) && defined(CONFIG_OLPC)
  1286. {
  1287. /* OLPC XO-1 or XO-1.5 */
  1288. .matches = {
  1289. DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
  1290. DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
  1291. },
  1292. },
  1293. #endif
  1294. { }
  1295. };
  1296. static const struct dmi_system_id min_max_dmi_table[] __initconst = {
  1297. #if defined(CONFIG_DMI)
  1298. {
  1299. /* Lenovo ThinkPad Helix */
  1300. .matches = {
  1301. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  1302. DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Helix"),
  1303. },
  1304. .driver_data = (int []){1024, 5052, 2258, 4832},
  1305. },
  1306. {
  1307. /* Lenovo ThinkPad X240 */
  1308. .matches = {
  1309. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  1310. DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X240"),
  1311. },
  1312. .driver_data = (int []){1232, 5710, 1156, 4696},
  1313. },
  1314. {
  1315. /* Lenovo ThinkPad T440s */
  1316. .matches = {
  1317. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  1318. DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T440"),
  1319. },
  1320. .driver_data = (int []){1024, 5112, 2024, 4832},
  1321. },
  1322. {
  1323. /* Lenovo ThinkPad T540p */
  1324. .matches = {
  1325. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  1326. DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T540"),
  1327. },
  1328. .driver_data = (int []){1024, 5056, 2058, 4832},
  1329. },
  1330. #endif
  1331. { }
  1332. };
  1333. void __init synaptics_module_init(void)
  1334. {
  1335. const struct dmi_system_id *min_max_dmi;
  1336. impaired_toshiba_kbc = dmi_check_system(toshiba_dmi_table);
  1337. broken_olpc_ec = dmi_check_system(olpc_dmi_table);
  1338. min_max_dmi = dmi_first_match(min_max_dmi_table);
  1339. if (min_max_dmi)
  1340. quirk_min_max = min_max_dmi->driver_data;
  1341. }
  1342. static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
  1343. {
  1344. struct synaptics_data *priv;
  1345. int err = -1;
  1346. /*
  1347. * The OLPC XO has issues with Synaptics' absolute mode; the constant
  1348. * packet spew overloads the EC such that key presses on the keyboard
  1349. * are missed. Given that, don't even attempt to use Absolute mode.
  1350. * Relative mode seems to work just fine.
  1351. */
  1352. if (absolute_mode && broken_olpc_ec) {
  1353. psmouse_info(psmouse,
  1354. "OLPC XO detected, not enabling Synaptics protocol.\n");
  1355. return -ENODEV;
  1356. }
  1357. psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
  1358. if (!priv)
  1359. return -ENOMEM;
  1360. psmouse_reset(psmouse);
  1361. if (synaptics_query_hardware(psmouse)) {
  1362. psmouse_err(psmouse, "Unable to query device.\n");
  1363. goto init_fail;
  1364. }
  1365. priv->absolute_mode = absolute_mode;
  1366. if (SYN_ID_DISGEST_SUPPORTED(priv->identity))
  1367. priv->disable_gesture = true;
  1368. if (synaptics_set_mode(psmouse)) {
  1369. psmouse_err(psmouse, "Unable to initialize device.\n");
  1370. goto init_fail;
  1371. }
  1372. priv->pkt_type = SYN_MODEL_NEWABS(priv->model_id) ? SYN_NEWABS : SYN_OLDABS;
  1373. psmouse_info(psmouse,
  1374. "Touchpad model: %ld, fw: %ld.%ld, id: %#lx, caps: %#lx/%#lx/%#lx, board id: %lu, fw id: %lu\n",
  1375. SYN_ID_MODEL(priv->identity),
  1376. SYN_ID_MAJOR(priv->identity), SYN_ID_MINOR(priv->identity),
  1377. priv->model_id,
  1378. priv->capabilities, priv->ext_cap, priv->ext_cap_0c,
  1379. priv->board_id, priv->firmware_id);
  1380. set_input_params(psmouse->dev, priv);
  1381. /*
  1382. * Encode touchpad model so that it can be used to set
  1383. * input device->id.version and be visible to userspace.
  1384. * Because version is __u16 we have to drop something.
  1385. * Hardware info bits seem to be good candidates as they
  1386. * are documented to be for Synaptics corp. internal use.
  1387. */
  1388. psmouse->model = ((priv->model_id & 0x00ff0000) >> 8) |
  1389. (priv->model_id & 0x000000ff);
  1390. if (absolute_mode) {
  1391. psmouse->protocol_handler = synaptics_process_byte;
  1392. psmouse->pktsize = 6;
  1393. } else {
  1394. /* Relative mode follows standard PS/2 mouse protocol */
  1395. psmouse->protocol_handler = psmouse_process_byte;
  1396. psmouse->pktsize = 3;
  1397. }
  1398. psmouse->set_rate = synaptics_set_rate;
  1399. psmouse->disconnect = synaptics_disconnect;
  1400. psmouse->reconnect = synaptics_reconnect;
  1401. psmouse->cleanup = synaptics_reset;
  1402. /* Synaptics can usually stay in sync without extra help */
  1403. psmouse->resync_time = 0;
  1404. if (SYN_CAP_PASS_THROUGH(priv->capabilities))
  1405. synaptics_pt_create(psmouse);
  1406. /*
  1407. * Toshiba's KBC seems to have trouble handling data from
  1408. * Synaptics at full rate. Switch to a lower rate (roughly
  1409. * the same rate as a standard PS/2 mouse).
  1410. */
  1411. if (psmouse->rate >= 80 && impaired_toshiba_kbc) {
  1412. psmouse_info(psmouse,
  1413. "Toshiba %s detected, limiting rate to 40pps.\n",
  1414. dmi_get_system_info(DMI_PRODUCT_NAME));
  1415. psmouse->rate = 40;
  1416. }
  1417. if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->identity)) {
  1418. err = device_create_file(&psmouse->ps2dev.serio->dev,
  1419. &psmouse_attr_disable_gesture.dattr);
  1420. if (err) {
  1421. psmouse_err(psmouse,
  1422. "Failed to create disable_gesture attribute (%d)",
  1423. err);
  1424. goto init_fail;
  1425. }
  1426. }
  1427. return 0;
  1428. init_fail:
  1429. kfree(priv);
  1430. return err;
  1431. }
  1432. int synaptics_init(struct psmouse *psmouse)
  1433. {
  1434. return __synaptics_init(psmouse, true);
  1435. }
  1436. int synaptics_init_relative(struct psmouse *psmouse)
  1437. {
  1438. return __synaptics_init(psmouse, false);
  1439. }
  1440. bool synaptics_supported(void)
  1441. {
  1442. return true;
  1443. }
  1444. #else /* CONFIG_MOUSE_PS2_SYNAPTICS */
  1445. void __init synaptics_module_init(void)
  1446. {
  1447. }
  1448. int synaptics_init(struct psmouse *psmouse)
  1449. {
  1450. return -ENOSYS;
  1451. }
  1452. bool synaptics_supported(void)
  1453. {
  1454. return false;
  1455. }
  1456. #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */