1# i.MX8MQ M4 SoC series
2
3# Copyright (c) 2021, Kwon Tae-young <tykwon@m2i.co.kr>
4# SPDX-License-Identifier: Apache-2.0
5
6choice
7prompt "i.MX8MQ M4 Selection"
8	depends on SOC_SERIES_IMX8MQ_M4
9
10config SOC_MIMX8MQ6
11	bool "SOC_MIMX8MQ6"
12	select HAS_MCUX
13	select HAS_MCUX_CCM
14	select HAS_MCUX_RDC
15	select HAS_MCUX_IOMUXC
16
17endchoice
18
19if SOC_SERIES_IMX8MQ_M4
20
21config SOC_PART_NUMBER_MIMX8MQ6DVAJZ
22	bool
23
24config SOC_PART_NUMBER_IMX8MQ_M4
25	string
26	default "MIMX8MQ6DVAJZ" if SOC_PART_NUMBER_MIMX8MQ6DVAJZ
27	help
28	  This string holds the full part number of the SoC. It is a hidden option
29	  that you should not set directly. The part number selection choice defines
30	  the default value for this string.
31
32endif # SOC_SERIES_IMX8MQ_M4
33