xref: /openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig (revision abddcd52)
1if ARCH_MX5
2
3config MX5
4	bool
5	default y
6
7config MX51
8	bool
9
10config MX53
11	bool
12
13choice
14	prompt "MX5 board select"
15	optional
16
17config TARGET_M53EVK
18	bool "Support m53evk"
19	select MX53
20	select SUPPORT_SPL
21
22config TARGET_MX51EVK
23	bool "Support mx51evk"
24	select BOARD_LATE_INIT
25	select MX51
26
27config TARGET_MX53ARD
28	bool "Support mx53ard"
29	select MX53
30
31config TARGET_MX53CX9020
32	bool "Support CX9020"
33	select BOARD_LATE_INIT
34	select MX53
35	select DM
36	select DM_SERIAL
37
38config TARGET_MX53EVK
39	bool "Support mx53evk"
40	select BOARD_LATE_INIT
41	select MX53
42
43config TARGET_MX53LOCO
44	bool "Support mx53loco"
45	select BOARD_LATE_INIT
46	select MX53
47
48config TARGET_MX53SMD
49	bool "Support mx53smd"
50	select MX53
51
52config TARGET_TS4800
53	bool "Support TS4800"
54	select MX51
55	select SYS_FSL_ERRATUM_ESDHC_A001
56
57config TARGET_USBARMORY
58	bool "Support USB armory"
59	select MX53
60
61endchoice
62
63config SYS_SOC
64	default "mx5"
65
66source "board/aries/m53evk/Kconfig"
67source "board/beckhoff/mx53cx9020/Kconfig"
68source "board/freescale/mx51evk/Kconfig"
69source "board/freescale/mx53ard/Kconfig"
70source "board/freescale/mx53evk/Kconfig"
71source "board/freescale/mx53loco/Kconfig"
72source "board/freescale/mx53smd/Kconfig"
73source "board/inversepath/usbarmory/Kconfig"
74source "board/technologic/ts4800/Kconfig"
75
76endif
77