aqt1000-irq.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 __AQT1000_IRQ_H_
  13. #define __AQT1000_IRQ_H_
  14. #include <linux/types.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/regmap.h>
  17. enum {
  18. /* INTR_CTRL_INT_MASK_2 */
  19. AQT1000_IRQ_MBHC_BUTTON_RELEASE_DET = 0,
  20. AQT1000_IRQ_MBHC_BUTTON_PRESS_DET,
  21. AQT1000_IRQ_MBHC_ELECT_INS_REM_DET,
  22. AQT1000_IRQ_MBHC_ELECT_INS_REM_LEG_DET,
  23. AQT1000_IRQ_MBHC_SW_DET,
  24. AQT1000_IRQ_HPH_PA_OCPL_FAULT,
  25. AQT1000_IRQ_HPH_PA_OCPR_FAULT,
  26. AQT1000_IRQ_HPH_PA_CNPL_COMPLETE,
  27. /* INTR_CTRL_INT_MASK_3 */
  28. AQT1000_IRQ_HPH_PA_CNPR_COMPLETE,
  29. AQT1000_CDC_HPHL_SURGE,
  30. AQT1000_CDC_HPHR_SURGE,
  31. AQT1000_NUM_IRQS,
  32. };
  33. int aqt_request_irq(struct aqt1000 *aqt, int irq, const char *name,
  34. irq_handler_t handler, void *data);
  35. void aqt_free_irq(struct aqt1000 *aqt, int irq, void *data);
  36. int aqt_irq_init(struct aqt1000 *aqt);
  37. int aqt_irq_exit(struct aqt1000 *aqt);
  38. void aqt_enable_irq(struct aqt1000 *aqt, int irq);
  39. void aqt_disable_irq(struct aqt1000 *aqt, int irq);
  40. #endif /* __AQT1000_IRQ_H_ */