Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "ARM architecture" |
| 2 | depends on ARM |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "arm" |
| 6 | |
Masahiro Yamada | 0d46c34 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 7 | config ARM64 |
| 8 | bool |
Masahiro Yamada | 653e9fe | 2016-07-25 19:56:03 +0900 | [diff] [blame] | 9 | select PHYS_64BIT |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 10 | select SYS_CACHE_SHIFT_6 |
Masahiro Yamada | 0d46c34 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 11 | |
Stephen Warren | 81c2137 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 12 | if ARM64 |
| 13 | config POSITION_INDEPENDENT |
| 14 | bool "Generate position-independent pre-relocation code" |
| 15 | help |
| 16 | U-Boot expects to be linked to a specific hard-coded address, and to |
| 17 | be loaded to and run from that address. This option lifts that |
Edgar E. Iglesias | 63d7336 | 2020-09-09 19:07:24 +0200 | [diff] [blame] | 18 | restriction, thus allowing the code to be loaded to and executed from |
| 19 | almost any 4K aligned address. This logic relies on the relocation |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 20 | information that is embedded in the binary to support U-Boot |
Stephen Warren | 81c2137 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 21 | relocating itself to the top-of-RAM later during execution. |
Stephen Warren | b80fe6d | 2017-12-19 18:30:36 -0700 | [diff] [blame] | 22 | |
Masahiro Yamada | bf4645c | 2019-06-26 13:51:46 +0900 | [diff] [blame] | 23 | config INIT_SP_RELATIVE |
| 24 | bool "Specify the early stack pointer relative to the .bss section" |
Andre Przywara | 4d71189 | 2020-09-30 17:39:18 +0100 | [diff] [blame] | 25 | default n if ARCH_QEMU |
Andre Przywara | a834b77 | 2020-09-30 17:39:15 +0100 | [diff] [blame] | 26 | default y if POSITION_INDEPENDENT |
Stephen Warren | b80fe6d | 2017-12-19 18:30:36 -0700 | [diff] [blame] | 27 | help |
| 28 | U-Boot typically uses a hard-coded value for the stack pointer |
Masahiro Yamada | bf4645c | 2019-06-26 13:51:46 +0900 | [diff] [blame] | 29 | before relocation. Enable this option to instead calculate the |
Stephen Warren | b80fe6d | 2017-12-19 18:30:36 -0700 | [diff] [blame] | 30 | initial SP at run-time. This is useful to avoid hard-coding addresses |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 31 | into U-Boot, so that it can be loaded and executed at arbitrary |
Masahiro Yamada | bf4645c | 2019-06-26 13:51:46 +0900 | [diff] [blame] | 32 | addresses and thus avoid using arbitrary addresses at runtime. |
| 33 | |
| 34 | If this option is enabled, the early stack pointer is set to |
| 35 | &_bss_start with a offset value added. The offset is specified by |
| 36 | SYS_INIT_SP_BSS_OFFSET. |
| 37 | |
| 38 | config SYS_INIT_SP_BSS_OFFSET |
| 39 | int "Early stack offset from the .bss base address" |
| 40 | depends on INIT_SP_RELATIVE |
| 41 | default 524288 |
| 42 | help |
| 43 | This option's value is the offset added to &_bss_start in order to |
Stephen Warren | b80fe6d | 2017-12-19 18:30:36 -0700 | [diff] [blame] | 44 | calculate the stack pointer. This offset should be large enough so |
| 45 | that the early malloc region, global data (gd), and early stack usage |
| 46 | do not overlap any appended DTB. |
Stephen Warren | 80a9365 | 2018-01-03 14:31:51 -0700 | [diff] [blame] | 47 | |
| 48 | config LINUX_KERNEL_IMAGE_HEADER |
| 49 | bool |
| 50 | help |
| 51 | Place a Linux kernel image header at the start of the U-Boot binary. |
| 52 | The format of the header is described in the Linux kernel source at |
| 53 | Documentation/arm64/booting.txt. This feature is useful since the |
| 54 | image header reports the amount of memory (BSS and similar) that |
| 55 | U-Boot needs to use, but which isn't part of the binary. |
| 56 | |
| 57 | if LINUX_KERNEL_IMAGE_HEADER |
| 58 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 59 | hex |
| 60 | help |
| 61 | The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 62 | TEXT_OFFSET value written to the Linux kernel image header. |
Stephen Warren | 80a9365 | 2018-01-03 14:31:51 -0700 | [diff] [blame] | 63 | endif |
Stephen Warren | 81c2137 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 64 | endif |
| 65 | |
Bharat Kumar Reddy Gooty | 436efc0 | 2019-12-16 09:09:43 -0800 | [diff] [blame] | 66 | config GIC_V3_ITS |
| 67 | bool "ARM GICV3 ITS" |
Rayagonda Kokatanur | 158c16e | 2020-07-26 22:37:33 +0530 | [diff] [blame] | 68 | select REGMAP |
| 69 | select SYSCON |
Wasim Khan | 339539c | 2021-03-08 16:48:14 +0100 | [diff] [blame] | 70 | select IRQ |
Bharat Kumar Reddy Gooty | 436efc0 | 2019-12-16 09:09:43 -0800 | [diff] [blame] | 71 | help |
| 72 | ARM GICV3 Interrupt translation service (ITS). |
| 73 | Basic support for programming locality specific peripheral |
| 74 | interrupts (LPI) configuration tables and enable LPI tables. |
| 75 | LPI configuration table can be used by u-boot or Linux. |
| 76 | ARM GICV3 has limitation, once the LPI table is enabled, LPI |
| 77 | configuration table can not be re-programmed, unless GICV3 reset. |
| 78 | |
Stephen Warren | 81c2137 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 79 | config STATIC_RELA |
| 80 | bool |
Andre Przywara | f7582ee | 2020-09-30 17:39:13 +0100 | [diff] [blame] | 81 | default y if ARM64 |
Stephen Warren | 81c2137 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 82 | |
Lokesh Vutla | f94277d | 2016-03-24 16:02:00 +0530 | [diff] [blame] | 83 | config DMA_ADDR_T_64BIT |
| 84 | bool |
| 85 | default y if ARM64 |
| 86 | |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 87 | config HAS_VBAR |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 88 | bool |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 89 | |
Albert ARIBAUD | a382322 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 90 | config HAS_THUMB2 |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 91 | bool |
Albert ARIBAUD | a382322 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 92 | |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 93 | config GPIO_EXTRA_HEADER |
| 94 | bool |
| 95 | |
Phil Edworthy | 3b8f16a | 2017-06-01 07:33:28 +0100 | [diff] [blame] | 96 | # Used for compatibility with asm files copied from the kernel |
| 97 | config ARM_ASM_UNIFIED |
| 98 | bool |
| 99 | default y |
| 100 | |
| 101 | # Used for compatibility with asm files copied from the kernel |
| 102 | config THUMB2_KERNEL |
| 103 | bool |
| 104 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 105 | config SYS_ICACHE_OFF |
| 106 | bool "Do not enable icache" |
| 107 | default n |
| 108 | help |
| 109 | Do not enable instruction cache in U-Boot. |
| 110 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 111 | config SPL_SYS_ICACHE_OFF |
| 112 | bool "Do not enable icache in SPL" |
| 113 | depends on SPL |
| 114 | default SYS_ICACHE_OFF |
| 115 | help |
| 116 | Do not enable instruction cache in SPL. |
| 117 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 118 | config SYS_DCACHE_OFF |
| 119 | bool "Do not enable dcache" |
| 120 | default n |
| 121 | help |
| 122 | Do not enable data cache in U-Boot. |
| 123 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 124 | config SPL_SYS_DCACHE_OFF |
| 125 | bool "Do not enable dcache in SPL" |
| 126 | depends on SPL |
| 127 | default SYS_DCACHE_OFF |
| 128 | help |
| 129 | Do not enable data cache in SPL. |
| 130 | |
Lokesh Vutla | 5a5bb6c | 2018-04-26 18:21:28 +0530 | [diff] [blame] | 131 | config SYS_ARM_CACHE_CP15 |
| 132 | bool "CP15 based cache enabling support" |
| 133 | help |
| 134 | Select this if your processor suports enabling caches by using |
| 135 | CP15 registers. |
| 136 | |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 137 | config SYS_ARM_MMU |
| 138 | bool "MMU-based Paged Memory Management Support" |
Lokesh Vutla | 5a5bb6c | 2018-04-26 18:21:28 +0530 | [diff] [blame] | 139 | select SYS_ARM_CACHE_CP15 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 140 | help |
| 141 | Select if you want MMU-based virtualised addressing space |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 142 | support via paged memory management. |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 143 | |
Lokesh Vutla | 076ee45 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 144 | config SYS_ARM_MPU |
| 145 | bool 'Use the ARM v7 PMSA Compliant MPU' |
| 146 | help |
| 147 | Some ARM systems without an MMU have instead a Memory Protection |
| 148 | Unit (MPU) that defines the type and permissions for regions of |
| 149 | memory. |
| 150 | If your CPU has an MPU then you should choose 'y' here unless you |
| 151 | know that you do not want to use the MPU. |
| 152 | |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 153 | # If set, the workarounds for these ARM errata are applied early during U-Boot |
| 154 | # startup. Note that in general these options force the workarounds to be |
| 155 | # applied; no CPU-type/version detection exists, unlike the similar options in |
| 156 | # the Linux kernel. Do not set these options unless they apply! Also note that |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 157 | # the following can be machine-specific errata. These do have ability to |
| 158 | # provide rudimentary version and machine-specific checks, but expect no |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 159 | # product checks: |
| 160 | # CONFIG_ARM_ERRATA_430973 |
| 161 | # CONFIG_ARM_ERRATA_454179 |
| 162 | # CONFIG_ARM_ERRATA_621766 |
| 163 | # CONFIG_ARM_ERRATA_798870 |
| 164 | # CONFIG_ARM_ERRATA_801819 |
Nishanth Menon | 85515bf | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 165 | # CONFIG_ARM_CORTEX_A8_CVE_2017_5715 |
Nishanth Menon | 6ffdeaa | 2018-06-12 15:24:09 -0500 | [diff] [blame] | 166 | # CONFIG_ARM_CORTEX_A15_CVE_2017_5715 |
Nishanth Menon | 85515bf | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 167 | |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 168 | config ARM_ERRATA_430973 |
| 169 | bool |
| 170 | |
| 171 | config ARM_ERRATA_454179 |
| 172 | bool |
| 173 | |
| 174 | config ARM_ERRATA_621766 |
| 175 | bool |
| 176 | |
| 177 | config ARM_ERRATA_716044 |
| 178 | bool |
| 179 | |
Siarhei Siamashka | fe038a7 | 2017-03-06 03:16:53 +0200 | [diff] [blame] | 180 | config ARM_ERRATA_725233 |
| 181 | bool |
| 182 | |
Tom Rini | bacb52c | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 183 | config ARM_ERRATA_742230 |
| 184 | bool |
| 185 | |
| 186 | config ARM_ERRATA_743622 |
| 187 | bool |
| 188 | |
| 189 | config ARM_ERRATA_751472 |
| 190 | bool |
| 191 | |
| 192 | config ARM_ERRATA_761320 |
| 193 | bool |
| 194 | |
| 195 | config ARM_ERRATA_773022 |
| 196 | bool |
| 197 | |
| 198 | config ARM_ERRATA_774769 |
| 199 | bool |
| 200 | |
| 201 | config ARM_ERRATA_794072 |
| 202 | bool |
| 203 | |
| 204 | config ARM_ERRATA_798870 |
| 205 | bool |
| 206 | |
| 207 | config ARM_ERRATA_801819 |
| 208 | bool |
| 209 | |
| 210 | config ARM_ERRATA_826974 |
| 211 | bool |
| 212 | |
| 213 | config ARM_ERRATA_828024 |
| 214 | bool |
| 215 | |
| 216 | config ARM_ERRATA_829520 |
| 217 | bool |
| 218 | |
| 219 | config ARM_ERRATA_833069 |
| 220 | bool |
| 221 | |
| 222 | config ARM_ERRATA_833471 |
| 223 | bool |
| 224 | |
Peng Fan | 5ac341f | 2017-08-08 13:34:52 +0800 | [diff] [blame] | 225 | config ARM_ERRATA_845369 |
Michal Simek | f751ff5 | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 226 | bool |
Peng Fan | 5ac341f | 2017-08-08 13:34:52 +0800 | [diff] [blame] | 227 | |
Nisal Menuka | faa993a | 2017-04-26 16:18:01 -0500 | [diff] [blame] | 228 | config ARM_ERRATA_852421 |
| 229 | bool |
| 230 | |
| 231 | config ARM_ERRATA_852423 |
| 232 | bool |
| 233 | |
Alison Wang | c129387 | 2017-12-28 13:00:55 +0800 | [diff] [blame] | 234 | config ARM_ERRATA_855873 |
| 235 | bool |
| 236 | |
Nishanth Menon | 85515bf | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 237 | config ARM_CORTEX_A8_CVE_2017_5715 |
| 238 | bool |
| 239 | |
Nishanth Menon | 6ffdeaa | 2018-06-12 15:24:09 -0500 | [diff] [blame] | 240 | config ARM_CORTEX_A15_CVE_2017_5715 |
| 241 | bool |
| 242 | |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 243 | config CPU_ARM720T |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 244 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 245 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 246 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 247 | |
| 248 | config CPU_ARM920T |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 249 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 250 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 251 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 252 | |
| 253 | config CPU_ARM926EJS |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 254 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 255 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 256 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 257 | |
| 258 | config CPU_ARM946ES |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 259 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 260 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 261 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 262 | |
| 263 | config CPU_ARM1136 |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 264 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 265 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 266 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 267 | |
| 268 | config CPU_ARM1176 |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 269 | bool |
| 270 | select HAS_VBAR |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 271 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 272 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 273 | |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 274 | config CPU_V7A |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 275 | bool |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 276 | select HAS_THUMB2 |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 277 | select HAS_VBAR |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 278 | select SYS_CACHE_SHIFT_6 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 279 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 280 | |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 281 | config CPU_V7M |
| 282 | bool |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 283 | select HAS_THUMB2 |
Lokesh Vutla | 076ee45 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 284 | select SYS_ARM_MPU |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 285 | select SYS_CACHE_SHIFT_5 |
Tom Rini | 19bdef6 | 2018-05-07 20:46:52 -0400 | [diff] [blame] | 286 | select SYS_THUMB_BUILD |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 287 | select THUMB2_KERNEL |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 288 | |
Michal Simek | f435938 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 289 | config CPU_V7R |
| 290 | bool |
| 291 | select HAS_THUMB2 |
Lokesh Vutla | 076ee45 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 292 | select SYS_ARM_CACHE_CP15 |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 293 | select SYS_ARM_MPU |
| 294 | select SYS_CACHE_SHIFT_6 |
Michal Simek | f435938 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 295 | |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 296 | config CPU_PXA |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 297 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 298 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 299 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 300 | |
| 301 | config CPU_SA1100 |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 302 | bool |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 303 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | b2d00d6 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 304 | imply SYS_ARM_MMU |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 305 | |
| 306 | config SYS_CPU |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 307 | default "arm720t" if CPU_ARM720T |
| 308 | default "arm920t" if CPU_ARM920T |
| 309 | default "arm926ejs" if CPU_ARM926EJS |
| 310 | default "arm946es" if CPU_ARM946ES |
| 311 | default "arm1136" if CPU_ARM1136 |
| 312 | default "arm1176" if CPU_ARM1176 |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 313 | default "armv7" if CPU_V7A |
Michal Simek | f435938 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 314 | default "armv7" if CPU_V7R |
Tom Rini | bca0196 | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 315 | default "armv7m" if CPU_V7M |
| 316 | default "pxa" if CPU_PXA |
| 317 | default "sa1100" if CPU_SA1100 |
Masahiro Yamada | dade3b0 | 2014-11-06 11:39:27 +0900 | [diff] [blame] | 318 | default "armv8" if ARM64 |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 319 | |
Marek Vasut | b06c954 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 320 | config SYS_ARM_ARCH |
| 321 | int |
| 322 | default 4 if CPU_ARM720T |
| 323 | default 4 if CPU_ARM920T |
| 324 | default 5 if CPU_ARM926EJS |
| 325 | default 5 if CPU_ARM946ES |
| 326 | default 6 if CPU_ARM1136 |
| 327 | default 6 if CPU_ARM1176 |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 328 | default 7 if CPU_V7A |
Marek Vasut | b06c954 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 329 | default 7 if CPU_V7M |
Michal Simek | f435938 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 330 | default 7 if CPU_V7R |
Marek Vasut | b06c954 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 331 | default 5 if CPU_PXA |
| 332 | default 4 if CPU_SA1100 |
| 333 | default 8 if ARM64 |
| 334 | |
Tom Rini | 84f9b61 | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 335 | config SYS_CACHE_SHIFT_5 |
| 336 | bool |
| 337 | |
| 338 | config SYS_CACHE_SHIFT_6 |
| 339 | bool |
| 340 | |
| 341 | config SYS_CACHE_SHIFT_7 |
| 342 | bool |
| 343 | |
| 344 | config SYS_CACHELINE_SIZE |
| 345 | int |
| 346 | default 128 if SYS_CACHE_SHIFT_7 |
| 347 | default 64 if SYS_CACHE_SHIFT_6 |
| 348 | default 32 if SYS_CACHE_SHIFT_5 |
| 349 | |
Patrick Delaunay | afc69a9 | 2020-04-10 16:02:02 +0200 | [diff] [blame] | 350 | choice |
| 351 | prompt "Select the ARM data write cache policy" |
| 352 | default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMCYGNUS || \ |
Tom Rini | 9997293 | 2021-02-20 20:05:57 -0500 | [diff] [blame] | 353 | CPU_PXA || RZA1 |
Patrick Delaunay | afc69a9 | 2020-04-10 16:02:02 +0200 | [diff] [blame] | 354 | default SYS_ARM_CACHE_WRITEBACK |
| 355 | |
| 356 | config SYS_ARM_CACHE_WRITEBACK |
| 357 | bool "Write-back (WB)" |
| 358 | help |
| 359 | A write updates the cache only and marks the cache line as dirty. |
| 360 | External memory is updated only when the line is evicted or explicitly |
| 361 | cleaned. |
| 362 | |
| 363 | config SYS_ARM_CACHE_WRITETHROUGH |
| 364 | bool "Write-through (WT)" |
| 365 | help |
| 366 | A write updates both the cache and the external memory system. |
| 367 | This does not mark the cache line as dirty. |
| 368 | |
| 369 | config SYS_ARM_CACHE_WRITEALLOC |
| 370 | bool "Write allocation (WA)" |
| 371 | help |
| 372 | A cache line is allocated on a write miss. This means that executing a |
| 373 | store instruction on the processor might cause a burst read to occur. |
| 374 | There is a linefill to obtain the data for the cache line, before the |
| 375 | write is performed. |
| 376 | endchoice |
| 377 | |
Adam Ford | d36b102 | 2019-08-14 08:29:25 -0500 | [diff] [blame] | 378 | config ARCH_CPU_INIT |
| 379 | bool "Enable ARCH_CPU_INIT" |
| 380 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 381 | Some architectures require a call to arch_cpu_init(). |
Adam Ford | d36b102 | 2019-08-14 08:29:25 -0500 | [diff] [blame] | 382 | Say Y here to enable it |
| 383 | |
Andre Przywara | 7b16925 | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 384 | config SYS_ARCH_TIMER |
| 385 | bool "ARM Generic Timer support" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 386 | depends on CPU_V7A || ARM64 |
Andre Przywara | 7b16925 | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 387 | default y if ARM64 |
| 388 | help |
| 389 | The ARM Generic Timer (aka arch-timer) provides an architected |
| 390 | interface to a timer source on an SoC. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 391 | It is mandatory for ARMv8 implementation and widely available |
Andre Przywara | 7b16925 | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 392 | on ARMv7 systems. |
| 393 | |
Masahiro Yamada | e8ead73 | 2017-04-14 11:10:23 +0900 | [diff] [blame] | 394 | config ARM_SMCCC |
| 395 | bool "Support for ARM SMC Calling Convention (SMCCC)" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 396 | depends on CPU_V7A || ARM64 |
Masahiro Yamada | 836c55d | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 397 | select ARM_PSCI_FW |
Masahiro Yamada | e8ead73 | 2017-04-14 11:10:23 +0900 | [diff] [blame] | 398 | help |
| 399 | Say Y here if you want to enable ARM SMC Calling Convention. |
| 400 | This should be enabled if U-Boot needs to communicate with system |
| 401 | firmware (for example, PSCI) according to SMCCC. |
| 402 | |
Linus Walleij | 800d6fd | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 403 | config SEMIHOSTING |
| 404 | bool "support boot from semihosting" |
| 405 | help |
| 406 | In emulated environments, semihosting is a way for |
| 407 | the hosted environment to call out to the emulator to |
| 408 | retrieve files from the host machine. |
| 409 | |
Tom Rini | 1c640a6 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 410 | config SYS_THUMB_BUILD |
| 411 | bool "Build U-Boot using the Thumb instruction set" |
| 412 | depends on !ARM64 |
| 413 | help |
| 414 | Use this flag to build U-Boot using the Thumb instruction set for |
| 415 | ARM architectures. Thumb instruction set provides better code |
| 416 | density. For ARM architectures that support Thumb2 this flag will |
| 417 | result in Thumb2 code generated by GCC. |
| 418 | |
| 419 | config SPL_SYS_THUMB_BUILD |
| 420 | bool "Build SPL using the Thumb instruction set" |
| 421 | default y if SYS_THUMB_BUILD |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 422 | depends on !ARM64 && SPL |
Tom Rini | 1c640a6 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 423 | help |
| 424 | Use this flag to build SPL using the Thumb instruction set for |
| 425 | ARM architectures. Thumb instruction set provides better code |
| 426 | density. For ARM architectures that support Thumb2 this flag will |
| 427 | result in Thumb2 code generated by GCC. |
| 428 | |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 429 | config TPL_SYS_THUMB_BUILD |
| 430 | bool "Build TPL using the Thumb instruction set" |
| 431 | default y if SYS_THUMB_BUILD |
| 432 | depends on TPL && !ARM64 |
| 433 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 434 | Use this flag to build TPL using the Thumb instruction set for |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 435 | ARM architectures. Thumb instruction set provides better code |
| 436 | density. For ARM architectures that support Thumb2 this flag will |
| 437 | result in Thumb2 code generated by GCC. |
| 438 | |
| 439 | |
Peng Fan | 10ddab4 | 2015-08-19 15:48:57 +0800 | [diff] [blame] | 440 | config SYS_L2CACHE_OFF |
| 441 | bool "L2cache off" |
| 442 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 443 | If SoC does not support L2CACHE or one does not want to enable |
Peng Fan | 10ddab4 | 2015-08-19 15:48:57 +0800 | [diff] [blame] | 444 | L2CACHE, choose this option. |
| 445 | |
Andre Przywara | 48321ba | 2016-05-31 10:45:06 -0700 | [diff] [blame] | 446 | config ENABLE_ARM_SOC_BOOT0_HOOK |
| 447 | bool "prepare BOOT0 header" |
| 448 | help |
| 449 | If the SoC's BOOT0 requires a header area filled with (magic) |
Simon Goldschmidt | 387218a | 2018-02-13 13:18:00 +0100 | [diff] [blame] | 450 | values, then choose this option, and create a file included as |
| 451 | <asm/arch/boot0.h> which contains the required assembler code. |
Andre Przywara | 48321ba | 2016-05-31 10:45:06 -0700 | [diff] [blame] | 452 | |
Andre Przywara | 4330eb9 | 2017-02-16 01:20:21 +0000 | [diff] [blame] | 453 | config ARM_CORTEX_CPU_IS_UP |
| 454 | bool |
| 455 | default n |
| 456 | |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 457 | config USE_ARCH_MEMCPY |
| 458 | bool "Use an assembly optimized implementation of memcpy" |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 459 | default y |
Masahiro Yamada | e55f146 | 2016-12-19 19:31:02 +0900 | [diff] [blame] | 460 | depends on !ARM64 |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 461 | help |
| 462 | Enable the generation of an optimized version of memcpy. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 463 | Such an implementation may be faster under some conditions |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 464 | but may increase the binary size. |
| 465 | |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 466 | config SPL_USE_ARCH_MEMCPY |
Andy Yan | 524f3ce | 2017-06-28 16:27:37 +0800 | [diff] [blame] | 467 | bool "Use an assembly optimized implementation of memcpy for SPL" |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 468 | default y if USE_ARCH_MEMCPY |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 469 | depends on !ARM64 && SPL |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 470 | help |
| 471 | Enable the generation of an optimized version of memcpy. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 472 | Such an implementation may be faster under some conditions |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 473 | but may increase the binary size. |
| 474 | |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 475 | config TPL_USE_ARCH_MEMCPY |
| 476 | bool "Use an assembly optimized implementation of memcpy for TPL" |
| 477 | default y if USE_ARCH_MEMCPY |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 478 | depends on !ARM64 && TPL |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 479 | help |
| 480 | Enable the generation of an optimized version of memcpy. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 481 | Such an implementation may be faster under some conditions |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 482 | but may increase the binary size. |
| 483 | |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 484 | config USE_ARCH_MEMSET |
| 485 | bool "Use an assembly optimized implementation of memset" |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 486 | default y |
| 487 | depends on !ARM64 |
| 488 | help |
| 489 | Enable the generation of an optimized version of memset. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 490 | Such an implementation may be faster under some conditions |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 491 | but may increase the binary size. |
| 492 | |
| 493 | config SPL_USE_ARCH_MEMSET |
Andy Yan | 524f3ce | 2017-06-28 16:27:37 +0800 | [diff] [blame] | 494 | bool "Use an assembly optimized implementation of memset for SPL" |
Tom Rini | 443b516 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 495 | default y if USE_ARCH_MEMSET |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 496 | depends on !ARM64 && SPL |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 497 | help |
| 498 | Enable the generation of an optimized version of memset. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 499 | Such an implementation may be faster under some conditions |
Fabio Estevam | 988f505 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 500 | but may increase the binary size. |
| 501 | |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 502 | config TPL_USE_ARCH_MEMSET |
| 503 | bool "Use an assembly optimized implementation of memset for TPL" |
| 504 | default y if USE_ARCH_MEMSET |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 505 | depends on !ARM64 && TPL |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 506 | help |
| 507 | Enable the generation of an optimized version of memset. |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 508 | Such an implementation may be faster under some conditions |
Kever Yang | 5568860 | 2019-04-02 20:41:20 +0800 | [diff] [blame] | 509 | but may increase the binary size. |
| 510 | |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 511 | config ARM64_SUPPORT_AARCH32 |
| 512 | bool "ARM64 system support AArch32 execution state" |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 513 | depends on ARM64 |
| 514 | default y if !TARGET_THUNDERX_88XX |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 515 | help |
| 516 | This ARM64 system supports AArch32 execution state. |
| 517 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 518 | choice |
| 519 | prompt "Target select" |
Simon Glass | dfd904a | 2015-08-30 19:19:30 -0600 | [diff] [blame] | 520 | default TARGET_HIKEY |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 521 | |
Masahiro Yamada | af908ee | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 522 | config ARCH_AT91 |
| 523 | bool "Atmel AT91" |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 524 | select GPIO_EXTRA_HEADER |
Tom Rini | 4a2b61b | 2018-05-10 07:15:52 -0400 | [diff] [blame] | 525 | select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB |
Gregory CLEMENT | 21cbec7 | 2020-06-05 10:43:36 +0200 | [diff] [blame] | 526 | select SPL_SEPARATE_BSS if SPL |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 527 | |
| 528 | config TARGET_EDB93XX |
| 529 | bool "Support edb93xx" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 530 | select CPU_ARM920T |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 531 | select GPIO_EXTRA_HEADER |
Alexander Graf | 2184ccd | 2018-01-25 12:05:50 +0100 | [diff] [blame] | 532 | select PL010_SERIAL |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 533 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 534 | config TARGET_ASPENITE |
| 535 | bool "Support aspenite" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 536 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 537 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 538 | |
| 539 | config TARGET_GPLUGD |
| 540 | bool "Support gplugd" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 541 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 542 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 543 | |
Masahiro Yamada | e604ef9 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 544 | config ARCH_DAVINCI |
| 545 | bool "TI DaVinci" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 546 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 547 | select GPIO_EXTRA_HEADER |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 548 | select SPL_DM_SPI if SPL |
Simon Glass | d09f377 | 2017-08-04 16:34:43 -0600 | [diff] [blame] | 549 | imply CMD_SAVES |
Masahiro Yamada | e604ef9 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 550 | help |
| 551 | Support for TI's DaVinci platform. |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 552 | |
Trevor Woerner | bb7ab07 | 2020-05-06 08:02:40 -0400 | [diff] [blame] | 553 | config ARCH_KIRKWOOD |
Masahiro Yamada | d757085 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 554 | bool "Marvell Kirkwood" |
Simon Glass | 95d3141 | 2017-01-23 13:31:21 -0700 | [diff] [blame] | 555 | select ARCH_MISC_INIT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 556 | select BOARD_EARLY_INIT_F |
| 557 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 558 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 559 | |
Stefan Roese | 383e0c1 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 560 | config ARCH_MVEBU |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 561 | bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)" |
Stefan Roese | 096de4f | 2015-09-01 11:27:52 +0200 | [diff] [blame] | 562 | select DM |
Stefan Roese | 05b38c1 | 2015-11-19 07:46:15 +0100 | [diff] [blame] | 563 | select DM_ETH |
Stefan Roese | 7f9f8e3 | 2015-09-02 08:41:41 +0200 | [diff] [blame] | 564 | select DM_SERIAL |
Stefan Roese | 49e7d77 | 2015-11-20 13:51:57 +0100 | [diff] [blame] | 565 | select DM_SPI |
| 566 | select DM_SPI_FLASH |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 567 | select GPIO_EXTRA_HEADER |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 568 | select SPL_DM_SPI if SPL |
| 569 | select SPL_DM_SPI_FLASH if SPL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 570 | select OF_CONTROL |
| 571 | select OF_SEPARATE |
Adam Ford | 4e96ff8 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 572 | select SPI |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 573 | imply CMD_DM |
Stefan Roese | 9b1e231 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 574 | |
Trevor Woerner | f995375 | 2020-05-06 08:02:38 -0400 | [diff] [blame] | 575 | config ARCH_ORION5X |
Masahiro Yamada | 04ffbc1 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 576 | bool "Marvell Orion" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 577 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 578 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 579 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 580 | config TARGET_SPEAR300 |
| 581 | bool "Support spear300" |
Simon Glass | 7a99a87 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 582 | select BOARD_EARLY_INIT_F |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 583 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 584 | select GPIO_EXTRA_HEADER |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 585 | select PL011_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 586 | imply CMD_SAVES |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 587 | |
| 588 | config TARGET_SPEAR310 |
| 589 | bool "Support spear310" |
Simon Glass | 7a99a87 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 590 | select BOARD_EARLY_INIT_F |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 591 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 592 | select GPIO_EXTRA_HEADER |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 593 | select PL011_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 594 | imply CMD_SAVES |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 595 | |
| 596 | config TARGET_SPEAR320 |
| 597 | bool "Support spear320" |
Simon Glass | 7a99a87 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 598 | select BOARD_EARLY_INIT_F |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 599 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 600 | select GPIO_EXTRA_HEADER |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 601 | select PL011_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 602 | imply CMD_SAVES |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 603 | |
| 604 | config TARGET_SPEAR600 |
| 605 | bool "Support spear600" |
Simon Glass | 7a99a87 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 606 | select BOARD_EARLY_INIT_F |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 607 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 608 | select GPIO_EXTRA_HEADER |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 609 | select PL011_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 610 | imply CMD_SAVES |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 611 | |
Vikas Manocha | 33913c5 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 612 | config TARGET_STV0991 |
| 613 | bool "Support stv0991" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 614 | select CPU_V7A |
Masahiro Yamada | 0906a82 | 2015-03-31 12:48:01 +0900 | [diff] [blame] | 615 | select DM |
| 616 | select DM_SERIAL |
Vikas Manocha | 8cc062f | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 617 | select DM_SPI |
| 618 | select DM_SPI_FLASH |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 619 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 620 | select PL01X_SERIAL |
Adam Ford | 4e96ff8 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 621 | select SPI |
Vikas Manocha | 8cc062f | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 622 | select SPI_FLASH |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 623 | imply CMD_DM |
Vikas Manocha | 33913c5 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 624 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 625 | config TARGET_X600 |
| 626 | bool "Support x600" |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 627 | select BOARD_LATE_INIT |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 628 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 629 | select GPIO_EXTRA_HEADER |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 630 | select PL011_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 631 | select SUPPORT_SPL |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 632 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 633 | config TARGET_FLEA3 |
| 634 | bool "Support flea3" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 635 | select CPU_ARM1136 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 636 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 637 | |
Masahiro Yamada | ed22cc7 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 638 | config ARCH_BCM283X |
| 639 | bool "Broadcom BCM283X family" |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 640 | select DM |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 641 | select DM_GPIO |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 642 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 643 | select GPIO_EXTRA_HEADER |
Fabian Vogt | f9e3ed5 | 2016-09-26 14:26:51 +0200 | [diff] [blame] | 644 | select OF_CONTROL |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 645 | select PL01X_SERIAL |
Alexander Graf | c8bda54 | 2018-01-29 13:57:20 +0100 | [diff] [blame] | 646 | select SERIAL_SEARCH_ALL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 647 | imply CMD_DM |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 648 | imply FAT_WRITE |
Stephen Warren | dc7ea68 | 2015-02-16 12:16:15 -0700 | [diff] [blame] | 649 | |
Philippe Reynes | 312a3f9 | 2019-01-31 18:57:35 +0100 | [diff] [blame] | 650 | config ARCH_BCM63158 |
| 651 | bool "Broadcom BCM63158 family" |
| 652 | select DM |
| 653 | select OF_CONTROL |
| 654 | imply CMD_DM |
| 655 | |
Philippe Reynes | dfeb2c0 | 2020-01-07 20:14:10 +0100 | [diff] [blame] | 656 | config ARCH_BCM68360 |
| 657 | bool "Broadcom BCM68360 family" |
| 658 | select DM |
| 659 | select OF_CONTROL |
| 660 | imply CMD_DM |
| 661 | |
Philippe Reynes | 697f15e | 2018-10-11 18:31:58 +0200 | [diff] [blame] | 662 | config ARCH_BCM6858 |
| 663 | bool "Broadcom BCM6858 family" |
| 664 | select DM |
| 665 | select OF_CONTROL |
| 666 | imply CMD_DM |
| 667 | |
Thomas Fitzsimmons | 919646d | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 668 | config ARCH_BCMSTB |
| 669 | bool "Broadcom BCM7XXX family" |
| 670 | select CPU_V7A |
| 671 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 672 | select GPIO_EXTRA_HEADER |
Thomas Fitzsimmons | 919646d | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 673 | select OF_CONTROL |
| 674 | select OF_PRIOR_STAGE |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 675 | imply CMD_DM |
Thomas Fitzsimmons | 919646d | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 676 | help |
| 677 | This enables support for Broadcom ARM-based set-top box |
| 678 | chipsets, including the 7445 family of chips. |
| 679 | |
Steve Rae | 1c5f31c | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 680 | config TARGET_BCMCYGNUS |
| 681 | bool "Support bcmcygnus" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 682 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 683 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 684 | imply BCM_SF2_ETH |
| 685 | imply BCM_SF2_ETH_GMAC |
Simon Glass | 027608e | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 686 | imply CMD_HASH |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 687 | imply CRC32_VERIFY |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 688 | imply FAT_WRITE |
Daniel Thompson | a9e2c67 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 689 | imply HASH_VERIFY |
Suji Velupillai | d2f677a | 2017-07-10 14:05:41 -0700 | [diff] [blame] | 690 | imply NETDEVICES |
Steve Rae | 729da8b | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 691 | |
Jon Mason | d59b586 | 2017-03-17 12:12:14 -0400 | [diff] [blame] | 692 | config TARGET_BCMNS2 |
| 693 | bool "Support Broadcom Northstar2" |
| 694 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 695 | select GPIO_EXTRA_HEADER |
Jon Mason | d59b586 | 2017-03-17 12:12:14 -0400 | [diff] [blame] | 696 | help |
| 697 | Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit |
| 698 | ARMv8 Cortex-A57 processors targeting a broad range of networking |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 699 | applications. |
Jon Mason | d59b586 | 2017-03-17 12:12:14 -0400 | [diff] [blame] | 700 | |
Rayagonda Kokatanur | 1d8fa36 | 2020-07-15 22:48:55 +0530 | [diff] [blame] | 701 | config TARGET_BCMNS3 |
| 702 | bool "Support Broadcom NS3" |
| 703 | select ARM64 |
| 704 | select BOARD_LATE_INIT |
| 705 | help |
| 706 | Support for Broadcom Northstar 3 SoCs. NS3 is a octo-core 64-bit |
| 707 | ARMv8 Cortex-A72 processors targeting a broad range of networking |
| 708 | applications. |
| 709 | |
Masahiro Yamada | c54550b | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 710 | config ARCH_EXYNOS |
| 711 | bool "Samsung EXYNOS" |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 712 | select DM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 713 | select DM_GPIO |
Simon Glass | 7bbb7d9 | 2016-11-23 06:34:40 -0700 | [diff] [blame] | 714 | select DM_I2C |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 715 | select DM_KEYBOARD |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 716 | select DM_SERIAL |
| 717 | select DM_SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 718 | select DM_SPI_FLASH |
Adam Ford | 4e96ff8 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 719 | select SPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 720 | select GPIO_EXTRA_HEADER |
Guillaume GARDET | f535732 | 2018-11-20 14:15:13 +0100 | [diff] [blame] | 721 | imply SYS_THUMB_BUILD |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 722 | imply CMD_DM |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 723 | imply FAT_WRITE |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 724 | |
Simon Glass | 96aa072 | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 725 | config ARCH_S5PC1XX |
| 726 | bool "Samsung S5PC1XX" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 727 | select CPU_V7A |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 728 | select DM |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 729 | select DM_GPIO |
Simon Glass | c6aa970 | 2016-11-23 06:34:41 -0700 | [diff] [blame] | 730 | select DM_I2C |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 731 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 732 | select GPIO_EXTRA_HEADER |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 733 | imply CMD_DM |
Simon Glass | 96aa072 | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 734 | |
Masahiro Yamada | 52ece9c | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 735 | config ARCH_HIGHBANK |
| 736 | bool "Calxeda Highbank" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 737 | select CPU_V7A |
Andre Przywara | 8d1069f | 2021-04-12 01:04:51 +0100 | [diff] [blame] | 738 | select PL01X_SERIAL |
| 739 | select DM |
| 740 | select DM_SERIAL |
| 741 | select OF_CONTROL |
| 742 | select OF_BOARD |
| 743 | select CLK |
| 744 | select CLK_CCF |
| 745 | select AHCI |
Andre Przywara | 7352fb9 | 2021-04-12 01:04:52 +0100 | [diff] [blame] | 746 | select DM_ETH |
Andre Przywara | 126d9a6 | 2021-04-12 01:04:54 +0100 | [diff] [blame] | 747 | select PHYS_64BIT |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 748 | |
Masahiro Yamada | cad4416 | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 749 | config ARCH_INTEGRATOR |
| 750 | bool "ARM Ltd. Integrator family" |
Linus Walleij | 616d9a0 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 751 | select DM |
| 752 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 753 | select GPIO_EXTRA_HEADER |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 754 | select PL01X_SERIAL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 755 | imply CMD_DM |
Masahiro Yamada | cad4416 | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 756 | |
Robert Marko | e7a34f1 | 2020-07-06 10:37:54 +0200 | [diff] [blame] | 757 | config ARCH_IPQ40XX |
| 758 | bool "Qualcomm IPQ40xx SoCs" |
| 759 | select CPU_V7A |
| 760 | select DM |
| 761 | select DM_GPIO |
| 762 | select DM_SERIAL |
Robert Marko | 42c5ee8 | 2020-09-10 16:00:03 +0200 | [diff] [blame] | 763 | select DM_RESET |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 764 | select GPIO_EXTRA_HEADER |
Robert Marko | 0b7d950 | 2020-09-10 16:00:01 +0200 | [diff] [blame] | 765 | select MSM_SMEM |
Robert Marko | e7a34f1 | 2020-07-06 10:37:54 +0200 | [diff] [blame] | 766 | select PINCTRL |
| 767 | select CLK |
Robert Marko | 0b7d950 | 2020-09-10 16:00:01 +0200 | [diff] [blame] | 768 | select SMEM |
Robert Marko | e7a34f1 | 2020-07-06 10:37:54 +0200 | [diff] [blame] | 769 | select OF_CONTROL |
| 770 | imply CMD_DM |
| 771 | |
Masahiro Yamada | 32013fb | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 772 | config ARCH_KEYSTONE |
| 773 | bool "TI Keystone" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 774 | select CMD_POWEROFF |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 775 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 776 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | 6e0971b | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 777 | select SUPPORT_SPL |
Andre Przywara | 7b16925 | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 778 | select SYS_ARCH_TIMER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 779 | select SYS_THUMB_BUILD |
Tom Rini | c20bb73 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 780 | imply CMD_MTDPARTS |
Simon Glass | d09f377 | 2017-08-04 16:34:43 -0600 | [diff] [blame] | 781 | imply CMD_SAVES |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 782 | imply FIT |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 783 | |
Lokesh Vutla | 9bdec00 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 784 | config ARCH_K3 |
| 785 | bool "Texas Instruments' K3 Architecture" |
| 786 | select SPL |
| 787 | select SUPPORT_SPL |
| 788 | select FIT |
| 789 | |
Masahiro Yamada | 6e1288c | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 790 | config ARCH_OMAP2PLUS |
| 791 | bool "TI OMAP2+" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 792 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 793 | select GPIO_EXTRA_HEADER |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 794 | select SPL_BOARD_INIT if SPL |
Tom Rini | c37e0cf | 2017-09-17 11:44:49 -0400 | [diff] [blame] | 795 | select SPL_STACK_R if SPL |
Masahiro Yamada | 6e1288c | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 796 | select SUPPORT_SPL |
Dario Binacchi | d1cb3f6 | 2020-12-30 00:06:29 +0100 | [diff] [blame] | 797 | imply TI_SYSC if DM && OF_CONTROL |
Masahiro Yamada | 6e1288c | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 798 | imply FIT |
| 799 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 800 | config ARCH_MESON |
| 801 | bool "Amlogic Meson" |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 802 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | 9afc6c5 | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 803 | imply DISTRO_DEFAULTS |
Heinrich Schuchardt | 966caaf | 2020-04-05 12:20:23 +0200 | [diff] [blame] | 804 | imply DM_RNG |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 805 | help |
| 806 | Support for the Meson SoC family developed by Amlogic Inc., |
| 807 | targeted at media players and tablet computers. We currently |
| 808 | support the S905 (GXBaby) 64-bit SoC. |
| 809 | |
developer | f4a079c | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 810 | config ARCH_MEDIATEK |
| 811 | bool "MediaTek SoCs" |
developer | f4a079c | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 812 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 813 | select GPIO_EXTRA_HEADER |
developer | f4a079c | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 814 | select OF_CONTROL |
| 815 | select SPL_DM if SPL |
| 816 | select SPL_LIBCOMMON_SUPPORT if SPL |
| 817 | select SPL_LIBGENERIC_SUPPORT if SPL |
| 818 | select SPL_OF_CONTROL if SPL |
| 819 | select SUPPORT_SPL |
| 820 | help |
| 821 | Support for the MediaTek SoCs family developed by MediaTek Inc. |
| 822 | Please refer to doc/README.mediatek for more information. |
| 823 | |
Vladimir Zapolskiy | 31d0e96 | 2018-09-17 21:43:03 +0300 | [diff] [blame] | 824 | config ARCH_LPC32XX |
| 825 | bool "NXP LPC32xx platform" |
| 826 | select CPU_ARM926EJS |
| 827 | select DM |
| 828 | select DM_GPIO |
| 829 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 830 | select GPIO_EXTRA_HEADER |
Vladimir Zapolskiy | 31d0e96 | 2018-09-17 21:43:03 +0300 | [diff] [blame] | 831 | select SPL_DM if SPL |
| 832 | select SUPPORT_SPL |
| 833 | imply CMD_DM |
| 834 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 835 | config ARCH_IMX8 |
| 836 | bool "NXP i.MX8 platform" |
| 837 | select ARM64 |
| 838 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 839 | select GPIO_EXTRA_HEADER |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 840 | select OF_CONTROL |
Ye Li | 97b4165 | 2019-07-12 09:33:52 +0000 | [diff] [blame] | 841 | select ENABLE_ARM_SOC_BOOT0_HOOK |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 842 | |
Peng Fan | 39945c1 | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 843 | config ARCH_IMX8M |
Peng Fan | 6629488 | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 844 | bool "NXP i.MX8M platform" |
| 845 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 846 | select GPIO_EXTRA_HEADER |
Aymen Sghaier | 4da2569 | 2021-03-25 17:30:25 +0800 | [diff] [blame] | 847 | select SYS_FSL_HAS_SEC if IMX_HAB |
| 848 | select SYS_FSL_SEC_COMPAT_4 |
| 849 | select SYS_FSL_SEC_LE |
Peng Fan | 6629488 | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 850 | select DM |
| 851 | select SUPPORT_SPL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 852 | imply CMD_DM |
Peng Fan | 6629488 | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 853 | |
Giulio Benetti | 9dba262 | 2020-01-10 15:51:47 +0100 | [diff] [blame] | 854 | config ARCH_IMXRT |
| 855 | bool "NXP i.MXRT platform" |
| 856 | select CPU_V7M |
| 857 | select DM |
| 858 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 859 | select GPIO_EXTRA_HEADER |
Giulio Benetti | 9dba262 | 2020-01-10 15:51:47 +0100 | [diff] [blame] | 860 | select SUPPORT_SPL |
| 861 | imply CMD_DM |
| 862 | |
Stefan Agner | 081ea1f | 2018-02-06 09:44:34 +0100 | [diff] [blame] | 863 | config ARCH_MX23 |
| 864 | bool "NXP i.MX23 family" |
| 865 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 866 | select GPIO_EXTRA_HEADER |
Stefan Agner | 081ea1f | 2018-02-06 09:44:34 +0100 | [diff] [blame] | 867 | select PL011_SERIAL |
| 868 | select SUPPORT_SPL |
| 869 | |
Fabio Estevam | 52b2f45 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 870 | config ARCH_MX25 |
| 871 | bool "NXP MX25" |
| 872 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 873 | select GPIO_EXTRA_HEADER |
Adam Ford | b413c45 | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 874 | imply MXC_GPIO |
Fabio Estevam | 52b2f45 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 875 | |
Stefan Agner | 663a323 | 2018-02-06 09:44:35 +0100 | [diff] [blame] | 876 | config ARCH_MX28 |
| 877 | bool "NXP i.MX28 family" |
| 878 | select CPU_ARM926EJS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 879 | select GPIO_EXTRA_HEADER |
Stefan Agner | 663a323 | 2018-02-06 09:44:35 +0100 | [diff] [blame] | 880 | select PL011_SERIAL |
| 881 | select SUPPORT_SPL |
| 882 | |
Magnus Lilja | c74f70f | 2018-05-11 14:06:54 +0200 | [diff] [blame] | 883 | config ARCH_MX31 |
| 884 | bool "NXP i.MX31 family" |
| 885 | select CPU_ARM1136 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 886 | select GPIO_EXTRA_HEADER |
Magnus Lilja | c74f70f | 2018-05-11 14:06:54 +0200 | [diff] [blame] | 887 | |
Peng Fan | 2c7b170 | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 888 | config ARCH_MX7ULP |
Michal Simek | f751ff5 | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 889 | bool "NXP MX7ULP" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 890 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 891 | select GPIO_EXTRA_HEADER |
Franck LENORMAND | 4fde0a1 | 2021-03-25 17:30:23 +0800 | [diff] [blame] | 892 | select SYS_FSL_HAS_SEC if IMX_HAB |
| 893 | select SYS_FSL_SEC_COMPAT_4 |
| 894 | select SYS_FSL_SEC_LE |
Peng Fan | 2c7b170 | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 895 | select ROM_UNIFIED_SECTIONS |
Adam Ford | b413c45 | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 896 | imply MXC_GPIO |
Tom Rini | 4f834a4 | 2019-12-03 09:28:03 -0500 | [diff] [blame] | 897 | imply SYS_THUMB_BUILD |
Peng Fan | 2c7b170 | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 898 | |
Adrian Alonso | 9881077 | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 899 | config ARCH_MX7 |
| 900 | bool "Freescale MX7" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 901 | select ARCH_MISC_INIT |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 902 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 903 | select GPIO_EXTRA_HEADER |
Stefano Babic | f8b509b | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 904 | select SYS_FSL_HAS_SEC if IMX_HAB |
York Sun | 92c36e2 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 905 | select SYS_FSL_SEC_COMPAT_4 |
York Sun | fa419942 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 906 | select SYS_FSL_SEC_LE |
Marek Vasut | 42b24b4 | 2020-05-22 01:13:00 +0200 | [diff] [blame] | 907 | imply BOARD_EARLY_INIT_F |
Adam Ford | b413c45 | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 908 | imply MXC_GPIO |
Tom Rini | 4f834a4 | 2019-12-03 09:28:03 -0500 | [diff] [blame] | 909 | imply SYS_THUMB_BUILD |
Adrian Alonso | 9881077 | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 910 | |
Boris BREZILLON | 51e8266 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 911 | config ARCH_MX6 |
| 912 | bool "Freescale MX6" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 913 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 914 | select GPIO_EXTRA_HEADER |
Heinrich Schuchardt | cdd0c85 | 2020-06-26 19:57:55 +0200 | [diff] [blame] | 915 | select SYS_FSL_HAS_SEC |
York Sun | 92c36e2 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 916 | select SYS_FSL_SEC_COMPAT_4 |
York Sun | fa419942 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 917 | select SYS_FSL_SEC_LE |
Adam Ford | b413c45 | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 918 | imply MXC_GPIO |
Tom Rini | 4f834a4 | 2019-12-03 09:28:03 -0500 | [diff] [blame] | 919 | imply SYS_THUMB_BUILD |
Boris BREZILLON | 51e8266 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 920 | |
Philipp Tomsich | 2d6a0cc | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 921 | if ARCH_MX6 |
| 922 | config SPL_LDSCRIPT |
Michal Simek | f751ff5 | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 923 | default "arch/arm/mach-omap2/u-boot-spl.lds" |
Philipp Tomsich | 2d6a0cc | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 924 | endif |
| 925 | |
Andrej Rosano | 1ac4bca | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 926 | config ARCH_MX5 |
| 927 | bool "Freescale MX5" |
Simon Glass | 7a99a87 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 928 | select BOARD_EARLY_INIT_F |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 929 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 930 | select GPIO_EXTRA_HEADER |
Adam Ford | b413c45 | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 931 | imply MXC_GPIO |
Andrej Rosano | 1ac4bca | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 932 | |
Stefan Bosch | 6563ea2 | 2020-07-10 19:07:26 +0200 | [diff] [blame] | 933 | config ARCH_NEXELL |
| 934 | bool "Nexell S5P4418/S5P6818 SoC" |
| 935 | select ENABLE_ARM_SOC_BOOT0_HOOK |
| 936 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 937 | select GPIO_EXTRA_HEADER |
Stefan Bosch | 6563ea2 | 2020-07-10 19:07:26 +0200 | [diff] [blame] | 938 | |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 939 | config ARCH_OWL |
| 940 | bool "Actions Semi OWL SoCs" |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 941 | select DM |
Amit Singh Tomar | eda3067 | 2020-05-09 19:55:14 +0530 | [diff] [blame] | 942 | select DM_ETH |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 943 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 944 | select GPIO_EXTRA_HEADER |
Amit Singh Tomar | cae8193 | 2020-04-19 19:28:25 +0530 | [diff] [blame] | 945 | select OWL_SERIAL |
Amit Singh Tomar | 8821be4 | 2020-04-19 19:28:30 +0530 | [diff] [blame] | 946 | select CLK |
| 947 | select CLK_OWL |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 948 | select OF_CONTROL |
Tom Rini | a38d0ac | 2020-05-01 10:52:11 -0400 | [diff] [blame] | 949 | select SYS_RELOC_GD_ENV_ADDR |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 950 | imply CMD_DM |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 951 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 952 | config ARCH_QEMU |
| 953 | bool "QEMU Virtual Platform" |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 954 | select DM |
| 955 | select DM_SERIAL |
| 956 | select OF_CONTROL |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 957 | select PL01X_SERIAL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 958 | imply CMD_DM |
Heinrich Schuchardt | 2ebc22c | 2020-09-19 07:55:35 +0200 | [diff] [blame] | 959 | imply DM_RNG |
AKASHI Takahiro | 501cc84 | 2018-09-14 17:06:54 +0900 | [diff] [blame] | 960 | imply DM_RTC |
| 961 | imply RTC_PL031 |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 962 | |
Nobuhiro Iwamatsu | 7c11273 | 2015-10-10 05:58:28 +0900 | [diff] [blame] | 963 | config ARCH_RMOBILE |
Masahiro Yamada | c9c54e2 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 964 | bool "Renesas ARM SoCs" |
Nobuhiro Iwamatsu | 7c11273 | 2015-10-10 05:58:28 +0900 | [diff] [blame] | 965 | select DM |
| 966 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 967 | select GPIO_EXTRA_HEADER |
Biju Das | 055763a | 2020-09-22 13:06:49 +0100 | [diff] [blame] | 968 | imply BOARD_EARLY_INIT_F |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 969 | imply CMD_DM |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 970 | imply FAT_WRITE |
Tom Rini | 1c640a6 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 971 | imply SYS_THUMB_BUILD |
Marek Vasut | b90dc69 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 972 | imply ARCH_MISC_INIT if DISPLAY_CPUINFO |
Nikita Kiryanov | f5cab0f | 2014-09-07 18:59:29 +0300 | [diff] [blame] | 973 | |
Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 974 | config ARCH_SNAPDRAGON |
| 975 | bool "Qualcomm Snapdragon SoCs" |
| 976 | select ARM64 |
| 977 | select DM |
| 978 | select DM_GPIO |
| 979 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 980 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 981 | select MSM_SMEM |
Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 982 | select OF_CONTROL |
| 983 | select OF_SEPARATE |
Ramon Fried | 4b4bd49 | 2018-07-02 02:57:56 +0300 | [diff] [blame] | 984 | select SMEM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 985 | select SPMI |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 986 | imply CMD_DM |
Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 987 | |
Masahiro Yamada | 144a3e0 | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 988 | config ARCH_SOCFPGA |
| 989 | bool "Altera SOCFPGA family" |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 990 | select ARCH_EARLY_INIT_R |
Marek Vasut | 04c8f4f | 2018-08-13 20:06:46 +0200 | [diff] [blame] | 991 | select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10 |
Siew Chin Lim | 8a71416 | 2021-03-01 20:04:10 +0800 | [diff] [blame] | 992 | select ARM64 if TARGET_SOCFPGA_SOC64 |
Ley Foon Tan | 9c407b5 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 993 | select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Masahiro Yamada | e200554 | 2015-03-31 12:47:59 +0900 | [diff] [blame] | 994 | select DM |
Marek Vasut | 57f03d2 | 2018-05-11 22:26:35 +0200 | [diff] [blame] | 995 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 996 | select GPIO_EXTRA_HEADER |
Ley Foon Tan | 9c407b5 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 997 | select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 998 | select OF_CONTROL |
Ley Foon Tan | 9ae7b0a | 2018-07-13 13:40:23 +0800 | [diff] [blame] | 999 | select SPL_DM_RESET if DM_RESET |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1000 | select SPL_DM_SERIAL |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 1001 | select SPL_LIBCOMMON_SUPPORT |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 1002 | select SPL_LIBGENERIC_SUPPORT |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 1003 | select SPL_NAND_SUPPORT if SPL_NAND_DENALI |
| 1004 | select SPL_OF_CONTROL |
Siew Chin Lim | 8a71416 | 2021-03-01 20:04:10 +0800 | [diff] [blame] | 1005 | select SPL_SEPARATE_BSS if TARGET_SOCFPGA_SOC64 |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 1006 | select SPL_SERIAL_SUPPORT |
Simon Goldschmidt | fc82466 | 2019-07-15 21:47:55 +0200 | [diff] [blame] | 1007 | select SPL_SYSRESET |
Marek Vasut | 014f0ab | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 1008 | select SPL_WATCHDOG_SUPPORT |
| 1009 | select SUPPORT_SPL |
Marek Vasut | 57f03d2 | 2018-05-11 22:26:35 +0200 | [diff] [blame] | 1010 | select SYS_NS16550 |
Ley Foon Tan | 9c407b5 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 1011 | select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Simon Goldschmidt | fc82466 | 2019-07-15 21:47:55 +0200 | [diff] [blame] | 1012 | select SYSRESET |
| 1013 | select SYSRESET_SOCFPGA if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Siew Chin Lim | 8a71416 | 2021-03-01 20:04:10 +0800 | [diff] [blame] | 1014 | select SYSRESET_SOCFPGA_SOC64 if TARGET_SOCFPGA_SOC64 |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1015 | imply CMD_DM |
Tom Rini | c20bb73 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 1016 | imply CMD_MTDPARTS |
Daniel Thompson | a9e2c67 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 1017 | imply CRC32_VERIFY |
Simon Goldschmidt | a434730 | 2018-02-13 06:34:14 +0100 | [diff] [blame] | 1018 | imply DM_SPI |
| 1019 | imply DM_SPI_FLASH |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1020 | imply FAT_WRITE |
Simon Goldschmidt | b1c4269 | 2019-04-09 21:02:05 +0200 | [diff] [blame] | 1021 | imply SPL |
| 1022 | imply SPL_DM |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 1023 | imply SPL_DM_SPI |
| 1024 | imply SPL_DM_SPI_FLASH |
Simon Goldschmidt | c26195d | 2018-11-29 21:17:08 +0100 | [diff] [blame] | 1025 | imply SPL_LIBDISK_SUPPORT |
| 1026 | imply SPL_MMC_SUPPORT |
Simon Goldschmidt | a434730 | 2018-02-13 06:34:14 +0100 | [diff] [blame] | 1027 | imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION |
Simon Goldschmidt | 3b551bc | 2018-10-30 20:21:49 +0100 | [diff] [blame] | 1028 | imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE |
Simon Goldschmidt | c26195d | 2018-11-29 21:17:08 +0100 | [diff] [blame] | 1029 | imply SPL_SPI_FLASH_SUPPORT |
| 1030 | imply SPL_SPI_SUPPORT |
Dinh Nguyen | 41e3296 | 2019-04-23 16:55:06 -0500 | [diff] [blame] | 1031 | imply L2X0_CACHE |
Marek Vasut | 6929547 | 2014-12-30 18:16:08 +0100 | [diff] [blame] | 1032 | |
Ian Campbell | d8e69e0 | 2014-10-24 21:20:44 +0100 | [diff] [blame] | 1033 | config ARCH_SUNXI |
| 1034 | bool "Support sunxi (Allwinner) SoCs" |
Masahiro Yamada | 87247af | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 1035 | select BINMAN |
Hans de Goede | c951167 | 2016-04-03 09:41:44 +0200 | [diff] [blame] | 1036 | select CMD_GPIO |
Hans de Goede | 2c52640 | 2016-05-15 13:51:58 +0200 | [diff] [blame] | 1037 | select CMD_MMC if MMC |
Yann E. MORIN | e28217d | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 1038 | select CMD_USB if DISTRO_DEFAULTS |
Jagan Teki | 80d261b | 2019-01-11 16:40:20 +0530 | [diff] [blame] | 1039 | select CLK |
Hans de Goede | 0391488 | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 1040 | select DM |
Tom Rini | 10e8717 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 1041 | select DM_ETH |
Hans de Goede | c8d4347 | 2015-12-21 20:22:00 +0100 | [diff] [blame] | 1042 | select DM_GPIO |
| 1043 | select DM_KEYBOARD |
Jagan Teki | c498154 | 2019-04-12 16:48:25 +0530 | [diff] [blame] | 1044 | select DM_MMC if MMC |
| 1045 | select DM_SCSI if SCSI |
Tom Rini | 10e8717 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 1046 | select DM_SERIAL |
Yann E. MORIN | e28217d | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 1047 | select DM_USB if DISTRO_DEFAULTS |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1048 | select GPIO_EXTRA_HEADER |
Hans de Goede | 48a234a | 2016-03-22 22:51:52 +0100 | [diff] [blame] | 1049 | select OF_BOARD_SETUP |
Hans de Goede | 0391488 | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 1050 | select OF_CONTROL |
| 1051 | select OF_SEPARATE |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 1052 | select SPECIFY_CONSOLE_INDEX |
Tom Rini | dac518f | 2017-06-21 07:54:46 -0400 | [diff] [blame] | 1053 | select SPL_STACK_R if SPL |
| 1054 | select SPL_SYS_MALLOC_SIMPLE if SPL |
Tom Rini | 1c640a6 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 1055 | select SPL_SYS_THUMB_BUILD if !ARM64 |
Andre Przywara | 9d3bab9 | 2019-06-23 15:09:46 +0100 | [diff] [blame] | 1056 | select SUNXI_GPIO |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1057 | select SYS_NS16550 |
Maxime Ripard | 2ba0f21 | 2017-10-19 11:49:29 +0200 | [diff] [blame] | 1058 | select SYS_THUMB_BUILD if !ARM64 |
Yann E. MORIN | e28217d | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 1059 | select USB if DISTRO_DEFAULTS |
Yann E. MORIN | e28217d | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 1060 | select USB_KEYBOARD if DISTRO_DEFAULTS |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1061 | select USB_STORAGE if DISTRO_DEFAULTS |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 1062 | select SPL_USE_TINY_PRINTF |
Andre Przywara | 3130df5 | 2020-02-20 17:51:14 +0000 | [diff] [blame] | 1063 | select USE_PREBOOT |
| 1064 | select SYS_RELOC_GD_ENV_ADDR |
Andy Shevchenko | 1facc0f | 2020-12-08 17:45:31 +0200 | [diff] [blame] | 1065 | imply BOARD_LATE_INIT |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1066 | imply CMD_DM |
Maxime Ripard | bc7db01 | 2017-08-24 11:54:03 +0200 | [diff] [blame] | 1067 | imply CMD_GPT |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 1068 | imply CMD_UBI if MTD_RAW_NAND |
Masahiro Yamada | 9afc6c5 | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 1069 | imply DISTRO_DEFAULTS |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1070 | imply FAT_WRITE |
Marek Vasut | 88e3a84 | 2018-10-10 18:27:35 +0200 | [diff] [blame] | 1071 | imply FIT |
Andre Heider | 1179074 | 2018-01-16 09:44:22 +0100 | [diff] [blame] | 1072 | imply OF_LIBFDT_OVERLAY |
Masahiro Yamada | 8e5e1ea | 2017-04-28 19:42:19 +0900 | [diff] [blame] | 1073 | imply PRE_CONSOLE_BUFFER |
| 1074 | imply SPL_GPIO_SUPPORT |
| 1075 | imply SPL_LIBCOMMON_SUPPORT |
Masahiro Yamada | 8e5e1ea | 2017-04-28 19:42:19 +0900 | [diff] [blame] | 1076 | imply SPL_LIBGENERIC_SUPPORT |
Masahiro Yamada | 0a78017 | 2017-05-09 20:31:39 +0900 | [diff] [blame] | 1077 | imply SPL_MMC_SUPPORT if MMC |
Masahiro Yamada | 8e5e1ea | 2017-04-28 19:42:19 +0900 | [diff] [blame] | 1078 | imply SPL_POWER_SUPPORT |
| 1079 | imply SPL_SERIAL_SUPPORT |
Maxime Ripard | abb17b4 | 2017-09-07 10:46:24 +0200 | [diff] [blame] | 1080 | imply USB_GADGET |
Chen-Yu Tsai | 848c263 | 2014-10-22 16:47:44 +0800 | [diff] [blame] | 1081 | |
Stephan Gerhold | 4f1170f | 2020-01-04 18:45:17 +0100 | [diff] [blame] | 1082 | config ARCH_U8500 |
| 1083 | bool "ST-Ericsson U8500 Series" |
| 1084 | select CPU_V7A |
| 1085 | select DM |
| 1086 | select DM_GPIO |
| 1087 | select DM_MMC if MMC |
| 1088 | select DM_SERIAL |
| 1089 | select DM_USB if USB |
| 1090 | select OF_CONTROL |
| 1091 | select SYSRESET |
| 1092 | select TIMER |
| 1093 | imply ARM_PL180_MMCI |
| 1094 | imply DM_RTC |
| 1095 | imply NOMADIK_MTU_TIMER |
| 1096 | imply PL01X_SERIAL |
| 1097 | imply RTC_PL031 |
| 1098 | imply SYSRESET_SYSCON |
| 1099 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1100 | config ARCH_VERSAL |
| 1101 | bool "Support Xilinx Versal Platform" |
| 1102 | select ARM64 |
| 1103 | select CLK |
| 1104 | select DM |
Michal Simek | 0609abd | 2019-01-15 08:52:46 +0100 | [diff] [blame] | 1105 | select DM_ETH if NET |
| 1106 | select DM_MMC if MMC |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1107 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1108 | select GPIO_EXTRA_HEADER |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1109 | select OF_CONTROL |
Siva Durga Prasad Paladugu | 37c2ff8 | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 1110 | imply BOARD_LATE_INIT |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 1111 | imply ENV_VARS_UBOOT_RUNTIME_CONFIG |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1112 | |
Stefan Agner | d53c0a4 | 2017-03-13 18:41:36 -0700 | [diff] [blame] | 1113 | config ARCH_VF610 |
| 1114 | bool "Freescale Vybrid" |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1115 | select CPU_V7A |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1116 | select GPIO_EXTRA_HEADER |
York Sun | 097e360 | 2016-12-28 08:43:42 -0800 | [diff] [blame] | 1117 | select SYS_FSL_ERRATUM_ESDHC111 |
Tom Rini | c20bb73 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 1118 | imply CMD_MTDPARTS |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 1119 | imply MTD_RAW_NAND |
Sanchayan Maity | cc4d78f | 2015-04-15 16:24:26 +0530 | [diff] [blame] | 1120 | |
Masahiro Yamada | 8204bd1 | 2015-03-16 16:43:24 +0900 | [diff] [blame] | 1121 | config ARCH_ZYNQ |
Michal Simek | 8caedde | 2017-11-23 08:25:41 +0100 | [diff] [blame] | 1122 | bool "Xilinx Zynq based platform" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1123 | select CLK |
| 1124 | select CLK_ZYNQ |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1125 | select CPU_V7A |
Masahiro Yamada | 2df07d4 | 2015-03-31 12:47:55 +0900 | [diff] [blame] | 1126 | select DM |
Michal Simek | 6d35f3f | 2018-01-09 14:49:28 +0100 | [diff] [blame] | 1127 | select DM_ETH if NET |
Michal Simek | 6d35f3f | 2018-01-09 14:49:28 +0100 | [diff] [blame] | 1128 | select DM_MMC if MMC |
Simon Glass | 23d9b62 | 2015-10-17 19:41:27 -0600 | [diff] [blame] | 1129 | select DM_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1130 | select DM_SPI |
Jagan Teki | 0bd03a5 | 2015-06-27 00:51:32 +0530 | [diff] [blame] | 1131 | select DM_SPI_FLASH |
Simon Glass | 476e63f | 2016-07-05 17:10:14 -0600 | [diff] [blame] | 1132 | select DM_USB if USB |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1133 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1134 | select OF_CONTROL |
Adam Ford | 4e96ff8 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 1135 | select SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1136 | select SPL_BOARD_INIT if SPL |
| 1137 | select SPL_CLK if SPL |
| 1138 | select SPL_DM if SPL |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 1139 | select SPL_DM_SPI if SPL |
| 1140 | select SPL_DM_SPI_FLASH if SPL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1141 | select SPL_OF_CONTROL if SPL |
| 1142 | select SPL_SEPARATE_BSS if SPL |
| 1143 | select SUPPORT_SPL |
| 1144 | imply ARCH_EARLY_INIT_R |
Michal Simek | 37ad270 | 2018-08-20 08:24:14 +0200 | [diff] [blame] | 1145 | imply BOARD_LATE_INIT |
Simon Glass | 04ac6f1 | 2017-04-26 22:28:02 -0600 | [diff] [blame] | 1146 | imply CMD_CLK |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1147 | imply CMD_DM |
Simon Glass | c6567fa | 2017-08-04 16:34:48 -0600 | [diff] [blame] | 1148 | imply CMD_SPL |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 1149 | imply ENV_VARS_UBOOT_RUNTIME_CONFIG |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1150 | imply FAT_WRITE |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1151 | |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1152 | config ARCH_ZYNQMP_R5 |
| 1153 | bool "Xilinx ZynqMP R5 based platform" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1154 | select CLK |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1155 | select CPU_V7R |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1156 | select DM |
Michal Simek | 5f3c338 | 2019-01-15 09:06:46 +0100 | [diff] [blame] | 1157 | select DM_ETH if NET |
| 1158 | select DM_MMC if MMC |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1159 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1160 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1161 | select OF_CONTROL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1162 | imply CMD_DM |
Jean-Jacques Hiblot | 44aaec7 | 2018-11-29 10:52:42 +0100 | [diff] [blame] | 1163 | imply DM_USB_GADGET |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1164 | |
Siva Durga Prasad Paladugu | 650fb40 | 2015-06-10 15:50:57 +0530 | [diff] [blame] | 1165 | config ARCH_ZYNQMP |
Michal Simek | 8caedde | 2017-11-23 08:25:41 +0100 | [diff] [blame] | 1166 | bool "Xilinx ZynqMP based platform" |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 1167 | select ARM64 |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1168 | select CLK |
Michal Simek | 25b8371 | 2015-10-17 19:41:25 -0600 | [diff] [blame] | 1169 | select DM |
Michal Simek | 73f2d0f | 2019-01-15 08:52:51 +0100 | [diff] [blame] | 1170 | select DM_ETH if NET |
Ibai Erkiaga | d47ed6f | 2019-09-27 12:51:41 +0200 | [diff] [blame] | 1171 | select DM_MAILBOX |
Michal Simek | 73f2d0f | 2019-01-15 08:52:51 +0100 | [diff] [blame] | 1172 | select DM_MMC if MMC |
Michal Simek | 25b8371 | 2015-10-17 19:41:25 -0600 | [diff] [blame] | 1173 | select DM_SERIAL |
Michal Simek | 968388d | 2019-01-15 10:50:39 +0100 | [diff] [blame] | 1174 | select DM_SPI if SPI |
| 1175 | select DM_SPI_FLASH if DM_SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1176 | select DM_USB if USB |
Ibai Erkiaga | 2d9b95b | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 1177 | select FIRMWARE |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1178 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1179 | select OF_CONTROL |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 1180 | select SPL_BOARD_INIT if SPL |
Michal Simek | fd1d766 | 2017-12-01 15:13:36 +0100 | [diff] [blame] | 1181 | select SPL_CLK if SPL |
Michal Simek | 40280f1 | 2020-08-19 10:30:39 +0200 | [diff] [blame] | 1182 | select SPL_DM if SPL |
| 1183 | select SPL_DM_SPI if SPI && SPL_DM |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 1184 | select SPL_DM_SPI_FLASH if SPL_DM_SPI |
Ibai Erkiaga | 2d9b95b | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 1185 | select SPL_DM_MAILBOX if SPL |
| 1186 | select SPL_FIRMWARE if SPL |
Michal Simek | 88674da | 2018-11-23 09:01:44 +0100 | [diff] [blame] | 1187 | select SPL_SEPARATE_BSS if SPL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1188 | select SUPPORT_SPL |
Ibai Erkiaga | d47ed6f | 2019-09-27 12:51:41 +0200 | [diff] [blame] | 1189 | select ZYNQMP_IPI |
Michal Simek | 37ad270 | 2018-08-20 08:24:14 +0200 | [diff] [blame] | 1190 | imply BOARD_LATE_INIT |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1191 | imply CMD_DM |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 1192 | imply ENV_VARS_UBOOT_RUNTIME_CONFIG |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1193 | imply FAT_WRITE |
Michal Simek | a8ddd6a | 2018-10-04 14:26:13 +0200 | [diff] [blame] | 1194 | imply MP |
Jean-Jacques Hiblot | 44aaec7 | 2018-11-29 10:52:42 +0100 | [diff] [blame] | 1195 | imply DM_USB_GADGET |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 1196 | |
Trevor Woerner | 513f640 | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 1197 | config ARCH_TEGRA |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 1198 | bool "NVIDIA Tegra" |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1199 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | 9afc6c5 | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 1200 | imply DISTRO_DEFAULTS |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1201 | imply FAT_WRITE |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1202 | |
Linus Walleij | 800d6fd | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 1203 | config TARGET_VEXPRESS64_AEMV8A |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1204 | bool "Support vexpress_aemv8a" |
Masahiro Yamada | 0d46c34 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 1205 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1206 | select GPIO_EXTRA_HEADER |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1207 | select PL01X_SERIAL |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1208 | |
Linus Walleij | 800d6fd | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 1209 | config TARGET_VEXPRESS64_BASE_FVP |
| 1210 | bool "Support Versatile Express ARMv8a FVP BASE model" |
| 1211 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1212 | select GPIO_EXTRA_HEADER |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1213 | select PL01X_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1214 | select SEMIHOSTING |
Linus Walleij | 800d6fd | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 1215 | |
Linus Walleij | c582250 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 1216 | config TARGET_VEXPRESS64_JUNO |
| 1217 | bool "Support Versatile Express Juno Development Platform" |
| 1218 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1219 | select GPIO_EXTRA_HEADER |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1220 | select PL01X_SERIAL |
Andre Przywara | 94504f4 | 2020-04-27 19:18:01 +0100 | [diff] [blame] | 1221 | select DM |
| 1222 | select OF_CONTROL |
| 1223 | select OF_BOARD |
| 1224 | select CLK |
| 1225 | select DM_SERIAL |
Andre Przywara | 651c91b | 2020-04-27 19:18:02 +0100 | [diff] [blame] | 1226 | select ARM_PSCI_FW |
| 1227 | select PSCI_RESET |
Andre Przywara | d263e76 | 2020-06-11 12:03:18 +0100 | [diff] [blame] | 1228 | select DM_ETH |
Andre Przywara | e3e8121 | 2020-04-27 19:18:03 +0100 | [diff] [blame] | 1229 | select BLK |
| 1230 | select USB |
| 1231 | select DM_USB |
Linus Walleij | c582250 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 1232 | |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 1233 | config TARGET_TOTAL_COMPUTE |
| 1234 | bool "Support Total Compute Platform" |
| 1235 | select ARM64 |
| 1236 | select PL01X_SERIAL |
| 1237 | select DM |
| 1238 | select DM_SERIAL |
| 1239 | select DM_MMC |
| 1240 | select DM_GPIO |
| 1241 | |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1242 | config TARGET_LS2080A_EMU |
| 1243 | bool "Support ls2080a_emu" |
York Sun | 4dd8c61 | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 1244 | select ARCH_LS2080A |
Masahiro Yamada | 0d46c34 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 1245 | select ARM64 |
Linus Walleij | 7477139 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 1246 | select ARMV8_MULTIENTRY |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1247 | select FSL_DDR_SYNC_REFRESH |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1248 | select GPIO_EXTRA_HEADER |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1249 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 1250 | Support for Freescale LS2080A_EMU platform. |
| 1251 | The LS2080A Development System (EMULATOR) is a pre-silicon |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1252 | development platform that supports the QorIQ LS2080A |
| 1253 | Layerscape Architecture processor. |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1254 | |
Ashish Kumar | 1ef4c77 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1255 | config TARGET_LS1088AQDS |
| 1256 | bool "Support ls1088aqds" |
| 1257 | select ARCH_LS1088A |
| 1258 | select ARM64 |
| 1259 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1260 | select ARCH_SUPPORT_TFABOOT |
Ashish Kumar | 1ef4c77 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1261 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1262 | select GPIO_EXTRA_HEADER |
Ashish Kumar | 4feb83b | 2017-11-06 13:18:44 +0530 | [diff] [blame] | 1263 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1264 | select FSL_DDR_INTERACTIVE if !SD_BOOT |
Ashish Kumar | 1ef4c77 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1265 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 1266 | Support for NXP LS1088AQDS platform. |
Ashish Kumar | 1ef4c77 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1267 | The LS1088A Development System (QDS) is a high-performance |
| 1268 | development platform that supports the QorIQ LS1088A |
| 1269 | Layerscape Architecture processor. |
| 1270 | |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1271 | config TARGET_LS2080AQDS |
| 1272 | bool "Support ls2080aqds" |
York Sun | 4dd8c61 | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 1273 | select ARCH_LS2080A |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 1274 | select ARM64 |
| 1275 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1276 | select ARCH_SUPPORT_TFABOOT |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1277 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1278 | select GPIO_EXTRA_HEADER |
Scott Wood | 8e728cd | 2015-03-24 13:25:02 -0700 | [diff] [blame] | 1279 | select SUPPORT_SPL |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1280 | imply SCSI |
Tuomas Tynkkynen | edf9f62 | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1281 | imply SCSI_AHCI |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1282 | select FSL_DDR_BIST |
| 1283 | select FSL_DDR_INTERACTIVE if !SPL |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 1284 | help |
Robert P. J. Day | 3a8d4e1 | 2019-12-25 06:34:07 -0500 | [diff] [blame] | 1285 | Support for Freescale LS2080AQDS platform. |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1286 | The LS2080A Development System (QDS) is a high-performance |
| 1287 | development platform that supports the QorIQ LS2080A |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 1288 | Layerscape Architecture processor. |
| 1289 | |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1290 | config TARGET_LS2080ARDB |
| 1291 | bool "Support ls2080ardb" |
York Sun | 4dd8c61 | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 1292 | select ARCH_LS2080A |
York Sun | e12abcb | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1293 | select ARM64 |
| 1294 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1295 | select ARCH_SUPPORT_TFABOOT |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1296 | select BOARD_LATE_INIT |
Scott Wood | 212b8d8 | 2015-03-24 13:25:03 -0700 | [diff] [blame] | 1297 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1298 | select FSL_DDR_BIST |
| 1299 | select FSL_DDR_INTERACTIVE if !SPL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1300 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1301 | imply SCSI |
Tuomas Tynkkynen | edf9f62 | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1302 | imply SCSI_AHCI |
York Sun | e12abcb | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1303 | help |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1304 | Support for Freescale LS2080ARDB platform. |
| 1305 | The LS2080A Reference design board (RDB) is a high-performance |
| 1306 | development platform that supports the QorIQ LS2080A |
York Sun | e12abcb | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1307 | Layerscape Architecture processor. |
| 1308 | |
Priyanka Jain | 75cd67f | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1309 | config TARGET_LS2081ARDB |
| 1310 | bool "Support ls2081ardb" |
| 1311 | select ARCH_LS2080A |
| 1312 | select ARM64 |
| 1313 | select ARMV8_MULTIENTRY |
| 1314 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1315 | select GPIO_EXTRA_HEADER |
Priyanka Jain | 75cd67f | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1316 | select SUPPORT_SPL |
Priyanka Jain | 75cd67f | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1317 | help |
| 1318 | Support for Freescale LS2081ARDB platform. |
| 1319 | The LS2081A Reference design board (RDB) is a high-performance |
| 1320 | development platform that supports the QorIQ LS2081A/LS2041A |
| 1321 | Layerscape Architecture processor. |
| 1322 | |
Priyanka Jain | fd45ca0 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 1323 | config TARGET_LX2160ARDB |
| 1324 | bool "Support lx2160ardb" |
| 1325 | select ARCH_LX2160A |
Priyanka Jain | fd45ca0 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 1326 | select ARM64 |
| 1327 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1328 | select ARCH_SUPPORT_TFABOOT |
Priyanka Jain | fd45ca0 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 1329 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1330 | select GPIO_EXTRA_HEADER |
Priyanka Jain | fd45ca0 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 1331 | help |
| 1332 | Support for NXP LX2160ARDB platform. |
| 1333 | The lx2160ardb (LX2160A Reference design board (RDB) |
| 1334 | is a high-performance development platform that supports the |
| 1335 | QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor. |
| 1336 | |
Pankaj Bansal | 338baa3 | 2019-02-08 10:29:58 +0000 | [diff] [blame] | 1337 | config TARGET_LX2160AQDS |
| 1338 | bool "Support lx2160aqds" |
| 1339 | select ARCH_LX2160A |
Pankaj Bansal | 338baa3 | 2019-02-08 10:29:58 +0000 | [diff] [blame] | 1340 | select ARM64 |
| 1341 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1342 | select ARCH_SUPPORT_TFABOOT |
Pankaj Bansal | 338baa3 | 2019-02-08 10:29:58 +0000 | [diff] [blame] | 1343 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1344 | select GPIO_EXTRA_HEADER |
Pankaj Bansal | 338baa3 | 2019-02-08 10:29:58 +0000 | [diff] [blame] | 1345 | help |
| 1346 | Support for NXP LX2160AQDS platform. |
| 1347 | The lx2160aqds (LX2160A QorIQ Development System (QDS) |
| 1348 | is a high-performance development platform that supports the |
| 1349 | QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor. |
| 1350 | |
Meenakshi Aggarwal | 8a03b0d | 2020-12-04 20:17:28 +0530 | [diff] [blame] | 1351 | config TARGET_LX2162AQDS |
| 1352 | bool "Support lx2162aqds" |
| 1353 | select ARCH_LX2162A |
| 1354 | select ARCH_MISC_INIT |
| 1355 | select ARM64 |
| 1356 | select ARMV8_MULTIENTRY |
| 1357 | select ARCH_SUPPORT_TFABOOT |
| 1358 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1359 | select GPIO_EXTRA_HEADER |
Meenakshi Aggarwal | 8a03b0d | 2020-12-04 20:17:28 +0530 | [diff] [blame] | 1360 | help |
| 1361 | Support for NXP LX2162AQDS platform. |
| 1362 | The lx2162aqds support is based on LX2160A Layerscape Architecture processor. |
| 1363 | |
Peter Griffin | 31f327e | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 1364 | config TARGET_HIKEY |
| 1365 | bool "Support HiKey 96boards Consumer Edition Platform" |
| 1366 | select ARM64 |
Peter Griffin | ff9302f | 2015-09-10 21:55:16 +0100 | [diff] [blame] | 1367 | select DM |
| 1368 | select DM_GPIO |
Peter Griffin | 0382c64 | 2015-09-10 21:55:17 +0100 | [diff] [blame] | 1369 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1370 | select GPIO_EXTRA_HEADER |
Peter Griffin | c97c37a | 2016-04-20 17:13:59 +0100 | [diff] [blame] | 1371 | select OF_CONTROL |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1372 | select PL01X_SERIAL |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 1373 | select SPECIFY_CONSOLE_INDEX |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1374 | imply CMD_DM |
Peter Griffin | 31f327e | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 1375 | help |
| 1376 | Support for HiKey 96boards platform. It features a HI6220 |
| 1377 | SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. |
| 1378 | |
Manivannan Sadhasivam | cf33f92 | 2019-08-02 20:40:09 +0530 | [diff] [blame] | 1379 | config TARGET_HIKEY960 |
| 1380 | bool "Support HiKey960 96boards Consumer Edition Platform" |
| 1381 | select ARM64 |
| 1382 | select DM |
| 1383 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1384 | select GPIO_EXTRA_HEADER |
Manivannan Sadhasivam | cf33f92 | 2019-08-02 20:40:09 +0530 | [diff] [blame] | 1385 | select OF_CONTROL |
| 1386 | select PL01X_SERIAL |
| 1387 | imply CMD_DM |
| 1388 | help |
| 1389 | Support for HiKey960 96boards platform. It features a HI3660 |
| 1390 | SoC, with 4xA73 CPU, 4xA53 CPU, MALI-G71 GPU, and 3GB RAM. |
| 1391 | |
Jorge Ramirez-Ortiz | f5b3842 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1392 | config TARGET_POPLAR |
| 1393 | bool "Support Poplar 96boards Enterprise Edition Platform" |
| 1394 | select ARM64 |
| 1395 | select DM |
Jorge Ramirez-Ortiz | f5b3842 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1396 | select DM_SERIAL |
| 1397 | select DM_USB |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1398 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1399 | select OF_CONTROL |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1400 | select PL01X_SERIAL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1401 | imply CMD_DM |
Jorge Ramirez-Ortiz | f5b3842 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1402 | help |
| 1403 | Support for Poplar 96boards EE platform. It features a HI3798cv200 |
| 1404 | SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU |
| 1405 | making it capable of running any commercial set-top solution based on |
| 1406 | Linux or Android. |
| 1407 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1408 | config TARGET_LS1012AQDS |
| 1409 | bool "Support ls1012aqds" |
York Sun | b3d7164 | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1410 | select ARCH_LS1012A |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1411 | select ARM64 |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1412 | select ARCH_SUPPORT_TFABOOT |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1413 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1414 | select GPIO_EXTRA_HEADER |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1415 | help |
| 1416 | Support for Freescale LS1012AQDS platform. |
| 1417 | The LS1012A Development System (QDS) is a high-performance |
| 1418 | development platform that supports the QorIQ LS1012A |
| 1419 | Layerscape Architecture processor. |
| 1420 | |
Prabhakar Kushwaha | a315c66 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1421 | config TARGET_LS1012ARDB |
| 1422 | bool "Support ls1012ardb" |
York Sun | b3d7164 | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1423 | select ARCH_LS1012A |
Prabhakar Kushwaha | a315c66 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1424 | select ARM64 |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1425 | select ARCH_SUPPORT_TFABOOT |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1426 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1427 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1428 | imply SCSI |
Tuomas Tynkkynen | edf9f62 | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1429 | imply SCSI_AHCI |
Prabhakar Kushwaha | a315c66 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1430 | help |
| 1431 | Support for Freescale LS1012ARDB platform. |
| 1432 | The LS1012A Reference design board (RDB) is a high-performance |
| 1433 | development platform that supports the QorIQ LS1012A |
| 1434 | Layerscape Architecture processor. |
| 1435 | |
Bhaskar Upadhaya | 7fff22a | 2018-01-11 20:03:31 +0530 | [diff] [blame] | 1436 | config TARGET_LS1012A2G5RDB |
| 1437 | bool "Support ls1012a2g5rdb" |
| 1438 | select ARCH_LS1012A |
| 1439 | select ARM64 |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1440 | select ARCH_SUPPORT_TFABOOT |
Bhaskar Upadhaya | 7fff22a | 2018-01-11 20:03:31 +0530 | [diff] [blame] | 1441 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1442 | select GPIO_EXTRA_HEADER |
Bhaskar Upadhaya | 7fff22a | 2018-01-11 20:03:31 +0530 | [diff] [blame] | 1443 | imply SCSI |
| 1444 | help |
| 1445 | Support for Freescale LS1012A2G5RDB platform. |
| 1446 | The LS1012A 2G5 Reference design board (RDB) is a high-performance |
| 1447 | development platform that supports the QorIQ LS1012A |
| 1448 | Layerscape Architecture processor. |
| 1449 | |
Bhaskar Upadhaya | 5e6f598 | 2018-05-23 11:03:30 +0530 | [diff] [blame] | 1450 | config TARGET_LS1012AFRWY |
| 1451 | bool "Support ls1012afrwy" |
| 1452 | select ARCH_LS1012A |
| 1453 | select ARM64 |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1454 | select ARCH_SUPPORT_TFABOOT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1455 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1456 | select GPIO_EXTRA_HEADER |
Bhaskar Upadhaya | 5e6f598 | 2018-05-23 11:03:30 +0530 | [diff] [blame] | 1457 | imply SCSI |
| 1458 | imply SCSI_AHCI |
| 1459 | help |
| 1460 | Support for Freescale LS1012AFRWY platform. |
| 1461 | The LS1012A FRWY board (FRWY) is a high-performance |
| 1462 | development platform that supports the QorIQ LS1012A |
| 1463 | Layerscape Architecture processor. |
| 1464 | |
Prabhakar Kushwaha | 9e7ee7b | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1465 | config TARGET_LS1012AFRDM |
| 1466 | bool "Support ls1012afrdm" |
York Sun | b3d7164 | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1467 | select ARCH_LS1012A |
Prabhakar Kushwaha | 9e7ee7b | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1468 | select ARM64 |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1469 | select ARCH_SUPPORT_TFABOOT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1470 | select GPIO_EXTRA_HEADER |
Prabhakar Kushwaha | 9e7ee7b | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1471 | help |
| 1472 | Support for Freescale LS1012AFRDM platform. |
| 1473 | The LS1012A Freedom board (FRDM) is a high-performance |
| 1474 | development platform that supports the QorIQ LS1012A |
| 1475 | Layerscape Architecture processor. |
| 1476 | |
Yuantian Tang | 473bbc4 | 2019-04-10 16:43:35 +0800 | [diff] [blame] | 1477 | config TARGET_LS1028AQDS |
| 1478 | bool "Support ls1028aqds" |
| 1479 | select ARCH_LS1028A |
| 1480 | select ARM64 |
| 1481 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1482 | select ARCH_SUPPORT_TFABOOT |
Yuantian Tang | afa8669 | 2019-07-02 16:16:22 +0800 | [diff] [blame] | 1483 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1484 | select GPIO_EXTRA_HEADER |
Yuantian Tang | 473bbc4 | 2019-04-10 16:43:35 +0800 | [diff] [blame] | 1485 | help |
| 1486 | Support for Freescale LS1028AQDS platform |
| 1487 | The LS1028A Development System (QDS) is a high-performance |
| 1488 | development platform that supports the QorIQ LS1028A |
| 1489 | Layerscape Architecture processor. |
| 1490 | |
Yuantian Tang | 92f18ff | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 1491 | config TARGET_LS1028ARDB |
| 1492 | bool "Support ls1028ardb" |
| 1493 | select ARCH_LS1028A |
| 1494 | select ARM64 |
| 1495 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1496 | select ARCH_SUPPORT_TFABOOT |
Yuantian Tang | 31c9890 | 2020-03-09 14:10:07 +0800 | [diff] [blame] | 1497 | select BOARD_LATE_INIT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1498 | select GPIO_EXTRA_HEADER |
Yuantian Tang | 92f18ff | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 1499 | help |
| 1500 | Support for Freescale LS1028ARDB platform |
| 1501 | The LS1028A Development System (RDB) is a high-performance |
| 1502 | development platform that supports the QorIQ LS1028A |
| 1503 | Layerscape Architecture processor. |
| 1504 | |
Ashish Kumar | 227b4bc | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1505 | config TARGET_LS1088ARDB |
| 1506 | bool "Support ls1088ardb" |
| 1507 | select ARCH_LS1088A |
| 1508 | select ARM64 |
| 1509 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1510 | select ARCH_SUPPORT_TFABOOT |
Ashish Kumar | 227b4bc | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1511 | select BOARD_LATE_INIT |
Ashish Kumar | 5676ceb | 2017-11-06 13:18:43 +0530 | [diff] [blame] | 1512 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1513 | select FSL_DDR_INTERACTIVE if !SD_BOOT |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1514 | select GPIO_EXTRA_HEADER |
Ashish Kumar | 227b4bc | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1515 | help |
| 1516 | Support for NXP LS1088ARDB platform. |
| 1517 | The LS1088A Reference design board (RDB) is a high-performance |
| 1518 | development platform that supports the QorIQ LS1088A |
| 1519 | Layerscape Architecture processor. |
| 1520 | |
Wang Huan | f0ce7d6 | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 1521 | config TARGET_LS1021AQDS |
Alison Wang | 6ea8ad4 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 1522 | bool "Support ls1021aqds" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1523 | select ARCH_LS1021A |
| 1524 | select ARCH_SUPPORT_PSCI |
| 1525 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1526 | select BOARD_LATE_INIT |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1527 | select CPU_V7A |
Hongbo Zhang | e80fccf | 2016-09-21 18:31:04 +0800 | [diff] [blame] | 1528 | select CPU_V7_HAS_NONSEC |
| 1529 | select CPU_V7_HAS_VIRT |
York Sun | 4de7e93 | 2016-09-26 08:09:29 -0700 | [diff] [blame] | 1530 | select LS1_DEEP_SLEEP |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1531 | select SUPPORT_SPL |
York Sun | d297d39 | 2016-12-28 08:43:40 -0800 | [diff] [blame] | 1532 | select SYS_FSL_DDR |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1533 | select FSL_DDR_INTERACTIVE |
Lukasz Majewski | 23aa834 | 2020-06-04 23:11:52 +0800 | [diff] [blame] | 1534 | select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1535 | select GPIO_EXTRA_HEADER |
Lukasz Majewski | 23aa834 | 2020-06-04 23:11:52 +0800 | [diff] [blame] | 1536 | select SPI_FLASH_DATAFLASH if FSL_DSPI || FSL_QSPI |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1537 | imply SCSI |
Masahiro Yamada | d5415b2 | 2016-08-30 16:22:22 +0900 | [diff] [blame] | 1538 | |
Wang Huan | ddf89f9 | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 1539 | config TARGET_LS1021ATWR |
Alison Wang | 6ea8ad4 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 1540 | bool "Support ls1021atwr" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1541 | select ARCH_LS1021A |
| 1542 | select ARCH_SUPPORT_PSCI |
| 1543 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1544 | select BOARD_LATE_INIT |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1545 | select CPU_V7A |
Hongbo Zhang | e80fccf | 2016-09-21 18:31:04 +0800 | [diff] [blame] | 1546 | select CPU_V7_HAS_NONSEC |
| 1547 | select CPU_V7_HAS_VIRT |
York Sun | 4de7e93 | 2016-09-26 08:09:29 -0700 | [diff] [blame] | 1548 | select LS1_DEEP_SLEEP |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1549 | select SUPPORT_SPL |
Lukasz Majewski | 23aa834 | 2020-06-04 23:11:52 +0800 | [diff] [blame] | 1550 | select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1551 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1552 | imply SCSI |
Wang Huan | ddf89f9 | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 1553 | |
Aleksandar Gerasimovski | 032bdbc | 2021-02-22 18:18:11 +0000 | [diff] [blame] | 1554 | config TARGET_PG_WCOM_SELI8 |
| 1555 | bool "Support Hitachi-Powergrids SELI8 service unit card" |
| 1556 | select ARCH_LS1021A |
| 1557 | select ARCH_SUPPORT_PSCI |
| 1558 | select BOARD_EARLY_INIT_F |
| 1559 | select BOARD_LATE_INIT |
| 1560 | select CPU_V7A |
| 1561 | select CPU_V7_HAS_NONSEC |
| 1562 | select CPU_V7_HAS_VIRT |
| 1563 | select SYS_FSL_DDR |
| 1564 | select FSL_DDR_INTERACTIVE |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1565 | select GPIO_EXTRA_HEADER |
Aleksandar Gerasimovski | 032bdbc | 2021-02-22 18:18:11 +0000 | [diff] [blame] | 1566 | select VENDOR_KM |
| 1567 | imply SCSI |
| 1568 | help |
| 1569 | Support for Hitachi-Powergrids SELI8 service unit card. |
| 1570 | SELI8 is a QorIQ LS1021a based service unit card used |
| 1571 | in XMC20 and FOX615 product families. |
| 1572 | |
Aleksandar Gerasimovski | 3b24bbd | 2021-06-08 14:16:28 +0000 | [diff] [blame] | 1573 | config TARGET_PG_WCOM_EXPU1 |
| 1574 | bool "Support Hitachi-Powergrids EXPU1 service unit card" |
| 1575 | select ARCH_LS1021A |
| 1576 | select ARCH_SUPPORT_PSCI |
| 1577 | select BOARD_EARLY_INIT_F |
| 1578 | select BOARD_LATE_INIT |
| 1579 | select CPU_V7A |
| 1580 | select CPU_V7_HAS_NONSEC |
| 1581 | select CPU_V7_HAS_VIRT |
| 1582 | select SYS_FSL_DDR |
| 1583 | select FSL_DDR_INTERACTIVE |
| 1584 | select VENDOR_KM |
| 1585 | imply SCSI |
| 1586 | help |
| 1587 | Support for Hitachi-Powergrids EXPU1 service unit card. |
| 1588 | EXPU1 is a QorIQ LS1021a based service unit card used |
| 1589 | in XMC20 and FOX615 product families. |
| 1590 | |
Jianchao Wang | e5332ba | 2019-07-19 00:30:01 +0300 | [diff] [blame] | 1591 | config TARGET_LS1021ATSN |
| 1592 | bool "Support ls1021atsn" |
| 1593 | select ARCH_LS1021A |
| 1594 | select ARCH_SUPPORT_PSCI |
| 1595 | select BOARD_EARLY_INIT_F |
| 1596 | select BOARD_LATE_INIT |
| 1597 | select CPU_V7A |
| 1598 | select CPU_V7_HAS_NONSEC |
| 1599 | select CPU_V7_HAS_VIRT |
| 1600 | select LS1_DEEP_SLEEP |
| 1601 | select SUPPORT_SPL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1602 | select GPIO_EXTRA_HEADER |
Jianchao Wang | e5332ba | 2019-07-19 00:30:01 +0300 | [diff] [blame] | 1603 | imply SCSI |
| 1604 | |
Feng Li | 39e112d | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1605 | config TARGET_LS1021AIOT |
| 1606 | bool "Support ls1021aiot" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1607 | select ARCH_LS1021A |
| 1608 | select ARCH_SUPPORT_PSCI |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1609 | select BOARD_LATE_INIT |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1610 | select CPU_V7A |
Feng Li | 39e112d | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1611 | select CPU_V7_HAS_NONSEC |
| 1612 | select CPU_V7_HAS_VIRT |
| 1613 | select SUPPORT_SPL |
Lukasz Majewski | 23aa834 | 2020-06-04 23:11:52 +0800 | [diff] [blame] | 1614 | select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1615 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1616 | imply SCSI |
Feng Li | 39e112d | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1617 | help |
| 1618 | Support for Freescale LS1021AIOT platform. |
| 1619 | The LS1021A Freescale board (IOT) is a high-performance |
| 1620 | development platform that supports the QorIQ LS1021A |
| 1621 | Layerscape Architecture processor. |
| 1622 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1623 | config TARGET_LS1043AQDS |
| 1624 | bool "Support ls1043aqds" |
York Sun | 149eb33 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 1625 | select ARCH_LS1043A |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1626 | select ARM64 |
| 1627 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1628 | select ARCH_SUPPORT_TFABOOT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1629 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1630 | select BOARD_LATE_INIT |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1631 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1632 | select FSL_DDR_INTERACTIVE if !SPL |
Lukasz Majewski | 9cb0cc1 | 2020-06-04 23:11:51 +0800 | [diff] [blame] | 1633 | select FSL_DSPI if !SPL_NO_DSPI |
| 1634 | select DM_SPI_FLASH if FSL_DSPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1635 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1636 | imply SCSI |
Peng Ma | a550eb6 | 2019-01-30 19:11:49 +0800 | [diff] [blame] | 1637 | imply SCSI_AHCI |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1638 | help |
| 1639 | Support for Freescale LS1043AQDS platform. |
| 1640 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1641 | config TARGET_LS1043ARDB |
| 1642 | bool "Support ls1043ardb" |
York Sun | 149eb33 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 1643 | select ARCH_LS1043A |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1644 | select ARM64 |
Hou Zhiqiang | c7098fa | 2015-10-26 19:47:57 +0800 | [diff] [blame] | 1645 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1646 | select ARCH_SUPPORT_TFABOOT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1647 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1648 | select BOARD_LATE_INIT |
Gong Qianyu | 8168a0f | 2015-10-26 19:47:53 +0800 | [diff] [blame] | 1649 | select SUPPORT_SPL |
Lukasz Majewski | 9cb0cc1 | 2020-06-04 23:11:51 +0800 | [diff] [blame] | 1650 | select FSL_DSPI if !SPL_NO_DSPI |
| 1651 | select DM_SPI_FLASH if FSL_DSPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1652 | select GPIO_EXTRA_HEADER |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1653 | help |
| 1654 | Support for Freescale LS1043ARDB platform. |
| 1655 | |
Shaohui Xie | 085ac1c | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1656 | config TARGET_LS1046AQDS |
| 1657 | bool "Support ls1046aqds" |
York Sun | bad4984 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 1658 | select ARCH_LS1046A |
Shaohui Xie | 085ac1c | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1659 | select ARM64 |
| 1660 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1661 | select ARCH_SUPPORT_TFABOOT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1662 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1663 | select BOARD_LATE_INIT |
Shaohui Xie | 085ac1c | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1664 | select DM_SPI_FLASH if DM_SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1665 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1666 | select FSL_DDR_BIST if !SPL |
| 1667 | select FSL_DDR_INTERACTIVE if !SPL |
| 1668 | select FSL_DDR_INTERACTIVE if !SPL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1669 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1670 | imply SCSI |
Shaohui Xie | 085ac1c | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1671 | help |
| 1672 | Support for Freescale LS1046AQDS platform. |
| 1673 | The LS1046A Development System (QDS) is a high-performance |
| 1674 | development platform that supports the QorIQ LS1046A |
| 1675 | Layerscape Architecture processor. |
| 1676 | |
Mingkai Hu | d239651 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1677 | config TARGET_LS1046ARDB |
| 1678 | bool "Support ls1046ardb" |
York Sun | bad4984 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 1679 | select ARCH_LS1046A |
Mingkai Hu | d239651 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1680 | select ARM64 |
| 1681 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1682 | select ARCH_SUPPORT_TFABOOT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1683 | select BOARD_EARLY_INIT_F |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1684 | select BOARD_LATE_INIT |
Mingkai Hu | d239651 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1685 | select DM_SPI_FLASH if DM_SPI |
Hou Zhiqiang | 67b6d0a | 2016-12-09 16:09:01 +0800 | [diff] [blame] | 1686 | select POWER_MC34VR500 |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1687 | select SUPPORT_SPL |
Rajesh Bhagat | ba2414f | 2019-02-01 05:22:01 +0000 | [diff] [blame] | 1688 | select FSL_DDR_BIST |
| 1689 | select FSL_DDR_INTERACTIVE if !SPL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1690 | select GPIO_EXTRA_HEADER |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1691 | imply SCSI |
Mingkai Hu | d239651 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1692 | help |
| 1693 | Support for Freescale LS1046ARDB platform. |
| 1694 | The LS1046A Reference Design Board (RDB) is a high-performance |
| 1695 | development platform that supports the QorIQ LS1046A |
| 1696 | Layerscape Architecture processor. |
| 1697 | |
Vabhav Sharma | 5164191 | 2019-06-06 12:35:28 +0000 | [diff] [blame] | 1698 | config TARGET_LS1046AFRWY |
| 1699 | bool "Support ls1046afrwy" |
| 1700 | select ARCH_LS1046A |
| 1701 | select ARM64 |
| 1702 | select ARMV8_MULTIENTRY |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1703 | select ARCH_SUPPORT_TFABOOT |
Vabhav Sharma | 5164191 | 2019-06-06 12:35:28 +0000 | [diff] [blame] | 1704 | select BOARD_EARLY_INIT_F |
| 1705 | select BOARD_LATE_INIT |
| 1706 | select DM_SPI_FLASH if DM_SPI |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1707 | select GPIO_EXTRA_HEADER |
Vabhav Sharma | 5164191 | 2019-06-06 12:35:28 +0000 | [diff] [blame] | 1708 | imply SCSI |
| 1709 | help |
| 1710 | Support for Freescale LS1046AFRWY platform. |
| 1711 | The LS1046A Freeway Board (FRWY) is a high-performance |
| 1712 | development platform that supports the QorIQ LS1046A |
| 1713 | Layerscape Architecture processor. |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1714 | |
Michael Walle | 36ba764 | 2020-10-15 23:08:57 +0200 | [diff] [blame] | 1715 | config TARGET_SL28 |
| 1716 | bool "Support sl28" |
| 1717 | select ARCH_LS1028A |
| 1718 | select ARM64 |
| 1719 | select ARMV8_MULTIENTRY |
| 1720 | select SUPPORT_SPL |
| 1721 | select BINMAN |
Michael Walle | b53a4f3 | 2021-03-26 19:40:57 +0100 | [diff] [blame] | 1722 | select DM |
| 1723 | select DM_GPIO |
| 1724 | select DM_I2C |
| 1725 | select DM_MMC |
| 1726 | select DM_SPI_FLASH |
| 1727 | select DM_ETH |
| 1728 | select DM_MDIO |
| 1729 | select DM_PCI |
| 1730 | select DM_RNG |
| 1731 | select DM_RTC |
| 1732 | select DM_SCSI |
Michael Walle | 7a66ef0 | 2021-03-26 19:40:58 +0100 | [diff] [blame] | 1733 | select DM_SERIAL |
Michael Walle | b53a4f3 | 2021-03-26 19:40:57 +0100 | [diff] [blame] | 1734 | select DM_SPI |
| 1735 | select DM_USB |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1736 | select GPIO_EXTRA_HEADER |
Michael Walle | b53a4f3 | 2021-03-26 19:40:57 +0100 | [diff] [blame] | 1737 | select SPL_DM if SPL |
| 1738 | select SPL_DM_SPI if SPL |
| 1739 | select SPL_DM_SPI_FLASH if SPL |
| 1740 | select SPL_DM_I2C if SPL |
| 1741 | select SPL_DM_MMC if SPL |
| 1742 | select SPL_DM_SERIAL if SPL |
Michael Walle | 36ba764 | 2020-10-15 23:08:57 +0200 | [diff] [blame] | 1743 | help |
| 1744 | Support for Kontron SMARC-sAL28 board. |
| 1745 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1746 | config TARGET_COLIBRI_PXA270 |
| 1747 | bool "Support colibri_pxa270" |
Georges Savoundararadj | 3bae15f | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 1748 | select CPU_PXA |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1749 | select GPIO_EXTRA_HEADER |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1750 | |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1751 | config ARCH_UNIPHIER |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 1752 | bool "Socionext UniPhier SoCs" |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1753 | select BOARD_LATE_INIT |
Masahiro Yamada | 85eb826 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 1754 | select DM |
Masahiro Yamada | ae8d7d5 | 2020-05-07 22:11:19 +0900 | [diff] [blame] | 1755 | select DM_ETH |
Masahiro Yamada | 5f12892 | 2016-02-16 17:03:50 +0900 | [diff] [blame] | 1756 | select DM_GPIO |
Masahiro Yamada | 85eb826 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 1757 | select DM_I2C |
Masahiro Yamada | 867453e | 2016-02-18 19:52:49 +0900 | [diff] [blame] | 1758 | select DM_MMC |
Masahiro Yamada | 8fc5382 | 2020-01-30 22:07:59 +0900 | [diff] [blame] | 1759 | select DM_MTD |
Masahiro Yamada | 2aa4b5b | 2016-10-08 13:25:31 +0900 | [diff] [blame] | 1760 | select DM_RESET |
Masahiro Yamada | 694adf1 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1761 | select DM_SERIAL |
Masahiro Yamada | 5021b8a | 2016-09-14 01:06:00 +0900 | [diff] [blame] | 1762 | select DM_USB |
Masahiro Yamada | e0a6fa8 | 2018-07-19 16:28:25 +0900 | [diff] [blame] | 1763 | select OF_BOARD_SETUP |
Masahiro Yamada | 694adf1 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1764 | select OF_CONTROL |
| 1765 | select OF_LIBFDT |
Masahiro Yamada | 0c97725 | 2016-09-17 03:33:01 +0900 | [diff] [blame] | 1766 | select PINCTRL |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 1767 | select SPL_BOARD_INIT if SPL |
Masahiro Yamada | dabee24 | 2017-01-21 18:05:22 +0900 | [diff] [blame] | 1768 | select SPL_DM if SPL |
| 1769 | select SPL_LIBCOMMON_SUPPORT if SPL |
| 1770 | select SPL_LIBGENERIC_SUPPORT if SPL |
| 1771 | select SPL_OF_CONTROL if SPL |
| 1772 | select SPL_PINCTRL if SPL |
Masahiro Yamada | 694adf1 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1773 | select SUPPORT_SPL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1774 | imply CMD_DM |
Masahiro Yamada | 577242b | 2018-07-20 21:47:18 +0900 | [diff] [blame] | 1775 | imply DISTRO_DEFAULTS |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1776 | imply FAT_WRITE |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 1777 | help |
| 1778 | Support for UniPhier SoC family developed by Socionext Inc. |
| 1779 | (formerly, System LSI Business Division of Panasonic Corporation) |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1780 | |
Trevor Woerner | 2bcc1ed | 2020-05-06 08:02:42 -0400 | [diff] [blame] | 1781 | config ARCH_STM32 |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1782 | bool "Support STMicroelectronics STM32 MCU with cortex M" |
rev13@wp.pl | 6b5e5a9 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 1783 | select CPU_V7M |
Kamil Lulko | 75d48a6 | 2015-12-01 09:08:19 +0100 | [diff] [blame] | 1784 | select DM |
| 1785 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1786 | select GPIO_EXTRA_HEADER |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1787 | imply CMD_DM |
rev13@wp.pl | 6b5e5a9 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 1788 | |
Patrice Chotard | 5b42824 | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 1789 | config ARCH_STI |
| 1790 | bool "Support STMicrolectronics SoCs" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1791 | select BLK |
Lokesh Vutla | 81b1a67 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1792 | select CPU_V7A |
Patrice Chotard | 42d742b | 2017-02-21 13:37:07 +0100 | [diff] [blame] | 1793 | select DM |
Patrice Chotard | 2eea7d8 | 2017-02-21 13:37:09 +0100 | [diff] [blame] | 1794 | select DM_MMC |
Patrice Chotard | 1235aa0 | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 1795 | select DM_RESET |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1796 | select DM_SERIAL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1797 | imply CMD_DM |
Patrice Chotard | 5b42824 | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 1798 | help |
| 1799 | Support for STMicroelectronics STiH407/10 SoC family. |
| 1800 | This SoC is used on Linaro 96Board STiH410-B2260 |
| 1801 | |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1802 | config ARCH_STM32MP |
| 1803 | bool "Support STMicroelectronics STM32MP Socs with cortex A" |
Patrick Delaunay | c5d1565 | 2018-03-20 10:54:53 +0100 | [diff] [blame] | 1804 | select ARCH_MISC_INIT |
Patrick Delaunay | f8fe21d | 2020-04-01 09:07:33 +0200 | [diff] [blame] | 1805 | select ARCH_SUPPORT_TFABOOT |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1806 | select BOARD_LATE_INIT |
| 1807 | select CLK |
| 1808 | select DM |
| 1809 | select DM_GPIO |
| 1810 | select DM_RESET |
| 1811 | select DM_SERIAL |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1812 | select GPIO_EXTRA_HEADER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1813 | select MISC |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1814 | select OF_CONTROL |
| 1815 | select OF_LIBFDT |
Patrick Delaunay | a6f0391 | 2019-07-05 17:20:14 +0200 | [diff] [blame] | 1816 | select OF_SYSTEM_SETUP |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1817 | select PINCTRL |
| 1818 | select REGMAP |
| 1819 | select SUPPORT_SPL |
| 1820 | select SYSCON |
Patrick Delaunay | 32ddd26 | 2018-03-20 14:15:06 +0100 | [diff] [blame] | 1821 | select SYSRESET |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1822 | select SYS_THUMB_BUILD |
Kever Yang | 525ea47 | 2019-04-02 20:41:25 +0800 | [diff] [blame] | 1823 | imply SPL_SYSRESET |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1824 | imply CMD_DM |
Patrick Delaunay | 4e8dbe2 | 2019-04-12 11:55:46 +0200 | [diff] [blame] | 1825 | imply CMD_POWEROFF |
Patrick Delaunay | 0355250 | 2019-07-30 19:16:28 +0200 | [diff] [blame] | 1826 | imply OF_LIBFDT_OVERLAY |
Patrick Delaunay | d70e3f8 | 2019-02-27 17:01:11 +0100 | [diff] [blame] | 1827 | imply ENV_VARS_UBOOT_RUNTIME_CONFIG |
Patrick Delaunay | 64e02e9 | 2019-04-18 17:32:38 +0200 | [diff] [blame] | 1828 | imply USE_PREBOOT |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1829 | help |
| 1830 | Support for STM32MP SoC family developed by STMicroelectronics, |
| 1831 | MPUs based on ARM cortex A core |
Patrick Delaunay | 5d06141 | 2019-02-12 11:44:39 +0100 | [diff] [blame] | 1832 | U-BOOT is running in DDR, loaded by the First Stage BootLoader (FSBL). |
| 1833 | FSBL can be TF-A: Trusted Firmware for Cortex A, for trusted boot |
| 1834 | chain. |
| 1835 | SPL is the unsecure FSBL for the basic boot chain. |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1836 | |
Simon Glass | 2cffe66 | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1837 | config ARCH_ROCKCHIP |
| 1838 | bool "Support Rockchip SoCs" |
Simon Glass | 9410627 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1839 | select BLK |
Kever Yang | 217a036 | 2020-11-10 11:43:32 +0800 | [diff] [blame] | 1840 | select BINMAN if SPL_OPTEE |
Simon Glass | 2cffe66 | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1841 | select DM |
Simon Glass | 9410627 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1842 | select DM_GPIO |
| 1843 | select DM_I2C |
| 1844 | select DM_MMC |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1845 | select DM_PWM |
| 1846 | select DM_REGULATOR |
Simon Glass | 9410627 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1847 | select DM_SERIAL |
| 1848 | select DM_SPI |
| 1849 | select DM_SPI_FLASH |
MengDongyang | f0bf5de | 2016-08-24 12:02:18 +0800 | [diff] [blame] | 1850 | select DM_USB if USB |
Philipp Tomsich | b6f395c | 2017-10-10 16:21:03 +0200 | [diff] [blame] | 1851 | select ENABLE_ARM_SOC_BOOT0_HOOK |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1852 | select OF_CONTROL |
Adam Ford | 4e96ff8 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 1853 | select SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1854 | select SPL_DM if SPL |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 1855 | select SPL_DM_SPI if SPL |
| 1856 | select SPL_DM_SPI_FLASH if SPL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1857 | select SYS_MALLOC_F |
| 1858 | select SYS_THUMB_BUILD if !ARM64 |
| 1859 | imply ADC |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1860 | imply CMD_DM |
Kever Yang | 2563ee8 | 2019-03-29 09:08:58 +0800 | [diff] [blame] | 1861 | imply DEBUG_UART_BOARD_INIT |
Masahiro Yamada | 9afc6c5 | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 1862 | imply DISTRO_DEFAULTS |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1863 | imply FAT_WRITE |
Philipp Tomsich | 2fa7b7e | 2017-09-20 13:50:13 +0200 | [diff] [blame] | 1864 | imply SARADC_ROCKCHIP |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1865 | imply SPL_SYSRESET |
Thomas Hebb | 1bda432 | 2019-11-15 08:48:57 -0800 | [diff] [blame] | 1866 | imply SPL_SYS_MALLOC_SIMPLE |
Kever Yang | 4a3448c | 2018-04-19 11:37:09 +0800 | [diff] [blame] | 1867 | imply SYS_NS16550 |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1868 | imply TPL_SYSRESET |
| 1869 | imply USB_FUNCTION_FASTBOOT |
Simon Glass | 2cffe66 | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1870 | |
Suneel Garapati | addfabc | 2019-10-19 18:37:55 -0700 | [diff] [blame] | 1871 | config ARCH_OCTEONTX |
| 1872 | bool "Support OcteonTX SoCs" |
Stefan Roese | fbd1865 | 2020-09-23 11:01:30 +0200 | [diff] [blame] | 1873 | select CLK |
Suneel Garapati | addfabc | 2019-10-19 18:37:55 -0700 | [diff] [blame] | 1874 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1875 | select GPIO_EXTRA_HEADER |
Suneel Garapati | addfabc | 2019-10-19 18:37:55 -0700 | [diff] [blame] | 1876 | select ARM64 |
| 1877 | select OF_CONTROL |
| 1878 | select OF_LIVE |
| 1879 | select BOARD_LATE_INIT |
| 1880 | select SYS_CACHE_SHIFT_7 |
Suneel Garapati | d9e7246 | 2019-10-19 18:47:37 -0700 | [diff] [blame] | 1881 | |
| 1882 | config ARCH_OCTEONTX2 |
| 1883 | bool "Support OcteonTX2 SoCs" |
Stefan Roese | fbd1865 | 2020-09-23 11:01:30 +0200 | [diff] [blame] | 1884 | select CLK |
Suneel Garapati | d9e7246 | 2019-10-19 18:47:37 -0700 | [diff] [blame] | 1885 | select DM |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1886 | select GPIO_EXTRA_HEADER |
Suneel Garapati | d9e7246 | 2019-10-19 18:47:37 -0700 | [diff] [blame] | 1887 | select ARM64 |
| 1888 | select OF_CONTROL |
| 1889 | select OF_LIVE |
| 1890 | select BOARD_LATE_INIT |
| 1891 | select SYS_CACHE_SHIFT_7 |
| 1892 | |
Sergey Temerkhanov | 69f7a03 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1893 | config TARGET_THUNDERX_88XX |
| 1894 | bool "Support ThunderX 88xx" |
Marek Vasut | 09ab8ad | 2016-06-01 02:33:53 +0200 | [diff] [blame] | 1895 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1896 | select GPIO_EXTRA_HEADER |
Sergey Temerkhanov | 69f7a03 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1897 | select OF_CONTROL |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1898 | select PL01X_SERIAL |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1899 | select SYS_CACHE_SHIFT_7 |
Sergey Temerkhanov | 69f7a03 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1900 | |
maxims@google.com | f57bd00 | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1901 | config ARCH_ASPEED |
| 1902 | bool "Support Aspeed SoCs" |
maxims@google.com | f57bd00 | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1903 | select DM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1904 | select OF_CONTROL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1905 | imply CMD_DM |
maxims@google.com | f57bd00 | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1906 | |
liu hao | 1c4a2c4 | 2019-10-31 07:51:08 +0000 | [diff] [blame] | 1907 | config TARGET_DURIAN |
| 1908 | bool "Support Phytium Durian Platform" |
| 1909 | select ARM64 |
Masami Hiramatsu | cc32c0b | 2021-06-04 18:43:55 +0900 | [diff] [blame^] | 1910 | select GPIO_EXTRA_HEADER |
liu hao | 1c4a2c4 | 2019-10-31 07:51:08 +0000 | [diff] [blame] | 1911 | help |
| 1912 | Support for durian platform. |
| 1913 | It has 2GB Sdram, uart and pcie. |
| 1914 | |
Alex Nemirovsky | 1ecad07 | 2020-01-30 12:34:59 -0800 | [diff] [blame] | 1915 | config TARGET_PRESIDIO_ASIC |
| 1916 | bool "Support Cortina Presidio ASIC Platform" |
| 1917 | select ARM64 |
| 1918 | |
Andrii Anisov | 355d1e4 | 2020-08-06 12:42:47 +0300 | [diff] [blame] | 1919 | config TARGET_XENGUEST_ARM64 |
| 1920 | bool "Xen guest ARM64" |
| 1921 | select ARM64 |
| 1922 | select XEN |
| 1923 | select OF_CONTROL |
| 1924 | select LINUX_KERNEL_IMAGE_HEADER |
Peng Fan | 8162f8f | 2020-08-06 12:42:50 +0300 | [diff] [blame] | 1925 | select XEN_SERIAL |
Oleksandr Andrushchenko | 4b72845 | 2020-08-06 12:42:53 +0300 | [diff] [blame] | 1926 | select SSCANF |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1927 | endchoice |
| 1928 | |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1929 | config ARCH_SUPPORT_TFABOOT |
| 1930 | bool |
| 1931 | |
| 1932 | config TFABOOT |
| 1933 | bool "Support for booting from TF-A" |
| 1934 | depends on ARCH_SUPPORT_TFABOOT |
| 1935 | default n |
| 1936 | help |
Andre Przywara | 41087af | 2020-09-30 15:45:07 +0100 | [diff] [blame] | 1937 | Some platforms support the setup of secure registers (for instance |
| 1938 | for CPU errata handling) or provide secure services like PSCI. |
| 1939 | Those services could also be provided by other firmware parts |
| 1940 | like TF-A (Trusted Firmware for Cortex-A), in which case U-Boot |
| 1941 | does not need to (and cannot) execute this code. |
| 1942 | Enabling this option will make a U-Boot binary that is relying |
| 1943 | on other firmware layers to provide secure functionality. |
AKASHI Takahiro | fb83f75 | 2019-07-03 10:44:39 +0900 | [diff] [blame] | 1944 | |
Andrew F. Davis | d3fe917 | 2018-02-14 11:53:37 -0600 | [diff] [blame] | 1945 | config TI_SECURE_DEVICE |
| 1946 | bool "HS Device Type Support" |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 1947 | depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3 |
Andrew F. Davis | d3fe917 | 2018-02-14 11:53:37 -0600 | [diff] [blame] | 1948 | help |
| 1949 | If a high secure (HS) device type is being used, this config |
| 1950 | must be set. This option impacts various aspects of the |
| 1951 | build system (to create signed boot images that can be |
| 1952 | authenticated) and the code. See the doc/README.ti-secure |
| 1953 | file for further details. |
| 1954 | |
Tom Rini | b2f88a3 | 2019-03-19 07:14:37 -0400 | [diff] [blame] | 1955 | if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE |
| 1956 | config ISW_ENTRY_ADDR |
| 1957 | hex "Address in memory or XIP address of bootloader entry point" |
| 1958 | default 0x402F4000 if AM43XX |
| 1959 | default 0x402F0400 if AM33XX |
| 1960 | default 0x40301350 if OMAP54XX |
| 1961 | help |
| 1962 | After any reset, the boot ROM searches the boot media for a valid |
| 1963 | boot image. For non-XIP devices, the ROM then copies the image into |
| 1964 | internal memory. For all boot modes, after the ROM processes the |
| 1965 | boot image it eventually computes the entry point address depending |
| 1966 | on the device type (secure/non-secure), boot media (xip/non-xip) and |
| 1967 | image headers. |
| 1968 | endif |
| 1969 | |
maxims@google.com | f57bd00 | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1970 | source "arch/arm/mach-aspeed/Kconfig" |
| 1971 | |
Masahiro Yamada | af908ee | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 1972 | source "arch/arm/mach-at91/Kconfig" |
| 1973 | |
Masahiro Yamada | ed22cc7 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 1974 | source "arch/arm/mach-bcm283x/Kconfig" |
Masahiro Yamada | e604ef9 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 1975 | |
Thomas Fitzsimmons | 919646d | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 1976 | source "arch/arm/mach-bcmstb/Kconfig" |
| 1977 | |
Masahiro Yamada | ed22cc7 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 1978 | source "arch/arm/mach-davinci/Kconfig" |
Simon Glass | 13fc6a2 | 2015-02-05 21:41:39 -0700 | [diff] [blame] | 1979 | |
Thomas Abraham | 74f8486 | 2015-08-03 17:58:00 +0530 | [diff] [blame] | 1980 | source "arch/arm/mach-exynos/Kconfig" |
Masahiro Yamada | c54550b | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 1981 | |
Masahiro Yamada | 95ec48b | 2015-02-20 17:04:08 +0900 | [diff] [blame] | 1982 | source "arch/arm/mach-highbank/Kconfig" |
Masahiro Yamada | 52ece9c | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 1983 | |
Masahiro Yamada | cad4416 | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 1984 | source "arch/arm/mach-integrator/Kconfig" |
| 1985 | |
Robert Marko | e7a34f1 | 2020-07-06 10:37:54 +0200 | [diff] [blame] | 1986 | source "arch/arm/mach-ipq40xx/Kconfig" |
| 1987 | |
Lokesh Vutla | 9bdec00 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 1988 | source "arch/arm/mach-k3/Kconfig" |
| 1989 | |
Masahiro Yamada | f058b79 | 2015-02-20 17:04:11 +0900 | [diff] [blame] | 1990 | source "arch/arm/mach-keystone/Kconfig" |
Masahiro Yamada | 32013fb | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 1991 | |
Masahiro Yamada | 5e5e23a | 2015-02-20 17:04:06 +0900 | [diff] [blame] | 1992 | source "arch/arm/mach-kirkwood/Kconfig" |
Masahiro Yamada | d757085 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 1993 | |
Trevor Woerner | 28d261f | 2020-05-06 08:02:36 -0400 | [diff] [blame] | 1994 | source "arch/arm/mach-lpc32xx/Kconfig" |
Vladimir Zapolskiy | 31d0e96 | 2018-09-17 21:43:03 +0300 | [diff] [blame] | 1995 | |
Stefan Roese | 383e0c1 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 1996 | source "arch/arm/mach-mvebu/Kconfig" |
| 1997 | |
Suneel Garapati | addfabc | 2019-10-19 18:37:55 -0700 | [diff] [blame] | 1998 | source "arch/arm/mach-octeontx/Kconfig" |
Suneel Garapati | d9e7246 | 2019-10-19 18:47:37 -0700 | [diff] [blame] | 1999 | |
| 2000 | source "arch/arm/mach-octeontx2/Kconfig" |
| 2001 | |
York Sun | 149eb33 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 2002 | source "arch/arm/cpu/armv7/ls102xa/Kconfig" |
| 2003 | |
Fabio Estevam | 52b2f45 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 2004 | source "arch/arm/mach-imx/mx2/Kconfig" |
| 2005 | |
Magnus Lilja | c74f70f | 2018-05-11 14:06:54 +0200 | [diff] [blame] | 2006 | source "arch/arm/mach-imx/mx3/Kconfig" |
| 2007 | |
Peng Fan | 6629488 | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 2008 | source "arch/arm/mach-imx/mx5/Kconfig" |
| 2009 | |
| 2010 | source "arch/arm/mach-imx/mx6/Kconfig" |
Peng Fan | 2c7b170 | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 2011 | |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 2012 | source "arch/arm/mach-imx/mx7/Kconfig" |
Adrian Alonso | 9881077 | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 2013 | |
Peng Fan | 6629488 | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 2014 | source "arch/arm/mach-imx/mx7ulp/Kconfig" |
Boris BREZILLON | 51e8266 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 2015 | |
Peng Fan | 6bae1c7 | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 2016 | source "arch/arm/mach-imx/imx8/Kconfig" |
| 2017 | |
Peng Fan | 39945c1 | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 2018 | source "arch/arm/mach-imx/imx8m/Kconfig" |
Andrej Rosano | 1ac4bca | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 2019 | |
Giulio Benetti | 9dba262 | 2020-01-10 15:51:47 +0100 | [diff] [blame] | 2020 | source "arch/arm/mach-imx/imxrt/Kconfig" |
| 2021 | |
Stefan Agner | 081ea1f | 2018-02-06 09:44:34 +0100 | [diff] [blame] | 2022 | source "arch/arm/mach-imx/mxs/Kconfig" |
| 2023 | |
Tom Rini | 28eec37 | 2016-11-07 21:34:54 -0500 | [diff] [blame] | 2024 | source "arch/arm/mach-omap2/Kconfig" |
Madan Srinivas | eba13cd | 2016-05-19 19:10:43 -0500 | [diff] [blame] | 2025 | |
York Sun | bad4984 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 2026 | source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig" |
| 2027 | |
Masahiro Yamada | 2253764 | 2015-02-20 17:04:09 +0900 | [diff] [blame] | 2028 | source "arch/arm/mach-orion5x/Kconfig" |
Masahiro Yamada | 04ffbc1 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 2029 | |
Manivannan Sadhasivam | 474a5df | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 2030 | source "arch/arm/mach-owl/Kconfig" |
| 2031 | |
Nobuhiro Iwamatsu | c91ef68 | 2015-10-09 16:40:09 +0900 | [diff] [blame] | 2032 | source "arch/arm/mach-rmobile/Kconfig" |
Masahiro Yamada | c9c54e2 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 2033 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 2034 | source "arch/arm/mach-meson/Kconfig" |
| 2035 | |
developer | f4a079c | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 2036 | source "arch/arm/mach-mediatek/Kconfig" |
| 2037 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 2038 | source "arch/arm/mach-qemu/Kconfig" |
| 2039 | |
Simon Glass | 2cffe66 | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 2040 | source "arch/arm/mach-rockchip/Kconfig" |
| 2041 | |
Minkyu Kang | 56b820a | 2015-11-20 15:24:57 +0900 | [diff] [blame] | 2042 | source "arch/arm/mach-s5pc1xx/Kconfig" |
Simon Glass | 96aa072 | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 2043 | |
Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 2044 | source "arch/arm/mach-snapdragon/Kconfig" |
| 2045 | |
Masahiro Yamada | 144a3e0 | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 2046 | source "arch/arm/mach-socfpga/Kconfig" |
| 2047 | |
Patrice Chotard | 5b42824 | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 2048 | source "arch/arm/mach-sti/Kconfig" |
| 2049 | |
Vikas Manocha | 95c8919 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 2050 | source "arch/arm/mach-stm32/Kconfig" |
| 2051 | |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 2052 | source "arch/arm/mach-stm32mp/Kconfig" |
| 2053 | |
Masahiro Yamada | 4976a22 | 2017-04-28 19:42:18 +0900 | [diff] [blame] | 2054 | source "arch/arm/mach-sunxi/Kconfig" |
| 2055 | |
Masahiro Yamada | ed1632a | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 2056 | source "arch/arm/mach-tegra/Kconfig" |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 2057 | |
Stephan Gerhold | 4f1170f | 2020-01-04 18:45:17 +0100 | [diff] [blame] | 2058 | source "arch/arm/mach-u8500/Kconfig" |
| 2059 | |
Masahiro Yamada | f856398 | 2015-02-27 02:26:42 +0900 | [diff] [blame] | 2060 | source "arch/arm/mach-uniphier/Kconfig" |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 2061 | |
Stefan Agner | d53c0a4 | 2017-03-13 18:41:36 -0700 | [diff] [blame] | 2062 | source "arch/arm/cpu/armv7/vf610/Kconfig" |
| 2063 | |
Masahiro Yamada | 43246cc | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 2064 | source "arch/arm/mach-zynq/Kconfig" |
Masahiro Yamada | 73a5b1a | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 2065 | |
Michal Simek | 7f60b23 | 2019-01-17 08:22:43 +0100 | [diff] [blame] | 2066 | source "arch/arm/mach-zynqmp/Kconfig" |
| 2067 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 2068 | source "arch/arm/mach-versal/Kconfig" |
| 2069 | |
Michal Simek | b513bcd | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 2070 | source "arch/arm/mach-zynqmp-r5/Kconfig" |
| 2071 | |
Hans de Goede | 8543735 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 2072 | source "arch/arm/cpu/armv7/Kconfig" |
| 2073 | |
Linus Walleij | 7477139 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 2074 | source "arch/arm/cpu/armv8/Kconfig" |
| 2075 | |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 2076 | source "arch/arm/mach-imx/Kconfig" |
Boris BREZILLON | 6b9b9a0 | 2015-03-04 13:13:04 +0100 | [diff] [blame] | 2077 | |
Stefan Bosch | 6563ea2 | 2020-07-10 19:07:26 +0200 | [diff] [blame] | 2078 | source "arch/arm/mach-nexell/Kconfig" |
| 2079 | |
Usama Arif | 9218a11 | 2020-08-12 16:12:53 +0100 | [diff] [blame] | 2080 | source "board/armltd/total_compute/Kconfig" |
| 2081 | |
Heiko Schocher | f116396 | 2016-06-07 08:31:25 +0200 | [diff] [blame] | 2082 | source "board/bosch/shc/Kconfig" |
Sjoerd Simons | f93564c | 2019-02-25 15:33:00 +0000 | [diff] [blame] | 2083 | source "board/bosch/guardian/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2084 | source "board/CarMediaLab/flea3/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2085 | source "board/Marvell/aspenite/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2086 | source "board/Marvell/gplugd/Kconfig" |
Suneel Garapati | addfabc | 2019-10-19 18:37:55 -0700 | [diff] [blame] | 2087 | source "board/Marvell/octeontx/Kconfig" |
Suneel Garapati | d9e7246 | 2019-10-19 18:47:37 -0700 | [diff] [blame] | 2088 | source "board/Marvell/octeontx2/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2089 | source "board/armltd/vexpress64/Kconfig" |
Alex Nemirovsky | 1ecad07 | 2020-01-30 12:34:59 -0800 | [diff] [blame] | 2090 | source "board/cortina/presidio-asic/Kconfig" |
Philippe Reynes | 2d29918 | 2019-01-31 18:57:36 +0100 | [diff] [blame] | 2091 | source "board/broadcom/bcm963158/Kconfig" |
Philippe Reynes | 0d87fc4 | 2020-01-07 20:14:17 +0100 | [diff] [blame] | 2092 | source "board/broadcom/bcm968360bg/Kconfig" |
Philippe Reynes | 697f15e | 2018-10-11 18:31:58 +0200 | [diff] [blame] | 2093 | source "board/broadcom/bcm968580xref/Kconfig" |
Rayagonda Kokatanur | 1d8fa36 | 2020-07-15 22:48:55 +0530 | [diff] [blame] | 2094 | source "board/broadcom/bcmns3/Kconfig" |
Sergey Temerkhanov | 69f7a03 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 2095 | source "board/cavium/thunderx/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2096 | source "board/cirrus/edb93xx/Kconfig" |
Felix Brack | 1ba8c9e | 2018-01-23 18:27:22 +0100 | [diff] [blame] | 2097 | source "board/eets/pdu001/Kconfig" |
Bin Meng | 5329042 | 2018-10-15 02:21:18 -0700 | [diff] [blame] | 2098 | source "board/emulation/qemu-arm/Kconfig" |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 2099 | source "board/freescale/ls2080aqds/Kconfig" |
| 2100 | source "board/freescale/ls2080ardb/Kconfig" |
Ashish Kumar | 227b4bc | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 2101 | source "board/freescale/ls1088a/Kconfig" |
Yuantian Tang | 92f18ff | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 2102 | source "board/freescale/ls1028a/Kconfig" |
Wang Huan | f0ce7d6 | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 2103 | source "board/freescale/ls1021aqds/Kconfig" |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 2104 | source "board/freescale/ls1043aqds/Kconfig" |
Wang Huan | ddf89f9 | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 2105 | source "board/freescale/ls1021atwr/Kconfig" |
Jianchao Wang | e5332ba | 2019-07-19 00:30:01 +0300 | [diff] [blame] | 2106 | source "board/freescale/ls1021atsn/Kconfig" |
Feng Li | 39e112d | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 2107 | source "board/freescale/ls1021aiot/Kconfig" |
Shaohui Xie | 085ac1c | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 2108 | source "board/freescale/ls1046aqds/Kconfig" |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 2109 | source "board/freescale/ls1043ardb/Kconfig" |
Mingkai Hu | d239651 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 2110 | source "board/freescale/ls1046ardb/Kconfig" |
Vabhav Sharma | 5164191 | 2019-06-06 12:35:28 +0000 | [diff] [blame] | 2111 | source "board/freescale/ls1046afrwy/Kconfig" |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 2112 | source "board/freescale/ls1012aqds/Kconfig" |
Prabhakar Kushwaha | a315c66 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 2113 | source "board/freescale/ls1012ardb/Kconfig" |
Prabhakar Kushwaha | 9e7ee7b | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 2114 | source "board/freescale/ls1012afrdm/Kconfig" |
Priyanka Jain | fd45ca0 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 2115 | source "board/freescale/lx2160a/Kconfig" |
Marcin Niestroj | 20315d2 | 2017-01-25 09:53:08 +0100 | [diff] [blame] | 2116 | source "board/grinn/chiliboard/Kconfig" |
Tom Rini | bdf4f18 | 2015-09-02 15:32:20 -0400 | [diff] [blame] | 2117 | source "board/hisilicon/hikey/Kconfig" |
Manivannan Sadhasivam | cf33f92 | 2019-08-02 20:40:09 +0530 | [diff] [blame] | 2118 | source "board/hisilicon/hikey960/Kconfig" |
Jorge Ramirez-Ortiz | f5b3842 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 2119 | source "board/hisilicon/poplar/Kconfig" |
Ladislav Michl | 10bdc71 | 2017-04-01 17:17:16 +0200 | [diff] [blame] | 2120 | source "board/isee/igep003x/Kconfig" |
Michael Walle | 36ba764 | 2020-10-15 23:08:57 +0200 | [diff] [blame] | 2121 | source "board/kontron/sl28/Kconfig" |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 2122 | source "board/myir/mys_6ulx/Kconfig" |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 2123 | source "board/seeed/npi_imx6ull/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2124 | source "board/spear/spear300/Kconfig" |
| 2125 | source "board/spear/spear310/Kconfig" |
| 2126 | source "board/spear/spear320/Kconfig" |
| 2127 | source "board/spear/spear600/Kconfig" |
| 2128 | source "board/spear/x600/Kconfig" |
Vikas Manocha | 33913c5 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 2129 | source "board/st/stv0991/Kconfig" |
Enric Balletbò i Serra | 9d89b08 | 2015-09-07 07:43:20 +0200 | [diff] [blame] | 2130 | source "board/tcl/sl50/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2131 | source "board/toradex/colibri_pxa270/Kconfig" |
Parthiban Nallathambi | 5e9147d | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 2132 | source "board/variscite/dart_6ul/Kconfig" |
Yegor Yefremov | fa8b71b | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 2133 | source "board/vscom/baltos/Kconfig" |
liu hao | 1c4a2c4 | 2019-10-31 07:51:08 +0000 | [diff] [blame] | 2134 | source "board/phytium/durian/Kconfig" |
Andrii Anisov | 355d1e4 | 2020-08-06 12:42:47 +0300 | [diff] [blame] | 2135 | source "board/xen/xenguest_arm64/Kconfig" |
Aleksandar Gerasimovski | 032bdbc | 2021-02-22 18:18:11 +0000 | [diff] [blame] | 2136 | source "board/keymile/Kconfig" |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2137 | |
Masahiro Yamada | df00e52 | 2014-09-01 11:06:34 +0900 | [diff] [blame] | 2138 | source "arch/arm/Kconfig.debug" |
| 2139 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 2140 | endmenu |
Philipp Tomsich | 2d6a0cc | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 2141 | |
| 2142 | config SPL_LDSCRIPT |
Michal Simek | f751ff5 | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 2143 | default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK |
| 2144 | default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136 |
Philipp Tomsich | 2d6a0cc | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 2145 | default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64 |