blob: 8004c17dbc78b4ec737ef606dee6348da714e331 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
9
Lokesh Vutla37217f02016-03-24 16:02:00 +053010config DMA_ADDR_T_64BIT
11 bool
12 default y if ARM64
13
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010014config HAS_VBAR
15 bool
16
Albert ARIBAUD62e92072015-10-23 18:06:40 +020017config HAS_THUMB2
18 bool
19
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010020config CPU_ARM720T
21 bool
22
23config CPU_ARM920T
24 bool
25
26config CPU_ARM926EJS
27 bool
28
29config CPU_ARM946ES
30 bool
31
32config CPU_ARM1136
33 bool
34
35config CPU_ARM1176
36 bool
37 select HAS_VBAR
38
39config CPU_V7
40 bool
41 select HAS_VBAR
Albert ARIBAUD62e92072015-10-23 18:06:40 +020042 select HAS_THUMB2
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010043
rev13@wp.pl12d8a722015-03-01 12:44:39 +010044config CPU_V7M
45 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020046 select HAS_THUMB2
rev13@wp.pl12d8a722015-03-01 12:44:39 +010047
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010048config CPU_PXA
49 bool
50
51config CPU_SA1100
52 bool
53
54config SYS_CPU
55 default "arm720t" if CPU_ARM720T
56 default "arm920t" if CPU_ARM920T
57 default "arm926ejs" if CPU_ARM926EJS
58 default "arm946es" if CPU_ARM946ES
59 default "arm1136" if CPU_ARM1136
60 default "arm1176" if CPU_ARM1176
61 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010062 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010063 default "pxa" if CPU_PXA
64 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090065 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010066
Marek Vasut66020a62016-05-26 18:01:36 +020067config SYS_ARM_ARCH
68 int
69 default 4 if CPU_ARM720T
70 default 4 if CPU_ARM920T
71 default 5 if CPU_ARM926EJS
72 default 5 if CPU_ARM946ES
73 default 6 if CPU_ARM1136
74 default 6 if CPU_ARM1176
75 default 7 if CPU_V7
76 default 7 if CPU_V7M
77 default 5 if CPU_PXA
78 default 4 if CPU_SA1100
79 default 8 if ARM64
80
Linus Walleijf91afc42015-01-23 11:50:53 +010081config SEMIHOSTING
82 bool "support boot from semihosting"
83 help
84 In emulated environments, semihosting is a way for
85 the hosted environment to call out to the emulator to
86 retrieve files from the host machine.
87
Peng Fanf3e9bec2015-08-19 15:48:57 +080088config SYS_L2CACHE_OFF
89 bool "L2cache off"
90 help
91 If SoC does not support L2CACHE or one do not want to enable
92 L2CACHE, choose this option.
93
Andre Przywaracdaa6332016-05-31 10:45:06 -070094config ENABLE_ARM_SOC_BOOT0_HOOK
95 bool "prepare BOOT0 header"
96 help
97 If the SoC's BOOT0 requires a header area filled with (magic)
98 values, then choose this option, and create a define called
99 ARM_SOC_BOOT0_HOOK which contains the required assembler
100 preprocessor code.
101
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102choice
103 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600104 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900105
Masahiro Yamada4614b892015-02-20 17:04:01 +0900106config ARCH_AT91
107 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900108
109config TARGET_EDB93XX
110 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100111 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900112
Masahiro Yamadadd840582014-07-30 14:08:14 +0900113config TARGET_VCMA9
114 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100115 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900116
117config TARGET_SMDK2410
118 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100119 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900120
Masahiro Yamadadd840582014-07-30 14:08:14 +0900121config TARGET_ASPENITE
122 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100123 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900124
125config TARGET_GPLUGD
126 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100127 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900128
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900129config ARCH_DAVINCI
130 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900132 help
133 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900134
Masahiro Yamada47539e22014-08-31 07:10:59 +0900135config KIRKWOOD
136 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100137 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138
Stefan Roesec3d89142015-08-25 13:18:38 +0200139config ARCH_MVEBU
Stefan Roese606576d2016-01-29 09:14:54 +0100140 bool "Marvell MVEBU family (Armada XP/375/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200141 select CPU_V7
142 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200143 select OF_CONTROL
144 select OF_SEPARATE
145 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100146 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200147 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100148 select DM_SPI
149 select DM_SPI_FLASH
Stefan Roese64512232015-11-25 07:37:00 +0100150 select SPL_DM
Nathan Rossi47c0d792016-01-08 03:00:47 +1000151 select SPL_DM_SEQ_ALIAS
Stefan Roese64512232015-11-25 07:37:00 +0100152 select SPL_OF_CONTROL
Stefan Roese09a54c02015-11-20 13:51:57 +0100153 select SPL_SIMPLE_BUS
Stefan Roesea4884832014-10-22 12:13:19 +0200154
Masahiro Yamadadd840582014-07-30 14:08:14 +0900155config TARGET_DEVKIT3250
156 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300158 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900159
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200160config TARGET_WORK_92105
161 bool "Support work_92105"
162 select CPU_ARM926EJS
163 select SUPPORT_SPL
164
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165config TARGET_MX25PDK
166 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100167 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900168
Masahiro Yamadadd840582014-07-30 14:08:14 +0900169config TARGET_ZMX25
170 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900172
173config TARGET_APF27
174 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900176 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900177
Masahiro Yamadadd840582014-07-30 14:08:14 +0900178config TARGET_APX4DEVKIT
179 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100180 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900181 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900182
183config TARGET_XFI3
184 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100185 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900186 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187
188config TARGET_M28EVK
189 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100190 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900191 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900192
193config TARGET_MX23EVK
194 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100195 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900196 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900197
198config TARGET_MX28EVK
199 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100200 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900201 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900202
203config TARGET_MX23_OLINUXINO
204 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100205 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900206 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900207
208config TARGET_BG0900
209 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100210 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900211 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900212
213config TARGET_SANSA_FUZE_PLUS
214 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900216 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900217
218config TARGET_SC_SPS_1
219 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100220 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900221 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900222
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900223config ORION5X
224 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100225 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900226
Masahiro Yamadadd840582014-07-30 14:08:14 +0900227config TARGET_SPEAR300
228 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100229 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230
231config TARGET_SPEAR310
232 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
235config TARGET_SPEAR320
236 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
239config TARGET_SPEAR600
240 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800243config TARGET_STV0991
244 bool "Support stv0991"
245 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900246 select DM
247 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700248 select DM_SPI
249 select DM_SPI_FLASH
250 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800251
Masahiro Yamadadd840582014-07-30 14:08:14 +0900252config TARGET_X600
253 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900255 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257config TARGET_IMX31_PHYCORE
258 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
Masahiro Yamadadd840582014-07-30 14:08:14 +0900261config TARGET_MX31ADS
262 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_MX31PDK
266 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900268 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900269
Masahiro Yamadadd840582014-07-30 14:08:14 +0900270config TARGET_WOODBURN
271 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100272 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900273
274config TARGET_WOODBURN_SD
275 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100276 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900277 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278
279config TARGET_FLEA3
280 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900282
283config TARGET_MX35PDK
284 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900286
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900287config ARCH_BCM283X
288 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900289 select DM
290 select DM_SERIAL
291 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700292
Masahiro Yamadadd840582014-07-30 14:08:14 +0900293config TARGET_VEXPRESS_CA15_TC2
294 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100295 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100296 select CPU_V7_HAS_NONSEC
297 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900298
299config TARGET_VEXPRESS_CA5X2
300 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100301 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900302
303config TARGET_VEXPRESS_CA9X4
304 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100305 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900306
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200307config TARGET_BRXRE1
308 bool "Support BRXRE1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900311
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200312config TARGET_BRPPT1
313 bool "Support BRPPT1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100314 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900316
317config TARGET_CM_T335
318 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100319 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900320 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900321 select DM
322 select DM_SERIAL
323 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900324
325config TARGET_PEPPER
326 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900329 select DM
330 select DM_SERIAL
331 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900332
333config TARGET_AM335X_IGEP0033
334 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100335 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900336 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900337 select DM
338 select DM_SERIAL
339 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900340
341config TARGET_PCM051
342 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100343 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900344 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900345 select DM
346 select DM_SERIAL
347 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900348
349config TARGET_DRACO
350 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100351 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900352 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200353 select DM
354 select DM_SERIAL
355 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900356
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200357config TARGET_THUBAN
358 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100359 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900360 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200361 select DM
362 select DM_SERIAL
363 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900364
Heiko Schocher578056c2015-06-15 14:56:41 +0200365config TARGET_RASTABAN
366 bool "Support rastaban"
367 select CPU_V7
368 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200369 select DM
370 select DM_SERIAL
371 select DM_GPIO
Heiko Schocher578056c2015-06-15 14:56:41 +0200372
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200373config TARGET_ETAMIN
374 bool "Support etamin"
375 select CPU_V7
376 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200377 select DM
378 select DM_SERIAL
379 select DM_GPIO
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200380
Masahiro Yamadadd840582014-07-30 14:08:14 +0900381config TARGET_PXM2
382 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100383 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900384 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200385 select DM
386 select DM_SERIAL
387 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900388
389config TARGET_RUT
390 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100391 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900392 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200393 select DM
394 select DM_SERIAL
395 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900396
397config TARGET_PENGWYN
398 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100399 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900400 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900401 select DM
402 select DM_SERIAL
403 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900404
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200405config TARGET_AM335X_BALTOS
406 bool "Support am335x_baltos"
407 select CPU_V7
408 select SUPPORT_SPL
409 select DM
410 select DM_SERIAL
411 select DM_GPIO
412
Masahiro Yamadadd840582014-07-30 14:08:14 +0900413config TARGET_AM335X_EVM
414 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900416 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900417 select DM
418 select DM_SERIAL
419 select DM_GPIO
Nishanth Menon770e68c2016-02-24 12:30:55 -0600420 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900421
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200422config TARGET_AM335X_SHC
423 bool "Support am335x based shc board from bosch"
424 select CPU_V7
425 select SUPPORT_SPL
426 select DM
427 select DM_SERIAL
428 select DM_GPIO
429
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200430config TARGET_AM335X_SL50
431 bool "Support am335x_sl50"
432 select CPU_V7
433 select SUPPORT_SPL
434 select DM
435 select DM_SERIAL
436
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800437config TARGET_BAV335X
438 bool "Support bav335x"
439 select CPU_V7
440 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900441 select DM
442 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800443 help
444 The BAV335x OEM Network Processor integrates all the functions of an
445 embedded network computer in a small, easy to use SODIMM module which
446 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
447 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
448 ethernet with simple connection to external connectors.
449
450 For more information, visit: http://birdland.com/oem
451
Masahiro Yamadadd840582014-07-30 14:08:14 +0900452config TARGET_TI814X_EVM
453 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100454 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900455 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900456
457config TARGET_TI816X_EVM
458 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900461
Steve Rae43486e42016-06-02 15:10:56 -0700462config TARGET_BCM23550_W1D
463 bool "Support bcm23550_w1d"
464 select CPU_V7
465
Masahiro Yamadadd840582014-07-30 14:08:14 +0900466config TARGET_BCM28155_AP
467 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469
Steve Raeabb16782014-11-11 11:32:18 -0800470config TARGET_BCMCYGNUS
471 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700473
Steve Raeabb16782014-11-11 11:32:18 -0800474config TARGET_BCMNSP
475 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100476 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700477
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900478config ARCH_EXYNOS
479 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900480 select DM
481 select DM_SPI_FLASH
482 select DM_SERIAL
483 select DM_SPI
484 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600485 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
Simon Glass311757b2014-10-07 22:01:50 -0600487config ARCH_S5PC1XX
488 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900490 select DM
491 select DM_SERIAL
492 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600493
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900494config ARCH_HIGHBANK
495 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900498config ARCH_INTEGRATOR
499 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200500 select DM
501 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900502
Masahiro Yamadac338f092014-08-31 07:11:05 +0900503config ARCH_KEYSTONE
504 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900506 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400507 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200509config ARCH_MESON
510 bool "Amlogic Meson"
511 help
512 Support for the Meson SoC family developed by Amlogic Inc.,
513 targeted at media players and tablet computers. We currently
514 support the S905 (GXBaby) 64-bit SoC.
515
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500516config ARCH_MX7
517 bool "Freescale MX7"
518 select CPU_V7
519
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100520config ARCH_MX6
521 bool "Freescale MX6"
522 select CPU_V7
523
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200524config ARCH_MX5
525 bool "Freescale MX5"
526 select CPU_V7
527
Masahiro Yamadadd840582014-07-30 14:08:14 +0900528config TARGET_M53EVK
529 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900531 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900532
Masahiro Yamadadd840582014-07-30 14:08:14 +0900533config TARGET_MX51EVK
534 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100535 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900536
537config TARGET_MX53ARD
538 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100539 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900540
541config TARGET_MX53EVK
542 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100543 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900544
545config TARGET_MX53LOCO
546 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100547 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548
549config TARGET_MX53SMD
550 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100551 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900552
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900553config OMAP34XX
554 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100555 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900556
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900557config OMAP44XX
558 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100559 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900560 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900561
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900562config OMAP54XX
563 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100564 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900565 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900566
Madan Srinivas63847262016-05-19 19:10:43 -0500567config AM43XX
568 bool "AM43XX SoC"
569 select CPU_V7
570 select SUPPORT_SPL
571 help
572 Support for AM43xx SOC from Texas Instruments.
573 The AM43xx high performance SOC features a Cortex-A9
574 ARM core, a quad core PRU-ICSS for industrial Ethernet
575 protocols, dual camera support, optional 3D graphics
576 and an optional customer programmable secure boot.
577
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900578config RMOBILE
579 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100580 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900581
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300582config TARGET_S32V234EVB
583 bool "Support s32v234evb"
584 select ARM64
585
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200586config ARCH_SNAPDRAGON
587 bool "Qualcomm Snapdragon SoCs"
588 select ARM64
589 select DM
590 select DM_GPIO
591 select DM_SERIAL
592 select SPMI
593 select OF_CONTROL
594 select OF_SEPARATE
595
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900596config ARCH_SOCFPGA
597 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100598 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900599 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200600 select OF_CONTROL
601 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900602 select DM
603 select DM_SPI_FLASH
604 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900605
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300606config TARGET_CM_T43
607 bool "Support cm_t43"
608 select CPU_V7
609 select SUPPORT_SPL
610
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100611config ARCH_SUNXI
612 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200613 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200614 select CMD_MMC if MMC
Hans de Goedede1502c2015-06-17 20:54:07 +0200615 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200616 select DM
Tom Rini45368822015-06-30 16:51:15 -0400617 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100618 select DM_GPIO
619 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400620 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200621 select DM_USB
Hans de Goeded75111a2016-03-22 22:51:52 +0100622 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200623 select OF_CONTROL
624 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200625 select SPL_STACK_R if SUPPORT_SPL
626 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100627 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400628 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200629 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200630 select USB_KEYBOARD
Hans de Goede8c7d2292016-06-10 12:19:40 +0200631 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800632
Lucile Quirion9ee16892015-06-30 17:17:47 -0400633config TARGET_TS4800
634 bool "Support TS4800"
635 select CPU_V7
636
Masahiro Yamadadd840582014-07-30 14:08:14 +0900637config TARGET_VF610TWR
638 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100639 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900640
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530641config TARGET_COLIBRI_VF
642 bool "Support Colibri VF50/61"
643 select CPU_V7
644
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200645config TARGET_PCM052
646 bool "Support pcm-052"
647 select CPU_V7
648
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900649config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900650 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100651 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900652 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530653 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100654 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900655 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100656 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530657 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100658 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100659 select DM_MMC
Jagan Teki9f7a4502015-06-27 00:51:32 +0530660 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600661 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530662 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100663 select SPL_SEPARATE_BSS if SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900664
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530665config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100666 bool "Support Xilinx ZynqMP Platform"
667 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600668 select DM
669 select OF_CONTROL
670 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100671 select SUPPORT_SPL
Michal Simek84c72042015-01-15 10:01:51 +0100672
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900673config TEGRA
674 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900675
Linus Walleijf91afc42015-01-23 11:50:53 +0100676config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900677 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900678 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900679
Linus Walleijf91afc42015-01-23 11:50:53 +0100680config TARGET_VEXPRESS64_BASE_FVP
681 bool "Support Versatile Express ARMv8a FVP BASE model"
682 select ARM64
683 select SEMIHOSTING
684
Ryan Harkinfc04b922015-10-09 17:18:02 +0100685config TARGET_VEXPRESS64_BASE_FVP_DRAM
686 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
687 select ARM64
688 help
689 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
690 the default config to allow the user to load the images directly into
691 DRAM using model parameters rather than by using semi-hosting to load
692 the files from the host filesystem.
693
Linus Walleijffc10372015-01-23 14:41:10 +0100694config TARGET_VEXPRESS64_JUNO
695 bool "Support Versatile Express Juno Development Platform"
696 select ARM64
697
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530698config TARGET_LS2080A_EMU
699 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900700 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100701 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700702 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530703 Support for Freescale LS2080A_EMU platform
704 The LS2080A Development System (EMULATOR) is a pre silicon
705 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700706 Layerscape Architecture processor.
707
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530708config TARGET_LS2080A_SIMU
709 bool "Support ls2080a_simu"
710 select ARM64
711 select ARMV8_MULTIENTRY
712 help
713 Support for Freescale LS2080A_SIMU platform
714 The LS2080A Development System (QDS) is a pre silicon
715 development platform that supports the QorIQ LS2080A
716 Layerscape Architecture processor.
717
718config TARGET_LS2080AQDS
719 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700720 select ARM64
721 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700722 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700723 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530724 Support for Freescale LS2080AQDS platform
725 The LS2080A Development System (QDS) is a high-performance
726 development platform that supports the QorIQ LS2080A
727 Layerscape Architecture processor.
728
729config TARGET_LS2080ARDB
730 bool "Support ls2080ardb"
731 select ARM64
732 select ARMV8_MULTIENTRY
733 select SUPPORT_SPL
734 help
735 Support for Freescale LS2080ARDB platform.
736 The LS2080A Reference design board (RDB) is a high-performance
737 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700738 Layerscape Architecture processor.
739
Peter Griffin11ac2362015-07-30 18:55:23 +0100740config TARGET_HIKEY
741 bool "Support HiKey 96boards Consumer Edition Platform"
742 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100743 select DM
744 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100745 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100746 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100747 help
748 Support for HiKey 96boards platform. It features a HI6220
749 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
750
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530751config TARGET_LS1012AQDS
752 bool "Support ls1012aqds"
753 select ARM64
754 help
755 Support for Freescale LS1012AQDS platform.
756 The LS1012A Development System (QDS) is a high-performance
757 development platform that supports the QorIQ LS1012A
758 Layerscape Architecture processor.
759
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530760config TARGET_LS1012ARDB
761 bool "Support ls1012ardb"
762 select ARM64
763 help
764 Support for Freescale LS1012ARDB platform.
765 The LS1012A Reference design board (RDB) is a high-performance
766 development platform that supports the QorIQ LS1012A
767 Layerscape Architecture processor.
768
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530769config TARGET_LS1012AFRDM
770 bool "Support ls1012afrdm"
771 select ARM64
772 help
773 Support for Freescale LS1012AFRDM platform.
774 The LS1012A Freedom board (FRDM) is a high-performance
775 development platform that supports the QorIQ LS1012A
776 Layerscape Architecture processor.
777
Wang Huan550e3dc2014-09-05 13:52:44 +0800778config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800779 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100780 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800781 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800782config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800783 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100784 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800785 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800786
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800787config TARGET_LS1043AQDS
788 bool "Support ls1043aqds"
789 select ARM64
790 select ARMV8_MULTIENTRY
791 select SUPPORT_SPL
792 help
793 Support for Freescale LS1043AQDS platform.
794
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800795config TARGET_LS1043ARDB
796 bool "Support ls1043ardb"
797 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800798 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800799 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800800 help
801 Support for Freescale LS1043ARDB platform.
802
Masahiro Yamadadd840582014-07-30 14:08:14 +0900803config TARGET_H2200
804 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100805 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900806
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700807config TARGET_ZIPITZ2
808 bool "Support zipitz2"
809 select CPU_PXA
810
Masahiro Yamadadd840582014-07-30 14:08:14 +0900811config TARGET_COLIBRI_PXA270
812 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100813 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900814
Masahiro Yamada66cba042014-10-03 19:21:07 +0900815config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900816 bool "Socionext UniPhier SoCs"
Masahiro Yamada48264d92016-02-02 21:11:32 +0900817 select CLK_UNIPHIER
Masahiro Yamada02627352014-10-20 17:45:56 +0900818 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900819 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900820 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900821 select SPL_OF_CONTROL
Masahiro Yamada51ea5a02016-06-17 19:24:29 +0900822 select OF_LIBFDT
Masahiro Yamada4e819952015-03-31 12:47:54 +0900823 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900824 select SPL_DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900825 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900826 select DM_SERIAL
827 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900828 select DM_MMC
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900829 help
830 Support for UniPhier SoC family developed by Socionext Inc.
831 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900832
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800833config STM32
834 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100835 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100836 select DM
837 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100838
Simon Glass2444dae2015-08-30 16:55:38 -0600839config ARCH_ROCKCHIP
840 bool "Support Rockchip SoCs"
841 select SUPPORT_SPL
842 select SPL
843 select OF_CONTROL
844 select CPU_V7
Simon Glassaa150382016-06-12 23:30:14 -0600845 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600846 select DM
Simon Glassaa150382016-06-12 23:30:14 -0600847 select SPL_DM
848 select SYS_MALLOC_F
849 select SPL_SYS_MALLOC_SIMPLE
850 select DM_GPIO
851 select DM_I2C
852 select DM_MMC
853 select DM_SERIAL
854 select DM_SPI
855 select DM_SPI_FLASH
Simon Glass2444dae2015-08-30 16:55:38 -0600856
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700857config TARGET_THUNDERX_88XX
858 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200859 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700860 select OF_CONTROL
861
Masahiro Yamadadd840582014-07-30 14:08:14 +0900862endchoice
863
Masahiro Yamada4614b892015-02-20 17:04:01 +0900864source "arch/arm/mach-at91/Kconfig"
865
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900866source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900867
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900868source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700869
Thomas Abraham77b55e82015-08-03 17:58:00 +0530870source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900871
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900872source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900873
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900874source "arch/arm/mach-integrator/Kconfig"
875
Masahiro Yamada39a72342015-02-20 17:04:11 +0900876source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900877
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900878source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900879
Stefan Roesec3d89142015-08-25 13:18:38 +0200880source "arch/arm/mach-mvebu/Kconfig"
881
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500882source "arch/arm/cpu/armv7/mx7/Kconfig"
883
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100884source "arch/arm/cpu/armv7/mx6/Kconfig"
885
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200886source "arch/arm/cpu/armv7/mx5/Kconfig"
887
Madan Srinivasa774e082016-05-19 19:10:44 -0500888source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500889
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900890source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900891
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900892source "arch/arm/cpu/armv7/rmobile/Kconfig"
893
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200894source "arch/arm/mach-meson/Kconfig"
895
Simon Glass2444dae2015-08-30 16:55:38 -0600896source "arch/arm/mach-rockchip/Kconfig"
897
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900898source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600899
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200900source "arch/arm/mach-snapdragon/Kconfig"
901
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900902source "arch/arm/mach-socfpga/Kconfig"
903
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800904source "arch/arm/mach-stm32/Kconfig"
905
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900906source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900907
Masahiro Yamada4c425572015-02-27 02:26:42 +0900908source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900909
Masahiro Yamada0107f242015-03-16 16:43:22 +0900910source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900911
Hans de Goedeea624e12014-11-14 09:34:30 +0100912source "arch/arm/cpu/armv7/Kconfig"
913
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530914source "arch/arm/cpu/armv8/zynqmp/Kconfig"
915
Linus Walleij23b58772015-03-09 10:53:21 +0100916source "arch/arm/cpu/armv8/Kconfig"
917
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100918source "arch/arm/imx-common/Kconfig"
919
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200920source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200921source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200922source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900923source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900924source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900925source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900926source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900927source "board/armltd/vexpress/Kconfig"
928source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900929source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -0700930source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800932source "board/broadcom/bcmcygnus/Kconfig"
933source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700934source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900936source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400937source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900938source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/denx/m28evk/Kconfig"
940source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530941source "board/freescale/ls2080a/Kconfig"
942source "board/freescale/ls2080aqds/Kconfig"
943source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800944source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800945source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800946source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800947source "board/freescale/ls1043ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530948source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530949source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530950source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900951source "board/freescale/mx23evk/Kconfig"
952source "board/freescale/mx25pdk/Kconfig"
953source "board/freescale/mx28evk/Kconfig"
954source "board/freescale/mx31ads/Kconfig"
955source "board/freescale/mx31pdk/Kconfig"
956source "board/freescale/mx35pdk/Kconfig"
957source "board/freescale/mx51evk/Kconfig"
958source "board/freescale/mx53ard/Kconfig"
959source "board/freescale/mx53evk/Kconfig"
960source "board/freescale/mx53loco/Kconfig"
961source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300962source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900963source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900964source "board/gumstix/pepper/Kconfig"
965source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400966source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900967source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900970source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200972source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900974source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900975source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900976source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900977source "board/siemens/draco/Kconfig"
978source "board/siemens/pxm2/Kconfig"
979source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900981source "board/spear/spear300/Kconfig"
982source "board/spear/spear310/Kconfig"
983source "board/spear/spear320/Kconfig"
984source "board/spear/spear600/Kconfig"
985source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800986source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900987source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900988source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200989source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900990source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900991source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800992source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900993source "board/ti/ti814x/Kconfig"
994source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900995source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900996source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530997source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400998source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200999source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001000source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001001source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001002source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001003
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001004source "arch/arm/Kconfig.debug"
1005
Masahiro Yamadadd840582014-07-30 14:08:14 +09001006endmenu