blob: b3f7eaf4f6c67f1d8f96a8debe21d8833ba2bab4 [file] [log] [blame]
Boris BREZILLON51e82662015-03-04 13:13:03 +01001if ARCH_MX6
2
3config MX6
4 bool
5 default y
6
7config MX6D
8 bool
9
10config MX6DL
11 bool
12
13config MX6Q
14 bool
15
16config MX6QDL
17 bool
18
19config MX6S
20 bool
21
22config MX6SL
23 bool
24
25config MX6SX
26 bool
27
Peng Fan6ac4a432015-07-20 19:28:28 +080028config MX6UL
29 select SYS_L2CACHE_OFF
30 bool
31
Boris BREZILLON7832bf32015-03-04 13:13:05 +010032choice
33 prompt "MX6 board select"
Joe Hershbergerf0699602015-05-12 14:46:23 -050034 optional
Boris BREZILLON7832bf32015-03-04 13:13:05 +010035
Peng Fan62c15d72015-08-07 20:35:24 +080036config TARGET_ARISTAINETOS
37 bool "aristainetos"
38 select CPU_V7
39
40config TARGET_ARISTAINETOS2
41 bool "aristainetos2"
42 select CPU_V7
43
Heiko Schocher8fb9f3f2015-08-24 11:36:40 +020044config TARGET_ARISTAINETOS2B
45 bool "Support aristainetos2-revB"
46 select CPU_V7
47
Peng Fan62c15d72015-08-07 20:35:24 +080048config TARGET_CGTQMX6EVAL
49 bool "cgtqmx6eval"
50 select CPU_V7
51
Nikita Kiryanov3aea6ae2015-07-23 17:19:33 +030052config TARGET_CM_FX6
Peng Fan62c15d72015-08-07 20:35:24 +080053 bool "CM-FX6"
Nikita Kiryanov3aea6ae2015-07-23 17:19:33 +030054 select SUPPORT_SPL
55 select DM
56 select DM_SERIAL
57 select DM_GPIO
58
Peng Fan62c15d72015-08-07 20:35:24 +080059config TARGET_EMBESTMX6BOARDS
60 bool "embestmx6boards"
61 select CPU_V7
62
63config TARGET_GW_VENTANA
64 bool "gw_ventana"
65 select CPU_V7
66 select SUPPORT_SPL
67
68config TARGET_KOSAGI_NOVENA
69 bool "Kosagi Novena"
70 select CPU_V7
71 select SUPPORT_SPL
72
73config TARGET_MX6CUBOXI
74 bool "Solid-run mx6 boards"
75 select CPU_V7
76 select SUPPORT_SPL
77
78config TARGET_MX6QARM2
79 bool "mx6qarm2"
80 select CPU_V7
81
82config TARGET_MX6QSABREAUTO
83 bool "mx6qsabreauto"
84 select CPU_V7
85 select DM
86 select DM_THERMAL
87
88config TARGET_MX6SABRESD
89 bool "mx6sabresd"
90 select CPU_V7
91 select SUPPORT_SPL
92 select DM
93 select DM_THERMAL
94
95config TARGET_MX6SLEVK
96 bool "mx6slevk"
97 select CPU_V7
Peng Fane8c50ce2015-08-17 16:11:05 +080098 select SUPPORT_SPL
Peng Fan62c15d72015-08-07 20:35:24 +080099
100config TARGET_MX6SXSABRESD
101 bool "mx6sxsabresd"
102 select CPU_V7
103 select SUPPORT_SPL
104 select DM
105 select DM_THERMAL
106
Peng Fan5630c982015-09-06 15:02:34 +0800107config TARGET_MX6UL_9X9_EVK
108 bool "mx6ul_9x9_evk"
109 select MX6UL
110 select CPU_V7
111 select DM
112 select DM_THERMAL
113 select SUPPORT_SPL
114
Peng Fan62c15d72015-08-07 20:35:24 +0800115config TARGET_MX6UL_14X14_EVK
116 bool "mx6ul_14x14_evk"
Peng Fancdd26f52015-08-19 15:48:58 +0800117 select MX6UL
Peng Fan62c15d72015-08-07 20:35:24 +0800118 select CPU_V7
119 select DM
120 select DM_THERMAL
121 select SUPPORT_SPL
122
123config TARGET_NITROGEN6X
124 bool "nitrogen6x"
125 select CPU_V7
126
127config TARGET_OT1200
128 bool "Bachmann OT1200"
129 select CPU_V7
130 select SUPPORT_SPL
131
132config TARGET_PLATINUM_PICON
133 bool "platinum-picon"
134 select CPU_V7
135 select SUPPORT_SPL
136
137config TARGET_PLATINUM_TITANIUM
138 bool "platinum-titanium"
139 select CPU_V7
140 select SUPPORT_SPL
141
Boris BREZILLON7832bf32015-03-04 13:13:05 +0100142config TARGET_SECOMX6
Peng Fan62c15d72015-08-07 20:35:24 +0800143 bool "secomx6 boards"
144
145config TARGET_TBS2910
Soeren Moch4aee78c2015-08-13 21:08:45 +0200146 bool "TBS2910 Matrix ARM mini PC"
Peng Fan62c15d72015-08-07 20:35:24 +0800147 select CPU_V7
148
149config TARGET_TITANIUM
150 bool "titanium"
151 select CPU_V7
Boris BREZILLON7832bf32015-03-04 13:13:05 +0100152
Markus Niebelf665a792015-06-04 17:25:31 +0200153config TARGET_TQMA6
154 bool "TQ Systems TQMa6 board"
Markus Niebelf665a792015-06-04 17:25:31 +0200155
Peng Fan62c15d72015-08-07 20:35:24 +0800156config TARGET_UDOO
157 bool "udoo"
158 select CPU_V7
159 select SUPPORT_SPL
160
161config TARGET_WANDBOARD
162 bool "wandboard"
163 select CPU_V7
164 select SUPPORT_SPL
165
166config TARGET_WARP
167 bool "WaRP"
168 select CPU_V7
169
Boris BREZILLON7832bf32015-03-04 13:13:05 +0100170endchoice
171
Boris BREZILLON51e82662015-03-04 13:13:03 +0100172config SYS_SOC
173 default "mx6"
174
Peng Fan62c15d72015-08-07 20:35:24 +0800175source "board/aristainetos/Kconfig"
176source "board/bachmann/ot1200/Kconfig"
177source "board/barco/platinum/Kconfig"
178source "board/barco/titanium/Kconfig"
179source "board/boundary/nitrogen6x/Kconfig"
180source "board/compulab/cm_fx6/Kconfig"
181source "board/congatec/cgtqmx6eval/Kconfig"
182source "board/embest/mx6boards/Kconfig"
183source "board/freescale/mx6qarm2/Kconfig"
184source "board/freescale/mx6qsabreauto/Kconfig"
185source "board/freescale/mx6sabresd/Kconfig"
186source "board/freescale/mx6slevk/Kconfig"
187source "board/freescale/mx6sxsabresd/Kconfig"
188source "board/freescale/mx6ul_14x14_evk/Kconfig"
189source "board/gateworks/gw_ventana/Kconfig"
190source "board/kosagi/novena/Kconfig"
Boris BREZILLON7832bf32015-03-04 13:13:05 +0100191source "board/seco/Kconfig"
Peng Fan62c15d72015-08-07 20:35:24 +0800192source "board/solidrun/mx6cuboxi/Kconfig"
193source "board/tbs/tbs2910/Kconfig"
Markus Niebelf665a792015-06-04 17:25:31 +0200194source "board/tqc/tqma6/Kconfig"
Peng Fan62c15d72015-08-07 20:35:24 +0800195source "board/udoo/Kconfig"
196source "board/wandboard/Kconfig"
197source "board/warp/Kconfig"
Boris BREZILLON7832bf32015-03-04 13:13:05 +0100198
Boris BREZILLON51e82662015-03-04 13:13:03 +0100199endif