sw_isr_table.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Copyright (c) 2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Software-managed ISR table
  9. *
  10. * Data types for a software-managed ISR table, with a parameter per-ISR.
  11. */
  12. #ifndef ZEPHYR_INCLUDE_SW_ISR_TABLE_H_
  13. #define ZEPHYR_INCLUDE_SW_ISR_TABLE_H_
  14. #if !defined(_ASMLANGUAGE)
  15. #include <zephyr/types.h>
  16. #include <toolchain.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /*
  21. * Note the order: arg first, then ISR. This allows a table entry to be
  22. * loaded arg -> r0, isr -> r3 in _isr_wrapper with one ldmia instruction,
  23. * on ARM Cortex-M (Thumb2).
  24. */
  25. struct _isr_table_entry {
  26. const void *arg;
  27. void (*isr)(const void *);
  28. #ifdef CONFIG_TRACING_IRQ_PROFILER
  29. uint32_t irq_cnt;
  30. uint32_t max_irq_cycles;
  31. uint32_t irq_total_us;
  32. #endif
  33. };
  34. /* The software ISR table itself, an array of these structures indexed by the
  35. * irq line
  36. */
  37. extern struct _isr_table_entry _sw_isr_table[];
  38. /*
  39. * Data structure created in a special binary .intlist section for each
  40. * configured interrupt. gen_irq_tables.py pulls this out of the binary and
  41. * uses it to create the IRQ vector table and the _sw_isr_table.
  42. *
  43. * More discussion in include/linker/intlist.ld
  44. */
  45. struct _isr_list {
  46. /** IRQ line number */
  47. int32_t irq;
  48. /** Flags for this IRQ, see ISR_FLAG_* definitions */
  49. int32_t flags;
  50. /** ISR to call */
  51. void *func;
  52. /** Parameter for non-direct IRQs */
  53. const void *param;
  54. };
  55. /** This interrupt gets put directly in the vector table */
  56. #define ISR_FLAG_DIRECT BIT(0)
  57. #define _MK_ISR_NAME(x, y) __MK_ISR_NAME(x, y)
  58. #define __MK_ISR_NAME(x, y) __isr_ ## x ## _irq_ ## y
  59. /* Create an instance of struct _isr_list which gets put in the .intList
  60. * section. This gets consumed by gen_isr_tables.py which creates the vector
  61. * and/or SW ISR tables.
  62. */
  63. #ifndef __UVISION_VERSION
  64. #define Z_ISR_DECLARE(irq, flags, func, param) \
  65. static Z_DECL_ALIGN(struct _isr_list) Z_GENERIC_SECTION(.intList) \
  66. __used _MK_ISR_NAME(func, __COUNTER__) = \
  67. {irq, flags, (void *)&func, (const void *)param}
  68. #else
  69. #define Z_ISR_DECLARE(irq, flags, func, param) \
  70. _sw_isr_table[irq].arg = (void *)param; \
  71. _sw_isr_table[irq].isr = (void (*)(const void *))func;
  72. #endif
  73. #define IRQ_TABLE_SIZE (CONFIG_NUM_IRQS - CONFIG_GEN_IRQ_START_VECTOR)
  74. #ifdef CONFIG_DYNAMIC_INTERRUPTS
  75. void z_isr_install(unsigned int irq, void (*routine)(const void *),
  76. const void *param);
  77. #endif
  78. #ifdef __cplusplus
  79. }
  80. #endif
  81. #endif /* _ASMLANGUAGE */
  82. #endif /* ZEPHYR_INCLUDE_SW_ISR_TABLE_H_ */