elan_i2c_smbus.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. /*
  2. * Elan I2C/SMBus Touchpad driver - SMBus interface
  3. *
  4. * Copyright (c) 2013 ELAN Microelectronics Corp.
  5. *
  6. * Author: 林政維 (Duson Lin) <dusonlin@emc.com.tw>
  7. *
  8. * Based on cyapa driver:
  9. * copyright (c) 2011-2012 Cypress Semiconductor, Inc.
  10. * copyright (c) 2011-2012 Google, Inc.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License version 2 as published
  14. * by the Free Software Foundation.
  15. *
  16. * Trademarks are the property of their respective owners.
  17. */
  18. #include <linux/delay.h>
  19. #include <linux/i2c.h>
  20. #include <linux/init.h>
  21. #include <linux/kernel.h>
  22. #include "elan_i2c.h"
  23. /* Elan SMbus commands */
  24. #define ETP_SMBUS_IAP_CMD 0x00
  25. #define ETP_SMBUS_ENABLE_TP 0x20
  26. #define ETP_SMBUS_SLEEP_CMD 0x21
  27. #define ETP_SMBUS_IAP_PASSWORD_WRITE 0x29
  28. #define ETP_SMBUS_IAP_PASSWORD_READ 0x80
  29. #define ETP_SMBUS_WRITE_FW_BLOCK 0x2A
  30. #define ETP_SMBUS_IAP_RESET_CMD 0x2B
  31. #define ETP_SMBUS_RANGE_CMD 0xA0
  32. #define ETP_SMBUS_FW_VERSION_CMD 0xA1
  33. #define ETP_SMBUS_XY_TRACENUM_CMD 0xA2
  34. #define ETP_SMBUS_SM_VERSION_CMD 0xA3
  35. #define ETP_SMBUS_UNIQUEID_CMD 0xA3
  36. #define ETP_SMBUS_RESOLUTION_CMD 0xA4
  37. #define ETP_SMBUS_HELLOPACKET_CMD 0xA7
  38. #define ETP_SMBUS_PACKET_QUERY 0xA8
  39. #define ETP_SMBUS_IAP_VERSION_CMD 0xAC
  40. #define ETP_SMBUS_IAP_CTRL_CMD 0xAD
  41. #define ETP_SMBUS_IAP_CHECKSUM_CMD 0xAE
  42. #define ETP_SMBUS_FW_CHECKSUM_CMD 0xAF
  43. #define ETP_SMBUS_MAX_BASELINE_CMD 0xC3
  44. #define ETP_SMBUS_MIN_BASELINE_CMD 0xC4
  45. #define ETP_SMBUS_CALIBRATE_QUERY 0xC5
  46. #define ETP_SMBUS_REPORT_LEN 32
  47. #define ETP_SMBUS_REPORT_OFFSET 2
  48. #define ETP_SMBUS_HELLOPACKET_LEN 5
  49. #define ETP_SMBUS_IAP_PASSWORD 0x1234
  50. #define ETP_SMBUS_IAP_MODE_ON (1 << 6)
  51. static int elan_smbus_initialize(struct i2c_client *client)
  52. {
  53. u8 check[ETP_SMBUS_HELLOPACKET_LEN] = { 0x55, 0x55, 0x55, 0x55, 0x55 };
  54. u8 values[ETP_SMBUS_HELLOPACKET_LEN] = { 0, 0, 0, 0, 0 };
  55. int len, error;
  56. /* Get hello packet */
  57. len = i2c_smbus_read_block_data(client,
  58. ETP_SMBUS_HELLOPACKET_CMD, values);
  59. if (len != ETP_SMBUS_HELLOPACKET_LEN) {
  60. dev_err(&client->dev, "hello packet length fail: %d\n", len);
  61. error = len < 0 ? len : -EIO;
  62. return error;
  63. }
  64. /* compare hello packet */
  65. if (memcmp(values, check, ETP_SMBUS_HELLOPACKET_LEN)) {
  66. dev_err(&client->dev, "hello packet fail [%*ph]\n",
  67. ETP_SMBUS_HELLOPACKET_LEN, values);
  68. return -ENXIO;
  69. }
  70. /* enable tp */
  71. error = i2c_smbus_write_byte(client, ETP_SMBUS_ENABLE_TP);
  72. if (error) {
  73. dev_err(&client->dev, "failed to enable touchpad: %d\n", error);
  74. return error;
  75. }
  76. return 0;
  77. }
  78. static int elan_smbus_set_mode(struct i2c_client *client, u8 mode)
  79. {
  80. u8 cmd[4] = { 0x00, 0x07, 0x00, mode };
  81. return i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  82. sizeof(cmd), cmd);
  83. }
  84. static int elan_smbus_sleep_control(struct i2c_client *client, bool sleep)
  85. {
  86. if (sleep)
  87. return i2c_smbus_write_byte(client, ETP_SMBUS_SLEEP_CMD);
  88. else
  89. return 0; /* XXX should we send ETP_SMBUS_ENABLE_TP here? */
  90. }
  91. static int elan_smbus_power_control(struct i2c_client *client, bool enable)
  92. {
  93. return 0; /* A no-op */
  94. }
  95. static int elan_smbus_calibrate(struct i2c_client *client)
  96. {
  97. u8 cmd[4] = { 0x00, 0x08, 0x00, 0x01 };
  98. return i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  99. sizeof(cmd), cmd);
  100. }
  101. static int elan_smbus_calibrate_result(struct i2c_client *client, u8 *val)
  102. {
  103. int error;
  104. error = i2c_smbus_read_block_data(client,
  105. ETP_SMBUS_CALIBRATE_QUERY, val);
  106. if (error < 0)
  107. return error;
  108. return 0;
  109. }
  110. static int elan_smbus_get_baseline_data(struct i2c_client *client,
  111. bool max_baseline, u8 *value)
  112. {
  113. int error;
  114. u8 val[3];
  115. error = i2c_smbus_read_block_data(client,
  116. max_baseline ?
  117. ETP_SMBUS_MAX_BASELINE_CMD :
  118. ETP_SMBUS_MIN_BASELINE_CMD,
  119. val);
  120. if (error < 0)
  121. return error;
  122. *value = be16_to_cpup((__be16 *)val);
  123. return 0;
  124. }
  125. static int elan_smbus_get_version(struct i2c_client *client,
  126. bool iap, u8 *version)
  127. {
  128. int error;
  129. u8 val[3];
  130. error = i2c_smbus_read_block_data(client,
  131. iap ? ETP_SMBUS_IAP_VERSION_CMD :
  132. ETP_SMBUS_FW_VERSION_CMD,
  133. val);
  134. if (error < 0) {
  135. dev_err(&client->dev, "failed to get %s version: %d\n",
  136. iap ? "IAP" : "FW", error);
  137. return error;
  138. }
  139. *version = val[2];
  140. return 0;
  141. }
  142. static int elan_smbus_get_sm_version(struct i2c_client *client,
  143. u8 *ic_type, u8 *version)
  144. {
  145. int error;
  146. u8 val[3];
  147. error = i2c_smbus_read_block_data(client,
  148. ETP_SMBUS_SM_VERSION_CMD, val);
  149. if (error < 0) {
  150. dev_err(&client->dev, "failed to get SM version: %d\n", error);
  151. return error;
  152. }
  153. *version = val[0];
  154. *ic_type = val[1];
  155. return 0;
  156. }
  157. static int elan_smbus_get_product_id(struct i2c_client *client, u16 *id)
  158. {
  159. int error;
  160. u8 val[3];
  161. error = i2c_smbus_read_block_data(client,
  162. ETP_SMBUS_UNIQUEID_CMD, val);
  163. if (error < 0) {
  164. dev_err(&client->dev, "failed to get product ID: %d\n", error);
  165. return error;
  166. }
  167. *id = be16_to_cpup((__be16 *)val);
  168. return 0;
  169. }
  170. static int elan_smbus_get_checksum(struct i2c_client *client,
  171. bool iap, u16 *csum)
  172. {
  173. int error;
  174. u8 val[3];
  175. error = i2c_smbus_read_block_data(client,
  176. iap ? ETP_SMBUS_FW_CHECKSUM_CMD :
  177. ETP_SMBUS_IAP_CHECKSUM_CMD,
  178. val);
  179. if (error < 0) {
  180. dev_err(&client->dev, "failed to get %s checksum: %d\n",
  181. iap ? "IAP" : "FW", error);
  182. return error;
  183. }
  184. *csum = be16_to_cpup((__be16 *)val);
  185. return 0;
  186. }
  187. static int elan_smbus_get_max(struct i2c_client *client,
  188. unsigned int *max_x, unsigned int *max_y)
  189. {
  190. int error;
  191. u8 val[3];
  192. error = i2c_smbus_read_block_data(client, ETP_SMBUS_RANGE_CMD, val);
  193. if (error) {
  194. dev_err(&client->dev, "failed to get dimensions: %d\n", error);
  195. return error;
  196. }
  197. *max_x = (0x0f & val[0]) << 8 | val[1];
  198. *max_y = (0xf0 & val[0]) << 4 | val[2];
  199. return 0;
  200. }
  201. static int elan_smbus_get_resolution(struct i2c_client *client,
  202. u8 *hw_res_x, u8 *hw_res_y)
  203. {
  204. int error;
  205. u8 val[3];
  206. error = i2c_smbus_read_block_data(client,
  207. ETP_SMBUS_RESOLUTION_CMD, val);
  208. if (error) {
  209. dev_err(&client->dev, "failed to get resolution: %d\n", error);
  210. return error;
  211. }
  212. *hw_res_x = val[1] & 0x0F;
  213. *hw_res_y = (val[1] & 0xF0) >> 4;
  214. return 0;
  215. }
  216. static int elan_smbus_get_num_traces(struct i2c_client *client,
  217. unsigned int *x_traces,
  218. unsigned int *y_traces)
  219. {
  220. int error;
  221. u8 val[3];
  222. error = i2c_smbus_read_block_data(client,
  223. ETP_SMBUS_XY_TRACENUM_CMD, val);
  224. if (error) {
  225. dev_err(&client->dev, "failed to get trace info: %d\n", error);
  226. return error;
  227. }
  228. *x_traces = val[1];
  229. *y_traces = val[2];
  230. return 0;
  231. }
  232. static int elan_smbus_get_pressure_adjustment(struct i2c_client *client,
  233. int *adjustment)
  234. {
  235. *adjustment = ETP_PRESSURE_OFFSET;
  236. return 0;
  237. }
  238. static int elan_smbus_iap_get_mode(struct i2c_client *client,
  239. enum tp_mode *mode)
  240. {
  241. int error;
  242. u16 constant;
  243. u8 val[3];
  244. error = i2c_smbus_read_block_data(client, ETP_SMBUS_IAP_CTRL_CMD, val);
  245. if (error < 0) {
  246. dev_err(&client->dev, "failed to read iap ctrol register: %d\n",
  247. error);
  248. return error;
  249. }
  250. constant = be16_to_cpup((__be16 *)val);
  251. dev_dbg(&client->dev, "iap control reg: 0x%04x.\n", constant);
  252. *mode = (constant & ETP_SMBUS_IAP_MODE_ON) ? IAP_MODE : MAIN_MODE;
  253. return 0;
  254. }
  255. static int elan_smbus_iap_reset(struct i2c_client *client)
  256. {
  257. int error;
  258. error = i2c_smbus_write_byte(client, ETP_SMBUS_IAP_RESET_CMD);
  259. if (error) {
  260. dev_err(&client->dev, "cannot reset IC: %d\n", error);
  261. return error;
  262. }
  263. return 0;
  264. }
  265. static int elan_smbus_set_flash_key(struct i2c_client *client)
  266. {
  267. int error;
  268. u8 cmd[4] = { 0x00, 0x0B, 0x00, 0x5A };
  269. error = i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  270. sizeof(cmd), cmd);
  271. if (error) {
  272. dev_err(&client->dev, "cannot set flash key: %d\n", error);
  273. return error;
  274. }
  275. return 0;
  276. }
  277. static int elan_smbus_prepare_fw_update(struct i2c_client *client)
  278. {
  279. struct device *dev = &client->dev;
  280. int len;
  281. int error;
  282. enum tp_mode mode;
  283. u8 val[3];
  284. u8 cmd[4] = {0x0F, 0x78, 0x00, 0x06};
  285. u16 password;
  286. /* Get FW in which mode (IAP_MODE/MAIN_MODE) */
  287. error = elan_smbus_iap_get_mode(client, &mode);
  288. if (error)
  289. return error;
  290. if (mode == MAIN_MODE) {
  291. /* set flash key */
  292. error = elan_smbus_set_flash_key(client);
  293. if (error)
  294. return error;
  295. /* write iap password */
  296. if (i2c_smbus_write_byte(client,
  297. ETP_SMBUS_IAP_PASSWORD_WRITE) < 0) {
  298. dev_err(dev, "cannot write iap password\n");
  299. return -EIO;
  300. }
  301. error = i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  302. sizeof(cmd), cmd);
  303. if (error) {
  304. dev_err(dev, "failed to write iap password: %d\n",
  305. error);
  306. return error;
  307. }
  308. /*
  309. * Read back password to make sure we enabled flash
  310. * successfully.
  311. */
  312. len = i2c_smbus_read_block_data(client,
  313. ETP_SMBUS_IAP_PASSWORD_READ,
  314. val);
  315. if (len < sizeof(u16)) {
  316. error = len < 0 ? len : -EIO;
  317. dev_err(dev, "failed to read iap password: %d\n",
  318. error);
  319. return error;
  320. }
  321. password = be16_to_cpup((__be16 *)val);
  322. if (password != ETP_SMBUS_IAP_PASSWORD) {
  323. dev_err(dev, "wrong iap password = 0x%X\n", password);
  324. return -EIO;
  325. }
  326. /* Wait 30ms for MAIN_MODE change to IAP_MODE */
  327. msleep(30);
  328. }
  329. error = elan_smbus_set_flash_key(client);
  330. if (error)
  331. return error;
  332. /* Reset IC */
  333. error = elan_smbus_iap_reset(client);
  334. if (error)
  335. return error;
  336. return 0;
  337. }
  338. static int elan_smbus_write_fw_block(struct i2c_client *client,
  339. const u8 *page, u16 checksum, int idx)
  340. {
  341. struct device *dev = &client->dev;
  342. int error;
  343. u16 result;
  344. u8 val[3];
  345. /*
  346. * Due to the limitation of smbus protocol limiting
  347. * transfer to 32 bytes at a time, we must split block
  348. * in 2 transfers.
  349. */
  350. error = i2c_smbus_write_block_data(client,
  351. ETP_SMBUS_WRITE_FW_BLOCK,
  352. ETP_FW_PAGE_SIZE / 2,
  353. page);
  354. if (error) {
  355. dev_err(dev, "Failed to write page %d (part %d): %d\n",
  356. idx, 1, error);
  357. return error;
  358. }
  359. error = i2c_smbus_write_block_data(client,
  360. ETP_SMBUS_WRITE_FW_BLOCK,
  361. ETP_FW_PAGE_SIZE / 2,
  362. page + ETP_FW_PAGE_SIZE / 2);
  363. if (error) {
  364. dev_err(dev, "Failed to write page %d (part %d): %d\n",
  365. idx, 2, error);
  366. return error;
  367. }
  368. /* Wait for F/W to update one page ROM data. */
  369. usleep_range(8000, 10000);
  370. error = i2c_smbus_read_block_data(client,
  371. ETP_SMBUS_IAP_CTRL_CMD, val);
  372. if (error < 0) {
  373. dev_err(dev, "Failed to read IAP write result: %d\n",
  374. error);
  375. return error;
  376. }
  377. result = be16_to_cpup((__be16 *)val);
  378. if (result & (ETP_FW_IAP_PAGE_ERR | ETP_FW_IAP_INTF_ERR)) {
  379. dev_err(dev, "IAP reports failed write: %04hx\n",
  380. result);
  381. return -EIO;
  382. }
  383. return 0;
  384. }
  385. static int elan_smbus_get_report(struct i2c_client *client, u8 *report)
  386. {
  387. int len;
  388. len = i2c_smbus_read_block_data(client,
  389. ETP_SMBUS_PACKET_QUERY,
  390. &report[ETP_SMBUS_REPORT_OFFSET]);
  391. if (len < 0) {
  392. dev_err(&client->dev, "failed to read report data: %d\n", len);
  393. return len;
  394. }
  395. if (len != ETP_SMBUS_REPORT_LEN) {
  396. dev_err(&client->dev,
  397. "wrong report length (%d vs %d expected)\n",
  398. len, ETP_SMBUS_REPORT_LEN);
  399. return -EIO;
  400. }
  401. return 0;
  402. }
  403. static int elan_smbus_finish_fw_update(struct i2c_client *client,
  404. struct completion *fw_completion)
  405. {
  406. /* No special handling unlike I2C transport */
  407. return 0;
  408. }
  409. const struct elan_transport_ops elan_smbus_ops = {
  410. .initialize = elan_smbus_initialize,
  411. .sleep_control = elan_smbus_sleep_control,
  412. .power_control = elan_smbus_power_control,
  413. .set_mode = elan_smbus_set_mode,
  414. .calibrate = elan_smbus_calibrate,
  415. .calibrate_result = elan_smbus_calibrate_result,
  416. .get_baseline_data = elan_smbus_get_baseline_data,
  417. .get_version = elan_smbus_get_version,
  418. .get_sm_version = elan_smbus_get_sm_version,
  419. .get_product_id = elan_smbus_get_product_id,
  420. .get_checksum = elan_smbus_get_checksum,
  421. .get_pressure_adjustment = elan_smbus_get_pressure_adjustment,
  422. .get_max = elan_smbus_get_max,
  423. .get_resolution = elan_smbus_get_resolution,
  424. .get_num_traces = elan_smbus_get_num_traces,
  425. .iap_get_mode = elan_smbus_iap_get_mode,
  426. .iap_reset = elan_smbus_iap_reset,
  427. .prepare_fw_update = elan_smbus_prepare_fw_update,
  428. .write_fw_block = elan_smbus_write_fw_block,
  429. .finish_fw_update = elan_smbus_finish_fw_update,
  430. .get_report = elan_smbus_get_report,
  431. };