xref: /openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig (revision ad97051b)
1if ARCH_MX5
2
3config MX5
4	select GPT_TIMER
5	bool
6	default y
7
8config MX51
9	bool
10	select SYS_FSL_ERRATUM_ESDHC_A001
11
12config MX53
13	bool
14
15choice
16	prompt "MX5 board select"
17	optional
18
19config TARGET_KP_IMX53
20	bool "Support K+P imx53 board"
21	select BOARD_LATE_INIT
22	select MX53
23	select DM
24	select DM_SERIAL
25	select DM_ETH
26	select DM_I2C
27	select DM_GPIO
28	select DM_PMIC
29
30config TARGET_M53EVK
31	bool "Support m53evk"
32	select MX53
33	select SUPPORT_SPL
34
35config TARGET_MX51EVK
36	bool "Support mx51evk"
37	select BOARD_LATE_INIT
38	select MX51
39
40config TARGET_MX53ARD
41	bool "Support mx53ard"
42	select MX53
43
44config TARGET_MX53CX9020
45	bool "Support CX9020"
46	select BOARD_LATE_INIT
47	select MX53
48	select DM
49	select DM_SERIAL
50
51config TARGET_MX53EVK
52	bool "Support mx53evk"
53	select BOARD_LATE_INIT
54	select MX53
55
56config TARGET_MX53LOCO
57	bool "Support mx53loco"
58	select BOARD_LATE_INIT
59	select MX53
60
61config TARGET_MX53PPD
62	bool "Support mx53ppd"
63	select MX53
64	help
65	  Enable support for the GE Healthcare PPD.
66
67config TARGET_MX53SMD
68	bool "Support mx53smd"
69	select MX53
70
71config TARGET_TS4800
72	bool "Support TS4800"
73	select MX51
74
75config TARGET_USBARMORY
76	bool "Support USB armory"
77	select MX53
78
79endchoice
80
81config SYS_SOC
82	default "mx5"
83
84source "board/aries/m53evk/Kconfig"
85source "board/beckhoff/mx53cx9020/Kconfig"
86source "board/freescale/mx51evk/Kconfig"
87source "board/freescale/mx53ard/Kconfig"
88source "board/freescale/mx53evk/Kconfig"
89source "board/freescale/mx53loco/Kconfig"
90source "board/freescale/mx53smd/Kconfig"
91source "board/ge/mx53ppd/Kconfig"
92source "board/inversepath/usbarmory/Kconfig"
93source "board/k+p/kp_imx53/Kconfig"
94source "board/technologic/ts4800/Kconfig"
95
96endif
97