]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/armv7/mx6/Kconfig
Merge git://git.denx.de/u-boot
[u-boot] / arch / arm / cpu / armv7 / mx6 / Kconfig
1 if ARCH_MX6
2
3 config MX6
4         bool
5         default y
6
7 config MX6D
8         bool
9
10 config MX6DL
11         bool
12
13 config MX6Q
14         bool
15
16 config MX6QDL
17         bool
18
19 config MX6S
20         bool
21
22 config MX6SL
23         bool
24
25 config MX6SX
26         select ROM_UNIFIED_SECTIONS
27         bool
28
29 config MX6UL
30         select SYS_L2CACHE_OFF
31         select ROM_UNIFIED_SECTIONS
32         bool
33
34 choice
35         prompt "MX6 board select"
36         optional
37
38 config TARGET_ARISTAINETOS
39         bool "aristainetos"
40
41 config TARGET_ARISTAINETOS2
42         bool "aristainetos2"
43
44 config TARGET_ARISTAINETOS2B
45         bool "Support aristainetos2-revB"
46
47 config TARGET_CGTQMX6EVAL
48         bool "cgtqmx6eval"
49
50 config TARGET_CM_FX6
51         bool "CM-FX6"
52         select SUPPORT_SPL
53         select DM
54         select DM_SERIAL
55         select DM_GPIO
56
57 config TARGET_EMBESTMX6BOARDS
58         bool "embestmx6boards"
59
60 config TARGET_GW_VENTANA
61         bool "gw_ventana"
62         select SUPPORT_SPL
63
64 config TARGET_KOSAGI_NOVENA
65         bool "Kosagi Novena"
66         select SUPPORT_SPL
67
68 config TARGET_MX6CUBOXI
69         bool "Solid-run mx6 boards"
70         select SUPPORT_SPL
71
72 config TARGET_MX6QARM2
73         bool "mx6qarm2"
74
75 config TARGET_MX6QSABREAUTO
76         bool "mx6qsabreauto"
77         select DM
78         select DM_THERMAL
79
80 config TARGET_MX6SABRESD
81         bool "mx6sabresd"
82         select SUPPORT_SPL
83         select DM
84         select DM_THERMAL
85
86 config TARGET_MX6SLEVK
87         bool "mx6slevk"
88         select SUPPORT_SPL
89
90 config TARGET_MX6SXSABRESD
91         bool "mx6sxsabresd"
92         select SUPPORT_SPL
93         select DM
94         select DM_THERMAL
95
96 config TARGET_MX6UL_9X9_EVK
97         bool "mx6ul_9x9_evk"
98         select MX6UL
99         select DM
100         select DM_THERMAL
101         select SUPPORT_SPL
102
103 config TARGET_MX6UL_14X14_EVK
104         bool "mx6ul_14x14_evk"
105         select MX6UL
106         select DM
107         select DM_THERMAL
108         select SUPPORT_SPL
109
110 config TARGET_NITROGEN6X
111         bool "nitrogen6x"
112
113 config TARGET_OT1200
114         bool "Bachmann OT1200"
115         select SUPPORT_SPL
116
117 config TARGET_PLATINUM_PICON
118         bool "platinum-picon"
119         select SUPPORT_SPL
120
121 config TARGET_PLATINUM_TITANIUM
122         bool "platinum-titanium"
123         select SUPPORT_SPL
124
125 config TARGET_SECOMX6
126         bool "secomx6 boards"
127
128 config TARGET_TBS2910
129         bool "TBS2910 Matrix ARM mini PC"
130
131 config TARGET_TITANIUM
132         bool "titanium"
133
134 config TARGET_TQMA6
135         bool "TQ Systems TQMa6 board"
136
137 config TARGET_UDOO
138         bool "udoo"
139         select SUPPORT_SPL
140
141 config TARGET_WANDBOARD
142         bool "wandboard"
143         select SUPPORT_SPL
144
145 config TARGET_WARP
146         bool "WaRP"
147
148 endchoice
149
150 config SYS_SOC
151         default "mx6"
152
153 source "board/aristainetos/Kconfig"
154 source "board/bachmann/ot1200/Kconfig"
155 source "board/barco/platinum/Kconfig"
156 source "board/barco/titanium/Kconfig"
157 source "board/boundary/nitrogen6x/Kconfig"
158 source "board/compulab/cm_fx6/Kconfig"
159 source "board/congatec/cgtqmx6eval/Kconfig"
160 source "board/embest/mx6boards/Kconfig"
161 source "board/freescale/mx6qarm2/Kconfig"
162 source "board/freescale/mx6qsabreauto/Kconfig"
163 source "board/freescale/mx6sabresd/Kconfig"
164 source "board/freescale/mx6slevk/Kconfig"
165 source "board/freescale/mx6sxsabresd/Kconfig"
166 source "board/freescale/mx6ul_14x14_evk/Kconfig"
167 source "board/gateworks/gw_ventana/Kconfig"
168 source "board/kosagi/novena/Kconfig"
169 source "board/seco/Kconfig"
170 source "board/solidrun/mx6cuboxi/Kconfig"
171 source "board/tbs/tbs2910/Kconfig"
172 source "board/tqc/tqma6/Kconfig"
173 source "board/udoo/Kconfig"
174 source "board/wandboard/Kconfig"
175 source "board/warp/Kconfig"
176
177 endif