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