aqt1000-irq.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /* Copyright (c) 2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/irq.h>
  15. #include <linux/delay.h>
  16. #include <linux/gpio.h>
  17. #include <linux/of.h>
  18. #include <linux/of_irq.h>
  19. #include <linux/slab.h>
  20. #include <linux/ratelimit.h>
  21. #include <linux/irqdomain.h>
  22. #include <linux/regmap.h>
  23. #include <linux/pm_runtime.h>
  24. #include "pdata.h"
  25. #include "aqt1000.h"
  26. #include "aqt1000-registers.h"
  27. #include "aqt1000-irq.h"
  28. static const struct regmap_irq aqt1000_irqs[AQT1000_NUM_IRQS] = {
  29. REGMAP_IRQ_REG(AQT1000_IRQ_MBHC_BUTTON_RELEASE_DET, 0, 0x01),
  30. REGMAP_IRQ_REG(AQT1000_IRQ_MBHC_BUTTON_PRESS_DET, 0, 0x02),
  31. REGMAP_IRQ_REG(AQT1000_IRQ_MBHC_ELECT_INS_REM_DET, 0, 0x04),
  32. REGMAP_IRQ_REG(AQT1000_IRQ_MBHC_ELECT_INS_REM_LEG_DET, 0, 0x08),
  33. REGMAP_IRQ_REG(AQT1000_IRQ_MBHC_SW_DET, 0, 0x10),
  34. REGMAP_IRQ_REG(AQT1000_IRQ_HPH_PA_OCPL_FAULT, 0, 0x20),
  35. REGMAP_IRQ_REG(AQT1000_IRQ_HPH_PA_OCPR_FAULT, 0, 0x40),
  36. REGMAP_IRQ_REG(AQT1000_IRQ_HPH_PA_CNPL_COMPLETE, 0, 0x80),
  37. REGMAP_IRQ_REG(AQT1000_IRQ_HPH_PA_CNPR_COMPLETE, 1, 0x01),
  38. REGMAP_IRQ_REG(AQT1000_CDC_HPHL_SURGE, 1, 0x02),
  39. REGMAP_IRQ_REG(AQT1000_CDC_HPHR_SURGE, 1, 0x04),
  40. };
  41. static const struct regmap_irq_chip aqt_regmap_irq_chip = {
  42. .name = "AQT1000",
  43. .irqs = aqt1000_irqs,
  44. .num_irqs = ARRAY_SIZE(aqt1000_irqs),
  45. .num_regs = 2,
  46. .status_base = AQT1000_INTR_CTRL_INT_STATUS_2,
  47. .mask_base = AQT1000_INTR_CTRL_INT_MASK_2,
  48. .unmask_base = AQT1000_INTR_CTRL_INT_CLEAR_2,
  49. .ack_base = AQT1000_INTR_CTRL_INT_STATUS_2,
  50. .runtime_pm = true,
  51. };
  52. static int aqt_map_irq(struct aqt1000 *aqt, int irq)
  53. {
  54. return regmap_irq_get_virq(aqt->irq_chip, irq);
  55. }
  56. /**
  57. * aqt_request_irq: Request a thread handler for the given IRQ
  58. * @aqt: pointer to aqt1000 structure
  59. * @irq: irq number
  60. * @name: name for the IRQ thread
  61. * @handler: irq handler
  62. * @data: data pointer
  63. *
  64. * Returns 0 on success or error on failure
  65. */
  66. int aqt_request_irq(struct aqt1000 *aqt, int irq, const char *name,
  67. irq_handler_t handler, void *data)
  68. {
  69. irq = aqt_map_irq(aqt, irq);
  70. if (irq < 0)
  71. return irq;
  72. return request_threaded_irq(irq, NULL, handler, IRQF_ONESHOT,
  73. name, data);
  74. }
  75. EXPORT_SYMBOL(aqt_request_irq);
  76. /**
  77. * aqt_free_irq: Free the IRQ resources allocated during request_irq
  78. * @aqt: pointer to aqt1000 structure
  79. * @irq: irq number
  80. * @data: data pointer
  81. */
  82. void aqt_free_irq(struct aqt1000 *aqt, int irq, void *data)
  83. {
  84. irq = aqt_map_irq(aqt, irq);
  85. if (irq < 0)
  86. return;
  87. free_irq(irq, data);
  88. }
  89. EXPORT_SYMBOL(aqt_free_irq);
  90. /**
  91. * aqt_enable_irq: Enable the given IRQ
  92. * @aqt: pointer to aqt1000 structure
  93. * @irq: irq number
  94. */
  95. void aqt_enable_irq(struct aqt1000 *aqt, int irq)
  96. {
  97. if (aqt)
  98. enable_irq(aqt_map_irq(aqt, irq));
  99. }
  100. EXPORT_SYMBOL(aqt_enable_irq);
  101. /**
  102. * aqt_disable_irq: Disable the given IRQ
  103. * @aqt: pointer to aqt1000 structure
  104. * @irq: irq number
  105. */
  106. void aqt_disable_irq(struct aqt1000 *aqt, int irq)
  107. {
  108. if (aqt)
  109. disable_irq(aqt_map_irq(aqt, irq));
  110. }
  111. EXPORT_SYMBOL(aqt_disable_irq);
  112. static irqreturn_t aqt_irq_thread(int irq, void *data)
  113. {
  114. int ret = 0;
  115. u8 sts[2];
  116. struct aqt1000 *aqt = data;
  117. int num_irq_regs = aqt->num_irq_regs;
  118. struct aqt1000_pdata *pdata;
  119. pdata = dev_get_platdata(aqt->dev);
  120. memset(sts, 0, sizeof(sts));
  121. ret = regmap_bulk_read(aqt->regmap, AQT1000_INTR_CTRL_INT_STATUS_2,
  122. sts, num_irq_regs);
  123. if (ret < 0) {
  124. dev_err(aqt->dev, "%s: Failed to read intr status: %d\n",
  125. __func__, ret);
  126. } else if (ret == 0) {
  127. while (gpio_get_value_cansleep(pdata->irq_gpio))
  128. handle_nested_irq(irq_find_mapping(aqt->virq, 0));
  129. }
  130. return IRQ_HANDLED;
  131. }
  132. static void aqt_irq_disable(struct irq_data *data)
  133. {
  134. }
  135. static void aqt_irq_enable(struct irq_data *data)
  136. {
  137. }
  138. static struct irq_chip aqt_irq_chip = {
  139. .name = "AQT",
  140. .irq_disable = aqt_irq_disable,
  141. .irq_enable = aqt_irq_enable,
  142. };
  143. static int aqt_irq_map(struct irq_domain *irqd, unsigned int virq,
  144. irq_hw_number_t hw)
  145. {
  146. struct aqt1000 *data = irqd->host_data;
  147. irq_set_chip_data(virq, data);
  148. irq_set_chip_and_handler(virq, &aqt_irq_chip, handle_simple_irq);
  149. irq_set_nested_thread(virq, 1);
  150. irq_set_noprobe(virq);
  151. return 0;
  152. }
  153. static const struct irq_domain_ops aqt_domain_ops = {
  154. .map = aqt_irq_map,
  155. .xlate = irq_domain_xlate_twocell,
  156. };
  157. /**
  158. * aqt_irq_init: Initializes IRQ module
  159. * @aqt: pointer to aqt1000 structure
  160. *
  161. * Returns 0 on success or error on failure
  162. */
  163. int aqt_irq_init(struct aqt1000 *aqt)
  164. {
  165. int i, ret;
  166. unsigned int flags = IRQF_ONESHOT;
  167. struct irq_data *irq_data;
  168. struct aqt1000_pdata *pdata;
  169. if (!aqt) {
  170. pr_err("%s: Null pointer handle\n", __func__);
  171. return -EINVAL;
  172. }
  173. if (!aqt->irq) {
  174. dev_dbg(aqt->dev, "%s: No interrupt specified\n", __func__);
  175. aqt->irq_base = 0;
  176. return 0;
  177. }
  178. pdata = dev_get_platdata(aqt->dev);
  179. if (!pdata) {
  180. dev_err(aqt->dev, "%s: Invalid platform data\n", __func__);
  181. return -EINVAL;
  182. }
  183. /* Select default if not defined in DT */
  184. flags = IRQF_TRIGGER_HIGH | IRQF_ONESHOT;
  185. if (pdata->irq_flags)
  186. flags = pdata->irq_flags;
  187. if (pdata->irq_gpio) {
  188. if (gpio_to_irq(pdata->irq_gpio) != aqt->irq) {
  189. dev_warn(aqt->dev, "%s: IRQ %d is not GPIO %d (%d)\n",
  190. __func__, aqt->irq, pdata->irq_gpio,
  191. gpio_to_irq(pdata->irq_gpio));
  192. aqt->irq = gpio_to_irq(pdata->irq_gpio);
  193. }
  194. ret = devm_gpio_request_one(aqt->dev, pdata->irq_gpio,
  195. GPIOF_IN, "AQT IRQ");
  196. if (ret) {
  197. dev_err(aqt->dev, "%s: Failed to request gpio %d\n",
  198. __func__, ret);
  199. pdata->irq_gpio = 0;
  200. return ret;
  201. }
  202. } else {
  203. dev_dbg(aqt->dev, "%s: irq_gpio is %d\n",
  204. __func__, pdata->irq_gpio);
  205. return 0;
  206. }
  207. irq_data = irq_get_irq_data(aqt->irq);
  208. if (!irq_data) {
  209. dev_err(aqt->dev, "%s: Invalid IRQ: %d\n",
  210. __func__, aqt->irq);
  211. return -EINVAL;
  212. }
  213. for (i = 0; i < aqt->num_irq_regs; i++) {
  214. regmap_write(aqt->regmap,
  215. (AQT1000_INTR_CTRL_INT_TYPE_2 + i), 0);
  216. }
  217. aqt->virq = irq_domain_add_linear(NULL, 1, &aqt_domain_ops, aqt);
  218. if (!aqt->virq) {
  219. dev_err(aqt->dev, "%s: Failed to add IRQ domain\n", __func__);
  220. ret = -EINVAL;
  221. goto err;
  222. }
  223. ret = regmap_add_irq_chip(aqt->regmap,
  224. irq_create_mapping(aqt->virq, 0),
  225. IRQF_ONESHOT, 0, &aqt_regmap_irq_chip,
  226. &aqt->irq_chip);
  227. if (ret) {
  228. dev_err(aqt->dev, "%s: Failed to add IRQs: %d\n",
  229. __func__, ret);
  230. goto err;
  231. }
  232. ret = request_threaded_irq(aqt->irq, NULL, aqt_irq_thread, flags,
  233. "aqt", aqt);
  234. if (ret) {
  235. dev_err(aqt->dev, "%s: failed to register irq: %d\n",
  236. __func__, ret);
  237. goto err_irq;
  238. }
  239. return 0;
  240. err_irq:
  241. regmap_del_irq_chip(irq_create_mapping(aqt->virq, 1), aqt->irq_chip);
  242. err:
  243. return ret;
  244. }
  245. EXPORT_SYMBOL(aqt_irq_init);
  246. /**
  247. * aqt_irq_exit: Uninitialize regmap IRQ and free IRQ resources
  248. * @aqt: pointer to aqt1000 structure
  249. *
  250. * Returns 0 on success or error on failure
  251. */
  252. int aqt_irq_exit(struct aqt1000 *aqt)
  253. {
  254. if (!aqt) {
  255. pr_err("%s: Null pointer handle\n", __func__);
  256. return -EINVAL;
  257. }
  258. regmap_del_irq_chip(irq_create_mapping(aqt->virq, 1), aqt->irq_chip);
  259. free_irq(aqt->irq, aqt);
  260. return 0;
  261. }
  262. EXPORT_SYMBOL(aqt_irq_exit);