blob: 5ac94011047388d9bb679319b7f805b1b021e682 [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
Tom Rinib631c9d2016-07-27 22:29:41 -0400558 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900559
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900560config OMAP44XX
561 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100562 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900563 select SUPPORT_SPL
Tom Rinib631c9d2016-07-27 22:29:41 -0400564 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900565
Masahiro Yamada420b8162014-08-31 07:11:04 +0900566config OMAP54XX
567 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100568 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900569 select SUPPORT_SPL
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500570
571config AM43XX
572 bool "AM43XX SoC"
573 select CPU_V7
574 select SUPPORT_SPL
575 help
576 Support for AM43xx SOC from Texas Instruments.
577 The AM43xx high performance SOC features a Cortex-A9
578 ARM core, a quad core PRU-ICSS for industrial Ethernet
579 protocols, dual camera support, optional 3D graphics
580 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900581
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900582config RMOBILE
583 bool "Renesas ARM SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100584 select CPU_V7
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300585
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300586config TARGET_S32V234EVB
587 bool "Support s32v234evb"
588 select ARM64
589
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200590config ARCH_SNAPDRAGON
591 bool "Qualcomm Snapdragon SoCs"
592 select ARM64
593 select DM
594 select DM_GPIO
595 select DM_SERIAL
596 select SPMI
597 select OF_CONTROL
598 select OF_SEPARATE
599
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900600config ARCH_SOCFPGA
601 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100602 select CPU_V7
603 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200604 select OF_CONTROL
605 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900606 select DM
607 select DM_SPI_FLASH
608 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100609
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300610config TARGET_CM_T43
611 bool "Support cm_t43"
612 select CPU_V7
613 select SUPPORT_SPL
614
Ian Campbelld8e69e02014-10-24 21:20:44 +0100615config ARCH_SUNXI
616 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200617 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200618 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200619 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200620 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400621 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100622 select DM_GPIO
623 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400624 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200625 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100626 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200627 select OF_CONTROL
628 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200629 select SPL_STACK_R if SUPPORT_SPL
630 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100631 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400632 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200633 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200634 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200635 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800636
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400637config TARGET_TS4800
638 bool "Support TS4800"
639 select CPU_V7
640
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900641config TARGET_VF610TWR
642 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100643 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900644
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530645config TARGET_COLIBRI_VF
646 bool "Support Colibri VF50/61"
647 select CPU_V7
648
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200649config TARGET_PCM052
650 bool "Support pcm-052"
651 select CPU_V7
652
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900653config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900654 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100655 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900656 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530657 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100658 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900659 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100660 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530661 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100662 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100663 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600664 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530665 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600666 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530667 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100668 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600669 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600670 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900671
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530672config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100673 bool "Support Xilinx ZynqMP Platform"
674 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600675 select DM
676 select OF_CONTROL
677 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100678 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200679 select CLK
680 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600681 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100682
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900683config TEGRA
684 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900685
Linus Walleij800d6fd2015-01-23 11:50:53 +0100686config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900687 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900688 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900689
Linus Walleij800d6fd2015-01-23 11:50:53 +0100690config TARGET_VEXPRESS64_BASE_FVP
691 bool "Support Versatile Express ARMv8a FVP BASE model"
692 select ARM64
693 select SEMIHOSTING
694
Ryan Harkinb6b96652015-10-09 17:18:02 +0100695config TARGET_VEXPRESS64_BASE_FVP_DRAM
696 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
697 select ARM64
698 help
699 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
700 the default config to allow the user to load the images directly into
701 DRAM using model parameters rather than by using semi-hosting to load
702 the files from the host filesystem.
703
Linus Walleijc5822502015-01-23 14:41:10 +0100704config TARGET_VEXPRESS64_JUNO
705 bool "Support Versatile Express Juno Development Platform"
706 select ARM64
707
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530708config TARGET_LS2080A_EMU
709 bool "Support ls2080a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900710 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100711 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530712 help
713 Support for Freescale LS2080A_EMU platform
714 The LS2080A Development System (EMULATOR) is a pre silicon
715 development platform that supports the QorIQ LS2080A
716 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900717
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530718config TARGET_LS2080A_SIMU
719 bool "Support ls2080a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900720 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100721 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530722 help
723 Support for Freescale LS2080A_SIMU platform
724 The LS2080A Development System (QDS) is a pre silicon
725 development platform that supports the QorIQ LS2080A
726 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900727
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530728config TARGET_LS2080AQDS
729 bool "Support ls2080aqds"
York Sun03017032015-03-20 19:28:23 -0700730 select ARM64
731 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700732 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700733 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530734 Support for Freescale LS2080AQDS platform
735 The LS2080A Development System (QDS) is a high-performance
736 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700737 Layerscape Architecture processor.
738
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530739config TARGET_LS2080ARDB
740 bool "Support ls2080ardb"
York Sune12abcb2015-03-20 19:28:24 -0700741 select ARM64
742 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700743 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700744 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530745 Support for Freescale LS2080ARDB platform.
746 The LS2080A Reference design board (RDB) is a high-performance
747 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700748 Layerscape Architecture processor.
749
Peter Griffin31f327e2015-07-30 18:55:23 +0100750config TARGET_HIKEY
751 bool "Support HiKey 96boards Consumer Edition Platform"
752 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100753 select DM
754 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100755 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100756 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100757 help
758 Support for HiKey 96boards platform. It features a HI6220
759 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
760
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530761config TARGET_LS1012AQDS
762 bool "Support ls1012aqds"
763 select ARM64
764 help
765 Support for Freescale LS1012AQDS platform.
766 The LS1012A Development System (QDS) is a high-performance
767 development platform that supports the QorIQ LS1012A
768 Layerscape Architecture processor.
769
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530770config TARGET_LS1012ARDB
771 bool "Support ls1012ardb"
772 select ARM64
773 help
774 Support for Freescale LS1012ARDB platform.
775 The LS1012A Reference design board (RDB) is a high-performance
776 development platform that supports the QorIQ LS1012A
777 Layerscape Architecture processor.
778
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530779config TARGET_LS1012AFRDM
780 bool "Support ls1012afrdm"
781 select ARM64
782 help
783 Support for Freescale LS1012AFRDM platform.
784 The LS1012A Freedom board (FRDM) is a high-performance
785 development platform that supports the QorIQ LS1012A
786 Layerscape Architecture processor.
787
Wang Huanf0ce7d62014-09-05 13:52:44 +0800788config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800789 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100790 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800791 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800792config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800793 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100794 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800795 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800796
Shaohui Xiedd335672015-11-11 17:58:37 +0800797config TARGET_LS1043AQDS
798 bool "Support ls1043aqds"
799 select ARM64
800 select ARMV8_MULTIENTRY
801 select SUPPORT_SPL
802 help
803 Support for Freescale LS1043AQDS platform.
804
Mingkai Hueee86ff2015-10-26 19:47:52 +0800805config TARGET_LS1043ARDB
806 bool "Support ls1043ardb"
807 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800808 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800809 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800810 help
811 Support for Freescale LS1043ARDB platform.
812
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900813config TARGET_H2200
814 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100815 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900816
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700817config TARGET_ZIPITZ2
818 bool "Support zipitz2"
819 select CPU_PXA
820
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900821config TARGET_COLIBRI_PXA270
822 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100823 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900824
Masahiro Yamada82069432014-10-03 19:21:07 +0900825config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900826 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900827 select CLK_UNIPHIER
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900828 select SUPPORT_SPL
Masahiro Yamada9c9a3e12014-12-18 19:11:03 +0900829 select SPL
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900830 select OF_CONTROL
Masahiro Yamada47eb9a82015-08-28 20:13:18 +0900831 select SPL_OF_CONTROL
Masahiro Yamada460483c2016-06-17 19:24:29 +0900832 select OF_LIBFDT
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900833 select DM
Masahiro Yamadad1066ba2015-08-28 20:13:17 +0900834 select SPL_DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900835 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900836 select DM_SERIAL
837 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900838 select DM_MMC
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900839 help
840 Support for UniPhier SoC family developed by Socionext Inc.
841 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900842
Vikas Manocha95c89192016-01-15 17:49:06 -0800843config STM32
844 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100845 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100846 select DM
847 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100848
Simon Glass2cffe662015-08-30 16:55:38 -0600849config ARCH_ROCKCHIP
850 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600851 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600852 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600853 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800854 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600855 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800856 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600857 select DM_GPIO
858 select DM_I2C
859 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600860 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600861 select DM_SERIAL
862 select DM_SPI
863 select DM_SPI_FLASH
Simon Glass2cffe662015-08-30 16:55:38 -0600864
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700865config TARGET_THUNDERX_88XX
866 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200867 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700868 select OF_CONTROL
869
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900870endchoice
871
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900872source "arch/arm/mach-at91/Kconfig"
873
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900874source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900875
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900876source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700877
Thomas Abraham74f84862015-08-03 17:58:00 +0530878source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900879
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900880source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900881
Masahiro Yamadacad44162015-04-21 21:59:36 +0900882source "arch/arm/mach-integrator/Kconfig"
883
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900884source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900885
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900886source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900887
Stefan Roese383e0c12015-08-25 13:18:38 +0200888source "arch/arm/mach-mvebu/Kconfig"
889
Adrian Alonso98810772015-09-03 11:49:28 -0500890source "arch/arm/cpu/armv7/mx7/Kconfig"
891
Boris BREZILLON51e82662015-03-04 13:13:03 +0100892source "arch/arm/cpu/armv7/mx6/Kconfig"
893
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200894source "arch/arm/cpu/armv7/mx5/Kconfig"
895
Madan Srinivas8a536e92016-05-19 19:10:44 -0500896source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500897
Masahiro Yamada22537642015-02-20 17:04:09 +0900898source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900899
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900900source "arch/arm/cpu/armv7/rmobile/Kconfig"
901
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200902source "arch/arm/mach-meson/Kconfig"
903
Simon Glass2cffe662015-08-30 16:55:38 -0600904source "arch/arm/mach-rockchip/Kconfig"
905
Minkyu Kang56b820a2015-11-20 15:24:57 +0900906source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600907
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200908source "arch/arm/mach-snapdragon/Kconfig"
909
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900910source "arch/arm/mach-socfpga/Kconfig"
911
Vikas Manocha95c89192016-01-15 17:49:06 -0800912source "arch/arm/mach-stm32/Kconfig"
913
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900914source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900915
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900916source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900917
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900918source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900919
Hans de Goede85437352014-11-14 09:34:30 +0100920source "arch/arm/cpu/armv7/Kconfig"
921
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530922source "arch/arm/cpu/armv8/zynqmp/Kconfig"
923
Linus Walleij74771392015-03-09 10:53:21 +0100924source "arch/arm/cpu/armv8/Kconfig"
925
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100926source "arch/arm/imx-common/Kconfig"
927
Heiko Schocherf1163962016-06-07 08:31:25 +0200928source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200929source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200930source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900931source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900932source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900933source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900934source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900935source "board/armltd/vexpress/Kconfig"
936source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900937source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700938source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900939source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800940source "board/broadcom/bcmcygnus/Kconfig"
941source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700942source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900943source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900944source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400945source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900946source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900947source "board/denx/m28evk/Kconfig"
948source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530949source "board/freescale/ls2080a/Kconfig"
950source "board/freescale/ls2080aqds/Kconfig"
951source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800952source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800953source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800954source "board/freescale/ls1021atwr/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800955source "board/freescale/ls1043ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530956source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530957source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530958source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900959source "board/freescale/mx23evk/Kconfig"
960source "board/freescale/mx25pdk/Kconfig"
961source "board/freescale/mx28evk/Kconfig"
962source "board/freescale/mx31ads/Kconfig"
963source "board/freescale/mx31pdk/Kconfig"
964source "board/freescale/mx35pdk/Kconfig"
965source "board/freescale/mx51evk/Kconfig"
966source "board/freescale/mx53ard/Kconfig"
967source "board/freescale/mx53evk/Kconfig"
968source "board/freescale/mx53loco/Kconfig"
969source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300970source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900971source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900972source "board/gumstix/pepper/Kconfig"
973source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400974source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900975source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900978source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900979source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200980source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900981source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900982source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900983source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900984source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900985source "board/siemens/draco/Kconfig"
986source "board/siemens/pxm2/Kconfig"
987source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900988source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900989source "board/spear/spear300/Kconfig"
990source "board/spear/spear310/Kconfig"
991source "board/spear/spear320/Kconfig"
992source "board/spear/spear600/Kconfig"
993source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800994source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900995source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900996source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200997source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900998source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900999source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001000source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001001source "board/ti/ti814x/Kconfig"
1002source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001003source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001004source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301005source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001006source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001007source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001008source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001009source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001010source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001011
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001012source "arch/arm/Kconfig.debug"
1013
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001014endmenu