]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-imx/mx5/Kconfig
imx: introduce CONFIG_GPT_TIMER
[u-boot] / 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_M53EVK
20         bool "Support m53evk"
21         select MX53
22         select SUPPORT_SPL
23
24 config TARGET_MX51EVK
25         bool "Support mx51evk"
26         select BOARD_LATE_INIT
27         select MX51
28
29 config TARGET_MX53ARD
30         bool "Support mx53ard"
31         select MX53
32
33 config TARGET_MX53CX9020
34         bool "Support CX9020"
35         select BOARD_LATE_INIT
36         select MX53
37         select DM
38         select DM_SERIAL
39
40 config TARGET_MX53EVK
41         bool "Support mx53evk"
42         select BOARD_LATE_INIT
43         select MX53
44
45 config TARGET_MX53LOCO
46         bool "Support mx53loco"
47         select BOARD_LATE_INIT
48         select MX53
49
50 config TARGET_MX53PPD
51         bool "Support mx53ppd"
52         select MX53
53         help
54           Enable support for the GE Healthcare PPD.
55
56 config TARGET_MX53SMD
57         bool "Support mx53smd"
58         select MX53
59
60 config TARGET_TS4800
61         bool "Support TS4800"
62         select MX51
63
64 config TARGET_USBARMORY
65         bool "Support USB armory"
66         select MX53
67
68 endchoice
69
70 config SYS_SOC
71         default "mx5"
72
73 source "board/aries/m53evk/Kconfig"
74 source "board/beckhoff/mx53cx9020/Kconfig"
75 source "board/freescale/mx51evk/Kconfig"
76 source "board/freescale/mx53ard/Kconfig"
77 source "board/freescale/mx53evk/Kconfig"
78 source "board/freescale/mx53loco/Kconfig"
79 source "board/freescale/mx53smd/Kconfig"
80 source "board/ge/mx53ppd/Kconfig"
81 source "board/inversepath/usbarmory/Kconfig"
82 source "board/technologic/ts4800/Kconfig"
83
84 endif