1# Copyright (c) 2021 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4choice
5	prompt "NXP i.MX8M Audio DSP Selection"
6	depends on SOC_SERIES_NXP_IMX8M
7
8	config SOC_MIMX8M_ADSP
9		bool "NXP i.MX8MP Audio DSP"
10		select HAS_MCUX if CLOCK_CONTROL
11		select HAS_MCUX_CCM if CLOCK_CONTROL
12		select HAS_MCUX_IOMUXC if PINCTRL
13		select PINCTRL_IMX if HAS_MCUX_IOMUXC
14
15endchoice
16
17if SOC_SERIES_NXP_IMX8M
18
19config SOC_PART_NUMBER_MIMX8ML8DVNLZ
20	bool
21
22config SOC_PART_NUMBER_MIMX8ML8CVNKZ
23	bool
24
25config SOC_PART_NUMBER_MIMX8MP_DSP
26	string
27	default "MIMX8ML8DVNLZ_dsp" if  SOC_PART_NUMBER_MIMX8ML8DVNLZ
28	default "MIMX8ML8CVNKZ_dsp" if  SOC_PART_NUMBER_MIMX8ML8CVNKZ
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	string
36	default SOC_PART_NUMBER_MIMX8MP_DSP if SOC_MIMX8M_ADSP
37
38endif # SOC_SERIES_NXP_IMX8M
39