xref: /linux/arch/um/Kconfig (revision d1d7f01f7cd35e16c6bcef5a0e31988b5c9980f9)
179b05c1fSChristoph Hellwig# SPDX-License-Identifier: GPL-2.0
279b05c1fSChristoph Hellwig
3f163977dSChristoph Hellwigmenu "UML-specific options"
4f163977dSChristoph Hellwig
5f163977dSChristoph Hellwigconfig UML
6f163977dSChristoph Hellwig	bool
7f163977dSChristoph Hellwig	default y
83f17fed2SBenjamin Berg	select ARCH_WANTS_DYNAMIC_TASK_STRUCT
99349b5cdSThomas Gleixner	select ARCH_HAS_CPU_FINALIZE_INIT
10ba38961aSKees Cook	select ARCH_HAS_FORTIFY_SOURCE
112419ac32SVincent Whitchurch	select ARCH_HAS_GCOV_PROFILE_ALL
12f163977dSChristoph Hellwig	select ARCH_HAS_KCOV
13e6226997SArnd Bergmann	select ARCH_HAS_STRNCPY_FROM_USER
14e6226997SArnd Bergmann	select ARCH_HAS_STRNLEN_USER
15*d1d7f01fSJohannes Berg	select ARCH_HAS_STRICT_KERNEL_RWX
16f163977dSChristoph Hellwig	select HAVE_ARCH_AUDITSYSCALL
175b301409SPatricia Alfonso	select HAVE_ARCH_KASAN if X86_64
185b301409SPatricia Alfonso	select HAVE_ARCH_KASAN_VMALLOC if HAVE_ARCH_KASAN
19f163977dSChristoph Hellwig	select HAVE_ARCH_SECCOMP_FILTER
202ff2b7ecSMasahiro Yamada	select HAVE_ASM_MODVERSIONS
21f163977dSChristoph Hellwig	select HAVE_UID16
22f163977dSChristoph Hellwig	select HAVE_DEBUG_KMEMLEAK
230d76433cSHernán Gonzalez	select HAVE_DEBUG_BUGVERBOSE
245394f1e9SArnd Bergmann	select HAVE_PAGE_SIZE_4KB
2568f5d3f3SJohannes Berg	select NO_DMA if !UML_DMA_EMULATION
26b31297f0SVincent Whitchurch	select OF_EARLY_FLATTREE if OF
27f163977dSChristoph Hellwig	select GENERIC_IRQ_SHOW
28f163977dSChristoph Hellwig	select GENERIC_CPU_DEVICES
29f163977dSChristoph Hellwig	select HAVE_GCC_PLUGINS
3083e913f5SPeter Foley	select ARCH_SUPPORTS_LTO_CLANG
3183e913f5SPeter Foley	select ARCH_SUPPORTS_LTO_CLANG_THIN
324aae683fSMasahiro Yamada	select TRACE_IRQFLAGS_SUPPORT
33f163977dSChristoph Hellwig	select TTY # Needed for line.c
34bc5c49d7SJohannes Berg	select HAVE_ARCH_VMAP_STACK
35ab0f4cedSDavid Gow	select HAVE_RUST
3653585f9eSJohannes Berg	select ARCH_HAS_UBSAN
373f17fed2SBenjamin Berg	select HAVE_ARCH_TRACEHOOK
382f681ba4SBenjamin Berg	select THREAD_INFO_IN_TASK
39f163977dSChristoph Hellwig
40f163977dSChristoph Hellwigconfig MMU
41f163977dSChristoph Hellwig	bool
42f163977dSChristoph Hellwig	default y
43f163977dSChristoph Hellwig
4468f5d3f3SJohannes Bergconfig UML_DMA_EMULATION
4568f5d3f3SJohannes Berg	bool
4668f5d3f3SJohannes Berg
47f163977dSChristoph Hellwigconfig NO_IOMEM
480bbadafdSJohannes Berg	bool "disable IOMEM" if EXPERT
4968f5d3f3SJohannes Berg	depends on !INDIRECT_IOMEM
500bbadafdSJohannes Berg	default y
510bbadafdSJohannes Berg
5268f5d3f3SJohannes Bergconfig UML_IOMEM_EMULATION
5368f5d3f3SJohannes Berg	bool
5468f5d3f3SJohannes Berg	select INDIRECT_IOMEM
55ddd268c4SNiklas Schnelle	select HAS_IOPORT
5668f5d3f3SJohannes Berg	select GENERIC_PCI_IOMAP
5768f5d3f3SJohannes Berg	select GENERIC_IOMAP
5868f5d3f3SJohannes Berg	select NO_GENERIC_PCI_IOPORT_MAP
5968f5d3f3SJohannes Berg
600bbadafdSJohannes Bergconfig NO_IOPORT_MAP
61ddd268c4SNiklas Schnelle	def_bool !UML_IOMEM_EMULATION
62f163977dSChristoph Hellwig
63f163977dSChristoph Hellwigconfig ISA
64f163977dSChristoph Hellwig	bool
65f163977dSChristoph Hellwig
66f163977dSChristoph Hellwigconfig SBUS
67f163977dSChristoph Hellwig	bool
68f163977dSChristoph Hellwig
69f163977dSChristoph Hellwigconfig LOCKDEP_SUPPORT
70f163977dSChristoph Hellwig	bool
71f163977dSChristoph Hellwig	default y
72f163977dSChristoph Hellwig
73f163977dSChristoph Hellwigconfig STACKTRACE_SUPPORT
74f163977dSChristoph Hellwig	bool
75f163977dSChristoph Hellwig	default y
76f163977dSChristoph Hellwig	select STACKTRACE
77f163977dSChristoph Hellwig
78f163977dSChristoph Hellwigconfig GENERIC_CALIBRATE_DELAY
79f163977dSChristoph Hellwig	bool
80f163977dSChristoph Hellwig	default y
81f163977dSChristoph Hellwig
82f163977dSChristoph Hellwigconfig HZ
83f163977dSChristoph Hellwig	int
84f163977dSChristoph Hellwig	default 100
85f163977dSChristoph Hellwig
86f163977dSChristoph Hellwigconfig NR_CPUS
87f163977dSChristoph Hellwig	int
88f163977dSChristoph Hellwig	range 1 1
89f163977dSChristoph Hellwig	default 1
90f163977dSChristoph Hellwig
91d8fb32f4SAnton Ivanovconfig ARCH_HAS_CACHE_LINE_SIZE
92d8fb32f4SAnton Ivanov	def_bool y
93d8fb32f4SAnton Ivanov
9479b05c1fSChristoph Hellwigsource "arch/$(HEADER_ARCH)/um/Kconfig"
95f163977dSChristoph Hellwig
96730586ffSIgnat Korchaginconfig MAY_HAVE_RUNTIME_DEPS
9733631793SBrendan Higgins	bool
9833631793SBrendan Higgins
99f163977dSChristoph Hellwigconfig STATIC_LINK
100f163977dSChristoph Hellwig	bool "Force a static link"
10148a858e0SMasahiro Yamada	depends on !MAY_HAVE_RUNTIME_DEPS
102f163977dSChristoph Hellwig	help
103f163977dSChristoph Hellwig	  This option gives you the ability to force a static link of UML.
104f163977dSChristoph Hellwig	  Normally, UML is linked as a shared binary.  This is inconvenient for
105f163977dSChristoph Hellwig	  use in a chroot jail.  So, if you intend to run UML inside a chroot,
106f163977dSChristoph Hellwig	  you probably want to say Y here.
107f163977dSChristoph Hellwig	  Additionally, this option enables using higher memory spaces (up to
108f163977dSChristoph Hellwig	  2.75G) for UML.
109f163977dSChristoph Hellwig
11033631793SBrendan Higgins	  NOTE: This option is incompatible with some networking features which
11133631793SBrendan Higgins	  depend on features that require being dynamically loaded (like NSS).
11233631793SBrendan Higgins
113f163977dSChristoph Hellwigconfig LD_SCRIPT_STATIC
114f163977dSChristoph Hellwig	bool
115f163977dSChristoph Hellwig	default y
116f163977dSChristoph Hellwig	depends on STATIC_LINK
117f163977dSChristoph Hellwig
118f163977dSChristoph Hellwigconfig LD_SCRIPT_DYN
119f163977dSChristoph Hellwig	bool
120f163977dSChristoph Hellwig	default y
121f163977dSChristoph Hellwig	depends on !LD_SCRIPT_STATIC
122f163977dSChristoph Hellwig
123386093c6SJohannes Bergconfig LD_SCRIPT_DYN_RPATH
124386093c6SJohannes Berg	bool "set rpath in the binary" if EXPERT
125386093c6SJohannes Berg	default y
126386093c6SJohannes Berg	depends on LD_SCRIPT_DYN
127386093c6SJohannes Berg	help
128386093c6SJohannes Berg	  Add /lib (and /lib64 for 64-bit) to the linux binary's rpath
129386093c6SJohannes Berg	  explicitly.
130386093c6SJohannes Berg
131386093c6SJohannes Berg	  You may need to turn this off if compiling for nix systems
132386093c6SJohannes Berg	  that have their libraries in random /nix directories and
133386093c6SJohannes Berg	  might otherwise unexpected use libraries from /lib or /lib64
134386093c6SJohannes Berg	  instead of the desired ones.
135386093c6SJohannes Berg
136f163977dSChristoph Hellwigconfig HOSTFS
137f163977dSChristoph Hellwig	tristate "Host filesystem"
138f163977dSChristoph Hellwig	help
139f163977dSChristoph Hellwig	  While the User-Mode Linux port uses its own root file system for
140f163977dSChristoph Hellwig	  booting and normal file access, this module lets the UML user
141f163977dSChristoph Hellwig	  access files stored on the host.  It does not require any
142f163977dSChristoph Hellwig	  network connection between the Host and UML.  An example use of
143f163977dSChristoph Hellwig	  this might be:
144f163977dSChristoph Hellwig
145f163977dSChristoph Hellwig	  mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
146f163977dSChristoph Hellwig
147f163977dSChristoph Hellwig	  where /tmp/fromhost is an empty directory inside UML and
148f163977dSChristoph Hellwig	  /tmp/umlshare is a directory on the host with files the UML user
149f163977dSChristoph Hellwig	  wishes to access.
150f163977dSChristoph Hellwig
151f163977dSChristoph Hellwig	  For more information, see
152f163977dSChristoph Hellwig	  <http://user-mode-linux.sourceforge.net/hostfs.html>.
153f163977dSChristoph Hellwig
154f163977dSChristoph Hellwig	  If you'd like to be able to work with files stored on the host,
155f163977dSChristoph Hellwig	  say Y or M here; otherwise say N.
156f163977dSChristoph Hellwig
157f163977dSChristoph Hellwigconfig MCONSOLE
158f163977dSChristoph Hellwig	bool "Management console"
159f163977dSChristoph Hellwig	depends on PROC_FS
160f163977dSChristoph Hellwig	default y
161f163977dSChristoph Hellwig	help
162f163977dSChristoph Hellwig	  The user mode linux management console is a low-level interface to
163f163977dSChristoph Hellwig	  the kernel, somewhat like the i386 SysRq interface.  Since there is
164f163977dSChristoph Hellwig	  a full-blown operating system running under every user mode linux
165f163977dSChristoph Hellwig	  instance, there is much greater flexibility possible than with the
166f163977dSChristoph Hellwig	  SysRq mechanism.
167f163977dSChristoph Hellwig
168f163977dSChristoph Hellwig	  If you answer 'Y' to this option, to use this feature, you need the
169f163977dSChristoph Hellwig	  mconsole client (called uml_mconsole) which is present in CVS in
170f163977dSChristoph Hellwig	  2.4.5-9um and later (path /tools/mconsole), and is also in the
171f163977dSChristoph Hellwig	  distribution RPM package in 2.4.6 and later.
172f163977dSChristoph Hellwig
173f163977dSChristoph Hellwig	  It is safe to say 'Y' here.
174f163977dSChristoph Hellwig
175f163977dSChristoph Hellwigconfig MAGIC_SYSRQ
176f163977dSChristoph Hellwig	bool "Magic SysRq key"
177f163977dSChristoph Hellwig	depends on MCONSOLE
178f163977dSChristoph Hellwig	help
179f163977dSChristoph Hellwig	  If you say Y here, you will have some control over the system even
180f163977dSChristoph Hellwig	  if the system crashes for example during kernel debugging (e.g., you
181f163977dSChristoph Hellwig	  will be able to flush the buffer cache to disk, reboot the system
182f163977dSChristoph Hellwig	  immediately or dump some status information). A key for each of the
183f163977dSChristoph Hellwig	  possible requests is provided.
184f163977dSChristoph Hellwig
185f163977dSChristoph Hellwig	  This is the feature normally accomplished by pressing a key
186f163977dSChristoph Hellwig	  while holding SysRq (Alt+PrintScreen).
187f163977dSChristoph Hellwig
188f163977dSChristoph Hellwig	  On UML, this is accomplished by sending a "sysrq" command with
189f163977dSChristoph Hellwig	  mconsole, followed by the letter for the requested command.
190f163977dSChristoph Hellwig
191f163977dSChristoph Hellwig	  The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y
192f163977dSChristoph Hellwig	  unless you really know what this hack does.
193f163977dSChristoph Hellwig
194f163977dSChristoph Hellwigconfig KERNEL_STACK_ORDER
195f163977dSChristoph Hellwig	int "Kernel stack size order"
1965c2ffce1SAnton Ivanov	default 2 if 64BIT
1975c2ffce1SAnton Ivanov	range 2 10 if 64BIT
1985c2ffce1SAnton Ivanov	default 1 if !64BIT
199f163977dSChristoph Hellwig	help
200f163977dSChristoph Hellwig	  This option determines the size of UML kernel stacks.  They will
201f163977dSChristoph Hellwig	  be 1 << order pages.  The default is OK unless you're running Valgrind
202f163977dSChristoph Hellwig	  on UML, in which case, set this to 3.
2035c2ffce1SAnton Ivanov	  It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on
2045c2ffce1SAnton Ivanov	  older (pre-2017) CPUs. It is not recommended on newer CPUs due to the
2055c2ffce1SAnton Ivanov	  increase in the size of the state which needs to be saved when handling
2065c2ffce1SAnton Ivanov	  signals.
207f163977dSChristoph Hellwig
208f163977dSChristoph Hellwigconfig MMAPPER
209f163977dSChristoph Hellwig	tristate "iomem emulation driver"
210f163977dSChristoph Hellwig	help
211f163977dSChristoph Hellwig	  This driver allows a host file to be used as emulated IO memory inside
212f163977dSChristoph Hellwig	  UML.
213f163977dSChristoph Hellwig
214f163977dSChristoph Hellwigconfig PGTABLE_LEVELS
215f163977dSChristoph Hellwig	int
21641ab5fe7SBenjamin Berg	default 4 if 64BIT
21741ab5fe7SBenjamin Berg	default 2 if !64BIT
218f163977dSChristoph Hellwig
21906503870SJohannes Bergconfig UML_TIME_TRAVEL_SUPPORT
22006503870SJohannes Berg	bool
22106503870SJohannes Berg	prompt "Support time-travel mode (e.g. for test execution)"
222d65197adSJohannes Berg	# inf-cpu mode is incompatible with the benchmarking
223d65197adSJohannes Berg	depends on !RAID6_PQ_BENCHMARK
2244b786e24SJohannes Berg	depends on !SMP
22506503870SJohannes Berg	help
22606503870SJohannes Berg	  Enable this option to support time travel inside the UML instance.
22706503870SJohannes Berg
22806503870SJohannes Berg	  After enabling this option, two modes are accessible at runtime
22906503870SJohannes Berg	  (selected by the kernel command line), see the kernel's command-
23006503870SJohannes Berg	  line help for more details.
23106503870SJohannes Berg
23206503870SJohannes Berg	  It is safe to say Y, but you probably don't need this.
23306503870SJohannes Berg
2340b8b2668SBenjamin Bergconfig UML_MAX_USERSPACE_ITERATIONS
2350b8b2668SBenjamin Berg	int
2360b8b2668SBenjamin Berg	prompt "Maximum number of unscheduled userspace iterations"
2370b8b2668SBenjamin Berg	default 10000
2380b8b2668SBenjamin Berg	depends on UML_TIME_TRAVEL_SUPPORT
2390b8b2668SBenjamin Berg	help
2400b8b2668SBenjamin Berg	  In UML inf-cpu and ext time-travel mode userspace can run without being
2410b8b2668SBenjamin Berg	  interrupted. This will eventually overwhelm the kernel and create OOM
2420b8b2668SBenjamin Berg	  situations (mainly RCU not running). This setting specifies the number
2430b8b2668SBenjamin Berg	  of kernel/userspace switches (minor/major page fault, signal or syscall)
2440b8b2668SBenjamin Berg	  for the same userspace thread before the sched_clock is advanced by a
2450b8b2668SBenjamin Berg	  jiffie to trigger scheduling.
2460b8b2668SBenjamin Berg
2470b8b2668SBenjamin Berg	  Setting it to zero disables the feature.
2480b8b2668SBenjamin Berg
2495b301409SPatricia Alfonsoconfig KASAN_SHADOW_OFFSET
2505b301409SPatricia Alfonso	hex
2515b301409SPatricia Alfonso	depends on KASAN
2525b301409SPatricia Alfonso	default 0x100000000000
2535b301409SPatricia Alfonso	help
2545b301409SPatricia Alfonso	  This is the offset at which the ~16TB of shadow memory is
2555b301409SPatricia Alfonso	  mapped and used by KASAN for memory debugging. This can be any
2565b301409SPatricia Alfonso	  address that has at least KASAN_SHADOW_SIZE (total address space divided
2575b301409SPatricia Alfonso	  by 8) amount of space so that the KASAN shadow memory does not conflict
2585b301409SPatricia Alfonso	  with anything. The default is 0x100000000000, which works even if mem is
2595b301409SPatricia Alfonso	  set to a large value. On low-memory systems, try 0x7fff8000, as it fits
2605b301409SPatricia Alfonso	  into the immediate of most instructions, improving performance.
2615b301409SPatricia Alfonso
262f163977dSChristoph Hellwigendmenu
263f163977dSChristoph Hellwig
2649bea1801SChristoph Hellwigsource "arch/um/drivers/Kconfig"
26592dcd3d3SJohannes Berg
26692dcd3d3SJohannes Bergconfig ARCH_SUSPEND_POSSIBLE
26792dcd3d3SJohannes Berg	def_bool y
26892dcd3d3SJohannes Berg
269f09c3fcfSPeter Foleymenu "Power management options"
270f09c3fcfSPeter Foley
27192dcd3d3SJohannes Bergsource "kernel/power/Kconfig"
272f09c3fcfSPeter Foley
273f09c3fcfSPeter Foleyendmenu
274