mainstone-wm97xx.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. * mainstone-wm97xx.c -- Mainstone Continuous Touch screen driver for
  3. * Wolfson WM97xx AC97 Codecs.
  4. *
  5. * Copyright 2004, 2007 Wolfson Microelectronics PLC.
  6. * Author: Liam Girdwood <lrg@slimlogic.co.uk>
  7. * Parts Copyright : Ian Molton <spyro@f2s.com>
  8. * Andrew Zabolotny <zap@homelink.ru>
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. *
  15. * Notes:
  16. * This is a wm97xx extended touch driver to capture touch
  17. * data in a continuous manner on the Intel XScale architecture
  18. *
  19. * Features:
  20. * - codecs supported:- WM9705, WM9712, WM9713
  21. * - processors supported:- Intel XScale PXA25x, PXA26x, PXA27x
  22. *
  23. */
  24. #include <linux/module.h>
  25. #include <linux/moduleparam.h>
  26. #include <linux/kernel.h>
  27. #include <linux/init.h>
  28. #include <linux/delay.h>
  29. #include <linux/irq.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/wm97xx.h>
  32. #include <linux/io.h>
  33. #include <linux/gpio.h>
  34. #include <mach/regs-ac97.h>
  35. #include <asm/mach-types.h>
  36. struct continuous {
  37. u16 id; /* codec id */
  38. u8 code; /* continuous code */
  39. u8 reads; /* number of coord reads per read cycle */
  40. u32 speed; /* number of coords per second */
  41. };
  42. #define WM_READS(sp) ((sp / HZ) + 1)
  43. static const struct continuous cinfo[] = {
  44. {WM9705_ID2, 0, WM_READS(94), 94},
  45. {WM9705_ID2, 1, WM_READS(188), 188},
  46. {WM9705_ID2, 2, WM_READS(375), 375},
  47. {WM9705_ID2, 3, WM_READS(750), 750},
  48. {WM9712_ID2, 0, WM_READS(94), 94},
  49. {WM9712_ID2, 1, WM_READS(188), 188},
  50. {WM9712_ID2, 2, WM_READS(375), 375},
  51. {WM9712_ID2, 3, WM_READS(750), 750},
  52. {WM9713_ID2, 0, WM_READS(94), 94},
  53. {WM9713_ID2, 1, WM_READS(120), 120},
  54. {WM9713_ID2, 2, WM_READS(154), 154},
  55. {WM9713_ID2, 3, WM_READS(188), 188},
  56. };
  57. /* continuous speed index */
  58. static int sp_idx;
  59. static u16 last, tries;
  60. static int irq;
  61. /*
  62. * Pen sampling frequency (Hz) in continuous mode.
  63. */
  64. static int cont_rate = 200;
  65. module_param(cont_rate, int, 0);
  66. MODULE_PARM_DESC(cont_rate, "Sampling rate in continuous mode (Hz)");
  67. /*
  68. * Pen down detection.
  69. *
  70. * This driver can either poll or use an interrupt to indicate a pen down
  71. * event. If the irq request fails then it will fall back to polling mode.
  72. */
  73. static int pen_int;
  74. module_param(pen_int, int, 0);
  75. MODULE_PARM_DESC(pen_int, "Pen down detection (1 = interrupt, 0 = polling)");
  76. /*
  77. * Pressure readback.
  78. *
  79. * Set to 1 to read back pen down pressure
  80. */
  81. static int pressure;
  82. module_param(pressure, int, 0);
  83. MODULE_PARM_DESC(pressure, "Pressure readback (1 = pressure, 0 = no pressure)");
  84. /*
  85. * AC97 touch data slot.
  86. *
  87. * Touch screen readback data ac97 slot
  88. */
  89. static int ac97_touch_slot = 5;
  90. module_param(ac97_touch_slot, int, 0);
  91. MODULE_PARM_DESC(ac97_touch_slot, "Touch screen data slot AC97 number");
  92. /* flush AC97 slot 5 FIFO on pxa machines */
  93. #ifdef CONFIG_PXA27x
  94. static void wm97xx_acc_pen_up(struct wm97xx *wm)
  95. {
  96. schedule_timeout_uninterruptible(1);
  97. while (MISR & (1 << 2))
  98. MODR;
  99. }
  100. #else
  101. static void wm97xx_acc_pen_up(struct wm97xx *wm)
  102. {
  103. unsigned int count;
  104. schedule_timeout_uninterruptible(1);
  105. for (count = 0; count < 16; count++)
  106. MODR;
  107. }
  108. #endif
  109. static int wm97xx_acc_pen_down(struct wm97xx *wm)
  110. {
  111. u16 x, y, p = 0x100 | WM97XX_ADCSEL_PRES;
  112. int reads = 0;
  113. /* When the AC97 queue has been drained we need to allow time
  114. * to buffer up samples otherwise we end up spinning polling
  115. * for samples. The controller can't have a suitably low
  116. * threshold set to use the notifications it gives.
  117. */
  118. schedule_timeout_uninterruptible(1);
  119. if (tries > 5) {
  120. tries = 0;
  121. return RC_PENUP;
  122. }
  123. x = MODR;
  124. if (x == last) {
  125. tries++;
  126. return RC_AGAIN;
  127. }
  128. last = x;
  129. do {
  130. if (reads)
  131. x = MODR;
  132. y = MODR;
  133. if (pressure)
  134. p = MODR;
  135. /* are samples valid */
  136. if ((x & WM97XX_ADCSRC_MASK) != WM97XX_ADCSEL_X ||
  137. (y & WM97XX_ADCSRC_MASK) != WM97XX_ADCSEL_Y ||
  138. (p & WM97XX_ADCSRC_MASK) != WM97XX_ADCSEL_PRES)
  139. goto up;
  140. /* coordinate is good */
  141. tries = 0;
  142. input_report_abs(wm->input_dev, ABS_X, x & 0xfff);
  143. input_report_abs(wm->input_dev, ABS_Y, y & 0xfff);
  144. input_report_abs(wm->input_dev, ABS_PRESSURE, p & 0xfff);
  145. input_report_key(wm->input_dev, BTN_TOUCH, (p != 0));
  146. input_sync(wm->input_dev);
  147. reads++;
  148. } while (reads < cinfo[sp_idx].reads);
  149. up:
  150. return RC_PENDOWN | RC_AGAIN;
  151. }
  152. static int wm97xx_acc_startup(struct wm97xx *wm)
  153. {
  154. int idx = 0, ret = 0;
  155. /* check we have a codec */
  156. if (wm->ac97 == NULL)
  157. return -ENODEV;
  158. /* Go you big red fire engine */
  159. for (idx = 0; idx < ARRAY_SIZE(cinfo); idx++) {
  160. if (wm->id != cinfo[idx].id)
  161. continue;
  162. sp_idx = idx;
  163. if (cont_rate <= cinfo[idx].speed)
  164. break;
  165. }
  166. wm->acc_rate = cinfo[sp_idx].code;
  167. wm->acc_slot = ac97_touch_slot;
  168. dev_info(wm->dev,
  169. "mainstone accelerated touchscreen driver, %d samples/sec\n",
  170. cinfo[sp_idx].speed);
  171. /* IRQ driven touchscreen is used on Palm hardware */
  172. if (machine_is_palmt5() || machine_is_palmtx() || machine_is_palmld()) {
  173. pen_int = 1;
  174. irq = 27;
  175. /* There is some obscure mutant of WM9712 interbred with WM9713
  176. * used on Palm HW */
  177. wm->variant = WM97xx_WM1613;
  178. } else if (machine_is_mainstone() && pen_int)
  179. irq = 4;
  180. if (irq) {
  181. ret = gpio_request(irq, "Touchscreen IRQ");
  182. if (ret)
  183. goto out;
  184. ret = gpio_direction_input(irq);
  185. if (ret) {
  186. gpio_free(irq);
  187. goto out;
  188. }
  189. wm->pen_irq = gpio_to_irq(irq);
  190. set_irq_type(wm->pen_irq, IRQ_TYPE_EDGE_BOTH);
  191. } else /* pen irq not supported */
  192. pen_int = 0;
  193. /* codec specific irq config */
  194. if (pen_int) {
  195. switch (wm->id) {
  196. case WM9705_ID2:
  197. break;
  198. case WM9712_ID2:
  199. case WM9713_ID2:
  200. /* use PEN_DOWN GPIO 13 to assert IRQ on GPIO line 2 */
  201. wm97xx_config_gpio(wm, WM97XX_GPIO_13, WM97XX_GPIO_IN,
  202. WM97XX_GPIO_POL_HIGH,
  203. WM97XX_GPIO_STICKY,
  204. WM97XX_GPIO_WAKE);
  205. wm97xx_config_gpio(wm, WM97XX_GPIO_2, WM97XX_GPIO_OUT,
  206. WM97XX_GPIO_POL_HIGH,
  207. WM97XX_GPIO_NOTSTICKY,
  208. WM97XX_GPIO_NOWAKE);
  209. break;
  210. default:
  211. dev_err(wm->dev,
  212. "pen down irq not supported on this device\n");
  213. pen_int = 0;
  214. break;
  215. }
  216. }
  217. out:
  218. return ret;
  219. }
  220. static void wm97xx_acc_shutdown(struct wm97xx *wm)
  221. {
  222. /* codec specific deconfig */
  223. if (pen_int) {
  224. if (irq)
  225. gpio_free(irq);
  226. wm->pen_irq = 0;
  227. }
  228. }
  229. static void wm97xx_irq_enable(struct wm97xx *wm, int enable)
  230. {
  231. if (enable)
  232. enable_irq(wm->pen_irq);
  233. else
  234. disable_irq_nosync(wm->pen_irq);
  235. }
  236. static struct wm97xx_mach_ops mainstone_mach_ops = {
  237. .acc_enabled = 1,
  238. .acc_pen_up = wm97xx_acc_pen_up,
  239. .acc_pen_down = wm97xx_acc_pen_down,
  240. .acc_startup = wm97xx_acc_startup,
  241. .acc_shutdown = wm97xx_acc_shutdown,
  242. .irq_enable = wm97xx_irq_enable,
  243. .irq_gpio = WM97XX_GPIO_2,
  244. };
  245. static int mainstone_wm97xx_probe(struct platform_device *pdev)
  246. {
  247. struct wm97xx *wm = platform_get_drvdata(pdev);
  248. return wm97xx_register_mach_ops(wm, &mainstone_mach_ops);
  249. }
  250. static int mainstone_wm97xx_remove(struct platform_device *pdev)
  251. {
  252. struct wm97xx *wm = platform_get_drvdata(pdev);
  253. wm97xx_unregister_mach_ops(wm);
  254. return 0;
  255. }
  256. static struct platform_driver mainstone_wm97xx_driver = {
  257. .probe = mainstone_wm97xx_probe,
  258. .remove = mainstone_wm97xx_remove,
  259. .driver = {
  260. .name = "wm97xx-touch",
  261. },
  262. };
  263. static int __init mainstone_wm97xx_init(void)
  264. {
  265. return platform_driver_register(&mainstone_wm97xx_driver);
  266. }
  267. static void __exit mainstone_wm97xx_exit(void)
  268. {
  269. platform_driver_unregister(&mainstone_wm97xx_driver);
  270. }
  271. module_init(mainstone_wm97xx_init);
  272. module_exit(mainstone_wm97xx_exit);
  273. /* Module information */
  274. MODULE_AUTHOR("Liam Girdwood <lrg@slimlogic.co.uk>");
  275. MODULE_DESCRIPTION("wm97xx continuous touch driver for mainstone");
  276. MODULE_LICENSE("GPL");