blob: 382a73f73e8a49bade2ec2a27b38fe73dc391253 [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
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900129choice
130 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600131 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900132
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900133config ARCH_AT91
134 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900135
136config TARGET_EDB93XX
137 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100138 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900139
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900140config TARGET_VCMA9
141 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100142 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900143
144config TARGET_SMDK2410
145 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100146 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900147
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900148config TARGET_ASPENITE
149 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100150 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900151
152config TARGET_GPLUGD
153 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900155
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900156config ARCH_DAVINCI
157 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900159 help
160 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900161
Masahiro Yamadad7570852014-08-31 07:10:59 +0900162config KIRKWOOD
163 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900165
Stefan Roese383e0c12015-08-25 13:18:38 +0200166config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200167 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200168 select OF_CONTROL
169 select OF_SEPARATE
170 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100171 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200172 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100173 select DM_SPI
174 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200175
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900176config TARGET_DEVKIT3250
177 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100178 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300179 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900180
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200181config TARGET_WORK_92105
182 bool "Support work_92105"
183 select CPU_ARM926EJS
184 select SUPPORT_SPL
185
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186config TARGET_MX25PDK
187 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100188 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900189
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900190config TARGET_ZMX25
191 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100192 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900193
194config TARGET_APF27
195 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100196 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900197 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900198
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900199config TARGET_APX4DEVKIT
200 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100201 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900202 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900203
204config TARGET_XFI3
205 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900207 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900208
209config TARGET_M28EVK
210 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900212 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900213
214config TARGET_MX23EVK
215 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900217 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900218
219config TARGET_MX28EVK
220 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900222 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900223
224config TARGET_MX23_OLINUXINO
225 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900227 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900228
229config TARGET_BG0900
230 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900232 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900233
234config TARGET_SANSA_FUZE_PLUS
235 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900237 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238
239config TARGET_SC_SPS_1
240 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900244config ORION5X
245 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100246 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900247
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900248config TARGET_SPEAR300
249 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100250 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900251
252config TARGET_SPEAR310
253 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100254 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900255
256config TARGET_SPEAR320
257 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100258 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900259
260config TARGET_SPEAR600
261 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100262 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900263
Vikas Manocha33913c52014-11-18 10:42:22 -0800264config TARGET_STV0991
265 bool "Support stv0991"
266 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900267 select DM
268 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700269 select DM_SPI
270 select DM_SPI_FLASH
271 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800272
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900273config TARGET_X600
274 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100275 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900277
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900278config TARGET_IMX31_PHYCORE
279 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100280 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900281
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900282config TARGET_MX31ADS
283 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100284 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900285
286config TARGET_MX31PDK
287 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100288 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900291config TARGET_WOODBURN
292 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294
295config TARGET_WOODBURN_SD
296 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100297 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900298 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299
300config TARGET_FLEA3
301 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900303
304config TARGET_MX35PDK
305 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100306 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900307
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900308config ARCH_BCM283X
309 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900310 select DM
311 select DM_SERIAL
312 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700313
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900314config TARGET_VEXPRESS_CA15_TC2
315 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100316 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100317 select CPU_V7_HAS_NONSEC
318 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900319
320config TARGET_VEXPRESS_CA5X2
321 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100322 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900323
324config TARGET_VEXPRESS_CA9X4
325 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100326 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900327
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200328config TARGET_BRXRE1
329 bool "Support BRXRE1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900332
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200333config TARGET_BRPPT1
334 bool "Support BRPPT1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100335 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900336 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900337
338config TARGET_CM_T335
339 bool "Support cm_t335"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900342 select DM
343 select DM_SERIAL
344 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900345
346config TARGET_PEPPER
347 bool "Support pepper"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100348 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900349 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900350 select DM
351 select DM_SERIAL
352 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900353
354config TARGET_AM335X_IGEP0033
355 bool "Support am335x_igep0033"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900358 select DM
359 select DM_SERIAL
360 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900361
362config TARGET_PCM051
363 bool "Support pcm051"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100364 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900365 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900366 select DM
367 select DM_SERIAL
368 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900369
370config TARGET_DRACO
371 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100372 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900373 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200374 select DM
375 select DM_SERIAL
376 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900377
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200378config TARGET_THUBAN
379 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100380 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900381 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200382 select DM
383 select DM_SERIAL
384 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900385
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200386config TARGET_RASTABAN
387 bool "Support rastaban"
388 select CPU_V7
389 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200390 select DM
391 select DM_SERIAL
392 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200393
Heiko Schochercbec11a2016-06-07 08:55:45 +0200394config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400395 bool "Support etamin"
396 select CPU_V7
397 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200398 select DM
399 select DM_SERIAL
400 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200401
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900402config TARGET_PXM2
403 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100404 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900405 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200406 select DM
407 select DM_SERIAL
408 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900409
410config TARGET_RUT
411 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100412 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900413 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200414 select DM
415 select DM_SERIAL
416 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900417
418config TARGET_PENGWYN
419 bool "Support pengwyn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100420 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900421 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900422 select DM
423 select DM_SERIAL
424 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900425
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200426config TARGET_AM335X_BALTOS
427 bool "Support am335x_baltos"
428 select CPU_V7
429 select SUPPORT_SPL
430 select DM
431 select DM_SERIAL
432 select DM_GPIO
433
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900434config TARGET_AM335X_EVM
435 bool "Support am335x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100436 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900437 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900438 select DM
439 select DM_SERIAL
440 select DM_GPIO
Nishanth Menon2afa70d2016-02-24 12:30:55 -0600441 select TI_I2C_BOARD_DETECT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900442
Heiko Schocherf1163962016-06-07 08:31:25 +0200443config TARGET_AM335X_SHC
444 bool "Support am335x based shc board from bosch"
445 select CPU_V7
446 select SUPPORT_SPL
447 select DM
448 select DM_SERIAL
449 select DM_GPIO
450
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200451config TARGET_AM335X_SL50
452 bool "Support am335x_sl50"
453 select CPU_V7
454 select SUPPORT_SPL
455 select DM
Masahiro Yamada623753a2016-08-30 18:51:40 +0900456 select DM_GPIO
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200457 select DM_SERIAL
458
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800459config TARGET_BAV335X
460 bool "Support bav335x"
461 select CPU_V7
462 select SUPPORT_SPL
Masahiro Yamada20c57812015-03-31 12:48:00 +0900463 select DM
464 select DM_SERIAL
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800465 help
466 The BAV335x OEM Network Processor integrates all the functions of an
467 embedded network computer in a small, easy to use SODIMM module which
468 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
469 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
470 ethernet with simple connection to external connectors.
471
472 For more information, visit: http://birdland.com/oem
473
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900474config TARGET_TI814X_EVM
475 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900477 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900478
479config TARGET_TI816X_EVM
480 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900482 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900483
Steve Rae45f2c702016-06-02 15:10:56 -0700484config TARGET_BCM23550_W1D
485 bool "Support bcm23550_w1d"
486 select CPU_V7
487
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900488config TARGET_BCM28155_AP
489 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900491
Steve Rae1c5f31c2014-11-11 11:32:18 -0800492config TARGET_BCMCYGNUS
493 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100494 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700495
Steve Rae1c5f31c2014-11-11 11:32:18 -0800496config TARGET_BCMNSP
497 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100498 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700499
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900500config ARCH_EXYNOS
501 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900502 select DM
503 select DM_SPI_FLASH
504 select DM_SERIAL
505 select DM_SPI
506 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600507 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900508
Simon Glass96aa0722014-10-07 22:01:50 -0600509config ARCH_S5PC1XX
510 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100511 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900512 select DM
513 select DM_SERIAL
514 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600515
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900516config ARCH_HIGHBANK
517 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900519
Masahiro Yamadacad44162015-04-21 21:59:36 +0900520config ARCH_INTEGRATOR
521 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200522 select DM
523 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900524
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900525config ARCH_KEYSTONE
526 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100527 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900528 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400529 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900530
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200531config ARCH_MESON
532 bool "Amlogic Meson"
533 help
534 Support for the Meson SoC family developed by Amlogic Inc.,
535 targeted at media players and tablet computers. We currently
536 support the S905 (GXBaby) 64-bit SoC.
537
Adrian Alonso98810772015-09-03 11:49:28 -0500538config ARCH_MX7
539 bool "Freescale MX7"
540 select CPU_V7
541
Boris BREZILLON51e82662015-03-04 13:13:03 +0100542config ARCH_MX6
543 bool "Freescale MX6"
544 select CPU_V7
545
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200546config ARCH_MX5
547 bool "Freescale MX5"
548 select CPU_V7
549
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900550config TARGET_M53EVK
551 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100552 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900553 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900554
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900555config TARGET_MX51EVK
556 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100557 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900558
559config TARGET_MX53ARD
560 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100561 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900562
563config TARGET_MX53EVK
564 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100565 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900566
567config TARGET_MX53LOCO
568 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900570
571config TARGET_MX53SMD
572 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100573 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900574
Masahiro Yamadadd678432014-08-31 07:11:02 +0900575config OMAP34XX
576 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100577 select CPU_V7
Tom Rini9d245eb2016-07-27 22:29:40 -0400578 select SUPPORT_SPL
Tom Rinib631c9d2016-07-27 22:29:41 -0400579 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900580
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900581config OMAP44XX
582 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100583 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900584 select SUPPORT_SPL
Tom Rinib631c9d2016-07-27 22:29:41 -0400585 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900586
Masahiro Yamada420b8162014-08-31 07:11:04 +0900587config OMAP54XX
588 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100589 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900590 select SUPPORT_SPL
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500591
592config AM43XX
593 bool "AM43XX SoC"
594 select CPU_V7
595 select SUPPORT_SPL
596 help
597 Support for AM43xx SOC from Texas Instruments.
598 The AM43xx high performance SOC features a Cortex-A9
599 ARM core, a quad core PRU-ICSS for industrial Ethernet
600 protocols, dual camera support, optional 3D graphics
601 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900602
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900603config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900604 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900605 select DM
606 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300607
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300608config TARGET_S32V234EVB
609 bool "Support s32v234evb"
610 select ARM64
611
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200612config ARCH_SNAPDRAGON
613 bool "Qualcomm Snapdragon SoCs"
614 select ARM64
615 select DM
616 select DM_GPIO
617 select DM_SERIAL
618 select SPMI
619 select OF_CONTROL
620 select OF_SEPARATE
621
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900622config ARCH_SOCFPGA
623 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100624 select CPU_V7
625 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200626 select OF_CONTROL
627 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900628 select DM
629 select DM_SPI_FLASH
630 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100631
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300632config TARGET_CM_T43
633 bool "Support cm_t43"
634 select CPU_V7
635 select SUPPORT_SPL
636
Ian Campbelld8e69e02014-10-24 21:20:44 +0100637config ARCH_SUNXI
638 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200639 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200640 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200641 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200642 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400643 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100644 select DM_GPIO
645 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400646 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200647 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100648 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200649 select OF_CONTROL
650 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200651 select SPL_STACK_R if SUPPORT_SPL
652 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100653 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400654 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200655 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200656 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200657 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800658
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400659config TARGET_TS4800
660 bool "Support TS4800"
661 select CPU_V7
662
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900663config TARGET_VF610TWR
664 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100665 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900666
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530667config TARGET_COLIBRI_VF
668 bool "Support Colibri VF50/61"
669 select CPU_V7
670
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200671config TARGET_PCM052
672 bool "Support pcm-052"
673 select CPU_V7
674
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900675config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900676 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100677 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900678 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530679 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100680 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900681 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100682 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530683 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100684 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100685 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600686 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530687 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600688 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530689 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100690 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600691 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600692 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900693
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530694config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100695 bool "Support Xilinx ZynqMP Platform"
696 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600697 select DM
698 select OF_CONTROL
699 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100700 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200701 select CLK
702 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600703 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100704
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900705config TEGRA
706 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900707
Linus Walleij800d6fd2015-01-23 11:50:53 +0100708config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900709 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900710 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900711
Linus Walleij800d6fd2015-01-23 11:50:53 +0100712config TARGET_VEXPRESS64_BASE_FVP
713 bool "Support Versatile Express ARMv8a FVP BASE model"
714 select ARM64
715 select SEMIHOSTING
716
Ryan Harkinb6b96652015-10-09 17:18:02 +0100717config TARGET_VEXPRESS64_BASE_FVP_DRAM
718 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
719 select ARM64
720 help
721 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
722 the default config to allow the user to load the images directly into
723 DRAM using model parameters rather than by using semi-hosting to load
724 the files from the host filesystem.
725
Linus Walleijc5822502015-01-23 14:41:10 +0100726config TARGET_VEXPRESS64_JUNO
727 bool "Support Versatile Express Juno Development Platform"
728 select ARM64
729
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530730config TARGET_LS2080A_EMU
731 bool "Support ls2080a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900732 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100733 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530734 help
735 Support for Freescale LS2080A_EMU platform
736 The LS2080A Development System (EMULATOR) is a pre silicon
737 development platform that supports the QorIQ LS2080A
738 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900739
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530740config TARGET_LS2080A_SIMU
741 bool "Support ls2080a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900742 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100743 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530744 help
745 Support for Freescale LS2080A_SIMU platform
746 The LS2080A Development System (QDS) is a pre silicon
747 development platform that supports the QorIQ LS2080A
748 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900749
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530750config TARGET_LS2080AQDS
751 bool "Support ls2080aqds"
York Sun03017032015-03-20 19:28:23 -0700752 select ARM64
753 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700754 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700755 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530756 Support for Freescale LS2080AQDS platform
757 The LS2080A Development System (QDS) is a high-performance
758 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700759 Layerscape Architecture processor.
760
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530761config TARGET_LS2080ARDB
762 bool "Support ls2080ardb"
York Sune12abcb2015-03-20 19:28:24 -0700763 select ARM64
764 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700765 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700766 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530767 Support for Freescale LS2080ARDB platform.
768 The LS2080A Reference design board (RDB) is a high-performance
769 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700770 Layerscape Architecture processor.
771
Peter Griffin31f327e2015-07-30 18:55:23 +0100772config TARGET_HIKEY
773 bool "Support HiKey 96boards Consumer Edition Platform"
774 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100775 select DM
776 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100777 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100778 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100779 help
780 Support for HiKey 96boards platform. It features a HI6220
781 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
782
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530783config TARGET_LS1012AQDS
784 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700785 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530786 select ARM64
787 help
788 Support for Freescale LS1012AQDS platform.
789 The LS1012A Development System (QDS) is a high-performance
790 development platform that supports the QorIQ LS1012A
791 Layerscape Architecture processor.
792
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530793config TARGET_LS1012ARDB
794 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700795 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530796 select ARM64
797 help
798 Support for Freescale LS1012ARDB platform.
799 The LS1012A Reference design board (RDB) is a high-performance
800 development platform that supports the QorIQ LS1012A
801 Layerscape Architecture processor.
802
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530803config TARGET_LS1012AFRDM
804 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700805 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530806 select ARM64
807 help
808 Support for Freescale LS1012AFRDM platform.
809 The LS1012A Freedom board (FRDM) is a high-performance
810 development platform that supports the QorIQ LS1012A
811 Layerscape Architecture processor.
812
Wang Huanf0ce7d62014-09-05 13:52:44 +0800813config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800814 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100815 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800816 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700817 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900818 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700819 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900820
Wang Huanddf89f92014-09-05 13:52:45 +0800821config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800822 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100823 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800824 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700825 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900826 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700827 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800828
Shaohui Xiedd335672015-11-11 17:58:37 +0800829config TARGET_LS1043AQDS
830 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700831 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800832 select ARM64
833 select ARMV8_MULTIENTRY
834 select SUPPORT_SPL
835 help
836 Support for Freescale LS1043AQDS platform.
837
Mingkai Hueee86ff2015-10-26 19:47:52 +0800838config TARGET_LS1043ARDB
839 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700840 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800841 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800842 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800843 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800844 help
845 Support for Freescale LS1043ARDB platform.
846
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800847config TARGET_LS1046AQDS
848 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700849 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800850 select ARM64
851 select ARMV8_MULTIENTRY
852 select SUPPORT_SPL
853 select DM_SPI_FLASH if DM_SPI
854 help
855 Support for Freescale LS1046AQDS platform.
856 The LS1046A Development System (QDS) is a high-performance
857 development platform that supports the QorIQ LS1046A
858 Layerscape Architecture processor.
859
Mingkai Hud2396512016-09-07 18:47:28 +0800860config TARGET_LS1046ARDB
861 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700862 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800863 select ARM64
864 select ARMV8_MULTIENTRY
865 select SUPPORT_SPL
866 select DM_SPI_FLASH if DM_SPI
867 help
868 Support for Freescale LS1046ARDB platform.
869 The LS1046A Reference Design Board (RDB) is a high-performance
870 development platform that supports the QorIQ LS1046A
871 Layerscape Architecture processor.
872
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900873config TARGET_H2200
874 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100875 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900876
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700877config TARGET_ZIPITZ2
878 bool "Support zipitz2"
879 select CPU_PXA
880
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900881config TARGET_COLIBRI_PXA270
882 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100883 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900884
Masahiro Yamada82069432014-10-03 19:21:07 +0900885config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900886 bool "Socionext UniPhier SoCs"
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900887 select BLK
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900888 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900889 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900890 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900891 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900892 select DM_MMC
Masahiro Yamada694adf12016-09-14 01:05:59 +0900893 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900894 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900895 select OF_CONTROL
896 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900897 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900898 select SPL
899 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900900 select SPL_LIBCOMMON_SUPPORT
901 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900902 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900903 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900904 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900905 help
906 Support for UniPhier SoC family developed by Socionext Inc.
907 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900908
Vikas Manocha95c89192016-01-15 17:49:06 -0800909config STM32
910 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100911 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100912 select DM
913 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100914
Simon Glass2cffe662015-08-30 16:55:38 -0600915config ARCH_ROCKCHIP
916 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600917 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600918 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600919 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800920 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600921 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800922 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600923 select DM_GPIO
924 select DM_I2C
925 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600926 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600927 select DM_SERIAL
928 select DM_SPI
929 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800930 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800931 select DM_PWM
932 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600933
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700934config TARGET_THUNDERX_88XX
935 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200936 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700937 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400938 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700939
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900940endchoice
941
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900942source "arch/arm/mach-at91/Kconfig"
943
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900944source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900945
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900946source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700947
Thomas Abraham74f84862015-08-03 17:58:00 +0530948source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900949
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900950source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900951
Masahiro Yamadacad44162015-04-21 21:59:36 +0900952source "arch/arm/mach-integrator/Kconfig"
953
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900954source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900955
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900956source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900957
Stefan Roese383e0c12015-08-25 13:18:38 +0200958source "arch/arm/mach-mvebu/Kconfig"
959
York Sun149eb332016-09-26 08:09:27 -0700960source "arch/arm/cpu/armv7/ls102xa/Kconfig"
961
Adrian Alonso98810772015-09-03 11:49:28 -0500962source "arch/arm/cpu/armv7/mx7/Kconfig"
963
Boris BREZILLON51e82662015-03-04 13:13:03 +0100964source "arch/arm/cpu/armv7/mx6/Kconfig"
965
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200966source "arch/arm/cpu/armv7/mx5/Kconfig"
967
Madan Srinivas8a536e92016-05-19 19:10:44 -0500968source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500969
York Sunbad49842016-09-26 08:09:24 -0700970source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
971
Masahiro Yamada22537642015-02-20 17:04:09 +0900972source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900973
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900974source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900975
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200976source "arch/arm/mach-meson/Kconfig"
977
Simon Glass2cffe662015-08-30 16:55:38 -0600978source "arch/arm/mach-rockchip/Kconfig"
979
Minkyu Kang56b820a2015-11-20 15:24:57 +0900980source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600981
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200982source "arch/arm/mach-snapdragon/Kconfig"
983
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900984source "arch/arm/mach-socfpga/Kconfig"
985
Vikas Manocha95c89192016-01-15 17:49:06 -0800986source "arch/arm/mach-stm32/Kconfig"
987
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900988source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900989
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900990source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900991
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900992source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900993
Hans de Goede85437352014-11-14 09:34:30 +0100994source "arch/arm/cpu/armv7/Kconfig"
995
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530996source "arch/arm/cpu/armv8/zynqmp/Kconfig"
997
Linus Walleij74771392015-03-09 10:53:21 +0100998source "arch/arm/cpu/armv8/Kconfig"
999
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01001000source "arch/arm/imx-common/Kconfig"
1001
Heiko Schocherf1163962016-06-07 08:31:25 +02001002source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +02001003source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +02001004source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001005source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001006source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001007source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001008source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001009source "board/armltd/vexpress/Kconfig"
1010source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001011source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -07001012source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001013source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -08001014source "board/broadcom/bcmcygnus/Kconfig"
1015source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001016source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001017source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001018source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001019source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001020source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001021source "board/denx/m28evk/Kconfig"
1022source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301023source "board/freescale/ls2080a/Kconfig"
1024source "board/freescale/ls2080aqds/Kconfig"
1025source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +08001026source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +08001027source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +08001028source "board/freescale/ls1021atwr/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001029source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001030source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001031source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301032source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301033source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301034source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001035source "board/freescale/mx23evk/Kconfig"
1036source "board/freescale/mx25pdk/Kconfig"
1037source "board/freescale/mx28evk/Kconfig"
1038source "board/freescale/mx31ads/Kconfig"
1039source "board/freescale/mx31pdk/Kconfig"
1040source "board/freescale/mx35pdk/Kconfig"
1041source "board/freescale/mx51evk/Kconfig"
1042source "board/freescale/mx53ard/Kconfig"
1043source "board/freescale/mx53evk/Kconfig"
1044source "board/freescale/mx53loco/Kconfig"
1045source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001046source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001047source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001048source "board/gumstix/pepper/Kconfig"
1049source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001050source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001051source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001052source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001053source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001054source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001055source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001056source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001057source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001058source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001059source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001060source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001061source "board/siemens/draco/Kconfig"
1062source "board/siemens/pxm2/Kconfig"
1063source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001064source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-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 Manocha33913c52014-11-18 10:42:22 -08001070source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001071source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001072source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001073source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001074source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001075source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001076source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001077source "board/ti/ti814x/Kconfig"
1078source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001079source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001080source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301081source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001082source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001083source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001084source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001085source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001086source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001087
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001088source "arch/arm/Kconfig.debug"
1089
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001090endmenu