blob: 5eb72f79f4bfbe34e101d13d1a691c73f4b56be8 [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
Masahiro Yamada0d46c342014-09-14 03:01:51 +090010
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053011config DMA_ADDR_T_64BIT
12 bool
13 default y if ARM64
14
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010015config HAS_VBAR
16 bool
17
Albert ARIBAUDa3823222015-10-23 18:06:40 +020018config HAS_THUMB2
19 bool
20
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010021config CPU_ARM720T
22 bool
23
24config CPU_ARM920T
25 bool
26
27config CPU_ARM926EJS
28 bool
29
30config CPU_ARM946ES
31 bool
32
33config CPU_ARM1136
34 bool
35
36config CPU_ARM1176
37 bool
38 select HAS_VBAR
39
40config CPU_V7
41 bool
42 select HAS_VBAR
Albert ARIBAUDa3823222015-10-23 18:06:40 +020043 select HAS_THUMB2
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010044
rev13@wp.plb3b57e82015-03-01 12:44:39 +010045config CPU_V7M
46 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020047 select HAS_THUMB2
rev13@wp.plb3b57e82015-03-01 12:44:39 +010048
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010049config CPU_PXA
50 bool
51
52config CPU_SA1100
53 bool
54
55config SYS_CPU
56 default "arm720t" if CPU_ARM720T
57 default "arm920t" if CPU_ARM920T
58 default "arm926ejs" if CPU_ARM926EJS
59 default "arm946es" if CPU_ARM946ES
60 default "arm1136" if CPU_ARM1136
61 default "arm1176" if CPU_ARM1176
62 default "armv7" if CPU_V7
rev13@wp.plb3b57e82015-03-01 12:44:39 +010063 default "armv7m" if CPU_V7M
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010064 default "pxa" if CPU_PXA
65 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +090066 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010067
Marek Vasutb06c9542016-05-26 18:01:36 +020068config SYS_ARM_ARCH
69 int
70 default 4 if CPU_ARM720T
71 default 4 if CPU_ARM920T
72 default 5 if CPU_ARM926EJS
73 default 5 if CPU_ARM946ES
74 default 6 if CPU_ARM1136
75 default 6 if CPU_ARM1176
76 default 7 if CPU_V7
77 default 7 if CPU_V7M
78 default 5 if CPU_PXA
79 default 4 if CPU_SA1100
80 default 8 if ARM64
81
Linus Walleij800d6fd2015-01-23 11:50:53 +010082config SEMIHOSTING
83 bool "support boot from semihosting"
84 help
85 In emulated environments, semihosting is a way for
86 the hosted environment to call out to the emulator to
87 retrieve files from the host machine.
88
Peng Fan10ddab42015-08-19 15:48:57 +080089config SYS_L2CACHE_OFF
90 bool "L2cache off"
91 help
92 If SoC does not support L2CACHE or one do not want to enable
93 L2CACHE, choose this option.
94
Andre Przywara48321ba2016-05-31 10:45:06 -070095config ENABLE_ARM_SOC_BOOT0_HOOK
96 bool "prepare BOOT0 header"
97 help
98 If the SoC's BOOT0 requires a header area filled with (magic)
99 values, then choose this option, and create a define called
100 ARM_SOC_BOOT0_HOOK which contains the required assembler
101 preprocessor code.
102
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900103choice
104 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600105 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900106
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900107config ARCH_AT91
108 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900109
110config TARGET_EDB93XX
111 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100112 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900113
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900114config TARGET_VCMA9
115 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100116 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900117
118config TARGET_SMDK2410
119 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100120 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900121
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900122config TARGET_ASPENITE
123 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100124 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900125
126config TARGET_GPLUGD
127 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100128 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900129
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900130config ARCH_DAVINCI
131 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100132 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900133 help
134 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900135
Masahiro Yamadad7570852014-08-31 07:10:59 +0900136config KIRKWOOD
137 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100138 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900139
Stefan Roese383e0c12015-08-25 13:18:38 +0200140config ARCH_MVEBU
Stefan Roese9106ed02016-01-29 09:14:54 +0100141 bool "Marvell MVEBU family (Armada XP/375/38x)"
Stefan Roese073efd72015-04-25 06:29:56 +0200142 select CPU_V7
143 select SUPPORT_SPL
Stefan Roese096de4f2015-09-01 11:27:52 +0200144 select OF_CONTROL
145 select OF_SEPARATE
146 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100147 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200148 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100149 select DM_SPI
150 select DM_SPI_FLASH
Stefan Roese83097cf2015-11-25 07:37:00 +0100151 select SPL_DM
Nathan Rossi66f05702016-01-08 03:00:47 +1000152 select SPL_DM_SEQ_ALIAS
Stefan Roese83097cf2015-11-25 07:37:00 +0100153 select SPL_OF_CONTROL
Stefan Roese49e7d772015-11-20 13:51:57 +0100154 select SPL_SIMPLE_BUS
Stefan Roese9b1e2312014-10-22 12:13:19 +0200155
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900156config TARGET_DEVKIT3250
157 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300159 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900160
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200161config TARGET_WORK_92105
162 bool "Support work_92105"
163 select CPU_ARM926EJS
164 select SUPPORT_SPL
165
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900166config TARGET_MX25PDK
167 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100168 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900169
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900170config TARGET_ZMX25
171 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100172 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900173
174config TARGET_APF27
175 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100176 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900177 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900178
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900179config TARGET_APX4DEVKIT
180 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100181 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900182 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900183
184config TARGET_XFI3
185 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100186 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900187 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900188
189config TARGET_M28EVK
190 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100191 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900192 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900193
194config TARGET_MX23EVK
195 bool "Support mx23evk"
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
199config TARGET_MX28EVK
200 bool "Support mx28evk"
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_MX23_OLINUXINO
205 bool "Support mx23_olinuxino"
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_BG0900
210 bool "Support bg0900"
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_SANSA_FUZE_PLUS
215 bool "Support sansa_fuze_plus"
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_SC_SPS_1
220 bool "Support sc_sps_1"
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
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900224config ORION5X
225 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900227
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900228config TARGET_SPEAR300
229 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100230 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900231
232config TARGET_SPEAR310
233 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100234 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900235
236config TARGET_SPEAR320
237 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100238 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900239
240config TARGET_SPEAR600
241 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100242 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
Vikas Manocha33913c52014-11-18 10:42:22 -0800244config TARGET_STV0991
245 bool "Support stv0991"
246 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900247 select DM
248 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700249 select DM_SPI
250 select DM_SPI_FLASH
251 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800252
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900253config TARGET_X600
254 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900256 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900257
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900258config TARGET_IMX31_PHYCORE
259 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100260 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900261
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900262config TARGET_MX31ADS
263 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100264 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900265
266config TARGET_MX31PDK
267 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100268 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900269 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900270
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900271config TARGET_WOODBURN
272 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100273 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900274
275config TARGET_WOODBURN_SD
276 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100277 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900278 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900279
280config TARGET_FLEA3
281 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100282 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900283
284config TARGET_MX35PDK
285 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100286 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900288config ARCH_BCM283X
289 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900290 select DM
291 select DM_SERIAL
292 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700293
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294config TARGET_VEXPRESS_CA15_TC2
295 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100296 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100297 select CPU_V7_HAS_NONSEC
298 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299
300config TARGET_VEXPRESS_CA5X2
301 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900303
304config TARGET_VEXPRESS_CA9X4
305 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100306 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900307
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200308config TARGET_BRXRE1
309 bool "Support BRXRE1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100310 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900311 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900312
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200313config TARGET_BRPPT1
314 bool "Support BRPPT1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100315 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900316 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900317
318config TARGET_CM_T335
319 bool "Support cm_t335"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100320 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900321 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900322 select DM
323 select DM_SERIAL
324 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900325
326config TARGET_PEPPER
327 bool "Support pepper"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100328 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900329 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900330 select DM
331 select DM_SERIAL
332 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900333
334config TARGET_AM335X_IGEP0033
335 bool "Support am335x_igep0033"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100336 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900337 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900338 select DM
339 select DM_SERIAL
340 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341
342config TARGET_PCM051
343 bool "Support pcm051"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100344 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900345 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900346 select DM
347 select DM_SERIAL
348 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900349
350config TARGET_DRACO
351 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100352 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900353 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200354 select DM
355 select DM_SERIAL
356 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900357
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200358config TARGET_THUBAN
359 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100360 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900361 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200362 select DM
363 select DM_SERIAL
364 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900365
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200366config TARGET_RASTABAN
367 bool "Support rastaban"
368 select CPU_V7
369 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200370 select DM
371 select DM_SERIAL
372 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200373
Heiko Schochercbec11a2016-06-07 08:55:45 +0200374config TARGET_ETAMIN
375 bool "Support etamin"
376 select CPU_V7
377 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200378 select DM
379 select DM_SERIAL
380 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200381
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900382config TARGET_PXM2
383 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100384 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900385 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200386 select DM
387 select DM_SERIAL
388 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900389
390config TARGET_RUT
391 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100392 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900393 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200394 select DM
395 select DM_SERIAL
396 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900397
398config TARGET_PENGWYN
399 bool "Support pengwyn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100400 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900401 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900402 select DM
403 select DM_SERIAL
404 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900405
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200406config TARGET_AM335X_BALTOS
407 bool "Support am335x_baltos"
408 select CPU_V7
409 select SUPPORT_SPL
410 select DM
411 select DM_SERIAL
412 select DM_GPIO
413
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900414config TARGET_AM335X_EVM
415 bool "Support am335x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100416 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900417 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900418 select DM
419 select DM_SERIAL
420 select DM_GPIO
Nishanth Menon2afa70d2016-02-24 12:30:55 -0600421 select TI_I2C_BOARD_DETECT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900422
Heiko Schocherf1163962016-06-07 08:31:25 +0200423config TARGET_AM335X_SHC
424 bool "Support am335x based shc board from bosch"
425 select CPU_V7
426 select SUPPORT_SPL
427 select DM
428 select DM_SERIAL
429 select DM_GPIO
430
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200431config TARGET_AM335X_SL50
432 bool "Support am335x_sl50"
433 select CPU_V7
434 select SUPPORT_SPL
435 select DM
436 select DM_SERIAL
437
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800438config TARGET_BAV335X
439 bool "Support bav335x"
440 select CPU_V7
441 select SUPPORT_SPL
Masahiro Yamada20c57812015-03-31 12:48:00 +0900442 select DM
443 select DM_SERIAL
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800444 help
445 The BAV335x OEM Network Processor integrates all the functions of an
446 embedded network computer in a small, easy to use SODIMM module which
447 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
448 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
449 ethernet with simple connection to external connectors.
450
451 For more information, visit: http://birdland.com/oem
452
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900453config TARGET_TI814X_EVM
454 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100455 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900456 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900457
458config TARGET_TI816X_EVM
459 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100460 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900461 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462
Steve Rae45f2c702016-06-02 15:10:56 -0700463config TARGET_BCM23550_W1D
464 bool "Support bcm23550_w1d"
465 select CPU_V7
466
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900467config TARGET_BCM28155_AP
468 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900470
Steve Rae1c5f31c2014-11-11 11:32:18 -0800471config TARGET_BCMCYGNUS
472 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100473 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700474
Steve Rae1c5f31c2014-11-11 11:32:18 -0800475config TARGET_BCMNSP
476 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100477 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700478
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900479config ARCH_EXYNOS
480 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900481 select DM
482 select DM_SPI_FLASH
483 select DM_SERIAL
484 select DM_SPI
485 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600486 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900487
Simon Glass96aa0722014-10-07 22:01:50 -0600488config ARCH_S5PC1XX
489 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900491 select DM
492 select DM_SERIAL
493 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600494
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900495config ARCH_HIGHBANK
496 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900498
Masahiro Yamadacad44162015-04-21 21:59:36 +0900499config ARCH_INTEGRATOR
500 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200501 select DM
502 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900503
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900504config ARCH_KEYSTONE
505 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100506 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900507 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400508 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900509
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200510config ARCH_MESON
511 bool "Amlogic Meson"
512 help
513 Support for the Meson SoC family developed by Amlogic Inc.,
514 targeted at media players and tablet computers. We currently
515 support the S905 (GXBaby) 64-bit SoC.
516
Adrian Alonso98810772015-09-03 11:49:28 -0500517config ARCH_MX7
518 bool "Freescale MX7"
519 select CPU_V7
520
Boris BREZILLON51e82662015-03-04 13:13:03 +0100521config ARCH_MX6
522 bool "Freescale MX6"
523 select CPU_V7
524
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200525config ARCH_MX5
526 bool "Freescale MX5"
527 select CPU_V7
528
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900529config TARGET_M53EVK
530 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100531 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900532 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900533
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900534config TARGET_MX51EVK
535 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100536 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900537
538config TARGET_MX53ARD
539 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900541
542config TARGET_MX53EVK
543 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100544 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900545
546config TARGET_MX53LOCO
547 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100548 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900549
550config TARGET_MX53SMD
551 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100552 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900553
Masahiro Yamadadd678432014-08-31 07:11:02 +0900554config OMAP34XX
555 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100556 select CPU_V7
Tom Rini9d245eb2016-07-27 22:29:40 -0400557 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900558
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900559config OMAP44XX
560 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100561 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900562 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900563
Masahiro Yamada420b8162014-08-31 07:11:04 +0900564config OMAP54XX
565 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100566 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900567 select SUPPORT_SPL
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500568
569config AM43XX
570 bool "AM43XX SoC"
571 select CPU_V7
572 select SUPPORT_SPL
573 help
574 Support for AM43xx SOC from Texas Instruments.
575 The AM43xx high performance SOC features a Cortex-A9
576 ARM core, a quad core PRU-ICSS for industrial Ethernet
577 protocols, dual camera support, optional 3D graphics
578 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900579
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900580config RMOBILE
581 bool "Renesas ARM SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100582 select CPU_V7
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300583
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300584config TARGET_S32V234EVB
585 bool "Support s32v234evb"
586 select ARM64
587
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200588config ARCH_SNAPDRAGON
589 bool "Qualcomm Snapdragon SoCs"
590 select ARM64
591 select DM
592 select DM_GPIO
593 select DM_SERIAL
594 select SPMI
595 select OF_CONTROL
596 select OF_SEPARATE
597
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900598config ARCH_SOCFPGA
599 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100600 select CPU_V7
601 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200602 select OF_CONTROL
603 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900604 select DM
605 select DM_SPI_FLASH
606 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100607
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300608config TARGET_CM_T43
609 bool "Support cm_t43"
610 select CPU_V7
611 select SUPPORT_SPL
612
Ian Campbelld8e69e02014-10-24 21:20:44 +0100613config ARCH_SUNXI
614 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200615 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200616 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200617 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200618 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400619 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100620 select DM_GPIO
621 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400622 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200623 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100624 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200625 select OF_CONTROL
626 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200627 select SPL_STACK_R if SUPPORT_SPL
628 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100629 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400630 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200631 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200632 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200633 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800634
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400635config TARGET_TS4800
636 bool "Support TS4800"
637 select CPU_V7
638
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900639config TARGET_VF610TWR
640 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100641 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900642
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530643config TARGET_COLIBRI_VF
644 bool "Support Colibri VF50/61"
645 select CPU_V7
646
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200647config TARGET_PCM052
648 bool "Support pcm-052"
649 select CPU_V7
650
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900651config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900652 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100653 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900654 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530655 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100656 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900657 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100658 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530659 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100660 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100661 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600662 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530663 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600664 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530665 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100666 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600667 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600668 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900669
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530670config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100671 bool "Support Xilinx ZynqMP Platform"
672 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600673 select DM
674 select OF_CONTROL
675 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100676 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200677 select CLK
678 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600679 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100680
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900681config TEGRA
682 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900683
Linus Walleij800d6fd2015-01-23 11:50:53 +0100684config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900685 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900686 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900687
Linus Walleij800d6fd2015-01-23 11:50:53 +0100688config TARGET_VEXPRESS64_BASE_FVP
689 bool "Support Versatile Express ARMv8a FVP BASE model"
690 select ARM64
691 select SEMIHOSTING
692
Ryan Harkinb6b96652015-10-09 17:18:02 +0100693config TARGET_VEXPRESS64_BASE_FVP_DRAM
694 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
695 select ARM64
696 help
697 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
698 the default config to allow the user to load the images directly into
699 DRAM using model parameters rather than by using semi-hosting to load
700 the files from the host filesystem.
701
Linus Walleijc5822502015-01-23 14:41:10 +0100702config TARGET_VEXPRESS64_JUNO
703 bool "Support Versatile Express Juno Development Platform"
704 select ARM64
705
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530706config TARGET_LS2080A_EMU
707 bool "Support ls2080a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900708 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100709 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530710 help
711 Support for Freescale LS2080A_EMU platform
712 The LS2080A Development System (EMULATOR) is a pre silicon
713 development platform that supports the QorIQ LS2080A
714 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900715
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530716config TARGET_LS2080A_SIMU
717 bool "Support ls2080a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900718 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100719 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530720 help
721 Support for Freescale LS2080A_SIMU platform
722 The LS2080A Development System (QDS) is a pre silicon
723 development platform that supports the QorIQ LS2080A
724 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900725
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530726config TARGET_LS2080AQDS
727 bool "Support ls2080aqds"
York Sun03017032015-03-20 19:28:23 -0700728 select ARM64
729 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700730 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700731 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530732 Support for Freescale LS2080AQDS platform
733 The LS2080A Development System (QDS) is a high-performance
734 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700735 Layerscape Architecture processor.
736
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530737config TARGET_LS2080ARDB
738 bool "Support ls2080ardb"
York Sune12abcb2015-03-20 19:28:24 -0700739 select ARM64
740 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700741 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700742 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530743 Support for Freescale LS2080ARDB platform.
744 The LS2080A Reference design board (RDB) is a high-performance
745 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700746 Layerscape Architecture processor.
747
Peter Griffin31f327e2015-07-30 18:55:23 +0100748config TARGET_HIKEY
749 bool "Support HiKey 96boards Consumer Edition Platform"
750 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100751 select DM
752 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100753 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100754 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100755 help
756 Support for HiKey 96boards platform. It features a HI6220
757 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
758
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530759config TARGET_LS1012AQDS
760 bool "Support ls1012aqds"
761 select ARM64
762 help
763 Support for Freescale LS1012AQDS platform.
764 The LS1012A Development System (QDS) is a high-performance
765 development platform that supports the QorIQ LS1012A
766 Layerscape Architecture processor.
767
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530768config TARGET_LS1012ARDB
769 bool "Support ls1012ardb"
770 select ARM64
771 help
772 Support for Freescale LS1012ARDB platform.
773 The LS1012A Reference design board (RDB) is a high-performance
774 development platform that supports the QorIQ LS1012A
775 Layerscape Architecture processor.
776
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530777config TARGET_LS1012AFRDM
778 bool "Support ls1012afrdm"
779 select ARM64
780 help
781 Support for Freescale LS1012AFRDM platform.
782 The LS1012A Freedom board (FRDM) is a high-performance
783 development platform that supports the QorIQ LS1012A
784 Layerscape Architecture processor.
785
Wang Huanf0ce7d62014-09-05 13:52:44 +0800786config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800787 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100788 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800789 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800790config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800791 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100792 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800793 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800794
Shaohui Xiedd335672015-11-11 17:58:37 +0800795config TARGET_LS1043AQDS
796 bool "Support ls1043aqds"
797 select ARM64
798 select ARMV8_MULTIENTRY
799 select SUPPORT_SPL
800 help
801 Support for Freescale LS1043AQDS platform.
802
Mingkai Hueee86ff2015-10-26 19:47:52 +0800803config TARGET_LS1043ARDB
804 bool "Support ls1043ardb"
805 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800806 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800807 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800808 help
809 Support for Freescale LS1043ARDB platform.
810
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900811config TARGET_H2200
812 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100813 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900814
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700815config TARGET_ZIPITZ2
816 bool "Support zipitz2"
817 select CPU_PXA
818
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900819config TARGET_COLIBRI_PXA270
820 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100821 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900822
Masahiro Yamada82069432014-10-03 19:21:07 +0900823config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900824 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900825 select CLK_UNIPHIER
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900826 select SUPPORT_SPL
Masahiro Yamada9c9a3e12014-12-18 19:11:03 +0900827 select SPL
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900828 select OF_CONTROL
Masahiro Yamada47eb9a82015-08-28 20:13:18 +0900829 select SPL_OF_CONTROL
Masahiro Yamada460483c2016-06-17 19:24:29 +0900830 select OF_LIBFDT
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900831 select DM
Masahiro Yamadad1066ba2015-08-28 20:13:17 +0900832 select SPL_DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900833 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900834 select DM_SERIAL
835 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900836 select DM_MMC
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900837 help
838 Support for UniPhier SoC family developed by Socionext Inc.
839 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900840
Vikas Manocha95c89192016-01-15 17:49:06 -0800841config STM32
842 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100843 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100844 select DM
845 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100846
Simon Glass2cffe662015-08-30 16:55:38 -0600847config ARCH_ROCKCHIP
848 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600849 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600850 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600851 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800852 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600853 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800854 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600855 select DM_GPIO
856 select DM_I2C
857 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600858 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600859 select DM_SERIAL
860 select DM_SPI
861 select DM_SPI_FLASH
Simon Glass2cffe662015-08-30 16:55:38 -0600862
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700863config TARGET_THUNDERX_88XX
864 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200865 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700866 select OF_CONTROL
867
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900868endchoice
869
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900870source "arch/arm/mach-at91/Kconfig"
871
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900872source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900873
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900874source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700875
Thomas Abraham74f84862015-08-03 17:58:00 +0530876source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900877
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900878source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900879
Masahiro Yamadacad44162015-04-21 21:59:36 +0900880source "arch/arm/mach-integrator/Kconfig"
881
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900882source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900883
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900884source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900885
Stefan Roese383e0c12015-08-25 13:18:38 +0200886source "arch/arm/mach-mvebu/Kconfig"
887
Adrian Alonso98810772015-09-03 11:49:28 -0500888source "arch/arm/cpu/armv7/mx7/Kconfig"
889
Boris BREZILLON51e82662015-03-04 13:13:03 +0100890source "arch/arm/cpu/armv7/mx6/Kconfig"
891
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200892source "arch/arm/cpu/armv7/mx5/Kconfig"
893
Madan Srinivas8a536e92016-05-19 19:10:44 -0500894source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500895
Masahiro Yamada22537642015-02-20 17:04:09 +0900896source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900897
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900898source "arch/arm/cpu/armv7/rmobile/Kconfig"
899
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200900source "arch/arm/mach-meson/Kconfig"
901
Simon Glass2cffe662015-08-30 16:55:38 -0600902source "arch/arm/mach-rockchip/Kconfig"
903
Minkyu Kang56b820a2015-11-20 15:24:57 +0900904source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600905
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200906source "arch/arm/mach-snapdragon/Kconfig"
907
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900908source "arch/arm/mach-socfpga/Kconfig"
909
Vikas Manocha95c89192016-01-15 17:49:06 -0800910source "arch/arm/mach-stm32/Kconfig"
911
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900912source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900913
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900914source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900915
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900916source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900917
Hans de Goede85437352014-11-14 09:34:30 +0100918source "arch/arm/cpu/armv7/Kconfig"
919
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530920source "arch/arm/cpu/armv8/zynqmp/Kconfig"
921
Linus Walleij74771392015-03-09 10:53:21 +0100922source "arch/arm/cpu/armv8/Kconfig"
923
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100924source "arch/arm/imx-common/Kconfig"
925
Heiko Schocherf1163962016-06-07 08:31:25 +0200926source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200927source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200928source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900929source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900930source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900931source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900932source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900933source "board/armltd/vexpress/Kconfig"
934source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900935source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700936source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900937source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800938source "board/broadcom/bcmcygnus/Kconfig"
939source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700940source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900941source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900942source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400943source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900944source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900945source "board/denx/m28evk/Kconfig"
946source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530947source "board/freescale/ls2080a/Kconfig"
948source "board/freescale/ls2080aqds/Kconfig"
949source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800950source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800951source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800952source "board/freescale/ls1021atwr/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800953source "board/freescale/ls1043ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530954source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530955source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530956source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900957source "board/freescale/mx23evk/Kconfig"
958source "board/freescale/mx25pdk/Kconfig"
959source "board/freescale/mx28evk/Kconfig"
960source "board/freescale/mx31ads/Kconfig"
961source "board/freescale/mx31pdk/Kconfig"
962source "board/freescale/mx35pdk/Kconfig"
963source "board/freescale/mx51evk/Kconfig"
964source "board/freescale/mx53ard/Kconfig"
965source "board/freescale/mx53evk/Kconfig"
966source "board/freescale/mx53loco/Kconfig"
967source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300968source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900969source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900970source "board/gumstix/pepper/Kconfig"
971source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400972source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900973source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900974source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900975source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200978source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900979source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900980source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900981source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900982source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900983source "board/siemens/draco/Kconfig"
984source "board/siemens/pxm2/Kconfig"
985source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900986source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900987source "board/spear/spear300/Kconfig"
988source "board/spear/spear310/Kconfig"
989source "board/spear/spear320/Kconfig"
990source "board/spear/spear600/Kconfig"
991source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800992source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900993source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900994source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200995source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900996source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900997source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800998source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900999source "board/ti/ti814x/Kconfig"
1000source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001001source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001002source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301003source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001004source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001005source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001006source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001007source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001008source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001009
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001010source "arch/arm/Kconfig.debug"
1011
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001012endmenu