wcd-irq.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. #ifndef __WCD_IRQ_H_
  13. #define __WCD_IRQ_H_
  14. #include <linux/types.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/regmap.h>
  17. struct wcd_irq_info {
  18. struct regmap_irq_chip *wcd_regmap_irq_chip;
  19. char *codec_name;
  20. struct regmap *regmap;
  21. struct regmap_irq_chip_data *irq_chip;
  22. struct device *dev;
  23. };
  24. #if IS_ENABLED(CONFIG_WCD9XXX_CODEC_CORE)
  25. int wcd_irq_init(struct wcd_irq_info *irq_info, struct irq_domain **virq);
  26. int wcd_irq_exit(struct wcd_irq_info *irq_info, struct irq_domain *virq);
  27. int wcd_request_irq(struct wcd_irq_info *irq_info, int irq, const char *name,
  28. irq_handler_t handler, void *data);
  29. void wcd_free_irq(struct wcd_irq_info *irq_info, int irq, void *data);
  30. void wcd_enable_irq(struct wcd_irq_info *irq_info, int irq);
  31. void wcd_disable_irq(struct wcd_irq_info *irq_info, int irq);
  32. #else
  33. static inline int wcd_irq_init(struct wcd_irq_info *irq_info,
  34. struct irq_domain **virq)
  35. {
  36. return 0;
  37. };
  38. static inline int wcd_irq_exit(struct wcd_irq_info *irq_info,
  39. struct irq_domain *virq)
  40. {
  41. return 0;
  42. };
  43. static inline int wcd_request_irq(struct wcd_irq_info *irq,
  44. int irq, const char *name,
  45. irq_handler_t handler, void *data)
  46. {
  47. return 0;
  48. };
  49. static inline void wcd_free_irq(struct wcd_irq_info *irq, int irq, void *data);
  50. {
  51. };
  52. static inline void wcd_enable_irq(struct wcd_irq_info *irq, int irq);
  53. {
  54. };
  55. static inline void wcd_disable_irq(struct wcd_irq_info *irq, int irq);
  56. {
  57. };
  58. #endif
  59. #endif /* __WCD_IRQ_H_ */