1# Copyright 2022-2024 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_RW6XX 5 6config ROM_START_OFFSET 7 default 0x400 if BOOTLOADER_MCUBOOT 8 default 0x1300 if NXP_RW6XX_BOOT_HEADER 9 10config NUM_IRQS 11 default 129 12 13config SYS_CLOCK_HW_CYCLES_PER_SEC 14 default 1000000 if MCUX_OS_TIMER 15 default 260000000 if CORTEX_M_SYSTICK 16 17config NXP_MONOLITHIC_NBU 18 default y if (BT || IEEE802154) 19 20if BT 21 22config HCI_NXP_ENABLE_AUTO_SLEEP 23 default y 24 25config HCI_NXP_SET_CAL_DATA 26 default y 27 28config MAIN_STACK_SIZE 29 default 2560 30 31config BT_LONG_WQ_STACK_SIZE 32 default 5120 if (WIFI || IEEE802154) 33 default 2560 34 35config SYSTEM_WORKQUEUE_STACK_SIZE 36 default 2048 37 38if SHELL 39 40config SHELL_STACK_SIZE 41 default 4096 42 43endif # SHELL 44 45endif # BT 46 47config NXP_MONOLITHIC_WIFI 48 default y if WIFI 49 50config NXP_FW_LOADER 51 default y if (BT || WIFI || IEEE802154) 52 53config NXP_RF_IMU 54 default y if (BT || WIFI || IEEE802154) 55 56if WIFI 57orsource "Kconfig.defconfig.wifi" 58endif # WIFI 59 60endif # SOC_SERIES_RW6XX 61