1# Kinetis KE1xZ series configuration options
2
3# Copyright (c) 2019-2021 Vestas Wind Systems A/S
4# Copyright 2024 NXP
5# SPDX-License-Identifier: Apache-2.0
6
7if SOC_SERIES_KE1XZ
8
9config MCUX_LPTMR_TIMER
10	default y if PM
11
12config CORTEX_M_SYSTICK
13	default n if MCUX_LPTMR_TIMER
14
15config SYS_CLOCK_HW_CYCLES_PER_SEC
16	default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency) if CORTEX_M_SYSTICK
17	default $(dt_node_int_prop_int,/soc/lptmr@40040000,clock-frequency) if MCUX_LPTMR_TIMER
18
19config NUM_IRQS
20	default 32
21
22config CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS
23	default y
24
25# The flash option register (FOPT) boot options:
26# 0000 0001 - Normal Boot
27# 0000 0000 - Set NMI pin/interrupts to disabled
28# 0000 1000 - Allow Reset detection from RESET_Pin
29# 1111 0010 - Reserved for Future Expansion
30config KINETIS_FLASH_CONFIG_FOPT
31	default 0xFB
32	depends on KINETIS_FLASH_CONFIG
33
34endif # SOC_SERIES_KE1XZ
35