1# iMX7 M4 core series
2
3# Copyright (c) 2017, NXP
4# SPDX-License-Identifier: Apache-2.0
5
6choice
7	prompt "i.MX7 M4 Selection"
8	depends on SOC_SERIES_IMX7_M4
9
10config SOC_MCIMX7_M4
11	bool "SOC_MCIMX7_M4"
12	select HAS_IMX_HAL
13	select HAS_IMX_GPIO
14	select HAS_IMX_I2C
15	select HAS_IMX_IOMUXC
16
17endchoice
18
19if SOC_MCIMX7_M4
20
21config SOC_PART_NUMBER_MCIMX7D7DVM10SC
22	bool
23
24config SOC_PART_NUMBER_MCIMX7D5EVM10SC
25	bool
26
27config SOC_PART_NUMBER_MCIMX7S3DVK08SA
28	bool
29
30config SOC_PART_NUMBER_IMX7_M4
31	string
32	default	"MCIMX7D7DVM10SC" if SOC_PART_NUMBER_MCIMX7D7DVM10SC
33	default "MCIMX7D5EVM10SC" if SOC_PART_NUMBER_MCIMX7D5EVM10SC
34	default "MCIMX7S3DVK08SA" if SOC_PART_NUMBER_MCIMX7S3DVK08SA
35	help
36	  This string holds the full part number of the SoC. It is a hidden option
37	  that you should not set directly. The part number selection choice defines
38	  the default value for this string.
39
40endif # SOC_SERIES_IMX7_M4
41