]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-imx/mx5/Kconfig
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[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 select SYS_FSL_ERRATUM_ESDHC_A001
10
11 config MX53
12 bool
13
14 choice
15 prompt "MX5 board select"
16 optional
17
18 config TARGET_M53EVK
19 bool "Support m53evk"
20 select MX53
21 select SUPPORT_SPL
22
23 config TARGET_MX51EVK
24 bool "Support mx51evk"
25 select BOARD_LATE_INIT
26 select MX51
27
28 config TARGET_MX53ARD
29 bool "Support mx53ard"
30 select MX53
31
32 config TARGET_MX53CX9020
33 bool "Support CX9020"
34 select BOARD_LATE_INIT
35 select MX53
36 select DM
37 select DM_SERIAL
38
39 config TARGET_MX53EVK
40 bool "Support mx53evk"
41 select BOARD_LATE_INIT
42 select MX53
43
44 config TARGET_MX53LOCO
45 bool "Support mx53loco"
46 select BOARD_LATE_INIT
47 select MX53
48
49 config TARGET_MX53SMD
50 bool "Support mx53smd"
51 select MX53
52
53 config TARGET_TS4800
54 bool "Support TS4800"
55 select MX51
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