elantech.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
  1. /*
  2. * Elantech Touchpad driver (v6)
  3. *
  4. * Copyright (C) 2007-2009 Arjan Opmeer <arjan@opmeer.net>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. *
  10. * Trademarks are the property of their respective owners.
  11. */
  12. #include <linux/delay.h>
  13. #include <linux/dmi.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/input.h>
  17. #include <linux/input/mt.h>
  18. #include <linux/serio.h>
  19. #include <linux/libps2.h>
  20. #include <asm/unaligned.h>
  21. #include "psmouse.h"
  22. #include "elantech.h"
  23. #define elantech_debug(fmt, ...) \
  24. do { \
  25. if (etd->debug) \
  26. psmouse_printk(KERN_DEBUG, psmouse, \
  27. fmt, ##__VA_ARGS__); \
  28. } while (0)
  29. /*
  30. * Send a Synaptics style sliced query command
  31. */
  32. static int synaptics_send_cmd(struct psmouse *psmouse, unsigned char c,
  33. unsigned char *param)
  34. {
  35. if (psmouse_sliced_command(psmouse, c) ||
  36. ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
  37. psmouse_err(psmouse, "%s query 0x%02x failed.\n", __func__, c);
  38. return -1;
  39. }
  40. return 0;
  41. }
  42. /*
  43. * V3 and later support this fast command
  44. */
  45. static int elantech_send_cmd(struct psmouse *psmouse, unsigned char c,
  46. unsigned char *param)
  47. {
  48. struct ps2dev *ps2dev = &psmouse->ps2dev;
  49. if (ps2_command(ps2dev, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  50. ps2_command(ps2dev, NULL, c) ||
  51. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
  52. psmouse_err(psmouse, "%s query 0x%02x failed.\n", __func__, c);
  53. return -1;
  54. }
  55. return 0;
  56. }
  57. /*
  58. * A retrying version of ps2_command
  59. */
  60. static int elantech_ps2_command(struct psmouse *psmouse,
  61. unsigned char *param, int command)
  62. {
  63. struct ps2dev *ps2dev = &psmouse->ps2dev;
  64. struct elantech_data *etd = psmouse->private;
  65. int rc;
  66. int tries = ETP_PS2_COMMAND_TRIES;
  67. do {
  68. rc = ps2_command(ps2dev, param, command);
  69. if (rc == 0)
  70. break;
  71. tries--;
  72. elantech_debug("retrying ps2 command 0x%02x (%d).\n",
  73. command, tries);
  74. msleep(ETP_PS2_COMMAND_DELAY);
  75. } while (tries > 0);
  76. if (rc)
  77. psmouse_err(psmouse, "ps2 command 0x%02x failed.\n", command);
  78. return rc;
  79. }
  80. /*
  81. * Send an Elantech style special command to read a value from a register
  82. */
  83. static int elantech_read_reg(struct psmouse *psmouse, unsigned char reg,
  84. unsigned char *val)
  85. {
  86. struct elantech_data *etd = psmouse->private;
  87. unsigned char param[3];
  88. int rc = 0;
  89. if (reg < 0x07 || reg > 0x26)
  90. return -1;
  91. if (reg > 0x11 && reg < 0x20)
  92. return -1;
  93. switch (etd->hw_version) {
  94. case 1:
  95. if (psmouse_sliced_command(psmouse, ETP_REGISTER_READ) ||
  96. psmouse_sliced_command(psmouse, reg) ||
  97. ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETINFO)) {
  98. rc = -1;
  99. }
  100. break;
  101. case 2:
  102. if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  103. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READ) ||
  104. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  105. elantech_ps2_command(psmouse, NULL, reg) ||
  106. elantech_ps2_command(psmouse, param, PSMOUSE_CMD_GETINFO)) {
  107. rc = -1;
  108. }
  109. break;
  110. case 3 ... 4:
  111. if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  112. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
  113. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  114. elantech_ps2_command(psmouse, NULL, reg) ||
  115. elantech_ps2_command(psmouse, param, PSMOUSE_CMD_GETINFO)) {
  116. rc = -1;
  117. }
  118. break;
  119. }
  120. if (rc)
  121. psmouse_err(psmouse, "failed to read register 0x%02x.\n", reg);
  122. else if (etd->hw_version != 4)
  123. *val = param[0];
  124. else
  125. *val = param[1];
  126. return rc;
  127. }
  128. /*
  129. * Send an Elantech style special command to write a register with a value
  130. */
  131. static int elantech_write_reg(struct psmouse *psmouse, unsigned char reg,
  132. unsigned char val)
  133. {
  134. struct elantech_data *etd = psmouse->private;
  135. int rc = 0;
  136. if (reg < 0x07 || reg > 0x26)
  137. return -1;
  138. if (reg > 0x11 && reg < 0x20)
  139. return -1;
  140. switch (etd->hw_version) {
  141. case 1:
  142. if (psmouse_sliced_command(psmouse, ETP_REGISTER_WRITE) ||
  143. psmouse_sliced_command(psmouse, reg) ||
  144. psmouse_sliced_command(psmouse, val) ||
  145. ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11)) {
  146. rc = -1;
  147. }
  148. break;
  149. case 2:
  150. if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  151. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_WRITE) ||
  152. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  153. elantech_ps2_command(psmouse, NULL, reg) ||
  154. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  155. elantech_ps2_command(psmouse, NULL, val) ||
  156. elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
  157. rc = -1;
  158. }
  159. break;
  160. case 3:
  161. if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  162. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
  163. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  164. elantech_ps2_command(psmouse, NULL, reg) ||
  165. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  166. elantech_ps2_command(psmouse, NULL, val) ||
  167. elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
  168. rc = -1;
  169. }
  170. break;
  171. case 4:
  172. if (elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  173. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
  174. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  175. elantech_ps2_command(psmouse, NULL, reg) ||
  176. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  177. elantech_ps2_command(psmouse, NULL, ETP_REGISTER_READWRITE) ||
  178. elantech_ps2_command(psmouse, NULL, ETP_PS2_CUSTOM_COMMAND) ||
  179. elantech_ps2_command(psmouse, NULL, val) ||
  180. elantech_ps2_command(psmouse, NULL, PSMOUSE_CMD_SETSCALE11)) {
  181. rc = -1;
  182. }
  183. break;
  184. }
  185. if (rc)
  186. psmouse_err(psmouse,
  187. "failed to write register 0x%02x with value 0x%02x.\n",
  188. reg, val);
  189. return rc;
  190. }
  191. /*
  192. * Dump a complete mouse movement packet to the syslog
  193. */
  194. static void elantech_packet_dump(struct psmouse *psmouse)
  195. {
  196. int i;
  197. psmouse_printk(KERN_DEBUG, psmouse, "PS/2 packet [");
  198. for (i = 0; i < psmouse->pktsize; i++)
  199. printk("%s0x%02x ", i ? ", " : " ", psmouse->packet[i]);
  200. printk("]\n");
  201. }
  202. /*
  203. * Interpret complete data packets and report absolute mode input events for
  204. * hardware version 1. (4 byte packets)
  205. */
  206. static void elantech_report_absolute_v1(struct psmouse *psmouse)
  207. {
  208. struct input_dev *dev = psmouse->dev;
  209. struct elantech_data *etd = psmouse->private;
  210. unsigned char *packet = psmouse->packet;
  211. int fingers;
  212. if (etd->fw_version < 0x020000) {
  213. /*
  214. * byte 0: D U p1 p2 1 p3 R L
  215. * byte 1: f 0 th tw x9 x8 y9 y8
  216. */
  217. fingers = ((packet[1] & 0x80) >> 7) +
  218. ((packet[1] & 0x30) >> 4);
  219. } else {
  220. /*
  221. * byte 0: n1 n0 p2 p1 1 p3 R L
  222. * byte 1: 0 0 0 0 x9 x8 y9 y8
  223. */
  224. fingers = (packet[0] & 0xc0) >> 6;
  225. }
  226. if (etd->jumpy_cursor) {
  227. if (fingers != 1) {
  228. etd->single_finger_reports = 0;
  229. } else if (etd->single_finger_reports < 2) {
  230. /* Discard first 2 reports of one finger, bogus */
  231. etd->single_finger_reports++;
  232. elantech_debug("discarding packet\n");
  233. return;
  234. }
  235. }
  236. input_report_key(dev, BTN_TOUCH, fingers != 0);
  237. /*
  238. * byte 2: x7 x6 x5 x4 x3 x2 x1 x0
  239. * byte 3: y7 y6 y5 y4 y3 y2 y1 y0
  240. */
  241. if (fingers) {
  242. input_report_abs(dev, ABS_X,
  243. ((packet[1] & 0x0c) << 6) | packet[2]);
  244. input_report_abs(dev, ABS_Y,
  245. etd->y_max - (((packet[1] & 0x03) << 8) | packet[3]));
  246. }
  247. input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
  248. input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
  249. input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
  250. input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
  251. input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
  252. if (etd->fw_version < 0x020000 &&
  253. (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
  254. /* rocker up */
  255. input_report_key(dev, BTN_FORWARD, packet[0] & 0x40);
  256. /* rocker down */
  257. input_report_key(dev, BTN_BACK, packet[0] & 0x80);
  258. }
  259. input_sync(dev);
  260. }
  261. static void elantech_set_slot(struct input_dev *dev, int slot, bool active,
  262. unsigned int x, unsigned int y)
  263. {
  264. input_mt_slot(dev, slot);
  265. input_mt_report_slot_state(dev, MT_TOOL_FINGER, active);
  266. if (active) {
  267. input_report_abs(dev, ABS_MT_POSITION_X, x);
  268. input_report_abs(dev, ABS_MT_POSITION_Y, y);
  269. }
  270. }
  271. /* x1 < x2 and y1 < y2 when two fingers, x = y = 0 when not pressed */
  272. static void elantech_report_semi_mt_data(struct input_dev *dev,
  273. unsigned int num_fingers,
  274. unsigned int x1, unsigned int y1,
  275. unsigned int x2, unsigned int y2)
  276. {
  277. elantech_set_slot(dev, 0, num_fingers != 0, x1, y1);
  278. elantech_set_slot(dev, 1, num_fingers >= 2, x2, y2);
  279. }
  280. /*
  281. * Interpret complete data packets and report absolute mode input events for
  282. * hardware version 2. (6 byte packets)
  283. */
  284. static void elantech_report_absolute_v2(struct psmouse *psmouse)
  285. {
  286. struct elantech_data *etd = psmouse->private;
  287. struct input_dev *dev = psmouse->dev;
  288. unsigned char *packet = psmouse->packet;
  289. unsigned int fingers, x1 = 0, y1 = 0, x2 = 0, y2 = 0;
  290. unsigned int width = 0, pres = 0;
  291. /* byte 0: n1 n0 . . . . R L */
  292. fingers = (packet[0] & 0xc0) >> 6;
  293. switch (fingers) {
  294. case 3:
  295. /*
  296. * Same as one finger, except report of more than 3 fingers:
  297. * byte 3: n4 . w1 w0 . . . .
  298. */
  299. if (packet[3] & 0x80)
  300. fingers = 4;
  301. /* pass through... */
  302. case 1:
  303. /*
  304. * byte 1: . . . . x11 x10 x9 x8
  305. * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
  306. */
  307. x1 = ((packet[1] & 0x0f) << 8) | packet[2];
  308. /*
  309. * byte 4: . . . . y11 y10 y9 y8
  310. * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
  311. */
  312. y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
  313. pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
  314. width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
  315. break;
  316. case 2:
  317. /*
  318. * The coordinate of each finger is reported separately
  319. * with a lower resolution for two finger touches:
  320. * byte 0: . . ay8 ax8 . . . .
  321. * byte 1: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
  322. */
  323. x1 = (((packet[0] & 0x10) << 4) | packet[1]) << 2;
  324. /* byte 2: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0 */
  325. y1 = etd->y_max -
  326. ((((packet[0] & 0x20) << 3) | packet[2]) << 2);
  327. /*
  328. * byte 3: . . by8 bx8 . . . .
  329. * byte 4: bx7 bx6 bx5 bx4 bx3 bx2 bx1 bx0
  330. */
  331. x2 = (((packet[3] & 0x10) << 4) | packet[4]) << 2;
  332. /* byte 5: by7 by8 by5 by4 by3 by2 by1 by0 */
  333. y2 = etd->y_max -
  334. ((((packet[3] & 0x20) << 3) | packet[5]) << 2);
  335. /* Unknown so just report sensible values */
  336. pres = 127;
  337. width = 7;
  338. break;
  339. }
  340. input_report_key(dev, BTN_TOUCH, fingers != 0);
  341. if (fingers != 0) {
  342. input_report_abs(dev, ABS_X, x1);
  343. input_report_abs(dev, ABS_Y, y1);
  344. }
  345. elantech_report_semi_mt_data(dev, fingers, x1, y1, x2, y2);
  346. input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
  347. input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
  348. input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
  349. input_report_key(dev, BTN_TOOL_QUADTAP, fingers == 4);
  350. input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
  351. input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
  352. if (etd->reports_pressure) {
  353. input_report_abs(dev, ABS_PRESSURE, pres);
  354. input_report_abs(dev, ABS_TOOL_WIDTH, width);
  355. }
  356. input_sync(dev);
  357. }
  358. static void elantech_report_trackpoint(struct psmouse *psmouse,
  359. int packet_type)
  360. {
  361. /*
  362. * byte 0: 0 0 sx sy 0 M R L
  363. * byte 1:~sx 0 0 0 0 0 0 0
  364. * byte 2:~sy 0 0 0 0 0 0 0
  365. * byte 3: 0 0 ~sy ~sx 0 1 1 0
  366. * byte 4: x7 x6 x5 x4 x3 x2 x1 x0
  367. * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
  368. *
  369. * x and y are written in two's complement spread
  370. * over 9 bits with sx/sy the relative top bit and
  371. * x7..x0 and y7..y0 the lower bits.
  372. * The sign of y is opposite to what the input driver
  373. * expects for a relative movement
  374. */
  375. struct elantech_data *etd = psmouse->private;
  376. struct input_dev *tp_dev = etd->tp_dev;
  377. unsigned char *packet = psmouse->packet;
  378. int x, y;
  379. u32 t;
  380. t = get_unaligned_le32(&packet[0]);
  381. switch (t & ~7U) {
  382. case 0x06000030U:
  383. case 0x16008020U:
  384. case 0x26800010U:
  385. case 0x36808000U:
  386. x = packet[4] - (int)((packet[1]^0x80) << 1);
  387. y = (int)((packet[2]^0x80) << 1) - packet[5];
  388. input_report_key(tp_dev, BTN_LEFT, packet[0] & 0x01);
  389. input_report_key(tp_dev, BTN_RIGHT, packet[0] & 0x02);
  390. input_report_key(tp_dev, BTN_MIDDLE, packet[0] & 0x04);
  391. input_report_rel(tp_dev, REL_X, x);
  392. input_report_rel(tp_dev, REL_Y, y);
  393. input_sync(tp_dev);
  394. break;
  395. default:
  396. /* Dump unexpected packet sequences if debug=1 (default) */
  397. if (etd->debug == 1)
  398. elantech_packet_dump(psmouse);
  399. break;
  400. }
  401. }
  402. /*
  403. * Interpret complete data packets and report absolute mode input events for
  404. * hardware version 3. (12 byte packets for two fingers)
  405. */
  406. static void elantech_report_absolute_v3(struct psmouse *psmouse,
  407. int packet_type)
  408. {
  409. struct input_dev *dev = psmouse->dev;
  410. struct elantech_data *etd = psmouse->private;
  411. unsigned char *packet = psmouse->packet;
  412. unsigned int fingers = 0, x1 = 0, y1 = 0, x2 = 0, y2 = 0;
  413. unsigned int width = 0, pres = 0;
  414. /* byte 0: n1 n0 . . . . R L */
  415. fingers = (packet[0] & 0xc0) >> 6;
  416. switch (fingers) {
  417. case 3:
  418. case 1:
  419. /*
  420. * byte 1: . . . . x11 x10 x9 x8
  421. * byte 2: x7 x6 x5 x4 x4 x2 x1 x0
  422. */
  423. x1 = ((packet[1] & 0x0f) << 8) | packet[2];
  424. /*
  425. * byte 4: . . . . y11 y10 y9 y8
  426. * byte 5: y7 y6 y5 y4 y3 y2 y1 y0
  427. */
  428. y1 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
  429. break;
  430. case 2:
  431. if (packet_type == PACKET_V3_HEAD) {
  432. /*
  433. * byte 1: . . . . ax11 ax10 ax9 ax8
  434. * byte 2: ax7 ax6 ax5 ax4 ax3 ax2 ax1 ax0
  435. */
  436. etd->mt[0].x = ((packet[1] & 0x0f) << 8) | packet[2];
  437. /*
  438. * byte 4: . . . . ay11 ay10 ay9 ay8
  439. * byte 5: ay7 ay6 ay5 ay4 ay3 ay2 ay1 ay0
  440. */
  441. etd->mt[0].y = etd->y_max -
  442. (((packet[4] & 0x0f) << 8) | packet[5]);
  443. /*
  444. * wait for next packet
  445. */
  446. return;
  447. }
  448. /* packet_type == PACKET_V3_TAIL */
  449. x1 = etd->mt[0].x;
  450. y1 = etd->mt[0].y;
  451. x2 = ((packet[1] & 0x0f) << 8) | packet[2];
  452. y2 = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
  453. break;
  454. }
  455. pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
  456. width = ((packet[0] & 0x30) >> 2) | ((packet[3] & 0x30) >> 4);
  457. input_report_key(dev, BTN_TOUCH, fingers != 0);
  458. if (fingers != 0) {
  459. input_report_abs(dev, ABS_X, x1);
  460. input_report_abs(dev, ABS_Y, y1);
  461. }
  462. elantech_report_semi_mt_data(dev, fingers, x1, y1, x2, y2);
  463. input_report_key(dev, BTN_TOOL_FINGER, fingers == 1);
  464. input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2);
  465. input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3);
  466. /* For clickpads map both buttons to BTN_LEFT */
  467. if (etd->fw_version & 0x001000) {
  468. input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
  469. } else {
  470. input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
  471. input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
  472. }
  473. input_report_abs(dev, ABS_PRESSURE, pres);
  474. input_report_abs(dev, ABS_TOOL_WIDTH, width);
  475. input_sync(dev);
  476. }
  477. static void elantech_input_sync_v4(struct psmouse *psmouse)
  478. {
  479. struct input_dev *dev = psmouse->dev;
  480. struct elantech_data *etd = psmouse->private;
  481. unsigned char *packet = psmouse->packet;
  482. /* For clickpads map both buttons to BTN_LEFT */
  483. if (etd->fw_version & 0x001000) {
  484. input_report_key(dev, BTN_LEFT, packet[0] & 0x03);
  485. } else {
  486. input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
  487. input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
  488. input_report_key(dev, BTN_MIDDLE, packet[0] & 0x04);
  489. }
  490. input_mt_report_pointer_emulation(dev, true);
  491. input_sync(dev);
  492. }
  493. static void process_packet_status_v4(struct psmouse *psmouse)
  494. {
  495. struct input_dev *dev = psmouse->dev;
  496. unsigned char *packet = psmouse->packet;
  497. unsigned fingers;
  498. int i;
  499. /* notify finger state change */
  500. fingers = packet[1] & 0x1f;
  501. for (i = 0; i < ETP_MAX_FINGERS; i++) {
  502. if ((fingers & (1 << i)) == 0) {
  503. input_mt_slot(dev, i);
  504. input_mt_report_slot_state(dev, MT_TOOL_FINGER, false);
  505. }
  506. }
  507. elantech_input_sync_v4(psmouse);
  508. }
  509. static void process_packet_head_v4(struct psmouse *psmouse)
  510. {
  511. struct input_dev *dev = psmouse->dev;
  512. struct elantech_data *etd = psmouse->private;
  513. unsigned char *packet = psmouse->packet;
  514. int id = ((packet[3] & 0xe0) >> 5) - 1;
  515. int pres, traces;
  516. if (id < 0)
  517. return;
  518. etd->mt[id].x = ((packet[1] & 0x0f) << 8) | packet[2];
  519. etd->mt[id].y = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]);
  520. pres = (packet[1] & 0xf0) | ((packet[4] & 0xf0) >> 4);
  521. traces = (packet[0] & 0xf0) >> 4;
  522. input_mt_slot(dev, id);
  523. input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
  524. input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
  525. input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
  526. input_report_abs(dev, ABS_MT_PRESSURE, pres);
  527. input_report_abs(dev, ABS_MT_TOUCH_MAJOR, traces * etd->width);
  528. /* report this for backwards compatibility */
  529. input_report_abs(dev, ABS_TOOL_WIDTH, traces);
  530. elantech_input_sync_v4(psmouse);
  531. }
  532. static void process_packet_motion_v4(struct psmouse *psmouse)
  533. {
  534. struct input_dev *dev = psmouse->dev;
  535. struct elantech_data *etd = psmouse->private;
  536. unsigned char *packet = psmouse->packet;
  537. int weight, delta_x1 = 0, delta_y1 = 0, delta_x2 = 0, delta_y2 = 0;
  538. int id, sid;
  539. id = ((packet[0] & 0xe0) >> 5) - 1;
  540. if (id < 0)
  541. return;
  542. sid = ((packet[3] & 0xe0) >> 5) - 1;
  543. weight = (packet[0] & 0x10) ? ETP_WEIGHT_VALUE : 1;
  544. /*
  545. * Motion packets give us the delta of x, y values of specific fingers,
  546. * but in two's complement. Let the compiler do the conversion for us.
  547. * Also _enlarge_ the numbers to int, in case of overflow.
  548. */
  549. delta_x1 = (signed char)packet[1];
  550. delta_y1 = (signed char)packet[2];
  551. delta_x2 = (signed char)packet[4];
  552. delta_y2 = (signed char)packet[5];
  553. etd->mt[id].x += delta_x1 * weight;
  554. etd->mt[id].y -= delta_y1 * weight;
  555. input_mt_slot(dev, id);
  556. input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x);
  557. input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y);
  558. if (sid >= 0) {
  559. etd->mt[sid].x += delta_x2 * weight;
  560. etd->mt[sid].y -= delta_y2 * weight;
  561. input_mt_slot(dev, sid);
  562. input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[sid].x);
  563. input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[sid].y);
  564. }
  565. elantech_input_sync_v4(psmouse);
  566. }
  567. static void elantech_report_absolute_v4(struct psmouse *psmouse,
  568. int packet_type)
  569. {
  570. switch (packet_type) {
  571. case PACKET_V4_STATUS:
  572. process_packet_status_v4(psmouse);
  573. break;
  574. case PACKET_V4_HEAD:
  575. process_packet_head_v4(psmouse);
  576. break;
  577. case PACKET_V4_MOTION:
  578. process_packet_motion_v4(psmouse);
  579. break;
  580. case PACKET_UNKNOWN:
  581. default:
  582. /* impossible to get here */
  583. break;
  584. }
  585. }
  586. static int elantech_packet_check_v1(struct psmouse *psmouse)
  587. {
  588. struct elantech_data *etd = psmouse->private;
  589. unsigned char *packet = psmouse->packet;
  590. unsigned char p1, p2, p3;
  591. /* Parity bits are placed differently */
  592. if (etd->fw_version < 0x020000) {
  593. /* byte 0: D U p1 p2 1 p3 R L */
  594. p1 = (packet[0] & 0x20) >> 5;
  595. p2 = (packet[0] & 0x10) >> 4;
  596. } else {
  597. /* byte 0: n1 n0 p2 p1 1 p3 R L */
  598. p1 = (packet[0] & 0x10) >> 4;
  599. p2 = (packet[0] & 0x20) >> 5;
  600. }
  601. p3 = (packet[0] & 0x04) >> 2;
  602. return etd->parity[packet[1]] == p1 &&
  603. etd->parity[packet[2]] == p2 &&
  604. etd->parity[packet[3]] == p3;
  605. }
  606. static int elantech_debounce_check_v2(struct psmouse *psmouse)
  607. {
  608. /*
  609. * When we encounter packet that matches this exactly, it means the
  610. * hardware is in debounce status. Just ignore the whole packet.
  611. */
  612. const u8 debounce_packet[] = { 0x84, 0xff, 0xff, 0x02, 0xff, 0xff };
  613. unsigned char *packet = psmouse->packet;
  614. return !memcmp(packet, debounce_packet, sizeof(debounce_packet));
  615. }
  616. static int elantech_packet_check_v2(struct psmouse *psmouse)
  617. {
  618. struct elantech_data *etd = psmouse->private;
  619. unsigned char *packet = psmouse->packet;
  620. /*
  621. * V2 hardware has two flavors. Older ones that do not report pressure,
  622. * and newer ones that reports pressure and width. With newer ones, all
  623. * packets (1, 2, 3 finger touch) have the same constant bits. With
  624. * older ones, 1/3 finger touch packets and 2 finger touch packets
  625. * have different constant bits.
  626. * With all three cases, if the constant bits are not exactly what I
  627. * expected, I consider them invalid.
  628. */
  629. if (etd->reports_pressure)
  630. return (packet[0] & 0x0c) == 0x04 &&
  631. (packet[3] & 0x0f) == 0x02;
  632. if ((packet[0] & 0xc0) == 0x80)
  633. return (packet[0] & 0x0c) == 0x0c &&
  634. (packet[3] & 0x0e) == 0x08;
  635. return (packet[0] & 0x3c) == 0x3c &&
  636. (packet[1] & 0xf0) == 0x00 &&
  637. (packet[3] & 0x3e) == 0x38 &&
  638. (packet[4] & 0xf0) == 0x00;
  639. }
  640. /*
  641. * We check the constant bits to determine what packet type we get,
  642. * so packet checking is mandatory for v3 and later hardware.
  643. */
  644. static int elantech_packet_check_v3(struct psmouse *psmouse)
  645. {
  646. struct elantech_data *etd = psmouse->private;
  647. const u8 debounce_packet[] = { 0xc4, 0xff, 0xff, 0x02, 0xff, 0xff };
  648. unsigned char *packet = psmouse->packet;
  649. /*
  650. * check debounce first, it has the same signature in byte 0
  651. * and byte 3 as PACKET_V3_HEAD.
  652. */
  653. if (!memcmp(packet, debounce_packet, sizeof(debounce_packet)))
  654. return PACKET_DEBOUNCE;
  655. /*
  656. * If the hardware flag 'crc_enabled' is set the packets have
  657. * different signatures.
  658. */
  659. if (etd->crc_enabled) {
  660. if ((packet[3] & 0x09) == 0x08)
  661. return PACKET_V3_HEAD;
  662. if ((packet[3] & 0x09) == 0x09)
  663. return PACKET_V3_TAIL;
  664. } else {
  665. if ((packet[0] & 0x0c) == 0x04 && (packet[3] & 0xcf) == 0x02)
  666. return PACKET_V3_HEAD;
  667. if ((packet[0] & 0x0c) == 0x0c && (packet[3] & 0xce) == 0x0c)
  668. return PACKET_V3_TAIL;
  669. if ((packet[3] & 0x0f) == 0x06)
  670. return PACKET_TRACKPOINT;
  671. }
  672. return PACKET_UNKNOWN;
  673. }
  674. static int elantech_packet_check_v4(struct psmouse *psmouse)
  675. {
  676. struct elantech_data *etd = psmouse->private;
  677. unsigned char *packet = psmouse->packet;
  678. unsigned char packet_type = packet[3] & 0x03;
  679. unsigned int ic_version;
  680. bool sanity_check;
  681. if (etd->tp_dev && (packet[3] & 0x0f) == 0x06)
  682. return PACKET_TRACKPOINT;
  683. /* This represents the version of IC body. */
  684. ic_version = (etd->fw_version & 0x0f0000) >> 16;
  685. /*
  686. * Sanity check based on the constant bits of a packet.
  687. * The constant bits change depending on the value of
  688. * the hardware flag 'crc_enabled' and the version of
  689. * the IC body, but are the same for every packet,
  690. * regardless of the type.
  691. */
  692. if (etd->crc_enabled)
  693. sanity_check = ((packet[3] & 0x08) == 0x00);
  694. else if (ic_version == 7 && etd->samples[1] == 0x2A)
  695. sanity_check = ((packet[3] & 0x1c) == 0x10);
  696. else
  697. sanity_check = ((packet[0] & 0x0c) == 0x04 &&
  698. (packet[3] & 0x1c) == 0x10);
  699. if (!sanity_check)
  700. return PACKET_UNKNOWN;
  701. switch (packet_type) {
  702. case 0:
  703. return PACKET_V4_STATUS;
  704. case 1:
  705. return PACKET_V4_HEAD;
  706. case 2:
  707. return PACKET_V4_MOTION;
  708. }
  709. return PACKET_UNKNOWN;
  710. }
  711. /*
  712. * Process byte stream from mouse and handle complete packets
  713. */
  714. static psmouse_ret_t elantech_process_byte(struct psmouse *psmouse)
  715. {
  716. struct elantech_data *etd = psmouse->private;
  717. int packet_type;
  718. if (psmouse->pktcnt < psmouse->pktsize)
  719. return PSMOUSE_GOOD_DATA;
  720. if (etd->debug > 1)
  721. elantech_packet_dump(psmouse);
  722. switch (etd->hw_version) {
  723. case 1:
  724. if (etd->paritycheck && !elantech_packet_check_v1(psmouse))
  725. return PSMOUSE_BAD_DATA;
  726. elantech_report_absolute_v1(psmouse);
  727. break;
  728. case 2:
  729. /* ignore debounce */
  730. if (elantech_debounce_check_v2(psmouse))
  731. return PSMOUSE_FULL_PACKET;
  732. if (etd->paritycheck && !elantech_packet_check_v2(psmouse))
  733. return PSMOUSE_BAD_DATA;
  734. elantech_report_absolute_v2(psmouse);
  735. break;
  736. case 3:
  737. packet_type = elantech_packet_check_v3(psmouse);
  738. switch (packet_type) {
  739. case PACKET_UNKNOWN:
  740. return PSMOUSE_BAD_DATA;
  741. case PACKET_DEBOUNCE:
  742. /* ignore debounce */
  743. break;
  744. case PACKET_TRACKPOINT:
  745. elantech_report_trackpoint(psmouse, packet_type);
  746. break;
  747. default:
  748. elantech_report_absolute_v3(psmouse, packet_type);
  749. break;
  750. }
  751. break;
  752. case 4:
  753. packet_type = elantech_packet_check_v4(psmouse);
  754. switch (packet_type) {
  755. case PACKET_UNKNOWN:
  756. return PSMOUSE_BAD_DATA;
  757. case PACKET_TRACKPOINT:
  758. elantech_report_trackpoint(psmouse, packet_type);
  759. break;
  760. default:
  761. elantech_report_absolute_v4(psmouse, packet_type);
  762. break;
  763. }
  764. break;
  765. }
  766. return PSMOUSE_FULL_PACKET;
  767. }
  768. /*
  769. * This writes the reg_07 value again to the hardware at the end of every
  770. * set_rate call because the register loses its value. reg_07 allows setting
  771. * absolute mode on v4 hardware
  772. */
  773. static void elantech_set_rate_restore_reg_07(struct psmouse *psmouse,
  774. unsigned int rate)
  775. {
  776. struct elantech_data *etd = psmouse->private;
  777. etd->original_set_rate(psmouse, rate);
  778. if (elantech_write_reg(psmouse, 0x07, etd->reg_07))
  779. psmouse_err(psmouse, "restoring reg_07 failed\n");
  780. }
  781. /*
  782. * Put the touchpad into absolute mode
  783. */
  784. static int elantech_set_absolute_mode(struct psmouse *psmouse)
  785. {
  786. struct elantech_data *etd = psmouse->private;
  787. unsigned char val;
  788. int tries = ETP_READ_BACK_TRIES;
  789. int rc = 0;
  790. switch (etd->hw_version) {
  791. case 1:
  792. etd->reg_10 = 0x16;
  793. etd->reg_11 = 0x8f;
  794. if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
  795. elantech_write_reg(psmouse, 0x11, etd->reg_11)) {
  796. rc = -1;
  797. }
  798. break;
  799. case 2:
  800. /* Windows driver values */
  801. etd->reg_10 = 0x54;
  802. etd->reg_11 = 0x88; /* 0x8a */
  803. etd->reg_21 = 0x60; /* 0x00 */
  804. if (elantech_write_reg(psmouse, 0x10, etd->reg_10) ||
  805. elantech_write_reg(psmouse, 0x11, etd->reg_11) ||
  806. elantech_write_reg(psmouse, 0x21, etd->reg_21)) {
  807. rc = -1;
  808. }
  809. break;
  810. case 3:
  811. if (etd->set_hw_resolution)
  812. etd->reg_10 = 0x0b;
  813. else
  814. etd->reg_10 = 0x01;
  815. if (elantech_write_reg(psmouse, 0x10, etd->reg_10))
  816. rc = -1;
  817. break;
  818. case 4:
  819. etd->reg_07 = 0x01;
  820. if (elantech_write_reg(psmouse, 0x07, etd->reg_07))
  821. rc = -1;
  822. goto skip_readback_reg_10; /* v4 has no reg 0x10 to read */
  823. }
  824. if (rc == 0) {
  825. /*
  826. * Read back reg 0x10. For hardware version 1 we must make
  827. * sure the absolute mode bit is set. For hardware version 2
  828. * the touchpad is probably initializing and not ready until
  829. * we read back the value we just wrote.
  830. */
  831. do {
  832. rc = elantech_read_reg(psmouse, 0x10, &val);
  833. if (rc == 0)
  834. break;
  835. tries--;
  836. elantech_debug("retrying read (%d).\n", tries);
  837. msleep(ETP_READ_BACK_DELAY);
  838. } while (tries > 0);
  839. if (rc) {
  840. psmouse_err(psmouse,
  841. "failed to read back register 0x10.\n");
  842. } else if (etd->hw_version == 1 &&
  843. !(val & ETP_R10_ABSOLUTE_MODE)) {
  844. psmouse_err(psmouse,
  845. "touchpad refuses to switch to absolute mode.\n");
  846. rc = -1;
  847. }
  848. }
  849. skip_readback_reg_10:
  850. if (rc)
  851. psmouse_err(psmouse, "failed to initialise registers.\n");
  852. return rc;
  853. }
  854. static int elantech_set_range(struct psmouse *psmouse,
  855. unsigned int *x_min, unsigned int *y_min,
  856. unsigned int *x_max, unsigned int *y_max,
  857. unsigned int *width)
  858. {
  859. struct elantech_data *etd = psmouse->private;
  860. unsigned char param[3];
  861. unsigned char traces;
  862. switch (etd->hw_version) {
  863. case 1:
  864. *x_min = ETP_XMIN_V1;
  865. *y_min = ETP_YMIN_V1;
  866. *x_max = ETP_XMAX_V1;
  867. *y_max = ETP_YMAX_V1;
  868. break;
  869. case 2:
  870. if (etd->fw_version == 0x020800 ||
  871. etd->fw_version == 0x020b00 ||
  872. etd->fw_version == 0x020030) {
  873. *x_min = ETP_XMIN_V2;
  874. *y_min = ETP_YMIN_V2;
  875. *x_max = ETP_XMAX_V2;
  876. *y_max = ETP_YMAX_V2;
  877. } else {
  878. int i;
  879. int fixed_dpi;
  880. i = (etd->fw_version > 0x020800 &&
  881. etd->fw_version < 0x020900) ? 1 : 2;
  882. if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
  883. return -1;
  884. fixed_dpi = param[1] & 0x10;
  885. if (((etd->fw_version >> 16) == 0x14) && fixed_dpi) {
  886. if (etd->send_cmd(psmouse, ETP_SAMPLE_QUERY, param))
  887. return -1;
  888. *x_max = (etd->capabilities[1] - i) * param[1] / 2;
  889. *y_max = (etd->capabilities[2] - i) * param[2] / 2;
  890. } else if (etd->fw_version == 0x040216) {
  891. *x_max = 819;
  892. *y_max = 405;
  893. } else if (etd->fw_version == 0x040219 || etd->fw_version == 0x040215) {
  894. *x_max = 900;
  895. *y_max = 500;
  896. } else {
  897. *x_max = (etd->capabilities[1] - i) * 64;
  898. *y_max = (etd->capabilities[2] - i) * 64;
  899. }
  900. }
  901. break;
  902. case 3:
  903. if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
  904. return -1;
  905. *x_max = (0x0f & param[0]) << 8 | param[1];
  906. *y_max = (0xf0 & param[0]) << 4 | param[2];
  907. break;
  908. case 4:
  909. if (etd->send_cmd(psmouse, ETP_FW_ID_QUERY, param))
  910. return -1;
  911. *x_max = (0x0f & param[0]) << 8 | param[1];
  912. *y_max = (0xf0 & param[0]) << 4 | param[2];
  913. traces = etd->capabilities[1];
  914. if ((traces < 2) || (traces > *x_max))
  915. return -1;
  916. *width = *x_max / (traces - 1);
  917. break;
  918. }
  919. return 0;
  920. }
  921. /*
  922. * (value from firmware) * 10 + 790 = dpi
  923. * we also have to convert dpi to dots/mm (*10/254 to avoid floating point)
  924. */
  925. static unsigned int elantech_convert_res(unsigned int val)
  926. {
  927. return (val * 10 + 790) * 10 / 254;
  928. }
  929. static int elantech_get_resolution_v4(struct psmouse *psmouse,
  930. unsigned int *x_res,
  931. unsigned int *y_res)
  932. {
  933. unsigned char param[3];
  934. if (elantech_send_cmd(psmouse, ETP_RESOLUTION_QUERY, param))
  935. return -1;
  936. *x_res = elantech_convert_res(param[1] & 0x0f);
  937. *y_res = elantech_convert_res((param[1] & 0xf0) >> 4);
  938. return 0;
  939. }
  940. /*
  941. * Advertise INPUT_PROP_BUTTONPAD for clickpads. The testing of bit 12 in
  942. * fw_version for this is based on the following fw_version & caps table:
  943. *
  944. * Laptop-model: fw_version: caps: buttons:
  945. * Acer S3 0x461f00 10, 13, 0e clickpad
  946. * Acer S7-392 0x581f01 50, 17, 0d clickpad
  947. * Acer V5-131 0x461f02 01, 16, 0c clickpad
  948. * Acer V5-551 0x461f00 ? clickpad
  949. * Asus K53SV 0x450f01 78, 15, 0c 2 hw buttons
  950. * Asus G46VW 0x460f02 00, 18, 0c 2 hw buttons
  951. * Asus G750JX 0x360f00 00, 16, 0c 2 hw buttons
  952. * Asus TP500LN 0x381f17 10, 14, 0e clickpad
  953. * Asus X750JN 0x381f17 10, 14, 0e clickpad
  954. * Asus UX31 0x361f00 20, 15, 0e clickpad
  955. * Asus UX32VD 0x361f02 00, 15, 0e clickpad
  956. * Avatar AVIU-145A2 0x361f00 ? clickpad
  957. * Fujitsu LIFEBOOK E544 0x470f00 d0, 12, 09 2 hw buttons
  958. * Fujitsu LIFEBOOK E554 0x570f01 40, 14, 0c 2 hw buttons
  959. * Fujitsu T725 0x470f01 05, 12, 09 2 hw buttons
  960. * Fujitsu H730 0x570f00 c0, 14, 0c 3 hw buttons (**)
  961. * Gigabyte U2442 0x450f01 58, 17, 0c 2 hw buttons
  962. * Lenovo L430 0x350f02 b9, 15, 0c 2 hw buttons (*)
  963. * Lenovo L530 0x350f02 b9, 15, 0c 2 hw buttons (*)
  964. * Samsung NF210 0x150b00 78, 14, 0a 2 hw buttons
  965. * Samsung NP770Z5E 0x575f01 10, 15, 0f clickpad
  966. * Samsung NP700Z5B 0x361f06 21, 15, 0f clickpad
  967. * Samsung NP900X3E-A02 0x575f03 ? clickpad
  968. * Samsung NP-QX410 0x851b00 19, 14, 0c clickpad
  969. * Samsung RC512 0x450f00 08, 15, 0c 2 hw buttons
  970. * Samsung RF710 0x450f00 ? 2 hw buttons
  971. * System76 Pangolin 0x250f01 ? 2 hw buttons
  972. * (*) + 3 trackpoint buttons
  973. * (**) + 0 trackpoint buttons
  974. * Note: Lenovo L430 and Lenovo L430 have the same fw_version/caps
  975. */
  976. static void elantech_set_buttonpad_prop(struct psmouse *psmouse)
  977. {
  978. struct input_dev *dev = psmouse->dev;
  979. struct elantech_data *etd = psmouse->private;
  980. if (etd->fw_version & 0x001000) {
  981. __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
  982. __clear_bit(BTN_RIGHT, dev->keybit);
  983. }
  984. }
  985. /*
  986. * Some hw_version 4 models do have a middle button
  987. */
  988. static const struct dmi_system_id elantech_dmi_has_middle_button[] = {
  989. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  990. {
  991. /* Fujitsu H730 has a middle button */
  992. .matches = {
  993. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  994. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"),
  995. },
  996. },
  997. #endif
  998. { }
  999. };
  1000. /*
  1001. * Set the appropriate event bits for the input subsystem
  1002. */
  1003. static int elantech_set_input_params(struct psmouse *psmouse)
  1004. {
  1005. struct input_dev *dev = psmouse->dev;
  1006. struct elantech_data *etd = psmouse->private;
  1007. unsigned int x_min = 0, y_min = 0, x_max = 0, y_max = 0, width = 0;
  1008. unsigned int x_res = 31, y_res = 31;
  1009. if (elantech_set_range(psmouse, &x_min, &y_min, &x_max, &y_max, &width))
  1010. return -1;
  1011. __set_bit(INPUT_PROP_POINTER, dev->propbit);
  1012. __set_bit(EV_KEY, dev->evbit);
  1013. __set_bit(EV_ABS, dev->evbit);
  1014. __clear_bit(EV_REL, dev->evbit);
  1015. __set_bit(BTN_LEFT, dev->keybit);
  1016. if (dmi_check_system(elantech_dmi_has_middle_button))
  1017. __set_bit(BTN_MIDDLE, dev->keybit);
  1018. __set_bit(BTN_RIGHT, dev->keybit);
  1019. __set_bit(BTN_TOUCH, dev->keybit);
  1020. __set_bit(BTN_TOOL_FINGER, dev->keybit);
  1021. __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
  1022. __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
  1023. switch (etd->hw_version) {
  1024. case 1:
  1025. /* Rocker button */
  1026. if (etd->fw_version < 0x020000 &&
  1027. (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
  1028. __set_bit(BTN_FORWARD, dev->keybit);
  1029. __set_bit(BTN_BACK, dev->keybit);
  1030. }
  1031. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1032. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1033. break;
  1034. case 2:
  1035. __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
  1036. __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
  1037. /* fall through */
  1038. case 3:
  1039. if (etd->hw_version == 3)
  1040. elantech_set_buttonpad_prop(psmouse);
  1041. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1042. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1043. if (etd->reports_pressure) {
  1044. input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
  1045. ETP_PMAX_V2, 0, 0);
  1046. input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
  1047. ETP_WMAX_V2, 0, 0);
  1048. }
  1049. input_mt_init_slots(dev, 2, 0);
  1050. input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
  1051. input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
  1052. break;
  1053. case 4:
  1054. if (elantech_get_resolution_v4(psmouse, &x_res, &y_res)) {
  1055. /*
  1056. * if query failed, print a warning and leave the values
  1057. * zero to resemble synaptics.c behavior.
  1058. */
  1059. psmouse_warn(psmouse, "couldn't query resolution data.\n");
  1060. }
  1061. elantech_set_buttonpad_prop(psmouse);
  1062. __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
  1063. /* For X to recognize me as touchpad. */
  1064. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1065. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1066. /*
  1067. * range of pressure and width is the same as v2,
  1068. * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
  1069. */
  1070. input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
  1071. ETP_PMAX_V2, 0, 0);
  1072. input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
  1073. ETP_WMAX_V2, 0, 0);
  1074. /* Multitouch capable pad, up to 5 fingers. */
  1075. input_mt_init_slots(dev, ETP_MAX_FINGERS, 0);
  1076. input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
  1077. input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
  1078. input_set_abs_params(dev, ABS_MT_PRESSURE, ETP_PMIN_V2,
  1079. ETP_PMAX_V2, 0, 0);
  1080. /*
  1081. * The firmware reports how many trace lines the finger spans,
  1082. * convert to surface unit as Protocol-B requires.
  1083. */
  1084. input_set_abs_params(dev, ABS_MT_TOUCH_MAJOR, 0,
  1085. ETP_WMAX_V2 * width, 0, 0);
  1086. break;
  1087. }
  1088. input_abs_set_res(dev, ABS_X, x_res);
  1089. input_abs_set_res(dev, ABS_Y, y_res);
  1090. if (etd->hw_version > 1) {
  1091. input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
  1092. input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
  1093. }
  1094. etd->y_max = y_max;
  1095. etd->width = width;
  1096. return 0;
  1097. }
  1098. struct elantech_attr_data {
  1099. size_t field_offset;
  1100. unsigned char reg;
  1101. };
  1102. /*
  1103. * Display a register value by reading a sysfs entry
  1104. */
  1105. static ssize_t elantech_show_int_attr(struct psmouse *psmouse, void *data,
  1106. char *buf)
  1107. {
  1108. struct elantech_data *etd = psmouse->private;
  1109. struct elantech_attr_data *attr = data;
  1110. unsigned char *reg = (unsigned char *) etd + attr->field_offset;
  1111. int rc = 0;
  1112. if (attr->reg)
  1113. rc = elantech_read_reg(psmouse, attr->reg, reg);
  1114. return sprintf(buf, "0x%02x\n", (attr->reg && rc) ? -1 : *reg);
  1115. }
  1116. /*
  1117. * Write a register value by writing a sysfs entry
  1118. */
  1119. static ssize_t elantech_set_int_attr(struct psmouse *psmouse,
  1120. void *data, const char *buf, size_t count)
  1121. {
  1122. struct elantech_data *etd = psmouse->private;
  1123. struct elantech_attr_data *attr = data;
  1124. unsigned char *reg = (unsigned char *) etd + attr->field_offset;
  1125. unsigned char value;
  1126. int err;
  1127. err = kstrtou8(buf, 16, &value);
  1128. if (err)
  1129. return err;
  1130. /* Do we need to preserve some bits for version 2 hardware too? */
  1131. if (etd->hw_version == 1) {
  1132. if (attr->reg == 0x10)
  1133. /* Force absolute mode always on */
  1134. value |= ETP_R10_ABSOLUTE_MODE;
  1135. else if (attr->reg == 0x11)
  1136. /* Force 4 byte mode always on */
  1137. value |= ETP_R11_4_BYTE_MODE;
  1138. }
  1139. if (!attr->reg || elantech_write_reg(psmouse, attr->reg, value) == 0)
  1140. *reg = value;
  1141. return count;
  1142. }
  1143. #define ELANTECH_INT_ATTR(_name, _register) \
  1144. static struct elantech_attr_data elantech_attr_##_name = { \
  1145. .field_offset = offsetof(struct elantech_data, _name), \
  1146. .reg = _register, \
  1147. }; \
  1148. PSMOUSE_DEFINE_ATTR(_name, S_IWUSR | S_IRUGO, \
  1149. &elantech_attr_##_name, \
  1150. elantech_show_int_attr, \
  1151. elantech_set_int_attr)
  1152. ELANTECH_INT_ATTR(reg_07, 0x07);
  1153. ELANTECH_INT_ATTR(reg_10, 0x10);
  1154. ELANTECH_INT_ATTR(reg_11, 0x11);
  1155. ELANTECH_INT_ATTR(reg_20, 0x20);
  1156. ELANTECH_INT_ATTR(reg_21, 0x21);
  1157. ELANTECH_INT_ATTR(reg_22, 0x22);
  1158. ELANTECH_INT_ATTR(reg_23, 0x23);
  1159. ELANTECH_INT_ATTR(reg_24, 0x24);
  1160. ELANTECH_INT_ATTR(reg_25, 0x25);
  1161. ELANTECH_INT_ATTR(reg_26, 0x26);
  1162. ELANTECH_INT_ATTR(debug, 0);
  1163. ELANTECH_INT_ATTR(paritycheck, 0);
  1164. ELANTECH_INT_ATTR(crc_enabled, 0);
  1165. static struct attribute *elantech_attrs[] = {
  1166. &psmouse_attr_reg_07.dattr.attr,
  1167. &psmouse_attr_reg_10.dattr.attr,
  1168. &psmouse_attr_reg_11.dattr.attr,
  1169. &psmouse_attr_reg_20.dattr.attr,
  1170. &psmouse_attr_reg_21.dattr.attr,
  1171. &psmouse_attr_reg_22.dattr.attr,
  1172. &psmouse_attr_reg_23.dattr.attr,
  1173. &psmouse_attr_reg_24.dattr.attr,
  1174. &psmouse_attr_reg_25.dattr.attr,
  1175. &psmouse_attr_reg_26.dattr.attr,
  1176. &psmouse_attr_debug.dattr.attr,
  1177. &psmouse_attr_paritycheck.dattr.attr,
  1178. &psmouse_attr_crc_enabled.dattr.attr,
  1179. NULL
  1180. };
  1181. static struct attribute_group elantech_attr_group = {
  1182. .attrs = elantech_attrs,
  1183. };
  1184. static bool elantech_is_signature_valid(const unsigned char *param)
  1185. {
  1186. static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10 };
  1187. int i;
  1188. if (param[0] == 0)
  1189. return false;
  1190. if (param[1] == 0)
  1191. return true;
  1192. /*
  1193. * Some hw_version >= 4 models have a revision higher then 20. Meaning
  1194. * that param[2] may be 10 or 20, skip the rates check for these.
  1195. */
  1196. if ((param[0] & 0x0f) >= 0x06 && (param[1] & 0xaf) == 0x0f &&
  1197. param[2] < 40)
  1198. return true;
  1199. for (i = 0; i < ARRAY_SIZE(rates); i++)
  1200. if (param[2] == rates[i])
  1201. return false;
  1202. return true;
  1203. }
  1204. /*
  1205. * Use magic knock to detect Elantech touchpad
  1206. */
  1207. int elantech_detect(struct psmouse *psmouse, bool set_properties)
  1208. {
  1209. struct ps2dev *ps2dev = &psmouse->ps2dev;
  1210. unsigned char param[3];
  1211. ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
  1212. if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
  1213. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1214. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1215. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1216. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
  1217. psmouse_dbg(psmouse, "sending Elantech magic knock failed.\n");
  1218. return -1;
  1219. }
  1220. /*
  1221. * Report this in case there are Elantech models that use a different
  1222. * set of magic numbers
  1223. */
  1224. if (param[0] != 0x3c || param[1] != 0x03 ||
  1225. (param[2] != 0xc8 && param[2] != 0x00)) {
  1226. psmouse_dbg(psmouse,
  1227. "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
  1228. param[0], param[1], param[2]);
  1229. return -1;
  1230. }
  1231. /*
  1232. * Query touchpad's firmware version and see if it reports known
  1233. * value to avoid mis-detection. Logitech mice are known to respond
  1234. * to Elantech magic knock and there might be more.
  1235. */
  1236. if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
  1237. psmouse_dbg(psmouse, "failed to query firmware version.\n");
  1238. return -1;
  1239. }
  1240. psmouse_dbg(psmouse,
  1241. "Elantech version query result 0x%02x, 0x%02x, 0x%02x.\n",
  1242. param[0], param[1], param[2]);
  1243. if (!elantech_is_signature_valid(param)) {
  1244. psmouse_dbg(psmouse,
  1245. "Probably not a real Elantech touchpad. Aborting.\n");
  1246. return -1;
  1247. }
  1248. if (set_properties) {
  1249. psmouse->vendor = "Elantech";
  1250. psmouse->name = "Touchpad";
  1251. }
  1252. return 0;
  1253. }
  1254. /*
  1255. * Clean up sysfs entries when disconnecting
  1256. */
  1257. static void elantech_disconnect(struct psmouse *psmouse)
  1258. {
  1259. struct elantech_data *etd = psmouse->private;
  1260. if (etd->tp_dev)
  1261. input_unregister_device(etd->tp_dev);
  1262. sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
  1263. &elantech_attr_group);
  1264. kfree(psmouse->private);
  1265. psmouse->private = NULL;
  1266. }
  1267. /*
  1268. * Put the touchpad back into absolute mode when reconnecting
  1269. */
  1270. static int elantech_reconnect(struct psmouse *psmouse)
  1271. {
  1272. psmouse_reset(psmouse);
  1273. if (elantech_detect(psmouse, 0))
  1274. return -1;
  1275. if (elantech_set_absolute_mode(psmouse)) {
  1276. psmouse_err(psmouse,
  1277. "failed to put touchpad back into absolute mode.\n");
  1278. return -1;
  1279. }
  1280. return 0;
  1281. }
  1282. /*
  1283. * Some hw_version 4 models do not work with crc_disabled
  1284. */
  1285. static const struct dmi_system_id elantech_dmi_force_crc_enabled[] = {
  1286. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  1287. {
  1288. /* Fujitsu H730 does not work with crc_enabled == 0 */
  1289. .matches = {
  1290. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1291. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"),
  1292. },
  1293. },
  1294. {
  1295. /* Fujitsu LIFEBOOK E554 does not work with crc_enabled == 0 */
  1296. .matches = {
  1297. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1298. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E554"),
  1299. },
  1300. },
  1301. {
  1302. /* Fujitsu LIFEBOOK E544 does not work with crc_enabled == 0 */
  1303. .matches = {
  1304. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1305. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E544"),
  1306. },
  1307. },
  1308. #endif
  1309. { }
  1310. };
  1311. /*
  1312. * Some hw_version 3 models go into error state when we try to set
  1313. * bit 3 and/or bit 1 of r10.
  1314. */
  1315. static const struct dmi_system_id no_hw_res_dmi_table[] = {
  1316. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  1317. {
  1318. /* Gigabyte U2442 */
  1319. .matches = {
  1320. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  1321. DMI_MATCH(DMI_PRODUCT_NAME, "U2442"),
  1322. },
  1323. },
  1324. #endif
  1325. { }
  1326. };
  1327. /*
  1328. * determine hardware version and set some properties according to it.
  1329. */
  1330. static int elantech_set_properties(struct elantech_data *etd)
  1331. {
  1332. /* This represents the version of IC body. */
  1333. int ver = (etd->fw_version & 0x0f0000) >> 16;
  1334. /* Early version of Elan touchpads doesn't obey the rule. */
  1335. if (etd->fw_version < 0x020030 || etd->fw_version == 0x020600)
  1336. etd->hw_version = 1;
  1337. else {
  1338. switch (ver) {
  1339. case 2:
  1340. case 4:
  1341. etd->hw_version = 2;
  1342. break;
  1343. case 5:
  1344. etd->hw_version = 3;
  1345. break;
  1346. case 6:
  1347. case 7:
  1348. case 8:
  1349. case 9:
  1350. case 10:
  1351. case 13:
  1352. case 14:
  1353. etd->hw_version = 4;
  1354. break;
  1355. default:
  1356. return -1;
  1357. }
  1358. }
  1359. /* decide which send_cmd we're gonna use early */
  1360. etd->send_cmd = etd->hw_version >= 3 ? elantech_send_cmd :
  1361. synaptics_send_cmd;
  1362. /* Turn on packet checking by default */
  1363. etd->paritycheck = 1;
  1364. /*
  1365. * This firmware suffers from misreporting coordinates when
  1366. * a touch action starts causing the mouse cursor or scrolled page
  1367. * to jump. Enable a workaround.
  1368. */
  1369. etd->jumpy_cursor =
  1370. (etd->fw_version == 0x020022 || etd->fw_version == 0x020600);
  1371. if (etd->hw_version > 1) {
  1372. /* For now show extra debug information */
  1373. etd->debug = 1;
  1374. if (etd->fw_version >= 0x020800)
  1375. etd->reports_pressure = true;
  1376. }
  1377. /*
  1378. * The signatures of v3 and v4 packets change depending on the
  1379. * value of this hardware flag.
  1380. */
  1381. etd->crc_enabled = (etd->fw_version & 0x4000) == 0x4000 ||
  1382. dmi_check_system(elantech_dmi_force_crc_enabled);
  1383. /* Enable real hardware resolution on hw_version 3 ? */
  1384. etd->set_hw_resolution = !dmi_check_system(no_hw_res_dmi_table);
  1385. return 0;
  1386. }
  1387. /*
  1388. * Initialize the touchpad and create sysfs entries
  1389. */
  1390. int elantech_init(struct psmouse *psmouse)
  1391. {
  1392. struct elantech_data *etd;
  1393. int i;
  1394. int error = -EINVAL;
  1395. unsigned char param[3];
  1396. struct input_dev *tp_dev;
  1397. psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
  1398. if (!etd)
  1399. return -ENOMEM;
  1400. psmouse_reset(psmouse);
  1401. etd->parity[0] = 1;
  1402. for (i = 1; i < 256; i++)
  1403. etd->parity[i] = etd->parity[i & (i - 1)] ^ 1;
  1404. /*
  1405. * Do the version query again so we can store the result
  1406. */
  1407. if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
  1408. psmouse_err(psmouse, "failed to query firmware version.\n");
  1409. goto init_fail;
  1410. }
  1411. etd->fw_version = (param[0] << 16) | (param[1] << 8) | param[2];
  1412. if (elantech_set_properties(etd)) {
  1413. psmouse_err(psmouse, "unknown hardware version, aborting...\n");
  1414. goto init_fail;
  1415. }
  1416. psmouse_info(psmouse,
  1417. "assuming hardware version %d (with firmware version 0x%02x%02x%02x)\n",
  1418. etd->hw_version, param[0], param[1], param[2]);
  1419. if (etd->send_cmd(psmouse, ETP_CAPABILITIES_QUERY,
  1420. etd->capabilities)) {
  1421. psmouse_err(psmouse, "failed to query capabilities.\n");
  1422. goto init_fail;
  1423. }
  1424. psmouse_info(psmouse,
  1425. "Synaptics capabilities query result 0x%02x, 0x%02x, 0x%02x.\n",
  1426. etd->capabilities[0], etd->capabilities[1],
  1427. etd->capabilities[2]);
  1428. if (etd->hw_version != 1) {
  1429. if (etd->send_cmd(psmouse, ETP_SAMPLE_QUERY, etd->samples)) {
  1430. psmouse_err(psmouse, "failed to query sample data\n");
  1431. goto init_fail;
  1432. }
  1433. psmouse_info(psmouse,
  1434. "Elan sample query result %02x, %02x, %02x\n",
  1435. etd->samples[0], etd->samples[1], etd->samples[2]);
  1436. }
  1437. if (elantech_set_absolute_mode(psmouse)) {
  1438. psmouse_err(psmouse,
  1439. "failed to put touchpad into absolute mode.\n");
  1440. goto init_fail;
  1441. }
  1442. if (etd->fw_version == 0x381f17) {
  1443. etd->original_set_rate = psmouse->set_rate;
  1444. psmouse->set_rate = elantech_set_rate_restore_reg_07;
  1445. }
  1446. if (elantech_set_input_params(psmouse)) {
  1447. psmouse_err(psmouse, "failed to query touchpad range.\n");
  1448. goto init_fail;
  1449. }
  1450. error = sysfs_create_group(&psmouse->ps2dev.serio->dev.kobj,
  1451. &elantech_attr_group);
  1452. if (error) {
  1453. psmouse_err(psmouse,
  1454. "failed to create sysfs attributes, error: %d.\n",
  1455. error);
  1456. goto init_fail;
  1457. }
  1458. /* The MSB indicates the presence of the trackpoint */
  1459. if ((etd->capabilities[0] & 0x80) == 0x80) {
  1460. tp_dev = input_allocate_device();
  1461. if (!tp_dev) {
  1462. error = -ENOMEM;
  1463. goto init_fail_tp_alloc;
  1464. }
  1465. etd->tp_dev = tp_dev;
  1466. snprintf(etd->tp_phys, sizeof(etd->tp_phys), "%s/input1",
  1467. psmouse->ps2dev.serio->phys);
  1468. tp_dev->phys = etd->tp_phys;
  1469. tp_dev->name = "Elantech PS/2 TrackPoint";
  1470. tp_dev->id.bustype = BUS_I8042;
  1471. tp_dev->id.vendor = 0x0002;
  1472. tp_dev->id.product = PSMOUSE_ELANTECH;
  1473. tp_dev->id.version = 0x0000;
  1474. tp_dev->dev.parent = &psmouse->ps2dev.serio->dev;
  1475. tp_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
  1476. tp_dev->relbit[BIT_WORD(REL_X)] =
  1477. BIT_MASK(REL_X) | BIT_MASK(REL_Y);
  1478. tp_dev->keybit[BIT_WORD(BTN_LEFT)] =
  1479. BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_MIDDLE) |
  1480. BIT_MASK(BTN_RIGHT);
  1481. __set_bit(INPUT_PROP_POINTER, tp_dev->propbit);
  1482. __set_bit(INPUT_PROP_POINTING_STICK, tp_dev->propbit);
  1483. error = input_register_device(etd->tp_dev);
  1484. if (error < 0)
  1485. goto init_fail_tp_reg;
  1486. }
  1487. psmouse->protocol_handler = elantech_process_byte;
  1488. psmouse->disconnect = elantech_disconnect;
  1489. psmouse->reconnect = elantech_reconnect;
  1490. psmouse->pktsize = etd->hw_version > 1 ? 6 : 4;
  1491. return 0;
  1492. init_fail_tp_reg:
  1493. input_free_device(tp_dev);
  1494. init_fail_tp_alloc:
  1495. sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
  1496. &elantech_attr_group);
  1497. init_fail:
  1498. psmouse_reset(psmouse);
  1499. kfree(etd);
  1500. return error;
  1501. }