blob: f0110266bc061153010bd97d2d79438d1ce20a63 [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
Alison Wang73818d52016-11-10 10:49:03 +0800134config ARM64_SUPPORT_AARCH32
135 bool "ARM64 system support AArch32 execution state"
136 default y if ARM64 && !TARGET_THUNDERX_88XX
137 help
138 This ARM64 system supports AArch32 execution state.
139
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900140choice
141 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600142 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900143
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900144config ARCH_AT91
145 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900146
147config TARGET_EDB93XX
148 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100149 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900150
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900151config TARGET_ASPENITE
152 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100153 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900154
155config TARGET_GPLUGD
156 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900158
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900159config ARCH_DAVINCI
160 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100161 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900162 help
163 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900164
Masahiro Yamadad7570852014-08-31 07:10:59 +0900165config KIRKWOOD
166 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100167 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900168
Stefan Roese383e0c12015-08-25 13:18:38 +0200169config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200170 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200171 select OF_CONTROL
172 select OF_SEPARATE
173 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100174 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200175 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100176 select DM_SPI
177 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200178
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900179config TARGET_DEVKIT3250
180 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100181 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300182 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900183
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200184config TARGET_WORK_92105
185 bool "Support work_92105"
186 select CPU_ARM926EJS
187 select SUPPORT_SPL
188
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900189config TARGET_MX25PDK
190 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100191 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900192
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900193config TARGET_ZMX25
194 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100195 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900196
197config TARGET_APF27
198 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900200 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900201
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900202config TARGET_APX4DEVKIT
203 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100204 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900205 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900206
207config TARGET_XFI3
208 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100209 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900210 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900211
212config TARGET_M28EVK
213 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100214 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900215 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900216
217config TARGET_MX23EVK
218 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900220 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900221
222config TARGET_MX28EVK
223 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100224 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900225 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900226
227config TARGET_MX23_OLINUXINO
228 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100229 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900230 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900231
232config TARGET_BG0900
233 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100234 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900235 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900236
237config TARGET_SANSA_FUZE_PLUS
238 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100239 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900240 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900241
242config TARGET_SC_SPS_1
243 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100244 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900245 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900246
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900247config ORION5X
248 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100249 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900250
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900251config TARGET_SPEAR300
252 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100253 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900254
255config TARGET_SPEAR310
256 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100257 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900258
259config TARGET_SPEAR320
260 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100261 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900262
263config TARGET_SPEAR600
264 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100265 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900266
Vikas Manocha33913c52014-11-18 10:42:22 -0800267config TARGET_STV0991
268 bool "Support stv0991"
269 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900270 select DM
271 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700272 select DM_SPI
273 select DM_SPI_FLASH
274 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800275
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900276config TARGET_X600
277 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100278 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900279 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900280
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900281config TARGET_IMX31_PHYCORE
282 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100283 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900284
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900285config TARGET_MX31ADS
286 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100287 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900288
289config TARGET_MX31PDK
290 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100291 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900292 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900293
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294config TARGET_WOODBURN
295 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100296 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900297
298config TARGET_WOODBURN_SD
299 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100300 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900301 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900302
303config TARGET_FLEA3
304 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100305 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900306
307config TARGET_MX35PDK
308 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100309 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900310
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900311config ARCH_BCM283X
312 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900313 select DM
314 select DM_SERIAL
315 select DM_GPIO
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200316 select OF_CONTROL
Stephen Warrendc7ea682015-02-16 12:16:15 -0700317
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900318config TARGET_VEXPRESS_CA15_TC2
319 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100320 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100321 select CPU_V7_HAS_NONSEC
322 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900323
324config TARGET_VEXPRESS_CA5X2
325 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100326 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900327
328config TARGET_VEXPRESS_CA9X4
329 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900331
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200332config TARGET_BRXRE1
333 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500334 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900335
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200336config TARGET_BRPPT1
337 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500338 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900339
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900340config TARGET_DRACO
341 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500342 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200343 select DM
344 select DM_SERIAL
345 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900346
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200347config TARGET_THUBAN
348 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500349 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200350 select DM
351 select DM_SERIAL
352 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900353
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200354config TARGET_RASTABAN
355 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500356 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200357 select DM
358 select DM_SERIAL
359 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200360
Heiko Schochercbec11a2016-06-07 08:55:45 +0200361config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400362 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500363 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200364 select DM
365 select DM_SERIAL
366 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200367
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900368config TARGET_PXM2
369 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500370 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200371 select DM
372 select DM_SERIAL
373 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900374
375config TARGET_RUT
376 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500377 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200378 select DM
379 select DM_SERIAL
380 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900381
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900382config TARGET_TI814X_EVM
383 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500384 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900385
386config TARGET_TI816X_EVM
387 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500388 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900389
Steve Rae45f2c702016-06-02 15:10:56 -0700390config TARGET_BCM23550_W1D
391 bool "Support bcm23550_w1d"
392 select CPU_V7
393
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900394config TARGET_BCM28155_AP
395 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100396 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900397
Steve Rae1c5f31c2014-11-11 11:32:18 -0800398config TARGET_BCMCYGNUS
399 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100400 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700401
Steve Rae1c5f31c2014-11-11 11:32:18 -0800402config TARGET_BCMNSP
403 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100404 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700405
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900406config ARCH_EXYNOS
407 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900408 select DM
Simon Glass7bbb7d92016-11-23 06:34:40 -0700409 select DM_I2C
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900410 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
Yann E. MORINe28217d2016-10-31 22:33:40 +0100553 select CMD_USB if DISTRO_DEFAULTS
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
Yann E. MORINe28217d2016-10-31 22:33:40 +0100559 select DM_USB if DISTRO_DEFAULTS
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
Yann E. MORINe28217d2016-10-31 22:33:40 +0100566 select USB if DISTRO_DEFAULTS
567 select USB_STORAGE if DISTRO_DEFAULTS
568 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede42a31822016-06-10 12:19:40 +0200569 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800570
Sebastien Bourdelinf012f662016-11-08 12:18:07 -0500571config TARGET_TS4600
572 bool "Support TS4600"
573 select CPU_ARM926EJS
574 select SUPPORT_SPL
575
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400576config TARGET_TS4800
577 bool "Support TS4800"
578 select CPU_V7
579
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900580config TARGET_VF610TWR
581 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100582 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900583
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530584config TARGET_COLIBRI_VF
585 bool "Support Colibri VF50/61"
586 select CPU_V7
587
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200588config TARGET_PCM052
589 bool "Support pcm-052"
590 select CPU_V7
591
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200592config TARGET_BK4R1
593 bool "Support BK4r1"
594 select CPU_V7
595
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900596config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900597 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100598 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900599 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530600 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100601 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900602 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100603 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530604 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100605 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100606 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600607 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530608 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600609 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530610 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100611 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600612 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600613 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900614
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530615config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100616 bool "Support Xilinx ZynqMP Platform"
617 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600618 select DM
619 select OF_CONTROL
620 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100621 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200622 select CLK
623 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600624 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100625
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900626config TEGRA
627 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900628
Linus Walleij800d6fd2015-01-23 11:50:53 +0100629config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900630 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900631 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900632
Linus Walleij800d6fd2015-01-23 11:50:53 +0100633config TARGET_VEXPRESS64_BASE_FVP
634 bool "Support Versatile Express ARMv8a FVP BASE model"
635 select ARM64
636 select SEMIHOSTING
637
Ryan Harkinb6b96652015-10-09 17:18:02 +0100638config TARGET_VEXPRESS64_BASE_FVP_DRAM
639 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
640 select ARM64
641 help
642 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
643 the default config to allow the user to load the images directly into
644 DRAM using model parameters rather than by using semi-hosting to load
645 the files from the host filesystem.
646
Linus Walleijc5822502015-01-23 14:41:10 +0100647config TARGET_VEXPRESS64_JUNO
648 bool "Support Versatile Express Juno Development Platform"
649 select ARM64
650
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530651config TARGET_LS2080A_EMU
652 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700653 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900654 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100655 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530656 help
657 Support for Freescale LS2080A_EMU platform
658 The LS2080A Development System (EMULATOR) is a pre silicon
659 development platform that supports the QorIQ LS2080A
660 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900661
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530662config TARGET_LS2080A_SIMU
663 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700664 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900665 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100666 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530667 help
668 Support for Freescale LS2080A_SIMU platform
669 The LS2080A Development System (QDS) is a pre silicon
670 development platform that supports the QorIQ LS2080A
671 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900672
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530673config TARGET_LS2080AQDS
674 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700675 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700676 select ARM64
677 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700678 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700679 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530680 Support for Freescale LS2080AQDS platform
681 The LS2080A Development System (QDS) is a high-performance
682 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700683 Layerscape Architecture processor.
684
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530685config TARGET_LS2080ARDB
686 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700687 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700688 select ARM64
689 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700690 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700691 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530692 Support for Freescale LS2080ARDB platform.
693 The LS2080A Reference design board (RDB) is a high-performance
694 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700695 Layerscape Architecture processor.
696
Peter Griffin31f327e2015-07-30 18:55:23 +0100697config TARGET_HIKEY
698 bool "Support HiKey 96boards Consumer Edition Platform"
699 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100700 select DM
701 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100702 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100703 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100704 help
705 Support for HiKey 96boards platform. It features a HI6220
706 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
707
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530708config TARGET_LS1012AQDS
709 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700710 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530711 select ARM64
712 help
713 Support for Freescale LS1012AQDS platform.
714 The LS1012A Development System (QDS) is a high-performance
715 development platform that supports the QorIQ LS1012A
716 Layerscape Architecture processor.
717
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530718config TARGET_LS1012ARDB
719 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700720 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530721 select ARM64
722 help
723 Support for Freescale LS1012ARDB platform.
724 The LS1012A Reference design board (RDB) is a high-performance
725 development platform that supports the QorIQ LS1012A
726 Layerscape Architecture processor.
727
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530728config TARGET_LS1012AFRDM
729 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700730 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530731 select ARM64
732 help
733 Support for Freescale LS1012AFRDM platform.
734 The LS1012A Freedom board (FRDM) is a high-performance
735 development platform that supports the QorIQ LS1012A
736 Layerscape Architecture processor.
737
Wang Huanf0ce7d62014-09-05 13:52:44 +0800738config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800739 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100740 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800741 select CPU_V7_HAS_NONSEC
742 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800743 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700744 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900745 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700746 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900747
Wang Huanddf89f92014-09-05 13:52:45 +0800748config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800749 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100750 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800751 select CPU_V7_HAS_NONSEC
752 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800753 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700754 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900755 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700756 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800757
Feng Li39e112d2016-11-03 14:15:17 +0800758config TARGET_LS1021AIOT
759 bool "Support ls1021aiot"
760 select CPU_V7
761 select CPU_V7_HAS_NONSEC
762 select CPU_V7_HAS_VIRT
763 select SUPPORT_SPL
764 select ARCH_LS1021A
765 select ARCH_SUPPORT_PSCI
766 help
767 Support for Freescale LS1021AIOT platform.
768 The LS1021A Freescale board (IOT) is a high-performance
769 development platform that supports the QorIQ LS1021A
770 Layerscape Architecture processor.
771
Shaohui Xiedd335672015-11-11 17:58:37 +0800772config TARGET_LS1043AQDS
773 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700774 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800775 select ARM64
776 select ARMV8_MULTIENTRY
777 select SUPPORT_SPL
778 help
779 Support for Freescale LS1043AQDS platform.
780
Mingkai Hueee86ff2015-10-26 19:47:52 +0800781config TARGET_LS1043ARDB
782 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700783 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800784 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800785 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800786 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800787 help
788 Support for Freescale LS1043ARDB platform.
789
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800790config TARGET_LS1046AQDS
791 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700792 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800793 select ARM64
794 select ARMV8_MULTIENTRY
795 select SUPPORT_SPL
796 select DM_SPI_FLASH if DM_SPI
797 help
798 Support for Freescale LS1046AQDS platform.
799 The LS1046A Development System (QDS) is a high-performance
800 development platform that supports the QorIQ LS1046A
801 Layerscape Architecture processor.
802
Mingkai Hud2396512016-09-07 18:47:28 +0800803config TARGET_LS1046ARDB
804 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700805 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800806 select ARM64
807 select ARMV8_MULTIENTRY
808 select SUPPORT_SPL
809 select DM_SPI_FLASH if DM_SPI
810 help
811 Support for Freescale LS1046ARDB platform.
812 The LS1046A Reference Design Board (RDB) is a high-performance
813 development platform that supports the QorIQ LS1046A
814 Layerscape Architecture processor.
815
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900816config TARGET_H2200
817 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100818 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900819
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700820config TARGET_ZIPITZ2
821 bool "Support zipitz2"
822 select CPU_PXA
823
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900824config TARGET_COLIBRI_PXA270
825 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100826 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900827
Masahiro Yamada82069432014-10-03 19:21:07 +0900828config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900829 bool "Socionext UniPhier SoCs"
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900830 select BLK
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900831 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900832 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900833 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900834 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900835 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900836 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900837 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900838 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900839 select OF_CONTROL
840 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900841 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900842 select SPL
843 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900844 select SPL_LIBCOMMON_SUPPORT
845 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900846 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900847 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900848 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900849 help
850 Support for UniPhier SoC family developed by Socionext Inc.
851 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900852
Vikas Manocha95c89192016-01-15 17:49:06 -0800853config STM32
854 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100855 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100856 select DM
857 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100858
Simon Glass2cffe662015-08-30 16:55:38 -0600859config ARCH_ROCKCHIP
860 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600861 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600862 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600863 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800864 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600865 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800866 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600867 select DM_GPIO
868 select DM_I2C
869 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600870 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600871 select DM_SERIAL
872 select DM_SPI
873 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800874 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800875 select DM_PWM
876 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600877
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700878config TARGET_THUNDERX_88XX
879 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200880 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700881 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400882 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700883
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900884endchoice
885
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900886source "arch/arm/mach-at91/Kconfig"
887
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900888source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900889
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900890source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700891
Thomas Abraham74f84862015-08-03 17:58:00 +0530892source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900893
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900894source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900895
Masahiro Yamadacad44162015-04-21 21:59:36 +0900896source "arch/arm/mach-integrator/Kconfig"
897
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900898source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900899
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900900source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900901
Stefan Roese383e0c12015-08-25 13:18:38 +0200902source "arch/arm/mach-mvebu/Kconfig"
903
York Sun149eb332016-09-26 08:09:27 -0700904source "arch/arm/cpu/armv7/ls102xa/Kconfig"
905
Adrian Alonso98810772015-09-03 11:49:28 -0500906source "arch/arm/cpu/armv7/mx7/Kconfig"
907
Boris BREZILLON51e82662015-03-04 13:13:03 +0100908source "arch/arm/cpu/armv7/mx6/Kconfig"
909
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200910source "arch/arm/cpu/armv7/mx5/Kconfig"
911
Tom Rini28eec372016-11-07 21:34:54 -0500912source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500913
York Sunbad49842016-09-26 08:09:24 -0700914source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
915
Masahiro Yamada22537642015-02-20 17:04:09 +0900916source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900917
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900918source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900919
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200920source "arch/arm/mach-meson/Kconfig"
921
Simon Glass2cffe662015-08-30 16:55:38 -0600922source "arch/arm/mach-rockchip/Kconfig"
923
Minkyu Kang56b820a2015-11-20 15:24:57 +0900924source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600925
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200926source "arch/arm/mach-snapdragon/Kconfig"
927
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900928source "arch/arm/mach-socfpga/Kconfig"
929
Vikas Manocha95c89192016-01-15 17:49:06 -0800930source "arch/arm/mach-stm32/Kconfig"
931
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900932source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900933
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900934source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900935
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900936source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900937
Hans de Goede85437352014-11-14 09:34:30 +0100938source "arch/arm/cpu/armv7/Kconfig"
939
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530940source "arch/arm/cpu/armv8/zynqmp/Kconfig"
941
Linus Walleij74771392015-03-09 10:53:21 +0100942source "arch/arm/cpu/armv8/Kconfig"
943
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100944source "arch/arm/imx-common/Kconfig"
945
Heiko Schocherf1163962016-06-07 08:31:25 +0200946source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200947source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200948source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900949source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900950source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900951source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900952source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900953source "board/armltd/vexpress/Kconfig"
954source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900955source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700956source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900957source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800958source "board/broadcom/bcmcygnus/Kconfig"
959source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700960source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900961source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900962source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400963source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900964source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900965source "board/denx/m28evk/Kconfig"
966source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530967source "board/freescale/ls2080a/Kconfig"
968source "board/freescale/ls2080aqds/Kconfig"
969source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800970source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800971source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800972source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +0800973source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800974source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800975source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +0800976source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530977source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530978source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530979source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900980source "board/freescale/mx23evk/Kconfig"
981source "board/freescale/mx25pdk/Kconfig"
982source "board/freescale/mx28evk/Kconfig"
983source "board/freescale/mx31ads/Kconfig"
984source "board/freescale/mx31pdk/Kconfig"
985source "board/freescale/mx35pdk/Kconfig"
986source "board/freescale/mx51evk/Kconfig"
987source "board/freescale/mx53ard/Kconfig"
988source "board/freescale/mx53evk/Kconfig"
989source "board/freescale/mx53loco/Kconfig"
990source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300991source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900992source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900993source "board/gumstix/pepper/Kconfig"
994source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400995source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900996source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900997source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900998source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900999source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001000source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001001source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001002source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001003source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001004source "board/siemens/draco/Kconfig"
1005source "board/siemens/pxm2/Kconfig"
1006source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001007source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001008source "board/spear/spear300/Kconfig"
1009source "board/spear/spear310/Kconfig"
1010source "board/spear/spear320/Kconfig"
1011source "board/spear/spear600/Kconfig"
1012source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001013source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001014source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001015source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001016source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001017source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001018source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001019source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001020source "board/ti/ti814x/Kconfig"
1021source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001022source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001023source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301024source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelinf012f662016-11-08 12:18:07 -05001025source "board/technologic/ts4600/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001026source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001027source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001028source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001029source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001030source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001031
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001032source "arch/arm/Kconfig.debug"
1033
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001034endmenu