xref: /openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig (revision 0f347a00)
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_ETH
26	select DM_GPIO
27	select DM_I2C
28	select DM_PMIC
29	select DM_SERIAL
30	select MX53
31	imply CMD_DM
32
33config TARGET_MX51EVK
34	bool "Support mx51evk"
35	select BOARD_LATE_INIT
36	select MX51
37
38config TARGET_MX53ARD
39	bool "Support mx53ard"
40	select MX53
41
42config TARGET_MX53CX9020
43	bool "Support CX9020"
44	select BOARD_LATE_INIT
45	select DM
46	select DM_SERIAL
47	select MX53
48	imply CMD_DM
49
50config TARGET_MX53EVK
51	bool "Support mx53evk"
52	select BOARD_LATE_INIT
53	select MX53
54
55config TARGET_MX53LOCO
56	bool "Support mx53loco"
57	select BOARD_LATE_INIT
58	select MX53
59
60config TARGET_MX53PPD
61	bool "Support mx53ppd"
62	select MX53
63	help
64	  Enable support for the GE Healthcare PPD.
65
66config TARGET_MX53SMD
67	bool "Support mx53smd"
68	select MX53
69
70config TARGET_TS4800
71	bool "Support TS4800"
72	select MX51
73
74config TARGET_USBARMORY
75	bool "Support USB armory"
76	select MX53
77
78endchoice
79
80config SYS_SOC
81	default "mx5"
82
83source "board/beckhoff/mx53cx9020/Kconfig"
84source "board/freescale/mx51evk/Kconfig"
85source "board/freescale/mx53ard/Kconfig"
86source "board/freescale/mx53evk/Kconfig"
87source "board/freescale/mx53loco/Kconfig"
88source "board/freescale/mx53smd/Kconfig"
89source "board/ge/mx53ppd/Kconfig"
90source "board/inversepath/usbarmory/Kconfig"
91source "board/k+p/kp_imx53/Kconfig"
92source "board/technologic/ts4800/Kconfig"
93
94endif
95