blob: a311215c92bee53b0b6cd274c788bf13a0729c0a [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
Masahiro Yamadabb6b1422016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini067716b2016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada016a9542014-09-14 03:01:51 +090011
Lokesh Vutla37217f02016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinie009bfa2016-08-22 08:22:18 -040017 bool
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010018
Albert ARIBAUD62e92072015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinie009bfa2016-08-22 08:22:18 -040020 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020021
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinie009bfa2016-08-22 08:22:18 -040023 bool
Tom Rini067716b2016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinie009bfa2016-08-22 08:22:18 -040027 bool
Tom Rini067716b2016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinie009bfa2016-08-22 08:22:18 -040031 bool
Tom Rini067716b2016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinie009bfa2016-08-22 08:22:18 -040035 bool
Tom Rini067716b2016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinie009bfa2016-08-22 08:22:18 -040039 bool
Tom Rini067716b2016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinie009bfa2016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini067716b2016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinie009bfa2016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010052
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinie009bfa2016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.pl12d8a722015-03-01 12:44:39 +010057
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinie009bfa2016-08-22 08:22:18 -040059 bool
Tom Rini067716b2016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinie009bfa2016-08-22 08:22:18 -040063 bool
Tom Rini067716b2016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinie009bfa2016-08-22 08:22:18 -040067 default "arm720t" if CPU_ARM720T
68 default "arm920t" if CPU_ARM920T
69 default "arm926ejs" if CPU_ARM926EJS
70 default "arm946es" if CPU_ARM946ES
71 default "arm1136" if CPU_ARM1136
72 default "arm1176" if CPU_ARM1176
73 default "armv7" if CPU_V7
74 default "armv7m" if CPU_V7M
75 default "pxa" if CPU_PXA
76 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078
Marek Vasut66020a62016-05-26 18:01:36 +020079config SYS_ARM_ARCH
80 int
81 default 4 if CPU_ARM720T
82 default 4 if CPU_ARM920T
83 default 5 if CPU_ARM926EJS
84 default 5 if CPU_ARM946ES
85 default 6 if CPU_ARM1136
86 default 6 if CPU_ARM1176
87 default 7 if CPU_V7
88 default 7 if CPU_V7M
89 default 5 if CPU_PXA
90 default 4 if CPU_SA1100
91 default 8 if ARM64
92
Tom Rini067716b2016-08-22 08:22:17 -040093config SYS_CACHE_SHIFT_5
94 bool
95
96config SYS_CACHE_SHIFT_6
97 bool
98
99config SYS_CACHE_SHIFT_7
100 bool
101
102config SYS_CACHELINE_SIZE
103 int
104 default 128 if SYS_CACHE_SHIFT_7
105 default 64 if SYS_CACHE_SHIFT_6
106 default 32 if SYS_CACHE_SHIFT_5
107
Linus Walleijf91afc42015-01-23 11:50:53 +0100108config SEMIHOSTING
109 bool "support boot from semihosting"
110 help
111 In emulated environments, semihosting is a way for
112 the hosted environment to call out to the emulator to
113 retrieve files from the host machine.
114
Peng Fanf3e9bec2015-08-19 15:48:57 +0800115config SYS_L2CACHE_OFF
116 bool "L2cache off"
117 help
118 If SoC does not support L2CACHE or one do not want to enable
119 L2CACHE, choose this option.
120
Andre Przywaracdaa6332016-05-31 10:45:06 -0700121config ENABLE_ARM_SOC_BOOT0_HOOK
122 bool "prepare BOOT0 header"
123 help
124 If the SoC's BOOT0 requires a header area filled with (magic)
125 values, then choose this option, and create a define called
126 ARM_SOC_BOOT0_HOOK which contains the required assembler
127 preprocessor code.
128
Masahiro Yamadadd840582014-07-30 14:08:14 +0900129choice
130 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600131 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132
Masahiro Yamada4614b892015-02-20 17:04:01 +0900133config ARCH_AT91
134 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900135
136config TARGET_EDB93XX
137 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100138 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139
Masahiro Yamadadd840582014-07-30 14:08:14 +0900140config TARGET_VCMA9
141 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100142 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143
144config TARGET_SMDK2410
145 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100146 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900147
Masahiro Yamadadd840582014-07-30 14:08:14 +0900148config TARGET_ASPENITE
149 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100150 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151
152config TARGET_GPLUGD
153 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900155
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900156config ARCH_DAVINCI
157 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900159 help
160 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900161
Masahiro Yamada47539e22014-08-31 07:10:59 +0900162config KIRKWOOD
163 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165
Stefan Roesec3d89142015-08-25 13:18:38 +0200166config ARCH_MVEBU
Stefan Roese606576d2016-01-29 09:14:54 +0100167 bool "Marvell MVEBU family (Armada XP/375/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200168 select CPU_V7
169 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200170 select OF_CONTROL
171 select OF_SEPARATE
172 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100173 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200174 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100175 select DM_SPI
176 select DM_SPI_FLASH
Stefan Roese64512232015-11-25 07:37:00 +0100177 select SPL_DM
Nathan Rossi47c0d792016-01-08 03:00:47 +1000178 select SPL_DM_SEQ_ALIAS
Stefan Roese64512232015-11-25 07:37:00 +0100179 select SPL_OF_CONTROL
Stefan Roese09a54c02015-11-20 13:51:57 +0100180 select SPL_SIMPLE_BUS
Stefan Roesea4884832014-10-22 12:13:19 +0200181
Masahiro Yamadadd840582014-07-30 14:08:14 +0900182config TARGET_DEVKIT3250
183 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300185 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200187config TARGET_WORK_92105
188 bool "Support work_92105"
189 select CPU_ARM926EJS
190 select SUPPORT_SPL
191
Masahiro Yamadadd840582014-07-30 14:08:14 +0900192config TARGET_MX25PDK
193 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195
Masahiro Yamadadd840582014-07-30 14:08:14 +0900196config TARGET_ZMX25
197 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900199
200config TARGET_APF27
201 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900203 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Masahiro Yamadadd840582014-07-30 14:08:14 +0900205config TARGET_APX4DEVKIT
206 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900208 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209
210config TARGET_XFI3
211 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100212 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900213 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900214
215config TARGET_M28EVK
216 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900218 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219
220config TARGET_MX23EVK
221 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100222 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900223 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900224
225config TARGET_MX28EVK
226 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900228 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900229
230config TARGET_MX23_OLINUXINO
231 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900233 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
235config TARGET_BG0900
236 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239
240config TARGET_SANSA_FUZE_PLUS
241 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100242 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900243 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900244
245config TARGET_SC_SPS_1
246 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100247 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900248 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900249
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900250config ORION5X
251 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100252 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900253
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254config TARGET_SPEAR300
255 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100256 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257
258config TARGET_SPEAR310
259 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900261
262config TARGET_SPEAR320
263 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100264 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900265
266config TARGET_SPEAR600
267 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100268 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900269
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800270config TARGET_STV0991
271 bool "Support stv0991"
272 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900273 select DM
274 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700275 select DM_SPI
276 select DM_SPI_FLASH
277 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800278
Masahiro Yamadadd840582014-07-30 14:08:14 +0900279config TARGET_X600
280 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900283
Masahiro Yamadadd840582014-07-30 14:08:14 +0900284config TARGET_IMX31_PHYCORE
285 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100286 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287
Masahiro Yamadadd840582014-07-30 14:08:14 +0900288config TARGET_MX31ADS
289 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
292config TARGET_MX31PDK
293 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900295 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900296
Masahiro Yamadadd840582014-07-30 14:08:14 +0900297config TARGET_WOODBURN
298 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100299 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900300
301config TARGET_WOODBURN_SD
302 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100303 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900304 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900305
306config TARGET_FLEA3
307 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900309
310config TARGET_MX35PDK
311 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100312 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900313
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900314config ARCH_BCM283X
315 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900316 select DM
317 select DM_SERIAL
318 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700319
Masahiro Yamadadd840582014-07-30 14:08:14 +0900320config TARGET_VEXPRESS_CA15_TC2
321 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100322 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100323 select CPU_V7_HAS_NONSEC
324 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900325
326config TARGET_VEXPRESS_CA5X2
327 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100328 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
330config TARGET_VEXPRESS_CA9X4
331 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900333
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200334config TARGET_BRXRE1
335 bool "Support BRXRE1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100336 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900337 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900338
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200339config TARGET_BRPPT1
340 bool "Support BRPPT1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100341 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900342 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900343
344config TARGET_CM_T335
345 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100346 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900347 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900348 select DM
349 select DM_SERIAL
350 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900351
352config TARGET_PEPPER
353 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100354 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900355 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900356 select DM
357 select DM_SERIAL
358 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900359
360config TARGET_AM335X_IGEP0033
361 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100362 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900363 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900364 select DM
365 select DM_SERIAL
366 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900367
368config TARGET_PCM051
369 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100370 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900371 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900375
376config TARGET_DRACO
377 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100378 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900379 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200380 select DM
381 select DM_SERIAL
382 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900383
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200384config TARGET_THUBAN
385 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100386 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900387 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200388 select DM
389 select DM_SERIAL
390 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900391
Heiko Schocher578056c2015-06-15 14:56:41 +0200392config TARGET_RASTABAN
393 bool "Support rastaban"
394 select CPU_V7
395 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200396 select DM
397 select DM_SERIAL
398 select DM_GPIO
Heiko Schocher578056c2015-06-15 14:56:41 +0200399
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200400config TARGET_ETAMIN
Tom Rinie009bfa2016-08-22 08:22:18 -0400401 bool "Support etamin"
402 select CPU_V7
403 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200404 select DM
405 select DM_SERIAL
406 select DM_GPIO
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200407
Masahiro Yamadadd840582014-07-30 14:08:14 +0900408config TARGET_PXM2
409 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900411 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200412 select DM
413 select DM_SERIAL
414 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900415
416config TARGET_RUT
417 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900419 select SUPPORT_SPL
Heiko Schocher71423432016-06-13 15:16:01 +0200420 select DM
421 select DM_SERIAL
422 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900423
424config TARGET_PENGWYN
425 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100426 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900427 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900428 select DM
429 select DM_SERIAL
430 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900431
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200432config TARGET_AM335X_BALTOS
433 bool "Support am335x_baltos"
434 select CPU_V7
435 select SUPPORT_SPL
436 select DM
437 select DM_SERIAL
438 select DM_GPIO
439
Masahiro Yamadadd840582014-07-30 14:08:14 +0900440config TARGET_AM335X_EVM
441 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100442 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900443 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900444 select DM
445 select DM_SERIAL
446 select DM_GPIO
Nishanth Menon770e68c2016-02-24 12:30:55 -0600447 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900448
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200449config TARGET_AM335X_SHC
450 bool "Support am335x based shc board from bosch"
451 select CPU_V7
452 select SUPPORT_SPL
453 select DM
454 select DM_SERIAL
455 select DM_GPIO
456
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200457config TARGET_AM335X_SL50
458 bool "Support am335x_sl50"
459 select CPU_V7
460 select SUPPORT_SPL
461 select DM
Masahiro Yamada174245b2016-08-30 18:51:40 +0900462 select DM_GPIO
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200463 select DM_SERIAL
464
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800465config TARGET_BAV335X
466 bool "Support bav335x"
467 select CPU_V7
468 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900469 select DM
470 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800471 help
472 The BAV335x OEM Network Processor integrates all the functions of an
473 embedded network computer in a small, easy to use SODIMM module which
474 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
475 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
476 ethernet with simple connection to external connectors.
477
478 For more information, visit: http://birdland.com/oem
479
Masahiro Yamadadd840582014-07-30 14:08:14 +0900480config TARGET_TI814X_EVM
481 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900483 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
485config TARGET_TI816X_EVM
486 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900488 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900489
Steve Rae43486e42016-06-02 15:10:56 -0700490config TARGET_BCM23550_W1D
491 bool "Support bcm23550_w1d"
492 select CPU_V7
493
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494config TARGET_BCM28155_AP
495 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
Steve Raeabb16782014-11-11 11:32:18 -0800498config TARGET_BCMCYGNUS
499 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100500 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700501
Steve Raeabb16782014-11-11 11:32:18 -0800502config TARGET_BCMNSP
503 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100504 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700505
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900506config ARCH_EXYNOS
507 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900508 select DM
509 select DM_SPI_FLASH
510 select DM_SERIAL
511 select DM_SPI
512 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600513 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900514
Simon Glass311757b2014-10-07 22:01:50 -0600515config ARCH_S5PC1XX
516 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100517 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900518 select DM
519 select DM_SERIAL
520 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600521
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900522config ARCH_HIGHBANK
523 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100524 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900525
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900526config ARCH_INTEGRATOR
527 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200528 select DM
529 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900530
Masahiro Yamadac338f092014-08-31 07:11:05 +0900531config ARCH_KEYSTONE
532 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100533 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900534 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400535 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900536
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200537config ARCH_MESON
538 bool "Amlogic Meson"
539 help
540 Support for the Meson SoC family developed by Amlogic Inc.,
541 targeted at media players and tablet computers. We currently
542 support the S905 (GXBaby) 64-bit SoC.
543
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500544config ARCH_MX7
545 bool "Freescale MX7"
546 select CPU_V7
547
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100548config ARCH_MX6
549 bool "Freescale MX6"
550 select CPU_V7
551
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200552config ARCH_MX5
553 bool "Freescale MX5"
554 select CPU_V7
555
Masahiro Yamadadd840582014-07-30 14:08:14 +0900556config TARGET_M53EVK
557 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100558 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900559 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900560
Masahiro Yamadadd840582014-07-30 14:08:14 +0900561config TARGET_MX51EVK
562 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100563 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900564
565config TARGET_MX53ARD
566 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100567 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900568
569config TARGET_MX53EVK
570 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100571 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900572
573config TARGET_MX53LOCO
574 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100575 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900576
577config TARGET_MX53SMD
578 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100579 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900580
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900581config OMAP34XX
582 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100583 select CPU_V7
Tom Rinia2ea62e2016-07-27 22:29:40 -0400584 select SUPPORT_SPL
Tom Rini7d106242016-07-27 22:29:41 -0400585 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900586
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900587config OMAP44XX
588 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100589 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900590 select SUPPORT_SPL
Tom Rini7d106242016-07-27 22:29:41 -0400591 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900592
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900593config OMAP54XX
594 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100595 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900596 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900597
Madan Srinivas63847262016-05-19 19:10:43 -0500598config AM43XX
599 bool "AM43XX SoC"
600 select CPU_V7
601 select SUPPORT_SPL
602 help
603 Support for AM43xx SOC from Texas Instruments.
604 The AM43xx high performance SOC features a Cortex-A9
605 ARM core, a quad core PRU-ICSS for industrial Ethernet
606 protocols, dual camera support, optional 3D graphics
607 and an optional customer programmable secure boot.
608
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900609config ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900610 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900611 select DM
612 select DM_SERIAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900613
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300614config TARGET_S32V234EVB
615 bool "Support s32v234evb"
616 select ARM64
617
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200618config ARCH_SNAPDRAGON
619 bool "Qualcomm Snapdragon SoCs"
620 select ARM64
621 select DM
622 select DM_GPIO
623 select DM_SERIAL
624 select SPMI
625 select OF_CONTROL
626 select OF_SEPARATE
627
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900628config ARCH_SOCFPGA
629 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100630 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900631 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200632 select OF_CONTROL
633 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900634 select DM
635 select DM_SPI_FLASH
636 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900637
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300638config TARGET_CM_T43
639 bool "Support cm_t43"
640 select CPU_V7
641 select SUPPORT_SPL
642
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100643config ARCH_SUNXI
644 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200645 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200646 select CMD_MMC if MMC
Hans de Goedede1502c2015-06-17 20:54:07 +0200647 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200648 select DM
Tom Rini45368822015-06-30 16:51:15 -0400649 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100650 select DM_GPIO
651 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400652 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200653 select DM_USB
Hans de Goeded75111a2016-03-22 22:51:52 +0100654 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200655 select OF_CONTROL
656 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200657 select SPL_STACK_R if SUPPORT_SPL
658 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100659 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400660 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200661 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200662 select USB_KEYBOARD
Hans de Goede8c7d2292016-06-10 12:19:40 +0200663 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800664
Lucile Quirion9ee16892015-06-30 17:17:47 -0400665config TARGET_TS4800
666 bool "Support TS4800"
667 select CPU_V7
668
Masahiro Yamadadd840582014-07-30 14:08:14 +0900669config TARGET_VF610TWR
670 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100671 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900672
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530673config TARGET_COLIBRI_VF
674 bool "Support Colibri VF50/61"
675 select CPU_V7
676
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200677config TARGET_PCM052
678 bool "Support pcm-052"
679 select CPU_V7
680
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900681config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900682 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100683 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900684 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530685 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100686 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900687 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100688 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530689 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100690 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100691 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600692 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530693 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600694 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530695 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100696 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600697 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600698 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900699
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530700config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100701 bool "Support Xilinx ZynqMP Platform"
702 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600703 select DM
704 select OF_CONTROL
705 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100706 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200707 select CLK
708 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600709 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100710
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900711config TEGRA
712 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900713
Linus Walleijf91afc42015-01-23 11:50:53 +0100714config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900715 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900716 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900717
Linus Walleijf91afc42015-01-23 11:50:53 +0100718config TARGET_VEXPRESS64_BASE_FVP
719 bool "Support Versatile Express ARMv8a FVP BASE model"
720 select ARM64
721 select SEMIHOSTING
722
Ryan Harkinfc04b922015-10-09 17:18:02 +0100723config TARGET_VEXPRESS64_BASE_FVP_DRAM
724 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
725 select ARM64
726 help
727 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
728 the default config to allow the user to load the images directly into
729 DRAM using model parameters rather than by using semi-hosting to load
730 the files from the host filesystem.
731
Linus Walleijffc10372015-01-23 14:41:10 +0100732config TARGET_VEXPRESS64_JUNO
733 bool "Support Versatile Express Juno Development Platform"
734 select ARM64
735
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530736config TARGET_LS2080A_EMU
737 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900738 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100739 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700740 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530741 Support for Freescale LS2080A_EMU platform
742 The LS2080A Development System (EMULATOR) is a pre silicon
743 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700744 Layerscape Architecture processor.
745
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530746config TARGET_LS2080A_SIMU
747 bool "Support ls2080a_simu"
748 select ARM64
749 select ARMV8_MULTIENTRY
750 help
751 Support for Freescale LS2080A_SIMU platform
752 The LS2080A Development System (QDS) is a pre silicon
753 development platform that supports the QorIQ LS2080A
754 Layerscape Architecture processor.
755
756config TARGET_LS2080AQDS
757 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700758 select ARM64
759 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700760 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700761 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530762 Support for Freescale LS2080AQDS platform
763 The LS2080A Development System (QDS) is a high-performance
764 development platform that supports the QorIQ LS2080A
765 Layerscape Architecture processor.
766
767config TARGET_LS2080ARDB
768 bool "Support ls2080ardb"
769 select ARM64
770 select ARMV8_MULTIENTRY
771 select SUPPORT_SPL
772 help
773 Support for Freescale LS2080ARDB platform.
774 The LS2080A Reference design board (RDB) is a high-performance
775 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700776 Layerscape Architecture processor.
777
Peter Griffin11ac2362015-07-30 18:55:23 +0100778config TARGET_HIKEY
779 bool "Support HiKey 96boards Consumer Edition Platform"
780 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100781 select DM
782 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100783 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100784 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100785 help
786 Support for HiKey 96boards platform. It features a HI6220
787 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
788
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530789config TARGET_LS1012AQDS
790 bool "Support ls1012aqds"
791 select ARM64
792 help
793 Support for Freescale LS1012AQDS platform.
794 The LS1012A Development System (QDS) is a high-performance
795 development platform that supports the QorIQ LS1012A
796 Layerscape Architecture processor.
797
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530798config TARGET_LS1012ARDB
799 bool "Support ls1012ardb"
800 select ARM64
801 help
802 Support for Freescale LS1012ARDB platform.
803 The LS1012A Reference design board (RDB) is a high-performance
804 development platform that supports the QorIQ LS1012A
805 Layerscape Architecture processor.
806
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530807config TARGET_LS1012AFRDM
808 bool "Support ls1012afrdm"
809 select ARM64
810 help
811 Support for Freescale LS1012AFRDM platform.
812 The LS1012A Freedom board (FRDM) is a high-performance
813 development platform that supports the QorIQ LS1012A
814 Layerscape Architecture processor.
815
Wang Huan550e3dc2014-09-05 13:52:44 +0800816config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800817 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100818 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800819 select SUPPORT_SPL
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900820 select ARCH_SUPPORT_PSCI
821
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800822config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800823 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100824 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800825 select SUPPORT_SPL
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900826 select ARCH_SUPPORT_PSCI
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800827
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800828config TARGET_LS1043AQDS
829 bool "Support ls1043aqds"
830 select ARM64
831 select ARMV8_MULTIENTRY
832 select SUPPORT_SPL
833 help
834 Support for Freescale LS1043AQDS platform.
835
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800836config TARGET_LS1043ARDB
837 bool "Support ls1043ardb"
838 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800839 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800840 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800841 help
842 Support for Freescale LS1043ARDB platform.
843
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844config TARGET_H2200
845 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100846 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900847
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700848config TARGET_ZIPITZ2
849 bool "Support zipitz2"
850 select CPU_PXA
851
Masahiro Yamadadd840582014-07-30 14:08:14 +0900852config TARGET_COLIBRI_PXA270
853 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100854 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900855
Masahiro Yamada66cba042014-10-03 19:21:07 +0900856config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900857 bool "Socionext UniPhier SoCs"
Masahiro Yamada14f47232016-09-14 01:06:03 +0900858 select BLK
Masahiro Yamada48264d92016-02-02 21:11:32 +0900859 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900860 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900861 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900862 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900863 select DM_MMC
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900864 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +0900865 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900866 select OF_CONTROL
867 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +0900868 select PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900869 select SPL
870 select SPL_DM
871 select SPL_OF_CONTROL
Masahiro Yamada27350c92016-09-17 03:33:01 +0900872 select SPL_PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900873 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900874 help
875 Support for UniPhier SoC family developed by Socionext Inc.
876 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900877
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800878config STM32
879 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100880 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100881 select DM
882 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100883
Simon Glass2444dae2015-08-30 16:55:38 -0600884config ARCH_ROCKCHIP
885 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -0600886 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -0600887 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600888 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +0800889 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600890 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +0800891 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600892 select DM_GPIO
893 select DM_I2C
894 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -0600895 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -0600896 select DM_SERIAL
897 select DM_SPI
898 select DM_SPI_FLASH
Simon Glass2444dae2015-08-30 16:55:38 -0600899
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700900config TARGET_THUNDERX_88XX
901 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200902 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700903 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -0400904 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700905
Masahiro Yamadadd840582014-07-30 14:08:14 +0900906endchoice
907
Masahiro Yamada4614b892015-02-20 17:04:01 +0900908source "arch/arm/mach-at91/Kconfig"
909
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900910source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900911
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900912source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700913
Thomas Abraham77b55e82015-08-03 17:58:00 +0530914source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900915
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900916source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900917
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900918source "arch/arm/mach-integrator/Kconfig"
919
Masahiro Yamada39a72342015-02-20 17:04:11 +0900920source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900921
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900922source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900923
Stefan Roesec3d89142015-08-25 13:18:38 +0200924source "arch/arm/mach-mvebu/Kconfig"
925
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500926source "arch/arm/cpu/armv7/mx7/Kconfig"
927
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100928source "arch/arm/cpu/armv7/mx6/Kconfig"
929
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200930source "arch/arm/cpu/armv7/mx5/Kconfig"
931
Madan Srinivasa774e082016-05-19 19:10:44 -0500932source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500933
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900934source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900935
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +0900936source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900937
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200938source "arch/arm/mach-meson/Kconfig"
939
Simon Glass2444dae2015-08-30 16:55:38 -0600940source "arch/arm/mach-rockchip/Kconfig"
941
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900942source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600943
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200944source "arch/arm/mach-snapdragon/Kconfig"
945
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900946source "arch/arm/mach-socfpga/Kconfig"
947
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800948source "arch/arm/mach-stm32/Kconfig"
949
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900950source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900951
Masahiro Yamada4c425572015-02-27 02:26:42 +0900952source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900953
Masahiro Yamada0107f242015-03-16 16:43:22 +0900954source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900955
Hans de Goedeea624e12014-11-14 09:34:30 +0100956source "arch/arm/cpu/armv7/Kconfig"
957
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530958source "arch/arm/cpu/armv8/zynqmp/Kconfig"
959
Linus Walleij23b58772015-03-09 10:53:21 +0100960source "arch/arm/cpu/armv8/Kconfig"
961
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100962source "arch/arm/imx-common/Kconfig"
963
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200964source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200965source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200966source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900967source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900970source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/armltd/vexpress/Kconfig"
972source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -0700974source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900975source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800976source "board/broadcom/bcmcygnus/Kconfig"
977source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700978source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900979source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400981source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900982source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900983source "board/denx/m28evk/Kconfig"
984source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530985source "board/freescale/ls2080a/Kconfig"
986source "board/freescale/ls2080aqds/Kconfig"
987source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800988source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800989source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800990source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800991source "board/freescale/ls1043ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530992source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530993source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530994source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900995source "board/freescale/mx23evk/Kconfig"
996source "board/freescale/mx25pdk/Kconfig"
997source "board/freescale/mx28evk/Kconfig"
998source "board/freescale/mx31ads/Kconfig"
999source "board/freescale/mx31pdk/Kconfig"
1000source "board/freescale/mx35pdk/Kconfig"
1001source "board/freescale/mx51evk/Kconfig"
1002source "board/freescale/mx53ard/Kconfig"
1003source "board/freescale/mx53evk/Kconfig"
1004source "board/freescale/mx53loco/Kconfig"
1005source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +03001006source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001007source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001008source "board/gumstix/pepper/Kconfig"
1009source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001010source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001011source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001012source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001013source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001014source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001015source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +02001016source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001017source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001018source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001019source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001020source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001021source "board/siemens/draco/Kconfig"
1022source "board/siemens/pxm2/Kconfig"
1023source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001024source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001025source "board/spear/spear300/Kconfig"
1026source "board/spear/spear310/Kconfig"
1027source "board/spear/spear320/Kconfig"
1028source "board/spear/spear600/Kconfig"
1029source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -08001030source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001031source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001032source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +02001033source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001034source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001035source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001036source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001037source "board/ti/ti814x/Kconfig"
1038source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001039source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001040source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301041source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001042source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001043source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001044source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001045source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001046source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001047
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001048source "arch/arm/Kconfig.debug"
1049
Masahiro Yamadadd840582014-07-30 14:08:14 +09001050endmenu