1# Texas Instruments Sitara AM62x-SK-M4
2#
3# Copyright (c) 2023 Texas Instruments Incorporated
4# Copyright (c) 2023 L Lakshmanan
5#
6# SPDX-License-Identifier: Apache-2.0
7
8choice
9prompt "TI AM62X M4 Selection"
10depends on SOC_SERIES_AM62X_M4
11
12config SOC_AM62x_M4
13	bool "TI AM62x M4"
14	select SOC_PART_NUMBER_AM62x
15
16endchoice
17
18config SOC_PART_NUMBER_AM62x
19	bool
20
21config SOC_PART_NUMBER_AM62X_M4
22	string
23	default "AM62x" if SOC_PART_NUMBER_AM62x
24	help
25	  Full part number of the SoC. Do not select directly.
26
27config SOC_PART_NUMBER
28	default SOC_PART_NUMBER_AM62X_M4 if SOC_SERIES_AM62X_M4
29