]>
Commit | Line | Data |
---|---|---|
dd84058d MY |
1 | menu "ARM architecture" |
2 | depends on ARM | |
3 | ||
4 | config SYS_ARCH | |
dd84058d MY |
5 | default "arm" |
6 | ||
016a954e MY |
7 | config ARM64 |
8 | bool | |
bb6b142f | 9 | select PHYS_64BIT |
067716ba | 10 | select SYS_CACHE_SHIFT_6 |
016a954e | 11 | |
37217f0e LV |
12 | config DMA_ADDR_T_64BIT |
13 | bool | |
14 | default y if ARM64 | |
15 | ||
2e07c249 | 16 | config HAS_VBAR |
e009bfa4 | 17 | bool |
2e07c249 | 18 | |
62e92077 | 19 | config HAS_THUMB2 |
e009bfa4 | 20 | bool |
62e92077 | 21 | |
2e07c249 | 22 | config CPU_ARM720T |
e009bfa4 | 23 | bool |
067716ba | 24 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
25 | |
26 | config CPU_ARM920T | |
e009bfa4 | 27 | bool |
067716ba | 28 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
29 | |
30 | config CPU_ARM926EJS | |
e009bfa4 | 31 | bool |
067716ba | 32 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
33 | |
34 | config CPU_ARM946ES | |
e009bfa4 | 35 | bool |
067716ba | 36 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
37 | |
38 | config CPU_ARM1136 | |
e009bfa4 | 39 | bool |
067716ba | 40 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
41 | |
42 | config CPU_ARM1176 | |
e009bfa4 TR |
43 | bool |
44 | select HAS_VBAR | |
067716ba | 45 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
46 | |
47 | config CPU_V7 | |
e009bfa4 TR |
48 | bool |
49 | select HAS_VBAR | |
50 | select HAS_THUMB2 | |
067716ba | 51 | select SYS_CACHE_SHIFT_6 |
2e07c249 | 52 | |
12d8a729 | 53 | config CPU_V7M |
54 | bool | |
e009bfa4 | 55 | select HAS_THUMB2 |
067716ba | 56 | select SYS_CACHE_SHIFT_5 |
12d8a729 | 57 | |
2e07c249 | 58 | config CPU_PXA |
e009bfa4 | 59 | bool |
067716ba | 60 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
61 | |
62 | config CPU_SA1100 | |
e009bfa4 | 63 | bool |
067716ba | 64 | select SYS_CACHE_SHIFT_5 |
2e07c249 GS |
65 | |
66 | config SYS_CPU | |
e009bfa4 TR |
67 | default "arm720t" if CPU_ARM720T |
68 | default "arm920t" if CPU_ARM920T | |
69 | default "arm926ejs" if CPU_ARM926EJS | |
70 | default "arm946es" if CPU_ARM946ES | |
71 | default "arm1136" if CPU_ARM1136 | |
72 | default "arm1176" if CPU_ARM1176 | |
73 | default "armv7" if CPU_V7 | |
74 | default "armv7m" if CPU_V7M | |
75 | default "pxa" if CPU_PXA | |
76 | default "sa1100" if CPU_SA1100 | |
01541eec | 77 | default "armv8" if ARM64 |
2e07c249 | 78 | |
66020a67 MV |
79 | config SYS_ARM_ARCH |
80 | int | |
81 | default 4 if CPU_ARM720T | |
82 | default 4 if CPU_ARM920T | |
83 | default 5 if CPU_ARM926EJS | |
84 | default 5 if CPU_ARM946ES | |
85 | default 6 if CPU_ARM1136 | |
86 | default 6 if CPU_ARM1176 | |
87 | default 7 if CPU_V7 | |
88 | default 7 if CPU_V7M | |
89 | default 5 if CPU_PXA | |
90 | default 4 if CPU_SA1100 | |
91 | default 8 if ARM64 | |
92 | ||
067716ba TR |
93 | config SYS_CACHE_SHIFT_5 |
94 | bool | |
95 | ||
96 | config SYS_CACHE_SHIFT_6 | |
97 | bool | |
98 | ||
99 | config SYS_CACHE_SHIFT_7 | |
100 | bool | |
101 | ||
102 | config SYS_CACHELINE_SIZE | |
103 | int | |
104 | default 128 if SYS_CACHE_SHIFT_7 | |
105 | default 64 if SYS_CACHE_SHIFT_6 | |
106 | default 32 if SYS_CACHE_SHIFT_5 | |
107 | ||
f91afc4d LW |
108 | config SEMIHOSTING |
109 | bool "support boot from semihosting" | |
110 | help | |
111 | In emulated environments, semihosting is a way for | |
112 | the hosted environment to call out to the emulator to | |
113 | retrieve files from the host machine. | |
114 | ||
f3e9bec8 PF |
115 | config SYS_L2CACHE_OFF |
116 | bool "L2cache off" | |
117 | help | |
118 | If SoC does not support L2CACHE or one do not want to enable | |
119 | L2CACHE, choose this option. | |
120 | ||
cdaa633f AP |
121 | config ENABLE_ARM_SOC_BOOT0_HOOK |
122 | bool "prepare BOOT0 header" | |
123 | help | |
124 | If the SoC's BOOT0 requires a header area filled with (magic) | |
125 | values, then choose this option, and create a define called | |
126 | ARM_SOC_BOOT0_HOOK which contains the required assembler | |
127 | preprocessor code. | |
128 | ||
dd84058d MY |
129 | choice |
130 | prompt "Target select" | |
b928e658 | 131 | default TARGET_HIKEY |
dd84058d | 132 | |
4614b891 MY |
133 | config ARCH_AT91 |
134 | bool "Atmel AT91" | |
dd84058d MY |
135 | |
136 | config TARGET_EDB93XX | |
137 | bool "Support edb93xx" | |
2e07c249 | 138 | select CPU_ARM920T |
dd84058d | 139 | |
dd84058d MY |
140 | config TARGET_VCMA9 |
141 | bool "Support VCMA9" | |
2e07c249 | 142 | select CPU_ARM920T |
dd84058d MY |
143 | |
144 | config TARGET_SMDK2410 | |
145 | bool "Support smdk2410" | |
2e07c249 | 146 | select CPU_ARM920T |
dd84058d | 147 | |
dd84058d MY |
148 | config TARGET_ASPENITE |
149 | bool "Support aspenite" | |
2e07c249 | 150 | select CPU_ARM926EJS |
dd84058d MY |
151 | |
152 | config TARGET_GPLUGD | |
153 | bool "Support gplugd" | |
2e07c249 | 154 | select CPU_ARM926EJS |
dd84058d | 155 | |
3491ba63 MY |
156 | config ARCH_DAVINCI |
157 | bool "TI DaVinci" | |
2e07c249 | 158 | select CPU_ARM926EJS |
3491ba63 MY |
159 | help |
160 | Support for TI's DaVinci platform. | |
dd84058d | 161 | |
47539e23 MY |
162 | config KIRKWOOD |
163 | bool "Marvell Kirkwood" | |
2e07c249 | 164 | select CPU_ARM926EJS |
dd84058d | 165 | |
c3d89140 | 166 | config ARCH_MVEBU |
21b29fc6 | 167 | bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)" |
9cffb233 SR |
168 | select OF_CONTROL |
169 | select OF_SEPARATE | |
170 | select DM | |
e3b9c98a | 171 | select DM_ETH |
1d51ea19 | 172 | select DM_SERIAL |
09a54c00 SR |
173 | select DM_SPI |
174 | select DM_SPI_FLASH | |
a4884831 | 175 | |
dd84058d MY |
176 | config TARGET_DEVKIT3250 |
177 | bool "Support devkit3250" | |
2e07c249 | 178 | select CPU_ARM926EJS |
e9b3ce3f | 179 | select SUPPORT_SPL |
dd84058d | 180 | |
412ae53a AA |
181 | config TARGET_WORK_92105 |
182 | bool "Support work_92105" | |
183 | select CPU_ARM926EJS | |
184 | select SUPPORT_SPL | |
185 | ||
dd84058d MY |
186 | config TARGET_MX25PDK |
187 | bool "Support mx25pdk" | |
2e07c249 | 188 | select CPU_ARM926EJS |
dd84058d | 189 | |
dd84058d MY |
190 | config TARGET_ZMX25 |
191 | bool "Support zmx25" | |
2e07c249 | 192 | select CPU_ARM926EJS |
dd84058d MY |
193 | |
194 | config TARGET_APF27 | |
195 | bool "Support apf27" | |
2e07c249 | 196 | select CPU_ARM926EJS |
02627356 | 197 | select SUPPORT_SPL |
dd84058d | 198 | |
dd84058d MY |
199 | config TARGET_APX4DEVKIT |
200 | bool "Support apx4devkit" | |
2e07c249 | 201 | select CPU_ARM926EJS |
02627356 | 202 | select SUPPORT_SPL |
dd84058d MY |
203 | |
204 | config TARGET_XFI3 | |
205 | bool "Support xfi3" | |
2e07c249 | 206 | select CPU_ARM926EJS |
02627356 | 207 | select SUPPORT_SPL |
dd84058d MY |
208 | |
209 | config TARGET_M28EVK | |
210 | bool "Support m28evk" | |
2e07c249 | 211 | select CPU_ARM926EJS |
02627356 | 212 | select SUPPORT_SPL |
dd84058d MY |
213 | |
214 | config TARGET_MX23EVK | |
215 | bool "Support mx23evk" | |
2e07c249 | 216 | select CPU_ARM926EJS |
02627356 | 217 | select SUPPORT_SPL |
dd84058d MY |
218 | |
219 | config TARGET_MX28EVK | |
220 | bool "Support mx28evk" | |
2e07c249 | 221 | select CPU_ARM926EJS |
02627356 | 222 | select SUPPORT_SPL |
dd84058d MY |
223 | |
224 | config TARGET_MX23_OLINUXINO | |
225 | bool "Support mx23_olinuxino" | |
2e07c249 | 226 | select CPU_ARM926EJS |
02627356 | 227 | select SUPPORT_SPL |
dd84058d MY |
228 | |
229 | config TARGET_BG0900 | |
230 | bool "Support bg0900" | |
2e07c249 | 231 | select CPU_ARM926EJS |
02627356 | 232 | select SUPPORT_SPL |
dd84058d MY |
233 | |
234 | config TARGET_SANSA_FUZE_PLUS | |
235 | bool "Support sansa_fuze_plus" | |
2e07c249 | 236 | select CPU_ARM926EJS |
02627356 | 237 | select SUPPORT_SPL |
dd84058d MY |
238 | |
239 | config TARGET_SC_SPS_1 | |
240 | bool "Support sc_sps_1" | |
2e07c249 | 241 | select CPU_ARM926EJS |
02627356 | 242 | select SUPPORT_SPL |
dd84058d | 243 | |
22f2be7a MY |
244 | config ORION5X |
245 | bool "Marvell Orion" | |
2e07c249 | 246 | select CPU_ARM926EJS |
dd84058d | 247 | |
dd84058d MY |
248 | config TARGET_SPEAR300 |
249 | bool "Support spear300" | |
2e07c249 | 250 | select CPU_ARM926EJS |
dd84058d MY |
251 | |
252 | config TARGET_SPEAR310 | |
253 | bool "Support spear310" | |
2e07c249 | 254 | select CPU_ARM926EJS |
dd84058d MY |
255 | |
256 | config TARGET_SPEAR320 | |
257 | bool "Support spear320" | |
2e07c249 | 258 | select CPU_ARM926EJS |
dd84058d MY |
259 | |
260 | config TARGET_SPEAR600 | |
261 | bool "Support spear600" | |
2e07c249 | 262 | select CPU_ARM926EJS |
dd84058d | 263 | |
9fa32b12 VM |
264 | config TARGET_STV0991 |
265 | bool "Support stv0991" | |
266 | select CPU_V7 | |
cac0ca76 MY |
267 | select DM |
268 | select DM_SERIAL | |
e67abcaa VM |
269 | select DM_SPI |
270 | select DM_SPI_FLASH | |
271 | select SPI_FLASH | |
9fa32b12 | 272 | |
dd84058d MY |
273 | config TARGET_X600 |
274 | bool "Support x600" | |
2e07c249 | 275 | select CPU_ARM926EJS |
02627356 | 276 | select SUPPORT_SPL |
dd84058d | 277 | |
dd84058d MY |
278 | config TARGET_IMX31_PHYCORE |
279 | bool "Support imx31_phycore" | |
2e07c249 | 280 | select CPU_ARM1136 |
dd84058d | 281 | |
dd84058d MY |
282 | config TARGET_MX31ADS |
283 | bool "Support mx31ads" | |
2e07c249 | 284 | select CPU_ARM1136 |
dd84058d MY |
285 | |
286 | config TARGET_MX31PDK | |
287 | bool "Support mx31pdk" | |
2e07c249 | 288 | select CPU_ARM1136 |
02627356 | 289 | select SUPPORT_SPL |
dd84058d | 290 | |
dd84058d MY |
291 | config TARGET_WOODBURN |
292 | bool "Support woodburn" | |
2e07c249 | 293 | select CPU_ARM1136 |
dd84058d MY |
294 | |
295 | config TARGET_WOODBURN_SD | |
296 | bool "Support woodburn_sd" | |
2e07c249 | 297 | select CPU_ARM1136 |
02627356 | 298 | select SUPPORT_SPL |
dd84058d MY |
299 | |
300 | config TARGET_FLEA3 | |
301 | bool "Support flea3" | |
2e07c249 | 302 | select CPU_ARM1136 |
dd84058d MY |
303 | |
304 | config TARGET_MX35PDK | |
305 | bool "Support mx35pdk" | |
2e07c249 | 306 | select CPU_ARM1136 |
dd84058d | 307 | |
ddf6bd48 MY |
308 | config ARCH_BCM283X |
309 | bool "Broadcom BCM283X family" | |
58d423b8 MY |
310 | select DM |
311 | select DM_SERIAL | |
312 | select DM_GPIO | |
46414296 | 313 | |
dd84058d MY |
314 | config TARGET_VEXPRESS_CA15_TC2 |
315 | bool "Support vexpress_ca15_tc2" | |
2e07c249 | 316 | select CPU_V7 |
ea624e19 HG |
317 | select CPU_V7_HAS_NONSEC |
318 | select CPU_V7_HAS_VIRT | |
dd84058d MY |
319 | |
320 | config TARGET_VEXPRESS_CA5X2 | |
321 | bool "Support vexpress_ca5x2" | |
2e07c249 | 322 | select CPU_V7 |
dd84058d MY |
323 | |
324 | config TARGET_VEXPRESS_CA9X4 | |
325 | bool "Support vexpress_ca9x4" | |
2e07c249 | 326 | select CPU_V7 |
dd84058d | 327 | |
a4d79993 HS |
328 | config TARGET_BRXRE1 |
329 | bool "Support BRXRE1" | |
2e07c249 | 330 | select CPU_V7 |
02627356 | 331 | select SUPPORT_SPL |
dd84058d | 332 | |
2290fe06 HS |
333 | config TARGET_BRPPT1 |
334 | bool "Support BRPPT1" | |
2e07c249 | 335 | select CPU_V7 |
02627356 | 336 | select SUPPORT_SPL |
dd84058d | 337 | |
dd84058d MY |
338 | config TARGET_DRACO |
339 | bool "Support draco" | |
2e07c249 | 340 | select CPU_V7 |
02627356 | 341 | select SUPPORT_SPL |
71423435 HS |
342 | select DM |
343 | select DM_SERIAL | |
344 | select DM_GPIO | |
dd84058d | 345 | |
8c65a2fa HS |
346 | config TARGET_THUBAN |
347 | bool "Support thuban" | |
2e07c249 | 348 | select CPU_V7 |
02627356 | 349 | select SUPPORT_SPL |
71423435 HS |
350 | select DM |
351 | select DM_SERIAL | |
352 | select DM_GPIO | |
dd84058d | 353 | |
578056c3 HS |
354 | config TARGET_RASTABAN |
355 | bool "Support rastaban" | |
356 | select CPU_V7 | |
357 | select SUPPORT_SPL | |
71423435 HS |
358 | select DM |
359 | select DM_SERIAL | |
360 | select DM_GPIO | |
578056c3 | 361 | |
6b3943f1 | 362 | config TARGET_ETAMIN |
e009bfa4 TR |
363 | bool "Support etamin" |
364 | select CPU_V7 | |
365 | select SUPPORT_SPL | |
71423435 HS |
366 | select DM |
367 | select DM_SERIAL | |
368 | select DM_GPIO | |
6b3943f1 | 369 | |
dd84058d MY |
370 | config TARGET_PXM2 |
371 | bool "Support pxm2" | |
2e07c249 | 372 | select CPU_V7 |
02627356 | 373 | select SUPPORT_SPL |
71423435 HS |
374 | select DM |
375 | select DM_SERIAL | |
376 | select DM_GPIO | |
dd84058d MY |
377 | |
378 | config TARGET_RUT | |
379 | bool "Support rut" | |
2e07c249 | 380 | select CPU_V7 |
02627356 | 381 | select SUPPORT_SPL |
71423435 HS |
382 | select DM |
383 | select DM_SERIAL | |
384 | select DM_GPIO | |
dd84058d | 385 | |
dd84058d MY |
386 | config TARGET_TI814X_EVM |
387 | bool "Support ti814x_evm" | |
2e07c249 | 388 | select CPU_V7 |
02627356 | 389 | select SUPPORT_SPL |
dd84058d MY |
390 | |
391 | config TARGET_TI816X_EVM | |
392 | bool "Support ti816x_evm" | |
2e07c249 | 393 | select CPU_V7 |
02627356 | 394 | select SUPPORT_SPL |
dd84058d | 395 | |
43486e4c SR |
396 | config TARGET_BCM23550_W1D |
397 | bool "Support bcm23550_w1d" | |
398 | select CPU_V7 | |
399 | ||
dd84058d MY |
400 | config TARGET_BCM28155_AP |
401 | bool "Support bcm28155_ap" | |
2e07c249 | 402 | select CPU_V7 |
dd84058d | 403 | |
abb1678c SR |
404 | config TARGET_BCMCYGNUS |
405 | bool "Support bcmcygnus" | |
2e07c249 | 406 | select CPU_V7 |
9dec5270 | 407 | |
abb1678c SR |
408 | config TARGET_BCMNSP |
409 | bool "Support bcmnsp" | |
2e07c249 | 410 | select CPU_V7 |
9dec5270 | 411 | |
72df68cc MY |
412 | config ARCH_EXYNOS |
413 | bool "Samsung EXYNOS" | |
58d423b8 MY |
414 | select DM |
415 | select DM_SPI_FLASH | |
416 | select DM_SERIAL | |
417 | select DM_SPI | |
418 | select DM_GPIO | |
1fa4bfde | 419 | select DM_KEYBOARD |
dd84058d | 420 | |
311757be SG |
421 | config ARCH_S5PC1XX |
422 | bool "Samsung S5PC1XX" | |
2e07c249 | 423 | select CPU_V7 |
58d423b8 MY |
424 | select DM |
425 | select DM_SERIAL | |
426 | select DM_GPIO | |
311757be | 427 | |
ef2b694c MY |
428 | config ARCH_HIGHBANK |
429 | bool "Calxeda Highbank" | |
2e07c249 | 430 | select CPU_V7 |
dd84058d | 431 | |
5cbbd9bd MY |
432 | config ARCH_INTEGRATOR |
433 | bool "ARM Ltd. Integrator family" | |
3f394e70 LW |
434 | select DM |
435 | select DM_SERIAL | |
5cbbd9bd | 436 | |
c338f09e MY |
437 | config ARCH_KEYSTONE |
438 | bool "TI Keystone" | |
2e07c249 | 439 | select CPU_V7 |
02627356 | 440 | select SUPPORT_SPL |
534bc70e | 441 | select CMD_POWEROFF |
dd84058d | 442 | |
bfcef28a BG |
443 | config ARCH_MESON |
444 | bool "Amlogic Meson" | |
445 | help | |
446 | Support for the Meson SoC family developed by Amlogic Inc., | |
447 | targeted at media players and tablet computers. We currently | |
448 | support the S905 (GXBaby) 64-bit SoC. | |
449 | ||
1a8150d4 AA |
450 | config ARCH_MX7 |
451 | bool "Freescale MX7" | |
452 | select CPU_V7 | |
453 | ||
89ebc821 BB |
454 | config ARCH_MX6 |
455 | bool "Freescale MX6" | |
456 | select CPU_V7 | |
457 | ||
424ee3d1 AR |
458 | config ARCH_MX5 |
459 | bool "Freescale MX5" | |
460 | select CPU_V7 | |
461 | ||
dd84058d MY |
462 | config TARGET_M53EVK |
463 | bool "Support m53evk" | |
2e07c249 | 464 | select CPU_V7 |
02627356 | 465 | select SUPPORT_SPL |
dd84058d | 466 | |
dd84058d MY |
467 | config TARGET_MX51EVK |
468 | bool "Support mx51evk" | |
2e07c249 | 469 | select CPU_V7 |
dd84058d MY |
470 | |
471 | config TARGET_MX53ARD | |
472 | bool "Support mx53ard" | |
2e07c249 | 473 | select CPU_V7 |
dd84058d MY |
474 | |
475 | config TARGET_MX53EVK | |
476 | bool "Support mx53evk" | |
2e07c249 | 477 | select CPU_V7 |
dd84058d MY |
478 | |
479 | config TARGET_MX53LOCO | |
480 | bool "Support mx53loco" | |
2e07c249 | 481 | select CPU_V7 |
dd84058d MY |
482 | |
483 | config TARGET_MX53SMD | |
484 | bool "Support mx53smd" | |
2e07c249 | 485 | select CPU_V7 |
dd84058d | 486 | |
3cfbcb58 MY |
487 | config OMAP34XX |
488 | bool "OMAP34XX SoC" | |
2e07c249 | 489 | select CPU_V7 |
a2ea62e8 | 490 | select SUPPORT_SPL |
7d106242 | 491 | select USE_TINY_PRINTF |
dd84058d | 492 | |
d08215a5 MY |
493 | config OMAP44XX |
494 | bool "OMAP44XX SoC" | |
2e07c249 | 495 | select CPU_V7 |
02627356 | 496 | select SUPPORT_SPL |
7d106242 | 497 | select USE_TINY_PRINTF |
dd84058d | 498 | |
6c5431ac MY |
499 | config OMAP54XX |
500 | bool "OMAP54XX SoC" | |
2e07c249 | 501 | select CPU_V7 |
02627356 | 502 | select SUPPORT_SPL |
dd84058d | 503 | |
6384726d MS |
504 | config AM43XX |
505 | bool "AM43XX SoC" | |
506 | select CPU_V7 | |
507 | select SUPPORT_SPL | |
508 | help | |
509 | Support for AM43xx SOC from Texas Instruments. | |
510 | The AM43xx high performance SOC features a Cortex-A9 | |
511 | ARM core, a quad core PRU-ICSS for industrial Ethernet | |
512 | protocols, dual camera support, optional 3D graphics | |
513 | and an optional customer programmable secure boot. | |
514 | ||
b39a9ade AD |
515 | config AM33XX |
516 | bool "AM33XX SoC" | |
517 | select CPU_V7 | |
518 | select SUPPORT_SPL | |
519 | help | |
520 | Support for AM335x SOC from Texas Instruments. | |
521 | The AM335x high performance SOC features a Cortex-A8 | |
522 | ARM core, a dual core PRU-ICSS for industrial Ethernet | |
523 | protocols, optional 3D graphics and an optional customer | |
524 | programmable secure boot. | |
525 | ||
1cc95f6e | 526 | config ARCH_RMOBILE |
f40b9898 | 527 | bool "Renesas ARM SoCs" |
1cc95f6e NI |
528 | select DM |
529 | select DM_SERIAL | |
dd84058d | 530 | |
9702ec00 EP |
531 | config TARGET_S32V234EVB |
532 | bool "Support s32v234evb" | |
533 | select ARM64 | |
534 | ||
08592136 MK |
535 | config ARCH_SNAPDRAGON |
536 | bool "Qualcomm Snapdragon SoCs" | |
537 | select ARM64 | |
538 | select DM | |
539 | select DM_GPIO | |
540 | select DM_SERIAL | |
541 | select SPMI | |
542 | select OF_CONTROL | |
543 | select OF_SEPARATE | |
544 | ||
7865f4b0 MY |
545 | config ARCH_SOCFPGA |
546 | bool "Altera SOCFPGA family" | |
2e07c249 | 547 | select CPU_V7 |
02627356 | 548 | select SUPPORT_SPL |
dfd3dff5 MV |
549 | select OF_CONTROL |
550 | select SPL_OF_CONTROL | |
1d9aa3e5 MY |
551 | select DM |
552 | select DM_SPI_FLASH | |
553 | select DM_SPI | |
dd84058d | 554 | |
8883ddaf NK |
555 | config TARGET_CM_T43 |
556 | bool "Support cm_t43" | |
557 | select CPU_V7 | |
558 | select SUPPORT_SPL | |
559 | ||
2c7e3b90 IC |
560 | config ARCH_SUNXI |
561 | bool "Support sunxi (Allwinner) SoCs" | |
88bb800d | 562 | select CMD_GPIO |
0878a8a7 | 563 | select CMD_MMC if MMC |
de1502c9 | 564 | select CMD_USB |
b6006baf | 565 | select DM |
45368827 | 566 | select DM_ETH |
211d57a4 HG |
567 | select DM_GPIO |
568 | select DM_KEYBOARD | |
45368827 | 569 | select DM_SERIAL |
91183bab | 570 | select DM_USB |
d75111a7 | 571 | select OF_BOARD_SETUP |
b6006baf HG |
572 | select OF_CONTROL |
573 | select OF_SEPARATE | |
8434f035 AG |
574 | select SPL_STACK_R if SUPPORT_SPL |
575 | select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL | |
6edf6a21 | 576 | select SYS_NS16550 |
45368827 | 577 | select USB |
de1502c9 | 578 | select USB_STORAGE |
ab27f30b | 579 | select USB_KEYBOARD |
8c7d2296 | 580 | select USE_TINY_PRINTF |
8ebe4f42 | 581 | |
9ee16897 LQ |
582 | config TARGET_TS4800 |
583 | bool "Support TS4800" | |
584 | select CPU_V7 | |
585 | ||
dd84058d MY |
586 | config TARGET_VF610TWR |
587 | bool "Support vf610twr" | |
2e07c249 | 588 | select CPU_V7 |
dd84058d | 589 | |
e7b860fa SM |
590 | config TARGET_COLIBRI_VF |
591 | bool "Support Colibri VF50/61" | |
592 | select CPU_V7 | |
593 | ||
931a1d2a AA |
594 | config TARGET_PCM052 |
595 | bool "Support pcm-052" | |
596 | select CPU_V7 | |
597 | ||
5ca269a4 | 598 | config ARCH_ZYNQ |
44dcb403 | 599 | bool "Xilinx Zynq Platform" |
2e07c249 | 600 | select CPU_V7 |
02627356 | 601 | select SUPPORT_SPL |
d065cfd9 | 602 | select OF_CONTROL |
eb04ab34 | 603 | select SPL_OF_CONTROL if SPL |
8981f05c | 604 | select DM |
6889ca71 | 605 | select DM_ETH |
2978ae23 | 606 | select DM_GPIO |
eb04ab34 | 607 | select SPL_DM if SPL |
d9ae52c8 | 608 | select DM_MMC |
329a449f | 609 | select DM_MMC_OPS |
9f7a4502 | 610 | select DM_SPI |
42800ffa | 611 | select DM_SERIAL |
9f7a4502 | 612 | select DM_SPI_FLASH |
eb04ab34 | 613 | select SPL_SEPARATE_BSS if SPL |
dec49e86 | 614 | select DM_USB if USB |
329a449f | 615 | select BLK |
dd84058d | 616 | |
0b54a9dd | 617 | config ARCH_ZYNQMP |
84c7204b MS |
618 | bool "Support Xilinx ZynqMP Platform" |
619 | select ARM64 | |
c2490bf5 MS |
620 | select DM |
621 | select OF_CONTROL | |
622 | select DM_SERIAL | |
e6a9ed04 | 623 | select SUPPORT_SPL |
1f29738a MS |
624 | select CLK |
625 | select SPL_CLK | |
dec49e86 | 626 | select DM_USB if USB |
84c7204b | 627 | |
ddd960e6 MY |
628 | config TEGRA |
629 | bool "NVIDIA Tegra" | |
dd84058d | 630 | |
f91afc4d | 631 | config TARGET_VEXPRESS64_AEMV8A |
dd84058d | 632 | bool "Support vexpress_aemv8a" |
016a954e | 633 | select ARM64 |
dd84058d | 634 | |
f91afc4d LW |
635 | config TARGET_VEXPRESS64_BASE_FVP |
636 | bool "Support Versatile Express ARMv8a FVP BASE model" | |
637 | select ARM64 | |
638 | select SEMIHOSTING | |
639 | ||
fc04b923 RH |
640 | config TARGET_VEXPRESS64_BASE_FVP_DRAM |
641 | bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" | |
642 | select ARM64 | |
643 | help | |
644 | This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides | |
645 | the default config to allow the user to load the images directly into | |
646 | DRAM using model parameters rather than by using semi-hosting to load | |
647 | the files from the host filesystem. | |
648 | ||
ffc10373 LW |
649 | config TARGET_VEXPRESS64_JUNO |
650 | bool "Support Versatile Express Juno Development Platform" | |
651 | select ARM64 | |
652 | ||
44937214 PK |
653 | config TARGET_LS2080A_EMU |
654 | bool "Support ls2080a_emu" | |
016a954e | 655 | select ARM64 |
23b5877c | 656 | select ARMV8_MULTIENTRY |
44937214 PK |
657 | help |
658 | Support for Freescale LS2080A_EMU platform | |
659 | The LS2080A Development System (EMULATOR) is a pre silicon | |
660 | development platform that supports the QorIQ LS2080A | |
661 | Layerscape Architecture processor. | |
dd84058d | 662 | |
44937214 PK |
663 | config TARGET_LS2080A_SIMU |
664 | bool "Support ls2080a_simu" | |
016a954e | 665 | select ARM64 |
23b5877c | 666 | select ARMV8_MULTIENTRY |
44937214 PK |
667 | help |
668 | Support for Freescale LS2080A_SIMU platform | |
669 | The LS2080A Development System (QDS) is a pre silicon | |
670 | development platform that supports the QorIQ LS2080A | |
671 | Layerscape Architecture processor. | |
dd84058d | 672 | |
44937214 PK |
673 | config TARGET_LS2080AQDS |
674 | bool "Support ls2080aqds" | |
7288c2c2 YS |
675 | select ARM64 |
676 | select ARMV8_MULTIENTRY | |
b2d5ac59 | 677 | select SUPPORT_SPL |
7288c2c2 | 678 | help |
44937214 PK |
679 | Support for Freescale LS2080AQDS platform |
680 | The LS2080A Development System (QDS) is a high-performance | |
681 | development platform that supports the QorIQ LS2080A | |
7288c2c2 YS |
682 | Layerscape Architecture processor. |
683 | ||
44937214 PK |
684 | config TARGET_LS2080ARDB |
685 | bool "Support ls2080ardb" | |
e2b65ea9 YS |
686 | select ARM64 |
687 | select ARMV8_MULTIENTRY | |
32eda7cc | 688 | select SUPPORT_SPL |
e2b65ea9 | 689 | help |
44937214 PK |
690 | Support for Freescale LS2080ARDB platform. |
691 | The LS2080A Reference design board (RDB) is a high-performance | |
692 | development platform that supports the QorIQ LS2080A | |
e2b65ea9 YS |
693 | Layerscape Architecture processor. |
694 | ||
11ac2363 PG |
695 | config TARGET_HIKEY |
696 | bool "Support HiKey 96boards Consumer Edition Platform" | |
697 | select ARM64 | |
efd7b60a PG |
698 | select DM |
699 | select DM_GPIO | |
9c71bcdc | 700 | select DM_SERIAL |
cd593ed6 | 701 | select OF_CONTROL |
11ac2363 PG |
702 | help |
703 | Support for HiKey 96boards platform. It features a HI6220 | |
704 | SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. | |
705 | ||
9d044fcb PK |
706 | config TARGET_LS1012AQDS |
707 | bool "Support ls1012aqds" | |
9533acf3 | 708 | select ARCH_LS1012A |
9d044fcb PK |
709 | select ARM64 |
710 | help | |
711 | Support for Freescale LS1012AQDS platform. | |
712 | The LS1012A Development System (QDS) is a high-performance | |
713 | development platform that supports the QorIQ LS1012A | |
714 | Layerscape Architecture processor. | |
715 | ||
3b6e3898 PK |
716 | config TARGET_LS1012ARDB |
717 | bool "Support ls1012ardb" | |
9533acf3 | 718 | select ARCH_LS1012A |
3b6e3898 PK |
719 | select ARM64 |
720 | help | |
721 | Support for Freescale LS1012ARDB platform. | |
722 | The LS1012A Reference design board (RDB) is a high-performance | |
723 | development platform that supports the QorIQ LS1012A | |
724 | Layerscape Architecture processor. | |
725 | ||
ff78aa2b PK |
726 | config TARGET_LS1012AFRDM |
727 | bool "Support ls1012afrdm" | |
9533acf3 | 728 | select ARCH_LS1012A |
ff78aa2b PK |
729 | select ARM64 |
730 | help | |
731 | Support for Freescale LS1012AFRDM platform. | |
732 | The LS1012A Freedom board (FRDM) is a high-performance | |
733 | development platform that supports the QorIQ LS1012A | |
734 | Layerscape Architecture processor. | |
735 | ||
550e3dc0 | 736 | config TARGET_LS1021AQDS |
0de15707 | 737 | bool "Support ls1021aqds" |
2e07c249 | 738 | select CPU_V7 |
adee1d4c HZ |
739 | select CPU_V7_HAS_NONSEC |
740 | select CPU_V7_HAS_VIRT | |
50f0c663 | 741 | select SUPPORT_SPL |
0a37cf8f | 742 | select ARCH_LS1021A |
217f92bb | 743 | select ARCH_SUPPORT_PSCI |
5e8bd7e1 | 744 | select LS1_DEEP_SLEEP |
217f92bb | 745 | |
c8a7d9da | 746 | config TARGET_LS1021ATWR |
0de15707 | 747 | bool "Support ls1021atwr" |
2e07c249 | 748 | select CPU_V7 |
adee1d4c HZ |
749 | select CPU_V7_HAS_NONSEC |
750 | select CPU_V7_HAS_VIRT | |
50f0c663 | 751 | select SUPPORT_SPL |
0a37cf8f | 752 | select ARCH_LS1021A |
217f92bb | 753 | select ARCH_SUPPORT_PSCI |
5e8bd7e1 | 754 | select LS1_DEEP_SLEEP |
c8a7d9da | 755 | |
02b5d2ed SX |
756 | config TARGET_LS1043AQDS |
757 | bool "Support ls1043aqds" | |
0a37cf8f | 758 | select ARCH_LS1043A |
02b5d2ed SX |
759 | select ARM64 |
760 | select ARMV8_MULTIENTRY | |
761 | select SUPPORT_SPL | |
762 | help | |
763 | Support for Freescale LS1043AQDS platform. | |
764 | ||
f3a8e2b7 MH |
765 | config TARGET_LS1043ARDB |
766 | bool "Support ls1043ardb" | |
0a37cf8f | 767 | select ARCH_LS1043A |
f3a8e2b7 | 768 | select ARM64 |
831c068f | 769 | select ARMV8_MULTIENTRY |
3ad44729 | 770 | select SUPPORT_SPL |
f3a8e2b7 MH |
771 | help |
772 | Support for Freescale LS1043ARDB platform. | |
773 | ||
126fe70d SX |
774 | config TARGET_LS1046AQDS |
775 | bool "Support ls1046aqds" | |
da28e58a | 776 | select ARCH_LS1046A |
126fe70d SX |
777 | select ARM64 |
778 | select ARMV8_MULTIENTRY | |
779 | select SUPPORT_SPL | |
780 | select DM_SPI_FLASH if DM_SPI | |
781 | help | |
782 | Support for Freescale LS1046AQDS platform. | |
783 | The LS1046A Development System (QDS) is a high-performance | |
784 | development platform that supports the QorIQ LS1046A | |
785 | Layerscape Architecture processor. | |
786 | ||
dd02936f MH |
787 | config TARGET_LS1046ARDB |
788 | bool "Support ls1046ardb" | |
da28e58a | 789 | select ARCH_LS1046A |
dd02936f MH |
790 | select ARM64 |
791 | select ARMV8_MULTIENTRY | |
792 | select SUPPORT_SPL | |
793 | select DM_SPI_FLASH if DM_SPI | |
794 | help | |
795 | Support for Freescale LS1046ARDB platform. | |
796 | The LS1046A Reference Design Board (RDB) is a high-performance | |
797 | development platform that supports the QorIQ LS1046A | |
798 | Layerscape Architecture processor. | |
799 | ||
dd84058d MY |
800 | config TARGET_H2200 |
801 | bool "Support h2200" | |
2e07c249 | 802 | select CPU_PXA |
dd84058d | 803 | |
f19eb154 VK |
804 | config TARGET_ZIPITZ2 |
805 | bool "Support zipitz2" | |
806 | select CPU_PXA | |
807 | ||
dd84058d MY |
808 | config TARGET_COLIBRI_PXA270 |
809 | bool "Support colibri_pxa270" | |
2e07c249 | 810 | select CPU_PXA |
dd84058d | 811 | |
66cba041 | 812 | config ARCH_UNIPHIER |
b6ef3a3f | 813 | bool "Socionext UniPhier SoCs" |
14f47234 | 814 | select BLK |
48264d9b | 815 | select CLK_UNIPHIER |
4e819950 | 816 | select DM |
b800cbde | 817 | select DM_GPIO |
4e819950 | 818 | select DM_I2C |
4aceb3f8 | 819 | select DM_MMC |
b5550e49 | 820 | select DM_SERIAL |
47a79f65 | 821 | select DM_USB |
b5550e49 MY |
822 | select OF_CONTROL |
823 | select OF_LIBFDT | |
27350c92 | 824 | select PINCTRL |
b5550e49 MY |
825 | select SPL |
826 | select SPL_DM | |
0298f4c0 MY |
827 | select SPL_LIBCOMMON_SUPPORT |
828 | select SPL_LIBGENERIC_SUPPORT | |
b5550e49 | 829 | select SPL_OF_CONTROL |
27350c92 | 830 | select SPL_PINCTRL |
b5550e49 | 831 | select SUPPORT_SPL |
b6ef3a3f MY |
832 | help |
833 | Support for UniPhier SoC family developed by Socionext Inc. | |
834 | (formerly, System LSI Business Division of Panasonic Corporation) | |
66cba041 | 835 | |
0a61ee88 VM |
836 | config STM32 |
837 | bool "Support STM32" | |
ed09a554 | 838 | select CPU_V7M |
66562414 KL |
839 | select DM |
840 | select DM_SERIAL | |
ed09a554 | 841 | |
2444dae5 SG |
842 | config ARCH_ROCKCHIP |
843 | bool "Support Rockchip SoCs" | |
2444dae5 | 844 | select OF_CONTROL |
aa15038c | 845 | select BLK |
2444dae5 | 846 | select DM |
a381bcf5 | 847 | select SPL_DM if SPL |
aa15038c | 848 | select SYS_MALLOC_F |
a381bcf5 | 849 | select SPL_SYS_MALLOC_SIMPLE if SPL |
aa15038c SG |
850 | select DM_GPIO |
851 | select DM_I2C | |
852 | select DM_MMC | |
42b37d8d | 853 | select DM_MMC_OPS |
aa15038c SG |
854 | select DM_SERIAL |
855 | select DM_SPI | |
856 | select DM_SPI_FLASH | |
892742df | 857 | select DM_USB if USB |
8d29e3a4 KY |
858 | select DM_PWM |
859 | select DM_REGULATOR | |
2444dae5 | 860 | |
746f985a ST |
861 | config TARGET_THUNDERX_88XX |
862 | bool "Support ThunderX 88xx" | |
b4ba1693 | 863 | select ARM64 |
746f985a | 864 | select OF_CONTROL |
067716ba | 865 | select SYS_CACHE_SHIFT_7 |
746f985a | 866 | |
dd84058d MY |
867 | endchoice |
868 | ||
4614b891 MY |
869 | source "arch/arm/mach-at91/Kconfig" |
870 | ||
ddf6bd48 | 871 | source "arch/arm/mach-bcm283x/Kconfig" |
3491ba63 | 872 | |
ddf6bd48 | 873 | source "arch/arm/mach-davinci/Kconfig" |
34e609ca | 874 | |
77b55e8c | 875 | source "arch/arm/mach-exynos/Kconfig" |
72df68cc | 876 | |
72a8ff4b | 877 | source "arch/arm/mach-highbank/Kconfig" |
ef2b694c | 878 | |
5cbbd9bd MY |
879 | source "arch/arm/mach-integrator/Kconfig" |
880 | ||
39a72345 | 881 | source "arch/arm/mach-keystone/Kconfig" |
c338f09e | 882 | |
56f86e39 | 883 | source "arch/arm/mach-kirkwood/Kconfig" |
47539e23 | 884 | |
c3d89140 SR |
885 | source "arch/arm/mach-mvebu/Kconfig" |
886 | ||
0a37cf8f YS |
887 | source "arch/arm/cpu/armv7/ls102xa/Kconfig" |
888 | ||
1a8150d4 AA |
889 | source "arch/arm/cpu/armv7/mx7/Kconfig" |
890 | ||
89ebc821 BB |
891 | source "arch/arm/cpu/armv7/mx6/Kconfig" |
892 | ||
424ee3d1 AR |
893 | source "arch/arm/cpu/armv7/mx5/Kconfig" |
894 | ||
a774e088 | 895 | source "arch/arm/cpu/armv7/omap-common/Kconfig" |
6384726d | 896 | |
da28e58a YS |
897 | source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig" |
898 | ||
3e93b4e6 | 899 | source "arch/arm/mach-orion5x/Kconfig" |
22f2be7a | 900 | |
badbb63c | 901 | source "arch/arm/mach-rmobile/Kconfig" |
f40b9898 | 902 | |
bfcef28a BG |
903 | source "arch/arm/mach-meson/Kconfig" |
904 | ||
2444dae5 SG |
905 | source "arch/arm/mach-rockchip/Kconfig" |
906 | ||
225f5eec | 907 | source "arch/arm/mach-s5pc1xx/Kconfig" |
311757be | 908 | |
08592136 MK |
909 | source "arch/arm/mach-snapdragon/Kconfig" |
910 | ||
7865f4b0 MY |
911 | source "arch/arm/mach-socfpga/Kconfig" |
912 | ||
0a61ee88 VM |
913 | source "arch/arm/mach-stm32/Kconfig" |
914 | ||
09f455dc | 915 | source "arch/arm/mach-tegra/Kconfig" |
ddd960e6 | 916 | |
4c425570 | 917 | source "arch/arm/mach-uniphier/Kconfig" |
66cba041 | 918 | |
0107f240 | 919 | source "arch/arm/mach-zynq/Kconfig" |
ddd960e6 | 920 | |
ea624e19 HG |
921 | source "arch/arm/cpu/armv7/Kconfig" |
922 | ||
75580007 SDPP |
923 | source "arch/arm/cpu/armv8/zynqmp/Kconfig" |
924 | ||
23b5877c LW |
925 | source "arch/arm/cpu/armv8/Kconfig" |
926 | ||
a05a6045 BB |
927 | source "arch/arm/imx-common/Kconfig" |
928 | ||
d8ccbe93 | 929 | source "board/bosch/shc/Kconfig" |
a4d79993 | 930 | source "board/BuR/brxre1/Kconfig" |
2290fe06 | 931 | source "board/BuR/brppt1/Kconfig" |
dd84058d | 932 | source "board/CarMediaLab/flea3/Kconfig" |
dd84058d | 933 | source "board/Marvell/aspenite/Kconfig" |
dd84058d | 934 | source "board/Marvell/gplugd/Kconfig" |
dd84058d | 935 | source "board/armadeus/apf27/Kconfig" |
dd84058d MY |
936 | source "board/armltd/vexpress/Kconfig" |
937 | source "board/armltd/vexpress64/Kconfig" | |
dd84058d | 938 | source "board/bluegiga/apx4devkit/Kconfig" |
43486e4c | 939 | source "board/broadcom/bcm23550_w1d/Kconfig" |
dd84058d | 940 | source "board/broadcom/bcm28155_ap/Kconfig" |
abb1678c SR |
941 | source "board/broadcom/bcmcygnus/Kconfig" |
942 | source "board/broadcom/bcmnsp/Kconfig" | |
746f985a | 943 | source "board/cavium/thunderx/Kconfig" |
dd84058d | 944 | source "board/cirrus/edb93xx/Kconfig" |
dd84058d | 945 | source "board/compulab/cm_t335/Kconfig" |
345243ed | 946 | source "board/compulab/cm_t43/Kconfig" |
dd84058d | 947 | source "board/creative/xfi3/Kconfig" |
dd84058d MY |
948 | source "board/denx/m28evk/Kconfig" |
949 | source "board/denx/m53evk/Kconfig" | |
44937214 PK |
950 | source "board/freescale/ls2080a/Kconfig" |
951 | source "board/freescale/ls2080aqds/Kconfig" | |
952 | source "board/freescale/ls2080ardb/Kconfig" | |
550e3dc0 | 953 | source "board/freescale/ls1021aqds/Kconfig" |
02b5d2ed | 954 | source "board/freescale/ls1043aqds/Kconfig" |
c8a7d9da | 955 | source "board/freescale/ls1021atwr/Kconfig" |
126fe70d | 956 | source "board/freescale/ls1046aqds/Kconfig" |
f3a8e2b7 | 957 | source "board/freescale/ls1043ardb/Kconfig" |
dd02936f | 958 | source "board/freescale/ls1046ardb/Kconfig" |
9d044fcb | 959 | source "board/freescale/ls1012aqds/Kconfig" |
3b6e3898 | 960 | source "board/freescale/ls1012ardb/Kconfig" |
ff78aa2b | 961 | source "board/freescale/ls1012afrdm/Kconfig" |
dd84058d MY |
962 | source "board/freescale/mx23evk/Kconfig" |
963 | source "board/freescale/mx25pdk/Kconfig" | |
964 | source "board/freescale/mx28evk/Kconfig" | |
965 | source "board/freescale/mx31ads/Kconfig" | |
966 | source "board/freescale/mx31pdk/Kconfig" | |
967 | source "board/freescale/mx35pdk/Kconfig" | |
968 | source "board/freescale/mx51evk/Kconfig" | |
969 | source "board/freescale/mx53ard/Kconfig" | |
970 | source "board/freescale/mx53evk/Kconfig" | |
971 | source "board/freescale/mx53loco/Kconfig" | |
972 | source "board/freescale/mx53smd/Kconfig" | |
9702ec00 | 973 | source "board/freescale/s32v234evb/Kconfig" |
dd84058d | 974 | source "board/freescale/vf610twr/Kconfig" |
dd84058d MY |
975 | source "board/gumstix/pepper/Kconfig" |
976 | source "board/h2200/Kconfig" | |
345243ed | 977 | source "board/hisilicon/hikey/Kconfig" |
dd84058d | 978 | source "board/imx31_phycore/Kconfig" |
dd84058d | 979 | source "board/isee/igep0033/Kconfig" |
dd84058d | 980 | source "board/mpl/vcma9/Kconfig" |
dd84058d | 981 | source "board/olimex/mx23_olinuxino/Kconfig" |
dd84058d | 982 | source "board/phytec/pcm051/Kconfig" |
931a1d2a | 983 | source "board/phytec/pcm052/Kconfig" |
dd84058d | 984 | source "board/ppcag/bg0900/Kconfig" |
dd84058d | 985 | source "board/samsung/smdk2410/Kconfig" |
dd84058d | 986 | source "board/sandisk/sansa_fuze_plus/Kconfig" |
dd84058d | 987 | source "board/schulercontrol/sc_sps_1/Kconfig" |
dd84058d MY |
988 | source "board/siemens/draco/Kconfig" |
989 | source "board/siemens/pxm2/Kconfig" | |
990 | source "board/siemens/rut/Kconfig" | |
dd84058d | 991 | source "board/silica/pengwyn/Kconfig" |
dd84058d MY |
992 | source "board/spear/spear300/Kconfig" |
993 | source "board/spear/spear310/Kconfig" | |
994 | source "board/spear/spear320/Kconfig" | |
995 | source "board/spear/spear600/Kconfig" | |
996 | source "board/spear/x600/Kconfig" | |
9fa32b12 | 997 | source "board/st/stv0991/Kconfig" |
dd84058d | 998 | source "board/sunxi/Kconfig" |
dd84058d | 999 | source "board/syteco/zmx25/Kconfig" |
9d1b2987 | 1000 | source "board/tcl/sl50/Kconfig" |
dd84058d | 1001 | source "board/ti/am335x/Kconfig" |
dd84058d | 1002 | source "board/ti/am43xx/Kconfig" |
a2bc4321 | 1003 | source "board/birdland/bav335x/Kconfig" |
dd84058d MY |
1004 | source "board/ti/ti814x/Kconfig" |
1005 | source "board/ti/ti816x/Kconfig" | |
dd84058d | 1006 | source "board/timll/devkit3250/Kconfig" |
dd84058d | 1007 | source "board/toradex/colibri_pxa270/Kconfig" |
e7b860fa | 1008 | source "board/toradex/colibri_vf/Kconfig" |
9ee16897 | 1009 | source "board/technologic/ts4800/Kconfig" |
6ce89324 | 1010 | source "board/vscom/baltos/Kconfig" |
dd84058d | 1011 | source "board/woodburn/Kconfig" |
412ae53a | 1012 | source "board/work-microwave/work_92105/Kconfig" |
f19eb154 | 1013 | source "board/zipitz2/Kconfig" |
dd84058d | 1014 | |
51b17d49 MY |
1015 | source "arch/arm/Kconfig.debug" |
1016 | ||
dd84058d | 1017 | endmenu |