blob: acd689beccc76ca09604b2281a4f3742e9df98e2 [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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900134choice
135 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600136 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900137
Masahiro Yamada4614b892015-02-20 17:04:01 +0900138config ARCH_AT91
139 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900140
141config TARGET_EDB93XX
142 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100143 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900144
Masahiro Yamadadd840582014-07-30 14:08:14 +0900145config TARGET_VCMA9
146 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100147 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900148
149config TARGET_SMDK2410
150 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100151 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900152
Masahiro Yamadadd840582014-07-30 14:08:14 +0900153config TARGET_ASPENITE
154 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100155 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156
157config TARGET_GPLUGD
158 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900160
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900161config ARCH_DAVINCI
162 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900164 help
165 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900166
Masahiro Yamada47539e22014-08-31 07:10:59 +0900167config KIRKWOOD
168 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900170
Stefan Roesec3d89142015-08-25 13:18:38 +0200171config ARCH_MVEBU
Stefan Roese21b29fc2016-05-25 08:13:45 +0200172 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese9cffb232015-09-01 11:27:52 +0200173 select OF_CONTROL
174 select OF_SEPARATE
175 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100176 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200177 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100178 select DM_SPI
179 select DM_SPI_FLASH
Stefan Roesea4884832014-10-22 12:13:19 +0200180
Masahiro Yamadadd840582014-07-30 14:08:14 +0900181config TARGET_DEVKIT3250
182 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300184 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900185
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200186config TARGET_WORK_92105
187 bool "Support work_92105"
188 select CPU_ARM926EJS
189 select SUPPORT_SPL
190
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191config TARGET_MX25PDK
192 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195config TARGET_ZMX25
196 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900198
199config TARGET_APF27
200 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100201 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900202 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900203
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204config TARGET_APX4DEVKIT
205 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900207 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208
209config TARGET_XFI3
210 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900212 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900213
214config TARGET_M28EVK
215 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900217 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218
219config TARGET_MX23EVK
220 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900222 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223
224config TARGET_MX28EVK
225 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900227 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900228
229config TARGET_MX23_OLINUXINO
230 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900232 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900233
234config TARGET_BG0900
235 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900237 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
239config TARGET_SANSA_FUZE_PLUS
240 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
244config TARGET_SC_SPS_1
245 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900247 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900248
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900249config ORION5X
250 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100251 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900252
Masahiro Yamadadd840582014-07-30 14:08:14 +0900253config TARGET_SPEAR300
254 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
257config TARGET_SPEAR310
258 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_SPEAR320
262 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_SPEAR600
266 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900268
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800269config TARGET_STV0991
270 bool "Support stv0991"
271 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900272 select DM
273 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700274 select DM_SPI
275 select DM_SPI_FLASH
276 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800277
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278config TARGET_X600
279 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900282
Masahiro Yamadadd840582014-07-30 14:08:14 +0900283config TARGET_IMX31_PHYCORE
284 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900286
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287config TARGET_MX31ADS
288 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100289 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900290
291config TARGET_MX31PDK
292 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100293 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900294 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900295
Masahiro Yamadadd840582014-07-30 14:08:14 +0900296config TARGET_WOODBURN
297 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100298 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900299
300config TARGET_WOODBURN_SD
301 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100302 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900303 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900304
305config TARGET_FLEA3
306 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100307 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900308
309config TARGET_MX35PDK
310 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100311 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900312
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900313config ARCH_BCM283X
314 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900315 select DM
316 select DM_SERIAL
317 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700318
Masahiro Yamadadd840582014-07-30 14:08:14 +0900319config TARGET_VEXPRESS_CA15_TC2
320 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100321 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100322 select CPU_V7_HAS_NONSEC
323 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900324
325config TARGET_VEXPRESS_CA5X2
326 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900328
329config TARGET_VEXPRESS_CA9X4
330 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100331 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900332
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200333config TARGET_BRXRE1
334 bool "Support BRXRE1"
Tom Rini272686e2016-11-07 21:34:53 -0500335 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900336
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200337config TARGET_BRPPT1
338 bool "Support BRPPT1"
Tom Rini272686e2016-11-07 21:34:53 -0500339 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900340
Masahiro Yamadadd840582014-07-30 14:08:14 +0900341config TARGET_DRACO
342 bool "Support draco"
Tom Rini272686e2016-11-07 21:34:53 -0500343 select ARCH_OMAP2
Heiko Schocher71423432016-06-13 15:16:01 +0200344 select DM
345 select DM_SERIAL
346 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900347
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200348config TARGET_THUBAN
349 bool "Support thuban"
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 Schocher578056c2015-06-15 14:56:41 +0200355config TARGET_RASTABAN
356 bool "Support rastaban"
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
Heiko Schocher578056c2015-06-15 14:56:41 +0200361
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200362config TARGET_ETAMIN
Tom Rinie009bfa2016-08-22 08:22:18 -0400363 bool "Support etamin"
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 Schocher6b3943f2016-06-07 08:55:45 +0200368
Masahiro Yamadadd840582014-07-30 14:08:14 +0900369config TARGET_PXM2
370 bool "Support pxm2"
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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900375
376config TARGET_RUT
377 bool "Support rut"
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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900383config TARGET_TI814X_EVM
384 bool "Support ti814x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500385 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900386
387config TARGET_TI816X_EVM
388 bool "Support ti816x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500389 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900390
Steve Rae43486e42016-06-02 15:10:56 -0700391config TARGET_BCM23550_W1D
392 bool "Support bcm23550_w1d"
393 select CPU_V7
394
Masahiro Yamadadd840582014-07-30 14:08:14 +0900395config TARGET_BCM28155_AP
396 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100397 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900398
Steve Raeabb16782014-11-11 11:32:18 -0800399config TARGET_BCMCYGNUS
400 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100401 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700402
Steve Raeabb16782014-11-11 11:32:18 -0800403config TARGET_BCMNSP
404 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100405 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700406
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900407config ARCH_EXYNOS
408 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900409 select DM
410 select DM_SPI_FLASH
411 select DM_SERIAL
412 select DM_SPI
413 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600414 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900415
Simon Glass311757b2014-10-07 22:01:50 -0600416config ARCH_S5PC1XX
417 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900419 select DM
420 select DM_SERIAL
421 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600422
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900423config ARCH_HIGHBANK
424 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900426
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900427config ARCH_INTEGRATOR
428 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200429 select DM
430 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900431
Masahiro Yamadac338f092014-08-31 07:11:05 +0900432config ARCH_KEYSTONE
433 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100434 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900435 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400436 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900437
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200438config ARCH_MESON
439 bool "Amlogic Meson"
440 help
441 Support for the Meson SoC family developed by Amlogic Inc.,
442 targeted at media players and tablet computers. We currently
443 support the S905 (GXBaby) 64-bit SoC.
444
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500445config ARCH_MX7
446 bool "Freescale MX7"
447 select CPU_V7
448
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100449config ARCH_MX6
450 bool "Freescale MX6"
451 select CPU_V7
452
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200453config ARCH_MX5
454 bool "Freescale MX5"
455 select CPU_V7
456
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457config TARGET_M53EVK
458 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900461
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462config TARGET_MX51EVK
463 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900465
466config TARGET_MX53ARD
467 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469
470config TARGET_MX53EVK
471 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900473
474config TARGET_MX53LOCO
475 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900477
478config TARGET_MX53SMD
479 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900481
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900482config OMAP34XX
483 bool "OMAP34XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500484 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400485 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900487config OMAP44XX
488 bool "OMAP44XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500489 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400490 select USE_TINY_PRINTF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900492config OMAP54XX
493 bool "OMAP54XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500494 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
Madan Srinivas63847262016-05-19 19:10:43 -0500496config AM43XX
497 bool "AM43XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500498 select ARCH_OMAP2
Madan Srinivas63847262016-05-19 19:10:43 -0500499 help
500 Support for AM43xx SOC from Texas Instruments.
501 The AM43xx high performance SOC features a Cortex-A9
502 ARM core, a quad core PRU-ICSS for industrial Ethernet
503 protocols, dual camera support, optional 3D graphics
504 and an optional customer programmable secure boot.
505
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500506config AM33XX
507 bool "AM33XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500508 select ARCH_OMAP2
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500509 help
510 Support for AM335x SOC from Texas Instruments.
511 The AM335x high performance SOC features a Cortex-A8
512 ARM core, a dual core PRU-ICSS for industrial Ethernet
513 protocols, optional 3D graphics and an optional customer
514 programmable secure boot.
515
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900516config ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900517 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900518 select DM
519 select DM_SERIAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900520
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300521config TARGET_S32V234EVB
522 bool "Support s32v234evb"
523 select ARM64
524
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200525config ARCH_SNAPDRAGON
526 bool "Qualcomm Snapdragon SoCs"
527 select ARM64
528 select DM
529 select DM_GPIO
530 select DM_SERIAL
531 select SPMI
532 select OF_CONTROL
533 select OF_SEPARATE
534
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900535config ARCH_SOCFPGA
536 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100537 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900538 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200539 select OF_CONTROL
540 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900541 select DM
542 select DM_SPI_FLASH
543 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900544
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300545config TARGET_CM_T43
546 bool "Support cm_t43"
Tom Rini983e3702016-11-07 21:34:54 -0500547 select ARCH_OMAP2
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300548
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100549config ARCH_SUNXI
550 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200551 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200552 select CMD_MMC if MMC
Hans de Goedede1502c2015-06-17 20:54:07 +0200553 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200554 select DM
Tom Rini45368822015-06-30 16:51:15 -0400555 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100556 select DM_GPIO
557 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400558 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200559 select DM_USB
Hans de Goeded75111a2016-03-22 22:51:52 +0100560 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200561 select OF_CONTROL
562 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200563 select SPL_STACK_R if SUPPORT_SPL
564 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100565 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400566 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200567 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200568 select USB_KEYBOARD
Hans de Goede8c7d2292016-06-10 12:19:40 +0200569 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800570
Lucile Quirion9ee16892015-06-30 17:17:47 -0400571config TARGET_TS4800
572 bool "Support TS4800"
573 select CPU_V7
574
Masahiro Yamadadd840582014-07-30 14:08:14 +0900575config TARGET_VF610TWR
576 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100577 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900578
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530579config TARGET_COLIBRI_VF
580 bool "Support Colibri VF50/61"
581 select CPU_V7
582
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200583config TARGET_PCM052
584 bool "Support pcm-052"
585 select CPU_V7
586
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200587config TARGET_BK4R1
588 bool "Support BK4r1"
589 select CPU_V7
590
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900591config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900592 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100593 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900594 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530595 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100596 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900597 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100598 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530599 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100600 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100601 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600602 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530603 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600604 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530605 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100606 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600607 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600608 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900609
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530610config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100611 bool "Support Xilinx ZynqMP Platform"
612 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600613 select DM
614 select OF_CONTROL
615 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100616 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200617 select CLK
618 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600619 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100620
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900621config TEGRA
622 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900623
Linus Walleijf91afc42015-01-23 11:50:53 +0100624config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900625 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900626 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900627
Linus Walleijf91afc42015-01-23 11:50:53 +0100628config TARGET_VEXPRESS64_BASE_FVP
629 bool "Support Versatile Express ARMv8a FVP BASE model"
630 select ARM64
631 select SEMIHOSTING
632
Ryan Harkinfc04b922015-10-09 17:18:02 +0100633config TARGET_VEXPRESS64_BASE_FVP_DRAM
634 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
635 select ARM64
636 help
637 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
638 the default config to allow the user to load the images directly into
639 DRAM using model parameters rather than by using semi-hosting to load
640 the files from the host filesystem.
641
Linus Walleijffc10372015-01-23 14:41:10 +0100642config TARGET_VEXPRESS64_JUNO
643 bool "Support Versatile Express Juno Development Platform"
644 select ARM64
645
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530646config TARGET_LS2080A_EMU
647 bool "Support ls2080a_emu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700648 select ARCH_LS2080A
Masahiro Yamada016a9542014-09-14 03:01:51 +0900649 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100650 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700651 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530652 Support for Freescale LS2080A_EMU platform
653 The LS2080A Development System (EMULATOR) is a pre silicon
654 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700655 Layerscape Architecture processor.
656
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530657config TARGET_LS2080A_SIMU
658 bool "Support ls2080a_simu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700659 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530660 select ARM64
661 select ARMV8_MULTIENTRY
662 help
663 Support for Freescale LS2080A_SIMU platform
664 The LS2080A Development System (QDS) is a pre silicon
665 development platform that supports the QorIQ LS2080A
666 Layerscape Architecture processor.
667
668config TARGET_LS2080AQDS
669 bool "Support ls2080aqds"
York Sunfb2bf8c2016-10-04 14:31:48 -0700670 select ARCH_LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700671 select ARM64
672 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700673 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700674 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530675 Support for Freescale LS2080AQDS platform
676 The LS2080A Development System (QDS) is a high-performance
677 development platform that supports the QorIQ LS2080A
678 Layerscape Architecture processor.
679
680config TARGET_LS2080ARDB
681 bool "Support ls2080ardb"
York Sunfb2bf8c2016-10-04 14:31:48 -0700682 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530683 select ARM64
684 select ARMV8_MULTIENTRY
685 select SUPPORT_SPL
686 help
687 Support for Freescale LS2080ARDB platform.
688 The LS2080A Reference design board (RDB) is a high-performance
689 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700690 Layerscape Architecture processor.
691
Peter Griffin11ac2362015-07-30 18:55:23 +0100692config TARGET_HIKEY
693 bool "Support HiKey 96boards Consumer Edition Platform"
694 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100695 select DM
696 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100697 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100698 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100699 help
700 Support for HiKey 96boards platform. It features a HI6220
701 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
702
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530703config TARGET_LS1012AQDS
704 bool "Support ls1012aqds"
York Sun9533acf2016-09-26 08:09:26 -0700705 select ARCH_LS1012A
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530706 select ARM64
707 help
708 Support for Freescale LS1012AQDS platform.
709 The LS1012A Development System (QDS) is a high-performance
710 development platform that supports the QorIQ LS1012A
711 Layerscape Architecture processor.
712
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530713config TARGET_LS1012ARDB
714 bool "Support ls1012ardb"
York Sun9533acf2016-09-26 08:09:26 -0700715 select ARCH_LS1012A
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530716 select ARM64
717 help
718 Support for Freescale LS1012ARDB platform.
719 The LS1012A Reference design board (RDB) is a high-performance
720 development platform that supports the QorIQ LS1012A
721 Layerscape Architecture processor.
722
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530723config TARGET_LS1012AFRDM
724 bool "Support ls1012afrdm"
York Sun9533acf2016-09-26 08:09:26 -0700725 select ARCH_LS1012A
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530726 select ARM64
727 help
728 Support for Freescale LS1012AFRDM platform.
729 The LS1012A Freedom board (FRDM) is a high-performance
730 development platform that supports the QorIQ LS1012A
731 Layerscape Architecture processor.
732
Wang Huan550e3dc2014-09-05 13:52:44 +0800733config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800734 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100735 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800736 select CPU_V7_HAS_NONSEC
737 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800738 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700739 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900740 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700741 select LS1_DEEP_SLEEP
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900742
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800743config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800744 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100745 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800746 select CPU_V7_HAS_NONSEC
747 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800748 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700749 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900750 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700751 select LS1_DEEP_SLEEP
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800752
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800753config TARGET_LS1043AQDS
754 bool "Support ls1043aqds"
York Sun0a37cf82016-09-26 08:09:27 -0700755 select ARCH_LS1043A
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800756 select ARM64
757 select ARMV8_MULTIENTRY
758 select SUPPORT_SPL
759 help
760 Support for Freescale LS1043AQDS platform.
761
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800762config TARGET_LS1043ARDB
763 bool "Support ls1043ardb"
York Sun0a37cf82016-09-26 08:09:27 -0700764 select ARCH_LS1043A
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800765 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800766 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800767 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800768 help
769 Support for Freescale LS1043ARDB platform.
770
Shaohui Xie126fe702016-09-07 17:56:14 +0800771config TARGET_LS1046AQDS
772 bool "Support ls1046aqds"
York Sunda28e582016-09-26 08:09:24 -0700773 select ARCH_LS1046A
Shaohui Xie126fe702016-09-07 17:56:14 +0800774 select ARM64
775 select ARMV8_MULTIENTRY
776 select SUPPORT_SPL
777 select DM_SPI_FLASH if DM_SPI
778 help
779 Support for Freescale LS1046AQDS platform.
780 The LS1046A Development System (QDS) is a high-performance
781 development platform that supports the QorIQ LS1046A
782 Layerscape Architecture processor.
783
Mingkai Hudd029362016-09-07 18:47:28 +0800784config TARGET_LS1046ARDB
785 bool "Support ls1046ardb"
York Sunda28e582016-09-26 08:09:24 -0700786 select ARCH_LS1046A
Mingkai Hudd029362016-09-07 18:47:28 +0800787 select ARM64
788 select ARMV8_MULTIENTRY
789 select SUPPORT_SPL
790 select DM_SPI_FLASH if DM_SPI
791 help
792 Support for Freescale LS1046ARDB platform.
793 The LS1046A Reference Design Board (RDB) is a high-performance
794 development platform that supports the QorIQ LS1046A
795 Layerscape Architecture processor.
796
Masahiro Yamadadd840582014-07-30 14:08:14 +0900797config TARGET_H2200
798 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100799 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900800
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700801config TARGET_ZIPITZ2
802 bool "Support zipitz2"
803 select CPU_PXA
804
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805config TARGET_COLIBRI_PXA270
806 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100807 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808
Masahiro Yamada66cba042014-10-03 19:21:07 +0900809config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900810 bool "Socionext UniPhier SoCs"
Masahiro Yamada14f47232016-09-14 01:06:03 +0900811 select BLK
Masahiro Yamada48264d92016-02-02 21:11:32 +0900812 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900813 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900814 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900815 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900816 select DM_MMC
Masahiro Yamada4fb96c42016-10-08 13:25:31 +0900817 select DM_RESET
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900818 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +0900819 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900820 select OF_CONTROL
821 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +0900822 select PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900823 select SPL
824 select SPL_DM
Masahiro Yamada0298f4c2016-09-20 14:27:00 +0900825 select SPL_LIBCOMMON_SUPPORT
826 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900827 select SPL_OF_CONTROL
Masahiro Yamada27350c92016-09-17 03:33:01 +0900828 select SPL_PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900829 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900830 help
831 Support for UniPhier SoC family developed by Socionext Inc.
832 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900833
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800834config STM32
835 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100836 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100837 select DM
838 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100839
Simon Glass2444dae2015-08-30 16:55:38 -0600840config ARCH_ROCKCHIP
841 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -0600842 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -0600843 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600844 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +0800845 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600846 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +0800847 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600848 select DM_GPIO
849 select DM_I2C
850 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -0600851 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -0600852 select DM_SERIAL
853 select DM_SPI
854 select DM_SPI_FLASH
MengDongyang892742d2016-08-24 12:02:18 +0800855 select DM_USB if USB
Kever Yang8d29e3a2016-09-23 15:57:21 +0800856 select DM_PWM
857 select DM_REGULATOR
Simon Glass2444dae2015-08-30 16:55:38 -0600858
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700859config TARGET_THUNDERX_88XX
860 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200861 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700862 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -0400863 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700864
Masahiro Yamadadd840582014-07-30 14:08:14 +0900865endchoice
866
Masahiro Yamada4614b892015-02-20 17:04:01 +0900867source "arch/arm/mach-at91/Kconfig"
868
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900869source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900870
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900871source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700872
Thomas Abraham77b55e82015-08-03 17:58:00 +0530873source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900874
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900875source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900876
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900877source "arch/arm/mach-integrator/Kconfig"
878
Masahiro Yamada39a72342015-02-20 17:04:11 +0900879source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900880
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900881source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900882
Stefan Roesec3d89142015-08-25 13:18:38 +0200883source "arch/arm/mach-mvebu/Kconfig"
884
York Sun0a37cf82016-09-26 08:09:27 -0700885source "arch/arm/cpu/armv7/ls102xa/Kconfig"
886
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500887source "arch/arm/cpu/armv7/mx7/Kconfig"
888
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100889source "arch/arm/cpu/armv7/mx6/Kconfig"
890
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200891source "arch/arm/cpu/armv7/mx5/Kconfig"
892
Tom Rini983e3702016-11-07 21:34:54 -0500893source "arch/arm/mach-omap2/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500894
York Sunda28e582016-09-26 08:09:24 -0700895source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
896
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900897source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900898
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +0900899source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900900
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200901source "arch/arm/mach-meson/Kconfig"
902
Simon Glass2444dae2015-08-30 16:55:38 -0600903source "arch/arm/mach-rockchip/Kconfig"
904
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900905source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600906
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200907source "arch/arm/mach-snapdragon/Kconfig"
908
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900909source "arch/arm/mach-socfpga/Kconfig"
910
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800911source "arch/arm/mach-stm32/Kconfig"
912
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900913source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900914
Masahiro Yamada4c425572015-02-27 02:26:42 +0900915source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900916
Masahiro Yamada0107f242015-03-16 16:43:22 +0900917source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900918
Hans de Goedeea624e12014-11-14 09:34:30 +0100919source "arch/arm/cpu/armv7/Kconfig"
920
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530921source "arch/arm/cpu/armv8/zynqmp/Kconfig"
922
Linus Walleij23b58772015-03-09 10:53:21 +0100923source "arch/arm/cpu/armv8/Kconfig"
924
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100925source "arch/arm/imx-common/Kconfig"
926
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200927source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200928source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200929source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900930source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900932source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900934source "board/armltd/vexpress/Kconfig"
935source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900936source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -0700937source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900938source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800939source "board/broadcom/bcmcygnus/Kconfig"
940source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700941source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900942source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400944source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900945source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/denx/m28evk/Kconfig"
947source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530948source "board/freescale/ls2080a/Kconfig"
949source "board/freescale/ls2080aqds/Kconfig"
950source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800951source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800952source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800953source "board/freescale/ls1021atwr/Kconfig"
Shaohui Xie126fe702016-09-07 17:56:14 +0800954source "board/freescale/ls1046aqds/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800955source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hudd029362016-09-07 18:47:28 +0800956source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530957source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530958source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530959source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900960source "board/freescale/mx23evk/Kconfig"
961source "board/freescale/mx25pdk/Kconfig"
962source "board/freescale/mx28evk/Kconfig"
963source "board/freescale/mx31ads/Kconfig"
964source "board/freescale/mx31pdk/Kconfig"
965source "board/freescale/mx35pdk/Kconfig"
966source "board/freescale/mx51evk/Kconfig"
967source "board/freescale/mx53ard/Kconfig"
968source "board/freescale/mx53evk/Kconfig"
969source "board/freescale/mx53loco/Kconfig"
970source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300971source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900972source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/gumstix/pepper/Kconfig"
974source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400975source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900976source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900977source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900978source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900979source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200981source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900982source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900983source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900984source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900985source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900986source "board/siemens/draco/Kconfig"
987source "board/siemens/pxm2/Kconfig"
988source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900989source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900990source "board/spear/spear300/Kconfig"
991source "board/spear/spear310/Kconfig"
992source "board/spear/spear320/Kconfig"
993source "board/spear/spear600/Kconfig"
994source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800995source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900996source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900997source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200998source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900999source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001000source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001001source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001002source "board/ti/ti814x/Kconfig"
1003source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001004source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001005source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301006source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001007source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001008source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001009source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001010source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001011source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001012
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001013source "arch/arm/Kconfig.debug"
1014
Masahiro Yamadadd840582014-07-30 14:08:14 +09001015endmenu