1# Copyright 2024 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_MCXN 5 6config MFD 7 default y if DT_HAS_NXP_LP_FLEXCOMM_ENABLED 8 9config NUM_IRQS 10 default 155 11 12config ROM_START_OFFSET 13 default 0x400 if BOOTLOADER_MCUBOOT 14 15config ZTEST_NO_YIELD 16 default y if (PM && ZTEST) 17 18config MCUX_LPTMR_TIMER 19 default n if (DT_HAS_NXP_OS_TIMER_ENABLED || DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED) 20 21config SYS_CLOCK_HW_CYCLES_PER_SEC 22 default 1000000 if MCUX_OS_TIMER 23 default 16000 if MCUX_LPTMR_TIMER 24 default 150000000 if CORTEX_M_SYSTICK 25 26# Set to the minimal size of data which can be written. 27config FLASH_FILL_BUFFER_SIZE 28 default 128 29 30endif # SOC_SERIES_MCXN 31