synaptics.c 40 KB

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