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