1# Copyright 2024-2025 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_IMXRT118X 5 6config NUM_IRQS 7 default 239 8 9config GPIO 10 default y 11 12if CORTEX_M_SYSTICK 13 14config SYS_CLOCK_HW_CYCLES_PER_SEC 15 default 240000000 if SOC_MIMXRT1189_CM33 16 default 792000000 if SOC_MIMXRT1189_CM7 17 18endif # CORTEX_M_SYSTICK 19 20config DCDC_VALUE 21 default 0x13 22 23config FLEXSPI_CONFIG_BLOCK_OFFSET 24 default 0x400 if BOOT_FLEXSPI_NOR 25 26config ROM_START_OFFSET 27 default 0xb000 if BOOT_FLEXSPI_NOR 28 29if SECOND_CORE_MCUX 30 31# RT Boot header is only needed on primary core 32config NXP_IMXRT_BOOT_HEADER 33 default y 34 depends on !(CPU_CORTEX_M7 || BOOTLOADER_MCUBOOT) 35 36endif # SECOND_CORE_MCUX 37 38choice CACHE_TYPE 39 default EXTERNAL_CACHE if SOC_MIMXRT1189_CM33 40endchoice 41 42endif # SOC_SERIES_IMXRT118X 43