blob: 3d009482abcfcc976c7b64cd2951f5c77865b0bc [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
Tom Rini272686e2016-11-07 21:34:53 -0500129config ARCH_OMAP2
130 bool
131 select CPU_V7
132 select SUPPORT_SPL
133
Alison Wangec6617c2016-11-10 10:49:03 +0800134config ARM64_SUPPORT_AARCH32
135 bool "ARM64 system support AArch32 execution state"
136 default y if ARM64 && !TARGET_THUNDERX_88XX
137 help
138 This ARM64 system supports AArch32 execution state.
139
Masahiro Yamadadd840582014-07-30 14:08:14 +0900140choice
141 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600142 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143
Masahiro Yamada4614b892015-02-20 17:04:01 +0900144config ARCH_AT91
145 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900146
147config TARGET_EDB93XX
148 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100149 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900150
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151config TARGET_VCMA9
152 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100153 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_SMDK2410
156 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100157 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900158
Masahiro Yamadadd840582014-07-30 14:08:14 +0900159config TARGET_ASPENITE
160 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100161 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900162
163config TARGET_GPLUGD
164 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100165 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900166
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900167config ARCH_DAVINCI
168 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900170 help
171 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900172
Masahiro Yamada47539e22014-08-31 07:10:59 +0900173config KIRKWOOD
174 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176
Stefan Roesec3d89142015-08-25 13:18:38 +0200177config ARCH_MVEBU
Stefan Roese21b29fc2016-05-25 08:13:45 +0200178 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese9cffb232015-09-01 11:27:52 +0200179 select OF_CONTROL
180 select OF_SEPARATE
181 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100182 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200183 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100184 select DM_SPI
185 select DM_SPI_FLASH
Stefan Roesea4884832014-10-22 12:13:19 +0200186
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187config TARGET_DEVKIT3250
188 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300190 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200192config TARGET_WORK_92105
193 bool "Support work_92105"
194 select CPU_ARM926EJS
195 select SUPPORT_SPL
196
Masahiro Yamadadd840582014-07-30 14:08:14 +0900197config TARGET_MX25PDK
198 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201config TARGET_ZMX25
202 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
205config TARGET_APF27
206 bool "Support apf27"
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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900210config TARGET_APX4DEVKIT
211 bool "Support apx4devkit"
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_XFI3
216 bool "Support xfi3"
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_M28EVK
221 bool "Support m28evk"
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_MX23EVK
226 bool "Support mx23evk"
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_MX28EVK
231 bool "Support mx28evk"
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_MX23_OLINUXINO
236 bool "Support mx23_olinuxino"
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_BG0900
241 bool "Support bg0900"
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_SANSA_FUZE_PLUS
246 bool "Support sansa_fuze_plus"
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
250config TARGET_SC_SPS_1
251 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100252 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900253 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900255config ORION5X
256 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100257 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900258
Masahiro Yamadadd840582014-07-30 14:08:14 +0900259config TARGET_SPEAR300
260 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100261 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900262
263config TARGET_SPEAR310
264 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100265 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900266
267config TARGET_SPEAR320
268 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100269 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900270
271config TARGET_SPEAR600
272 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100273 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900274
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800275config TARGET_STV0991
276 bool "Support stv0991"
277 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900278 select DM
279 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700280 select DM_SPI
281 select DM_SPI_FLASH
282 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800283
Masahiro Yamadadd840582014-07-30 14:08:14 +0900284config TARGET_X600
285 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100286 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900287 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900288
Masahiro Yamadadd840582014-07-30 14:08:14 +0900289config TARGET_IMX31_PHYCORE
290 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100291 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900292
Masahiro Yamadadd840582014-07-30 14:08:14 +0900293config TARGET_MX31ADS
294 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100295 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900296
297config TARGET_MX31PDK
298 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100299 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900300 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900301
Masahiro Yamadadd840582014-07-30 14:08:14 +0900302config TARGET_WOODBURN
303 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100304 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900305
306config TARGET_WOODBURN_SD
307 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900309 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900310
311config TARGET_FLEA3
312 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100313 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900314
315config TARGET_MX35PDK
316 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100317 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900318
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900319config ARCH_BCM283X
320 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900321 select DM
322 select DM_SERIAL
323 select DM_GPIO
Fabian Vogt76709092016-09-26 14:26:51 +0200324 select OF_CONTROL
Stephen Warren46414292015-02-16 12:16:15 -0700325
Masahiro Yamadadd840582014-07-30 14:08:14 +0900326config TARGET_VEXPRESS_CA15_TC2
327 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100328 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100329 select CPU_V7_HAS_NONSEC
330 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900331
332config TARGET_VEXPRESS_CA5X2
333 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100334 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900335
336config TARGET_VEXPRESS_CA9X4
337 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900339
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200340config TARGET_BRXRE1
341 bool "Support BRXRE1"
Tom Rini272686e2016-11-07 21:34:53 -0500342 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900343
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200344config TARGET_BRPPT1
345 bool "Support BRPPT1"
Tom Rini272686e2016-11-07 21:34:53 -0500346 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900347
Masahiro Yamadadd840582014-07-30 14:08:14 +0900348config TARGET_DRACO
349 bool "Support draco"
Tom Rini272686e2016-11-07 21:34:53 -0500350 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200351 select DM
352 select DM_SERIAL
353 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900354
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200355config TARGET_THUBAN
356 bool "Support thuban"
Tom Rini272686e2016-11-07 21:34:53 -0500357 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200358 select DM
359 select DM_SERIAL
360 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900361
Heiko Schocher578056c2015-06-15 14:56:41 +0200362config TARGET_RASTABAN
363 bool "Support rastaban"
Tom Rini272686e2016-11-07 21:34:53 -0500364 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200365 select DM
366 select DM_SERIAL
367 select DM_GPIO
Heiko Schocher578056c2015-06-15 14:56:41 +0200368
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200369config TARGET_ETAMIN
Tom Rinie009bfa2016-08-22 08:22:18 -0400370 bool "Support etamin"
Tom Rini272686e2016-11-07 21:34:53 -0500371 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200375
Masahiro Yamadadd840582014-07-30 14:08:14 +0900376config TARGET_PXM2
377 bool "Support pxm2"
Tom Rini272686e2016-11-07 21:34:53 -0500378 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200379 select DM
380 select DM_SERIAL
381 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900382
383config TARGET_RUT
384 bool "Support rut"
Tom Rini272686e2016-11-07 21:34:53 -0500385 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200386 select DM
387 select DM_SERIAL
388 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900389
Masahiro Yamadadd840582014-07-30 14:08:14 +0900390config TARGET_TI814X_EVM
391 bool "Support ti814x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500392 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900393
394config TARGET_TI816X_EVM
395 bool "Support ti816x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500396 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900397
Steve Rae43486e42016-06-02 15:10:56 -0700398config TARGET_BCM23550_W1D
399 bool "Support bcm23550_w1d"
400 select CPU_V7
401
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402config TARGET_BCM28155_AP
403 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100404 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900405
Steve Raeabb16782014-11-11 11:32:18 -0800406config TARGET_BCMCYGNUS
407 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100408 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700409
Steve Raeabb16782014-11-11 11:32:18 -0800410config TARGET_BCMNSP
411 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100412 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700413
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900414config ARCH_EXYNOS
415 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900416 select DM
417 select DM_SPI_FLASH
418 select DM_SERIAL
419 select DM_SPI
420 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600421 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900422
Simon Glass311757b2014-10-07 22:01:50 -0600423config ARCH_S5PC1XX
424 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900426 select DM
427 select DM_SERIAL
428 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600429
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900430config ARCH_HIGHBANK
431 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900433
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900434config ARCH_INTEGRATOR
435 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200436 select DM
437 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900438
Masahiro Yamadac338f092014-08-31 07:11:05 +0900439config ARCH_KEYSTONE
440 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100441 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900442 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400443 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900444
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200445config ARCH_MESON
446 bool "Amlogic Meson"
447 help
448 Support for the Meson SoC family developed by Amlogic Inc.,
449 targeted at media players and tablet computers. We currently
450 support the S905 (GXBaby) 64-bit SoC.
451
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500452config ARCH_MX7
453 bool "Freescale MX7"
454 select CPU_V7
455
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100456config ARCH_MX6
457 bool "Freescale MX6"
458 select CPU_V7
459
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200460config ARCH_MX5
461 bool "Freescale MX5"
462 select CPU_V7
463
Masahiro Yamadadd840582014-07-30 14:08:14 +0900464config TARGET_M53EVK
465 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900467 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469config TARGET_MX51EVK
470 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472
473config TARGET_MX53ARD
474 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900476
477config TARGET_MX53EVK
478 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900480
481config TARGET_MX53LOCO
482 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
485config TARGET_MX53SMD
486 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900488
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900489config OMAP34XX
490 bool "OMAP34XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500491 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400492 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900493
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900494config OMAP44XX
495 bool "OMAP44XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500496 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400497 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900499config OMAP54XX
500 bool "OMAP54XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500501 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
Madan Srinivas63847262016-05-19 19:10:43 -0500503config AM43XX
504 bool "AM43XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500505 select ARCH_OMAP2
Madan Srinivas63847262016-05-19 19:10:43 -0500506 help
507 Support for AM43xx SOC from Texas Instruments.
508 The AM43xx high performance SOC features a Cortex-A9
509 ARM core, a quad core PRU-ICSS for industrial Ethernet
510 protocols, dual camera support, optional 3D graphics
511 and an optional customer programmable secure boot.
512
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500513config AM33XX
514 bool "AM33XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500515 select ARCH_OMAP2
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500516 help
517 Support for AM335x SOC from Texas Instruments.
518 The AM335x high performance SOC features a Cortex-A8
519 ARM core, a dual core PRU-ICSS for industrial Ethernet
520 protocols, optional 3D graphics and an optional customer
521 programmable secure boot.
522
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900523config ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900524 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900525 select DM
526 select DM_SERIAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900527
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300528config TARGET_S32V234EVB
529 bool "Support s32v234evb"
530 select ARM64
531
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200532config ARCH_SNAPDRAGON
533 bool "Qualcomm Snapdragon SoCs"
534 select ARM64
535 select DM
536 select DM_GPIO
537 select DM_SERIAL
538 select SPMI
539 select OF_CONTROL
540 select OF_SEPARATE
541
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900542config ARCH_SOCFPGA
543 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100544 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900545 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200546 select OF_CONTROL
547 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900548 select DM
549 select DM_SPI_FLASH
550 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300552config TARGET_CM_T43
553 bool "Support cm_t43"
Tom Rini983e3702016-11-07 21:34:54 -0500554 select ARCH_OMAP2
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300555
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100556config ARCH_SUNXI
557 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200558 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200559 select CMD_MMC if MMC
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100560 select CMD_USB if DISTRO_DEFAULTS
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200561 select DM
Tom Rini45368822015-06-30 16:51:15 -0400562 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100563 select DM_GPIO
564 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400565 select DM_SERIAL
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100566 select DM_USB if DISTRO_DEFAULTS
Hans de Goeded75111a2016-03-22 22:51:52 +0100567 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200568 select OF_CONTROL
569 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200570 select SPL_STACK_R if SUPPORT_SPL
571 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100572 select SYS_NS16550
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100573 select USB if DISTRO_DEFAULTS
574 select USB_STORAGE if DISTRO_DEFAULTS
575 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede8c7d2292016-06-10 12:19:40 +0200576 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800577
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -0500578config TARGET_TS4600
579 bool "Support TS4600"
580 select CPU_ARM926EJS
581 select SUPPORT_SPL
582
Lucile Quirion9ee16892015-06-30 17:17:47 -0400583config TARGET_TS4800
584 bool "Support TS4800"
585 select CPU_V7
586
Masahiro Yamadadd840582014-07-30 14:08:14 +0900587config TARGET_VF610TWR
588 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100589 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900590
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530591config TARGET_COLIBRI_VF
592 bool "Support Colibri VF50/61"
593 select CPU_V7
594
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200595config TARGET_PCM052
596 bool "Support pcm-052"
597 select CPU_V7
598
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200599config TARGET_BK4R1
600 bool "Support BK4r1"
601 select CPU_V7
602
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900603config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900604 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100605 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900606 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530607 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100608 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900609 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100610 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530611 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100612 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100613 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600614 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530615 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600616 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530617 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100618 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600619 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600620 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900621
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530622config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100623 bool "Support Xilinx ZynqMP Platform"
624 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600625 select DM
626 select OF_CONTROL
627 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100628 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200629 select CLK
630 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600631 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100632
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900633config TEGRA
634 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900635
Linus Walleijf91afc42015-01-23 11:50:53 +0100636config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900637 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900638 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900639
Linus Walleijf91afc42015-01-23 11:50:53 +0100640config TARGET_VEXPRESS64_BASE_FVP
641 bool "Support Versatile Express ARMv8a FVP BASE model"
642 select ARM64
643 select SEMIHOSTING
644
Ryan Harkinfc04b922015-10-09 17:18:02 +0100645config TARGET_VEXPRESS64_BASE_FVP_DRAM
646 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
647 select ARM64
648 help
649 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
650 the default config to allow the user to load the images directly into
651 DRAM using model parameters rather than by using semi-hosting to load
652 the files from the host filesystem.
653
Linus Walleijffc10372015-01-23 14:41:10 +0100654config TARGET_VEXPRESS64_JUNO
655 bool "Support Versatile Express Juno Development Platform"
656 select ARM64
657
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530658config TARGET_LS2080A_EMU
659 bool "Support ls2080a_emu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700660 select ARCH_LS2080A
Masahiro Yamada016a9542014-09-14 03:01:51 +0900661 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100662 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700663 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530664 Support for Freescale LS2080A_EMU platform
665 The LS2080A Development System (EMULATOR) is a pre silicon
666 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700667 Layerscape Architecture processor.
668
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530669config TARGET_LS2080A_SIMU
670 bool "Support ls2080a_simu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700671 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530672 select ARM64
673 select ARMV8_MULTIENTRY
674 help
675 Support for Freescale LS2080A_SIMU platform
676 The LS2080A Development System (QDS) is a pre silicon
677 development platform that supports the QorIQ LS2080A
678 Layerscape Architecture processor.
679
680config TARGET_LS2080AQDS
681 bool "Support ls2080aqds"
York Sunfb2bf8c2016-10-04 14:31:48 -0700682 select ARCH_LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700683 select ARM64
684 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700685 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700686 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530687 Support for Freescale LS2080AQDS platform
688 The LS2080A Development System (QDS) is a high-performance
689 development platform that supports the QorIQ LS2080A
690 Layerscape Architecture processor.
691
692config TARGET_LS2080ARDB
693 bool "Support ls2080ardb"
York Sunfb2bf8c2016-10-04 14:31:48 -0700694 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530695 select ARM64
696 select ARMV8_MULTIENTRY
697 select SUPPORT_SPL
698 help
699 Support for Freescale LS2080ARDB platform.
700 The LS2080A Reference design board (RDB) is a high-performance
701 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700702 Layerscape Architecture processor.
703
Peter Griffin11ac2362015-07-30 18:55:23 +0100704config TARGET_HIKEY
705 bool "Support HiKey 96boards Consumer Edition Platform"
706 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100707 select DM
708 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100709 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100710 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100711 help
712 Support for HiKey 96boards platform. It features a HI6220
713 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
714
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530715config TARGET_LS1012AQDS
716 bool "Support ls1012aqds"
York Sun9533acf2016-09-26 08:09:26 -0700717 select ARCH_LS1012A
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530718 select ARM64
719 help
720 Support for Freescale LS1012AQDS platform.
721 The LS1012A Development System (QDS) is a high-performance
722 development platform that supports the QorIQ LS1012A
723 Layerscape Architecture processor.
724
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530725config TARGET_LS1012ARDB
726 bool "Support ls1012ardb"
York Sun9533acf2016-09-26 08:09:26 -0700727 select ARCH_LS1012A
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530728 select ARM64
729 help
730 Support for Freescale LS1012ARDB platform.
731 The LS1012A Reference design board (RDB) is a high-performance
732 development platform that supports the QorIQ LS1012A
733 Layerscape Architecture processor.
734
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530735config TARGET_LS1012AFRDM
736 bool "Support ls1012afrdm"
York Sun9533acf2016-09-26 08:09:26 -0700737 select ARCH_LS1012A
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530738 select ARM64
739 help
740 Support for Freescale LS1012AFRDM platform.
741 The LS1012A Freedom board (FRDM) is a high-performance
742 development platform that supports the QorIQ LS1012A
743 Layerscape Architecture processor.
744
Wang Huan550e3dc2014-09-05 13:52:44 +0800745config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800746 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100747 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800748 select CPU_V7_HAS_NONSEC
749 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800750 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700751 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900752 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700753 select LS1_DEEP_SLEEP
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900754
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800755config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800756 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100757 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800758 select CPU_V7_HAS_NONSEC
759 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800760 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700761 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900762 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700763 select LS1_DEEP_SLEEP
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800764
Feng Li20c700f2016-11-03 14:15:17 +0800765config TARGET_LS1021AIOT
766 bool "Support ls1021aiot"
767 select CPU_V7
768 select CPU_V7_HAS_NONSEC
769 select CPU_V7_HAS_VIRT
770 select SUPPORT_SPL
771 select ARCH_LS1021A
772 select ARCH_SUPPORT_PSCI
773 help
774 Support for Freescale LS1021AIOT platform.
775 The LS1021A Freescale board (IOT) is a high-performance
776 development platform that supports the QorIQ LS1021A
777 Layerscape Architecture processor.
778
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800779config TARGET_LS1043AQDS
780 bool "Support ls1043aqds"
York Sun0a37cf82016-09-26 08:09:27 -0700781 select ARCH_LS1043A
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800782 select ARM64
783 select ARMV8_MULTIENTRY
784 select SUPPORT_SPL
785 help
786 Support for Freescale LS1043AQDS platform.
787
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800788config TARGET_LS1043ARDB
789 bool "Support ls1043ardb"
York Sun0a37cf82016-09-26 08:09:27 -0700790 select ARCH_LS1043A
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800791 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800792 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800793 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800794 help
795 Support for Freescale LS1043ARDB platform.
796
Shaohui Xie126fe702016-09-07 17:56:14 +0800797config TARGET_LS1046AQDS
798 bool "Support ls1046aqds"
York Sunda28e582016-09-26 08:09:24 -0700799 select ARCH_LS1046A
Shaohui Xie126fe702016-09-07 17:56:14 +0800800 select ARM64
801 select ARMV8_MULTIENTRY
802 select SUPPORT_SPL
803 select DM_SPI_FLASH if DM_SPI
804 help
805 Support for Freescale LS1046AQDS platform.
806 The LS1046A Development System (QDS) is a high-performance
807 development platform that supports the QorIQ LS1046A
808 Layerscape Architecture processor.
809
Mingkai Hudd029362016-09-07 18:47:28 +0800810config TARGET_LS1046ARDB
811 bool "Support ls1046ardb"
York Sunda28e582016-09-26 08:09:24 -0700812 select ARCH_LS1046A
Mingkai Hudd029362016-09-07 18:47:28 +0800813 select ARM64
814 select ARMV8_MULTIENTRY
815 select SUPPORT_SPL
816 select DM_SPI_FLASH if DM_SPI
817 help
818 Support for Freescale LS1046ARDB platform.
819 The LS1046A Reference Design Board (RDB) is a high-performance
820 development platform that supports the QorIQ LS1046A
821 Layerscape Architecture processor.
822
Masahiro Yamadadd840582014-07-30 14:08:14 +0900823config TARGET_H2200
824 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100825 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900826
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700827config TARGET_ZIPITZ2
828 bool "Support zipitz2"
829 select CPU_PXA
830
Masahiro Yamadadd840582014-07-30 14:08:14 +0900831config TARGET_COLIBRI_PXA270
832 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100833 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900834
Masahiro Yamada66cba042014-10-03 19:21:07 +0900835config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900836 bool "Socionext UniPhier SoCs"
Masahiro Yamada14f47232016-09-14 01:06:03 +0900837 select BLK
Masahiro Yamada48264d92016-02-02 21:11:32 +0900838 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900839 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900840 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900841 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900842 select DM_MMC
Masahiro Yamada4fb96c42016-10-08 13:25:31 +0900843 select DM_RESET
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900844 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +0900845 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900846 select OF_CONTROL
847 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +0900848 select PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900849 select SPL
850 select SPL_DM
Masahiro Yamada0298f4c2016-09-20 14:27:00 +0900851 select SPL_LIBCOMMON_SUPPORT
852 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900853 select SPL_OF_CONTROL
Masahiro Yamada27350c92016-09-17 03:33:01 +0900854 select SPL_PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900855 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900856 help
857 Support for UniPhier SoC family developed by Socionext Inc.
858 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900859
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800860config STM32
861 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100862 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100863 select DM
864 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100865
Simon Glass2444dae2015-08-30 16:55:38 -0600866config ARCH_ROCKCHIP
867 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -0600868 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -0600869 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600870 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +0800871 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600872 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +0800873 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600874 select DM_GPIO
875 select DM_I2C
876 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -0600877 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -0600878 select DM_SERIAL
879 select DM_SPI
880 select DM_SPI_FLASH
MengDongyang892742d2016-08-24 12:02:18 +0800881 select DM_USB if USB
Kever Yang8d29e3a2016-09-23 15:57:21 +0800882 select DM_PWM
883 select DM_REGULATOR
Simon Glass2444dae2015-08-30 16:55:38 -0600884
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700885config TARGET_THUNDERX_88XX
886 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200887 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700888 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -0400889 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700890
Masahiro Yamadadd840582014-07-30 14:08:14 +0900891endchoice
892
Masahiro Yamada4614b892015-02-20 17:04:01 +0900893source "arch/arm/mach-at91/Kconfig"
894
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900895source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900896
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900897source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700898
Thomas Abraham77b55e82015-08-03 17:58:00 +0530899source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900900
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900901source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900902
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900903source "arch/arm/mach-integrator/Kconfig"
904
Masahiro Yamada39a72342015-02-20 17:04:11 +0900905source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900906
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900907source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900908
Stefan Roesec3d89142015-08-25 13:18:38 +0200909source "arch/arm/mach-mvebu/Kconfig"
910
York Sun0a37cf82016-09-26 08:09:27 -0700911source "arch/arm/cpu/armv7/ls102xa/Kconfig"
912
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500913source "arch/arm/cpu/armv7/mx7/Kconfig"
914
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100915source "arch/arm/cpu/armv7/mx6/Kconfig"
916
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200917source "arch/arm/cpu/armv7/mx5/Kconfig"
918
Tom Rini983e3702016-11-07 21:34:54 -0500919source "arch/arm/mach-omap2/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500920
York Sunda28e582016-09-26 08:09:24 -0700921source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
922
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900923source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900924
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +0900925source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900926
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200927source "arch/arm/mach-meson/Kconfig"
928
Simon Glass2444dae2015-08-30 16:55:38 -0600929source "arch/arm/mach-rockchip/Kconfig"
930
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900931source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600932
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200933source "arch/arm/mach-snapdragon/Kconfig"
934
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900935source "arch/arm/mach-socfpga/Kconfig"
936
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800937source "arch/arm/mach-stm32/Kconfig"
938
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900939source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900940
Masahiro Yamada4c425572015-02-27 02:26:42 +0900941source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900942
Masahiro Yamada0107f242015-03-16 16:43:22 +0900943source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900944
Hans de Goedeea624e12014-11-14 09:34:30 +0100945source "arch/arm/cpu/armv7/Kconfig"
946
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530947source "arch/arm/cpu/armv8/zynqmp/Kconfig"
948
Linus Walleij23b58772015-03-09 10:53:21 +0100949source "arch/arm/cpu/armv8/Kconfig"
950
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100951source "arch/arm/imx-common/Kconfig"
952
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200953source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200954source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200955source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900956source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900957source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900958source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900959source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900960source "board/armltd/vexpress/Kconfig"
961source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900962source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -0700963source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900964source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800965source "board/broadcom/bcmcygnus/Kconfig"
966source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700967source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400970source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900972source "board/denx/m28evk/Kconfig"
973source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530974source "board/freescale/ls2080a/Kconfig"
975source "board/freescale/ls2080aqds/Kconfig"
976source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800977source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800978source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800979source "board/freescale/ls1021atwr/Kconfig"
Feng Li20c700f2016-11-03 14:15:17 +0800980source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie126fe702016-09-07 17:56:14 +0800981source "board/freescale/ls1046aqds/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800982source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hudd029362016-09-07 18:47:28 +0800983source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530984source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530985source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530986source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900987source "board/freescale/mx23evk/Kconfig"
988source "board/freescale/mx25pdk/Kconfig"
989source "board/freescale/mx28evk/Kconfig"
990source "board/freescale/mx31ads/Kconfig"
991source "board/freescale/mx31pdk/Kconfig"
992source "board/freescale/mx35pdk/Kconfig"
993source "board/freescale/mx51evk/Kconfig"
994source "board/freescale/mx53ard/Kconfig"
995source "board/freescale/mx53evk/Kconfig"
996source "board/freescale/mx53loco/Kconfig"
997source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300998source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900999source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001000source "board/gumstix/pepper/Kconfig"
1001source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001002source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001003source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001004source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001005source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001006source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001007source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +02001008source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001009source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001010source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001011source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001012source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001013source "board/siemens/draco/Kconfig"
1014source "board/siemens/pxm2/Kconfig"
1015source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001016source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001017source "board/spear/spear300/Kconfig"
1018source "board/spear/spear310/Kconfig"
1019source "board/spear/spear320/Kconfig"
1020source "board/spear/spear600/Kconfig"
1021source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -08001022source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001023source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001024source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +02001025source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001026source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001027source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001028source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001029source "board/ti/ti814x/Kconfig"
1030source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001031source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001032source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301033source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -05001034source "board/technologic/ts4600/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001035source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001036source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001037source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001038source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001039source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001040
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001041source "arch/arm/Kconfig.debug"
1042
Masahiro Yamadadd840582014-07-30 14:08:14 +09001043endmenu