06322b2aaac4f01c43405a60724ecc71d5599906
[oweals/u-boot.git] / arch / arm / mach-imx / mx5 / Kconfig
1 if ARCH_MX5
2
3 config MX5
4         select GPT_TIMER
5         bool
6         default y
7
8 config MX51
9         bool
10         select SYS_FSL_ERRATUM_ESDHC_A001
11
12 config MX53
13         bool
14
15 choice
16         prompt "MX5 board select"
17         optional
18
19 config TARGET_KP_IMX53
20         bool "Support K+P imx53 board"
21         select BOARD_LATE_INIT
22         select MX53
23         select DM
24         select DM_SERIAL
25         select DM_ETH
26         select DM_I2C
27         select DM_GPIO
28         select DM_PMIC
29
30 config TARGET_M53EVK
31         bool "Support m53evk"
32         select MX53
33         select SUPPORT_SPL
34
35 config TARGET_MX51EVK
36         bool "Support mx51evk"
37         select BOARD_LATE_INIT
38         select MX51
39
40 config TARGET_MX53ARD
41         bool "Support mx53ard"
42         select MX53
43
44 config TARGET_MX53CX9020
45         bool "Support CX9020"
46         select BOARD_LATE_INIT
47         select MX53
48         select DM
49         select DM_SERIAL
50
51 config TARGET_MX53EVK
52         bool "Support mx53evk"
53         select BOARD_LATE_INIT
54         select MX53
55
56 config TARGET_MX53LOCO
57         bool "Support mx53loco"
58         select BOARD_LATE_INIT
59         select MX53
60
61 config TARGET_MX53PPD
62         bool "Support mx53ppd"
63         select MX53
64         help
65           Enable support for the GE Healthcare PPD.
66
67 config TARGET_MX53SMD
68         bool "Support mx53smd"
69         select MX53
70
71 config TARGET_TS4800
72         bool "Support TS4800"
73         select MX51
74
75 config TARGET_USBARMORY
76         bool "Support USB armory"
77         select MX53
78
79 endchoice
80
81 config SYS_SOC
82         default "mx5"
83
84 source "board/aries/m53evk/Kconfig"
85 source "board/beckhoff/mx53cx9020/Kconfig"
86 source "board/freescale/mx51evk/Kconfig"
87 source "board/freescale/mx53ard/Kconfig"
88 source "board/freescale/mx53evk/Kconfig"
89 source "board/freescale/mx53loco/Kconfig"
90 source "board/freescale/mx53smd/Kconfig"
91 source "board/ge/mx53ppd/Kconfig"
92 source "board/inversepath/usbarmory/Kconfig"
93 source "board/k+p/kp_imx53/Kconfig"
94 source "board/technologic/ts4800/Kconfig"
95
96 endif