1# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
2# SPDX-License-Identifier: Apache-2.0
3
4config INTC_ESP32C3
5	bool "ESP32C3 interrupt controller driver"
6	depends on SOC_SERIES_ESP32C3
7	default y
8	help
9	  Enables the esp32c3 interrupt controller driver to handle ISR
10	  management at SoC level.
11
12config INTC_ESP32C3_DECISIONS_LOG
13	bool "Espressif's interrupt allocator logging"
14	depends on INTC_ESP32C3
15	select LOG
16	help
17	  Enable this option to visualize information on decisions made by the
18	  interrupt allocator. This has no impact on the interrupt allocator usage
19	  but may be valuable for debugging purposes. When enabled, messages are
20	  print to the serial console.
21