pt_i2c.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * pt_i2c.c
  3. * Parade TrueTouch(TM) Standard Product I2C Module.
  4. * For use with Parade touchscreen controllers.
  5. * Supported parts include:
  6. * TMA5XX
  7. * TMA448
  8. * TMA445A
  9. * TT21XXX
  10. * TT31XXX
  11. * TT4XXXX
  12. * TT7XXX
  13. * TC3XXX
  14. *
  15. * Copyright (C) 2015-2020 Parade Technologies
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License
  19. * version 2, and only version 2, as published by the
  20. * Free Software Foundation.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * Contact Parade Technologies at www.paradetech.com <[email protected]>
  28. */
  29. #include "pt_regs.h"
  30. #include <linux/i2c.h>
  31. #include <linux/version.h>
  32. #define PT_I2C_DATA_SIZE (2 * 256)
  33. #ifdef TTDL_PTVIRTDUT_SUPPORT
  34. #define VIRT_DUT_BUF_SIZE 2048
  35. static unsigned char pt_dut_cmd_buf[VIRT_DUT_BUF_SIZE];
  36. static unsigned char pt_dut_out_buf[VIRT_DUT_BUF_SIZE];
  37. static int pt_dut_cmd_len;
  38. static int pt_dut_out_len;
  39. DEFINE_MUTEX(virt_i2c_lock);
  40. /*******************************************************************************
  41. * FUNCTION: virt_i2c_transfer
  42. *
  43. * SUMMARY: Copies the current i2c output message to the temporary buffer
  44. * used by the dut_cmd sysfs node
  45. *
  46. * RETURN VALUE:
  47. * Number of messages transferred which in this function will be 1
  48. *
  49. * PARAMETERS:
  50. * *buf - pointer to i2c command
  51. * len - length of command in the buffer
  52. ******************************************************************************/
  53. static int virt_i2c_transfer(u8 *buf, int len)
  54. {
  55. int rc = 0;
  56. mutex_lock(&virt_i2c_lock);
  57. if (len <= sizeof(pt_dut_cmd_buf)) {
  58. memcpy(pt_dut_cmd_buf, buf, len);
  59. pt_dut_cmd_len = len;
  60. rc = 1;
  61. } else
  62. rc = 0;
  63. mutex_unlock(&virt_i2c_lock);
  64. return rc;
  65. }
  66. /*******************************************************************************
  67. * FUNCTION: virt_i2c_master_recv
  68. *
  69. * SUMMARY: Copies the i2c input message from the dut_out sysfs node into a
  70. * temporary buffer.
  71. *
  72. * RETURN VALUE:
  73. * Length of data transferred
  74. *
  75. * PARAMETERS:
  76. * *dev - pointer to device struct
  77. * *buf - pointer to i2c incoming report
  78. * size - size to be read
  79. ******************************************************************************/
  80. static int virt_i2c_master_recv(struct device *dev, u8 *buf, int size)
  81. {
  82. #ifndef PT_POLL_RESP_BY_BUS
  83. struct pt_core_data *cd = dev_get_drvdata(dev);
  84. int i = 0;
  85. #endif
  86. mutex_lock(&virt_i2c_lock);
  87. memcpy(buf, pt_dut_out_buf, size);
  88. /* Set "empty buffer" */
  89. pt_dut_out_buf[1] = 0xFF;
  90. pt_dut_out_len = 0;
  91. mutex_unlock(&virt_i2c_lock);
  92. #ifndef PT_POLL_RESP_BY_BUS
  93. if (cd->bl_with_no_int) {
  94. /*
  95. * Wait for IRQ gpio to be released, make read operation
  96. * synchronize with PtVirtDut tool.
  97. * Safety net: Exit after 500ms (50us * 10000 loops = 500ms)
  98. */
  99. while (i < VIRT_MAX_IRQ_RELEASE_TIME_US &&
  100. !gpio_get_value(cd->cpdata->irq_gpio)) {
  101. pt_debug(dev, DL_INFO, "%s: %d IRQ still Enabled\n",
  102. __func__, i);
  103. usleep_range(50, 60);
  104. i += 50;
  105. }
  106. }
  107. #endif
  108. pt_debug(dev, DL_INFO,
  109. "%s: Copy msg from dut_out to i2c buffer, size=%d\n",
  110. __func__, size);
  111. return size;
  112. }
  113. /*******************************************************************************
  114. * FUNCTION: pt_dut_cmd_show
  115. *
  116. * SUMMARY: The show function for the dut_cmd sysfs node. Provides read access
  117. * to the pt_dut_cmd_buf and clears it after it has been read.
  118. *
  119. * RETURN VALUE:
  120. * Number of bytes transferred
  121. *
  122. * PARAMETERS:
  123. * *dev - pointer to device structure
  124. * *attr - pointer to device attributes
  125. * *buf - pointer to output buffer
  126. ******************************************************************************/
  127. static ssize_t pt_dut_cmd_show(struct device *dev,
  128. struct device_attribute *attr, char *buf)
  129. {
  130. int i;
  131. int index = 0;
  132. /* Only print to sysfs if the buffer has data */
  133. mutex_lock(&virt_i2c_lock);
  134. if (pt_dut_cmd_len > 0) {
  135. for (i = 0; i < pt_dut_cmd_len; i++)
  136. index += scnprintf(buf + index, strlen(buf), "%02X",
  137. pt_dut_cmd_buf[i]);
  138. index += scnprintf(buf + index, strlen(buf), "\n");
  139. }
  140. pt_dut_cmd_len = 0;
  141. mutex_unlock(&virt_i2c_lock);
  142. return index;
  143. }
  144. static DEVICE_ATTR(dut_cmd, 0444, pt_dut_cmd_show, NULL);
  145. /*******************************************************************************
  146. * FUNCTION: pt_dut_out_store
  147. *
  148. * SUMMARY: The store function for the dut_out sysfs node. Provides write
  149. * access to the pt_dut_out_buf. The smallest valid PIP response is 2
  150. * bytes so don't update buffer if only 1 byte passed in.
  151. *
  152. * RETURN VALUE:
  153. * Number of bytes read from virtual DUT
  154. *
  155. * PARAMETERS:
  156. * *dev - pointer to device structure
  157. * *attr - pointer to device attributes
  158. * *buf - pointer to buffer that hold the command parameters
  159. * size - size of buf
  160. ******************************************************************************/
  161. static ssize_t pt_dut_out_store(struct device *dev,
  162. struct device_attribute *attr, const char *buf, size_t size)
  163. {
  164. int loop_max = ARRAY_SIZE(pt_dut_out_buf);
  165. int hex_str_len = strlen(buf)/2;
  166. int i;
  167. const char *pos = buf;
  168. struct pt_core_data *cd = dev_get_drvdata(dev);
  169. /* Clear out the last message */
  170. mutex_lock(&virt_i2c_lock);
  171. memset(pt_dut_out_buf, 0, VIRT_DUT_BUF_SIZE);
  172. pt_dut_out_len = 0;
  173. /* Only update the dut_out buffer if at least 2 byte payload */
  174. if (size >= 2 && hex_str_len <= loop_max) {
  175. /* Convert string of hex values to byte array */
  176. for (i = 0; i < hex_str_len; i++) {
  177. pt_dut_out_buf[i] = ((HEXOF(*pos)) << 4) +
  178. HEXOF(*(pos + 1));
  179. pos += 2;
  180. }
  181. /*
  182. * In HID we send the full string, non HID we send based
  183. * on the 2 byte length.
  184. */
  185. if (cd->dut_status.protocol_mode == PT_PROTOCOL_MODE_HID)
  186. pt_dut_out_len = hex_str_len;
  187. else
  188. pt_dut_out_len = get_unaligned_le16(&pt_dut_out_buf[0]);
  189. } else if (size >= PT_PIP_1P7_EMPTY_BUF) {
  190. /* Message too large, set to 'empty buffer' message */
  191. pt_dut_out_buf[1] = 0xFF;
  192. pt_dut_out_len = 0;
  193. }
  194. mutex_unlock(&virt_i2c_lock);
  195. return size;
  196. }
  197. static DEVICE_ATTR(dut_out, 0200, NULL, pt_dut_out_store);
  198. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  199. /*******************************************************************************
  200. * FUNCTION: pt_i2c_read_default
  201. *
  202. * SUMMARY: Read a certain number of bytes from the I2C bus
  203. *
  204. * PARAMETERS:
  205. * *dev - pointer to Device structure
  206. * *buf - pointer to buffer where the data read will be stored
  207. * size - size to be read
  208. ******************************************************************************/
  209. static int pt_i2c_read_default(struct device *dev, void *buf, int size)
  210. {
  211. #ifdef TTDL_PTVIRTDUT_SUPPORT
  212. struct pt_core_data *cd = dev_get_drvdata(dev);
  213. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  214. struct i2c_client *client = to_i2c_client(dev);
  215. int rc;
  216. int read_size = size;
  217. if (!buf || !size || size > VIRT_DUT_BUF_SIZE)
  218. return -EINVAL;
  219. #ifdef TTDL_PTVIRTDUT_SUPPORT
  220. if (cd->route_bus_virt_dut)
  221. rc = virt_i2c_master_recv(dev, buf, read_size);
  222. else
  223. rc = i2c_master_recv(client, buf, read_size);
  224. #else
  225. rc = i2c_master_recv(client, buf, read_size);
  226. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  227. return (rc < 0) ? rc : rc != read_size ? -EIO : 0;
  228. }
  229. /*******************************************************************************
  230. * FUNCTION: pt_i2c_read_default_nosize
  231. *
  232. * SUMMARY: Read from the I2C bus in two transactions first reading the HID
  233. * packet size (2 bytes) followed by reading the rest of the packet based
  234. * on the size initially read.
  235. * NOTE: The empty buffer 'size' was redefined in PIP version 1.7.
  236. *
  237. * PARAMETERS:
  238. * *dev - pointer to Device structure
  239. * *buf - pointer to buffer where the data read will be stored
  240. * max - max size that can be read
  241. ******************************************************************************/
  242. static int pt_i2c_read_default_nosize(struct device *dev, u8 *buf, u32 max)
  243. {
  244. struct i2c_client *client = to_i2c_client(dev);
  245. struct i2c_msg msgs[2];
  246. u8 msg_count = 1;
  247. int rc;
  248. u32 size;
  249. #ifdef TTDL_PTVIRTDUT_SUPPORT
  250. struct pt_core_data *cd = dev_get_drvdata(dev);
  251. if (cd->route_bus_virt_dut) {
  252. mutex_lock(&virt_i2c_lock);
  253. size = pt_dut_out_len;
  254. mutex_unlock(&virt_i2c_lock);
  255. pt_debug(dev, DL_INFO, "%s: pt_dut_out_len=%d\n",
  256. __func__, pt_dut_out_len);
  257. /* Only copy 2 bytes for "empty buffer" or "FW sentinel" */
  258. if (!size || size == 2 || size >= PT_PIP_1P7_EMPTY_BUF)
  259. size = 2;
  260. goto skip_read_len;
  261. }
  262. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  263. if (!buf)
  264. return -EINVAL;
  265. msgs[0].addr = client->addr;
  266. msgs[0].flags = (client->flags & I2C_M_TEN) | I2C_M_RD;
  267. msgs[0].len = 2;
  268. msgs[0].buf = buf;
  269. rc = i2c_transfer(client->adapter, msgs, msg_count);
  270. if (rc < 0 || rc != msg_count)
  271. return (rc < 0) ? rc : -EIO;
  272. size = get_unaligned_le16(&buf[0]);
  273. if (!size || size == 2 || size >= PT_PIP_1P7_EMPTY_BUF)
  274. /*
  275. * Before PIP 1.7, empty buffer is 0x0002;
  276. * From PIP 1.7, empty buffer is 0xFFXX
  277. */
  278. return 0;
  279. if (size > max)
  280. return -EINVAL;
  281. #ifdef TTDL_PTVIRTDUT_SUPPORT
  282. skip_read_len:
  283. if (cd->route_bus_virt_dut)
  284. rc = virt_i2c_master_recv(dev, buf, size);
  285. else
  286. rc = i2c_master_recv(client, buf, size);
  287. pt_debug(dev, DL_INFO, "%s: rc = %d\n", __func__, rc);
  288. #else
  289. rc = i2c_master_recv(client, buf, size);
  290. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  291. return (rc < 0) ? rc : rc != (int)size ? -EIO : 0;
  292. }
  293. /*******************************************************************************
  294. * FUNCTION: pt_i2c_write_read_specific
  295. *
  296. * SUMMARY: Write the contents of write_buf to the I2C device and then read
  297. * the response using pt_i2c_read_default_nosize()
  298. *
  299. * PARAMETERS:
  300. * *dev - pointer to Device structure
  301. * write_len - length of data buffer write_buf
  302. * *write_buf - pointer to buffer to write
  303. * *read_buf - pointer to buffer to read response into
  304. * read_len - length to read, 0 to use pt_i2c_read_default_nosize
  305. ******************************************************************************/
  306. static int pt_i2c_write_read_specific(struct device *dev, u16 write_len,
  307. u8 *write_buf, u8 *read_buf, u16 read_len)
  308. {
  309. struct i2c_client *client = to_i2c_client(dev);
  310. #ifdef TTDL_PTVIRTDUT_SUPPORT
  311. struct pt_core_data *cd = dev_get_drvdata(dev);
  312. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  313. struct i2c_msg msgs[2];
  314. u8 msg_count = 1;
  315. int rc;
  316. /* Ensure no packet larger than what the PIP spec allows */
  317. if (write_len > PT_MAX_PIP2_MSG_SIZE)
  318. return -EINVAL;
  319. if (!write_buf || !write_len) {
  320. if (!write_buf)
  321. pt_debug(dev, DL_ERROR,
  322. "%s write_buf is NULL", __func__);
  323. if (!write_len)
  324. pt_debug(dev, DL_ERROR,
  325. "%s write_len is NULL", __func__);
  326. return -EINVAL;
  327. }
  328. msgs[0].addr = client->addr;
  329. msgs[0].flags = client->flags & I2C_M_TEN;
  330. msgs[0].len = write_len;
  331. msgs[0].buf = write_buf;
  332. #ifdef TTDL_PTVIRTDUT_SUPPORT
  333. if (cd->route_bus_virt_dut) {
  334. rc = virt_i2c_transfer(msgs[0].buf, msgs[0].len);
  335. pt_debug(dev, DL_DEBUG, "%s: Virt transfer size = %d",
  336. __func__, msgs[0].len);
  337. } else
  338. rc = i2c_transfer(client->adapter, msgs, msg_count);
  339. #else
  340. rc = i2c_transfer(client->adapter, msgs, msg_count);
  341. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  342. if (rc < 0 || rc != msg_count)
  343. return (rc < 0) ? rc : -EIO;
  344. rc = 0;
  345. if (read_buf) {
  346. #ifdef TTDL_PTVIRTDUT_SUPPORT
  347. if (cd->route_bus_virt_dut &&
  348. cd->dut_status.protocol_mode == PT_PROTOCOL_MODE_HID) {
  349. /* Simulate clock stretch */
  350. usleep_range(3000, 4000);
  351. }
  352. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  353. if (read_len > 0)
  354. rc = pt_i2c_read_default(dev, read_buf, read_len);
  355. else
  356. rc = pt_i2c_read_default_nosize(dev, read_buf,
  357. PT_I2C_DATA_SIZE);
  358. }
  359. return rc;
  360. }
  361. static struct pt_bus_ops pt_i2c_bus_ops = {
  362. .bustype = BUS_I2C,
  363. .read_default = pt_i2c_read_default,
  364. .read_default_nosize = pt_i2c_read_default_nosize,
  365. .write_read_specific = pt_i2c_write_read_specific,
  366. };
  367. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  368. static const struct of_device_id pt_i2c_of_match[] = {
  369. { .compatible = "parade,pt_i2c_adapter", },
  370. { }
  371. };
  372. MODULE_DEVICE_TABLE(of, pt_i2c_of_match);
  373. #endif
  374. /*******************************************************************************
  375. * FUNCTION: pt_i2c_probe
  376. *
  377. * SUMMARY: Probe functon for the I2C module
  378. *
  379. * PARAMETERS:
  380. * *client - pointer to i2c client structure
  381. * *i2c_id - pointer to i2c device structure
  382. ******************************************************************************/
  383. static int pt_i2c_probe(struct i2c_client *client,
  384. const struct i2c_device_id *i2c_id)
  385. {
  386. struct device *dev = &client->dev;
  387. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  388. const struct of_device_id *match;
  389. #endif
  390. int rc;
  391. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  392. pt_debug(dev, DL_ERROR, "I2C functionality not Supported\n");
  393. return -EIO;
  394. }
  395. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  396. match = of_match_device(of_match_ptr(pt_i2c_of_match), dev);
  397. if (match) {
  398. rc = pt_devtree_create_and_get_pdata(dev);
  399. if (rc < 0)
  400. return rc;
  401. }
  402. #endif
  403. #ifdef TTDL_PTVIRTDUT_SUPPORT
  404. /*
  405. * When using the virtual DUT these files must be created before
  406. * pt_probe is called.
  407. */
  408. mutex_lock(&virt_i2c_lock);
  409. device_create_file(dev, &dev_attr_dut_cmd);
  410. device_create_file(dev, &dev_attr_dut_out);
  411. mutex_unlock(&virt_i2c_lock);
  412. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  413. rc = pt_probe(&pt_i2c_bus_ops, &client->dev, client->irq,
  414. PT_I2C_DATA_SIZE);
  415. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  416. if (rc && match)
  417. pt_devtree_clean_pdata(dev);
  418. #endif
  419. #ifdef TTDL_PTVIRTDUT_SUPPORT
  420. if (rc) {
  421. mutex_lock(&virt_i2c_lock);
  422. device_remove_file(dev, &dev_attr_dut_cmd);
  423. device_remove_file(dev, &dev_attr_dut_out);
  424. mutex_unlock(&virt_i2c_lock);
  425. }
  426. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  427. return rc;
  428. }
  429. /*******************************************************************************
  430. * FUNCTION: pt_i2c_remove
  431. *
  432. * SUMMARY: Remove functon for the I2C module
  433. *
  434. * PARAMETERS:
  435. * *client - pointer to i2c client structure
  436. ******************************************************************************/
  437. static int pt_i2c_remove(struct i2c_client *client)
  438. {
  439. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  440. const struct of_device_id *match;
  441. #endif
  442. struct device *dev = &client->dev;
  443. struct pt_core_data *cd = i2c_get_clientdata(client);
  444. pt_release(cd);
  445. #ifdef TTDL_PTVIRTDUT_SUPPORT
  446. mutex_lock(&virt_i2c_lock);
  447. device_remove_file(dev, &dev_attr_dut_cmd);
  448. device_remove_file(dev, &dev_attr_dut_out);
  449. mutex_unlock(&virt_i2c_lock);
  450. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  451. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  452. match = of_match_device(of_match_ptr(pt_i2c_of_match), dev);
  453. if (match)
  454. pt_devtree_clean_pdata(dev);
  455. #endif
  456. return 0;
  457. }
  458. static const struct i2c_device_id pt_i2c_id[] = {
  459. { PT_I2C_NAME, 0, },
  460. { }
  461. };
  462. MODULE_DEVICE_TABLE(i2c, pt_i2c_id);
  463. static struct i2c_driver pt_i2c_driver = {
  464. .driver = {
  465. .name = PT_I2C_NAME,
  466. .owner = THIS_MODULE,
  467. .pm = &pt_pm_ops,
  468. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  469. .of_match_table = pt_i2c_of_match,
  470. #endif
  471. },
  472. .probe = pt_i2c_probe,
  473. .remove = pt_i2c_remove,
  474. .id_table = pt_i2c_id,
  475. };
  476. #if (KERNEL_VERSION(3, 3, 0) <= LINUX_VERSION_CODE)
  477. module_i2c_driver(pt_i2c_driver);
  478. #else
  479. /*******************************************************************************
  480. * FUNCTION: pt_i2c_init
  481. *
  482. * SUMMARY: Initialize function to register i2c module to kernel.
  483. *
  484. * RETURN:
  485. * 0 = success
  486. * !0 = failure
  487. ******************************************************************************/
  488. static int __init pt_i2c_init(void)
  489. {
  490. int rc = i2c_add_driver(&pt_i2c_driver);
  491. pr_info("%s: Parade TTDL I2C Driver (Build %s) rc=%d\n",
  492. __func__, PT_DRIVER_VERSION, rc);
  493. return rc;
  494. }
  495. module_init(pt_i2c_init);
  496. /*******************************************************************************
  497. * FUNCTION: pt_i2c_exit
  498. *
  499. * SUMMARY: Exit function to unregister i2c module from kernel.
  500. *
  501. ******************************************************************************/
  502. static void __exit pt_i2c_exit(void)
  503. {
  504. i2c_del_driver(&pt_i2c_driver);
  505. }
  506. module_exit(pt_i2c_exit);
  507. #endif
  508. MODULE_LICENSE("GPL");
  509. MODULE_DESCRIPTION("Parade TrueTouch(R) Standard Product I2C driver");
  510. MODULE_AUTHOR("Parade Technologies <[email protected]>");