blob: 855871c64f41785e92930aed3a304be6fe3de382 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamadabb6b1422016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini067716b2016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada016a9542014-09-14 03:01:51 +090011
Lokesh Vutla37217f02016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinie009bfa2016-08-22 08:22:18 -040017 bool
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010018
Albert ARIBAUD62e92072015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinie009bfa2016-08-22 08:22:18 -040020 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020021
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinie009bfa2016-08-22 08:22:18 -040023 bool
Tom Rini067716b2016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinie009bfa2016-08-22 08:22:18 -040027 bool
Tom Rini067716b2016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinie009bfa2016-08-22 08:22:18 -040031 bool
Tom Rini067716b2016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinie009bfa2016-08-22 08:22:18 -040035 bool
Tom Rini067716b2016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinie009bfa2016-08-22 08:22:18 -040039 bool
Tom Rini067716b2016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinie009bfa2016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini067716b2016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinie009bfa2016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010052
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinie009bfa2016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.pl12d8a722015-03-01 12:44:39 +010057
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinie009bfa2016-08-22 08:22:18 -040059 bool
Tom Rini067716b2016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinie009bfa2016-08-22 08:22:18 -040063 bool
Tom Rini067716b2016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinie009bfa2016-08-22 08:22:18 -040067 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
Masahiro Yamada01541ee2014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078
Marek Vasut66020a62016-05-26 18:01:36 +020079config 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
Tom Rini067716b2016-08-22 08:22:17 -040093config SYS_CACHE_SHIFT_5
94 bool
95
96config SYS_CACHE_SHIFT_6
97 bool
98
99config SYS_CACHE_SHIFT_7
100 bool
101
102config 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
Linus Walleijf91afc42015-01-23 11:50:53 +0100108config 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
Peng Fanf3e9bec2015-08-19 15:48:57 +0800115config 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
Andre Przywaracdaa6332016-05-31 10:45:06 -0700121config 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
Fabio Estevambe725912016-12-15 19:30:40 -0200129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
Tom Rini40d55342017-01-12 13:16:02 -0500131 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
138config SPL_USE_ARCH_MEMCPY
139 bool "Use an assembly optimized implementation of memcpy"
140 default y if USE_ARCH_MEMCPY
Masahiro Yamada085be482016-12-19 19:31:02 +0900141 depends on !ARM64
Fabio Estevambe725912016-12-15 19:30:40 -0200142 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
147config USE_ARCH_MEMSET
148 bool "Use an assembly optimized implementation of memset"
Tom Rini40d55342017-01-12 13:16:02 -0500149 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
156config SPL_USE_ARCH_MEMSET
157 bool "Use an assembly optimized implementation of memset"
158 default y if USE_ARCH_MEMSET
Masahiro Yamada085be482016-12-19 19:31:02 +0900159 depends on !ARM64
Fabio Estevambe725912016-12-15 19:30:40 -0200160 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
Tom Rini272686e2016-11-07 21:34:53 -0500165config ARCH_OMAP2
166 bool
167 select CPU_V7
168 select SUPPORT_SPL
169
Alison Wangec6617c2016-11-10 10:49:03 +0800170config 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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176choice
177 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600178 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900179
Masahiro Yamada4614b892015-02-20 17:04:01 +0900180config ARCH_AT91
181 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900182
183config TARGET_EDB93XX
184 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100185 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187config TARGET_ASPENITE
188 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900190
191config TARGET_GPLUGD
192 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900195config ARCH_DAVINCI
196 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900198 help
199 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamada47539e22014-08-31 07:10:59 +0900201config KIRKWOOD
202 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Stefan Roesec3d89142015-08-25 13:18:38 +0200205config ARCH_MVEBU
Stefan Roese21b29fc2016-05-25 08:13:45 +0200206 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese9cffb232015-09-01 11:27:52 +0200207 select OF_CONTROL
208 select OF_SEPARATE
209 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100210 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200211 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100212 select DM_SPI
213 select DM_SPI_FLASH
Stefan Roesea4884832014-10-22 12:13:19 +0200214
Masahiro Yamadadd840582014-07-30 14:08:14 +0900215config TARGET_DEVKIT3250
216 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300218 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200220config TARGET_WORK_92105
221 bool "Support work_92105"
222 select CPU_ARM926EJS
223 select SUPPORT_SPL
224
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225config TARGET_MX25PDK
226 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900228
Masahiro Yamadadd840582014-07-30 14:08:14 +0900229config TARGET_ZMX25
230 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900232
233config TARGET_APF27
234 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100235 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900236 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238config TARGET_APX4DEVKIT
239 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100240 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900241 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
243config TARGET_XFI3
244 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900246 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_M28EVK
249 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900252
253config TARGET_MX23EVK
254 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900256 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257
258config TARGET_MX28EVK
259 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900261 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900262
263config TARGET_MX23_OLINUXINO
264 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100265 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900266 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267
268config TARGET_BG0900
269 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100270 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900271 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900272
273config TARGET_SANSA_FUZE_PLUS
274 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100275 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900277
278config TARGET_SC_SPS_1
279 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900282
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900283config ORION5X
284 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100285 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900286
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287config TARGET_SPEAR300
288 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100289 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900290
291config TARGET_SPEAR310
292 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100293 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900294
295config TARGET_SPEAR320
296 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100297 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900298
299config TARGET_SPEAR600
300 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100301 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900302
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800303config TARGET_STV0991
304 bool "Support stv0991"
305 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900306 select DM
307 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700308 select DM_SPI
309 select DM_SPI_FLASH
310 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800311
Masahiro Yamadadd840582014-07-30 14:08:14 +0900312config TARGET_X600
313 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100314 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900316
Masahiro Yamadadd840582014-07-30 14:08:14 +0900317config TARGET_IMX31_PHYCORE
318 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100319 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900320
Masahiro Yamadadd840582014-07-30 14:08:14 +0900321config TARGET_MX31ADS
322 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100323 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900324
325config TARGET_MX31PDK
326 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
Masahiro Yamadadd840582014-07-30 14:08:14 +0900330config TARGET_WOODBURN
331 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100332 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900333
334config TARGET_WOODBURN_SD
335 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100336 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900337 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900338
339config TARGET_FLEA3
340 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100341 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
343config TARGET_MX35PDK
344 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100345 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900346
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900347config ARCH_BCM283X
348 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900349 select DM
350 select DM_SERIAL
351 select DM_GPIO
Fabian Vogt76709092016-09-26 14:26:51 +0200352 select OF_CONTROL
Stephen Warren46414292015-02-16 12:16:15 -0700353
Masahiro Yamadadd840582014-07-30 14:08:14 +0900354config TARGET_VEXPRESS_CA15_TC2
355 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100356 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100357 select CPU_V7_HAS_NONSEC
358 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900359
360config TARGET_VEXPRESS_CA5X2
361 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100362 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363
364config TARGET_VEXPRESS_CA9X4
365 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900367
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200368config TARGET_BRXRE1
369 bool "Support BRXRE1"
Tom Rini272686e2016-11-07 21:34:53 -0500370 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200372config TARGET_BRPPT1
373 bool "Support BRPPT1"
Tom Rini272686e2016-11-07 21:34:53 -0500374 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900375
Masahiro Yamadadd840582014-07-30 14:08:14 +0900376config TARGET_DRACO
377 bool "Support draco"
Tom Rini272686e2016-11-07 21:34:53 -0500378 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200379 select DM
380 select DM_SERIAL
381 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900382
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200383config TARGET_THUBAN
384 bool "Support thuban"
Tom Rini272686e2016-11-07 21:34:53 -0500385 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200386 select DM
387 select DM_SERIAL
388 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900389
Heiko Schocher578056c2015-06-15 14:56:41 +0200390config TARGET_RASTABAN
391 bool "Support rastaban"
Tom Rini272686e2016-11-07 21:34:53 -0500392 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200393 select DM
394 select DM_SERIAL
395 select DM_GPIO
Heiko Schocher578056c2015-06-15 14:56:41 +0200396
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200397config TARGET_ETAMIN
Tom Rinie009bfa2016-08-22 08:22:18 -0400398 bool "Support etamin"
Tom Rini272686e2016-11-07 21:34:53 -0500399 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200400 select DM
401 select DM_SERIAL
402 select DM_GPIO
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200403
Masahiro Yamadadd840582014-07-30 14:08:14 +0900404config TARGET_PXM2
405 bool "Support pxm2"
Tom Rini272686e2016-11-07 21:34:53 -0500406 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200407 select DM
408 select DM_SERIAL
409 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900410
411config TARGET_RUT
412 bool "Support rut"
Tom Rini272686e2016-11-07 21:34:53 -0500413 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200414 select DM
415 select DM_SERIAL
416 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
Masahiro Yamadadd840582014-07-30 14:08:14 +0900418config TARGET_TI814X_EVM
419 bool "Support ti814x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500420 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900421
422config TARGET_TI816X_EVM
423 bool "Support ti816x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500424 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900425
Steve Rae43486e42016-06-02 15:10:56 -0700426config TARGET_BCM23550_W1D
427 bool "Support bcm23550_w1d"
428 select CPU_V7
429
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430config TARGET_BCM28155_AP
431 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900433
Steve Raeabb16782014-11-11 11:32:18 -0800434config TARGET_BCMCYGNUS
435 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100436 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700437
Steve Raeabb16782014-11-11 11:32:18 -0800438config TARGET_BCMNSP
439 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700441
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900442config ARCH_EXYNOS
443 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900444 select DM
Simon Glassfc47cf92016-11-23 06:34:40 -0700445 select DM_I2C
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900446 select DM_SPI_FLASH
447 select DM_SERIAL
448 select DM_SPI
449 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600450 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900451
Simon Glass311757b2014-10-07 22:01:50 -0600452config ARCH_S5PC1XX
453 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100454 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900455 select DM
456 select DM_SERIAL
457 select DM_GPIO
Simon Glass08848e92016-11-23 06:34:41 -0700458 select DM_I2C
Simon Glass311757b2014-10-07 22:01:50 -0600459
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900460config ARCH_HIGHBANK
461 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100462 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900463
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900464config ARCH_INTEGRATOR
465 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200466 select DM
467 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900468
Masahiro Yamadac338f092014-08-31 07:11:05 +0900469config ARCH_KEYSTONE
470 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900472 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400473 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200475config 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
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500482config ARCH_MX7
483 bool "Freescale MX7"
484 select CPU_V7
York Sun2c2e2c92016-12-28 08:43:30 -0800485 select SYS_FSL_HAS_SEC if SECURE_BOOT
486 select SYS_FSL_SEC_COMPAT_4
York Sun90b80382016-12-28 08:43:31 -0800487 select SYS_FSL_SEC_LE
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500488
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100489config ARCH_MX6
490 bool "Freescale MX6"
491 select CPU_V7
York Sun2c2e2c92016-12-28 08:43:30 -0800492 select SYS_FSL_HAS_SEC if SECURE_BOOT
493 select SYS_FSL_SEC_COMPAT_4
York Sun90b80382016-12-28 08:43:31 -0800494 select SYS_FSL_SEC_LE
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100495
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200496config ARCH_MX5
497 bool "Freescale MX5"
498 select CPU_V7
499
Masahiro Yamadadd840582014-07-30 14:08:14 +0900500config TARGET_M53EVK
501 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100502 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900503 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900504
Masahiro Yamadadd840582014-07-30 14:08:14 +0900505config TARGET_MX51EVK
506 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100507 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508
509config TARGET_MX53ARD
510 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100511 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900512
513config TARGET_MX53EVK
514 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100515 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516
517config TARGET_MX53LOCO
518 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100519 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900520
521config TARGET_MX53SMD
522 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100523 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900524
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900525config OMAP34XX
526 bool "OMAP34XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500527 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400528 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900529
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900530config OMAP44XX
531 bool "OMAP44XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500532 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400533 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900534
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900535config OMAP54XX
536 bool "OMAP54XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500537 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900538
Madan Srinivas63847262016-05-19 19:10:43 -0500539config AM43XX
540 bool "AM43XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500541 select ARCH_OMAP2
Madan Srinivas63847262016-05-19 19:10:43 -0500542 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
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500549config AM33XX
550 bool "AM33XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500551 select ARCH_OMAP2
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500552 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
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900559config ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900560 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900561 select DM
562 select DM_SERIAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900563
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300564config TARGET_S32V234EVB
565 bool "Support s32v234evb"
566 select ARM64
York Sunc01e4a12016-12-28 08:43:42 -0800567 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300568
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200569config 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
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900579config ARCH_SOCFPGA
580 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100581 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900582 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200583 select OF_CONTROL
584 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900585 select DM
586 select DM_SPI_FLASH
587 select DM_SPI
Marek Vasutbeee6a32016-11-16 17:20:23 +0100588 select ENABLE_ARM_SOC_BOOT0_HOOK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900589
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300590config TARGET_CM_T43
591 bool "Support cm_t43"
Tom Rini983e3702016-11-07 21:34:54 -0500592 select ARCH_OMAP2
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300593
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100594config ARCH_SUNXI
595 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200596 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200597 select CMD_MMC if MMC
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100598 select CMD_USB if DISTRO_DEFAULTS
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200599 select DM
Tom Rini45368822015-06-30 16:51:15 -0400600 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100601 select DM_GPIO
602 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400603 select DM_SERIAL
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100604 select DM_USB if DISTRO_DEFAULTS
Hans de Goeded75111a2016-03-22 22:51:52 +0100605 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200606 select OF_CONTROL
607 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200608 select SPL_STACK_R if SUPPORT_SPL
609 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100610 select SYS_NS16550
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100611 select USB if DISTRO_DEFAULTS
612 select USB_STORAGE if DISTRO_DEFAULTS
613 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede8c7d2292016-06-10 12:19:40 +0200614 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800615
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -0500616config TARGET_TS4600
617 bool "Support TS4600"
618 select CPU_ARM926EJS
619 select SUPPORT_SPL
620
Lucile Quirion9ee16892015-06-30 17:17:47 -0400621config TARGET_TS4800
622 bool "Support TS4800"
623 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800624 select SYS_FSL_ERRATUM_ESDHC_A001
Lucile Quirion9ee16892015-06-30 17:17:47 -0400625
Masahiro Yamadadd840582014-07-30 14:08:14 +0900626config TARGET_VF610TWR
627 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100628 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800629 select SYS_FSL_ERRATUM_ESDHC111
Masahiro Yamadadd840582014-07-30 14:08:14 +0900630
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530631config TARGET_COLIBRI_VF
632 bool "Support Colibri VF50/61"
633 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800634 select SYS_FSL_ERRATUM_ESDHC111
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530635
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200636config TARGET_PCM052
637 bool "Support pcm-052"
638 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800639 select SYS_FSL_ERRATUM_ESDHC111
640 select SYS_FSL_ERRATUM_ESDHC135
641 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200642
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200643config TARGET_BK4R1
644 bool "Support BK4r1"
645 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800646 select SYS_FSL_ERRATUM_ESDHC111
647 select SYS_FSL_ERRATUM_ESDHC135
648 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200649
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900650config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900651 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100652 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900653 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530654 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100655 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900656 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100657 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530658 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100659 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100660 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600661 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530662 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600663 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530664 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100665 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600666 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600667 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900668
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530669config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100670 bool "Support Xilinx ZynqMP Platform"
671 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600672 select DM
673 select OF_CONTROL
674 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100675 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200676 select CLK
677 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600678 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100679
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900680config TEGRA
681 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900682
Linus Walleijf91afc42015-01-23 11:50:53 +0100683config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900684 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900685 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900686
Linus Walleijf91afc42015-01-23 11:50:53 +0100687config TARGET_VEXPRESS64_BASE_FVP
688 bool "Support Versatile Express ARMv8a FVP BASE model"
689 select ARM64
690 select SEMIHOSTING
691
Ryan Harkinfc04b922015-10-09 17:18:02 +0100692config 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
Linus Walleijffc10372015-01-23 14:41:10 +0100701config TARGET_VEXPRESS64_JUNO
702 bool "Support Versatile Express Juno Development Platform"
703 select ARM64
704
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530705config TARGET_LS2080A_EMU
706 bool "Support ls2080a_emu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700707 select ARCH_LS2080A
Masahiro Yamada016a9542014-09-14 03:01:51 +0900708 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100709 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700710 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530711 Support for Freescale LS2080A_EMU platform
712 The LS2080A Development System (EMULATOR) is a pre silicon
713 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700714 Layerscape Architecture processor.
715
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530716config TARGET_LS2080A_SIMU
717 bool "Support ls2080a_simu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700718 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530719 select ARM64
720 select ARMV8_MULTIENTRY
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.
726
727config TARGET_LS2080AQDS
728 bool "Support ls2080aqds"
York Sunfb2bf8c2016-10-04 14:31:48 -0700729 select ARCH_LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700730 select ARM64
731 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700732 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700733 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530734 Support for Freescale LS2080AQDS platform
735 The LS2080A Development System (QDS) is a high-performance
736 development platform that supports the QorIQ LS2080A
737 Layerscape Architecture processor.
738
739config TARGET_LS2080ARDB
740 bool "Support ls2080ardb"
York Sunfb2bf8c2016-10-04 14:31:48 -0700741 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530742 select ARM64
743 select ARMV8_MULTIENTRY
744 select SUPPORT_SPL
745 help
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
York Sune2b65ea2015-03-20 19:28:24 -0700749 Layerscape Architecture processor.
750
Peter Griffin11ac2362015-07-30 18:55:23 +0100751config TARGET_HIKEY
752 bool "Support HiKey 96boards Consumer Edition Platform"
753 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100754 select DM
755 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100756 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100757 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100758 help
759 Support for HiKey 96boards platform. It features a HI6220
760 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
761
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530762config TARGET_LS1012AQDS
763 bool "Support ls1012aqds"
York Sun9533acf2016-09-26 08:09:26 -0700764 select ARCH_LS1012A
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530765 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
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530772config TARGET_LS1012ARDB
773 bool "Support ls1012ardb"
York Sun9533acf2016-09-26 08:09:26 -0700774 select ARCH_LS1012A
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530775 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
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530782config TARGET_LS1012AFRDM
783 bool "Support ls1012afrdm"
York Sun9533acf2016-09-26 08:09:26 -0700784 select ARCH_LS1012A
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530785 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
Wang Huan550e3dc2014-09-05 13:52:44 +0800792config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800793 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100794 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800795 select CPU_V7_HAS_NONSEC
796 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800797 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700798 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900799 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700800 select LS1_DEEP_SLEEP
York Sund26e34c2016-12-28 08:43:40 -0800801 select SYS_FSL_DDR
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900802
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800803config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800804 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100805 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800806 select CPU_V7_HAS_NONSEC
807 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800808 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700809 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900810 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700811 select LS1_DEEP_SLEEP
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800812
Feng Li20c700f2016-11-03 14:15:17 +0800813config 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
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800827config TARGET_LS1043AQDS
828 bool "Support ls1043aqds"
York Sun0a37cf82016-09-26 08:09:27 -0700829 select ARCH_LS1043A
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800830 select ARM64
831 select ARMV8_MULTIENTRY
832 select SUPPORT_SPL
833 help
834 Support for Freescale LS1043AQDS platform.
835
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800836config TARGET_LS1043ARDB
837 bool "Support ls1043ardb"
York Sun0a37cf82016-09-26 08:09:27 -0700838 select ARCH_LS1043A
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800839 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800840 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800841 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800842 help
843 Support for Freescale LS1043ARDB platform.
844
Shaohui Xie126fe702016-09-07 17:56:14 +0800845config TARGET_LS1046AQDS
846 bool "Support ls1046aqds"
York Sunda28e582016-09-26 08:09:24 -0700847 select ARCH_LS1046A
Shaohui Xie126fe702016-09-07 17:56:14 +0800848 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
Mingkai Hudd029362016-09-07 18:47:28 +0800858config TARGET_LS1046ARDB
859 bool "Support ls1046ardb"
York Sunda28e582016-09-26 08:09:24 -0700860 select ARCH_LS1046A
Mingkai Hudd029362016-09-07 18:47:28 +0800861 select ARM64
862 select ARMV8_MULTIENTRY
863 select SUPPORT_SPL
864 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiangdccef2e2016-12-09 16:09:01 +0800865 select POWER_MC34VR500
Mingkai Hudd029362016-09-07 18:47:28 +0800866 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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900872config TARGET_H2200
873 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100874 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700876config TARGET_ZIPITZ2
877 bool "Support zipitz2"
878 select CPU_PXA
879
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880config TARGET_COLIBRI_PXA270
881 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100882 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883
Masahiro Yamada66cba042014-10-03 19:21:07 +0900884config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900885 bool "Socionext UniPhier SoCs"
Masahiro Yamada48264d92016-02-02 21:11:32 +0900886 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900887 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900888 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900889 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900890 select DM_MMC
Masahiro Yamada4fb96c42016-10-08 13:25:31 +0900891 select DM_RESET
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900892 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +0900893 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900894 select OF_CONTROL
895 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +0900896 select PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900897 select SPL
898 select SPL_DM
Masahiro Yamada0298f4c2016-09-20 14:27:00 +0900899 select SPL_LIBCOMMON_SUPPORT
900 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900901 select SPL_OF_CONTROL
Masahiro Yamada27350c92016-09-17 03:33:01 +0900902 select SPL_PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900903 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900904 help
905 Support for UniPhier SoC family developed by Socionext Inc.
906 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900907
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800908config STM32
909 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100910 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100911 select DM
912 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100913
Simon Glass2444dae2015-08-30 16:55:38 -0600914config ARCH_ROCKCHIP
915 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -0600916 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -0600917 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600918 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +0800919 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600920 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +0800921 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600922 select DM_GPIO
923 select DM_I2C
924 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -0600925 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -0600926 select DM_SERIAL
927 select DM_SPI
928 select DM_SPI_FLASH
MengDongyang892742d2016-08-24 12:02:18 +0800929 select DM_USB if USB
Kever Yang8d29e3a2016-09-23 15:57:21 +0800930 select DM_PWM
931 select DM_REGULATOR
Simon Glass2444dae2015-08-30 16:55:38 -0600932
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700933config TARGET_THUNDERX_88XX
934 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200935 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700936 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -0400937 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700938
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939endchoice
940
Masahiro Yamada4614b892015-02-20 17:04:01 +0900941source "arch/arm/mach-at91/Kconfig"
942
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900943source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900944
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900945source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700946
Thomas Abraham77b55e82015-08-03 17:58:00 +0530947source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900948
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900949source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900950
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900951source "arch/arm/mach-integrator/Kconfig"
952
Masahiro Yamada39a72342015-02-20 17:04:11 +0900953source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900954
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900955source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900956
Marcin Niestroj727feaf2016-12-07 16:46:32 +0100957source "arch/arm/mach-litesom/Kconfig"
958
Stefan Roesec3d89142015-08-25 13:18:38 +0200959source "arch/arm/mach-mvebu/Kconfig"
960
York Sun0a37cf82016-09-26 08:09:27 -0700961source "arch/arm/cpu/armv7/ls102xa/Kconfig"
962
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500963source "arch/arm/cpu/armv7/mx7/Kconfig"
964
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100965source "arch/arm/cpu/armv7/mx6/Kconfig"
966
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200967source "arch/arm/cpu/armv7/mx5/Kconfig"
968
Tom Rini983e3702016-11-07 21:34:54 -0500969source "arch/arm/mach-omap2/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500970
York Sunda28e582016-09-26 08:09:24 -0700971source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
972
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900973source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900974
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +0900975source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900976
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200977source "arch/arm/mach-meson/Kconfig"
978
Simon Glass2444dae2015-08-30 16:55:38 -0600979source "arch/arm/mach-rockchip/Kconfig"
980
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900981source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600982
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200983source "arch/arm/mach-snapdragon/Kconfig"
984
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900985source "arch/arm/mach-socfpga/Kconfig"
986
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800987source "arch/arm/mach-stm32/Kconfig"
988
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900989source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900990
Masahiro Yamada4c425572015-02-27 02:26:42 +0900991source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900992
Masahiro Yamada0107f242015-03-16 16:43:22 +0900993source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900994
Hans de Goedeea624e12014-11-14 09:34:30 +0100995source "arch/arm/cpu/armv7/Kconfig"
996
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530997source "arch/arm/cpu/armv8/zynqmp/Kconfig"
998
Linus Walleij23b58772015-03-09 10:53:21 +0100999source "arch/arm/cpu/armv8/Kconfig"
1000
Boris BREZILLONa05a6042015-03-04 13:13:04 +01001001source "arch/arm/imx-common/Kconfig"
1002
Heiko Schocherd8ccbe92016-06-07 08:31:25 +02001003source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +02001004source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +02001005source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001006source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001007source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001008source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001009source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001010source "board/armltd/vexpress/Kconfig"
1011source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001012source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -07001013source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001014source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -08001015source "board/broadcom/bcmcygnus/Kconfig"
1016source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -07001017source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001018source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001019source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001020source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001021source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001022source "board/denx/m28evk/Kconfig"
1023source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +05301024source "board/freescale/ls2080a/Kconfig"
1025source "board/freescale/ls2080aqds/Kconfig"
1026source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +08001027source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +08001028source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +08001029source "board/freescale/ls1021atwr/Kconfig"
Feng Li20c700f2016-11-03 14:15:17 +08001030source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie126fe702016-09-07 17:56:14 +08001031source "board/freescale/ls1046aqds/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +08001032source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hudd029362016-09-07 18:47:28 +08001033source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +05301034source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +05301035source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +05301036source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001037source "board/freescale/mx23evk/Kconfig"
1038source "board/freescale/mx25pdk/Kconfig"
1039source "board/freescale/mx28evk/Kconfig"
1040source "board/freescale/mx31ads/Kconfig"
1041source "board/freescale/mx31pdk/Kconfig"
1042source "board/freescale/mx35pdk/Kconfig"
1043source "board/freescale/mx51evk/Kconfig"
1044source "board/freescale/mx53ard/Kconfig"
1045source "board/freescale/mx53evk/Kconfig"
1046source "board/freescale/mx53loco/Kconfig"
1047source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +03001048source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001049source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001050source "board/gumstix/pepper/Kconfig"
1051source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001052source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001053source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001054source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001055source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001056source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +02001057source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001058source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001059source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001060source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001061source "board/siemens/draco/Kconfig"
1062source "board/siemens/pxm2/Kconfig"
1063source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001064source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001065source "board/spear/spear300/Kconfig"
1066source "board/spear/spear310/Kconfig"
1067source "board/spear/spear320/Kconfig"
1068source "board/spear/spear600/Kconfig"
1069source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -08001070source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001071source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001072source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +02001073source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001074source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001075source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001076source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001077source "board/ti/ti814x/Kconfig"
1078source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001079source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001080source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301081source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -05001082source "board/technologic/ts4600/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001083source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001084source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001085source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001086source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001087source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001088
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001089source "arch/arm/Kconfig.debug"
1090
Masahiro Yamadadd840582014-07-30 14:08:14 +09001091endmenu