1if ARCH_MX5
2
3config MX5
4	bool
5	default y
6	select GPT_TIMER
7
8config MX51
9	bool
10	select ARM_CORTEX_A8_CVE_2017_5715
11	select SYS_FSL_ERRATUM_ESDHC_A001
12
13config MX53
14	bool
15	select ARM_CORTEX_A8_CVE_2017_5715
16
17choice
18	prompt "MX5 board select"
19	optional
20
21config TARGET_KP_IMX53
22	bool "Support K+P imx53 board"
23	select BOARD_LATE_INIT
24	select DM
25	select DM_GPIO
26	select DM_I2C
27	select DM_PMIC
28	select DM_SERIAL
29	select DM_MMC
30	select BLK
31	select DM_REGULATOR
32	select MX53
33	imply CMD_DM
34
35config TARGET_M53MENLO
36	bool "Support m53menlo"
37	select MX53
38	select SUPPORT_SPL
39
40config TARGET_MX51EVK
41	bool "Support mx51evk"
42	select BOARD_LATE_INIT
43	select MX51
44
45config TARGET_MX53CX9020
46	bool "Support CX9020"
47	select BOARD_LATE_INIT
48	select DM
49	select DM_SERIAL
50	select MX53
51	imply CMD_DM
52
53config TARGET_MX53LOCO
54	bool "Support mx53loco"
55	select BOARD_LATE_INIT
56	select MX53
57
58config TARGET_MX53PPD
59	bool "Support mx53ppd"
60	select MX53
61	help
62	  Enable support for the GE Healthcare PPD.
63
64config TARGET_USBARMORY
65	bool "Support USB armory"
66	select MX53
67
68endchoice
69
70config SYS_SOC
71	default "mx5"
72
73source "board/beckhoff/mx53cx9020/Kconfig"
74source "board/freescale/mx51evk/Kconfig"
75source "board/freescale/mx53loco/Kconfig"
76source "board/ge/mx53ppd/Kconfig"
77source "board/inversepath/usbarmory/Kconfig"
78source "board/k+p/kp_imx53/Kconfig"
79source "board/menlo/m53menlo/Kconfig"
80
81endif
82