mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 13:23:22 +00:00
Update interrupt allocator to use the same driver for both Xtensa and RISCV devices. Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com> Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
23 lines
743 B
Plaintext
23 lines
743 B
Plaintext
# Espressif's Interrupt Allocator driver for Xtensa SoCs
|
|
|
|
# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config INTC_ESP32
|
|
bool "Interrupt allocator for Espressif SoCs"
|
|
default y
|
|
depends on SOC_FAMILY_ESPRESSIF_ESP32
|
|
help
|
|
Enable custom interrupt allocator for Espressif SoCs based on Xtensa
|
|
architecture.
|
|
|
|
config INTC_ESP32_DECISIONS_LOG
|
|
bool "Espressif's interrupt allocator logging"
|
|
depends on INTC_ESP32
|
|
select LOG
|
|
help
|
|
Enable this option to visualize information on decisions made by the
|
|
interrupt allocator. This has no impact on the interrupt allocator usage
|
|
but may be valuable for debugging purposes. When enabled, messages are
|
|
print to the serial console.
|