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