shared_irq.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* shared_irq - Shared interrupt driver */
  2. /*
  3. * Copyright (c) 2015 Intel corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_SHARED_IRQ_H_
  8. #define ZEPHYR_INCLUDE_SHARED_IRQ_H_
  9. #include <autoconf.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. typedef int (*isr_t)(const struct device *dev);
  14. /* driver API definition */
  15. typedef int (*shared_irq_register_t)(const struct device *dev,
  16. isr_t isr_func,
  17. const struct device *isr_dev);
  18. typedef int (*shared_irq_enable_t)(const struct device *dev,
  19. const struct device *isr_dev);
  20. typedef int (*shared_irq_disable_t)(const struct device *dev,
  21. const struct device *isr_dev);
  22. struct shared_irq_driver_api {
  23. shared_irq_register_t isr_register;
  24. shared_irq_enable_t enable;
  25. shared_irq_disable_t disable;
  26. };
  27. /**
  28. * @brief Register a device ISR
  29. * @param dev Pointer to device structure for SHARED_IRQ driver instance.
  30. * @param isr_func Pointer to the ISR function for the device.
  31. * @param isr_dev Pointer to the device that will service the interrupt.
  32. */
  33. static inline int shared_irq_isr_register(const struct device *dev,
  34. isr_t isr_func,
  35. const struct device *isr_dev)
  36. {
  37. const struct shared_irq_driver_api *api =
  38. (const struct shared_irq_driver_api *)dev->api;
  39. return api->isr_register(dev, isr_func, isr_dev);
  40. }
  41. /**
  42. * @brief Enable ISR for device
  43. * @param dev Pointer to device structure for SHARED_IRQ driver instance.
  44. * @param isr_dev Pointer to the device that will service the interrupt.
  45. */
  46. static inline int shared_irq_enable(const struct device *dev,
  47. const struct device *isr_dev)
  48. {
  49. const struct shared_irq_driver_api *api =
  50. (const struct shared_irq_driver_api *)dev->api;
  51. return api->enable(dev, isr_dev);
  52. }
  53. /**
  54. * @brief Disable ISR for device
  55. * @param dev Pointer to device structure for SHARED_IRQ driver instance.
  56. * @param isr_dev Pointer to the device that will service the interrupt.
  57. */
  58. static inline int shared_irq_disable(const struct device *dev,
  59. const struct device *isr_dev)
  60. {
  61. const struct shared_irq_driver_api *api =
  62. (const struct shared_irq_driver_api *)dev->api;
  63. return api->disable(dev, isr_dev);
  64. }
  65. #ifdef __cplusplus
  66. }
  67. #endif
  68. #endif /* ZEPHYR_INCLUDE_SHARED_IRQ_H_ */