blob: afb49fe5e5ef8817d10ea0c140f5c104e23a4be0 [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
Fabio Estevam988f5052016-12-15 19:30:40 -0200129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
Tom Rini443b5162017-01-12 13:16:02 -0500131 default y
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900132 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200133 help
134 Enable the generation of an optimized version of memcpy.
135 Such implementation may be faster under some conditions
136 but may increase the binary size.
137
Tom Rini443b5162017-01-12 13:16:02 -0500138config SPL_USE_ARCH_MEMCPY
139 bool "Use an assembly optimized implementation of memcpy"
140 default y if USE_ARCH_MEMCPY
141 depends on !ARM64
142 help
143 Enable the generation of an optimized version of memcpy.
144 Such implementation may be faster under some conditions
145 but may increase the binary size.
146
Fabio Estevam988f5052016-12-15 19:30:40 -0200147config USE_ARCH_MEMSET
148 bool "Use an assembly optimized implementation of memset"
Tom Rini443b5162017-01-12 13:16:02 -0500149 default y
150 depends on !ARM64
151 help
152 Enable the generation of an optimized version of memset.
153 Such implementation may be faster under some conditions
154 but may increase the binary size.
155
156config SPL_USE_ARCH_MEMSET
157 bool "Use an assembly optimized implementation of memset"
158 default y if USE_ARCH_MEMSET
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900159 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200160 help
161 Enable the generation of an optimized version of memset.
162 Such implementation may be faster under some conditions
163 but may increase the binary size.
164
Tom Rini5c02a1f2016-11-07 21:34:53 -0500165config ARCH_OMAP2
166 bool
167 select CPU_V7
168 select SUPPORT_SPL
169
Alison Wang73818d52016-11-10 10:49:03 +0800170config ARM64_SUPPORT_AARCH32
171 bool "ARM64 system support AArch32 execution state"
172 default y if ARM64 && !TARGET_THUNDERX_88XX
173 help
174 This ARM64 system supports AArch32 execution state.
175
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900176choice
177 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600178 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900179
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900180config ARCH_AT91
181 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900182
183config TARGET_EDB93XX
184 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100185 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900187config TARGET_ASPENITE
188 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900190
191config TARGET_GPLUGD
192 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900194
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900195config ARCH_DAVINCI
196 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900198 help
199 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900200
Masahiro Yamadad7570852014-08-31 07:10:59 +0900201config KIRKWOOD
202 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700204 select BOARD_EARLY_INIT_F
Simon Glass95d31412017-01-23 13:31:21 -0700205 select ARCH_MISC_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900206
Stefan Roese383e0c12015-08-25 13:18:38 +0200207config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200208 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200209 select OF_CONTROL
210 select OF_SEPARATE
211 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100212 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200213 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100214 select DM_SPI
215 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200216
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900217config TARGET_DEVKIT3250
218 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300220 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900221
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200222config TARGET_WORK_92105
223 bool "Support work_92105"
224 select CPU_ARM926EJS
225 select SUPPORT_SPL
226
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900227config TARGET_MX25PDK
228 bool "Support mx25pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500229 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100230 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700231 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900232
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900233config TARGET_ZMX25
234 bool "Support zmx25"
Tom Rini22d567e2017-01-22 19:43:11 -0500235 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900237
238config TARGET_APF27
239 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100240 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900241 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900242
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243config TARGET_APX4DEVKIT
244 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100245 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900246 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900247
248config TARGET_XFI3
249 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100250 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
253config TARGET_M28EVK
254 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900256 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900257
258config TARGET_MX23EVK
259 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900261 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700262 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900263
264config TARGET_MX28EVK
265 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100266 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900267 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700268 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900269
270config TARGET_MX23_OLINUXINO
271 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100272 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900273 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700274 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900275
276config TARGET_BG0900
277 bool "Support bg0900"
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
281config TARGET_SANSA_FUZE_PLUS
282 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100283 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900284 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900285
286config TARGET_SC_SPS_1
287 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100288 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900291config ORION5X
292 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900295config TARGET_SPEAR300
296 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100297 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700298 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299
300config TARGET_SPEAR310
301 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700303 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900304
305config TARGET_SPEAR320
306 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100307 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700308 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900309
310config TARGET_SPEAR600
311 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100312 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700313 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900314
Vikas Manocha33913c52014-11-18 10:42:22 -0800315config TARGET_STV0991
316 bool "Support stv0991"
317 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900318 select DM
319 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700320 select DM_SPI
321 select DM_SPI_FLASH
322 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800323
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324config TARGET_X600
325 bool "Support x600"
Tom Rini22d567e2017-01-22 19:43:11 -0500326 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900329
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900330config TARGET_IMX31_PHYCORE
Tom Rini969dc222017-01-22 19:43:09 -0500331 bool "Support imx31_phycore_eet"
332 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700333 select BOARD_EARLY_INIT_F
Tom Rini969dc222017-01-22 19:43:09 -0500334
335config TARGET_IMX31_PHYCORE_EET
336 bool "Support imx31_phycore_eet"
Tom Rini22d567e2017-01-22 19:43:11 -0500337 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100338 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700339 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900340
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341config TARGET_MX31ADS
342 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100343 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700344 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900345
346config TARGET_MX31PDK
347 bool "Support mx31pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500348 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100349 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700351 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900352
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900353config TARGET_WOODBURN
354 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100355 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900356
357config TARGET_WOODBURN_SD
358 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100359 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900360 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900361
362config TARGET_FLEA3
363 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100364 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900365
366config TARGET_MX35PDK
367 bool "Support mx35pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500368 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100369 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900370
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900371config ARCH_BCM283X
372 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900373 select DM
374 select DM_SERIAL
375 select DM_GPIO
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200376 select OF_CONTROL
Stephen Warrendc7ea682015-02-16 12:16:15 -0700377
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900378config TARGET_VEXPRESS_CA15_TC2
379 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100380 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100381 select CPU_V7_HAS_NONSEC
382 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900383
384config TARGET_VEXPRESS_CA5X2
385 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100386 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900387
388config TARGET_VEXPRESS_CA9X4
389 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100390 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900391
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200392config TARGET_BRXRE1
393 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500394 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500395 select BOARD_LATE_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900396
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200397config TARGET_BRPPT1
398 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500399 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500400 select BOARD_LATE_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900401
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900402config TARGET_DRACO
403 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500404 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500405 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200406 select DM
407 select DM_SERIAL
408 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900409
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200410config TARGET_THUBAN
411 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500412 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500413 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200414 select DM
415 select DM_SERIAL
416 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900417
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200418config TARGET_RASTABAN
419 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500420 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500421 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200422 select DM
423 select DM_SERIAL
424 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200425
Heiko Schochercbec11a2016-06-07 08:55:45 +0200426config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400427 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500428 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500429 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200430 select DM
431 select DM_SERIAL
432 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200433
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900434config TARGET_PXM2
435 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500436 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500437 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200438 select DM
439 select DM_SERIAL
440 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900441
442config TARGET_RUT
443 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500444 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500445 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200446 select DM
447 select DM_SERIAL
448 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900449
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900450config TARGET_TI814X_EVM
451 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500452 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900453
454config TARGET_TI816X_EVM
455 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500456 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900457
Steve Rae45f2c702016-06-02 15:10:56 -0700458config TARGET_BCM23550_W1D
459 bool "Support bcm23550_w1d"
460 select CPU_V7
461
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462config TARGET_BCM28155_AP
463 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900465
Steve Rae1c5f31c2014-11-11 11:32:18 -0800466config TARGET_BCMCYGNUS
467 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100468 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700469
Steve Rae1c5f31c2014-11-11 11:32:18 -0800470config TARGET_BCMNSP
471 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100472 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700473
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900474config ARCH_EXYNOS
475 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900476 select DM
Simon Glass7bbb7d92016-11-23 06:34:40 -0700477 select DM_I2C
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900478 select DM_SPI_FLASH
479 select DM_SERIAL
480 select DM_SPI
481 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600482 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900483
Simon Glass96aa0722014-10-07 22:01:50 -0600484config ARCH_S5PC1XX
485 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900487 select DM
488 select DM_SERIAL
489 select DM_GPIO
Simon Glassc6aa9702016-11-23 06:34:41 -0700490 select DM_I2C
Simon Glass96aa0722014-10-07 22:01:50 -0600491
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900492config ARCH_HIGHBANK
493 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900495
Masahiro Yamadacad44162015-04-21 21:59:36 +0900496config ARCH_INTEGRATOR
497 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200498 select DM
499 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900500
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900501config ARCH_KEYSTONE
502 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900504 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400505 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900506
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200507config ARCH_MESON
508 bool "Amlogic Meson"
509 help
510 Support for the Meson SoC family developed by Amlogic Inc.,
511 targeted at media players and tablet computers. We currently
512 support the S905 (GXBaby) 64-bit SoC.
513
Adrian Alonso98810772015-09-03 11:49:28 -0500514config ARCH_MX7
515 bool "Freescale MX7"
516 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800517 select SYS_FSL_HAS_SEC if SECURE_BOOT
518 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800519 select SYS_FSL_SEC_LE
Simon Glass7a99a872017-01-23 13:31:20 -0700520 select BOARD_EARLY_INIT_F
Simon Glass95d31412017-01-23 13:31:21 -0700521 select ARCH_MISC_INIT
Adrian Alonso98810772015-09-03 11:49:28 -0500522
Boris BREZILLON51e82662015-03-04 13:13:03 +0100523config ARCH_MX6
524 bool "Freescale MX6"
525 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800526 select SYS_FSL_HAS_SEC if SECURE_BOOT
527 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800528 select SYS_FSL_SEC_LE
Boris BREZILLON51e82662015-03-04 13:13:03 +0100529
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200530config ARCH_MX5
531 bool "Freescale MX5"
532 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700533 select BOARD_EARLY_INIT_F
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200534
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900535config TARGET_M53EVK
536 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100537 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900538 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700539 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900540
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900541config TARGET_MX51EVK
542 bool "Support mx51evk"
Tom Rini22d567e2017-01-22 19:43:11 -0500543 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100544 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700545 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900546
547config TARGET_MX53ARD
548 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100549 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700550 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900551
552config TARGET_MX53EVK
553 bool "Support mx53evk"
Tom Rini22d567e2017-01-22 19:43:11 -0500554 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100555 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700556 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900557
558config TARGET_MX53LOCO
559 bool "Support mx53loco"
Tom Rini22d567e2017-01-22 19:43:11 -0500560 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100561 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700562 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900563
564config TARGET_MX53SMD
565 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100566 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700567 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900568
Masahiro Yamadadd678432014-08-31 07:11:02 +0900569config OMAP34XX
570 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500571 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400572 select USE_TINY_PRINTF
Tom Rini89a65682017-03-03 15:33:32 -0500573 imply SPL_EXT_SUPPORT
574 imply SPL_FAT_SUPPORT
575 imply SPL_GPIO_SUPPORT
576 imply SPL_I2C_SUPPORT
577 imply SPL_LIBCOMMON_SUPPORT
578 imply SPL_LIBDISK_SUPPORT
579 imply SPL_LIBGENERIC_SUPPORT
580 imply SPL_MMC_SUPPORT
581 imply SPL_NAND_SUPPORT
582 imply SPL_POWER_SUPPORT
583 imply SPL_SERIAL_SUPPORT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900584
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900585config OMAP44XX
586 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500587 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400588 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900589
Masahiro Yamada420b8162014-08-31 07:11:04 +0900590config OMAP54XX
591 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500592 select ARCH_OMAP2
Tom Rini3b235102017-03-03 15:33:31 -0500593 imply SPL_DISPLAY_PRINT
594 imply SPL_ENV_SUPPORT
595 imply SPL_EXT_SUPPORT
596 imply SPL_FAT_SUPPORT
597 imply SPL_GPIO_SUPPORT
598 imply SPL_I2C_SUPPORT
599 imply SPL_LIBCOMMON_SUPPORT
600 imply SPL_LIBDISK_SUPPORT
601 imply SPL_LIBGENERIC_SUPPORT
602 imply SPL_MMC_SUPPORT
603 imply SPL_NAND_SUPPORT
604 imply SPL_POWER_SUPPORT
605 imply SPL_SERIAL_SUPPORT
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500606
607config AM43XX
608 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500609 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500610 help
611 Support for AM43xx SOC from Texas Instruments.
612 The AM43xx high performance SOC features a Cortex-A9
613 ARM core, a quad core PRU-ICSS for industrial Ethernet
614 protocols, dual camera support, optional 3D graphics
615 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900616
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500617config AM33XX
618 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500619 select ARCH_OMAP2
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500620 help
621 Support for AM335x SOC from Texas Instruments.
622 The AM335x high performance SOC features a Cortex-A8
623 ARM core, a dual core PRU-ICSS for industrial Ethernet
624 protocols, optional 3D graphics and an optional customer
625 programmable secure boot.
626
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900627config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900628 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900629 select DM
630 select DM_SERIAL
Simon Glass7a99a872017-01-23 13:31:20 -0700631 select BOARD_EARLY_INIT_F
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300632
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300633config TARGET_S32V234EVB
634 bool "Support s32v234evb"
635 select ARM64
York Sun097e3602016-12-28 08:43:42 -0800636 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300637
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200638config ARCH_SNAPDRAGON
639 bool "Qualcomm Snapdragon SoCs"
640 select ARM64
641 select DM
642 select DM_GPIO
643 select DM_SERIAL
644 select SPMI
645 select OF_CONTROL
646 select OF_SEPARATE
647
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900648config ARCH_SOCFPGA
649 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100650 select CPU_V7
651 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200652 select OF_CONTROL
653 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900654 select DM
655 select DM_SPI_FLASH
656 select DM_SPI
Marek Vasutbcd861b2016-11-16 17:20:23 +0100657 select ENABLE_ARM_SOC_BOOT0_HOOK
Simon Glass62adede2017-01-23 13:31:19 -0700658 select ARCH_EARLY_INIT_R
Simon Glass95d31412017-01-23 13:31:21 -0700659 select ARCH_MISC_INIT
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800660 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Marek Vasut69295472014-12-30 18:16:08 +0100661
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300662config TARGET_CM_T43
663 bool "Support cm_t43"
Tom Rini28eec372016-11-07 21:34:54 -0500664 select ARCH_OMAP2
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300665
Ian Campbelld8e69e02014-10-24 21:20:44 +0100666config ARCH_SUNXI
667 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200668 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200669 select CMD_MMC if MMC
Yann E. MORINe28217d2016-10-31 22:33:40 +0100670 select CMD_USB if DISTRO_DEFAULTS
Hans de Goede03914882015-04-15 20:46:48 +0200671 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400672 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100673 select DM_GPIO
674 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400675 select DM_SERIAL
Yann E. MORINe28217d2016-10-31 22:33:40 +0100676 select DM_USB if DISTRO_DEFAULTS
Hans de Goede48a234a2016-03-22 22:51:52 +0100677 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200678 select OF_CONTROL
679 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200680 select SPL_STACK_R if SUPPORT_SPL
681 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100682 select SYS_NS16550
Yann E. MORINe28217d2016-10-31 22:33:40 +0100683 select USB if DISTRO_DEFAULTS
684 select USB_STORAGE if DISTRO_DEFAULTS
685 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede42a31822016-06-10 12:19:40 +0200686 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800687
Sebastien Bourdelinf012f662016-11-08 12:18:07 -0500688config TARGET_TS4600
689 bool "Support TS4600"
690 select CPU_ARM926EJS
691 select SUPPORT_SPL
692
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400693config TARGET_TS4800
694 bool "Support TS4800"
695 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800696 select SYS_FSL_ERRATUM_ESDHC_A001
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400697
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900698config TARGET_VF610TWR
699 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100700 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800701 select SYS_FSL_ERRATUM_ESDHC111
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900702
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530703config TARGET_COLIBRI_VF
704 bool "Support Colibri VF50/61"
Tom Rini22d567e2017-01-22 19:43:11 -0500705 select BOARD_LATE_INIT
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530706 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800707 select SYS_FSL_ERRATUM_ESDHC111
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530708
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200709config TARGET_PCM052
710 bool "Support pcm-052"
711 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800712 select SYS_FSL_ERRATUM_ESDHC111
713 select SYS_FSL_ERRATUM_ESDHC135
714 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200715
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200716config TARGET_BK4R1
717 bool "Support BK4r1"
718 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800719 select SYS_FSL_ERRATUM_ESDHC111
720 select SYS_FSL_ERRATUM_ESDHC135
721 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200722
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900723config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900724 bool "Xilinx Zynq Platform"
Tom Rini22d567e2017-01-22 19:43:11 -0500725 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100726 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900727 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530728 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100729 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900730 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100731 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530732 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100733 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100734 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600735 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530736 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600737 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530738 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100739 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600740 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600741 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900742
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530743config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100744 bool "Support Xilinx ZynqMP Platform"
745 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500746 select BOARD_LATE_INIT
Michal Simek25b83712015-10-17 19:41:25 -0600747 select DM
748 select OF_CONTROL
749 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100750 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200751 select CLK
752 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600753 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100754
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900755config TEGRA
756 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900757
Linus Walleij800d6fd2015-01-23 11:50:53 +0100758config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900759 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900760 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900761
Linus Walleij800d6fd2015-01-23 11:50:53 +0100762config TARGET_VEXPRESS64_BASE_FVP
763 bool "Support Versatile Express ARMv8a FVP BASE model"
764 select ARM64
765 select SEMIHOSTING
766
Ryan Harkinb6b96652015-10-09 17:18:02 +0100767config TARGET_VEXPRESS64_BASE_FVP_DRAM
768 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
769 select ARM64
770 help
771 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
772 the default config to allow the user to load the images directly into
773 DRAM using model parameters rather than by using semi-hosting to load
774 the files from the host filesystem.
775
Linus Walleijc5822502015-01-23 14:41:10 +0100776config TARGET_VEXPRESS64_JUNO
777 bool "Support Versatile Express Juno Development Platform"
778 select ARM64
779
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530780config TARGET_LS2080A_EMU
781 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700782 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900783 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100784 select ARMV8_MULTIENTRY
Simon Glass95d31412017-01-23 13:31:21 -0700785 select ARCH_MISC_INIT
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530786 help
787 Support for Freescale LS2080A_EMU platform
788 The LS2080A Development System (EMULATOR) is a pre silicon
789 development platform that supports the QorIQ LS2080A
790 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900791
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530792config TARGET_LS2080A_SIMU
793 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700794 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900795 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100796 select ARMV8_MULTIENTRY
Simon Glass95d31412017-01-23 13:31:21 -0700797 select ARCH_MISC_INIT
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530798 help
799 Support for Freescale LS2080A_SIMU platform
800 The LS2080A Development System (QDS) is a pre silicon
801 development platform that supports the QorIQ LS2080A
802 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900803
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530804config TARGET_LS2080AQDS
805 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700806 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700807 select ARM64
808 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500809 select BOARD_LATE_INIT
Scott Wood8e728cd2015-03-24 13:25:02 -0700810 select SUPPORT_SPL
Simon Glass95d31412017-01-23 13:31:21 -0700811 select ARCH_MISC_INIT
York Sun03017032015-03-20 19:28:23 -0700812 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530813 Support for Freescale LS2080AQDS platform
814 The LS2080A Development System (QDS) is a high-performance
815 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700816 Layerscape Architecture processor.
817
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530818config TARGET_LS2080ARDB
819 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700820 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700821 select ARM64
822 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500823 select BOARD_LATE_INIT
Scott Wood212b8d82015-03-24 13:25:03 -0700824 select SUPPORT_SPL
Simon Glass95d31412017-01-23 13:31:21 -0700825 select ARCH_MISC_INIT
York Sune12abcb2015-03-20 19:28:24 -0700826 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530827 Support for Freescale LS2080ARDB platform.
828 The LS2080A Reference design board (RDB) is a high-performance
829 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700830 Layerscape Architecture processor.
831
Peter Griffin31f327e2015-07-30 18:55:23 +0100832config TARGET_HIKEY
833 bool "Support HiKey 96boards Consumer Edition Platform"
834 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100835 select DM
836 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100837 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100838 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100839 help
840 Support for HiKey 96boards platform. It features a HI6220
841 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
842
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530843config TARGET_LS1012AQDS
844 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700845 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530846 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500847 select BOARD_LATE_INIT
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530848 help
849 Support for Freescale LS1012AQDS platform.
850 The LS1012A Development System (QDS) is a high-performance
851 development platform that supports the QorIQ LS1012A
852 Layerscape Architecture processor.
853
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530854config TARGET_LS1012ARDB
855 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700856 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530857 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500858 select BOARD_LATE_INIT
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530859 help
860 Support for Freescale LS1012ARDB platform.
861 The LS1012A Reference design board (RDB) is a high-performance
862 development platform that supports the QorIQ LS1012A
863 Layerscape Architecture processor.
864
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530865config TARGET_LS1012AFRDM
866 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700867 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530868 select ARM64
869 help
870 Support for Freescale LS1012AFRDM platform.
871 The LS1012A Freedom board (FRDM) is a high-performance
872 development platform that supports the QorIQ LS1012A
873 Layerscape Architecture processor.
874
Wang Huanf0ce7d62014-09-05 13:52:44 +0800875config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800876 bool "Support ls1021aqds"
Tom Rini22d567e2017-01-22 19:43:11 -0500877 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100878 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800879 select CPU_V7_HAS_NONSEC
880 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800881 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700882 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900883 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700884 select LS1_DEEP_SLEEP
York Sund297d392016-12-28 08:43:40 -0800885 select SYS_FSL_DDR
Simon Glass7a99a872017-01-23 13:31:20 -0700886 select BOARD_EARLY_INIT_F
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900887
Wang Huanddf89f92014-09-05 13:52:45 +0800888config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800889 bool "Support ls1021atwr"
Tom Rini22d567e2017-01-22 19:43:11 -0500890 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100891 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800892 select CPU_V7_HAS_NONSEC
893 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800894 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700895 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900896 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700897 select LS1_DEEP_SLEEP
Simon Glass7a99a872017-01-23 13:31:20 -0700898 select BOARD_EARLY_INIT_F
Wang Huanddf89f92014-09-05 13:52:45 +0800899
Feng Li39e112d2016-11-03 14:15:17 +0800900config TARGET_LS1021AIOT
901 bool "Support ls1021aiot"
Tom Rini22d567e2017-01-22 19:43:11 -0500902 select BOARD_LATE_INIT
Feng Li39e112d2016-11-03 14:15:17 +0800903 select CPU_V7
904 select CPU_V7_HAS_NONSEC
905 select CPU_V7_HAS_VIRT
906 select SUPPORT_SPL
907 select ARCH_LS1021A
908 select ARCH_SUPPORT_PSCI
909 help
910 Support for Freescale LS1021AIOT platform.
911 The LS1021A Freescale board (IOT) is a high-performance
912 development platform that supports the QorIQ LS1021A
913 Layerscape Architecture processor.
914
Shaohui Xiedd335672015-11-11 17:58:37 +0800915config TARGET_LS1043AQDS
916 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700917 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800918 select ARM64
919 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500920 select BOARD_LATE_INIT
Shaohui Xiedd335672015-11-11 17:58:37 +0800921 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700922 select BOARD_EARLY_INIT_F
Shaohui Xiedd335672015-11-11 17:58:37 +0800923 help
924 Support for Freescale LS1043AQDS platform.
925
Mingkai Hueee86ff2015-10-26 19:47:52 +0800926config TARGET_LS1043ARDB
927 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700928 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800929 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800930 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500931 select BOARD_LATE_INIT
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800932 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700933 select BOARD_EARLY_INIT_F
Mingkai Hueee86ff2015-10-26 19:47:52 +0800934 help
935 Support for Freescale LS1043ARDB platform.
936
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800937config TARGET_LS1046AQDS
938 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700939 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800940 select ARM64
941 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500942 select BOARD_LATE_INIT
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800943 select SUPPORT_SPL
944 select DM_SPI_FLASH if DM_SPI
Simon Glass7a99a872017-01-23 13:31:20 -0700945 select BOARD_EARLY_INIT_F
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800946 help
947 Support for Freescale LS1046AQDS platform.
948 The LS1046A Development System (QDS) is a high-performance
949 development platform that supports the QorIQ LS1046A
950 Layerscape Architecture processor.
951
Mingkai Hud2396512016-09-07 18:47:28 +0800952config TARGET_LS1046ARDB
953 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700954 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800955 select ARM64
956 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500957 select BOARD_LATE_INIT
Mingkai Hud2396512016-09-07 18:47:28 +0800958 select SUPPORT_SPL
959 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiang67b6d0a2016-12-09 16:09:01 +0800960 select POWER_MC34VR500
Simon Glass7a99a872017-01-23 13:31:20 -0700961 select BOARD_EARLY_INIT_F
Mingkai Hud2396512016-09-07 18:47:28 +0800962 help
963 Support for Freescale LS1046ARDB platform.
964 The LS1046A Reference Design Board (RDB) is a high-performance
965 development platform that supports the QorIQ LS1046A
966 Layerscape Architecture processor.
967
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900968config TARGET_H2200
969 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100970 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900971
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700972config TARGET_ZIPITZ2
973 bool "Support zipitz2"
974 select CPU_PXA
975
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976config TARGET_COLIBRI_PXA270
977 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100978 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900979
Masahiro Yamada82069432014-10-03 19:21:07 +0900980config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900981 bool "Socionext UniPhier SoCs"
Tom Rini22d567e2017-01-22 19:43:11 -0500982 select BOARD_LATE_INIT
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900983 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900984 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900985 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900986 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900987 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900988 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900989 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900990 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900991 select OF_CONTROL
992 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900993 select PINCTRL
Masahiro Yamadadabee242017-01-21 18:05:22 +0900994 select SPL_DM if SPL
995 select SPL_LIBCOMMON_SUPPORT if SPL
996 select SPL_LIBGENERIC_SUPPORT if SPL
997 select SPL_OF_CONTROL if SPL
998 select SPL_PINCTRL if SPL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900999 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001000 help
1001 Support for UniPhier SoC family developed by Socionext Inc.
1002 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +09001003
Vikas Manocha95c89192016-01-15 17:49:06 -08001004config STM32
1005 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001006 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +01001007 select DM
1008 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001009
Simon Glass2cffe662015-08-30 16:55:38 -06001010config ARCH_ROCKCHIP
1011 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -06001012 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -06001013 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -06001014 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +08001015 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -06001016 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +08001017 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -06001018 select DM_GPIO
1019 select DM_I2C
1020 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -06001021 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -06001022 select DM_SERIAL
1023 select DM_SPI
1024 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +08001025 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +08001026 select DM_PWM
1027 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -06001028
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001029config TARGET_THUNDERX_88XX
1030 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +02001031 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001032 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -04001033 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001034
maxims@google.comf57bd002017-01-18 13:44:55 -08001035config ARCH_ASPEED
1036 bool "Support Aspeed SoCs"
1037 select OF_CONTROL
1038 select DM
1039
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001040endchoice
1041
maxims@google.comf57bd002017-01-18 13:44:55 -08001042source "arch/arm/mach-aspeed/Kconfig"
1043
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +09001044source "arch/arm/mach-at91/Kconfig"
1045
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001046source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +09001047
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001048source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -07001049
Thomas Abraham74f84862015-08-03 17:58:00 +05301050source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +09001051
Masahiro Yamada95ec48b2015-02-20 17:04:08 +09001052source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +09001053
Masahiro Yamadacad44162015-04-21 21:59:36 +09001054source "arch/arm/mach-integrator/Kconfig"
1055
Masahiro Yamadaf058b792015-02-20 17:04:11 +09001056source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +09001057
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +09001058source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +09001059
Stefan Roese383e0c12015-08-25 13:18:38 +02001060source "arch/arm/mach-mvebu/Kconfig"
1061
York Sun149eb332016-09-26 08:09:27 -07001062source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1063
Adrian Alonso98810772015-09-03 11:49:28 -05001064source "arch/arm/cpu/armv7/mx7/Kconfig"
1065
Boris BREZILLON51e82662015-03-04 13:13:03 +01001066source "arch/arm/cpu/armv7/mx6/Kconfig"
1067
Andrej Rosano1ac4bca2015-04-08 18:56:29 +02001068source "arch/arm/cpu/armv7/mx5/Kconfig"
1069
Tom Rini28eec372016-11-07 21:34:54 -05001070source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -05001071
York Sunbad49842016-09-26 08:09:24 -07001072source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1073
Masahiro Yamada22537642015-02-20 17:04:09 +09001074source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +09001075
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +09001076source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +09001077
Beniamino Galvanid1037e42016-05-08 08:30:16 +02001078source "arch/arm/mach-meson/Kconfig"
1079
Simon Glass2cffe662015-08-30 16:55:38 -06001080source "arch/arm/mach-rockchip/Kconfig"
1081
Minkyu Kang56b820a2015-11-20 15:24:57 +09001082source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -06001083
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02001084source "arch/arm/mach-snapdragon/Kconfig"
1085
Masahiro Yamada144a3e02015-04-21 20:38:20 +09001086source "arch/arm/mach-socfpga/Kconfig"
1087
Vikas Manocha95c89192016-01-15 17:49:06 -08001088source "arch/arm/mach-stm32/Kconfig"
1089
Masahiro Yamadaed1632a2015-02-20 17:04:04 +09001090source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001091
Masahiro Yamadaf8563982015-02-27 02:26:42 +09001092source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +09001093
Masahiro Yamada43246cc2015-03-16 16:43:22 +09001094source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001095
Hans de Goede85437352014-11-14 09:34:30 +01001096source "arch/arm/cpu/armv7/Kconfig"
1097
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +05301098source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1099
Linus Walleij74771392015-03-09 10:53:21 +01001100source "arch/arm/cpu/armv8/Kconfig"
1101
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01001102source "arch/arm/imx-common/Kconfig"
1103
Heiko Schocherf1163962016-06-07 08:31:25 +02001104source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +02001105source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +02001106source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001107source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001108source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001109source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001110source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001111source "board/armltd/vexpress/Kconfig"
1112source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001113source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -07001114source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001115source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -08001116source "board/broadcom/bcmcygnus/Kconfig"
1117source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001118source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001119source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001120source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001121source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001122source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001123source "board/denx/m28evk/Kconfig"
1124source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301125source "board/freescale/ls2080a/Kconfig"
1126source "board/freescale/ls2080aqds/Kconfig"
1127source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +08001128source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +08001129source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +08001130source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +08001131source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001132source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001133source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001134source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301135source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301136source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301137source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001138source "board/freescale/mx23evk/Kconfig"
1139source "board/freescale/mx25pdk/Kconfig"
1140source "board/freescale/mx28evk/Kconfig"
1141source "board/freescale/mx31ads/Kconfig"
1142source "board/freescale/mx31pdk/Kconfig"
1143source "board/freescale/mx35pdk/Kconfig"
1144source "board/freescale/mx51evk/Kconfig"
1145source "board/freescale/mx53ard/Kconfig"
1146source "board/freescale/mx53evk/Kconfig"
1147source "board/freescale/mx53loco/Kconfig"
1148source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001149source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001150source "board/freescale/vf610twr/Kconfig"
Marcin Niestroj20315d22017-01-25 09:53:08 +01001151source "board/grinn/chiliboard/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001152source "board/gumstix/pepper/Kconfig"
1153source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001154source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001155source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001156source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001157source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001158source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001159source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001160source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001161source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001162source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001163source "board/siemens/draco/Kconfig"
1164source "board/siemens/pxm2/Kconfig"
1165source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001166source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001167source "board/spear/spear300/Kconfig"
1168source "board/spear/spear310/Kconfig"
1169source "board/spear/spear320/Kconfig"
1170source "board/spear/spear600/Kconfig"
1171source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001172source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001173source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001174source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001175source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001176source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001177source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001178source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001179source "board/ti/ti814x/Kconfig"
1180source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001181source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001182source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301183source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelinf012f662016-11-08 12:18:07 -05001184source "board/technologic/ts4600/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001185source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001186source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001187source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001188source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001189source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001190
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001191source "arch/arm/Kconfig.debug"
1192
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001193endmenu