CONFIG_GEN_IRQ_VECTOR_TABLE¶
Generate an interrupt vector table
Type: bool
Help¶
This option controls whether a platform using gen_isr_tables
needs an interrupt vector table created. Only disable this if the
platform does not use a vector table at all, or requires the vector
table to be in a format that is not an array of function pointers
indexed by IRQ line. In the latter case, the vector table must be
supplied by the application or architecture code.
Direct dependencies¶
SOC_ESP32C3
|| SOC_ESP32S2
|| (CPU_AARCH32_CORTEX_A
&& ARM
) || (CPU_CORTEX_R
&& ARM
) || ((CPU_CORTEX_A
|| CPU_AARCH64_CORTEX_R
) && ARM64
) || MIPS
|| NIOS2
|| RISCV
|| SPARC
|| GEN_ISR_TABLES
(Includes any dependencies from ifs and menus.)
Defaults¶
n
n
n
n
n
n
n
n
n
y
Kconfig definitions¶
At soc/riscv/esp32c3/Kconfig.defconfig:39
Included via Kconfig:8
→ Kconfig.zephyr:27
Menu path: (Top)
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on SOC_ESP32C3
At soc/xtensa/esp32s2/Kconfig.defconfig:14
Included via Kconfig:8
→ Kconfig.zephyr:27
Menu path: (Top)
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on SOC_ESP32S2
At arch/arm/core/aarch32/cortex_a_r/Kconfig:61
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
→ arch/arm/Kconfig:57
→ arch/arm/core/aarch32/Kconfig:306
Menu path: (Top) → ARM Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on CPU_AARCH32_CORTEX_A && ARM
At arch/arm/core/aarch32/cortex_a_r/Kconfig:145
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
→ arch/arm/Kconfig:57
→ arch/arm/core/aarch32/Kconfig:306
Menu path: (Top) → ARM Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on CPU_CORTEX_R && ARM
At arch/arm64/core/Kconfig:151
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
→ arch/arm64/Kconfig:32
Menu path: (Top) → ARM64 Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on (CPU_CORTEX_A || CPU_AARCH64_CORTEX_R) && ARM64
At arch/mips/Kconfig:19
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
Menu path: (Top) → MIPS Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on MIPS
At arch/nios2/Kconfig:28
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
Menu path: (Top) → Nios II Options → Nios II Family Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on NIOS2
At arch/riscv/Kconfig:128
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
Menu path: (Top) → RISCV Options → RISCV Processor Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on RISCV
At arch/sparc/Kconfig:19
Included via Kconfig:8
→ Kconfig.zephyr:39
→ arch/Kconfig:12
Menu path: (Top) → SPARC Options
config GEN_IRQ_VECTOR_TABLE
bool
default n
depends on SPARC
At arch/Kconfig:389
Included via Kconfig:8
→ Kconfig.zephyr:39
Menu path: (Top) → General Architecture Options → Interrupt Configuration → Use generated IRQ tables
config GEN_IRQ_VECTOR_TABLE
bool "Generate an interrupt vector table"
default y
depends on GEN_ISR_TABLES
help
This option controls whether a platform using gen_isr_tables
needs an interrupt vector table created. Only disable this if the
platform does not use a vector table at all, or requires the vector
table to be in a format that is not an array of function pointers
indexed by IRQ line. In the latter case, the vector table must be
supplied by the application or architecture code.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)