blob: 7a3141e92b3722ad4472045e24ffc2b8e61776ef [file] [log] [blame]
Tom Rinie33610c2021-12-14 13:36:35 -05001config ARCH_MAP_SYSMEM
Tom Rini53320122022-04-06 09:21:25 -04002 depends on SANDBOX
Tom Rinie33610c2021-12-14 13:36:35 -05003 def_bool y
4
Masahiro Yamada58654502015-07-15 20:59:29 +09005config CREATE_ARCH_SYMLINK
6 bool
7
Masahiro Yamada332b8292016-06-28 10:48:42 +09008config HAVE_ARCH_IOREMAP
9 bool
10
Heinrich Schuchardt8593a632024-11-03 18:54:00 +010011config HAVE_SETJMP
12 bool
13 help
14 The architecture supports setjmp() and longjmp().
15
Jerome Forissierc632c152025-04-18 16:09:29 +020016config HAVE_INITJMP
17 bool
18 depends on HAVE_SETJMP
19 help
20 The architecture supports initjmp(), a non-standard companion to
21 setjmp() and longjmp().
22
Jiaxun Yang33e289a2024-07-17 16:07:02 +080023config SUPPORT_BIG_ENDIAN
24 bool
25
26config SUPPORT_LITTLE_ENDIAN
27 bool
28 default y if !SUPPORT_BIG_ENDIAN
29
Tom Rini3ef67ae2021-08-26 11:47:59 -040030config SYS_CACHE_SHIFT_4
31 bool
32
33config SYS_CACHE_SHIFT_5
34 bool
35
36config SYS_CACHE_SHIFT_6
37 bool
38
39config SYS_CACHE_SHIFT_7
40 bool
41
Dan Carpenter13ec9f82024-03-04 10:04:15 +030042config 32BIT
43 bool
44
45config 64BIT
46 bool
Andrew Goodbody5b5322c2024-12-16 18:07:35 +000047 help
48 Indicates that U-Boot proper will be built for a 64 bit
49 architecture.
50
51config SPL_64BIT
52 bool
53 help
54 Indicates that SPL will be built for a 64 bit architecture.
Dan Carpenter13ec9f82024-03-04 10:04:15 +030055
Tom Rini3ef67ae2021-08-26 11:47:59 -040056config SYS_CACHELINE_SIZE
57 int
58 default 128 if SYS_CACHE_SHIFT_7
59 default 64 if SYS_CACHE_SHIFT_6
60 default 32 if SYS_CACHE_SHIFT_5
61 default 16 if SYS_CACHE_SHIFT_4
Yu-Chien Peter Lin6eb214a2025-01-10 16:53:08 +080062 # Fall-back for MIPS and RISC-V
63 default 64 if RISCV
Tom Rini3ef67ae2021-08-26 11:47:59 -040064 default 32 if MIPS
65
Simon Glassb87153c2020-12-16 21:20:06 -070066config LINKER_LIST_ALIGN
67 int
68 default 32 if SANDBOX
69 default 8 if ARM64 || X86
70 default 4
71 help
72 Force the each linker list to be aligned to this boundary. This
73 is required if ll_entry_get() is used, since otherwise the linker
74 may add padding into the table, thus breaking it.
75 See linker_lists.rst for full details.
76
Masahiro Yamada804bc5e2014-07-30 14:08:15 +090077choice
78 prompt "Architecture select"
79 default SANDBOX
80
81config ARC
82 bool "ARC architecture"
Michal Simek84f3dec2018-07-23 15:55:13 +020083 select ARC_TIMER
Vlad Zakharova465df72017-03-21 14:49:49 +030084 select CLK
Michal Simekd5d59bd2020-08-19 10:44:20 +020085 select DM
Michal Simek84f3dec2018-07-23 15:55:13 +020086 select HAVE_PRIVATE_LIBGCC
87 select SUPPORT_OF_CONTROL
Tom Rini3ef67ae2021-08-26 11:47:59 -040088 select SYS_CACHE_SHIFT_7
Vlad Zakharova465df72017-03-21 14:49:49 +030089 select TIMER
Jiaxun Yang33e289a2024-07-17 16:07:02 +080090 select SUPPORT_BIG_ENDIAN
91 select SUPPORT_LITTLE_ENDIAN
Tom Rini7b7e0ad2022-07-31 21:08:23 -040092 select SYS_BIG_ENDIAN if CPU_BIG_ENDIAN
93 select SYS_LITTLE_ENDIAN if !CPU_BIG_ENDIAN
Masahiro Yamada804bc5e2014-07-30 14:08:15 +090094
95config ARM
96 bool "ARM architecture"
Heinrich Schuchardt8593a632024-11-03 18:54:00 +010097 select HAVE_SETJMP
Jerome Forissierfe8aebb2025-04-18 16:09:30 +020098 select HAVE_INITJMP
Marek Behún4778a582021-05-20 13:24:22 +020099 select ARCH_SUPPORTS_LTO
Masahiro Yamada58654502015-07-15 20:59:29 +0900100 select CREATE_ARCH_SYMLINK
Masahiro Yamada06280592015-07-03 16:13:09 +0900101 select HAVE_PRIVATE_LIBGCC if !ARM64
Simon Glasse170f682021-12-01 09:02:38 -0700102 select SUPPORT_ACPI
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800103 select SUPPORT_LITTLE_ENDIAN
Masahiro Yamada9fadbc82014-09-22 19:59:05 +0900104 select SUPPORT_OF_CONTROL
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900105
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900106config M68K
107 bool "M68000 architecture"
angelo@sysam.it5e798172015-12-06 17:47:59 +0100108 select HAVE_PRIVATE_LIBGCC
Angelo Dureghello6000ebc2023-02-07 23:45:03 +0100109 select USE_PRIVATE_LIBGCC
Derald D. Woodseb730bd2018-01-22 17:17:10 -0600110 select SYS_BOOT_GET_CMDLINE
111 select SYS_BOOT_GET_KBD
Tom Rini3ef67ae2021-08-26 11:47:59 -0400112 select SYS_CACHE_SHIFT_4
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800113 select SUPPORT_BIG_ENDIAN
Angelo Dureghelloe007b152019-03-13 21:46:51 +0100114 select SUPPORT_OF_CONTROL
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900115
116config MICROBLAZE
117 bool "MicroBlaze architecture"
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800118 select SUPPORT_BIG_ENDIAN
119 select SUPPORT_LITTLE_ENDIAN
Masahiro Yamada9fadbc82014-09-22 19:59:05 +0900120 select SUPPORT_OF_CONTROL
Michal Simeke8e52772022-06-24 14:16:32 +0200121 imply CMD_TIMER
122 imply SPL_REGMAP if SPL
123 imply SPL_TIMER if SPL
124 imply TIMER
125 imply XILINX_TIMER
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900126
127config MIPS
128 bool "MIPS architecture"
Masahiro Yamada332b8292016-06-28 10:48:42 +0900129 select HAVE_ARCH_IOREMAP
Masahiro Yamada9520b712014-10-24 01:30:43 +0900130 select HAVE_PRIVATE_LIBGCC
Daniel Schwierzeckde5b6e22015-12-19 20:20:48 +0100131 select SUPPORT_OF_CONTROL
Sean Anderson13871e12022-04-12 10:59:04 -0400132 select SPL_SEPARATE_BSS if SPL
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900133
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900134config NIOS2
135 bool "Nios II architecture"
Thomas Chouc6170262015-10-21 21:34:57 +0800136 select CPU
Michal Simek84f3dec2018-07-23 15:55:13 +0200137 select DM
Tom Rini7d3684a2023-01-16 15:46:49 -0500138 select DM_EVENT
Michal Simek84f3dec2018-07-23 15:55:13 +0200139 select OF_CONTROL
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800140 select SUPPORT_LITTLE_ENDIAN
Michal Simek84f3dec2018-07-23 15:55:13 +0200141 select SUPPORT_OF_CONTROL
Michal Simek2e7c8192018-07-23 15:55:14 +0200142 imply CMD_DM
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900143
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900144config PPC
145 bool "PowerPC architecture"
Masahiro Yamada9520b712014-10-24 01:30:43 +0900146 select HAVE_PRIVATE_LIBGCC
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800147 select SUPPORT_BIG_ENDIAN
Simon Glass90f83c82015-02-07 11:51:35 -0700148 select SUPPORT_OF_CONTROL
Derald D. Woodseb730bd2018-01-22 17:17:10 -0600149 select SYS_BOOT_GET_CMDLINE
150 select SYS_BOOT_GET_KBD
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900151
Rick Chen3301bfc2017-12-26 13:55:58 +0800152config RISCV
Bin Meng6b697752018-09-26 06:55:06 -0700153 bool "RISC-V architecture"
Anup Patel0af3e852019-02-25 08:14:04 +0000154 select CREATE_ARCH_SYMLINK
Heinrich Schuchardt8593a632024-11-03 18:54:00 +0100155 select HAVE_SETJMP
Heinrich Schuchardt934addc2023-12-19 16:04:06 +0100156 select SUPPORT_ACPI
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800157 select SUPPORT_LITTLE_ENDIAN
Rick Chen3301bfc2017-12-26 13:55:58 +0800158 select SUPPORT_OF_CONTROL
Bin Menga760eba2018-09-26 06:55:19 -0700159 select OF_CONTROL
160 select DM
Tom Rini7d3684a2023-01-16 15:46:49 -0500161 select DM_EVENT
Zong Li324463e2022-11-16 07:08:39 +0000162 imply SPL_SEPARATE_BSS if SPL
Bin Meng3880c382018-09-26 06:55:20 -0700163 imply DM_SERIAL
Bin Meng3880c382018-09-26 06:55:20 -0700164 imply DM_MMC
165 imply DM_SPI
166 imply DM_SPI_FLASH
167 imply BLK
168 imply CLK
169 imply MTD
170 imply TIMER
Bin Menga760eba2018-09-26 06:55:19 -0700171 imply CMD_DM
Lukas Auer396f0bd2019-08-21 21:14:45 +0200172 imply SPL_DM
173 imply SPL_OF_CONTROL
174 imply SPL_LIBCOMMON_SUPPORT
175 imply SPL_LIBGENERIC_SUPPORT
Simon Glassf4d60392021-08-08 12:20:12 -0600176 imply SPL_SERIAL
Lukas Auer396f0bd2019-08-21 21:14:45 +0200177 imply SPL_TIMER
Rick Chen3301bfc2017-12-26 13:55:58 +0800178
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900179config SANDBOX
180 bool "Sandbox"
Heinrich Schuchardt8593a632024-11-03 18:54:00 +0100181 select HAVE_SETJMP
Marek Behún72434932021-05-20 13:24:07 +0200182 select ARCH_SUPPORTS_LTO
Tom Rini22d567e2017-01-22 19:43:11 -0500183 select BOARD_LATE_INIT
Michael Walle8ffe86c2020-05-22 14:07:38 +0200184 select BZIP2
Simon Glassc13bbdc2023-10-26 14:31:34 -0400185 select CMD_POWEROFF if CMDLINE
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900186 select DM
Tom Rini7d3684a2023-01-16 15:46:49 -0500187 select DM_EVENT
Andrew Scull451b8b12022-05-30 10:00:12 +0000188 select DM_FUZZING_ENGINE
Michal Simek84f3dec2018-07-23 15:55:13 +0200189 select DM_GPIO
190 select DM_I2C
Masahiro Yamadab11b2352016-09-08 18:47:35 +0900191 select DM_KEYBOARD
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900192 select DM_SERIAL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900193 select DM_SPI
Michal Simek84f3dec2018-07-23 15:55:13 +0200194 select DM_SPI_FLASH
Michael Walle8ffe86c2020-05-22 14:07:38 +0200195 select GZIP_COMPRESSED
Tom Rini6a4a9082022-11-19 18:45:23 -0500196 select IO_TRACE
Tom Rinic20bb732017-07-22 18:36:16 -0400197 select LZO
Tom Rinie97402e2025-01-14 19:22:09 -0600198 select MMC
Tom Riniddb1ec12024-01-10 13:46:10 -0500199 select MTD
Heinrich Schuchardta3fc9a42020-03-14 12:13:40 +0100200 select OF_BOARD_SETUP
Ramon Friedc64f19b2019-04-27 11:15:23 +0300201 select PCI_ENDPOINT
Michal Simek84f3dec2018-07-23 15:55:13 +0200202 select SPI
203 select SUPPORT_OF_CONTROL
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800204 select SUPPORT_BIG_ENDIAN
205 select SUPPORT_LITTLE_ENDIAN
Simon Glassc13bbdc2023-10-26 14:31:34 -0400206 select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
Tom Rini3ef67ae2021-08-26 11:47:59 -0400207 select SYS_CACHE_SHIFT_4
Wasim Khan4dab60b2021-03-08 16:48:16 +0100208 select IRQ
Simon Glassc13bbdc2023-10-26 14:31:34 -0400209 select SUPPORT_EXTENSION_SCAN if CMDLINE
Simon Glassa6cee932021-12-01 09:02:36 -0700210 select SUPPORT_ACPI
Bin Meng0c0d9b02018-08-02 23:58:03 -0700211 imply BITREVERSE
Simon Glass78b0ef52018-11-15 18:43:53 -0700212 select BLOBLIST
Marek Behúnf8bd43f2021-05-20 13:24:08 +0200213 imply LTO
Michal Simek2e7c8192018-07-23 15:55:14 +0200214 imply CMD_DM
Heinrich Schuchardt0e298732020-11-12 00:29:59 +0100215 imply CMD_EXCEPTION
Simon Glassf4cb4742017-05-17 03:25:44 -0600216 imply CMD_GETTIME
Simon Glass027608e2017-05-17 03:25:25 -0600217 imply CMD_HASH
Simon Glass3bebbe62017-05-17 03:25:34 -0600218 imply CMD_IO
Simon Glass30daabc2017-05-17 03:25:36 -0600219 imply CMD_IOTRACE
Simon Glassbecaa8f2017-05-17 03:25:43 -0600220 imply CMD_LZMADEC
Tom Rinie5289a72019-05-29 17:01:28 -0400221 imply CMD_SF
Michal Simek84f3dec2018-07-23 15:55:13 +0200222 imply CMD_SF_TEST
Tom Rinid8532af2017-06-02 11:03:50 -0400223 imply CRC32_VERIFY
224 imply FAT_WRITE
Rajan Vajab3b2ddb2018-09-19 03:43:46 -0700225 imply FIRMWARE
Andrew Scull451b8b12022-05-30 10:00:12 +0000226 imply FUZZING_ENGINE_SANDBOX
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100227 imply HASH_VERIFY
Tom Rinid8532af2017-06-02 11:03:50 -0400228 imply LZMA
Jens Wiklanderdca252d2018-09-25 16:40:17 +0200229 imply TEE
Jens Wiklanderf1edae92018-09-25 16:40:23 +0200230 imply AVB_VERIFY
231 imply LIBAVB
232 imply CMD_AVB
Heinrich Schuchardtce33bcd2022-01-16 13:04:06 +0100233 imply PARTITION_TYPE_GUID
Igor Opaniuk623369c2021-02-14 16:27:27 +0100234 imply SCP03
235 imply CMD_SCP03
Jens Wiklanderf1edae92018-09-25 16:40:23 +0200236 imply UDP_FUNCTION_FASTBOOT
Bin Meng1bb290d2018-10-15 02:21:26 -0700237 imply VIRTIO_MMIO
238 imply VIRTIO_PCI
239 imply VIRTIO_SANDBOX
Simon Glasse6832e62024-11-07 14:31:48 -0700240 # Re-enable this when fully implemented
241 # imply VIRTIO_BLK
Bin Meng1bb290d2018-10-15 02:21:26 -0700242 imply VIRTIO_NET
Simon Glass799b29b2018-12-10 10:37:31 -0700243 imply DM_SOUND
Ramon Friedc64f19b2019-04-27 11:15:23 +0300244 imply PCI_SANDBOX_EP
Simon Glass98d88f82019-02-16 20:24:49 -0700245 imply PCH
Alex Marginean0daa53a2019-06-03 19:12:28 +0300246 imply PHYLIB
247 imply DM_MDIO
Alex Marginean0649be52019-07-12 10:13:53 +0300248 imply DM_MDIO_MUX
Simon Glasse264be42023-05-04 16:54:57 -0600249 imply ACPI
Simon Glass8c501022019-12-06 21:41:54 -0700250 imply ACPI_PMC
251 imply ACPI_PMC_SANDBOX
252 imply CMD_PMC
John Chaufce6f982020-07-02 12:01:21 +0800253 imply CMD_CLONE
Simon Glass07a88862020-11-05 10:33:38 -0700254 imply SILENT_CONSOLE
Simon Glass529e2082020-11-05 10:33:48 -0700255 imply BOOTARGS_SUBST
Claudiu Manoild9eaa922021-03-14 20:14:57 +0800256 imply PHY_FIXED
257 imply DM_DSA
Kory Maincent965a34f2021-05-04 19:31:23 +0200258 imply CMD_EXTENSION
Simon Glass278efc682021-11-24 09:26:44 -0700259 imply KEYBOARD
Simon Glassef9e7622021-11-24 09:26:42 -0700260 imply PHYSMEM
Simon Glass29e64b52021-12-01 09:02:43 -0700261 imply GENERATE_ACPI_TABLE
Philippe Reynes462d1632022-03-28 22:56:53 +0200262 imply BINMAN
Alexander Gendin038cb022023-10-09 01:24:36 +0000263 imply CMD_MBR
264 imply CMD_MMC
Simon Glassb1dee9e2023-10-26 14:31:33 -0400265 imply BOOTSTD_DEFAULTS if BOOTSTD_FULL && CMDLINE
266 imply BOOTMETH_DISTRO if BOOTSTD_FULL && CMDLINE
267 imply CMD_SYSBOOT if BOOTSTD_FULL
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900268
269config SH
270 bool "SuperH architecture"
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800271 select SUPPORT_LITTLE_ENDIAN
Masahiro Yamada9520b712014-10-24 01:30:43 +0900272 select HAVE_PRIVATE_LIBGCC
Marek Vasut8fc9fa12019-08-31 18:27:58 +0200273 select SUPPORT_OF_CONTROL
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900274
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900275config X86
276 bool "x86 architecture"
Heinrich Schuchardt8593a632024-11-03 18:54:00 +0100277 select HAVE_SETJMP
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600278 select SUPPORT_SPL
279 select SUPPORT_TPL
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800280 select SUPPORT_LITTLE_ENDIAN
Masahiro Yamada58654502015-07-15 20:59:29 +0900281 select CREATE_ARCH_SYMLINK
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900282 select DM
Bin Meng59c4aa42018-10-15 02:21:16 -0700283 select HAVE_ARCH_IOMAP
Michal Simek84f3dec2018-07-23 15:55:13 +0200284 select HAVE_PRIVATE_LIBGCC
285 select OF_CONTROL
Bin Meng0e0204d2017-07-30 06:23:16 -0700286 select PCI
Simon Glassa6cee932021-12-01 09:02:36 -0700287 select SUPPORT_ACPI
Michal Simek84f3dec2018-07-23 15:55:13 +0200288 select SUPPORT_OF_CONTROL
Tom Rini3ef67ae2021-08-26 11:47:59 -0400289 select SYS_CACHE_SHIFT_6
Bin Mengf0e1c3e2017-07-30 06:23:07 -0700290 select TIMER
Michal Simek84f3dec2018-07-23 15:55:13 +0200291 select USE_PRIVATE_LIBGCC
Bin Mengf0e1c3e2017-07-30 06:23:07 -0700292 select X86_TSC_TIMER
Wasim Khan4a7fef72021-03-08 16:48:15 +0100293 select IRQ
Simon Glassf69c0092020-07-19 13:55:52 -0600294 imply HAS_ROM if X86_RESET_VECTOR
Bin Meng73f5bc12017-07-30 19:24:02 -0700295 imply BLK
Michal Simek2e7c8192018-07-23 15:55:14 +0200296 imply CMD_DM
Michal Simek84f3dec2018-07-23 15:55:13 +0200297 imply CMD_FPGA_LOADMK
298 imply CMD_GETTIME
299 imply CMD_IO
300 imply CMD_IRQ
301 imply CMD_PCI
Tom Rinie5289a72019-05-29 17:01:28 -0400302 imply CMD_SF
Michal Simek84f3dec2018-07-23 15:55:13 +0200303 imply CMD_SF_TEST
Bin Meng0e0204d2017-07-30 06:23:16 -0700304 imply DM_GPIO
305 imply DM_KEYBOARD
Simon Glass828b7252017-07-30 19:24:01 -0700306 imply DM_MMC
Bin Meng0e0204d2017-07-30 06:23:16 -0700307 imply DM_RTC
Tom Rini15a2ab52023-10-27 20:59:51 -0400308 imply SCSI
Michal Simek84f3dec2018-07-23 15:55:13 +0200309 imply DM_SERIAL
Tom Riniddb1ec12024-01-10 13:46:10 -0500310 imply MTD
Bin Meng0e0204d2017-07-30 06:23:16 -0700311 imply DM_SPI
312 imply DM_SPI_FLASH
313 imply DM_USB
Simon Glass1cedca12023-08-21 21:17:01 -0600314 imply LAST_STAGE_INIT
Simon Glass52cb5042022-10-18 07:46:31 -0600315 imply VIDEO
Bin Mengaf5b8d22018-07-19 03:07:33 -0700316 imply SYSRESET
Kever Yang525ea472019-04-02 20:41:25 +0800317 imply SPL_SYSRESET
Bin Mengaf5b8d22018-07-19 03:07:33 -0700318 imply SYSRESET_X86
Chris Packhamb110e112017-08-28 20:50:46 +1200319 imply USB_ETHER_ASIX
320 imply USB_ETHER_SMSC95XX
Michal Simek84f3dec2018-07-23 15:55:13 +0200321 imply USB_HOST_ETHER
Simon Glass98d88f82019-02-16 20:24:49 -0700322 imply PCH
Simon Glassef9e7622021-11-24 09:26:42 -0700323 imply PHYSMEM
Simon Glass56382fb2019-05-02 10:52:24 -0600324 imply RTC_MC146818
Simon Glasse264be42023-05-04 16:54:57 -0600325 imply ACPI
Simon Glassb0282282021-12-01 09:02:39 -0700326 imply ACPIGEN if !QEMU && !EFI_APP
Simon Glassbee77f62020-11-05 06:32:17 -0700327 imply SYSINFO if GENERATE_SMBIOS_TABLE
328 imply SYSINFO_SMBIOS if GENERATE_SMBIOS_TABLE
Simon Glass65831d92021-12-18 11:27:50 -0700329 imply TIMESTAMP
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900330
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600331 # Thing to enable for when SPL/TPL are enabled: SPL
332 imply SPL_DM
333 imply SPL_OF_LIBFDT
Simon Glass284cb9c2021-07-10 21:14:31 -0600334 imply SPL_DRIVERS_MISC
Simon Glass035939e2021-07-10 21:14:30 -0600335 imply SPL_GPIO
Simon Glass7b1ecb82019-12-06 21:42:51 -0700336 imply SPL_PINCTRL
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600337 imply SPL_LIBCOMMON_SUPPORT
338 imply SPL_LIBGENERIC_SUPPORT
Simon Glassf4d60392021-08-08 12:20:12 -0600339 imply SPL_SERIAL
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600340 imply SPL_SPI_FLASH_SUPPORT
Simon Glassa5820472021-08-08 12:20:14 -0600341 imply SPL_SPI
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600342 imply SPL_OF_CONTROL
343 imply SPL_TIMER
344 imply SPL_REGMAP
345 imply SPL_SYSCON
346 # TPL
347 imply TPL_DM
Simon Glass284cb9c2021-07-10 21:14:31 -0600348 imply TPL_DRIVERS_MISC
Simon Glass035939e2021-07-10 21:14:30 -0600349 imply TPL_GPIO
Simon Glass7b1ecb82019-12-06 21:42:51 -0700350 imply TPL_PINCTRL
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600351 imply TPL_LIBCOMMON_SUPPORT
352 imply TPL_LIBGENERIC_SUPPORT
Simon Glassf4d60392021-08-08 12:20:12 -0600353 imply TPL_SERIAL
Simon Glassc9ae1ae2019-04-25 21:58:45 -0600354 imply TPL_OF_CONTROL
355 imply TPL_TIMER
356 imply TPL_REGMAP
357 imply TPL_SYSCON
358
Chris Zankel1387dab2016-08-10 18:36:44 +0300359config XTENSA
360 bool "Xtensa architecture"
361 select CREATE_ARCH_SYMLINK
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800362 select SUPPORT_LITTLE_ENDIAN
Chris Zankel1387dab2016-08-10 18:36:44 +0300363 select SUPPORT_OF_CONTROL
364
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900365endchoice
366
Masahiro Yamada52a5f972014-09-14 03:01:48 +0900367config SYS_ARCH
368 string
369 help
370 This option should contain the architecture name to build the
371 appropriate arch/<CONFIG_SYS_ARCH> directory.
372 All the architectures should specify this option correctly.
373
374config SYS_CPU
375 string
376 help
377 This option should contain the CPU name to build the correct
378 arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU> directory.
379
380 This is optional. For those targets without the CPU directory,
381 leave this option empty.
382
383config SYS_SOC
384 string
385 help
386 This option should contain the SoC name to build the directory
387 arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU>/<CONFIG_SYS_SOC>.
388
389 This is optional. For those targets without the SoC directory,
390 leave this option empty.
391
392config SYS_VENDOR
393 string
394 help
395 This option should contain the vendor name of the target board.
396 If it is set and
397 board/<CONFIG_SYS_VENDOR>/common/Makefile exists, the vendor common
398 directory is compiled.
399 If CONFIG_SYS_BOARD is also set, the sources under
400 board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> directory are compiled.
401
402 This is optional. For those targets without the vendor directory,
403 leave this option empty.
404
405config SYS_BOARD
406 string
407 help
408 This option should contain the name of the target board.
409 If it is set, either board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
410 or board/<CONFIG_SYS_BOARD> directory is compiled depending on
411 whether CONFIG_SYS_VENDOR is set or not.
412
413 This is optional. For those targets without the board directory,
414 leave this option empty.
415
416config SYS_CONFIG_NAME
Tom Rinibce01ee2024-01-22 17:39:20 -0500417 string "Board header file" if ARCH_MESON || ARCH_VERSAL || \
418 ARCH_VERSAL_NET || ARCH_ZYNQ || ARCH_ZYNQMP || \
419 ARCH_ZYNQMP_R5 || MICROBLAZE || NIOS2
420 default "meson64" if ARCH_MESON
421 default "microblaze-generic" if MICROBLAZE
422 default "xilinx_versal" if ARCH_VERSAL
423 default "xilinx_versal_net" if ARCH_VERSAL_NET
424 default "xilinx_zynqmp" if ARCH_ZYNQMP
425 default "xilinx_zynqmp_r5" if ARCH_ZYNQMP_R5
426 default "zynq-common" if ARCH_ZYNQ
Masahiro Yamada52a5f972014-09-14 03:01:48 +0900427 help
428 This option should contain the base name of board header file.
429 The header file include/configs/<CONFIG_SYS_CONFIG_NAME>.h
430 should be included from include/config.h.
431
Vignesh Raghavendra384c1412019-04-22 21:43:32 +0530432config SYS_DISABLE_DCACHE_OPS
433 bool
434 help
435 This option disables dcache flush and dcache invalidation
436 operations. For example, on coherent systems where cache
437 operatios are not required, enable this option to avoid them.
438 Note that, its up to the individual architectures to implement
439 this functionality.
440
Tom Rinie9269a02021-12-12 22:12:30 -0500441config SYS_IMMR
Tom Rini0c4dded2022-03-30 09:30:15 -0400442 hex "Address for the Internal Memory-Mapped Registers (IMMR) window"
Tom Rinie9269a02021-12-12 22:12:30 -0500443 depends on PPC || FSL_LSCH2 || FSL_LSCH3 || ARCH_LS1021A
444 default 0xFF000000 if MPC8xx
445 default 0xF0000000 if ARCH_MPC8313
446 default 0xE0000000 if MPC83xx && !ARCH_MPC8313
447 default 0x01000000 if ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3
Pali Rohárc68991e2022-05-02 18:29:25 +0200448 default 0xFFE00000 if ARCH_P1010 || ARCH_P1011 || ARCH_P1020 || \
449 ARCH_P1021 || ARCH_P1024 || ARCH_P1025 || \
450 ARCH_P2020
Tom Rinie9269a02021-12-12 22:12:30 -0500451 default SYS_CCSRBAR_DEFAULT
452 help
453 Address for the Internal Memory-Mapped Registers (IMMR) window used
454 to configure the features of many Freescale / NXP SoCs.
455
Tom Rinib73cd902022-12-02 16:42:36 -0500456config MONITOR_IS_IN_RAM
457 bool "U-Boot is loaded in to RAM by a pre-loader"
458 depends on M68K || NIOS2
459
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100460menu "Skipping low level initialization functions"
Tom Rini53320122022-04-06 09:21:25 -0400461 depends on ARM || MIPS || RISCV
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100462
463config SKIP_LOWLEVEL_INIT
464 bool "Skip calls to certain low level initialization functions"
Tom Rinie1e85442021-08-27 21:18:30 -0400465 help
466 If enabled, then certain low level initializations (like setting up
467 the memory controller) are omitted and/or U-Boot does not relocate
468 itself into RAM.
469 Normally this variable MUST NOT be defined. The only exception is
470 when U-Boot is loaded (to RAM) by some other boot loader or by a
471 debugger which performs these initializations itself.
472
473config SPL_SKIP_LOWLEVEL_INIT
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100474 bool "Skip calls to certain low level initialization functions in SPL"
475 depends on SPL
Tom Rinie1e85442021-08-27 21:18:30 -0400476 help
477 If enabled, then certain low level initializations (like setting up
478 the memory controller) are omitted and/or U-Boot does not relocate
479 itself into RAM.
480 Normally this variable MUST NOT be defined. The only exception is
481 when U-Boot is loaded (to RAM) by some other boot loader or by a
482 debugger which performs these initializations itself.
483
484config TPL_SKIP_LOWLEVEL_INIT
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100485 bool "Skip calls to certain low level initialization functions in TPL"
Tom Rinie1e85442021-08-27 21:18:30 -0400486 depends on SPL && ARM
487 help
488 If enabled, then certain low level initializations (like setting up
489 the memory controller) are omitted and/or U-Boot does not relocate
490 itself into RAM.
491 Normally this variable MUST NOT be defined. The only exception is
492 when U-Boot is loaded (to RAM) by some other boot loader or by a
493 debugger which performs these initializations itself.
494
495config SKIP_LOWLEVEL_INIT_ONLY
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100496 bool "Skip call to lowlevel_init during early boot ONLY"
Tom Rinie1e85442021-08-27 21:18:30 -0400497 depends on ARM
498 help
499 This allows just the call to lowlevel_init() to be skipped. The
500 normal CP15 init (such as enabling the instruction cache) is still
501 performed.
502
503config SPL_SKIP_LOWLEVEL_INIT_ONLY
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100504 bool "Skip call to lowlevel_init during early SPL boot ONLY"
Tom Rinie1e85442021-08-27 21:18:30 -0400505 depends on SPL && ARM
506 help
507 This allows just the call to lowlevel_init() to be skipped. The
508 normal CP15 init (such as enabling the instruction cache) is still
509 performed.
510
511config TPL_SKIP_LOWLEVEL_INIT_ONLY
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100512 bool "Skip call to lowlevel_init during early TPL boot ONLY"
Tom Rinie1e85442021-08-27 21:18:30 -0400513 depends on TPL && ARM
514 help
515 This allows just the call to lowlevel_init() to be skipped. The
516 normal CP15 init (such as enabling the instruction cache) is still
517 performed.
518
Heinrich Schuchardte6e7cb62022-12-30 19:41:28 +0100519endmenu
520
Tom Rini295ab162022-10-28 20:27:10 -0400521config SYS_HAS_NONCACHED_MEMORY
522 bool "Enable reserving a non-cached memory area for drivers"
523 depends on (ARM || MIPS) && (RTL8169 || MEDIATEK_ETH)
524 help
525 This is useful for drivers that would otherwise require a lot of
526 explicit cache maintenance. For some drivers it's also impossible to
527 properly maintain the cache. For example if the regions that need to
528 be flushed are not a multiple of the cache-line size, *and* padding
529 cannot be allocated between the regions to align them (i.e. if the
530 HW requires a contiguous array of regions, and the size of each
531 region is not cache-aligned), then a flush of one region may result
532 in overwriting data that hardware has written to another region in
533 the same cache-line. This can happen for example in network drivers
534 where descriptors for buffers are typically smaller than the CPU
535 cache-line (e.g. 16 bytes vs. 32 or 64 bytes).
536
537config SYS_NONCACHED_MEMORY
538 hex "Size in bytes of the non-cached memory area"
539 depends on SYS_HAS_NONCACHED_MEMORY
540 default 0x100000
541 help
542 Size of non-cached memory area. This area of memory will be typically
543 located right below the malloc() area and mapped uncached in the MMU.
544
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900545source "arch/arc/Kconfig"
546source "arch/arm/Kconfig"
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900547source "arch/m68k/Kconfig"
548source "arch/microblaze/Kconfig"
549source "arch/mips/Kconfig"
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900550source "arch/nios2/Kconfig"
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900551source "arch/powerpc/Kconfig"
552source "arch/sandbox/Kconfig"
553source "arch/sh/Kconfig"
Masahiro Yamada804bc5e2014-07-30 14:08:15 +0900554source "arch/x86/Kconfig"
Chris Zankel1387dab2016-08-10 18:36:44 +0300555source "arch/xtensa/Kconfig"
Rick Chen3301bfc2017-12-26 13:55:58 +0800556source "arch/riscv/Kconfig"
Tom Rinia67ff802022-03-23 17:19:55 -0400557
Tom Rinic4aecf62022-06-16 14:04:36 -0400558if ARM || M68K || PPC
559
560source "arch/Kconfig.nxp"
561
562endif
563
Tom Rinia67ff802022-03-23 17:19:55 -0400564source "board/keymile/Kconfig"
Michal Simek9599f8f2022-06-24 14:14:59 +0200565
Michal Simek9599f8f2022-06-24 14:14:59 +0200566choice
567 prompt "Endianness selection"
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800568 default SYS_BIG_ENDIAN if MIPS || MICROBLAZE
569 default SYS_LITTLE_ENDIAN
Michal Simek9599f8f2022-06-24 14:14:59 +0200570 help
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800571 Some boards can be configured for either little or big endian
Michal Simek9599f8f2022-06-24 14:14:59 +0200572 byte order. These modes require different U-Boot images. In general there
573 is one preferred byteorder for a particular system but some systems are
574 just as commonly used in the one or the other endianness.
575
576config SYS_BIG_ENDIAN
577 bool "Big endian"
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800578 depends on SUPPORT_BIG_ENDIAN
Michal Simek9599f8f2022-06-24 14:14:59 +0200579
580config SYS_LITTLE_ENDIAN
581 bool "Little endian"
Jiaxun Yang33e289a2024-07-17 16:07:02 +0800582 depends on SUPPORT_LITTLE_ENDIAN
Michal Simek9599f8f2022-06-24 14:14:59 +0200583endchoice