blob: acd689beccc76ca09604b2281a4f3742e9df98e2 [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamada653e9fe2016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini84f9b612016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada0d46c342014-09-14 03:01:51 +090011
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinibca01962016-08-22 08:22:18 -040017 bool
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010018
Albert ARIBAUDa3823222015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinibca01962016-08-22 08:22:18 -040020 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020021
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -040023 bool
Tom Rini84f9b612016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -040027 bool
Tom Rini84f9b612016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -040031 bool
Tom Rini84f9b612016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -040035 bool
Tom Rini84f9b612016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -040039 bool
Tom Rini84f9b612016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinibca01962016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010052
rev13@wp.plb3b57e82015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinibca01962016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.plb3b57e82015-03-01 12:44:39 +010057
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -040059 bool
Tom Rini84f9b612016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -040063 bool
Tom Rini84f9b612016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinibca01962016-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 Yamadadade3b02014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010078
Marek Vasutb06c9542016-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 Rini84f9b612016-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 Walleij800d6fd2015-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 Fan10ddab42015-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 Przywara48321ba2016-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 Rini5c02a1f2016-11-07 21:34:53 -0500129config ARCH_OMAP2
130 bool
131 select CPU_V7
132 select SUPPORT_SPL
133
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900134choice
135 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600136 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900137
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900138config ARCH_AT91
139 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900140
141config TARGET_EDB93XX
142 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100143 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900144
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900145config TARGET_VCMA9
146 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100147 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900148
149config TARGET_SMDK2410
150 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100151 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900152
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900153config TARGET_ASPENITE
154 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100155 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900156
157config TARGET_GPLUGD
158 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900160
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900161config ARCH_DAVINCI
162 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900164 help
165 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900166
Masahiro Yamadad7570852014-08-31 07:10:59 +0900167config KIRKWOOD
168 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900170
Stefan Roese383e0c12015-08-25 13:18:38 +0200171config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200172 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200173 select OF_CONTROL
174 select OF_SEPARATE
175 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100176 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200177 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100178 select DM_SPI
179 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200180
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900181config TARGET_DEVKIT3250
182 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300184 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900185
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200186config TARGET_WORK_92105
187 bool "Support work_92105"
188 select CPU_ARM926EJS
189 select SUPPORT_SPL
190
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900191config TARGET_MX25PDK
192 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900194
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900195config TARGET_ZMX25
196 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900198
199config TARGET_APF27
200 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100201 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900202 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900203
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900204config TARGET_APX4DEVKIT
205 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900207 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900208
209config TARGET_XFI3
210 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900212 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900213
214config TARGET_M28EVK
215 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900217 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900218
219config TARGET_MX23EVK
220 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900222 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900223
224config TARGET_MX28EVK
225 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900227 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900228
229config TARGET_MX23_OLINUXINO
230 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900232 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900233
234config TARGET_BG0900
235 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900237 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238
239config TARGET_SANSA_FUZE_PLUS
240 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
244config TARGET_SC_SPS_1
245 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100246 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900247 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900248
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900249config ORION5X
250 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100251 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900253config TARGET_SPEAR300
254 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900256
257config TARGET_SPEAR310
258 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900260
261config TARGET_SPEAR320
262 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100263 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900264
265config TARGET_SPEAR600
266 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100267 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900268
Vikas Manocha33913c52014-11-18 10:42:22 -0800269config TARGET_STV0991
270 bool "Support stv0991"
271 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900272 select DM
273 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700274 select DM_SPI
275 select DM_SPI_FLASH
276 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800277
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900278config TARGET_X600
279 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100280 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900282
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900283config TARGET_IMX31_PHYCORE
284 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900286
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287config TARGET_MX31ADS
288 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100289 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
291config TARGET_MX31PDK
292 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900294 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900295
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900296config TARGET_WOODBURN
297 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100298 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299
300config TARGET_WOODBURN_SD
301 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900303 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900304
305config TARGET_FLEA3
306 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100307 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900308
309config TARGET_MX35PDK
310 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100311 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900312
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900313config ARCH_BCM283X
314 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900315 select DM
316 select DM_SERIAL
317 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700318
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900319config TARGET_VEXPRESS_CA15_TC2
320 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100321 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100322 select CPU_V7_HAS_NONSEC
323 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324
325config TARGET_VEXPRESS_CA5X2
326 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900328
329config TARGET_VEXPRESS_CA9X4
330 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100331 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900332
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200333config TARGET_BRXRE1
334 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500335 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900336
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200337config TARGET_BRPPT1
338 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500339 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900340
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341config TARGET_DRACO
342 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500343 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200344 select DM
345 select DM_SERIAL
346 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900347
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200348config TARGET_THUBAN
349 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500350 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200351 select DM
352 select DM_SERIAL
353 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900354
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200355config TARGET_RASTABAN
356 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500357 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200358 select DM
359 select DM_SERIAL
360 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200361
Heiko Schochercbec11a2016-06-07 08:55:45 +0200362config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400363 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500364 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200365 select DM
366 select DM_SERIAL
367 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200368
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900369config TARGET_PXM2
370 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500371 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900375
376config TARGET_RUT
377 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500378 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200379 select DM
380 select DM_SERIAL
381 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900382
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900383config TARGET_TI814X_EVM
384 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500385 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900386
387config TARGET_TI816X_EVM
388 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500389 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900390
Steve Rae45f2c702016-06-02 15:10:56 -0700391config TARGET_BCM23550_W1D
392 bool "Support bcm23550_w1d"
393 select CPU_V7
394
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900395config TARGET_BCM28155_AP
396 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100397 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900398
Steve Rae1c5f31c2014-11-11 11:32:18 -0800399config TARGET_BCMCYGNUS
400 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100401 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700402
Steve Rae1c5f31c2014-11-11 11:32:18 -0800403config TARGET_BCMNSP
404 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100405 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700406
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900407config ARCH_EXYNOS
408 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-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 Glassaa8484f2015-10-18 21:17:17 -0600414 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900415
Simon Glass96aa0722014-10-07 22:01:50 -0600416config ARCH_S5PC1XX
417 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900419 select DM
420 select DM_SERIAL
421 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600422
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900423config ARCH_HIGHBANK
424 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900426
Masahiro Yamadacad44162015-04-21 21:59:36 +0900427config ARCH_INTEGRATOR
428 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200429 select DM
430 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900431
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900432config ARCH_KEYSTONE
433 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100434 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900435 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400436 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900437
Beniamino Galvanid1037e42016-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 Alonso98810772015-09-03 11:49:28 -0500445config ARCH_MX7
446 bool "Freescale MX7"
447 select CPU_V7
448
Boris BREZILLON51e82662015-03-04 13:13:03 +0100449config ARCH_MX6
450 bool "Freescale MX6"
451 select CPU_V7
452
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200453config ARCH_MX5
454 bool "Freescale MX5"
455 select CPU_V7
456
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900457config TARGET_M53EVK
458 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900461
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462config TARGET_MX51EVK
463 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900465
466config TARGET_MX53ARD
467 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900469
470config TARGET_MX53EVK
471 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900473
474config TARGET_MX53LOCO
475 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900477
478config TARGET_MX53SMD
479 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900481
Masahiro Yamadadd678432014-08-31 07:11:02 +0900482config OMAP34XX
483 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500484 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400485 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900486
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900487config OMAP44XX
488 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500489 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400490 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900491
Masahiro Yamada420b8162014-08-31 07:11:04 +0900492config OMAP54XX
493 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500494 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500495
496config AM43XX
497 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500498 select ARCH_OMAP2
Madan Srinivaseba13cd2016-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.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900505
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500506config AM33XX
507 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500508 select ARCH_OMAP2
Andrew F. Davis817bbee2016-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 Iwamatsu7c112732015-10-10 05:58:28 +0900516config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900517 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900518 select DM
519 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300520
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300521config TARGET_S32V234EVB
522 bool "Support s32v234evb"
523 select ARM64
524
Mateusz Kulikowski2507d822016-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 Yamada144a3e02015-04-21 20:38:20 +0900535config ARCH_SOCFPGA
536 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100537 select CPU_V7
538 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200539 select OF_CONTROL
540 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900541 select DM
542 select DM_SPI_FLASH
543 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100544
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300545config TARGET_CM_T43
546 bool "Support cm_t43"
Tom Rini28eec372016-11-07 21:34:54 -0500547 select ARCH_OMAP2
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300548
Ian Campbelld8e69e02014-10-24 21:20:44 +0100549config ARCH_SUNXI
550 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200551 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200552 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200553 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200554 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400555 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100556 select DM_GPIO
557 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400558 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200559 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100560 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200561 select OF_CONTROL
562 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200563 select SPL_STACK_R if SUPPORT_SPL
564 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100565 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400566 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200567 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200568 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200569 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800570
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400571config TARGET_TS4800
572 bool "Support TS4800"
573 select CPU_V7
574
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900575config TARGET_VF610TWR
576 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100577 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900578
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530579config TARGET_COLIBRI_VF
580 bool "Support Colibri VF50/61"
581 select CPU_V7
582
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200583config TARGET_PCM052
584 bool "Support pcm-052"
585 select CPU_V7
586
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200587config TARGET_BK4R1
588 bool "Support BK4r1"
589 select CPU_V7
590
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900591config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900592 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100593 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900594 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530595 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100596 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900597 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100598 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530599 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100600 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100601 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600602 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530603 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600604 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530605 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100606 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600607 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600608 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900609
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530610config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100611 bool "Support Xilinx ZynqMP Platform"
612 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600613 select DM
614 select OF_CONTROL
615 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100616 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200617 select CLK
618 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600619 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100620
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900621config TEGRA
622 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900623
Linus Walleij800d6fd2015-01-23 11:50:53 +0100624config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900625 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900626 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900627
Linus Walleij800d6fd2015-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 Harkinb6b96652015-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 Walleijc5822502015-01-23 14:41:10 +0100642config TARGET_VEXPRESS64_JUNO
643 bool "Support Versatile Express Juno Development Platform"
644 select ARM64
645
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530646config TARGET_LS2080A_EMU
647 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700648 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900649 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100650 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530651 help
652 Support for Freescale LS2080A_EMU platform
653 The LS2080A Development System (EMULATOR) is a pre silicon
654 development platform that supports the QorIQ LS2080A
655 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900656
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530657config TARGET_LS2080A_SIMU
658 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700659 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900660 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100661 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530662 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.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900667
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530668config TARGET_LS2080AQDS
669 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700670 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700671 select ARM64
672 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700673 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700674 help
Prabhakar Kushwaha122bcfd2015-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
York Sun03017032015-03-20 19:28:23 -0700678 Layerscape Architecture processor.
679
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530680config TARGET_LS2080ARDB
681 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700682 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700683 select ARM64
684 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700685 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700686 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530687 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 Sune12abcb2015-03-20 19:28:24 -0700690 Layerscape Architecture processor.
691
Peter Griffin31f327e2015-07-30 18:55:23 +0100692config TARGET_HIKEY
693 bool "Support HiKey 96boards Consumer Edition Platform"
694 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100695 select DM
696 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100697 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100698 select OF_CONTROL
Peter Griffin31f327e2015-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 Kushwaha55432502016-06-03 18:41:34 +0530703config TARGET_LS1012AQDS
704 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700705 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-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 Kushwahaa315c662016-06-03 18:41:35 +0530713config TARGET_LS1012ARDB
714 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700715 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-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 Kushwaha9e7ee7b2016-06-03 18:41:36 +0530723config TARGET_LS1012AFRDM
724 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700725 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-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 Huanf0ce7d62014-09-05 13:52:44 +0800733config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800734 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100735 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800736 select CPU_V7_HAS_NONSEC
737 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800738 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700739 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900740 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700741 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900742
Wang Huanddf89f92014-09-05 13:52:45 +0800743config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800744 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100745 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800746 select CPU_V7_HAS_NONSEC
747 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800748 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700749 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900750 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700751 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800752
Shaohui Xiedd335672015-11-11 17:58:37 +0800753config TARGET_LS1043AQDS
754 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700755 select ARCH_LS1043A
Shaohui Xiedd335672015-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 Hueee86ff2015-10-26 19:47:52 +0800762config TARGET_LS1043ARDB
763 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700764 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800765 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800766 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800767 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800768 help
769 Support for Freescale LS1043ARDB platform.
770
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800771config TARGET_LS1046AQDS
772 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700773 select ARCH_LS1046A
Shaohui Xie085ac1c2016-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 Hud2396512016-09-07 18:47:28 +0800784config TARGET_LS1046ARDB
785 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700786 select ARCH_LS1046A
Mingkai Hud2396512016-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 Yamadad3ae6782014-07-30 14:08:14 +0900797config TARGET_H2200
798 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100799 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900800
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700801config TARGET_ZIPITZ2
802 bool "Support zipitz2"
803 select CPU_PXA
804
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900805config TARGET_COLIBRI_PXA270
806 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100807 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900808
Masahiro Yamada82069432014-10-03 19:21:07 +0900809config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900810 bool "Socionext UniPhier SoCs"
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900811 select BLK
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900812 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900813 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900814 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900815 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900816 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900817 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900818 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900819 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900820 select OF_CONTROL
821 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900822 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900823 select SPL
824 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900825 select SPL_LIBCOMMON_SUPPORT
826 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900827 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900828 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900829 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-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 Yamada82069432014-10-03 19:21:07 +0900833
Vikas Manocha95c89192016-01-15 17:49:06 -0800834config STM32
835 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100836 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100837 select DM
838 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100839
Simon Glass2cffe662015-08-30 16:55:38 -0600840config ARCH_ROCKCHIP
841 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600842 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600843 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600844 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800845 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600846 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800847 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600848 select DM_GPIO
849 select DM_I2C
850 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600851 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600852 select DM_SERIAL
853 select DM_SPI
854 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800855 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800856 select DM_PWM
857 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600858
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700859config TARGET_THUNDERX_88XX
860 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200861 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700862 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400863 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700864
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900865endchoice
866
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900867source "arch/arm/mach-at91/Kconfig"
868
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900869source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900870
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900871source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700872
Thomas Abraham74f84862015-08-03 17:58:00 +0530873source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900874
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900875source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900876
Masahiro Yamadacad44162015-04-21 21:59:36 +0900877source "arch/arm/mach-integrator/Kconfig"
878
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900879source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900880
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900881source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900882
Stefan Roese383e0c12015-08-25 13:18:38 +0200883source "arch/arm/mach-mvebu/Kconfig"
884
York Sun149eb332016-09-26 08:09:27 -0700885source "arch/arm/cpu/armv7/ls102xa/Kconfig"
886
Adrian Alonso98810772015-09-03 11:49:28 -0500887source "arch/arm/cpu/armv7/mx7/Kconfig"
888
Boris BREZILLON51e82662015-03-04 13:13:03 +0100889source "arch/arm/cpu/armv7/mx6/Kconfig"
890
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200891source "arch/arm/cpu/armv7/mx5/Kconfig"
892
Tom Rini28eec372016-11-07 21:34:54 -0500893source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500894
York Sunbad49842016-09-26 08:09:24 -0700895source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
896
Masahiro Yamada22537642015-02-20 17:04:09 +0900897source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900898
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900899source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900900
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200901source "arch/arm/mach-meson/Kconfig"
902
Simon Glass2cffe662015-08-30 16:55:38 -0600903source "arch/arm/mach-rockchip/Kconfig"
904
Minkyu Kang56b820a2015-11-20 15:24:57 +0900905source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600906
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200907source "arch/arm/mach-snapdragon/Kconfig"
908
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900909source "arch/arm/mach-socfpga/Kconfig"
910
Vikas Manocha95c89192016-01-15 17:49:06 -0800911source "arch/arm/mach-stm32/Kconfig"
912
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900913source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900914
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900915source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900916
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900917source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900918
Hans de Goede85437352014-11-14 09:34:30 +0100919source "arch/arm/cpu/armv7/Kconfig"
920
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530921source "arch/arm/cpu/armv8/zynqmp/Kconfig"
922
Linus Walleij74771392015-03-09 10:53:21 +0100923source "arch/arm/cpu/armv8/Kconfig"
924
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100925source "arch/arm/imx-common/Kconfig"
926
Heiko Schocherf1163962016-06-07 08:31:25 +0200927source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200928source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200929source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900930source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900931source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900932source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900933source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900934source "board/armltd/vexpress/Kconfig"
935source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900936source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700937source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900938source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800939source "board/broadcom/bcmcygnus/Kconfig"
940source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700941source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900942source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900943source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400944source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900945source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900946source "board/denx/m28evk/Kconfig"
947source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530948source "board/freescale/ls2080a/Kconfig"
949source "board/freescale/ls2080aqds/Kconfig"
950source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800951source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800952source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800953source "board/freescale/ls1021atwr/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800954source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800955source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +0800956source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530957source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530958source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530959source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-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șor5178dc12016-06-05 03:43:00 +0300971source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900972source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900973source "board/gumstix/pepper/Kconfig"
974source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400975source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900978source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900979source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900980source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200981source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900982source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900983source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900984source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900985source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900986source "board/siemens/draco/Kconfig"
987source "board/siemens/pxm2/Kconfig"
988source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900989source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-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 Manocha33913c52014-11-18 10:42:22 -0800995source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900996source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900997source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200998source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900999source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001000source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001001source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001002source "board/ti/ti814x/Kconfig"
1003source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001004source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001005source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301006source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001007source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001008source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001009source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001010source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001011source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001012
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001013source "arch/arm/Kconfig.debug"
1014
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001015endmenu