/Zephyr-latest/include/zephyr/arch/arm/ |
D | irq.h | 96 #define _CHECK_PRIO(priority_p, flags_p) \ 97 BUILD_ASSERT(((flags_p & IRQ_ZERO_LATENCY) && \ 103 #define _CHECK_PRIO(priority_p, flags_p) 116 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ 118 BUILD_ASSERT(IS_ENABLED(CONFIG_ZERO_LATENCY_IRQS) || !(flags_p & IRQ_ZERO_LATENCY), \ 120 _CHECK_PRIO(priority_p, flags_p) \ 122 z_arm_irq_priority_set(irq_p, priority_p, flags_p); \ 125 #define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ 127 BUILD_ASSERT(IS_ENABLED(CONFIG_ZERO_LATENCY_IRQS) || !(flags_p & IRQ_ZERO_LATENCY), \ 129 _CHECK_PRIO(priority_p, flags_p) \ [all …]
|
/Zephyr-latest/boards/native/common/irq/ |
D | board_irq.h | 32 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 35 posix_irq_priority_set(irq_p, priority_p, flags_p); \ 44 #define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ argument 48 posix_irq_priority_set(irq_p, priority_p, flags_p); \
|
/Zephyr-latest/include/zephyr/arch/x86/intel64/ |
D | arch.h | 78 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 82 isr_param_p, flags_p) 87 isr_p, isr_param_p, flags_p) \ argument 91 isr_param_p, flags_p)
|
/Zephyr-latest/include/zephyr/ |
D | irq.h | 48 #define IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 49 ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) 136 #define IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ argument 137 ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p)
|
/Zephyr-latest/include/zephyr/arch/arc/v2/ |
D | irq.h | 51 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 54 z_irq_priority_set(irq_p, priority_p, flags_p); \ 78 #define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ argument 87 z_irq_priority_set(irq_p, priority_p, flags_p); \
|
/Zephyr-latest/include/zephyr/arch/riscv/ |
D | irq.h | 71 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 75 z_riscv_irq_priority_set(irq_p, priority_p, flags_p); \ 78 #define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ argument 82 z_riscv_irq_priority_set(irq_p, priority_p, flags_p); \
|
/Zephyr-latest/include/zephyr/arch/x86/ia32/ |
D | arch.h | 198 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 223 (flags_p)); \ 229 isr_p, isr_param_p, flags_p) \ argument 230 ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) 242 #define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \ argument 246 (flags_p)); \
|
/Zephyr-latest/include/zephyr/arch/arm64/ |
D | irq.h | 85 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ 88 z_arm64_irq_priority_set(irq_p, priority_p, flags_p); \
|
/Zephyr-latest/include/zephyr/arch/xtensa/ |
D | arch.h | 123 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument 125 Z_ISR_DECLARE(irq_p, flags_p, isr_p, isr_param_p); \
|
/Zephyr-latest/include/zephyr/arch/mips/ |
D | arch.h | 58 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument
|
/Zephyr-latest/include/zephyr/arch/sparc/ |
D | arch.h | 58 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument
|
/Zephyr-latest/include/zephyr/arch/nios2/ |
D | arch.h | 43 #define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ argument
|
/Zephyr-latest/include/zephyr/drivers/pcie/ |
D | pcie.h | 572 isr_p, isr_param_p, flags_p) \ argument 574 isr_p, isr_param_p, flags_p)
|