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