Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
irq.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2013-2014 Wind River Systems, Inc.
3 * Copyright (c) 2019 Nordic Semiconductor ASA.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
16#ifndef ZEPHYR_INCLUDE_ARCH_ARM_IRQ_H_
17#define ZEPHYR_INCLUDE_ARCH_ARM_IRQ_H_
18
19#include <zephyr/sw_isr_table.h>
20#include <stdbool.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#ifdef _ASMLANGUAGE
27GTEXT(z_arm_int_exit);
28GTEXT(arch_irq_enable)
31#if defined(CONFIG_ARM_CUSTOM_INTERRUPT_CONTROLLER)
32GTEXT(z_soc_irq_get_active)
33GTEXT(z_soc_irq_eoi)
34#endif /* CONFIG_ARM_CUSTOM_INTERRUPT_CONTROLLER */
35#else
36
37#if !defined(CONFIG_ARM_CUSTOM_INTERRUPT_CONTROLLER)
38
39extern void arch_irq_enable(unsigned int irq);
40extern void arch_irq_disable(unsigned int irq);
41extern int arch_irq_is_enabled(unsigned int irq);
42
43/* internal routine documented in C file, needed by IRQ_CONNECT() macro */
44extern void z_arm_irq_priority_set(unsigned int irq, unsigned int prio,
46
47#else
48
49/*
50 * When a custom interrupt controller is specified, map the architecture
51 * interrupt control functions to the SoC layer interrupt control functions.
52 */
53
54void z_soc_irq_init(void);
55void z_soc_irq_enable(unsigned int irq);
56void z_soc_irq_disable(unsigned int irq);
57int z_soc_irq_is_enabled(unsigned int irq);
58
59void z_soc_irq_priority_set(
60 unsigned int irq, unsigned int prio, unsigned int flags);
61
62unsigned int z_soc_irq_get_active(void);
63void z_soc_irq_eoi(unsigned int irq);
64
65#define arch_irq_enable(irq) z_soc_irq_enable(irq)
66#define arch_irq_disable(irq) z_soc_irq_disable(irq)
67#define arch_irq_is_enabled(irq) z_soc_irq_is_enabled(irq)
68
69#define z_arm_irq_priority_set(irq, prio, flags) \
70 z_soc_irq_priority_set(irq, prio, flags)
71
72#endif /* !CONFIG_ARM_CUSTOM_INTERRUPT_CONTROLLER */
73
74extern void z_arm_int_exit(void);
75
76extern void z_arm_interrupt_init(void);
77
78/* Flags for use with IRQ_CONNECT() */
86#define IRQ_ZERO_LATENCY BIT(0)
87
88#ifdef CONFIG_CPU_CORTEX_M
89
90#if defined(CONFIG_ZERO_LATENCY_LEVELS)
91#define ZERO_LATENCY_LEVELS CONFIG_ZERO_LATENCY_LEVELS
92#else
93#define ZERO_LATENCY_LEVELS 1
94#endif
95
96#define _CHECK_PRIO(priority_p, flags_p) \
97 BUILD_ASSERT(((flags_p & IRQ_ZERO_LATENCY) && \
98 ((ZERO_LATENCY_LEVELS == 1) || \
99 (priority_p < ZERO_LATENCY_LEVELS))) || \
100 (priority_p <= IRQ_PRIO_LOWEST), \
101 "Invalid interrupt priority. Values must not exceed IRQ_PRIO_LOWEST");
102#else
103#define _CHECK_PRIO(priority_p, flags_p)
104#endif
105
106/* All arguments must be computable by the compiler at build time.
107 *
108 * Z_ISR_DECLARE will populate the .intList section with the interrupt's
109 * parameters, which will then be used by gen_irq_tables.py to create
110 * the vector table and the software ISR table. This is all done at
111 * build-time.
112 *
113 * We additionally set the priority in the interrupt controller at
114 * runtime.
115 */
116#define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \
117{ \
118 BUILD_ASSERT(IS_ENABLED(CONFIG_ZERO_LATENCY_IRQS) || !(flags_p & IRQ_ZERO_LATENCY), \
119 "ZLI interrupt registered but feature is disabled"); \
120 _CHECK_PRIO(priority_p, flags_p) \
121 Z_ISR_DECLARE(irq_p, 0, isr_p, isr_param_p); \
122 z_arm_irq_priority_set(irq_p, priority_p, flags_p); \
123}
124
125#define ARCH_IRQ_DIRECT_CONNECT(irq_p, priority_p, isr_p, flags_p) \
126{ \
127 BUILD_ASSERT(IS_ENABLED(CONFIG_ZERO_LATENCY_IRQS) || !(flags_p & IRQ_ZERO_LATENCY), \
128 "ZLI interrupt registered but feature is disabled"); \
129 _CHECK_PRIO(priority_p, flags_p) \
130 Z_ISR_DECLARE_DIRECT(irq_p, ISR_FLAG_DIRECT, isr_p); \
131 z_arm_irq_priority_set(irq_p, priority_p, flags_p); \
132}
133
134#ifdef CONFIG_PM
135extern void _arch_isr_direct_pm(void);
136#define ARCH_ISR_DIRECT_PM() _arch_isr_direct_pm()
137#else
138#define ARCH_ISR_DIRECT_PM() do { } while (false)
139#endif
140
141#define ARCH_ISR_DIRECT_HEADER() arch_isr_direct_header()
142#define ARCH_ISR_DIRECT_FOOTER(swap) arch_isr_direct_footer(swap)
143
144/* arch/arm/core/exc_exit.S */
145extern void z_arm_int_exit(void);
146
147#ifdef CONFIG_TRACING_ISR
148extern void sys_trace_isr_enter(void);
149extern void sys_trace_isr_exit(void);
150#endif
151
152static inline void arch_isr_direct_header(void)
153{
154#ifdef CONFIG_TRACING_ISR
156#endif
157}
158
159static inline void arch_isr_direct_footer(int maybe_swap)
160{
161#ifdef CONFIG_TRACING_ISR
163#endif
164 if (maybe_swap != 0) {
165 z_arm_int_exit();
166 }
167}
168
169#define ARCH_ISR_DIRECT_DECLARE(name) \
170 static inline int name##_body(void); \
171 _Pragma("GCC diagnostic push") \
172 _Pragma("GCC diagnostic ignored \"-Wattributes\"") \
173 __attribute__ ((interrupt ("IRQ"))) void name(void) \
174 { \
175 int check_reschedule; \
176 ISR_DIRECT_HEADER(); \
177 check_reschedule = name##_body(); \
178 ISR_DIRECT_FOOTER(check_reschedule); \
179 } \
180 _Pragma("GCC diagnostic pop") \
181 static inline int name##_body(void)
182
183#if defined(CONFIG_DYNAMIC_DIRECT_INTERRUPTS)
184
185extern void z_arm_irq_direct_dynamic_dispatch_reschedule(void);
186extern void z_arm_irq_direct_dynamic_dispatch_no_reschedule(void);
187
234#define ARM_IRQ_DIRECT_DYNAMIC_CONNECT(irq_p, priority_p, flags_p, resch) \
235 IRQ_DIRECT_CONNECT(irq_p, priority_p, \
236 _CONCAT(z_arm_irq_direct_dynamic_dispatch_, resch), flags_p)
237
238#endif /* CONFIG_DYNAMIC_DIRECT_INTERRUPTS */
239
240#if defined(CONFIG_ARM_SECURE_FIRMWARE)
241/* Architecture-specific definition for the target security
242 * state of an NVIC IRQ line.
243 */
244typedef enum {
245 IRQ_TARGET_STATE_SECURE = 0,
246 IRQ_TARGET_STATE_NON_SECURE
247} irq_target_state_t;
248
249#endif /* CONFIG_ARM_SECURE_FIRMWARE */
250
251#endif /* _ASMLANGUAGE */
252
253#ifdef __cplusplus
254}
255#endif
256
257#endif /* ZEPHYR_INCLUDE_ARCH_ARM_IRQ_H_ */
static void arch_isr_direct_header(void)
Definition: irq.h:91
static void arch_isr_direct_footer(int maybe_swap)
Definition: irq.h:98
#define arch_irq_disable(irq)
Definition: irq.h:107
#define arch_irq_enable(irq)
Definition: irq.h:106
#define arch_irq_is_enabled(irq)
Definition: irq.h:109
void sys_trace_isr_enter(void)
Called when entering an ISR.
void sys_trace_isr_exit(void)
Called when exiting an ISR.
flags
Definition: parser.h:96
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
Software-managed ISR table.