elan_i2c_smbus.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  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, u8 *version)
  143. {
  144. int error;
  145. u8 val[3];
  146. error = i2c_smbus_read_block_data(client,
  147. ETP_SMBUS_SM_VERSION_CMD, val);
  148. if (error < 0) {
  149. dev_err(&client->dev, "failed to get SM version: %d\n", error);
  150. return error;
  151. }
  152. *version = val[0]; /* XXX Why 0 and not 2 as in IAP/FW versions? */
  153. return 0;
  154. }
  155. static int elan_smbus_get_product_id(struct i2c_client *client, u8 *id)
  156. {
  157. int error;
  158. u8 val[3];
  159. error = i2c_smbus_read_block_data(client,
  160. ETP_SMBUS_UNIQUEID_CMD, val);
  161. if (error < 0) {
  162. dev_err(&client->dev, "failed to get product ID: %d\n", error);
  163. return error;
  164. }
  165. *id = val[1];
  166. return 0;
  167. }
  168. static int elan_smbus_get_checksum(struct i2c_client *client,
  169. bool iap, u16 *csum)
  170. {
  171. int error;
  172. u8 val[3];
  173. error = i2c_smbus_read_block_data(client,
  174. iap ? ETP_SMBUS_FW_CHECKSUM_CMD :
  175. ETP_SMBUS_IAP_CHECKSUM_CMD,
  176. val);
  177. if (error < 0) {
  178. dev_err(&client->dev, "failed to get %s checksum: %d\n",
  179. iap ? "IAP" : "FW", error);
  180. return error;
  181. }
  182. *csum = be16_to_cpup((__be16 *)val);
  183. return 0;
  184. }
  185. static int elan_smbus_get_max(struct i2c_client *client,
  186. unsigned int *max_x, unsigned int *max_y)
  187. {
  188. int error;
  189. u8 val[3];
  190. error = i2c_smbus_read_block_data(client, ETP_SMBUS_RANGE_CMD, val);
  191. if (error) {
  192. dev_err(&client->dev, "failed to get dimensions: %d\n", error);
  193. return error;
  194. }
  195. *max_x = (0x0f & val[0]) << 8 | val[1];
  196. *max_y = (0xf0 & val[0]) << 4 | val[2];
  197. return 0;
  198. }
  199. static int elan_smbus_get_resolution(struct i2c_client *client,
  200. u8 *hw_res_x, u8 *hw_res_y)
  201. {
  202. int error;
  203. u8 val[3];
  204. error = i2c_smbus_read_block_data(client,
  205. ETP_SMBUS_RESOLUTION_CMD, val);
  206. if (error) {
  207. dev_err(&client->dev, "failed to get resolution: %d\n", error);
  208. return error;
  209. }
  210. *hw_res_x = val[1] & 0x0F;
  211. *hw_res_y = (val[1] & 0xF0) >> 4;
  212. return 0;
  213. }
  214. static int elan_smbus_get_num_traces(struct i2c_client *client,
  215. unsigned int *x_traces,
  216. unsigned int *y_traces)
  217. {
  218. int error;
  219. u8 val[3];
  220. error = i2c_smbus_read_block_data(client,
  221. ETP_SMBUS_XY_TRACENUM_CMD, val);
  222. if (error) {
  223. dev_err(&client->dev, "failed to get trace info: %d\n", error);
  224. return error;
  225. }
  226. *x_traces = val[1];
  227. *y_traces = val[2];
  228. return 0;
  229. }
  230. static int elan_smbus_get_pressure_adjustment(struct i2c_client *client,
  231. int *adjustment)
  232. {
  233. *adjustment = ETP_PRESSURE_OFFSET;
  234. return 0;
  235. }
  236. static int elan_smbus_iap_get_mode(struct i2c_client *client,
  237. enum tp_mode *mode)
  238. {
  239. int error;
  240. u16 constant;
  241. u8 val[3];
  242. error = i2c_smbus_read_block_data(client, ETP_SMBUS_IAP_CTRL_CMD, val);
  243. if (error < 0) {
  244. dev_err(&client->dev, "failed to read iap ctrol register: %d\n",
  245. error);
  246. return error;
  247. }
  248. constant = be16_to_cpup((__be16 *)val);
  249. dev_dbg(&client->dev, "iap control reg: 0x%04x.\n", constant);
  250. *mode = (constant & ETP_SMBUS_IAP_MODE_ON) ? IAP_MODE : MAIN_MODE;
  251. return 0;
  252. }
  253. static int elan_smbus_iap_reset(struct i2c_client *client)
  254. {
  255. int error;
  256. error = i2c_smbus_write_byte(client, ETP_SMBUS_IAP_RESET_CMD);
  257. if (error) {
  258. dev_err(&client->dev, "cannot reset IC: %d\n", error);
  259. return error;
  260. }
  261. return 0;
  262. }
  263. static int elan_smbus_set_flash_key(struct i2c_client *client)
  264. {
  265. int error;
  266. u8 cmd[4] = { 0x00, 0x0B, 0x00, 0x5A };
  267. error = i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  268. sizeof(cmd), cmd);
  269. if (error) {
  270. dev_err(&client->dev, "cannot set flash key: %d\n", error);
  271. return error;
  272. }
  273. return 0;
  274. }
  275. static int elan_smbus_prepare_fw_update(struct i2c_client *client)
  276. {
  277. struct device *dev = &client->dev;
  278. int len;
  279. int error;
  280. enum tp_mode mode;
  281. u8 val[3];
  282. u8 cmd[4] = {0x0F, 0x78, 0x00, 0x06};
  283. u16 password;
  284. /* Get FW in which mode (IAP_MODE/MAIN_MODE) */
  285. error = elan_smbus_iap_get_mode(client, &mode);
  286. if (error)
  287. return error;
  288. if (mode == MAIN_MODE) {
  289. /* set flash key */
  290. error = elan_smbus_set_flash_key(client);
  291. if (error)
  292. return error;
  293. /* write iap password */
  294. if (i2c_smbus_write_byte(client,
  295. ETP_SMBUS_IAP_PASSWORD_WRITE) < 0) {
  296. dev_err(dev, "cannot write iap password\n");
  297. return -EIO;
  298. }
  299. error = i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD,
  300. sizeof(cmd), cmd);
  301. if (error) {
  302. dev_err(dev, "failed to write iap password: %d\n",
  303. error);
  304. return error;
  305. }
  306. /*
  307. * Read back password to make sure we enabled flash
  308. * successfully.
  309. */
  310. len = i2c_smbus_read_block_data(client,
  311. ETP_SMBUS_IAP_PASSWORD_READ,
  312. val);
  313. if (len < sizeof(u16)) {
  314. error = len < 0 ? len : -EIO;
  315. dev_err(dev, "failed to read iap password: %d\n",
  316. error);
  317. return error;
  318. }
  319. password = be16_to_cpup((__be16 *)val);
  320. if (password != ETP_SMBUS_IAP_PASSWORD) {
  321. dev_err(dev, "wrong iap password = 0x%X\n", password);
  322. return -EIO;
  323. }
  324. /* Wait 30ms for MAIN_MODE change to IAP_MODE */
  325. msleep(30);
  326. }
  327. error = elan_smbus_set_flash_key(client);
  328. if (error)
  329. return error;
  330. /* Reset IC */
  331. error = elan_smbus_iap_reset(client);
  332. if (error)
  333. return error;
  334. return 0;
  335. }
  336. static int elan_smbus_write_fw_block(struct i2c_client *client,
  337. const u8 *page, u16 checksum, int idx)
  338. {
  339. struct device *dev = &client->dev;
  340. int error;
  341. u16 result;
  342. u8 val[3];
  343. /*
  344. * Due to the limitation of smbus protocol limiting
  345. * transfer to 32 bytes at a time, we must split block
  346. * in 2 transfers.
  347. */
  348. error = i2c_smbus_write_block_data(client,
  349. ETP_SMBUS_WRITE_FW_BLOCK,
  350. ETP_FW_PAGE_SIZE / 2,
  351. page);
  352. if (error) {
  353. dev_err(dev, "Failed to write page %d (part %d): %d\n",
  354. idx, 1, error);
  355. return error;
  356. }
  357. error = i2c_smbus_write_block_data(client,
  358. ETP_SMBUS_WRITE_FW_BLOCK,
  359. ETP_FW_PAGE_SIZE / 2,
  360. page + ETP_FW_PAGE_SIZE / 2);
  361. if (error) {
  362. dev_err(dev, "Failed to write page %d (part %d): %d\n",
  363. idx, 2, error);
  364. return error;
  365. }
  366. /* Wait for F/W to update one page ROM data. */
  367. usleep_range(8000, 10000);
  368. error = i2c_smbus_read_block_data(client,
  369. ETP_SMBUS_IAP_CTRL_CMD, val);
  370. if (error < 0) {
  371. dev_err(dev, "Failed to read IAP write result: %d\n",
  372. error);
  373. return error;
  374. }
  375. result = be16_to_cpup((__be16 *)val);
  376. if (result & (ETP_FW_IAP_PAGE_ERR | ETP_FW_IAP_INTF_ERR)) {
  377. dev_err(dev, "IAP reports failed write: %04hx\n",
  378. result);
  379. return -EIO;
  380. }
  381. return 0;
  382. }
  383. static int elan_smbus_get_report(struct i2c_client *client, u8 *report)
  384. {
  385. int len;
  386. len = i2c_smbus_read_block_data(client,
  387. ETP_SMBUS_PACKET_QUERY,
  388. &report[ETP_SMBUS_REPORT_OFFSET]);
  389. if (len < 0) {
  390. dev_err(&client->dev, "failed to read report data: %d\n", len);
  391. return len;
  392. }
  393. if (len != ETP_SMBUS_REPORT_LEN) {
  394. dev_err(&client->dev,
  395. "wrong report length (%d vs %d expected)\n",
  396. len, ETP_SMBUS_REPORT_LEN);
  397. return -EIO;
  398. }
  399. return 0;
  400. }
  401. static int elan_smbus_finish_fw_update(struct i2c_client *client,
  402. struct completion *fw_completion)
  403. {
  404. /* No special handling unlike I2C transport */
  405. return 0;
  406. }
  407. const struct elan_transport_ops elan_smbus_ops = {
  408. .initialize = elan_smbus_initialize,
  409. .sleep_control = elan_smbus_sleep_control,
  410. .power_control = elan_smbus_power_control,
  411. .set_mode = elan_smbus_set_mode,
  412. .calibrate = elan_smbus_calibrate,
  413. .calibrate_result = elan_smbus_calibrate_result,
  414. .get_baseline_data = elan_smbus_get_baseline_data,
  415. .get_version = elan_smbus_get_version,
  416. .get_sm_version = elan_smbus_get_sm_version,
  417. .get_product_id = elan_smbus_get_product_id,
  418. .get_checksum = elan_smbus_get_checksum,
  419. .get_pressure_adjustment = elan_smbus_get_pressure_adjustment,
  420. .get_max = elan_smbus_get_max,
  421. .get_resolution = elan_smbus_get_resolution,
  422. .get_num_traces = elan_smbus_get_num_traces,
  423. .iap_get_mode = elan_smbus_iap_get_mode,
  424. .iap_reset = elan_smbus_iap_reset,
  425. .prepare_fw_update = elan_smbus_prepare_fw_update,
  426. .write_fw_block = elan_smbus_write_fw_block,
  427. .finish_fw_update = elan_smbus_finish_fw_update,
  428. .get_report = elan_smbus_get_report,
  429. };