blob: 308245185b83fbef40f2742ae522665dbdf9b896 [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"
547 select CPU_V7
548 select SUPPORT_SPL
549
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100550config ARCH_SUNXI
551 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200552 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200553 select CMD_MMC if MMC
Hans de Goedede1502c2015-06-17 20:54:07 +0200554 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200555 select DM
Tom Rini45368822015-06-30 16:51:15 -0400556 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100557 select DM_GPIO
558 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400559 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200560 select DM_USB
Hans de Goeded75111a2016-03-22 22:51:52 +0100561 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200562 select OF_CONTROL
563 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200564 select SPL_STACK_R if SUPPORT_SPL
565 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100566 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400567 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200568 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200569 select USB_KEYBOARD
Hans de Goede8c7d2292016-06-10 12:19:40 +0200570 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800571
Lucile Quirion9ee16892015-06-30 17:17:47 -0400572config TARGET_TS4800
573 bool "Support TS4800"
574 select CPU_V7
575
Masahiro Yamadadd840582014-07-30 14:08:14 +0900576config TARGET_VF610TWR
577 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100578 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900579
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530580config TARGET_COLIBRI_VF
581 bool "Support Colibri VF50/61"
582 select CPU_V7
583
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200584config TARGET_PCM052
585 bool "Support pcm-052"
586 select CPU_V7
587
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200588config TARGET_BK4R1
589 bool "Support BK4r1"
590 select CPU_V7
591
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900592config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900593 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100594 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900595 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530596 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100597 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900598 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100599 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530600 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100601 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100602 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600603 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530604 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600605 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530606 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100607 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600608 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600609 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900610
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530611config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100612 bool "Support Xilinx ZynqMP Platform"
613 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600614 select DM
615 select OF_CONTROL
616 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100617 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200618 select CLK
619 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600620 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100621
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900622config TEGRA
623 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900624
Linus Walleijf91afc42015-01-23 11:50:53 +0100625config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900626 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900627 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900628
Linus Walleijf91afc42015-01-23 11:50:53 +0100629config TARGET_VEXPRESS64_BASE_FVP
630 bool "Support Versatile Express ARMv8a FVP BASE model"
631 select ARM64
632 select SEMIHOSTING
633
Ryan Harkinfc04b922015-10-09 17:18:02 +0100634config TARGET_VEXPRESS64_BASE_FVP_DRAM
635 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
636 select ARM64
637 help
638 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
639 the default config to allow the user to load the images directly into
640 DRAM using model parameters rather than by using semi-hosting to load
641 the files from the host filesystem.
642
Linus Walleijffc10372015-01-23 14:41:10 +0100643config TARGET_VEXPRESS64_JUNO
644 bool "Support Versatile Express Juno Development Platform"
645 select ARM64
646
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530647config TARGET_LS2080A_EMU
648 bool "Support ls2080a_emu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700649 select ARCH_LS2080A
Masahiro Yamada016a9542014-09-14 03:01:51 +0900650 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100651 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700652 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530653 Support for Freescale LS2080A_EMU platform
654 The LS2080A Development System (EMULATOR) is a pre silicon
655 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700656 Layerscape Architecture processor.
657
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530658config TARGET_LS2080A_SIMU
659 bool "Support ls2080a_simu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700660 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530661 select ARM64
662 select ARMV8_MULTIENTRY
663 help
664 Support for Freescale LS2080A_SIMU platform
665 The LS2080A Development System (QDS) is a pre silicon
666 development platform that supports the QorIQ LS2080A
667 Layerscape Architecture processor.
668
669config TARGET_LS2080AQDS
670 bool "Support ls2080aqds"
York Sunfb2bf8c2016-10-04 14:31:48 -0700671 select ARCH_LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700672 select ARM64
673 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700674 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700675 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530676 Support for Freescale LS2080AQDS platform
677 The LS2080A Development System (QDS) is a high-performance
678 development platform that supports the QorIQ LS2080A
679 Layerscape Architecture processor.
680
681config TARGET_LS2080ARDB
682 bool "Support ls2080ardb"
York Sunfb2bf8c2016-10-04 14:31:48 -0700683 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530684 select ARM64
685 select ARMV8_MULTIENTRY
686 select SUPPORT_SPL
687 help
688 Support for Freescale LS2080ARDB platform.
689 The LS2080A Reference design board (RDB) is a high-performance
690 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700691 Layerscape Architecture processor.
692
Peter Griffin11ac2362015-07-30 18:55:23 +0100693config TARGET_HIKEY
694 bool "Support HiKey 96boards Consumer Edition Platform"
695 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100696 select DM
697 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100698 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100699 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100700 help
701 Support for HiKey 96boards platform. It features a HI6220
702 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
703
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530704config TARGET_LS1012AQDS
705 bool "Support ls1012aqds"
York Sun9533acf2016-09-26 08:09:26 -0700706 select ARCH_LS1012A
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530707 select ARM64
708 help
709 Support for Freescale LS1012AQDS platform.
710 The LS1012A Development System (QDS) is a high-performance
711 development platform that supports the QorIQ LS1012A
712 Layerscape Architecture processor.
713
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530714config TARGET_LS1012ARDB
715 bool "Support ls1012ardb"
York Sun9533acf2016-09-26 08:09:26 -0700716 select ARCH_LS1012A
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530717 select ARM64
718 help
719 Support for Freescale LS1012ARDB platform.
720 The LS1012A Reference design board (RDB) is a high-performance
721 development platform that supports the QorIQ LS1012A
722 Layerscape Architecture processor.
723
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530724config TARGET_LS1012AFRDM
725 bool "Support ls1012afrdm"
York Sun9533acf2016-09-26 08:09:26 -0700726 select ARCH_LS1012A
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530727 select ARM64
728 help
729 Support for Freescale LS1012AFRDM platform.
730 The LS1012A Freedom board (FRDM) is a high-performance
731 development platform that supports the QorIQ LS1012A
732 Layerscape Architecture processor.
733
Wang Huan550e3dc2014-09-05 13:52:44 +0800734config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800735 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100736 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800737 select CPU_V7_HAS_NONSEC
738 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800739 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700740 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900741 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700742 select LS1_DEEP_SLEEP
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900743
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800744config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800745 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100746 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800747 select CPU_V7_HAS_NONSEC
748 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800749 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700750 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900751 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700752 select LS1_DEEP_SLEEP
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800753
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800754config TARGET_LS1043AQDS
755 bool "Support ls1043aqds"
York Sun0a37cf82016-09-26 08:09:27 -0700756 select ARCH_LS1043A
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800757 select ARM64
758 select ARMV8_MULTIENTRY
759 select SUPPORT_SPL
760 help
761 Support for Freescale LS1043AQDS platform.
762
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800763config TARGET_LS1043ARDB
764 bool "Support ls1043ardb"
York Sun0a37cf82016-09-26 08:09:27 -0700765 select ARCH_LS1043A
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800766 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800767 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800768 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800769 help
770 Support for Freescale LS1043ARDB platform.
771
Shaohui Xie126fe702016-09-07 17:56:14 +0800772config TARGET_LS1046AQDS
773 bool "Support ls1046aqds"
York Sunda28e582016-09-26 08:09:24 -0700774 select ARCH_LS1046A
Shaohui Xie126fe702016-09-07 17:56:14 +0800775 select ARM64
776 select ARMV8_MULTIENTRY
777 select SUPPORT_SPL
778 select DM_SPI_FLASH if DM_SPI
779 help
780 Support for Freescale LS1046AQDS platform.
781 The LS1046A Development System (QDS) is a high-performance
782 development platform that supports the QorIQ LS1046A
783 Layerscape Architecture processor.
784
Mingkai Hudd029362016-09-07 18:47:28 +0800785config TARGET_LS1046ARDB
786 bool "Support ls1046ardb"
York Sunda28e582016-09-26 08:09:24 -0700787 select ARCH_LS1046A
Mingkai Hudd029362016-09-07 18:47:28 +0800788 select ARM64
789 select ARMV8_MULTIENTRY
790 select SUPPORT_SPL
791 select DM_SPI_FLASH if DM_SPI
792 help
793 Support for Freescale LS1046ARDB platform.
794 The LS1046A Reference Design Board (RDB) is a high-performance
795 development platform that supports the QorIQ LS1046A
796 Layerscape Architecture processor.
797
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798config TARGET_H2200
799 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100800 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700802config TARGET_ZIPITZ2
803 bool "Support zipitz2"
804 select CPU_PXA
805
Masahiro Yamadadd840582014-07-30 14:08:14 +0900806config TARGET_COLIBRI_PXA270
807 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100808 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900809
Masahiro Yamada66cba042014-10-03 19:21:07 +0900810config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900811 bool "Socionext UniPhier SoCs"
Masahiro Yamada14f47232016-09-14 01:06:03 +0900812 select BLK
Masahiro Yamada48264d92016-02-02 21:11:32 +0900813 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900814 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900815 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900816 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900817 select DM_MMC
Masahiro Yamada4fb96c42016-10-08 13:25:31 +0900818 select DM_RESET
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900819 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +0900820 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900821 select OF_CONTROL
822 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +0900823 select PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900824 select SPL
825 select SPL_DM
Masahiro Yamada0298f4c2016-09-20 14:27:00 +0900826 select SPL_LIBCOMMON_SUPPORT
827 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900828 select SPL_OF_CONTROL
Masahiro Yamada27350c92016-09-17 03:33:01 +0900829 select SPL_PINCTRL
Masahiro Yamadab5550e42016-09-14 01:05:59 +0900830 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900831 help
832 Support for UniPhier SoC family developed by Socionext Inc.
833 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900834
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800835config STM32
836 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100837 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100838 select DM
839 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100840
Simon Glass2444dae2015-08-30 16:55:38 -0600841config ARCH_ROCKCHIP
842 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -0600843 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -0600844 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -0600845 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +0800846 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600847 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +0800848 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -0600849 select DM_GPIO
850 select DM_I2C
851 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -0600852 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -0600853 select DM_SERIAL
854 select DM_SPI
855 select DM_SPI_FLASH
MengDongyang892742d2016-08-24 12:02:18 +0800856 select DM_USB if USB
Kever Yang8d29e3a2016-09-23 15:57:21 +0800857 select DM_PWM
858 select DM_REGULATOR
Simon Glass2444dae2015-08-30 16:55:38 -0600859
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700860config TARGET_THUNDERX_88XX
861 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +0200862 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700863 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -0400864 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700865
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866endchoice
867
Masahiro Yamada4614b892015-02-20 17:04:01 +0900868source "arch/arm/mach-at91/Kconfig"
869
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900870source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900871
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900872source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700873
Thomas Abraham77b55e82015-08-03 17:58:00 +0530874source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900875
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900876source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900877
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900878source "arch/arm/mach-integrator/Kconfig"
879
Masahiro Yamada39a72342015-02-20 17:04:11 +0900880source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900881
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900882source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900883
Stefan Roesec3d89142015-08-25 13:18:38 +0200884source "arch/arm/mach-mvebu/Kconfig"
885
York Sun0a37cf82016-09-26 08:09:27 -0700886source "arch/arm/cpu/armv7/ls102xa/Kconfig"
887
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500888source "arch/arm/cpu/armv7/mx7/Kconfig"
889
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100890source "arch/arm/cpu/armv7/mx6/Kconfig"
891
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200892source "arch/arm/cpu/armv7/mx5/Kconfig"
893
Madan Srinivasa774e082016-05-19 19:10:44 -0500894source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -0500895
York Sunda28e582016-09-26 08:09:24 -0700896source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
897
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900898source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900899
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +0900900source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900901
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200902source "arch/arm/mach-meson/Kconfig"
903
Simon Glass2444dae2015-08-30 16:55:38 -0600904source "arch/arm/mach-rockchip/Kconfig"
905
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900906source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600907
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200908source "arch/arm/mach-snapdragon/Kconfig"
909
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900910source "arch/arm/mach-socfpga/Kconfig"
911
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800912source "arch/arm/mach-stm32/Kconfig"
913
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900914source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900915
Masahiro Yamada4c425572015-02-27 02:26:42 +0900916source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900917
Masahiro Yamada0107f242015-03-16 16:43:22 +0900918source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900919
Hans de Goedeea624e12014-11-14 09:34:30 +0100920source "arch/arm/cpu/armv7/Kconfig"
921
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530922source "arch/arm/cpu/armv8/zynqmp/Kconfig"
923
Linus Walleij23b58772015-03-09 10:53:21 +0100924source "arch/arm/cpu/armv8/Kconfig"
925
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100926source "arch/arm/imx-common/Kconfig"
927
Heiko Schocherd8ccbe92016-06-07 08:31:25 +0200928source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200929source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200930source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900932source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900934source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/armltd/vexpress/Kconfig"
936source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900937source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -0700938source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800940source "board/broadcom/bcmcygnus/Kconfig"
941source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700942source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900944source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400945source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/denx/m28evk/Kconfig"
948source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530949source "board/freescale/ls2080a/Kconfig"
950source "board/freescale/ls2080aqds/Kconfig"
951source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800952source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800953source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800954source "board/freescale/ls1021atwr/Kconfig"
Shaohui Xie126fe702016-09-07 17:56:14 +0800955source "board/freescale/ls1046aqds/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800956source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hudd029362016-09-07 18:47:28 +0800957source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530958source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530959source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530960source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900961source "board/freescale/mx23evk/Kconfig"
962source "board/freescale/mx25pdk/Kconfig"
963source "board/freescale/mx28evk/Kconfig"
964source "board/freescale/mx31ads/Kconfig"
965source "board/freescale/mx31pdk/Kconfig"
966source "board/freescale/mx35pdk/Kconfig"
967source "board/freescale/mx51evk/Kconfig"
968source "board/freescale/mx53ard/Kconfig"
969source "board/freescale/mx53evk/Kconfig"
970source "board/freescale/mx53loco/Kconfig"
971source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300972source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900974source "board/gumstix/pepper/Kconfig"
975source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400976source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900977source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900978source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900979source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900981source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200982source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900983source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900984source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900985source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900986source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900987source "board/siemens/draco/Kconfig"
988source "board/siemens/pxm2/Kconfig"
989source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900990source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900991source "board/spear/spear300/Kconfig"
992source "board/spear/spear310/Kconfig"
993source "board/spear/spear320/Kconfig"
994source "board/spear/spear600/Kconfig"
995source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800996source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900997source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900998source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200999source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001000source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001001source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001002source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001003source "board/ti/ti814x/Kconfig"
1004source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001005source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001006source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301007source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001008source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001009source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001010source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001011source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001012source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001013
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001014source "arch/arm/Kconfig.debug"
1015
Masahiro Yamadadd840582014-07-30 14:08:14 +09001016endmenu