Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / arch / arm / mach-imx / mx5 / Kconfig
1 if ARCH_MX5
2
3 config MX5
4         bool
5         default y
6         select GPT_TIMER
7
8 config MX51
9         bool
10         select ARM_CORTEX_A8_CVE_2017_5715
11         select SYS_FSL_ERRATUM_ESDHC_A001
12
13 config MX53
14         bool
15         select ARM_CORTEX_A8_CVE_2017_5715
16
17 choice
18         prompt "MX5 board select"
19         optional
20
21 config 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 DM_MMC
31         select BLK
32         select DM_USB
33         select DM_REGULATOR
34         select MX53
35         imply CMD_DM
36
37 config TARGET_M53MENLO
38         bool "Support m53menlo"
39         select MX53
40         select SUPPORT_SPL
41
42 config TARGET_MX51EVK
43         bool "Support mx51evk"
44         select BOARD_LATE_INIT
45         select MX51
46
47 config TARGET_MX53ARD
48         bool "Support mx53ard"
49         select MX53
50
51 config TARGET_MX53CX9020
52         bool "Support CX9020"
53         select BOARD_LATE_INIT
54         select DM
55         select DM_SERIAL
56         select MX53
57         imply CMD_DM
58
59 config TARGET_MX53EVK
60         bool "Support mx53evk"
61         select BOARD_LATE_INIT
62         select MX53
63
64 config TARGET_MX53LOCO
65         bool "Support mx53loco"
66         select BOARD_LATE_INIT
67         select MX53
68
69 config TARGET_MX53PPD
70         bool "Support mx53ppd"
71         select MX53
72         help
73           Enable support for the GE Healthcare PPD.
74
75 config TARGET_MX53SMD
76         bool "Support mx53smd"
77         select MX53
78
79 config TARGET_TS4800
80         bool "Support TS4800"
81         select MX51
82
83 config TARGET_USBARMORY
84         bool "Support USB armory"
85         select MX53
86
87 endchoice
88
89 config SYS_SOC
90         default "mx5"
91
92 source "board/beckhoff/mx53cx9020/Kconfig"
93 source "board/freescale/mx51evk/Kconfig"
94 source "board/freescale/mx53ard/Kconfig"
95 source "board/freescale/mx53evk/Kconfig"
96 source "board/freescale/mx53loco/Kconfig"
97 source "board/freescale/mx53smd/Kconfig"
98 source "board/ge/mx53ppd/Kconfig"
99 source "board/inversepath/usbarmory/Kconfig"
100 source "board/k+p/kp_imx53/Kconfig"
101 source "board/menlo/m53menlo/Kconfig"
102 source "board/technologic/ts4800/Kconfig"
103
104 endif