irq_nextlevel.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * Copyright (c) 2017 Intel corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public interface for configuring interrupts
  9. */
  10. #ifndef ZEPHYR_INCLUDE_IRQ_NEXTLEVEL_H_
  11. #define ZEPHYR_INCLUDE_IRQ_NEXTLEVEL_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @cond INTERNAL_HIDDEN
  17. *
  18. * These are for internal use only, so skip these in
  19. * public documentation.
  20. */
  21. typedef void (*irq_next_level_func_t)(const struct device *dev,
  22. unsigned int irq);
  23. typedef unsigned int (*irq_next_level_get_state_t)(const struct device *dev);
  24. typedef void (*irq_next_level_priority_t)(const struct device *dev,
  25. unsigned int irq, unsigned int prio,
  26. uint32_t flags);
  27. typedef int (*irq_next_level_get_line_state_t)(const struct device *dev,
  28. unsigned int irq);
  29. struct irq_next_level_api {
  30. irq_next_level_func_t intr_enable;
  31. irq_next_level_func_t intr_disable;
  32. irq_next_level_get_state_t intr_get_state;
  33. irq_next_level_priority_t intr_set_priority;
  34. irq_next_level_get_line_state_t intr_get_line_state;
  35. };
  36. /**
  37. * @endcond
  38. */
  39. /**
  40. * @brief Enable an IRQ in the next level.
  41. *
  42. * This routine enables interrupts present in the interrupt controller.
  43. *
  44. * @param dev Pointer to the device structure for the driver instance.
  45. * @param irq IRQ to be enabled.
  46. *
  47. * @return N/A
  48. */
  49. static inline void irq_enable_next_level(const struct device *dev,
  50. uint32_t irq)
  51. {
  52. const struct irq_next_level_api *api =
  53. (const struct irq_next_level_api *)dev->api;
  54. api->intr_enable(dev, irq);
  55. }
  56. /**
  57. * @brief Disable an IRQ in the next level.
  58. *
  59. * This routine disables interrupts present in the interrupt controller.
  60. *
  61. * @param dev Pointer to the device structure for the driver instance.
  62. * @param irq IRQ to be disabled.
  63. *
  64. * @return N/A
  65. */
  66. static inline void irq_disable_next_level(const struct device *dev,
  67. uint32_t irq)
  68. {
  69. const struct irq_next_level_api *api =
  70. (const struct irq_next_level_api *)dev->api;
  71. api->intr_disable(dev, irq);
  72. }
  73. /**
  74. * @brief Get IRQ enable state.
  75. *
  76. * This routine indicates if any interrupts are enabled in the interrupt
  77. * controller.
  78. *
  79. * @param dev Pointer to the device structure for the driver instance.
  80. *
  81. * @return interrupt enable state, true or false
  82. */
  83. static inline unsigned int irq_is_enabled_next_level(const struct device *dev)
  84. {
  85. const struct irq_next_level_api *api =
  86. (const struct irq_next_level_api *)dev->api;
  87. return api->intr_get_state(dev);
  88. }
  89. /**
  90. * @brief Set IRQ priority.
  91. *
  92. * This routine indicates if any interrupts are enabled in the interrupt
  93. * controller.
  94. *
  95. * @param dev Pointer to the device structure for the driver instance.
  96. * @param irq IRQ to be disabled.
  97. * @param prio priority for irq in the interrupt controller.
  98. * @param flags controller specific flags.
  99. *
  100. * @return N/A
  101. */
  102. static inline void irq_set_priority_next_level(const struct device *dev,
  103. uint32_t irq,
  104. uint32_t prio, uint32_t flags)
  105. {
  106. const struct irq_next_level_api *api =
  107. (const struct irq_next_level_api *)dev->api;
  108. if (api->intr_set_priority)
  109. api->intr_set_priority(dev, irq, prio, flags);
  110. }
  111. /**
  112. * @brief Get IRQ line enable state.
  113. *
  114. * Query if a particular IRQ line is enabled.
  115. *
  116. * @param dev Pointer to the device structure for the driver instance.
  117. * @param irq IRQ line to be queried.
  118. *
  119. * @return interrupt enable state, true or false
  120. */
  121. static inline unsigned int irq_line_is_enabled_next_level(const struct device *dev,
  122. unsigned int irq)
  123. {
  124. const struct irq_next_level_api *api =
  125. (const struct irq_next_level_api *)dev->api;
  126. return api->intr_get_line_state(dev, irq);
  127. }
  128. #ifdef __cplusplus
  129. }
  130. #endif
  131. #endif /* ZEPHYR_INCLUDE_IRQ_NEXTLEVEL_H_ */