1# Kinetis K8x series configuration options
2
3# Copyright (c) 2019 SEAL AG
4# Copyright 2024 NXP
5# SPDX-License-Identifier: Apache-2.0
6
7if SOC_SERIES_KINETIS_K8X
8
9config NUM_IRQS
10	# must be >= the highest interrupt number used
11	default 106
12
13config CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS
14	default y
15
16# The flash option register (FOPT) boot options
17# 0011 1001 - Boot from Internal Flash.
18#             Set NMI pin/interrupts to disabled.
19config KINETIS_FLASH_CONFIG_FOPT
20	default 0x3B
21	depends on KINETIS_FLASH_CONFIG
22
23config GPIO
24	default y
25
26endif # SOC_SERIES_KINETIS_K8X
27