hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
if ARCH_MX6
 
config MX6_SMP
   select ARM_ERRATA_751472
   select ARM_ERRATA_761320
   select ARM_ERRATA_794072
   select ARM_ERRATA_845369
   bool
 
config MX6
   select ARM_ERRATA_743622 if !MX6UL
   bool
   default y
   imply CMD_FUSE
 
config MX6D
   select MX6_SMP
   bool
 
config MX6DL
   select MX6_SMP
   bool
 
config MX6Q
   select MX6_SMP
   bool
 
config MX6QDL
   select MX6_SMP
   bool
 
config MX6S
   bool
 
config MX6SL
   bool
 
config MX6SX
   select ROM_UNIFIED_SECTIONS
   bool
 
config MX6SLL
   select ROM_UNIFIED_SECTIONS
   bool
 
config MX6UL
   select SYS_L2CACHE_OFF
   select ROM_UNIFIED_SECTIONS
   bool
 
config MX6UL_LITESOM
   bool
   select MX6UL
   select DM
   select DM_THERMAL
   select SUPPORT_SPL
 
config MX6UL_OPOS6UL
   bool
   select MX6UL
   select BOARD_LATE_INIT
   select DM
   select DM_GPIO
   select DM_MMC
   select DM_THERMAL
   select SUPPORT_SPL
 
config MX6ULL
   bool
   select MX6UL
 
config MX6_DDRCAL
   bool "Include dynamic DDR calibration routines"
   depends on SPL
   default n
   help
     Say "Y" if your board uses dynamic (per-boot) DDR calibration.
     If unsure, say N.
 
choice
   prompt "MX6 board select"
   optional
 
config TARGET_ADVANTECH_DMS_BA16
   bool "Advantech dms-ba16"
   select BOARD_LATE_INIT
   select MX6Q
   imply CMD_SATA
 
config TARGET_APALIS_IMX6
   bool "Toradex Apalis iMX6 board"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_SERIAL
   select DM_THERMAL
   imply CMD_SATA
 
config TARGET_ARISTAINETOS
   bool "aristainetos"
 
config TARGET_ARISTAINETOS2
   bool "aristainetos2"
   select BOARD_LATE_INIT
 
config TARGET_ARISTAINETOS2B
   bool "Support aristainetos2-revB"
   select BOARD_LATE_INIT
 
config TARGET_CGTQMX6EVAL
   bool "cgtqmx6eval"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
 
config TARGET_CM_FX6
   bool "CM-FX6"
   select SUPPORT_SPL
   select DM
   select DM_SERIAL
   select DM_GPIO
 
config TARGET_COLIBRI_IMX6
   bool "Toradex Colibri iMX6 board"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_SERIAL
   select DM_THERMAL
 
config TARGET_EMBESTMX6BOARDS
   bool "embestmx6boards"
   select BOARD_LATE_INIT
 
config TARGET_GE_B450V3
   bool "General Electric B450v3"
   select BOARD_LATE_INIT
   select MX6Q
 
config TARGET_GE_B650V3
   bool "General Electric B650v3"
   select BOARD_LATE_INIT
   select MX6Q
 
config TARGET_GE_B850V3
   bool "General Electric B850v3"
   select BOARD_LATE_INIT
   select MX6Q
 
config TARGET_GW_VENTANA
   bool "gw_ventana"
   select SUPPORT_SPL
   imply CMD_SATA
   imply CMD_SPL
 
config TARGET_KOSAGI_NOVENA
   bool "Kosagi Novena"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_MCCMON6
   bool "mccmon6"
   select SUPPORT_SPL
 
config TARGET_MX6CUBOXI
   bool "Solid-run mx6 boards"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_MX6LOGICPD
   bool "Logic PD i.MX6 SOM"
   select BOARD_EARLY_INIT_F
   select BOARD_LATE_INIT
   select DM
   select DM_ETH
   select DM_GPIO
   select DM_I2C
   select DM_MMC
   select DM_PMIC
   select DM_REGULATOR
   select OF_CONTROL
 
config TARGET_MX6QARM2
   bool "mx6qarm2"
 
config TARGET_MX6Q_ICORE
   bool "Support Engicam i.Core"
   select BOARD_LATE_INIT
   select MX6QDL
   select OF_CONTROL
   select SPL_OF_LIBFDT
   select DM
   select DM_ETH
   select DM_GPIO
   select DM_I2C
   select DM_MMC
   select DM_THERMAL
   select SUPPORT_SPL
   select SPL_LOAD_FIT
 
config TARGET_MX6Q_ICORE_RQS
   bool "Support Engicam i.Core RQS"
   select BOARD_LATE_INIT
   select MX6QDL
   select OF_CONTROL
   select SPL_OF_LIBFDT
   select DM
   select DM_ETH
   select DM_GPIO
   select DM_I2C
   select DM_MMC
   select DM_THERMAL
   select SUPPORT_SPL
   select SPL_LOAD_FIT
 
config TARGET_MX6SABREAUTO
   bool "mx6sabreauto"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
   select BOARD_EARLY_INIT_F
 
config TARGET_MX6SABRESD
   bool "mx6sabresd"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
   select BOARD_EARLY_INIT_F
 
config TARGET_MX6SLEVK
   bool "mx6slevk"
   select SUPPORT_SPL
 
config TARGET_MX6SLLEVK
        bool "mx6sll evk"
   select BOARD_LATE_INIT
        select MX6SLL
        select DM
        select DM_THERMAL
 
config TARGET_MX6SXSABRESD
   bool "mx6sxsabresd"
   select MX6SX
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
   select BOARD_EARLY_INIT_F
 
config TARGET_MX6SXSABREAUTO
        bool "mx6sxsabreauto"
   select BOARD_LATE_INIT
   select MX6SX
        select DM
        select DM_THERMAL
   select BOARD_EARLY_INIT_F
 
config TARGET_MX6UL_9X9_EVK
   bool "mx6ul_9x9_evk"
   select BOARD_LATE_INIT
   select MX6UL
   select DM
   select DM_THERMAL
   select SUPPORT_SPL
 
config TARGET_MX6UL_14X14_EVK
   select BOARD_LATE_INIT
   bool "mx6ul_14x14_evk"
   select MX6UL
   select DM
   select DM_THERMAL
   select SUPPORT_SPL
 
config TARGET_MX6UL_GEAM
   bool "Support Engicam GEAM6UL"
   select BOARD_LATE_INIT
   select MX6UL
   select OF_CONTROL
   select DM
   select DM_ETH
   select DM_GPIO
   select DM_I2C
   select DM_MMC
   select DM_THERMAL
   select SUPPORT_SPL
config TARGET_MX6UL_ISIOT
   bool "Support Engicam Is.IoT MX6UL"
   select BOARD_LATE_INIT
   select MX6UL
   select OF_CONTROL
   select DM
   select DM_ETH
   select DM_GPIO
   select DM_I2C
   select DM_MMC
   select DM_THERMAL
   select SUPPORT_SPL
 
config TARGET_MX6ULL_14X14_EVK
   bool "Support mx6ull_14x14_evk"
   select BOARD_LATE_INIT
   select MX6ULL
   select DM
   select DM_THERMAL
 
config TARGET_NITROGEN6X
   bool "nitrogen6x"
   imply USB_HOST_ETHER
   imply USB_ETHER_ASIX
   imply USB_ETHER_SMSC95XX
   imply USB_ETHER_MCS7830
 
config TARGET_OPOS6ULDEV
   bool "Armadeus OPOS6ULDev board"
   select MX6UL_OPOS6UL
 
config TARGET_OT1200
   bool "Bachmann OT1200"
   select SUPPORT_SPL
   imply CMD_SATA
 
config TARGET_PICO_IMX6UL
   bool "PICO-IMX6UL-EMMC"
   select MX6UL
 
config TARGET_LITEBOARD
   bool "Grinn liteBoard (i.MX6UL)"
   select BOARD_LATE_INIT
   select MX6UL_LITESOM
 
config TARGET_PLATINUM_PICON
   bool "platinum-picon"
   select SUPPORT_SPL
 
config TARGET_PLATINUM_TITANIUM
   bool "platinum-titanium"
   select SUPPORT_SPL
 
config TARGET_PCM058
   bool "Phytec PCM058 i.MX6 Quad"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_PFLA02
   bool "Phytec PFLA02 (PhyFlex) i.MX6 Quad"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_SECOMX6
   bool "secomx6 boards"
 
config TARGET_TBS2910
   bool "TBS2910 Matrix ARM mini PC"
 
config TARGET_TITANIUM
   bool "titanium"
 
config TARGET_TQMA6
   bool "TQ Systems TQMa6 board"
   select BOARD_LATE_INIT
 
config TARGET_UDOO
   bool "udoo"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_UDOO_NEO
   bool "UDOO Neo"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select MX6SX
   select DM
   select DM_THERMAL
 
config TARGET_SAMTEC_VINING_2000
   bool "samtec VIN|ING 2000"
   select BOARD_LATE_INIT
   select MX6SX
   select DM
   select DM_THERMAL
 
config TARGET_WANDBOARD
   bool "wandboard"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
 
config TARGET_WARP
   bool "WaRP"
   select BOARD_LATE_INIT
 
config TARGET_XPRESS
   bool "CCV xPress"
   select BOARD_LATE_INIT
   select MX6UL
   select DM
   select DM_THERMAL
   select SUPPORT_SPL
 
config TARGET_ZC5202
   bool "zc5202"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
 
config TARGET_ZC5601
   bool "zc5601"
   select BOARD_LATE_INIT
   select SUPPORT_SPL
   select DM
   select DM_THERMAL
 
endchoice
 
config SYS_SOC
   default "mx6"
 
source "board/ge/bx50v3/Kconfig"
source "board/advantech/dms-ba16/Kconfig"
source "board/aristainetos/Kconfig"
source "board/armadeus/opos6uldev/Kconfig"
source "board/bachmann/ot1200/Kconfig"
source "board/barco/platinum/Kconfig"
source "board/barco/titanium/Kconfig"
source "board/boundary/nitrogen6x/Kconfig"
source "board/ccv/xpress/Kconfig"
source "board/compulab/cm_fx6/Kconfig"
source "board/congatec/cgtqmx6eval/Kconfig"
source "board/el/el6x/Kconfig"
source "board/embest/mx6boards/Kconfig"
source "board/engicam/geam6ul/Kconfig"
source "board/engicam/icorem6/Kconfig"
source "board/engicam/icorem6_rqs/Kconfig"
source "board/engicam/isiotmx6ul/Kconfig"
source "board/freescale/mx6qarm2/Kconfig"
source "board/freescale/mx6sabreauto/Kconfig"
source "board/freescale/mx6sabresd/Kconfig"
source "board/freescale/mx6slevk/Kconfig"
source "board/freescale/mx6sllevk/Kconfig"
source "board/freescale/mx6sxsabresd/Kconfig"
source "board/freescale/mx6sxsabreauto/Kconfig"
source "board/freescale/mx6ul_14x14_evk/Kconfig"
source "board/freescale/mx6ullevk/Kconfig"
source "board/grinn/liteboard/Kconfig"
source "board/phytec/pcm058/Kconfig"
source "board/phytec/pfla02/Kconfig"
source "board/gateworks/gw_ventana/Kconfig"
source "board/kosagi/novena/Kconfig"
source "board/samtec/vining_2000/Kconfig"
source "board/liebherr/mccmon6/Kconfig"
source "board/logicpd/imx6/Kconfig"
source "board/seco/Kconfig"
source "board/solidrun/mx6cuboxi/Kconfig"
source "board/technexion/pico-imx6ul/Kconfig"
source "board/tbs/tbs2910/Kconfig"
source "board/tqc/tqma6/Kconfig"
source "board/toradex/apalis_imx6/Kconfig"
source "board/toradex/colibri_imx6/Kconfig"
source "board/udoo/Kconfig"
source "board/udoo/neo/Kconfig"
source "board/wandboard/Kconfig"
source "board/warp/Kconfig"
 
endif