1# Espressif's Interrupt Allocator driver for Xtensa SoCs
2
3# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
4# SPDX-License-Identifier: Apache-2.0
5
6config INTC_ESP32
7	bool "Interrupt allocator for Espressif SoCs"
8	default y if !SOC_ESP32C6_LPCORE
9	depends on SOC_FAMILY_ESPRESSIF_ESP32
10	help
11	  Enable custom interrupt allocator for Espressif SoCs based on Xtensa
12	  architecture.
13
14config INTC_ESP32_DECISIONS_LOG
15	bool "Espressif's interrupt allocator logging"
16	depends on INTC_ESP32
17	select LOG
18	help
19	  Enable this option to visualize information on decisions made by the
20	  interrupt allocator. This has no impact on the interrupt allocator usage
21	  but may be valuable for debugging purposes. When enabled, messages are
22	  print to the serial console.
23