pt_btn.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. #ifndef TTDL_KERNEL_SUBMISSION
  2. /*
  3. * pt_btn.c
  4. * Parade TrueTouch(TM) Standard Product CapSense Reports Module.
  5. * For use with Parade touchscreen controllers.
  6. * Supported parts include:
  7. * TMA5XX
  8. * TMA448
  9. * TMA445A
  10. * TT21XXX
  11. * TT31XXX
  12. * TT4XXXX
  13. * TT7XXX
  14. * TC3XXX
  15. *
  16. * Copyright (C) 2015-2020 Parade Technologies
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * version 2, and only version 2, as published by the
  21. * Free Software Foundation.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * Contact Parade Technologies at www.paradetech.com <[email protected]>
  29. */
  30. #include "pt_regs.h"
  31. /*******************************************************************************
  32. * FUNCTION: pt_btn_key_action
  33. *
  34. * SUMMARY: Reports key event
  35. *
  36. * PARAMETERS:
  37. * *bd - pointer to button data structure
  38. * btn_no - number of button
  39. * btn_state - state of button
  40. ******************************************************************************/
  41. static inline void pt_btn_key_action(struct pt_btn_data *bd,
  42. int btn_no, int btn_state)
  43. {
  44. struct device *dev = bd->dev;
  45. struct pt_sysinfo *si = bd->si;
  46. if (!si->btn[btn_no].enabled ||
  47. si->btn[btn_no].state == btn_state)
  48. return;
  49. si->btn[btn_no].state = btn_state;
  50. input_report_key(bd->input, si->btn[btn_no].key_code, btn_state);
  51. input_sync(bd->input);
  52. pt_debug(dev, DL_INFO, "%s: btn=%d key_code=%d %s\n",
  53. __func__, btn_no, si->btn[btn_no].key_code,
  54. btn_state == PT_BTN_PRESSED ?
  55. "PRESSED" : "RELEASED");
  56. }
  57. /*******************************************************************************
  58. * FUNCTION: pt_get_btn_touches
  59. *
  60. * SUMMARY: Parse and report key event
  61. *
  62. * PARAMETERS:
  63. * *bd - pointer to button data structure
  64. ******************************************************************************/
  65. static void pt_get_btn_touches(struct pt_btn_data *bd)
  66. {
  67. struct pt_sysinfo *si = bd->si;
  68. int num_btns = si->num_btns;
  69. int cur_btn;
  70. int cur_btn_state;
  71. for (cur_btn = 0; cur_btn < num_btns; cur_btn++) {
  72. /* Get current button state */
  73. cur_btn_state = (si->xy_data[0] >> (cur_btn * PT_BITS_PER_BTN))
  74. & PT_NUM_BTN_EVENT_ID;
  75. pt_btn_key_action(bd, cur_btn, cur_btn_state);
  76. }
  77. }
  78. /*******************************************************************************
  79. * FUNCTION: pt_btn_lift_all
  80. *
  81. * SUMMARY: Reports button liftoff action
  82. *
  83. * PARAMETERS:
  84. * *bd - pointer to button data structure
  85. ******************************************************************************/
  86. static void pt_btn_lift_all(struct pt_btn_data *bd)
  87. {
  88. struct pt_sysinfo *si = bd->si;
  89. int i;
  90. if (!si || si->num_btns == 0)
  91. return;
  92. for (i = 0; i < si->num_btns; i++)
  93. pt_btn_key_action(bd, i, PT_BTN_RELEASED);
  94. }
  95. /*******************************************************************************
  96. * FUNCTION: pt_xy_worker
  97. *
  98. * SUMMARY: Read xy_data for all current CapSense button touches
  99. *
  100. * RETURN:
  101. * 0 = success
  102. *
  103. * PARAMETERS:
  104. * *bd - pointer to button data structure
  105. ******************************************************************************/
  106. static int pt_xy_worker(struct pt_btn_data *bd)
  107. {
  108. struct pt_sysinfo *si = bd->si;
  109. /* extract button press/release touch information */
  110. if (si->num_btns > 0)
  111. pt_get_btn_touches(bd);
  112. return 0;
  113. }
  114. /*******************************************************************************
  115. * FUNCTION: pt_btn_attention
  116. *
  117. * SUMMARY: Wrapper function for pt_xy_worker() that register to TTDL attention
  118. * list.
  119. *
  120. * RETURN:
  121. * 0 = success
  122. * !0 = failure
  123. *
  124. * PARAMETERS:
  125. * *dev - pointer to device structure
  126. ******************************************************************************/
  127. static int pt_btn_attention(struct device *dev)
  128. {
  129. struct pt_core_data *cd = dev_get_drvdata(dev);
  130. struct pt_btn_data *bd = &cd->bd;
  131. int rc;
  132. if (bd->si->xy_mode[2] != bd->si->desc.btn_report_id)
  133. return 0;
  134. /* core handles handshake */
  135. mutex_lock(&bd->btn_lock);
  136. rc = pt_xy_worker(bd);
  137. mutex_unlock(&bd->btn_lock);
  138. if (rc < 0)
  139. pt_debug(dev, DL_ERROR,
  140. "%s: xy_worker error r=%d\n", __func__, rc);
  141. return rc;
  142. }
  143. /*******************************************************************************
  144. * FUNCTION: pt_startup_attention
  145. *
  146. * SUMMARY: Wrapper function for pt_btn_lift_all() that register to TTDL
  147. * attention list.
  148. *
  149. * RETURN:
  150. * 0 = success
  151. *
  152. * PARAMETERS:
  153. * *dev - pointer to device structure
  154. ******************************************************************************/
  155. static int pt_startup_attention(struct device *dev)
  156. {
  157. struct pt_core_data *cd = dev_get_drvdata(dev);
  158. struct pt_btn_data *bd = &cd->bd;
  159. mutex_lock(&bd->btn_lock);
  160. pt_btn_lift_all(bd);
  161. mutex_unlock(&bd->btn_lock);
  162. return 0;
  163. }
  164. /*******************************************************************************
  165. * FUNCTION: pt_btn_suspend_attention
  166. *
  167. * SUMMARY: Function for button to enter suspend state that as following steps:
  168. * 1) Lift all button
  169. * 2) Set flag with suspend state
  170. * 3) Decrese pm system count
  171. *
  172. * RETURN:
  173. * 0 = success
  174. *
  175. * PARAMETERS:
  176. * *dev - pointer to device structure
  177. ******************************************************************************/
  178. static int pt_btn_suspend_attention(struct device *dev)
  179. {
  180. struct pt_core_data *cd = dev_get_drvdata(dev);
  181. struct pt_btn_data *bd = &cd->bd;
  182. mutex_lock(&bd->btn_lock);
  183. pt_btn_lift_all(bd);
  184. bd->is_suspended = true;
  185. mutex_unlock(&bd->btn_lock);
  186. pm_runtime_put(dev);
  187. return 0;
  188. }
  189. /*******************************************************************************
  190. * FUNCTION: pt_btn_resume_attention
  191. *
  192. * SUMMARY: Function for button to leave suspend state that as following steps:
  193. * 1) Increse pm system count
  194. * 2) Clear suspend state flag
  195. *
  196. * RETURN:
  197. * 0 = success
  198. *
  199. * PARAMETERS:
  200. * *dev - pointer to device structure
  201. ******************************************************************************/
  202. static int pt_btn_resume_attention(struct device *dev)
  203. {
  204. struct pt_core_data *cd = dev_get_drvdata(dev);
  205. struct pt_btn_data *bd = &cd->bd;
  206. pm_runtime_get(dev);
  207. mutex_lock(&bd->btn_lock);
  208. bd->is_suspended = false;
  209. mutex_unlock(&bd->btn_lock);
  210. return 0;
  211. }
  212. /*******************************************************************************
  213. * FUNCTION: pt_btn_open
  214. *
  215. * SUMMARY: Open method for input device(button) that sets up call back
  216. * functions to TTDL attention list
  217. *
  218. * RETURN:
  219. * 0 = success
  220. *
  221. * PARAMETERS:
  222. * *input - pointer to input_dev structure
  223. ******************************************************************************/
  224. static int pt_btn_open(struct input_dev *input)
  225. {
  226. struct device *dev = input->dev.parent;
  227. struct pt_core_data *cd = dev_get_drvdata(dev);
  228. struct pt_btn_data *bd = &cd->bd;
  229. pm_runtime_get_sync(dev);
  230. mutex_lock(&bd->btn_lock);
  231. bd->is_suspended = false;
  232. mutex_unlock(&bd->btn_lock);
  233. pt_debug(dev, DL_INFO, "%s: setup subscriptions\n", __func__);
  234. /* set up touch call back */
  235. _pt_subscribe_attention(dev, PT_ATTEN_IRQ, PT_BTN_NAME,
  236. pt_btn_attention, PT_MODE_OPERATIONAL);
  237. /* set up startup call back */
  238. _pt_subscribe_attention(dev, PT_ATTEN_STARTUP, PT_BTN_NAME,
  239. pt_startup_attention, 0);
  240. /* set up suspend call back */
  241. _pt_subscribe_attention(dev, PT_ATTEN_SUSPEND, PT_BTN_NAME,
  242. pt_btn_suspend_attention, 0);
  243. /* set up resume call back */
  244. _pt_subscribe_attention(dev, PT_ATTEN_RESUME, PT_BTN_NAME,
  245. pt_btn_resume_attention, 0);
  246. return 0;
  247. }
  248. /*******************************************************************************
  249. * FUNCTION: pt_btn_close
  250. *
  251. * SUMMARY: Close method for input device(button) that clears call back
  252. * functions from TTDL attention list.
  253. *
  254. * PARAMETERS:
  255. * *input - pointer to input_dev structure
  256. ******************************************************************************/
  257. static void pt_btn_close(struct input_dev *input)
  258. {
  259. struct device *dev = input->dev.parent;
  260. struct pt_core_data *cd = dev_get_drvdata(dev);
  261. struct pt_btn_data *bd = &cd->bd;
  262. _pt_unsubscribe_attention(dev, PT_ATTEN_IRQ, PT_BTN_NAME,
  263. pt_btn_attention, PT_MODE_OPERATIONAL);
  264. _pt_unsubscribe_attention(dev, PT_ATTEN_STARTUP, PT_BTN_NAME,
  265. pt_startup_attention, 0);
  266. _pt_unsubscribe_attention(dev, PT_ATTEN_SUSPEND, PT_BTN_NAME,
  267. pt_btn_suspend_attention, 0);
  268. _pt_unsubscribe_attention(dev, PT_ATTEN_RESUME, PT_BTN_NAME,
  269. pt_btn_resume_attention, 0);
  270. mutex_lock(&bd->btn_lock);
  271. if (!bd->is_suspended) {
  272. pm_runtime_put(dev);
  273. bd->is_suspended = true;
  274. }
  275. mutex_unlock(&bd->btn_lock);
  276. }
  277. /*******************************************************************************
  278. * FUNCTION: pt_setup_input_device
  279. *
  280. * SUMMARY: Set up resolution, event signal capabilities and register input
  281. * device for button.
  282. *
  283. * RETURN:
  284. * 0 = success
  285. * !0 = failure
  286. *
  287. * PARAMETERS:
  288. * *dev - pointer to device structure
  289. ******************************************************************************/
  290. static int pt_setup_input_device(struct device *dev)
  291. {
  292. struct pt_core_data *cd = dev_get_drvdata(dev);
  293. struct pt_btn_data *bd = &cd->bd;
  294. int i;
  295. int rc;
  296. pt_debug(dev, DL_INFO, "%s: Initialize event signals\n",
  297. __func__);
  298. __set_bit(EV_KEY, bd->input->evbit);
  299. pt_debug(dev, DL_INFO, "%s: Number of buttons %d\n",
  300. __func__, bd->si->num_btns);
  301. for (i = 0; i < bd->si->num_btns; i++) {
  302. pt_debug(dev, DL_INFO, "%s: btn:%d keycode:%d\n",
  303. __func__, i, bd->si->btn[i].key_code);
  304. __set_bit(bd->si->btn[i].key_code, bd->input->keybit);
  305. }
  306. rc = input_register_device(bd->input);
  307. if (rc < 0)
  308. pt_debug(dev, DL_ERROR,
  309. "%s: Error, failed register input device r=%d\n",
  310. __func__, rc);
  311. else
  312. bd->input_device_registered = true;
  313. return rc;
  314. }
  315. /*******************************************************************************
  316. * FUNCTION: pt_setup_input_attention
  317. *
  318. * SUMMARY: Wrapper function for pt_setup_input_device() register to TTDL
  319. * attention list.
  320. *
  321. * RETURN:
  322. * 0 = success
  323. * !0 = failure
  324. *
  325. * PARAMETERS:
  326. * *dev - pointer to device structure
  327. ******************************************************************************/
  328. static int pt_setup_input_attention(struct device *dev)
  329. {
  330. struct pt_core_data *cd = dev_get_drvdata(dev);
  331. struct pt_btn_data *bd = &cd->bd;
  332. int rc;
  333. bd->si = _pt_request_sysinfo(dev);
  334. if (!bd->si)
  335. return -1;
  336. rc = pt_setup_input_device(dev);
  337. _pt_unsubscribe_attention(dev, PT_ATTEN_STARTUP, PT_BTN_NAME,
  338. pt_setup_input_attention, 0);
  339. return rc;
  340. }
  341. /*******************************************************************************
  342. * FUNCTION: pt_btn_probe
  343. *
  344. * SUMMARY: The probe function for button input device
  345. *
  346. * RETURN:
  347. * 0 = success
  348. * !0 = failure
  349. *
  350. * PARAMETERS:
  351. * *dev - pointer to device structure
  352. ******************************************************************************/
  353. int pt_btn_probe(struct device *dev)
  354. {
  355. struct pt_core_data *cd = dev_get_drvdata(dev);
  356. struct pt_btn_data *bd = &cd->bd;
  357. struct pt_platform_data *pdata = dev_get_platdata(dev);
  358. struct pt_btn_platform_data *btn_pdata;
  359. int rc = 0;
  360. if (!pdata || !pdata->btn_pdata) {
  361. pt_debug(dev, DL_ERROR,
  362. "%s: Missing platform data\n", __func__);
  363. rc = -ENODEV;
  364. goto error_no_pdata;
  365. }
  366. btn_pdata = pdata->btn_pdata;
  367. mutex_init(&bd->btn_lock);
  368. bd->dev = dev;
  369. bd->pdata = btn_pdata;
  370. /* Create the input device and register it. */
  371. pt_debug(dev, DL_INFO,
  372. "%s: Create the input device and register it\n", __func__);
  373. bd->input = input_allocate_device();
  374. if (!bd->input) {
  375. pt_debug(dev, DL_ERROR,
  376. "%s: Error, failed to allocate input device\n",
  377. __func__);
  378. rc = -ENODEV;
  379. goto error_alloc_failed;
  380. } else
  381. bd->input_device_allocated = true;
  382. if (bd->pdata->inp_dev_name)
  383. bd->input->name = bd->pdata->inp_dev_name;
  384. else
  385. bd->input->name = PT_BTN_NAME;
  386. scnprintf(bd->phys, sizeof(bd->phys), "%s/input%d", dev_name(dev),
  387. cd->phys_num++);
  388. bd->input->phys = bd->phys;
  389. bd->input->dev.parent = bd->dev;
  390. bd->input->open = pt_btn_open;
  391. bd->input->close = pt_btn_close;
  392. input_set_drvdata(bd->input, bd);
  393. /* get sysinfo */
  394. bd->si = _pt_request_sysinfo(dev);
  395. if (bd->si) {
  396. rc = pt_setup_input_device(dev);
  397. if (rc)
  398. goto error_init_input;
  399. } else {
  400. pt_debug(dev, DL_ERROR,
  401. "%s: Fail get sysinfo pointer from core p=%p\n",
  402. __func__, bd->si);
  403. _pt_subscribe_attention(dev, PT_ATTEN_STARTUP,
  404. PT_BTN_NAME, pt_setup_input_attention, 0);
  405. }
  406. return 0;
  407. error_init_input:
  408. input_free_device(bd->input);
  409. bd->input_device_allocated = false;
  410. error_alloc_failed:
  411. error_no_pdata:
  412. pt_debug(dev, DL_ERROR, "%s failed.\n", __func__);
  413. return rc;
  414. }
  415. /*******************************************************************************
  416. * FUNCTION: pt_btn_release
  417. *
  418. * SUMMARY: The release function for button input device
  419. *
  420. * RETURN:
  421. * 0 = success
  422. *
  423. * PARAMETERS:
  424. * *dev - pointer to device structure
  425. ******************************************************************************/
  426. int pt_btn_release(struct device *dev)
  427. {
  428. struct pt_core_data *cd;
  429. struct pt_btn_data *bd;
  430. /* Ensure valid pointers before de-referencing them */
  431. if (dev) {
  432. cd = dev_get_drvdata(dev);
  433. if (cd)
  434. bd = &cd->bd;
  435. else
  436. return 0;
  437. } else {
  438. return 0;
  439. }
  440. /*
  441. * Second call this function may cause kernel panic if probe fail.
  442. * Use input_device_registered & input_device_allocated variable to
  443. * avoid unregister or free unavailable devive.
  444. */
  445. if (bd && bd->input_device_registered) {
  446. bd->input_device_registered = false;
  447. input_unregister_device(bd->input);
  448. /* Unregistering device will free the device too */
  449. bd->input_device_allocated = false;
  450. } else if (bd && bd->input_device_allocated) {
  451. bd->input_device_allocated = false;
  452. input_free_device(bd->input);
  453. _pt_unsubscribe_attention(dev, PT_ATTEN_STARTUP,
  454. PT_BTN_NAME, pt_setup_input_attention, 0);
  455. }
  456. return 0;
  457. }
  458. #endif /*!TTDL_KERNEL_SUBMISSION */