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