1# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
2# SPDX-License-Identifier: Apache-2.0
3
4config SOC_SERIES_ESP32C6
5	select RISCV
6	select RISCV_SOC_HAS_GP_RELATIVE_ADDRESSING
7	select DYNAMIC_INTERRUPTS
8	select CLOCK_CONTROL
9	select PINCTRL
10	select RISCV_ISA_RV32I
11	select RISCV_ISA_EXT_A
12	select RISCV_ISA_EXT_M
13	select RISCV_ISA_EXT_C
14	select RISCV_ISA_EXT_ZICSR
15	select HAS_ESPRESSIF_HAL
16	select HAS_PM
17	select HAS_POWEROFF
18
19if SOC_SERIES_ESP32C6
20
21config MAC_BB_PD
22	bool "Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled"
23	depends on SOC_SERIES_ESP32C6 && TICKLESS_KERNEL
24	help
25	  If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered
26	  down when PHY is disabled. Enabling this setting reduces power consumption
27	  by a small amount but increases RAM use by approximately 4 KB(Wi-Fi only),
28	  2 KB(Bluetooth only) or 5.3 KB(Wi-Fi + Bluetooth).
29
30endif # SOC_SERIES_ESP32C6
31