1# Copyright 2024 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_IMXRT11XX
5
6config NUM_IRQS
7	default 218
8
9config GPIO
10	default y
11
12if CORTEX_M_SYSTICK
13
14config SYS_CLOCK_HW_CYCLES_PER_SEC
15	default 996000000 if SOC_MIMXRT1176_CM7
16	default 600000000 if SOC_MIMXRT1166_CM7
17	default 400000000 if SOC_MIMXRT1176_CM4
18	default 240000000 if SOC_MIMXRT1166_CM4
19
20endif # CORTEX_M_SYSTICK
21
22config DCDC_VALUE
23	default 0x13
24
25config FLEXSPI_CONFIG_BLOCK_OFFSET
26	default 0x400 if BOOT_FLEXSPI_NOR
27
28if SECOND_CORE_MCUX
29
30# RT Boot header is only needed on primary core
31config NXP_IMXRT_BOOT_HEADER
32	default y
33	depends on !(CPU_CORTEX_M4 || BOOTLOADER_MCUBOOT)
34
35endif
36
37endif
38