1# Kinetis K8x series MCU
2
3# Copyright (c) 2019 SEAL AG
4# Copyright 2024 NXP
5# SPDX-License-Identifier: Apache-2.0
6
7config SOC_SERIES_KINETIS_K8X
8	bool
9	select SOC_FAMILY_KINETIS
10
11config SOC_SERIES
12	default "k8x" if SOC_SERIES_KINETIS_K8X
13
14config SOC_MK80F25615
15	bool
16	select SOC_SERIES_KINETIS_K8X
17
18config SOC_MK82F25615
19	bool
20	select SOC_SERIES_KINETIS_K8X
21
22config SOC
23	default "mk80f25615" if SOC_MK80F25615
24	default "mk82f25615" if SOC_MK82F25615
25
26config SOC_PART_NUMBER_MK80FN256VDC15
27	bool
28
29config SOC_PART_NUMBER_MK80FN256VLL15
30	bool
31
32config SOC_PART_NUMBER_MK82FN256VDC15
33	bool
34
35config SOC_PART_NUMBER_MK82FN256VLL15
36	bool
37
38config SOC_PART_NUMBER
39	default "MK80FN256VDC15" if SOC_PART_NUMBER_MK80FN256VDC15
40	default "MK80FN256VLL15" if SOC_PART_NUMBER_MK80FN256VLL15
41	default "MK82FN256VDC15" if SOC_PART_NUMBER_MK82FN256VDC15
42	default "MK82FN256VLL15" if SOC_PART_NUMBER_MK82FN256VLL15
43