1# i.MX8MM M4 SoC series
2
3# Copyright (c) 2020, Manivannan Sadhasivam <mani@kernel.org>
4# SPDX-License-Identifier: Apache-2.0
5
6choice
7prompt "i.MX8MM M4 Selection"
8depends on SOC_SERIES_IMX8MM_M4
9
10config SOC_MIMX8MM6
11	bool "SOC_MIMX8MM6"
12	select HAS_MCUX
13	select HAS_MCUX_CCM
14	select HAS_MCUX_RDC
15	select HAS_MCUX_IGPIO
16	select HAS_MCUX_IOMUXC
17
18endchoice
19
20if SOC_SERIES_IMX8MM_M4
21
22config SOC_PART_NUMBER_MIMX8MM6DVTLZ
23	bool
24
25config SOC_PART_NUMBER_IMX8MM_M4
26	string
27	default "MIMX8MM6DVTLZ" if SOC_PART_NUMBER_MIMX8MM6DVTLZ
28	help
29	  This string holds the full part number of the SoC. It is a hidden option
30	  that you should not set directly. The part number selection choice defines
31	  the default value for this string.
32
33endif # SOC_SERIES_IMX8MM_M4
34