elantech.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  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] & 0x08) == 0x00 &&
  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 CELSIUS H760 0x570f02 40, 14, 0c 3 hw buttons (**)
  958. * Fujitsu CELSIUS H780 0x5d0f02 41, 16, 0d 3 hw buttons (**)
  959. * Fujitsu LIFEBOOK E544 0x470f00 d0, 12, 09 2 hw buttons
  960. * Fujitsu LIFEBOOK E546 0x470f00 50, 12, 09 2 hw buttons
  961. * Fujitsu LIFEBOOK E547 0x470f00 50, 12, 09 2 hw buttons
  962. * Fujitsu LIFEBOOK E554 0x570f01 40, 14, 0c 2 hw buttons
  963. * Fujitsu LIFEBOOK E557 0x570f01 40, 14, 0c 2 hw buttons
  964. * Fujitsu T725 0x470f01 05, 12, 09 2 hw buttons
  965. * Fujitsu H730 0x570f00 c0, 14, 0c 3 hw buttons (**)
  966. * Gigabyte U2442 0x450f01 58, 17, 0c 2 hw buttons
  967. * Lenovo L430 0x350f02 b9, 15, 0c 2 hw buttons (*)
  968. * Lenovo L530 0x350f02 b9, 15, 0c 2 hw buttons (*)
  969. * Samsung NF210 0x150b00 78, 14, 0a 2 hw buttons
  970. * Samsung NP770Z5E 0x575f01 10, 15, 0f clickpad
  971. * Samsung NP700Z5B 0x361f06 21, 15, 0f clickpad
  972. * Samsung NP900X3E-A02 0x575f03 ? clickpad
  973. * Samsung NP-QX410 0x851b00 19, 14, 0c clickpad
  974. * Samsung RC512 0x450f00 08, 15, 0c 2 hw buttons
  975. * Samsung RF710 0x450f00 ? 2 hw buttons
  976. * System76 Pangolin 0x250f01 ? 2 hw buttons
  977. * (*) + 3 trackpoint buttons
  978. * (**) + 0 trackpoint buttons
  979. * Note: Lenovo L430 and Lenovo L430 have the same fw_version/caps
  980. */
  981. static void elantech_set_buttonpad_prop(struct psmouse *psmouse)
  982. {
  983. struct input_dev *dev = psmouse->dev;
  984. struct elantech_data *etd = psmouse->private;
  985. if (etd->fw_version & 0x001000) {
  986. __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit);
  987. __clear_bit(BTN_RIGHT, dev->keybit);
  988. }
  989. }
  990. /*
  991. * Some hw_version 4 models do have a middle button
  992. */
  993. static const struct dmi_system_id elantech_dmi_has_middle_button[] = {
  994. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  995. {
  996. /* Fujitsu H730 has a middle button */
  997. .matches = {
  998. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  999. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"),
  1000. },
  1001. },
  1002. {
  1003. /* Fujitsu H760 also has a middle button */
  1004. .matches = {
  1005. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1006. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H760"),
  1007. },
  1008. },
  1009. {
  1010. /* Fujitsu H780 also has a middle button */
  1011. .matches = {
  1012. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1013. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H780"),
  1014. },
  1015. },
  1016. #endif
  1017. { }
  1018. };
  1019. static const char * const middle_button_pnp_ids[] = {
  1020. "LEN2131", /* ThinkPad P52 w/ NFC */
  1021. "LEN2132", /* ThinkPad P52 */
  1022. "LEN2133", /* ThinkPad P72 w/ NFC */
  1023. "LEN2134", /* ThinkPad P72 */
  1024. NULL
  1025. };
  1026. /*
  1027. * Set the appropriate event bits for the input subsystem
  1028. */
  1029. static int elantech_set_input_params(struct psmouse *psmouse)
  1030. {
  1031. struct input_dev *dev = psmouse->dev;
  1032. struct elantech_data *etd = psmouse->private;
  1033. unsigned int x_min = 0, y_min = 0, x_max = 0, y_max = 0, width = 0;
  1034. unsigned int x_res = 31, y_res = 31;
  1035. if (elantech_set_range(psmouse, &x_min, &y_min, &x_max, &y_max, &width))
  1036. return -1;
  1037. __set_bit(INPUT_PROP_POINTER, dev->propbit);
  1038. __set_bit(EV_KEY, dev->evbit);
  1039. __set_bit(EV_ABS, dev->evbit);
  1040. __clear_bit(EV_REL, dev->evbit);
  1041. __set_bit(BTN_LEFT, dev->keybit);
  1042. if (dmi_check_system(elantech_dmi_has_middle_button) ||
  1043. psmouse_matches_pnp_id(psmouse, middle_button_pnp_ids))
  1044. __set_bit(BTN_MIDDLE, dev->keybit);
  1045. __set_bit(BTN_RIGHT, dev->keybit);
  1046. __set_bit(BTN_TOUCH, dev->keybit);
  1047. __set_bit(BTN_TOOL_FINGER, dev->keybit);
  1048. __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
  1049. __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
  1050. switch (etd->hw_version) {
  1051. case 1:
  1052. /* Rocker button */
  1053. if (etd->fw_version < 0x020000 &&
  1054. (etd->capabilities[0] & ETP_CAP_HAS_ROCKER)) {
  1055. __set_bit(BTN_FORWARD, dev->keybit);
  1056. __set_bit(BTN_BACK, dev->keybit);
  1057. }
  1058. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1059. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1060. break;
  1061. case 2:
  1062. __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
  1063. __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
  1064. /* fall through */
  1065. case 3:
  1066. if (etd->hw_version == 3)
  1067. elantech_set_buttonpad_prop(psmouse);
  1068. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1069. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1070. if (etd->reports_pressure) {
  1071. input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
  1072. ETP_PMAX_V2, 0, 0);
  1073. input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
  1074. ETP_WMAX_V2, 0, 0);
  1075. }
  1076. input_mt_init_slots(dev, 2, INPUT_MT_SEMI_MT);
  1077. input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
  1078. input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
  1079. break;
  1080. case 4:
  1081. if (elantech_get_resolution_v4(psmouse, &x_res, &y_res)) {
  1082. /*
  1083. * if query failed, print a warning and leave the values
  1084. * zero to resemble synaptics.c behavior.
  1085. */
  1086. psmouse_warn(psmouse, "couldn't query resolution data.\n");
  1087. }
  1088. elantech_set_buttonpad_prop(psmouse);
  1089. __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
  1090. /* For X to recognize me as touchpad. */
  1091. input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
  1092. input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
  1093. /*
  1094. * range of pressure and width is the same as v2,
  1095. * report ABS_PRESSURE, ABS_TOOL_WIDTH for compatibility.
  1096. */
  1097. input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
  1098. ETP_PMAX_V2, 0, 0);
  1099. input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
  1100. ETP_WMAX_V2, 0, 0);
  1101. /* Multitouch capable pad, up to 5 fingers. */
  1102. input_mt_init_slots(dev, ETP_MAX_FINGERS, 0);
  1103. input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
  1104. input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
  1105. input_set_abs_params(dev, ABS_MT_PRESSURE, ETP_PMIN_V2,
  1106. ETP_PMAX_V2, 0, 0);
  1107. /*
  1108. * The firmware reports how many trace lines the finger spans,
  1109. * convert to surface unit as Protocol-B requires.
  1110. */
  1111. input_set_abs_params(dev, ABS_MT_TOUCH_MAJOR, 0,
  1112. ETP_WMAX_V2 * width, 0, 0);
  1113. break;
  1114. }
  1115. input_abs_set_res(dev, ABS_X, x_res);
  1116. input_abs_set_res(dev, ABS_Y, y_res);
  1117. if (etd->hw_version > 1) {
  1118. input_abs_set_res(dev, ABS_MT_POSITION_X, x_res);
  1119. input_abs_set_res(dev, ABS_MT_POSITION_Y, y_res);
  1120. }
  1121. etd->y_max = y_max;
  1122. etd->width = width;
  1123. return 0;
  1124. }
  1125. struct elantech_attr_data {
  1126. size_t field_offset;
  1127. unsigned char reg;
  1128. };
  1129. /*
  1130. * Display a register value by reading a sysfs entry
  1131. */
  1132. static ssize_t elantech_show_int_attr(struct psmouse *psmouse, void *data,
  1133. char *buf)
  1134. {
  1135. struct elantech_data *etd = psmouse->private;
  1136. struct elantech_attr_data *attr = data;
  1137. unsigned char *reg = (unsigned char *) etd + attr->field_offset;
  1138. int rc = 0;
  1139. if (attr->reg)
  1140. rc = elantech_read_reg(psmouse, attr->reg, reg);
  1141. return sprintf(buf, "0x%02x\n", (attr->reg && rc) ? -1 : *reg);
  1142. }
  1143. /*
  1144. * Write a register value by writing a sysfs entry
  1145. */
  1146. static ssize_t elantech_set_int_attr(struct psmouse *psmouse,
  1147. void *data, const char *buf, size_t count)
  1148. {
  1149. struct elantech_data *etd = psmouse->private;
  1150. struct elantech_attr_data *attr = data;
  1151. unsigned char *reg = (unsigned char *) etd + attr->field_offset;
  1152. unsigned char value;
  1153. int err;
  1154. err = kstrtou8(buf, 16, &value);
  1155. if (err)
  1156. return err;
  1157. /* Do we need to preserve some bits for version 2 hardware too? */
  1158. if (etd->hw_version == 1) {
  1159. if (attr->reg == 0x10)
  1160. /* Force absolute mode always on */
  1161. value |= ETP_R10_ABSOLUTE_MODE;
  1162. else if (attr->reg == 0x11)
  1163. /* Force 4 byte mode always on */
  1164. value |= ETP_R11_4_BYTE_MODE;
  1165. }
  1166. if (!attr->reg || elantech_write_reg(psmouse, attr->reg, value) == 0)
  1167. *reg = value;
  1168. return count;
  1169. }
  1170. #define ELANTECH_INT_ATTR(_name, _register) \
  1171. static struct elantech_attr_data elantech_attr_##_name = { \
  1172. .field_offset = offsetof(struct elantech_data, _name), \
  1173. .reg = _register, \
  1174. }; \
  1175. PSMOUSE_DEFINE_ATTR(_name, S_IWUSR | S_IRUGO, \
  1176. &elantech_attr_##_name, \
  1177. elantech_show_int_attr, \
  1178. elantech_set_int_attr)
  1179. ELANTECH_INT_ATTR(reg_07, 0x07);
  1180. ELANTECH_INT_ATTR(reg_10, 0x10);
  1181. ELANTECH_INT_ATTR(reg_11, 0x11);
  1182. ELANTECH_INT_ATTR(reg_20, 0x20);
  1183. ELANTECH_INT_ATTR(reg_21, 0x21);
  1184. ELANTECH_INT_ATTR(reg_22, 0x22);
  1185. ELANTECH_INT_ATTR(reg_23, 0x23);
  1186. ELANTECH_INT_ATTR(reg_24, 0x24);
  1187. ELANTECH_INT_ATTR(reg_25, 0x25);
  1188. ELANTECH_INT_ATTR(reg_26, 0x26);
  1189. ELANTECH_INT_ATTR(debug, 0);
  1190. ELANTECH_INT_ATTR(paritycheck, 0);
  1191. ELANTECH_INT_ATTR(crc_enabled, 0);
  1192. static struct attribute *elantech_attrs[] = {
  1193. &psmouse_attr_reg_07.dattr.attr,
  1194. &psmouse_attr_reg_10.dattr.attr,
  1195. &psmouse_attr_reg_11.dattr.attr,
  1196. &psmouse_attr_reg_20.dattr.attr,
  1197. &psmouse_attr_reg_21.dattr.attr,
  1198. &psmouse_attr_reg_22.dattr.attr,
  1199. &psmouse_attr_reg_23.dattr.attr,
  1200. &psmouse_attr_reg_24.dattr.attr,
  1201. &psmouse_attr_reg_25.dattr.attr,
  1202. &psmouse_attr_reg_26.dattr.attr,
  1203. &psmouse_attr_debug.dattr.attr,
  1204. &psmouse_attr_paritycheck.dattr.attr,
  1205. &psmouse_attr_crc_enabled.dattr.attr,
  1206. NULL
  1207. };
  1208. static struct attribute_group elantech_attr_group = {
  1209. .attrs = elantech_attrs,
  1210. };
  1211. static bool elantech_is_signature_valid(const unsigned char *param)
  1212. {
  1213. static const unsigned char rates[] = { 200, 100, 80, 60, 40, 20, 10 };
  1214. int i;
  1215. if (param[0] == 0)
  1216. return false;
  1217. if (param[1] == 0)
  1218. return true;
  1219. /*
  1220. * Some hw_version >= 4 models have a revision higher then 20. Meaning
  1221. * that param[2] may be 10 or 20, skip the rates check for these.
  1222. */
  1223. if ((param[0] & 0x0f) >= 0x06 && (param[1] & 0xaf) == 0x0f &&
  1224. param[2] < 40)
  1225. return true;
  1226. for (i = 0; i < ARRAY_SIZE(rates); i++)
  1227. if (param[2] == rates[i])
  1228. return false;
  1229. return true;
  1230. }
  1231. /*
  1232. * Use magic knock to detect Elantech touchpad
  1233. */
  1234. int elantech_detect(struct psmouse *psmouse, bool set_properties)
  1235. {
  1236. struct ps2dev *ps2dev = &psmouse->ps2dev;
  1237. unsigned char param[3];
  1238. ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_RESET_DIS);
  1239. if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
  1240. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1241. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1242. ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
  1243. ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) {
  1244. psmouse_dbg(psmouse, "sending Elantech magic knock failed.\n");
  1245. return -1;
  1246. }
  1247. /*
  1248. * Report this in case there are Elantech models that use a different
  1249. * set of magic numbers
  1250. */
  1251. if (param[0] != 0x3c || param[1] != 0x03 ||
  1252. (param[2] != 0xc8 && param[2] != 0x00)) {
  1253. psmouse_dbg(psmouse,
  1254. "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
  1255. param[0], param[1], param[2]);
  1256. return -1;
  1257. }
  1258. /*
  1259. * Query touchpad's firmware version and see if it reports known
  1260. * value to avoid mis-detection. Logitech mice are known to respond
  1261. * to Elantech magic knock and there might be more.
  1262. */
  1263. if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
  1264. psmouse_dbg(psmouse, "failed to query firmware version.\n");
  1265. return -1;
  1266. }
  1267. psmouse_dbg(psmouse,
  1268. "Elantech version query result 0x%02x, 0x%02x, 0x%02x.\n",
  1269. param[0], param[1], param[2]);
  1270. if (!elantech_is_signature_valid(param)) {
  1271. psmouse_dbg(psmouse,
  1272. "Probably not a real Elantech touchpad. Aborting.\n");
  1273. return -1;
  1274. }
  1275. if (set_properties) {
  1276. psmouse->vendor = "Elantech";
  1277. psmouse->name = "Touchpad";
  1278. }
  1279. return 0;
  1280. }
  1281. /*
  1282. * Clean up sysfs entries when disconnecting
  1283. */
  1284. static void elantech_disconnect(struct psmouse *psmouse)
  1285. {
  1286. struct elantech_data *etd = psmouse->private;
  1287. if (etd->tp_dev)
  1288. input_unregister_device(etd->tp_dev);
  1289. sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
  1290. &elantech_attr_group);
  1291. kfree(psmouse->private);
  1292. psmouse->private = NULL;
  1293. }
  1294. /*
  1295. * Put the touchpad back into absolute mode when reconnecting
  1296. */
  1297. static int elantech_reconnect(struct psmouse *psmouse)
  1298. {
  1299. psmouse_reset(psmouse);
  1300. if (elantech_detect(psmouse, 0))
  1301. return -1;
  1302. if (elantech_set_absolute_mode(psmouse)) {
  1303. psmouse_err(psmouse,
  1304. "failed to put touchpad back into absolute mode.\n");
  1305. return -1;
  1306. }
  1307. return 0;
  1308. }
  1309. /*
  1310. * Some hw_version 4 models do not work with crc_disabled
  1311. */
  1312. static const struct dmi_system_id elantech_dmi_force_crc_enabled[] = {
  1313. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  1314. {
  1315. /* Fujitsu H730 does not work with crc_enabled == 0 */
  1316. .matches = {
  1317. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1318. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"),
  1319. },
  1320. },
  1321. {
  1322. /* Fujitsu H760 does not work with crc_enabled == 0 */
  1323. .matches = {
  1324. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1325. DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H760"),
  1326. },
  1327. },
  1328. {
  1329. /* Fujitsu LIFEBOOK E544 does not work with crc_enabled == 0 */
  1330. .matches = {
  1331. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1332. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E544"),
  1333. },
  1334. },
  1335. {
  1336. /* Fujitsu LIFEBOOK E546 does not work with crc_enabled == 0 */
  1337. .matches = {
  1338. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1339. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E546"),
  1340. },
  1341. },
  1342. {
  1343. /* Fujitsu LIFEBOOK E547 does not work with crc_enabled == 0 */
  1344. .matches = {
  1345. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1346. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E547"),
  1347. },
  1348. },
  1349. {
  1350. /* Fujitsu LIFEBOOK E554 does not work with crc_enabled == 0 */
  1351. .matches = {
  1352. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1353. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E554"),
  1354. },
  1355. },
  1356. {
  1357. /* Fujitsu LIFEBOOK E556 does not work with crc_enabled == 0 */
  1358. .matches = {
  1359. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1360. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E556"),
  1361. },
  1362. },
  1363. {
  1364. /* Fujitsu LIFEBOOK E557 does not work with crc_enabled == 0 */
  1365. .matches = {
  1366. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1367. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E557"),
  1368. },
  1369. },
  1370. {
  1371. /* Fujitsu LIFEBOOK U745 does not work with crc_enabled == 0 */
  1372. .matches = {
  1373. DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
  1374. DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U745"),
  1375. },
  1376. },
  1377. #endif
  1378. { }
  1379. };
  1380. /*
  1381. * Some hw_version 3 models go into error state when we try to set
  1382. * bit 3 and/or bit 1 of r10.
  1383. */
  1384. static const struct dmi_system_id no_hw_res_dmi_table[] = {
  1385. #if defined(CONFIG_DMI) && defined(CONFIG_X86)
  1386. {
  1387. /* Gigabyte U2442 */
  1388. .matches = {
  1389. DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
  1390. DMI_MATCH(DMI_PRODUCT_NAME, "U2442"),
  1391. },
  1392. },
  1393. #endif
  1394. { }
  1395. };
  1396. /*
  1397. * determine hardware version and set some properties according to it.
  1398. */
  1399. static int elantech_set_properties(struct elantech_data *etd)
  1400. {
  1401. /* This represents the version of IC body. */
  1402. int ver = (etd->fw_version & 0x0f0000) >> 16;
  1403. /* Early version of Elan touchpads doesn't obey the rule. */
  1404. if (etd->fw_version < 0x020030 || etd->fw_version == 0x020600)
  1405. etd->hw_version = 1;
  1406. else {
  1407. switch (ver) {
  1408. case 2:
  1409. case 4:
  1410. etd->hw_version = 2;
  1411. break;
  1412. case 5:
  1413. etd->hw_version = 3;
  1414. break;
  1415. case 6 ... 15:
  1416. etd->hw_version = 4;
  1417. break;
  1418. default:
  1419. return -1;
  1420. }
  1421. }
  1422. /* decide which send_cmd we're gonna use early */
  1423. etd->send_cmd = etd->hw_version >= 3 ? elantech_send_cmd :
  1424. synaptics_send_cmd;
  1425. /* Turn on packet checking by default */
  1426. etd->paritycheck = 1;
  1427. /*
  1428. * This firmware suffers from misreporting coordinates when
  1429. * a touch action starts causing the mouse cursor or scrolled page
  1430. * to jump. Enable a workaround.
  1431. */
  1432. etd->jumpy_cursor =
  1433. (etd->fw_version == 0x020022 || etd->fw_version == 0x020600);
  1434. if (etd->hw_version > 1) {
  1435. /* For now show extra debug information */
  1436. etd->debug = 1;
  1437. if (etd->fw_version >= 0x020800)
  1438. etd->reports_pressure = true;
  1439. }
  1440. /*
  1441. * The signatures of v3 and v4 packets change depending on the
  1442. * value of this hardware flag.
  1443. */
  1444. etd->crc_enabled = (etd->fw_version & 0x4000) == 0x4000 ||
  1445. dmi_check_system(elantech_dmi_force_crc_enabled);
  1446. /* Enable real hardware resolution on hw_version 3 ? */
  1447. etd->set_hw_resolution = !dmi_check_system(no_hw_res_dmi_table);
  1448. return 0;
  1449. }
  1450. /*
  1451. * Initialize the touchpad and create sysfs entries
  1452. */
  1453. int elantech_init(struct psmouse *psmouse)
  1454. {
  1455. struct elantech_data *etd;
  1456. int i;
  1457. int error = -EINVAL;
  1458. unsigned char param[3];
  1459. struct input_dev *tp_dev;
  1460. psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
  1461. if (!etd)
  1462. return -ENOMEM;
  1463. psmouse_reset(psmouse);
  1464. etd->parity[0] = 1;
  1465. for (i = 1; i < 256; i++)
  1466. etd->parity[i] = etd->parity[i & (i - 1)] ^ 1;
  1467. /*
  1468. * Do the version query again so we can store the result
  1469. */
  1470. if (synaptics_send_cmd(psmouse, ETP_FW_VERSION_QUERY, param)) {
  1471. psmouse_err(psmouse, "failed to query firmware version.\n");
  1472. goto init_fail;
  1473. }
  1474. etd->fw_version = (param[0] << 16) | (param[1] << 8) | param[2];
  1475. if (elantech_set_properties(etd)) {
  1476. psmouse_err(psmouse, "unknown hardware version, aborting...\n");
  1477. goto init_fail;
  1478. }
  1479. psmouse_info(psmouse,
  1480. "assuming hardware version %d (with firmware version 0x%02x%02x%02x)\n",
  1481. etd->hw_version, param[0], param[1], param[2]);
  1482. if (etd->send_cmd(psmouse, ETP_CAPABILITIES_QUERY,
  1483. etd->capabilities)) {
  1484. psmouse_err(psmouse, "failed to query capabilities.\n");
  1485. goto init_fail;
  1486. }
  1487. psmouse_info(psmouse,
  1488. "Synaptics capabilities query result 0x%02x, 0x%02x, 0x%02x.\n",
  1489. etd->capabilities[0], etd->capabilities[1],
  1490. etd->capabilities[2]);
  1491. if (etd->hw_version != 1) {
  1492. if (etd->send_cmd(psmouse, ETP_SAMPLE_QUERY, etd->samples)) {
  1493. psmouse_err(psmouse, "failed to query sample data\n");
  1494. goto init_fail;
  1495. }
  1496. psmouse_info(psmouse,
  1497. "Elan sample query result %02x, %02x, %02x\n",
  1498. etd->samples[0], etd->samples[1], etd->samples[2]);
  1499. }
  1500. if (etd->samples[1] == 0x74 && etd->hw_version == 0x03) {
  1501. /*
  1502. * This module has a bug which makes absolute mode
  1503. * unusable, so let's abort so we'll be using standard
  1504. * PS/2 protocol.
  1505. */
  1506. psmouse_info(psmouse,
  1507. "absolute mode broken, forcing standard PS/2 protocol\n");
  1508. goto init_fail;
  1509. }
  1510. if (elantech_set_absolute_mode(psmouse)) {
  1511. psmouse_err(psmouse,
  1512. "failed to put touchpad into absolute mode.\n");
  1513. goto init_fail;
  1514. }
  1515. if (etd->fw_version == 0x381f17) {
  1516. etd->original_set_rate = psmouse->set_rate;
  1517. psmouse->set_rate = elantech_set_rate_restore_reg_07;
  1518. }
  1519. if (elantech_set_input_params(psmouse)) {
  1520. psmouse_err(psmouse, "failed to query touchpad range.\n");
  1521. goto init_fail;
  1522. }
  1523. error = sysfs_create_group(&psmouse->ps2dev.serio->dev.kobj,
  1524. &elantech_attr_group);
  1525. if (error) {
  1526. psmouse_err(psmouse,
  1527. "failed to create sysfs attributes, error: %d.\n",
  1528. error);
  1529. goto init_fail;
  1530. }
  1531. /* The MSB indicates the presence of the trackpoint */
  1532. if ((etd->capabilities[0] & 0x80) == 0x80) {
  1533. tp_dev = input_allocate_device();
  1534. if (!tp_dev) {
  1535. error = -ENOMEM;
  1536. goto init_fail_tp_alloc;
  1537. }
  1538. etd->tp_dev = tp_dev;
  1539. snprintf(etd->tp_phys, sizeof(etd->tp_phys), "%s/input1",
  1540. psmouse->ps2dev.serio->phys);
  1541. tp_dev->phys = etd->tp_phys;
  1542. tp_dev->name = "Elantech PS/2 TrackPoint";
  1543. tp_dev->id.bustype = BUS_I8042;
  1544. tp_dev->id.vendor = 0x0002;
  1545. tp_dev->id.product = PSMOUSE_ELANTECH;
  1546. tp_dev->id.version = 0x0000;
  1547. tp_dev->dev.parent = &psmouse->ps2dev.serio->dev;
  1548. tp_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
  1549. tp_dev->relbit[BIT_WORD(REL_X)] =
  1550. BIT_MASK(REL_X) | BIT_MASK(REL_Y);
  1551. tp_dev->keybit[BIT_WORD(BTN_LEFT)] =
  1552. BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_MIDDLE) |
  1553. BIT_MASK(BTN_RIGHT);
  1554. __set_bit(INPUT_PROP_POINTER, tp_dev->propbit);
  1555. __set_bit(INPUT_PROP_POINTING_STICK, tp_dev->propbit);
  1556. error = input_register_device(etd->tp_dev);
  1557. if (error < 0)
  1558. goto init_fail_tp_reg;
  1559. }
  1560. psmouse->protocol_handler = elantech_process_byte;
  1561. psmouse->disconnect = elantech_disconnect;
  1562. psmouse->reconnect = elantech_reconnect;
  1563. psmouse->pktsize = etd->hw_version > 1 ? 6 : 4;
  1564. return 0;
  1565. init_fail_tp_reg:
  1566. input_free_device(tp_dev);
  1567. init_fail_tp_alloc:
  1568. sysfs_remove_group(&psmouse->ps2dev.serio->dev.kobj,
  1569. &elantech_attr_group);
  1570. init_fail:
  1571. psmouse_reset(psmouse);
  1572. kfree(etd);
  1573. return error;
  1574. }