1# Copyright 2024 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 depends on !CPU_CORTEX_M7 34 35endif # SECOND_CORE_MCUX 36 37endif # SOC_SERIES_IMXRT118X 38