Kconfig 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. menu "ARM architecture"
  2. depends on ARM
  3. config SYS_ARCH
  4. default "arm"
  5. config ARM64
  6. bool
  7. config HAS_VBAR
  8. bool
  9. config HAS_THUMB2
  10. bool
  11. config CPU_ARM720T
  12. bool
  13. config CPU_ARM920T
  14. bool
  15. config CPU_ARM926EJS
  16. bool
  17. config CPU_ARM946ES
  18. bool
  19. config CPU_ARM1136
  20. bool
  21. config CPU_ARM1176
  22. bool
  23. select HAS_VBAR
  24. config CPU_V7
  25. bool
  26. select HAS_VBAR
  27. select HAS_THUMB2
  28. config CPU_V7M
  29. bool
  30. select HAS_THUMB2
  31. config CPU_PXA
  32. bool
  33. config CPU_SA1100
  34. bool
  35. config SYS_CPU
  36. default "arm720t" if CPU_ARM720T
  37. default "arm920t" if CPU_ARM920T
  38. default "arm926ejs" if CPU_ARM926EJS
  39. default "arm946es" if CPU_ARM946ES
  40. default "arm1136" if CPU_ARM1136
  41. default "arm1176" if CPU_ARM1176
  42. default "armv7" if CPU_V7
  43. default "armv7m" if CPU_V7M
  44. default "pxa" if CPU_PXA
  45. default "sa1100" if CPU_SA1100
  46. default "armv8" if ARM64
  47. config SEMIHOSTING
  48. bool "support boot from semihosting"
  49. help
  50. In emulated environments, semihosting is a way for
  51. the hosted environment to call out to the emulator to
  52. retrieve files from the host machine.
  53. config SYS_L2CACHE_OFF
  54. bool "L2cache off"
  55. help
  56. If SoC does not support L2CACHE or one do not want to enable
  57. L2CACHE, choose this option.
  58. choice
  59. prompt "Target select"
  60. default TARGET_HIKEY
  61. config ARCH_AT91
  62. bool "Atmel AT91"
  63. config TARGET_EDB93XX
  64. bool "Support edb93xx"
  65. select CPU_ARM920T
  66. config TARGET_VCMA9
  67. bool "Support VCMA9"
  68. select CPU_ARM920T
  69. config TARGET_SMDK2410
  70. bool "Support smdk2410"
  71. select CPU_ARM920T
  72. config TARGET_ASPENITE
  73. bool "Support aspenite"
  74. select CPU_ARM926EJS
  75. config TARGET_GPLUGD
  76. bool "Support gplugd"
  77. select CPU_ARM926EJS
  78. config ARCH_DAVINCI
  79. bool "TI DaVinci"
  80. select CPU_ARM926EJS
  81. help
  82. Support for TI's DaVinci platform.
  83. config KIRKWOOD
  84. bool "Marvell Kirkwood"
  85. select CPU_ARM926EJS
  86. config ARCH_MVEBU
  87. bool "Marvell MVEBU family (Armada XP/38x)"
  88. select CPU_V7
  89. select SUPPORT_SPL
  90. select OF_CONTROL
  91. select OF_SEPARATE
  92. select DM
  93. select DM_SERIAL
  94. config TARGET_DEVKIT3250
  95. bool "Support devkit3250"
  96. select CPU_ARM926EJS
  97. select SUPPORT_SPL
  98. config TARGET_WORK_92105
  99. bool "Support work_92105"
  100. select CPU_ARM926EJS
  101. select SUPPORT_SPL
  102. config TARGET_MX25PDK
  103. bool "Support mx25pdk"
  104. select CPU_ARM926EJS
  105. config TARGET_ZMX25
  106. bool "Support zmx25"
  107. select CPU_ARM926EJS
  108. config TARGET_APF27
  109. bool "Support apf27"
  110. select CPU_ARM926EJS
  111. select SUPPORT_SPL
  112. config TARGET_APX4DEVKIT
  113. bool "Support apx4devkit"
  114. select CPU_ARM926EJS
  115. select SUPPORT_SPL
  116. config TARGET_XFI3
  117. bool "Support xfi3"
  118. select CPU_ARM926EJS
  119. select SUPPORT_SPL
  120. config TARGET_M28EVK
  121. bool "Support m28evk"
  122. select CPU_ARM926EJS
  123. select SUPPORT_SPL
  124. config TARGET_MX23EVK
  125. bool "Support mx23evk"
  126. select CPU_ARM926EJS
  127. select SUPPORT_SPL
  128. config TARGET_MX28EVK
  129. bool "Support mx28evk"
  130. select CPU_ARM926EJS
  131. select SUPPORT_SPL
  132. config TARGET_MX23_OLINUXINO
  133. bool "Support mx23_olinuxino"
  134. select CPU_ARM926EJS
  135. select SUPPORT_SPL
  136. config TARGET_BG0900
  137. bool "Support bg0900"
  138. select CPU_ARM926EJS
  139. select SUPPORT_SPL
  140. config TARGET_SANSA_FUZE_PLUS
  141. bool "Support sansa_fuze_plus"
  142. select CPU_ARM926EJS
  143. select SUPPORT_SPL
  144. config TARGET_SC_SPS_1
  145. bool "Support sc_sps_1"
  146. select CPU_ARM926EJS
  147. select SUPPORT_SPL
  148. config ORION5X
  149. bool "Marvell Orion"
  150. select CPU_ARM926EJS
  151. config TARGET_SPEAR300
  152. bool "Support spear300"
  153. select CPU_ARM926EJS
  154. config TARGET_SPEAR310
  155. bool "Support spear310"
  156. select CPU_ARM926EJS
  157. config TARGET_SPEAR320
  158. bool "Support spear320"
  159. select CPU_ARM926EJS
  160. config TARGET_SPEAR600
  161. bool "Support spear600"
  162. select CPU_ARM926EJS
  163. config TARGET_STV0991
  164. bool "Support stv0991"
  165. select CPU_V7
  166. select DM
  167. select DM_SERIAL
  168. select DM_SPI
  169. select DM_SPI_FLASH
  170. select SPI_FLASH
  171. config TARGET_X600
  172. bool "Support x600"
  173. select CPU_ARM926EJS
  174. select SUPPORT_SPL
  175. config TARGET_IMX31_PHYCORE
  176. bool "Support imx31_phycore"
  177. select CPU_ARM1136
  178. config TARGET_MX31ADS
  179. bool "Support mx31ads"
  180. select CPU_ARM1136
  181. config TARGET_MX31PDK
  182. bool "Support mx31pdk"
  183. select CPU_ARM1136
  184. select SUPPORT_SPL
  185. config TARGET_WOODBURN
  186. bool "Support woodburn"
  187. select CPU_ARM1136
  188. config TARGET_WOODBURN_SD
  189. bool "Support woodburn_sd"
  190. select CPU_ARM1136
  191. select SUPPORT_SPL
  192. config TARGET_FLEA3
  193. bool "Support flea3"
  194. select CPU_ARM1136
  195. config TARGET_MX35PDK
  196. bool "Support mx35pdk"
  197. select CPU_ARM1136
  198. config ARCH_BCM283X
  199. bool "Broadcom BCM283X family"
  200. select DM
  201. select DM_SERIAL
  202. select DM_GPIO
  203. config TARGET_VEXPRESS_CA15_TC2
  204. bool "Support vexpress_ca15_tc2"
  205. select CPU_V7
  206. select CPU_V7_HAS_NONSEC
  207. select CPU_V7_HAS_VIRT
  208. config TARGET_VEXPRESS_CA5X2
  209. bool "Support vexpress_ca5x2"
  210. select CPU_V7
  211. config TARGET_VEXPRESS_CA9X4
  212. bool "Support vexpress_ca9x4"
  213. select CPU_V7
  214. config TARGET_KWB
  215. bool "Support kwb"
  216. select CPU_V7
  217. select SUPPORT_SPL
  218. config TARGET_TSERIES
  219. bool "Support tseries"
  220. select CPU_V7
  221. select SUPPORT_SPL
  222. config TARGET_CM_T335
  223. bool "Support cm_t335"
  224. select CPU_V7
  225. select SUPPORT_SPL
  226. select DM
  227. select DM_SERIAL
  228. select DM_GPIO
  229. config TARGET_PEPPER
  230. bool "Support pepper"
  231. select CPU_V7
  232. select SUPPORT_SPL
  233. select DM
  234. select DM_SERIAL
  235. select DM_GPIO
  236. config TARGET_AM335X_IGEP0033
  237. bool "Support am335x_igep0033"
  238. select CPU_V7
  239. select SUPPORT_SPL
  240. select DM
  241. select DM_SERIAL
  242. select DM_GPIO
  243. config TARGET_PCM051
  244. bool "Support pcm051"
  245. select CPU_V7
  246. select SUPPORT_SPL
  247. select DM
  248. select DM_SERIAL
  249. select DM_GPIO
  250. config TARGET_DRACO
  251. bool "Support draco"
  252. select CPU_V7
  253. select SUPPORT_SPL
  254. config TARGET_THUBAN
  255. bool "Support thuban"
  256. select CPU_V7
  257. select SUPPORT_SPL
  258. config TARGET_RASTABAN
  259. bool "Support rastaban"
  260. select CPU_V7
  261. select SUPPORT_SPL
  262. config TARGET_PXM2
  263. bool "Support pxm2"
  264. select CPU_V7
  265. select SUPPORT_SPL
  266. config TARGET_RUT
  267. bool "Support rut"
  268. select CPU_V7
  269. select SUPPORT_SPL
  270. config TARGET_PENGWYN
  271. bool "Support pengwyn"
  272. select CPU_V7
  273. select SUPPORT_SPL
  274. select DM
  275. select DM_SERIAL
  276. select DM_GPIO
  277. config TARGET_AM335X_BALTOS
  278. bool "Support am335x_baltos"
  279. select CPU_V7
  280. select SUPPORT_SPL
  281. select DM
  282. select DM_SERIAL
  283. select DM_GPIO
  284. config TARGET_AM335X_EVM
  285. bool "Support am335x_evm"
  286. select CPU_V7
  287. select SUPPORT_SPL
  288. select DM
  289. select DM_SERIAL
  290. select DM_GPIO
  291. config TARGET_AM335X_SL50
  292. bool "Support am335x_sl50"
  293. select CPU_V7
  294. select SUPPORT_SPL
  295. select DM
  296. select DM_SERIAL
  297. config TARGET_AM43XX_EVM
  298. bool "Support am43xx_evm"
  299. select CPU_V7
  300. select SUPPORT_SPL
  301. config TARGET_BAV335X
  302. bool "Support bav335x"
  303. select CPU_V7
  304. select SUPPORT_SPL
  305. select DM
  306. select DM_SERIAL
  307. help
  308. The BAV335x OEM Network Processor integrates all the functions of an
  309. embedded network computer in a small, easy to use SODIMM module which
  310. incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
  311. processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
  312. ethernet with simple connection to external connectors.
  313. For more information, visit: http://birdland.com/oem
  314. config TARGET_TI814X_EVM
  315. bool "Support ti814x_evm"
  316. select CPU_V7
  317. select SUPPORT_SPL
  318. config TARGET_TI816X_EVM
  319. bool "Support ti816x_evm"
  320. select CPU_V7
  321. select SUPPORT_SPL
  322. config TARGET_BCM28155_AP
  323. bool "Support bcm28155_ap"
  324. select CPU_V7
  325. config TARGET_BCMCYGNUS
  326. bool "Support bcmcygnus"
  327. select CPU_V7
  328. config TARGET_BCMNSP
  329. bool "Support bcmnsp"
  330. select CPU_V7
  331. config ARCH_EXYNOS
  332. bool "Samsung EXYNOS"
  333. select CPU_V7
  334. select DM
  335. select DM_SPI_FLASH
  336. select DM_SERIAL
  337. select DM_SPI
  338. select DM_GPIO
  339. select DM_KEYBOARD
  340. config ARCH_S5PC1XX
  341. bool "Samsung S5PC1XX"
  342. select CPU_V7
  343. select DM
  344. select DM_SERIAL
  345. select DM_GPIO
  346. config ARCH_HIGHBANK
  347. bool "Calxeda Highbank"
  348. select CPU_V7
  349. config ARCH_INTEGRATOR
  350. bool "ARM Ltd. Integrator family"
  351. select DM
  352. select DM_SERIAL
  353. config ARCH_KEYSTONE
  354. bool "TI Keystone"
  355. select CPU_V7
  356. select SUPPORT_SPL
  357. config ARCH_MX7
  358. bool "Freescale MX7"
  359. select CPU_V7
  360. config ARCH_MX6
  361. bool "Freescale MX6"
  362. select CPU_V7
  363. config ARCH_MX5
  364. bool "Freescale MX5"
  365. select CPU_V7
  366. config TARGET_M53EVK
  367. bool "Support m53evk"
  368. select CPU_V7
  369. select SUPPORT_SPL
  370. config TARGET_MX51EVK
  371. bool "Support mx51evk"
  372. select CPU_V7
  373. config TARGET_MX53ARD
  374. bool "Support mx53ard"
  375. select CPU_V7
  376. config TARGET_MX53EVK
  377. bool "Support mx53evk"
  378. select CPU_V7
  379. config TARGET_MX53LOCO
  380. bool "Support mx53loco"
  381. select CPU_V7
  382. config TARGET_MX53SMD
  383. bool "Support mx53smd"
  384. select CPU_V7
  385. config OMAP34XX
  386. bool "OMAP34XX SoC"
  387. select CPU_V7
  388. config OMAP44XX
  389. bool "OMAP44XX SoC"
  390. select CPU_V7
  391. select SUPPORT_SPL
  392. config OMAP54XX
  393. bool "OMAP54XX SoC"
  394. select CPU_V7
  395. select SUPPORT_SPL
  396. config RMOBILE
  397. bool "Renesas ARM SoCs"
  398. select CPU_V7
  399. config ARCH_SOCFPGA
  400. bool "Altera SOCFPGA family"
  401. select CPU_V7
  402. select SUPPORT_SPL
  403. select OF_CONTROL
  404. select SPL_OF_CONTROL
  405. select DM
  406. select DM_SPI_FLASH
  407. select DM_SPI
  408. config TARGET_CM_T43
  409. bool "Support cm_t43"
  410. select CPU_V7
  411. select SUPPORT_SPL
  412. config ARCH_SUNXI
  413. bool "Support sunxi (Allwinner) SoCs"
  414. select CMD_USB
  415. select DM
  416. select DM_GPIO
  417. select DM_ETH
  418. select DM_SERIAL
  419. select DM_USB
  420. select OF_CONTROL
  421. select OF_SEPARATE
  422. select SPL_STACK_R if !MACH_SUN9I
  423. select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
  424. select USB
  425. select USB_STORAGE
  426. select USB_KEYBOARD
  427. config TARGET_TS4800
  428. bool "Support TS4800"
  429. select CPU_V7
  430. config TARGET_VF610TWR
  431. bool "Support vf610twr"
  432. select CPU_V7
  433. config TARGET_COLIBRI_VF
  434. bool "Support Colibri VF50/61"
  435. select CPU_V7
  436. config TARGET_PCM052
  437. bool "Support pcm-052"
  438. select CPU_V7
  439. config ARCH_ZYNQ
  440. bool "Xilinx Zynq Platform"
  441. select CPU_V7
  442. select SUPPORT_SPL
  443. select OF_CONTROL
  444. select SPL_OF_CONTROL
  445. select DM
  446. select SPL_DM
  447. select DM_SPI
  448. select DM_SERIAL
  449. select DM_SPI_FLASH
  450. select SPL_SEPARATE_BSS
  451. config ARCH_ZYNQMP
  452. bool "Support Xilinx ZynqMP Platform"
  453. select ARM64
  454. select DM
  455. select OF_CONTROL
  456. select DM_SERIAL
  457. config TEGRA
  458. bool "NVIDIA Tegra"
  459. config TARGET_VEXPRESS64_AEMV8A
  460. bool "Support vexpress_aemv8a"
  461. select ARM64
  462. config TARGET_VEXPRESS64_BASE_FVP
  463. bool "Support Versatile Express ARMv8a FVP BASE model"
  464. select ARM64
  465. select SEMIHOSTING
  466. config TARGET_VEXPRESS64_BASE_FVP_DRAM
  467. bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
  468. select ARM64
  469. help
  470. This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
  471. the default config to allow the user to load the images directly into
  472. DRAM using model parameters rather than by using semi-hosting to load
  473. the files from the host filesystem.
  474. config TARGET_VEXPRESS64_JUNO
  475. bool "Support Versatile Express Juno Development Platform"
  476. select ARM64
  477. config TARGET_LS2080A_EMU
  478. bool "Support ls2080a_emu"
  479. select ARM64
  480. select ARMV8_MULTIENTRY
  481. help
  482. Support for Freescale LS2080A_EMU platform
  483. The LS2080A Development System (EMULATOR) is a pre silicon
  484. development platform that supports the QorIQ LS2080A
  485. Layerscape Architecture processor.
  486. config TARGET_LS2080A_SIMU
  487. bool "Support ls2080a_simu"
  488. select ARM64
  489. select ARMV8_MULTIENTRY
  490. help
  491. Support for Freescale LS2080A_SIMU platform
  492. The LS2080A Development System (QDS) is a pre silicon
  493. development platform that supports the QorIQ LS2080A
  494. Layerscape Architecture processor.
  495. config TARGET_LS2080AQDS
  496. bool "Support ls2080aqds"
  497. select ARM64
  498. select ARMV8_MULTIENTRY
  499. select SUPPORT_SPL
  500. help
  501. Support for Freescale LS2080AQDS platform
  502. The LS2080A Development System (QDS) is a high-performance
  503. development platform that supports the QorIQ LS2080A
  504. Layerscape Architecture processor.
  505. config TARGET_LS2080ARDB
  506. bool "Support ls2080ardb"
  507. select ARM64
  508. select ARMV8_MULTIENTRY
  509. select SUPPORT_SPL
  510. help
  511. Support for Freescale LS2080ARDB platform.
  512. The LS2080A Reference design board (RDB) is a high-performance
  513. development platform that supports the QorIQ LS2080A
  514. Layerscape Architecture processor.
  515. config TARGET_HIKEY
  516. bool "Support HiKey 96boards Consumer Edition Platform"
  517. select ARM64
  518. select DM
  519. select DM_GPIO
  520. select DM_SERIAL
  521. help
  522. Support for HiKey 96boards platform. It features a HI6220
  523. SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
  524. config TARGET_LS1021AQDS
  525. bool "Support ls1021aqds"
  526. select CPU_V7
  527. select SUPPORT_SPL
  528. config TARGET_LS1021ATWR
  529. bool "Support ls1021atwr"
  530. select CPU_V7
  531. select SUPPORT_SPL
  532. config TARGET_LS1043ARDB
  533. bool "Support ls1043ardb"
  534. select ARM64
  535. select ARMV8_MULTIENTRY
  536. select SUPPORT_SPL
  537. help
  538. Support for Freescale LS1043ARDB platform.
  539. config TARGET_H2200
  540. bool "Support h2200"
  541. select CPU_PXA
  542. config TARGET_COLIBRI_PXA270
  543. bool "Support colibri_pxa270"
  544. select CPU_PXA
  545. config ARCH_UNIPHIER
  546. bool "Socionext UniPhier SoCs"
  547. select CPU_V7
  548. select SUPPORT_SPL
  549. select SPL
  550. select OF_CONTROL
  551. select SPL_OF_CONTROL
  552. select DM
  553. select SPL_DM
  554. select DM_SERIAL
  555. select DM_I2C
  556. help
  557. Support for UniPhier SoC family developed by Socionext Inc.
  558. (formerly, System LSI Business Division of Panasonic Corporation)
  559. config TARGET_STM32F429_DISCOVERY
  560. bool "Support STM32F429 Discovery"
  561. select CPU_V7M
  562. config ARCH_ROCKCHIP
  563. bool "Support Rockchip SoCs"
  564. select SUPPORT_SPL
  565. select SPL
  566. select OF_CONTROL
  567. select CPU_V7
  568. select DM
  569. endchoice
  570. source "arch/arm/mach-at91/Kconfig"
  571. source "arch/arm/mach-bcm283x/Kconfig"
  572. source "arch/arm/mach-davinci/Kconfig"
  573. source "arch/arm/mach-exynos/Kconfig"
  574. source "arch/arm/mach-highbank/Kconfig"
  575. source "arch/arm/mach-integrator/Kconfig"
  576. source "arch/arm/mach-keystone/Kconfig"
  577. source "arch/arm/mach-kirkwood/Kconfig"
  578. source "arch/arm/mach-mvebu/Kconfig"
  579. source "arch/arm/cpu/armv7/mx7/Kconfig"
  580. source "arch/arm/cpu/armv7/mx6/Kconfig"
  581. source "arch/arm/cpu/armv7/mx5/Kconfig"
  582. source "arch/arm/cpu/armv7/omap3/Kconfig"
  583. source "arch/arm/cpu/armv7/omap4/Kconfig"
  584. source "arch/arm/cpu/armv7/omap5/Kconfig"
  585. source "arch/arm/mach-orion5x/Kconfig"
  586. source "arch/arm/cpu/armv7/rmobile/Kconfig"
  587. source "arch/arm/mach-rockchip/Kconfig"
  588. source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
  589. source "arch/arm/mach-socfpga/Kconfig"
  590. source "arch/arm/mach-tegra/Kconfig"
  591. source "arch/arm/mach-uniphier/Kconfig"
  592. source "arch/arm/mach-zynq/Kconfig"
  593. source "arch/arm/cpu/armv7/Kconfig"
  594. source "arch/arm/cpu/armv8/zynqmp/Kconfig"
  595. source "arch/arm/cpu/armv8/Kconfig"
  596. source "arch/arm/imx-common/Kconfig"
  597. source "board/BuR/kwb/Kconfig"
  598. source "board/BuR/tseries/Kconfig"
  599. source "board/CarMediaLab/flea3/Kconfig"
  600. source "board/Marvell/aspenite/Kconfig"
  601. source "board/Marvell/db-88f6820-gp/Kconfig"
  602. source "board/Marvell/db-mv784mp-gp/Kconfig"
  603. source "board/Marvell/gplugd/Kconfig"
  604. source "board/armadeus/apf27/Kconfig"
  605. source "board/armltd/vexpress/Kconfig"
  606. source "board/armltd/vexpress64/Kconfig"
  607. source "board/bluegiga/apx4devkit/Kconfig"
  608. source "board/broadcom/bcm28155_ap/Kconfig"
  609. source "board/broadcom/bcmcygnus/Kconfig"
  610. source "board/broadcom/bcmnsp/Kconfig"
  611. source "board/cirrus/edb93xx/Kconfig"
  612. source "board/compulab/cm_t335/Kconfig"
  613. source "board/compulab/cm_t43/Kconfig"
  614. source "board/creative/xfi3/Kconfig"
  615. source "board/denx/m28evk/Kconfig"
  616. source "board/denx/m53evk/Kconfig"
  617. source "board/freescale/ls2080a/Kconfig"
  618. source "board/freescale/ls2080aqds/Kconfig"
  619. source "board/freescale/ls2080ardb/Kconfig"
  620. source "board/freescale/ls1021aqds/Kconfig"
  621. source "board/freescale/ls1021atwr/Kconfig"
  622. source "board/freescale/ls1043ardb/Kconfig"
  623. source "board/freescale/mx23evk/Kconfig"
  624. source "board/freescale/mx25pdk/Kconfig"
  625. source "board/freescale/mx28evk/Kconfig"
  626. source "board/freescale/mx31ads/Kconfig"
  627. source "board/freescale/mx31pdk/Kconfig"
  628. source "board/freescale/mx35pdk/Kconfig"
  629. source "board/freescale/mx51evk/Kconfig"
  630. source "board/freescale/mx53ard/Kconfig"
  631. source "board/freescale/mx53evk/Kconfig"
  632. source "board/freescale/mx53loco/Kconfig"
  633. source "board/freescale/mx53smd/Kconfig"
  634. source "board/freescale/vf610twr/Kconfig"
  635. source "board/gumstix/pepper/Kconfig"
  636. source "board/h2200/Kconfig"
  637. source "board/hisilicon/hikey/Kconfig"
  638. source "board/imx31_phycore/Kconfig"
  639. source "board/isee/igep0033/Kconfig"
  640. source "board/maxbcm/Kconfig"
  641. source "board/mpl/vcma9/Kconfig"
  642. source "board/olimex/mx23_olinuxino/Kconfig"
  643. source "board/phytec/pcm051/Kconfig"
  644. source "board/phytec/pcm052/Kconfig"
  645. source "board/ppcag/bg0900/Kconfig"
  646. source "board/samsung/smdk2410/Kconfig"
  647. source "board/sandisk/sansa_fuze_plus/Kconfig"
  648. source "board/schulercontrol/sc_sps_1/Kconfig"
  649. source "board/siemens/draco/Kconfig"
  650. source "board/siemens/pxm2/Kconfig"
  651. source "board/siemens/rut/Kconfig"
  652. source "board/silica/pengwyn/Kconfig"
  653. source "board/spear/spear300/Kconfig"
  654. source "board/spear/spear310/Kconfig"
  655. source "board/spear/spear320/Kconfig"
  656. source "board/spear/spear600/Kconfig"
  657. source "board/spear/x600/Kconfig"
  658. source "board/st/stm32f429-discovery/Kconfig"
  659. source "board/st/stv0991/Kconfig"
  660. source "board/sunxi/Kconfig"
  661. source "board/syteco/zmx25/Kconfig"
  662. source "board/tcl/sl50/Kconfig"
  663. source "board/ti/am335x/Kconfig"
  664. source "board/ti/am43xx/Kconfig"
  665. source "board/birdland/bav335x/Kconfig"
  666. source "board/ti/ti814x/Kconfig"
  667. source "board/ti/ti816x/Kconfig"
  668. source "board/timll/devkit3250/Kconfig"
  669. source "board/toradex/colibri_pxa270/Kconfig"
  670. source "board/toradex/colibri_vf/Kconfig"
  671. source "board/technologic/ts4800/Kconfig"
  672. source "board/vscom/baltos/Kconfig"
  673. source "board/woodburn/Kconfig"
  674. source "board/work-microwave/work_92105/Kconfig"
  675. source "arch/arm/Kconfig.debug"
  676. endmenu