blob: 5080a96c401dc4fae9b4f021fb6995043f3ae859 [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamada653e9fe2016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini84f9b612016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada0d46c342014-09-14 03:01:51 +090011
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinibca01962016-08-22 08:22:18 -040017 bool
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010018
Albert ARIBAUDa3823222015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinibca01962016-08-22 08:22:18 -040020 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020021
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -040023 bool
Tom Rini84f9b612016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -040027 bool
Tom Rini84f9b612016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -040031 bool
Tom Rini84f9b612016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -040035 bool
Tom Rini84f9b612016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -040039 bool
Tom Rini84f9b612016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinibca01962016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010052
rev13@wp.plb3b57e82015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinibca01962016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.plb3b57e82015-03-01 12:44:39 +010057
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -040059 bool
Tom Rini84f9b612016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -040063 bool
Tom Rini84f9b612016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinibca01962016-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 Yamadadade3b02014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010078
Marek Vasutb06c9542016-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 Rini84f9b612016-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 Walleij800d6fd2015-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 Fan10ddab42015-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 Przywara48321ba2016-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 Estevam988f5052016-12-15 19:30:40 -0200129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
131 default y if CPU_V7
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900132 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200133 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 USE_ARCH_MEMSET
139 bool "Use an assembly optimized implementation of memset"
140 default y if CPU_V7
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900141 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200142 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
Tom Rini5c02a1f2016-11-07 21:34:53 -0500147config ARCH_OMAP2
148 bool
149 select CPU_V7
150 select SUPPORT_SPL
151
Alison Wang73818d52016-11-10 10:49:03 +0800152config 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
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900158choice
159 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600160 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900161
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900162config ARCH_AT91
163 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900164
165config TARGET_EDB93XX
166 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100167 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900168
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900169config TARGET_ASPENITE
170 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900172
173config TARGET_GPLUGD
174 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900176
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900177config ARCH_DAVINCI
178 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100179 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900180 help
181 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900182
Masahiro Yamadad7570852014-08-31 07:10:59 +0900183config KIRKWOOD
184 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100185 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186
Stefan Roese383e0c12015-08-25 13:18:38 +0200187config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200188 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200189 select OF_CONTROL
190 select OF_SEPARATE
191 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100192 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200193 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100194 select DM_SPI
195 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200196
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900197config TARGET_DEVKIT3250
198 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300200 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900201
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200202config TARGET_WORK_92105
203 bool "Support work_92105"
204 select CPU_ARM926EJS
205 select SUPPORT_SPL
206
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900207config TARGET_MX25PDK
208 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100209 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900210
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900211config TARGET_ZMX25
212 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100213 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900214
215config TARGET_APF27
216 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900218 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900219
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900220config TARGET_APX4DEVKIT
221 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100222 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900223 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900224
225config TARGET_XFI3
226 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900228 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900229
230config TARGET_M28EVK
231 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900233 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900234
235config TARGET_MX23EVK
236 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900239
240config TARGET_MX28EVK
241 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100242 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900243 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900244
245config TARGET_MX23_OLINUXINO
246 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100247 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900248 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900249
250config TARGET_BG0900
251 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100252 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900253 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900254
255config TARGET_SANSA_FUZE_PLUS
256 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100257 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900258 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900259
260config TARGET_SC_SPS_1
261 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100262 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900263 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900264
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900265config ORION5X
266 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100267 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900268
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900269config TARGET_SPEAR300
270 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100271 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900272
273config TARGET_SPEAR310
274 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100275 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900276
277config TARGET_SPEAR320
278 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100279 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900280
281config TARGET_SPEAR600
282 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100283 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900284
Vikas Manocha33913c52014-11-18 10:42:22 -0800285config TARGET_STV0991
286 bool "Support stv0991"
287 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900288 select DM
289 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700290 select DM_SPI
291 select DM_SPI_FLASH
292 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800293
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294config TARGET_X600
295 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100296 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900297 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900298
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299config TARGET_IMX31_PHYCORE
300 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100301 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900302
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900303config TARGET_MX31ADS
304 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100305 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900306
307config TARGET_MX31PDK
308 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100309 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900311
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900312config TARGET_WOODBURN
313 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100314 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900315
316config TARGET_WOODBURN_SD
317 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100318 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900319 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900320
321config TARGET_FLEA3
322 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100323 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324
325config TARGET_MX35PDK
326 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900328
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900329config ARCH_BCM283X
330 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900331 select DM
332 select DM_SERIAL
333 select DM_GPIO
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200334 select OF_CONTROL
Stephen Warrendc7ea682015-02-16 12:16:15 -0700335
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900336config TARGET_VEXPRESS_CA15_TC2
337 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100338 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100339 select CPU_V7_HAS_NONSEC
340 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341
342config TARGET_VEXPRESS_CA5X2
343 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100344 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900345
346config TARGET_VEXPRESS_CA9X4
347 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100348 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900349
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200350config TARGET_BRXRE1
351 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500352 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900353
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200354config TARGET_BRPPT1
355 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500356 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900357
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900358config TARGET_DRACO
359 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500360 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200361 select DM
362 select DM_SERIAL
363 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900364
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200365config TARGET_THUBAN
366 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500367 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200368 select DM
369 select DM_SERIAL
370 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900371
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200372config TARGET_RASTABAN
373 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500374 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200375 select DM
376 select DM_SERIAL
377 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200378
Heiko Schochercbec11a2016-06-07 08:55:45 +0200379config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400380 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500381 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200382 select DM
383 select DM_SERIAL
384 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200385
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900386config TARGET_PXM2
387 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500388 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200389 select DM
390 select DM_SERIAL
391 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900392
393config TARGET_RUT
394 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500395 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200396 select DM
397 select DM_SERIAL
398 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900399
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900400config TARGET_TI814X_EVM
401 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500402 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900403
404config TARGET_TI816X_EVM
405 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500406 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900407
Steve Rae45f2c702016-06-02 15:10:56 -0700408config TARGET_BCM23550_W1D
409 bool "Support bcm23550_w1d"
410 select CPU_V7
411
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900412config TARGET_BCM28155_AP
413 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100414 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900415
Steve Rae1c5f31c2014-11-11 11:32:18 -0800416config TARGET_BCMCYGNUS
417 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100418 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700419
Steve Rae1c5f31c2014-11-11 11:32:18 -0800420config TARGET_BCMNSP
421 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100422 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700423
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900424config ARCH_EXYNOS
425 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900426 select DM
Simon Glass7bbb7d92016-11-23 06:34:40 -0700427 select DM_I2C
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900428 select DM_SPI_FLASH
429 select DM_SERIAL
430 select DM_SPI
431 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600432 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900433
Simon Glass96aa0722014-10-07 22:01:50 -0600434config ARCH_S5PC1XX
435 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100436 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900437 select DM
438 select DM_SERIAL
439 select DM_GPIO
Simon Glassc6aa9702016-11-23 06:34:41 -0700440 select DM_I2C
Simon Glass96aa0722014-10-07 22:01:50 -0600441
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900442config ARCH_HIGHBANK
443 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100444 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900445
Masahiro Yamadacad44162015-04-21 21:59:36 +0900446config ARCH_INTEGRATOR
447 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200448 select DM
449 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900450
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900451config ARCH_KEYSTONE
452 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100453 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900454 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400455 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900456
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200457config 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
Adrian Alonso98810772015-09-03 11:49:28 -0500464config ARCH_MX7
465 bool "Freescale MX7"
466 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800467 select SYS_FSL_HAS_SEC if SECURE_BOOT
468 select SYS_FSL_SEC_COMPAT_4
Adrian Alonso98810772015-09-03 11:49:28 -0500469
Boris BREZILLON51e82662015-03-04 13:13:03 +0100470config ARCH_MX6
471 bool "Freescale MX6"
472 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800473 select SYS_FSL_HAS_SEC if SECURE_BOOT
474 select SYS_FSL_SEC_COMPAT_4
Boris BREZILLON51e82662015-03-04 13:13:03 +0100475
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200476config ARCH_MX5
477 bool "Freescale MX5"
478 select CPU_V7
479
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900480config TARGET_M53EVK
481 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900483 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900484
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900485config TARGET_MX51EVK
486 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900488
489config TARGET_MX53ARD
490 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100491 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900492
493config TARGET_MX53EVK
494 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100495 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900496
497config TARGET_MX53LOCO
498 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100499 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900500
501config TARGET_MX53SMD
502 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900504
Masahiro Yamadadd678432014-08-31 07:11:02 +0900505config OMAP34XX
506 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500507 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400508 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900509
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900510config OMAP44XX
511 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500512 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400513 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900514
Masahiro Yamada420b8162014-08-31 07:11:04 +0900515config OMAP54XX
516 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500517 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500518
519config AM43XX
520 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500521 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500522 help
523 Support for AM43xx SOC from Texas Instruments.
524 The AM43xx high performance SOC features a Cortex-A9
525 ARM core, a quad core PRU-ICSS for industrial Ethernet
526 protocols, dual camera support, optional 3D graphics
527 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900528
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500529config AM33XX
530 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500531 select ARCH_OMAP2
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500532 help
533 Support for AM335x SOC from Texas Instruments.
534 The AM335x high performance SOC features a Cortex-A8
535 ARM core, a dual core PRU-ICSS for industrial Ethernet
536 protocols, optional 3D graphics and an optional customer
537 programmable secure boot.
538
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900539config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900540 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900541 select DM
542 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300543
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300544config TARGET_S32V234EVB
545 bool "Support s32v234evb"
546 select ARM64
547
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200548config ARCH_SNAPDRAGON
549 bool "Qualcomm Snapdragon SoCs"
550 select ARM64
551 select DM
552 select DM_GPIO
553 select DM_SERIAL
554 select SPMI
555 select OF_CONTROL
556 select OF_SEPARATE
557
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900558config ARCH_SOCFPGA
559 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100560 select CPU_V7
561 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200562 select OF_CONTROL
563 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900564 select DM
565 select DM_SPI_FLASH
566 select DM_SPI
Marek Vasutbcd861b2016-11-16 17:20:23 +0100567 select ENABLE_ARM_SOC_BOOT0_HOOK
Marek Vasut69295472014-12-30 18:16:08 +0100568
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300569config TARGET_CM_T43
570 bool "Support cm_t43"
Tom Rini28eec372016-11-07 21:34:54 -0500571 select ARCH_OMAP2
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300572
Ian Campbelld8e69e02014-10-24 21:20:44 +0100573config ARCH_SUNXI
574 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200575 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200576 select CMD_MMC if MMC
Yann E. MORINe28217d2016-10-31 22:33:40 +0100577 select CMD_USB if DISTRO_DEFAULTS
Hans de Goede03914882015-04-15 20:46:48 +0200578 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400579 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100580 select DM_GPIO
581 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400582 select DM_SERIAL
Yann E. MORINe28217d2016-10-31 22:33:40 +0100583 select DM_USB if DISTRO_DEFAULTS
Hans de Goede48a234a2016-03-22 22:51:52 +0100584 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200585 select OF_CONTROL
586 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200587 select SPL_STACK_R if SUPPORT_SPL
588 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100589 select SYS_NS16550
Yann E. MORINe28217d2016-10-31 22:33:40 +0100590 select USB if DISTRO_DEFAULTS
591 select USB_STORAGE if DISTRO_DEFAULTS
592 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede42a31822016-06-10 12:19:40 +0200593 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800594
Sebastien Bourdelinf012f662016-11-08 12:18:07 -0500595config TARGET_TS4600
596 bool "Support TS4600"
597 select CPU_ARM926EJS
598 select SUPPORT_SPL
599
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400600config TARGET_TS4800
601 bool "Support TS4800"
602 select CPU_V7
603
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900604config TARGET_VF610TWR
605 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100606 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900607
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530608config TARGET_COLIBRI_VF
609 bool "Support Colibri VF50/61"
610 select CPU_V7
611
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200612config TARGET_PCM052
613 bool "Support pcm-052"
614 select CPU_V7
615
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200616config TARGET_BK4R1
617 bool "Support BK4r1"
618 select CPU_V7
619
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900620config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900621 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900623 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530624 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100625 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900626 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100627 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530628 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100629 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100630 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600631 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530632 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600633 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530634 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100635 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600636 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600637 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900638
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530639config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100640 bool "Support Xilinx ZynqMP Platform"
641 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600642 select DM
643 select OF_CONTROL
644 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100645 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200646 select CLK
647 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600648 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100649
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900650config TEGRA
651 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900652
Linus Walleij800d6fd2015-01-23 11:50:53 +0100653config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900654 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900655 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900656
Linus Walleij800d6fd2015-01-23 11:50:53 +0100657config TARGET_VEXPRESS64_BASE_FVP
658 bool "Support Versatile Express ARMv8a FVP BASE model"
659 select ARM64
660 select SEMIHOSTING
661
Ryan Harkinb6b96652015-10-09 17:18:02 +0100662config TARGET_VEXPRESS64_BASE_FVP_DRAM
663 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
664 select ARM64
665 help
666 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
667 the default config to allow the user to load the images directly into
668 DRAM using model parameters rather than by using semi-hosting to load
669 the files from the host filesystem.
670
Linus Walleijc5822502015-01-23 14:41:10 +0100671config TARGET_VEXPRESS64_JUNO
672 bool "Support Versatile Express Juno Development Platform"
673 select ARM64
674
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530675config TARGET_LS2080A_EMU
676 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700677 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900678 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100679 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530680 help
681 Support for Freescale LS2080A_EMU platform
682 The LS2080A Development System (EMULATOR) is a pre silicon
683 development platform that supports the QorIQ LS2080A
684 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900685
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530686config TARGET_LS2080A_SIMU
687 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700688 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900689 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100690 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530691 help
692 Support for Freescale LS2080A_SIMU platform
693 The LS2080A Development System (QDS) is a pre silicon
694 development platform that supports the QorIQ LS2080A
695 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900696
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530697config TARGET_LS2080AQDS
698 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700699 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700700 select ARM64
701 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700702 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700703 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530704 Support for Freescale LS2080AQDS platform
705 The LS2080A Development System (QDS) is a high-performance
706 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700707 Layerscape Architecture processor.
708
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530709config TARGET_LS2080ARDB
710 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700711 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700712 select ARM64
713 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700714 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700715 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530716 Support for Freescale LS2080ARDB platform.
717 The LS2080A Reference design board (RDB) is a high-performance
718 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700719 Layerscape Architecture processor.
720
Peter Griffin31f327e2015-07-30 18:55:23 +0100721config TARGET_HIKEY
722 bool "Support HiKey 96boards Consumer Edition Platform"
723 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100724 select DM
725 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100726 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100727 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100728 help
729 Support for HiKey 96boards platform. It features a HI6220
730 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
731
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530732config TARGET_LS1012AQDS
733 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700734 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530735 select ARM64
736 help
737 Support for Freescale LS1012AQDS platform.
738 The LS1012A Development System (QDS) is a high-performance
739 development platform that supports the QorIQ LS1012A
740 Layerscape Architecture processor.
741
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530742config TARGET_LS1012ARDB
743 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700744 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530745 select ARM64
746 help
747 Support for Freescale LS1012ARDB platform.
748 The LS1012A Reference design board (RDB) is a high-performance
749 development platform that supports the QorIQ LS1012A
750 Layerscape Architecture processor.
751
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530752config TARGET_LS1012AFRDM
753 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700754 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530755 select ARM64
756 help
757 Support for Freescale LS1012AFRDM platform.
758 The LS1012A Freedom board (FRDM) is a high-performance
759 development platform that supports the QorIQ LS1012A
760 Layerscape Architecture processor.
761
Wang Huanf0ce7d62014-09-05 13:52:44 +0800762config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800763 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100764 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800765 select CPU_V7_HAS_NONSEC
766 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800767 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700768 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900769 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700770 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900771
Wang Huanddf89f92014-09-05 13:52:45 +0800772config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800773 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100774 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800775 select CPU_V7_HAS_NONSEC
776 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800777 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700778 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900779 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700780 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800781
Feng Li39e112d2016-11-03 14:15:17 +0800782config TARGET_LS1021AIOT
783 bool "Support ls1021aiot"
784 select CPU_V7
785 select CPU_V7_HAS_NONSEC
786 select CPU_V7_HAS_VIRT
787 select SUPPORT_SPL
788 select ARCH_LS1021A
789 select ARCH_SUPPORT_PSCI
790 help
791 Support for Freescale LS1021AIOT platform.
792 The LS1021A Freescale board (IOT) is a high-performance
793 development platform that supports the QorIQ LS1021A
794 Layerscape Architecture processor.
795
Shaohui Xiedd335672015-11-11 17:58:37 +0800796config TARGET_LS1043AQDS
797 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700798 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800799 select ARM64
800 select ARMV8_MULTIENTRY
801 select SUPPORT_SPL
802 help
803 Support for Freescale LS1043AQDS platform.
804
Mingkai Hueee86ff2015-10-26 19:47:52 +0800805config TARGET_LS1043ARDB
806 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700807 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800808 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800809 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800810 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800811 help
812 Support for Freescale LS1043ARDB platform.
813
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800814config TARGET_LS1046AQDS
815 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700816 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800817 select ARM64
818 select ARMV8_MULTIENTRY
819 select SUPPORT_SPL
820 select DM_SPI_FLASH if DM_SPI
821 help
822 Support for Freescale LS1046AQDS platform.
823 The LS1046A Development System (QDS) is a high-performance
824 development platform that supports the QorIQ LS1046A
825 Layerscape Architecture processor.
826
Mingkai Hud2396512016-09-07 18:47:28 +0800827config TARGET_LS1046ARDB
828 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700829 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800830 select ARM64
831 select ARMV8_MULTIENTRY
832 select SUPPORT_SPL
833 select DM_SPI_FLASH if DM_SPI
834 help
835 Support for Freescale LS1046ARDB platform.
836 The LS1046A Reference Design Board (RDB) is a high-performance
837 development platform that supports the QorIQ LS1046A
838 Layerscape Architecture processor.
839
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900840config TARGET_H2200
841 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100842 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900843
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700844config TARGET_ZIPITZ2
845 bool "Support zipitz2"
846 select CPU_PXA
847
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900848config TARGET_COLIBRI_PXA270
849 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100850 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900851
Masahiro Yamada82069432014-10-03 19:21:07 +0900852config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900853 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900854 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900855 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900856 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900857 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900858 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900859 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900860 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900861 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900862 select OF_CONTROL
863 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900864 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900865 select SPL
866 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900867 select SPL_LIBCOMMON_SUPPORT
868 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900869 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900870 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900871 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900872 help
873 Support for UniPhier SoC family developed by Socionext Inc.
874 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900875
Vikas Manocha95c89192016-01-15 17:49:06 -0800876config STM32
877 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100878 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100879 select DM
880 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100881
Simon Glass2cffe662015-08-30 16:55:38 -0600882config ARCH_ROCKCHIP
883 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600884 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600885 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600886 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800887 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600888 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800889 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600890 select DM_GPIO
891 select DM_I2C
892 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600893 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600894 select DM_SERIAL
895 select DM_SPI
896 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800897 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800898 select DM_PWM
899 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600900
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700901config TARGET_THUNDERX_88XX
902 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200903 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700904 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400905 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700906
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900907endchoice
908
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900909source "arch/arm/mach-at91/Kconfig"
910
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900911source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900912
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900913source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700914
Thomas Abraham74f84862015-08-03 17:58:00 +0530915source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900916
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900917source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900918
Masahiro Yamadacad44162015-04-21 21:59:36 +0900919source "arch/arm/mach-integrator/Kconfig"
920
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900921source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900922
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900923source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900924
Marcin Niestrojba6f1502016-12-07 16:46:32 +0100925source "arch/arm/mach-litesom/Kconfig"
926
Stefan Roese383e0c12015-08-25 13:18:38 +0200927source "arch/arm/mach-mvebu/Kconfig"
928
York Sun149eb332016-09-26 08:09:27 -0700929source "arch/arm/cpu/armv7/ls102xa/Kconfig"
930
Adrian Alonso98810772015-09-03 11:49:28 -0500931source "arch/arm/cpu/armv7/mx7/Kconfig"
932
Boris BREZILLON51e82662015-03-04 13:13:03 +0100933source "arch/arm/cpu/armv7/mx6/Kconfig"
934
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200935source "arch/arm/cpu/armv7/mx5/Kconfig"
936
Tom Rini28eec372016-11-07 21:34:54 -0500937source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500938
York Sunbad49842016-09-26 08:09:24 -0700939source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
940
Masahiro Yamada22537642015-02-20 17:04:09 +0900941source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900942
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900943source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900944
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200945source "arch/arm/mach-meson/Kconfig"
946
Simon Glass2cffe662015-08-30 16:55:38 -0600947source "arch/arm/mach-rockchip/Kconfig"
948
Minkyu Kang56b820a2015-11-20 15:24:57 +0900949source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600950
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200951source "arch/arm/mach-snapdragon/Kconfig"
952
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900953source "arch/arm/mach-socfpga/Kconfig"
954
Vikas Manocha95c89192016-01-15 17:49:06 -0800955source "arch/arm/mach-stm32/Kconfig"
956
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900957source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900958
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900959source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900960
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900961source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900962
Hans de Goede85437352014-11-14 09:34:30 +0100963source "arch/arm/cpu/armv7/Kconfig"
964
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530965source "arch/arm/cpu/armv8/zynqmp/Kconfig"
966
Linus Walleij74771392015-03-09 10:53:21 +0100967source "arch/arm/cpu/armv8/Kconfig"
968
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100969source "arch/arm/imx-common/Kconfig"
970
Heiko Schocherf1163962016-06-07 08:31:25 +0200971source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200972source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200973source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900974source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900975source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900978source "board/armltd/vexpress/Kconfig"
979source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900980source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700981source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900982source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800983source "board/broadcom/bcmcygnus/Kconfig"
984source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700985source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900986source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900987source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400988source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900989source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900990source "board/denx/m28evk/Kconfig"
991source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530992source "board/freescale/ls2080a/Kconfig"
993source "board/freescale/ls2080aqds/Kconfig"
994source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800995source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800996source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800997source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +0800998source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800999source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001000source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001001source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301002source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301003source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301004source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001005source "board/freescale/mx23evk/Kconfig"
1006source "board/freescale/mx25pdk/Kconfig"
1007source "board/freescale/mx28evk/Kconfig"
1008source "board/freescale/mx31ads/Kconfig"
1009source "board/freescale/mx31pdk/Kconfig"
1010source "board/freescale/mx35pdk/Kconfig"
1011source "board/freescale/mx51evk/Kconfig"
1012source "board/freescale/mx53ard/Kconfig"
1013source "board/freescale/mx53evk/Kconfig"
1014source "board/freescale/mx53loco/Kconfig"
1015source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001016source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001017source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001018source "board/gumstix/pepper/Kconfig"
1019source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001020source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001021source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001022source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001023source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001024source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001025source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001026source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001027source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001028source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001029source "board/siemens/draco/Kconfig"
1030source "board/siemens/pxm2/Kconfig"
1031source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001032source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001033source "board/spear/spear300/Kconfig"
1034source "board/spear/spear310/Kconfig"
1035source "board/spear/spear320/Kconfig"
1036source "board/spear/spear600/Kconfig"
1037source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001038source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001039source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001040source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001041source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001042source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001043source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001044source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001045source "board/ti/ti814x/Kconfig"
1046source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001047source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001048source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301049source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelinf012f662016-11-08 12:18:07 -05001050source "board/technologic/ts4600/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001051source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001052source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001053source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001054source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001055source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001056
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001057source "arch/arm/Kconfig.debug"
1058
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001059endmenu