]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-imx/mx5/Kconfig
mx53: Add Board support for GE PPD
[u-boot] / 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_MX53PPD
50         bool "Support mx53ppd"
51         select MX53
52         help
53           Enable support for the GE Healthcare PPD.
54
55 config TARGET_MX53SMD
56         bool "Support mx53smd"
57         select MX53
58
59 config TARGET_TS4800
60         bool "Support TS4800"
61         select MX51
62
63 config TARGET_USBARMORY
64         bool "Support USB armory"
65         select MX53
66
67 endchoice
68
69 config SYS_SOC
70         default "mx5"
71
72 source "board/aries/m53evk/Kconfig"
73 source "board/beckhoff/mx53cx9020/Kconfig"
74 source "board/freescale/mx51evk/Kconfig"
75 source "board/freescale/mx53ard/Kconfig"
76 source "board/freescale/mx53evk/Kconfig"
77 source "board/freescale/mx53loco/Kconfig"
78 source "board/freescale/mx53smd/Kconfig"
79 source "board/ge/mx53ppd/Kconfig"
80 source "board/inversepath/usbarmory/Kconfig"
81 source "board/technologic/ts4800/Kconfig"
82
83 endif