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