wcd-irq.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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/of.h>
  16. #include <linux/of_irq.h>
  17. #include <linux/slab.h>
  18. #include <linux/irqdomain.h>
  19. #include <linux/regmap.h>
  20. #include <asoc/wcd-irq.h>
  21. static int wcd_map_irq(struct wcd_irq_info *irq_info, int irq)
  22. {
  23. if (!irq_info) {
  24. pr_err("%s: Null IRQ handle\n", __func__);
  25. return -EINVAL;
  26. }
  27. return regmap_irq_get_virq(irq_info->irq_chip, irq);
  28. }
  29. /**
  30. * wcd_request_irq: Request a thread handler for the given IRQ
  31. * @irq_info: pointer to IRQ info structure
  32. * @irq: irq number
  33. * @name: name for the IRQ thread
  34. * @handler: irq handler
  35. * @data: data pointer
  36. *
  37. * Returns 0 on success or error on failure
  38. */
  39. int wcd_request_irq(struct wcd_irq_info *irq_info, int irq, const char *name,
  40. irq_handler_t handler, void *data)
  41. {
  42. if (!irq_info) {
  43. pr_err("%s: Null IRQ handle\n", __func__);
  44. return -EINVAL;
  45. }
  46. irq = wcd_map_irq(irq_info, irq);
  47. if (irq < 0)
  48. return irq;
  49. return request_threaded_irq(irq, NULL, handler,
  50. IRQF_ONESHOT | IRQF_TRIGGER_RISING,
  51. name, data);
  52. }
  53. EXPORT_SYMBOL(wcd_request_irq);
  54. /**
  55. * wcd_free_irq: Free the IRQ resources allocated during request_irq
  56. * @irq_info: pointer to IRQ info structure
  57. * @irq: irq number
  58. * @data: data pointer
  59. */
  60. void wcd_free_irq(struct wcd_irq_info *irq_info, int irq, void *data)
  61. {
  62. if (!irq_info) {
  63. pr_err("%s: Null IRQ handle\n", __func__);
  64. return;
  65. }
  66. irq = wcd_map_irq(irq_info, irq);
  67. if (irq < 0)
  68. return;
  69. free_irq(irq, data);
  70. }
  71. EXPORT_SYMBOL(wcd_free_irq);
  72. /**
  73. * wcd_enable_irq: Enable the given IRQ
  74. * @irq_info: pointer to IRQ info structure
  75. * @irq: irq number
  76. */
  77. void wcd_enable_irq(struct wcd_irq_info *irq_info, int irq)
  78. {
  79. if (!irq_info)
  80. pr_err("%s: Null IRQ handle\n", __func__);
  81. else
  82. enable_irq(wcd_map_irq(irq_info, irq));
  83. }
  84. EXPORT_SYMBOL(wcd_enable_irq);
  85. /**
  86. * wcd_disable_irq: Disable the given IRQ
  87. * @irq_info: pointer to IRQ info structure
  88. * @irq: irq number
  89. */
  90. void wcd_disable_irq(struct wcd_irq_info *irq_info, int irq)
  91. {
  92. if (!irq_info)
  93. pr_err("%s: Null IRQ handle\n", __func__);
  94. else
  95. disable_irq_nosync(wcd_map_irq(irq_info, irq));
  96. }
  97. EXPORT_SYMBOL(wcd_disable_irq);
  98. static void wcd_irq_chip_disable(struct irq_data *data)
  99. {
  100. }
  101. static void wcd_irq_chip_enable(struct irq_data *data)
  102. {
  103. }
  104. static struct irq_chip wcd_irq_chip = {
  105. .name = NULL,
  106. .irq_disable = wcd_irq_chip_disable,
  107. .irq_enable = wcd_irq_chip_enable,
  108. };
  109. static struct lock_class_key wcd_irq_lock_class;
  110. static int wcd_irq_chip_map(struct irq_domain *irqd, unsigned int virq,
  111. irq_hw_number_t hw)
  112. {
  113. irq_set_chip_and_handler(virq, &wcd_irq_chip, handle_simple_irq);
  114. irq_set_lockdep_class(virq, &wcd_irq_lock_class);
  115. irq_set_nested_thread(virq, 1);
  116. irq_set_noprobe(virq);
  117. return 0;
  118. }
  119. static const struct irq_domain_ops wcd_domain_ops = {
  120. .map = wcd_irq_chip_map,
  121. };
  122. /**
  123. * wcd_irq_init: Initializes IRQ module
  124. * @irq_info: pointer to IRQ info structure
  125. *
  126. * Returns 0 on success or error on failure
  127. */
  128. int wcd_irq_init(struct wcd_irq_info *irq_info, struct irq_domain **virq)
  129. {
  130. int ret = 0;
  131. if (!irq_info) {
  132. pr_err("%s: Null IRQ handle\n", __func__);
  133. return -EINVAL;
  134. }
  135. wcd_irq_chip.name = irq_info->codec_name;
  136. *virq = irq_domain_add_linear(NULL, 1, &wcd_domain_ops, NULL);
  137. if (!(*virq)) {
  138. pr_err("%s: Failed to add IRQ domain\n", __func__);
  139. return -EINVAL;
  140. }
  141. ret = devm_regmap_add_irq_chip(irq_info->dev, irq_info->regmap,
  142. irq_create_mapping(*virq, 0),
  143. IRQF_ONESHOT, 0, irq_info->wcd_regmap_irq_chip,
  144. &irq_info->irq_chip);
  145. if (ret)
  146. pr_err("%s: Failed to add IRQs: %d\n",
  147. __func__, ret);
  148. return ret;
  149. }
  150. EXPORT_SYMBOL(wcd_irq_init);
  151. /**
  152. * wcd_irq_exit: Uninitialize regmap IRQ and free IRQ resources
  153. * @irq_info: pointer to IRQ info structure
  154. *
  155. * Returns 0 on success or error on failure
  156. */
  157. int wcd_irq_exit(struct wcd_irq_info *irq_info, struct irq_domain *virq)
  158. {
  159. if (!irq_info) {
  160. pr_err("%s: Null pointer handle\n", __func__);
  161. return -EINVAL;
  162. }
  163. regmap_del_irq_chip(irq_find_mapping(virq, 0), irq_info->irq_chip);
  164. return 0;
  165. }
  166. EXPORT_SYMBOL(wcd_irq_exit);