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 1280 30 31endif # BT 32 33config NXP_MONOLITHIC_WIFI 34 default y if WIFI 35 36config NXP_FW_LOADER 37 default y if (BT || WIFI || IEEE802154) 38 39config NXP_RF_IMU 40 default y if (BT || WIFI || IEEE802154) 41 42endif # SOC_SERIES_RW6XX 43