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