pt_spi.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. /*
  2. * pt_spi.c
  3. * Parade TrueTouch(TM) Standard Product SPI 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/spi/spi.h>
  31. #include <linux/version.h>
  32. /* TC3315 - DUT Address (0x24 & 0x07) << 1 = 0x08 for write and 0x09 for read */
  33. #define PT_SPI_WR_OP 0x08 /* r/~w */
  34. #define PT_SPI_RD_OP 0x09
  35. #define PT_SPI_BITS_PER_WORD 8
  36. #define PT_SPI_SYNC_ACK 0x62
  37. #define PT_SPI_CMD_BYTES 0
  38. #define PT_SPI_DATA_SIZE (2 * 256)
  39. #define PT_SPI_DATA_BUF_SIZE (PT_SPI_CMD_BYTES + PT_SPI_DATA_SIZE)
  40. #define PT_SPI_OP_SIZE (1)
  41. #define PT_SPI_DUMMY_READ (1)
  42. #define PT_SPI_BUFFER_SIZE \
  43. (PT_MAX_PIP2_MSG_SIZE + PT_SPI_OP_SIZE + PT_SPI_DUMMY_READ)
  44. static u8 *tmp_rbuf;
  45. static u8 *tmp_wbuf;
  46. DEFINE_MUTEX(pt_spi_bus_lock);
  47. #ifdef TTDL_PTVIRTDUT_SUPPORT
  48. #define VIRT_DUT_BUF_SIZE 300
  49. static unsigned char pt_dut_cmd_buf[VIRT_DUT_BUF_SIZE];
  50. static unsigned char pt_dut_out_buf[VIRT_DUT_BUF_SIZE];
  51. static int pt_dut_cmd_len;
  52. static int pt_dut_out_len;
  53. DEFINE_MUTEX(virt_spi_lock);
  54. /*******************************************************************************
  55. * FUNCTION: virt_spi_transfer
  56. *
  57. * SUMMARY: Copies the current spi output message to the temporary buffer
  58. * used by the dut_cmd sysfs node
  59. *
  60. * RETURN VALUE:
  61. * Number of messages transferred which in this function will be 1
  62. *
  63. * PARAMETERS:
  64. * *buf - pointer to spi command
  65. * len - length of command in the buffer
  66. ******************************************************************************/
  67. static int virt_spi_transfer(u8 *buf, int len)
  68. {
  69. int rc = 0;
  70. mutex_lock(&virt_spi_lock);
  71. if (len <= sizeof(pt_dut_cmd_buf)) {
  72. memcpy(pt_dut_cmd_buf, buf, len);
  73. pt_dut_cmd_len = len;
  74. rc = 1;
  75. } else
  76. rc = 0;
  77. mutex_unlock(&virt_spi_lock);
  78. return rc;
  79. }
  80. /*******************************************************************************
  81. * FUNCTION: virt_spi_master_recv
  82. *
  83. * SUMMARY: Copies the spi input message from the dut_out sysfs node into a
  84. * temporary buffer.
  85. *
  86. * RETURN VALUE:
  87. * Length of data transferred
  88. *
  89. * PARAMETERS:
  90. * *dev - pointer to device struct
  91. * *buf - pointer to spi incoming report
  92. * size - size to be read
  93. ******************************************************************************/
  94. static int virt_spi_master_recv(struct device *dev, u8 *buf, int size)
  95. {
  96. #ifndef PT_POLL_RESP_BY_BUS
  97. struct pt_core_data *cd = dev_get_drvdata(dev);
  98. int i = 0;
  99. #endif
  100. mutex_lock(&virt_spi_lock);
  101. memcpy(buf, pt_dut_out_buf, size);
  102. /* Set "empty buffer" */
  103. pt_dut_out_buf[1] = 0xFF;
  104. pt_dut_out_len = 0;
  105. mutex_unlock(&virt_spi_lock);
  106. #ifndef PT_POLL_RESP_BY_BUS
  107. if (cd->bl_with_no_int) {
  108. /*
  109. * Wait for IRQ gpio to be released, make read operation
  110. * synchronize with PtVirtDut tool.
  111. * Safety net: Exit after 500ms (50us * 10000 loops = 500ms)
  112. */
  113. while (i < VIRT_MAX_IRQ_RELEASE_TIME_US &&
  114. !gpio_get_value(cd->cpdata->irq_gpio)) {
  115. pt_debug(dev, DL_INFO, "%s: %d IRQ still Enabled\n",
  116. __func__, i);
  117. usleep_range(50, 60);
  118. i += 50;
  119. }
  120. }
  121. #endif
  122. pt_debug(dev, DL_INFO,
  123. "%s: Copy msg from dut_out to spi buffer, size=%d\n",
  124. __func__, size);
  125. return size;
  126. }
  127. /*******************************************************************************
  128. * FUNCTION: pt_dut_cmd_show
  129. *
  130. * SUMMARY: The show function for the dut_cmd sysfs node. Provides read access
  131. * to the pt_dut_cmd_buf and clears it after it has been read.
  132. *
  133. * RETURN VALUE:
  134. * Number of bytes transferred
  135. *
  136. * PARAMETERS:
  137. * *dev - pointer to device structure
  138. * *attr - pointer to device attributes
  139. * *buf - pointer to output buffer
  140. ******************************************************************************/
  141. static ssize_t pt_dut_cmd_show(struct device *dev,
  142. struct device_attribute *attr, char *buf)
  143. {
  144. int i;
  145. int index = 0;
  146. /* Only print to sysfs if the buffer has data */
  147. mutex_lock(&virt_spi_lock);
  148. if (pt_dut_cmd_len > 0) {
  149. for (i = 0; i < pt_dut_cmd_len; i++)
  150. index += scnprintf(buf + index, strlen(buf), "%02X",
  151. pt_dut_cmd_buf[i]);
  152. index += scnprintf(buf + index, strlen(buf), "\n");
  153. }
  154. pt_dut_cmd_len = 0;
  155. mutex_unlock(&virt_spi_lock);
  156. return index;
  157. }
  158. static DEVICE_ATTR(dut_cmd, 0444, pt_dut_cmd_show, NULL);
  159. /*******************************************************************************
  160. * FUNCTION: pt_dut_out_store
  161. *
  162. * SUMMARY: The store function for the dut_out sysfs node. Provides write
  163. * access to the pt_dut_out_buf. The smallest valid PIP response is 2
  164. * bytes so don't update buffer if only 1 byte passed in.
  165. *
  166. * RETURN VALUE:
  167. * Number of bytes read from virtual DUT
  168. *
  169. * PARAMETERS:
  170. * *dev - pointer to device structure
  171. * *attr - pointer to device attributes
  172. * *buf - pointer to buffer that hold the command parameters
  173. * size - size of buf
  174. ******************************************************************************/
  175. static ssize_t pt_dut_out_store(struct device *dev,
  176. struct device_attribute *attr, const char *buf, size_t size)
  177. {
  178. int loop_max = ARRAY_SIZE(pt_dut_out_buf);
  179. int hex_str_len = strlen(buf)/2;
  180. int i;
  181. const char *pos = buf;
  182. /* Clear out the last message */
  183. mutex_lock(&virt_spi_lock);
  184. memset(pt_dut_out_buf, 0, VIRT_DUT_BUF_SIZE);
  185. pt_dut_out_len = 0;
  186. /* Only update the dut_out buffer if at least 2 byte payload */
  187. if (size >= 2 && hex_str_len <= loop_max) {
  188. /* Convert string of hex values to byte array */
  189. for (i = 0; i < hex_str_len; i++) {
  190. pt_dut_out_buf[i] = ((HEXOF(*pos)) << 4) +
  191. HEXOF(*(pos + 1));
  192. pos += 2;
  193. }
  194. pt_dut_out_len = get_unaligned_le16(&pt_dut_out_buf[0]);
  195. } else if (size >= PT_PIP_1P7_EMPTY_BUF) {
  196. /* Message too large, set to 'empty buffer' message */
  197. pt_dut_out_buf[1] = 0xFF;
  198. pt_dut_out_len = 0;
  199. }
  200. mutex_unlock(&virt_spi_lock);
  201. return size;
  202. }
  203. static DEVICE_ATTR(dut_out, 0200, NULL, pt_dut_out_store);
  204. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  205. /*******************************************************************************
  206. * FUNCTION: pt_spi_xfer
  207. *
  208. * SUMMARY: Read or write date for SPI device.
  209. *
  210. * RETURN:
  211. * 0 = success
  212. * !0 = failure
  213. *
  214. * PARAMETERS:
  215. * *dev - pointer to device structure
  216. * op - flag to write or read data
  217. * *buf - pointer to data buffer
  218. * length - data length
  219. ******************************************************************************/
  220. static int pt_spi_xfer(struct device *dev, u8 op, u8 *buf, int length)
  221. {
  222. struct spi_device *spi = to_spi_device(dev);
  223. struct spi_message msg;
  224. struct spi_transfer xfer;
  225. int rc;
  226. memset(&xfer, 0, sizeof(xfer));
  227. spi_message_init(&msg);
  228. switch (op) {
  229. case PT_SPI_RD_OP:
  230. /* Clear tmp_wbuf with additional OP Code and dummy byte */
  231. memset(tmp_wbuf, 0, length + 2);
  232. tmp_wbuf[0] = op;
  233. /* Total read/write = Read length + Op code + dummy byte */
  234. xfer.tx_buf = tmp_wbuf;
  235. xfer.rx_buf = tmp_rbuf;
  236. xfer.len = length + 2;
  237. break;
  238. case PT_SPI_WR_OP:
  239. memcpy(&tmp_wbuf[1], buf, length);
  240. tmp_wbuf[0] = op;
  241. /* Write length + size of Op code */
  242. xfer.tx_buf = tmp_wbuf;
  243. xfer.len = length + 1;
  244. break;
  245. default:
  246. rc = -EIO;
  247. goto exit;
  248. }
  249. spi_message_add_tail(&xfer, &msg);
  250. rc = spi_sync(spi, &msg);
  251. /* On reads copy only the data content back into the passed in buf */
  252. if (op == PT_SPI_RD_OP)
  253. memcpy(buf, &tmp_rbuf[2], length);
  254. exit:
  255. if (rc < 0)
  256. pt_debug(dev, DL_ERROR, "%s: spi_sync() error %d\n",
  257. __func__, rc);
  258. #if 0 /* TODO TC3315 - need to verify the ACK byte */
  259. if (tmp_rbuf[0] != PT_SPI_SYNC_ACK) {
  260. pt_debug(dev, DL_ERROR, "%s: r_header = 0x%02X\n", __func__,
  261. r_header[0]);
  262. return -EIO;
  263. }
  264. #endif
  265. return rc;
  266. }
  267. /*******************************************************************************
  268. * FUNCTION: pt_spi_read_default
  269. *
  270. * SUMMARY: Read a certain number of bytes from the SPI bus
  271. * NOTE: For TC3315 every response includes a "dummy" prefix byte that
  272. * needs to be stipped off before returning buf.
  273. *
  274. * RETURN:
  275. * 0 = success
  276. * !0 = failure
  277. *
  278. * PARAMETERS:
  279. * *dev - pointer to Device structure
  280. * *buf - pointer to buffer where the data read will be stored
  281. * size - size to be read
  282. ******************************************************************************/
  283. static int pt_spi_read_default(struct device *dev, void *buf, int size)
  284. {
  285. #ifdef TTDL_PTVIRTDUT_SUPPORT
  286. struct pt_core_data *cd = dev_get_drvdata(dev);
  287. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  288. int rc = 0;
  289. if (!buf || !size || size > PT_MAX_PIP2_MSG_SIZE)
  290. return -EINVAL;
  291. mutex_lock(&pt_spi_bus_lock);
  292. #ifdef TTDL_PTVIRTDUT_SUPPORT
  293. if (cd->route_bus_virt_dut)
  294. virt_spi_master_recv(dev, buf, size);
  295. else
  296. rc = pt_spi_xfer(dev, PT_SPI_RD_OP, buf, size);
  297. #else
  298. rc = pt_spi_xfer(dev, PT_SPI_RD_OP, buf, size);
  299. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  300. mutex_unlock(&pt_spi_bus_lock);
  301. return rc;
  302. }
  303. /*******************************************************************************
  304. * FUNCTION: pt_spi_read_default_nosize
  305. *
  306. * SUMMARY: Read from the SPI bus in two transactions first reading the HID
  307. * packet size (2 bytes) followed by reading the rest of the packet based
  308. * on the size initially read.
  309. * NOTE: The empty buffer 'size' was redefined in PIP version 1.7.
  310. * NOTE: For TC3315 every response includes a "dummy" prefix byte that
  311. * needs to be stipped off before returning buf.
  312. *
  313. * RETURN:
  314. * 0 = success
  315. * !0 = failure
  316. *
  317. * PARAMETERS:
  318. * *dev - pointer to Device structure
  319. * *buf - pointer to buffer where the data read will be stored
  320. * max - max size that can be read
  321. ******************************************************************************/
  322. static int pt_spi_read_default_nosize(struct device *dev, u8 *buf, u32 max)
  323. {
  324. u32 size;
  325. int rc = 0;
  326. #ifdef TTDL_PTVIRTDUT_SUPPORT
  327. struct pt_core_data *cd = dev_get_drvdata(dev);
  328. if (cd->route_bus_virt_dut) {
  329. mutex_lock(&virt_spi_lock);
  330. size = pt_dut_out_len;
  331. mutex_unlock(&virt_spi_lock);
  332. /* Only copy 2 bytes for "empty buffer" or "FW sentinel" */
  333. if (!size || size == 2 || size >= PT_PIP_1P7_EMPTY_BUF)
  334. size = 2;
  335. virt_spi_master_recv(dev, buf, size);
  336. return 0;
  337. }
  338. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  339. if (!buf)
  340. return 0;
  341. mutex_lock(&pt_spi_bus_lock);
  342. /* Separate transaction to retrieve only the length to read */
  343. rc = pt_spi_xfer(dev, PT_SPI_RD_OP, buf, 2);
  344. if (rc < 0) {
  345. pt_debug(dev, DL_ERROR, "%s: SPI transfer error rc = %d\n",
  346. __func__, rc);
  347. goto exit;
  348. }
  349. size = get_unaligned_le16(&buf[0]);
  350. if (!size || size == 2 || size >= PT_PIP_1P7_EMPTY_BUF)
  351. goto exit;
  352. if (size > max || size > PT_MAX_PIP2_MSG_SIZE) {
  353. pt_debug(dev, DL_ERROR, "%s: Invalid size %d !\n", __func__,
  354. size);
  355. rc = -EINVAL;
  356. goto exit;
  357. }
  358. rc = pt_spi_xfer(dev, PT_SPI_RD_OP, buf, size);
  359. if (rc)
  360. pt_debug(dev, DL_ERROR, "%s: SPI transfer error rc = %d\n",
  361. __func__, rc);
  362. exit:
  363. mutex_unlock(&pt_spi_bus_lock);
  364. return rc;
  365. }
  366. /*******************************************************************************
  367. * FUNCTION: pt_spi_write_read_specific
  368. *
  369. * SUMMARY: Write the contents of write_buf to the SPI device and then read
  370. * the response using pt_spi_read_default_nosize()
  371. *
  372. * RETURN:
  373. * 0 = success
  374. * !0 = failure
  375. *
  376. * PARAMETERS:
  377. * *dev - pointer to Device structure
  378. * write_len - length of data buffer write_buf
  379. * *write_buf - pointer to buffer to write
  380. * *read_buf - pointer to buffer to read response into
  381. * read_len - length to read, 0 to use pt_spi_read_default_nosize
  382. ******************************************************************************/
  383. static int pt_spi_write_read_specific(struct device *dev, u16 write_len,
  384. u8 *write_buf, u8 *read_buf, u16 read_len)
  385. {
  386. #ifdef TTDL_PTVIRTDUT_SUPPORT
  387. struct pt_core_data *cd = dev_get_drvdata(dev);
  388. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  389. int rc = 0;
  390. /* Ensure no packet larger than what the PIP spec allows */
  391. if (write_len > PT_MAX_PIP2_MSG_SIZE)
  392. return -EINVAL;
  393. if (!write_buf || !write_len) {
  394. if (!write_buf)
  395. pt_debug(dev, DL_ERROR,
  396. "%s write_buf is NULL", __func__);
  397. if (!write_len)
  398. pt_debug(dev, DL_ERROR,
  399. "%s write_len is NULL", __func__);
  400. return -EINVAL;
  401. }
  402. mutex_lock(&pt_spi_bus_lock);
  403. #ifdef TTDL_PTVIRTDUT_SUPPORT
  404. if (cd->route_bus_virt_dut) {
  405. virt_spi_transfer(write_buf, write_len);
  406. pt_debug(dev, DL_DEBUG, "%s: Virt transfer size = %d",
  407. __func__, write_len);
  408. } else {
  409. rc = pt_spi_xfer(dev, PT_SPI_WR_OP, write_buf, write_len);
  410. if (rc < 0)
  411. goto error;
  412. }
  413. #else
  414. rc = pt_spi_xfer(dev, PT_SPI_WR_OP, write_buf, write_len);
  415. if (rc < 0)
  416. goto error;
  417. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  418. mutex_unlock(&pt_spi_bus_lock);
  419. if (read_buf)
  420. rc = pt_spi_read_default_nosize(dev, read_buf,
  421. PT_SPI_DATA_SIZE);
  422. return rc;
  423. error:
  424. mutex_unlock(&pt_spi_bus_lock);
  425. return rc;
  426. }
  427. static struct pt_bus_ops pt_spi_bus_ops = {
  428. .bustype = BUS_SPI,
  429. .read_default = pt_spi_read_default,
  430. .read_default_nosize = pt_spi_read_default_nosize,
  431. .write_read_specific = pt_spi_write_read_specific,
  432. };
  433. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  434. static const struct of_device_id pt_spi_of_match[] = {
  435. { .compatible = "parade,pt_spi_adapter", },
  436. { }
  437. };
  438. MODULE_DEVICE_TABLE(of, pt_spi_of_match);
  439. #endif
  440. /*******************************************************************************
  441. * FUNCTION: pt_spi_probe
  442. *
  443. * SUMMARY: Probe functon for the SPI module
  444. *
  445. * RETURN:
  446. * 0 = success
  447. * !0 = failure
  448. *
  449. * PARAMETERS:
  450. * *spi - pointer to spi device structure
  451. ******************************************************************************/
  452. static int pt_spi_probe(struct spi_device *spi)
  453. {
  454. struct device *dev = &spi->dev;
  455. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  456. const struct of_device_id *match;
  457. #endif
  458. int rc;
  459. /* Set up SPI*/
  460. spi->bits_per_word = PT_SPI_BITS_PER_WORD;
  461. spi->mode = SPI_MODE_0;
  462. rc = spi_setup(spi);
  463. if (rc < 0) {
  464. pt_debug(dev, DL_ERROR, "%s: SPI setup error %d\n",
  465. __func__, rc);
  466. return rc;
  467. }
  468. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  469. match = of_match_device(of_match_ptr(pt_spi_of_match), dev);
  470. if (match) {
  471. rc = pt_devtree_create_and_get_pdata(dev);
  472. if (rc < 0)
  473. return rc;
  474. }
  475. #endif
  476. /* Add 2 to the length for the 'OP Code' & 'Dummy' prefix bytes */
  477. tmp_wbuf = kzalloc(PT_SPI_BUFFER_SIZE, GFP_KERNEL);
  478. tmp_rbuf = kzalloc(PT_SPI_BUFFER_SIZE, GFP_KERNEL);
  479. if (!tmp_wbuf || !tmp_rbuf)
  480. return -ENOMEM;
  481. #ifdef TTDL_PTVIRTDUT_SUPPORT
  482. device_create_file(dev, &dev_attr_dut_cmd);
  483. device_create_file(dev, &dev_attr_dut_out);
  484. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  485. rc = pt_probe(&pt_spi_bus_ops, &spi->dev, spi->irq,
  486. PT_SPI_DATA_BUF_SIZE);
  487. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  488. if (rc && match)
  489. pt_devtree_clean_pdata(dev);
  490. #endif
  491. #ifdef TTDL_PTVIRTDUT_SUPPORT
  492. if (rc) {
  493. device_remove_file(dev, &dev_attr_dut_cmd);
  494. device_remove_file(dev, &dev_attr_dut_out);
  495. }
  496. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  497. return rc;
  498. }
  499. /*******************************************************************************
  500. * FUNCTION: pt_spi_remove
  501. *
  502. * SUMMARY: Remove functon for the SPI module
  503. *
  504. * RETURN:
  505. * 0 = success
  506. * !0 = failure
  507. *
  508. * PARAMETERS:
  509. * *spi - pointer to spi device structure
  510. ******************************************************************************/
  511. static int pt_spi_remove(struct spi_device *spi)
  512. {
  513. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  514. const struct of_device_id *match;
  515. #endif
  516. struct device *dev = &spi->dev;
  517. struct pt_core_data *cd = dev_get_drvdata(dev);
  518. kfree(tmp_rbuf);
  519. kfree(tmp_wbuf);
  520. #ifdef TTDL_PTVIRTDUT_SUPPORT
  521. device_remove_file(dev, &dev_attr_dut_cmd);
  522. device_remove_file(dev, &dev_attr_dut_out);
  523. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  524. pt_release(cd);
  525. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  526. match = of_match_device(of_match_ptr(pt_spi_of_match), dev);
  527. if (match)
  528. pt_devtree_clean_pdata(dev);
  529. #endif
  530. return 0;
  531. }
  532. static const struct spi_device_id pt_spi_id[] = {
  533. { PT_SPI_NAME, 0 },
  534. { }
  535. };
  536. MODULE_DEVICE_TABLE(spi, pt_spi_id);
  537. static struct spi_driver pt_spi_driver = {
  538. .driver = {
  539. .name = PT_SPI_NAME,
  540. .bus = &spi_bus_type,
  541. .owner = THIS_MODULE,
  542. .pm = &pt_pm_ops,
  543. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  544. .of_match_table = pt_spi_of_match,
  545. #endif
  546. },
  547. .probe = pt_spi_probe,
  548. .remove = (pt_spi_remove),
  549. .id_table = pt_spi_id,
  550. };
  551. #if (KERNEL_VERSION(3, 3, 0) <= LINUX_VERSION_CODE)
  552. module_spi_driver(pt_spi_driver);
  553. #else
  554. /*******************************************************************************
  555. * FUNCTION: pt_spi_init
  556. *
  557. * SUMMARY: Initialize function to register spi module to kernel.
  558. *
  559. * RETURN:
  560. * 0 = success
  561. * !0 = failure
  562. ******************************************************************************/
  563. static int __init pt_spi_init(void)
  564. {
  565. int err = spi_register_driver(&pt_spi_driver);
  566. pr_info("%s: Parade TTDL SPI Driver (Build %s) rc=%d\n",
  567. __func__, PT_DRIVER_VERSION, err);
  568. return err;
  569. }
  570. module_init(pt_spi_init);
  571. /*******************************************************************************
  572. * FUNCTION: pt_spi_exit
  573. *
  574. * SUMMARY: Exit function to unregister spi module from kernel.
  575. *
  576. ******************************************************************************/
  577. static void __exit pt_spi_exit(void)
  578. {
  579. spi_unregister_driver(&pt_spi_driver);
  580. }
  581. module_exit(pt_spi_exit);
  582. #endif
  583. MODULE_LICENSE("GPL");
  584. MODULE_DESCRIPTION("Parade TrueTouch(R) Standard Product SPI Driver");
  585. MODULE_AUTHOR("Parade Technologies <[email protected]>");