2021-08-21 07:12:07 +08:00
|
|
|
# Espressif's Interrupt Allocator driver for Xtensa SoCs
|
2021-04-13 03:13:54 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-08-21 07:12:07 +08:00
|
|
|
config INTC_ESP32
|
|
|
|
bool "Interrupt allocator for Xtensa-based Espressif SoCs"
|
2024-06-19 18:40:06 +08:00
|
|
|
default y
|
|
|
|
depends on SOC_FAMILY_ESPRESSIF_ESP32
|
2024-07-25 00:52:05 +08:00
|
|
|
depends on !SOC_SERIES_ESP32C2 && !SOC_SERIES_ESP32C3 && !SOC_SERIES_ESP32C6
|
2021-08-21 07:12:07 +08:00
|
|
|
help
|
|
|
|
Enable custom interrupt allocator for Espressif SoCs based on Xtensa
|
|
|
|
architecture.
|
|
|
|
|
2021-04-13 03:13:54 +08:00
|
|
|
config INTC_ESP32_DECISIONS_LOG
|
2022-03-09 19:05:12 +08:00
|
|
|
bool "Espressif's interrupt allocator logging"
|
2021-08-21 07:12:07 +08:00
|
|
|
depends on INTC_ESP32
|
2021-04-13 03:13:54 +08:00
|
|
|
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.
|