Merge tag 'efi-2022-04-rc1-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
[platform/kernel/u-boot.git] / arch / Kconfig
1 config ARCH_MAP_SYSMEM
2         depends on SANDBOX || NDS32
3         def_bool y
4
5 config CREATE_ARCH_SYMLINK
6         bool
7
8 config HAVE_ARCH_IOREMAP
9         bool
10
11 config NEEDS_MANUAL_RELOC
12         bool
13
14 config SYS_CACHE_SHIFT_4
15         bool
16
17 config SYS_CACHE_SHIFT_5
18         bool
19
20 config SYS_CACHE_SHIFT_6
21         bool
22
23 config SYS_CACHE_SHIFT_7
24         bool
25
26 config SYS_CACHELINE_SIZE
27         int
28         default 128 if SYS_CACHE_SHIFT_7
29         default 64 if SYS_CACHE_SHIFT_6
30         default 32 if SYS_CACHE_SHIFT_5
31         default 16 if SYS_CACHE_SHIFT_4
32         # Fall-back for MIPS
33         default 32 if MIPS
34
35 config LINKER_LIST_ALIGN
36         int
37         default 32 if SANDBOX
38         default 8 if ARM64 || X86
39         default 4
40         help
41           Force the each linker list to be aligned to this boundary. This
42           is required if ll_entry_get() is used, since otherwise the linker
43           may add padding into the table, thus breaking it.
44           See linker_lists.rst for full details.
45
46 choice
47         prompt "Architecture select"
48         default SANDBOX
49
50 config ARC
51         bool "ARC architecture"
52         select ARC_TIMER
53         select CLK
54         select DM
55         select HAVE_PRIVATE_LIBGCC
56         select SUPPORT_OF_CONTROL
57         select SYS_CACHE_SHIFT_7
58         select TIMER
59
60 config ARM
61         bool "ARM architecture"
62         select ARCH_SUPPORTS_LTO
63         select CREATE_ARCH_SYMLINK
64         select HAVE_PRIVATE_LIBGCC if !ARM64
65         select SUPPORT_OF_CONTROL
66
67 config M68K
68         bool "M68000 architecture"
69         select HAVE_PRIVATE_LIBGCC
70         select NEEDS_MANUAL_RELOC
71         select SYS_BOOT_GET_CMDLINE
72         select SYS_BOOT_GET_KBD
73         select SYS_CACHE_SHIFT_4
74         select SUPPORT_OF_CONTROL
75
76 config MICROBLAZE
77         bool "MicroBlaze architecture"
78         select NEEDS_MANUAL_RELOC
79         select SUPPORT_OF_CONTROL
80         imply CMD_IRQ
81
82 config MIPS
83         bool "MIPS architecture"
84         select HAVE_ARCH_IOREMAP
85         select HAVE_PRIVATE_LIBGCC
86         select SUPPORT_OF_CONTROL
87
88 config NDS32
89         bool "NDS32 architecture"
90         select SUPPORT_OF_CONTROL
91
92 config NIOS2
93         bool "Nios II architecture"
94         select CPU
95         select DM
96         select OF_CONTROL
97         select SUPPORT_OF_CONTROL
98         imply CMD_DM
99
100 config PPC
101         bool "PowerPC architecture"
102         select HAVE_PRIVATE_LIBGCC
103         select SUPPORT_OF_CONTROL
104         select SYS_BOOT_GET_CMDLINE
105         select SYS_BOOT_GET_KBD
106
107 config RISCV
108         bool "RISC-V architecture"
109         select CREATE_ARCH_SYMLINK
110         select SUPPORT_OF_CONTROL
111         select OF_CONTROL
112         select DM
113         imply DM_SERIAL
114         imply DM_ETH
115         imply DM_MMC
116         imply DM_SPI
117         imply DM_SPI_FLASH
118         imply BLK
119         imply CLK
120         imply MTD
121         imply TIMER
122         imply CMD_DM
123         imply SPL_DM
124         imply SPL_OF_CONTROL
125         imply SPL_LIBCOMMON_SUPPORT
126         imply SPL_LIBGENERIC_SUPPORT
127         imply SPL_SERIAL
128         imply SPL_TIMER
129
130 config SANDBOX
131         bool "Sandbox"
132         select ARCH_SUPPORTS_LTO
133         select BOARD_LATE_INIT
134         select BZIP2
135         select CMD_POWEROFF
136         select DM
137         select DM_GPIO
138         select DM_I2C
139         select DM_KEYBOARD
140         select DM_MMC
141         select DM_SERIAL
142         select DM_SPI
143         select DM_SPI_FLASH
144         select GZIP_COMPRESSED
145         select HAVE_BLOCK_DEVICE
146         select LZO
147         select OF_BOARD_SETUP
148         select PCI_ENDPOINT
149         select SPI
150         select SUPPORT_OF_CONTROL
151         select SYSRESET_CMD_POWEROFF
152         select SYS_CACHE_SHIFT_4
153         select IRQ
154         select SUPPORT_EXTENSION_SCAN
155         imply BITREVERSE
156         select BLOBLIST
157         imply LTO
158         imply CMD_DM
159         imply CMD_EXCEPTION
160         imply CMD_GETTIME
161         imply CMD_HASH
162         imply CMD_IO
163         imply CMD_IOTRACE
164         imply CMD_LZMADEC
165         imply CMD_SATA
166         imply CMD_SF
167         imply CMD_SF_TEST
168         imply CRC32_VERIFY
169         imply FAT_WRITE
170         imply FIRMWARE
171         imply HASH_VERIFY
172         imply LZMA
173         imply SCSI
174         imply TEE
175         imply AVB_VERIFY
176         imply LIBAVB
177         imply CMD_AVB
178         imply PARTITION_TYPE_GUID
179         imply SCP03
180         imply CMD_SCP03
181         imply UDP_FUNCTION_FASTBOOT
182         imply VIRTIO_MMIO
183         imply VIRTIO_PCI
184         imply VIRTIO_SANDBOX
185         imply VIRTIO_BLK
186         imply VIRTIO_NET
187         imply DM_SOUND
188         imply PCI_SANDBOX_EP
189         imply PCH
190         imply PHYLIB
191         imply DM_MDIO
192         imply DM_MDIO_MUX
193         imply ACPI_PMC
194         imply ACPI_PMC_SANDBOX
195         imply CMD_PMC
196         imply CMD_CLONE
197         imply SILENT_CONSOLE
198         imply BOOTARGS_SUBST
199         imply PHY_FIXED
200         imply DM_DSA
201         imply CMD_EXTENSION
202         imply KEYBOARD
203         imply PHYSMEM
204
205 config SH
206         bool "SuperH architecture"
207         select HAVE_PRIVATE_LIBGCC
208         select SUPPORT_OF_CONTROL
209
210 config X86
211         bool "x86 architecture"
212         select SUPPORT_SPL
213         select SUPPORT_TPL
214         select CREATE_ARCH_SYMLINK
215         select DM
216         select HAVE_ARCH_IOMAP
217         select HAVE_PRIVATE_LIBGCC
218         select OF_CONTROL
219         select PCI
220         select SUPPORT_OF_CONTROL
221         select SYS_CACHE_SHIFT_6
222         select TIMER
223         select USE_PRIVATE_LIBGCC
224         select X86_TSC_TIMER
225         select IRQ
226         imply HAS_ROM if X86_RESET_VECTOR
227         imply BLK
228         imply CMD_DM
229         imply CMD_FPGA_LOADMK
230         imply CMD_GETTIME
231         imply CMD_IO
232         imply CMD_IRQ
233         imply CMD_PCI
234         imply CMD_SF
235         imply CMD_SF_TEST
236         imply CMD_ZBOOT
237         imply DM_ETH
238         imply DM_GPIO
239         imply DM_KEYBOARD
240         imply DM_MMC
241         imply DM_RTC
242         imply DM_SCSI
243         imply DM_SERIAL
244         imply DM_SPI
245         imply DM_SPI_FLASH
246         imply DM_USB
247         imply DM_VIDEO
248         imply SYSRESET
249         imply SPL_SYSRESET
250         imply SYSRESET_X86
251         imply USB_ETHER_ASIX
252         imply USB_ETHER_SMSC95XX
253         imply USB_HOST_ETHER
254         imply PCH
255         imply PHYSMEM
256         imply RTC_MC146818
257         imply ACPIGEN if !QEMU
258         imply SYSINFO if GENERATE_SMBIOS_TABLE
259         imply SYSINFO_SMBIOS if GENERATE_SMBIOS_TABLE
260         imply TIMESTAMP
261
262         # Thing to enable for when SPL/TPL are enabled: SPL
263         imply SPL_DM
264         imply SPL_OF_LIBFDT
265         imply SPL_DRIVERS_MISC
266         imply SPL_GPIO
267         imply SPL_PINCTRL
268         imply SPL_LIBCOMMON_SUPPORT
269         imply SPL_LIBGENERIC_SUPPORT
270         imply SPL_SERIAL
271         imply SPL_SPI_FLASH_SUPPORT
272         imply SPL_SPI
273         imply SPL_OF_CONTROL
274         imply SPL_TIMER
275         imply SPL_REGMAP
276         imply SPL_SYSCON
277         # TPL
278         imply TPL_DM
279         imply TPL_DRIVERS_MISC
280         imply TPL_GPIO
281         imply TPL_PINCTRL
282         imply TPL_LIBCOMMON_SUPPORT
283         imply TPL_LIBGENERIC_SUPPORT
284         imply TPL_SERIAL
285         imply TPL_OF_CONTROL
286         imply TPL_TIMER
287         imply TPL_REGMAP
288         imply TPL_SYSCON
289
290 config XTENSA
291         bool "Xtensa architecture"
292         select CREATE_ARCH_SYMLINK
293         select SUPPORT_OF_CONTROL
294
295 endchoice
296
297 config SYS_ARCH
298         string
299         help
300           This option should contain the architecture name to build the
301           appropriate arch/<CONFIG_SYS_ARCH> directory.
302           All the architectures should specify this option correctly.
303
304 config SYS_CPU
305         string
306         help
307           This option should contain the CPU name to build the correct
308           arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU> directory.
309
310           This is optional.  For those targets without the CPU directory,
311           leave this option empty.
312
313 config SYS_SOC
314         string
315         help
316           This option should contain the SoC name to build the directory
317           arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU>/<CONFIG_SYS_SOC>.
318
319           This is optional.  For those targets without the SoC directory,
320           leave this option empty.
321
322 config SYS_VENDOR
323         string
324         help
325           This option should contain the vendor name of the target board.
326           If it is set and
327           board/<CONFIG_SYS_VENDOR>/common/Makefile exists, the vendor common
328           directory is compiled.
329           If CONFIG_SYS_BOARD is also set, the sources under
330           board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> directory are compiled.
331
332           This is optional.  For those targets without the vendor directory,
333           leave this option empty.
334
335 config SYS_BOARD
336         string
337         help
338           This option should contain the name of the target board.
339           If it is set, either board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
340           or board/<CONFIG_SYS_BOARD> directory is compiled depending on
341           whether CONFIG_SYS_VENDOR is set or not.
342
343           This is optional.  For those targets without the board directory,
344           leave this option empty.
345
346 config SYS_CONFIG_NAME
347         string
348         help
349           This option should contain the base name of board header file.
350           The header file include/configs/<CONFIG_SYS_CONFIG_NAME>.h
351           should be included from include/config.h.
352
353 config SYS_DISABLE_DCACHE_OPS
354         bool
355         help
356          This option disables dcache flush and dcache invalidation
357          operations. For example, on coherent systems where cache
358          operatios are not required, enable this option to avoid them.
359          Note that, its up to the individual architectures to implement
360          this functionality.
361
362 config SYS_IMMR
363         hex
364         depends on PPC || FSL_LSCH2 || FSL_LSCH3 || ARCH_LS1021A
365         default 0xFF000000 if MPC8xx
366         default 0xF0000000 if ARCH_MPC8313
367         default 0xE0000000 if MPC83xx && !ARCH_MPC8313
368         default 0x01000000 if ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3
369         default SYS_CCSRBAR_DEFAULT
370         help
371           Address for the Internal Memory-Mapped Registers (IMMR) window used
372           to configure the features of many Freescale / NXP SoCs.
373
374 config SKIP_LOWLEVEL_INIT
375         bool "Skip the calls to certain low level initialization functions"
376         depends on ARM || NDS32 || MIPS || RISCV
377         help
378           If enabled, then certain low level initializations (like setting up
379           the memory controller) are omitted and/or U-Boot does not relocate
380           itself into RAM.
381           Normally this variable MUST NOT be defined. The only exception is
382           when U-Boot is loaded (to RAM) by some other boot loader or by a
383           debugger which performs these initializations itself.
384
385 config SPL_SKIP_LOWLEVEL_INIT
386         bool "Skip the calls to certain low level initialization functions"
387         depends on SPL && (ARM || NDS32 || MIPS || RISCV)
388         help
389           If enabled, then certain low level initializations (like setting up
390           the memory controller) are omitted and/or U-Boot does not relocate
391           itself into RAM.
392           Normally this variable MUST NOT be defined. The only exception is
393           when U-Boot is loaded (to RAM) by some other boot loader or by a
394           debugger which performs these initializations itself.
395
396 config TPL_SKIP_LOWLEVEL_INIT
397         bool "Skip the calls to certain low level initialization functions"
398         depends on SPL && ARM
399         help
400           If enabled, then certain low level initializations (like setting up
401           the memory controller) are omitted and/or U-Boot does not relocate
402           itself into RAM.
403           Normally this variable MUST NOT be defined. The only exception is
404           when U-Boot is loaded (to RAM) by some other boot loader or by a
405           debugger which performs these initializations itself.
406
407 config SKIP_LOWLEVEL_INIT_ONLY
408         bool "Skip the call to lowlevel_init during early boot ONLY"
409         depends on ARM
410         help
411           This allows just the call to lowlevel_init() to be skipped. The
412           normal CP15 init (such as enabling the instruction cache) is still
413           performed.
414
415 config SPL_SKIP_LOWLEVEL_INIT_ONLY
416         bool "Skip the call to lowlevel_init during early boot ONLY"
417         depends on SPL && ARM
418         help
419           This allows just the call to lowlevel_init() to be skipped. The
420           normal CP15 init (such as enabling the instruction cache) is still
421           performed.
422
423 config TPL_SKIP_LOWLEVEL_INIT_ONLY
424         bool "Skip the call to lowlevel_init during early boot ONLY"
425         depends on TPL && ARM
426         help
427           This allows just the call to lowlevel_init() to be skipped. The
428           normal CP15 init (such as enabling the instruction cache) is still
429           performed.
430
431 source "arch/arc/Kconfig"
432 source "arch/arm/Kconfig"
433 source "arch/m68k/Kconfig"
434 source "arch/microblaze/Kconfig"
435 source "arch/mips/Kconfig"
436 source "arch/nds32/Kconfig"
437 source "arch/nios2/Kconfig"
438 source "arch/powerpc/Kconfig"
439 source "arch/sandbox/Kconfig"
440 source "arch/sh/Kconfig"
441 source "arch/x86/Kconfig"
442 source "arch/xtensa/Kconfig"
443 source "arch/riscv/Kconfig"