1# Copyright 2022 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4choice
5prompt "NXP i.MX9 A55 Selection"
6depends on SOC_SERIES_MIMX9_A55
7
8config SOC_MIMX93_A55
9	bool "NXP i.MX93 A55"
10	select ARM64
11	select CPU_CORTEX_A55
12	select ARM_ARCH_TIMER if SYS_CLOCK_EXISTS
13	select HAS_MCUX if CLOCK_CONTROL
14	select HAS_MCUX_CCM if CLOCK_CONTROL
15	select HAS_MCUX_IOMUXC if PINCTRL
16
17endchoice
18
19config SOC_PART_NUMBER_MIMX9352CVUXK
20	bool
21
22config SOC_PART_NUMBER_MIMX9352DVUXM
23	bool
24
25config SOC_PART_NUMBER_MIMX93_A55
26	string
27	default "MIMX9352CVUXK_ca55" if  SOC_PART_NUMBER_MIMX9352CVUXK
28	default "MIMX9352DVUXM_ca55" if  SOC_PART_NUMBER_MIMX9352DVUXM
29	help
30	  This string holds the full part number of the SoC. It is a hidden option
31	  that you should not set directly. The part number selection choice defines
32	  the default value for this string.
33
34config SOC_PART_NUMBER
35	default SOC_PART_NUMBER_MIMX93_A55 if SOC_MIMX93_A55
36