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