1# SPDX-License-Identifier: GPL-2.0-only 2# 3# For a description of the syntax of this configuration file, 4# see Documentation/kbuild/kconfig-language.rst. 5# 6 7config 64BIT 8 bool 9 10config 32BIT 11 bool 12 13config RISCV 14 def_bool y 15 select ARCH_CLOCKSOURCE_INIT 16 select ARCH_ENABLE_HUGEPAGE_MIGRATION if HUGETLB_PAGE && MIGRATION 17 select ARCH_HAS_BINFMT_FLAT 18 select ARCH_HAS_DEBUG_VM_PGTABLE 19 select ARCH_HAS_DEBUG_VIRTUAL if MMU 20 select ARCH_HAS_DEBUG_WX 21 select ARCH_HAS_FORTIFY_SOURCE 22 select ARCH_HAS_GCOV_PROFILE_ALL 23 select ARCH_HAS_GIGANTIC_PAGE 24 select ARCH_HAS_KCOV 25 select ARCH_HAS_MMIOWB 26 select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE 27 select ARCH_HAS_PTE_SPECIAL 28 select ARCH_HAS_SET_DIRECT_MAP if MMU 29 select ARCH_HAS_SET_MEMORY if MMU 30 select ARCH_HAS_STRICT_KERNEL_RWX if MMU && !XIP_KERNEL 31 select ARCH_HAS_STRICT_MODULE_RWX if MMU && !XIP_KERNEL 32 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST 33 select ARCH_HAS_UBSAN_SANITIZE_ALL 34 select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX 35 select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT 36 select ARCH_STACKWALK 37 select ARCH_SUPPORTS_ATOMIC_RMW 38 select ARCH_SUPPORTS_DEBUG_PAGEALLOC if MMU 39 select ARCH_SUPPORTS_HUGETLBFS if MMU 40 select ARCH_USE_MEMTEST 41 select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU 42 select ARCH_WANT_FRAME_POINTERS 43 select ARCH_WANT_HUGE_PMD_SHARE if 64BIT 44 select BINFMT_FLAT_NO_DATA_START_OFFSET if !MMU 45 select BUILDTIME_TABLE_SORT if MMU 46 select CLONE_BACKWARDS 47 select CLINT_TIMER if !MMU 48 select COMMON_CLK 49 select EDAC_SUPPORT 50 select GENERIC_ARCH_TOPOLOGY 51 select GENERIC_ATOMIC64 if !64BIT 52 select GENERIC_CLOCKEVENTS_BROADCAST if SMP 53 select GENERIC_EARLY_IOREMAP 54 select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO 55 select GENERIC_IDLE_POLL_SETUP 56 select GENERIC_IOREMAP if MMU 57 select GENERIC_IRQ_MULTI_HANDLER 58 select GENERIC_IRQ_SHOW 59 select GENERIC_IRQ_SHOW_LEVEL 60 select GENERIC_LIB_DEVMEM_IS_ALLOWED 61 select GENERIC_PCI_IOMAP 62 select GENERIC_PTDUMP if MMU 63 select GENERIC_SCHED_CLOCK 64 select GENERIC_SMP_IDLE_THREAD 65 select GENERIC_TIME_VSYSCALL if MMU && 64BIT 66 select HANDLE_DOMAIN_IRQ 67 select HAVE_ARCH_AUDITSYSCALL 68 select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL 69 select HAVE_ARCH_JUMP_LABEL_RELATIVE if !XIP_KERNEL 70 select HAVE_ARCH_KASAN if MMU && 64BIT 71 select HAVE_ARCH_KASAN_VMALLOC if MMU && 64BIT 72 select HAVE_ARCH_KFENCE if MMU && 64BIT 73 select HAVE_ARCH_KGDB if !XIP_KERNEL 74 select HAVE_ARCH_KGDB_QXFER_PKT 75 select HAVE_ARCH_MMAP_RND_BITS if MMU 76 select HAVE_ARCH_SECCOMP_FILTER 77 select HAVE_ARCH_TRACEHOOK 78 select HAVE_ARCH_TRANSPARENT_HUGEPAGE if 64BIT && MMU 79 select HAVE_ARCH_THREAD_STRUCT_WHITELIST 80 select HAVE_ARCH_VMAP_STACK if MMU && 64BIT 81 select HAVE_ASM_MODVERSIONS 82 select HAVE_CONTEXT_TRACKING 83 select HAVE_DEBUG_KMEMLEAK 84 select HAVE_DMA_CONTIGUOUS if MMU 85 select HAVE_EBPF_JIT if MMU 86 select HAVE_FUNCTION_ERROR_INJECTION 87 select HAVE_FUTEX_CMPXCHG if FUTEX 88 select HAVE_GCC_PLUGINS 89 select HAVE_GENERIC_VDSO if MMU && 64BIT 90 select HAVE_IRQ_TIME_ACCOUNTING 91 select HAVE_KPROBES if !XIP_KERNEL 92 select HAVE_KPROBES_ON_FTRACE if !XIP_KERNEL 93 select HAVE_KRETPROBES if !XIP_KERNEL 94 select HAVE_MOVE_PMD 95 select HAVE_MOVE_PUD 96 select HAVE_PCI 97 select HAVE_PERF_EVENTS 98 select HAVE_PERF_REGS 99 select HAVE_PERF_USER_STACK_DUMP 100 select HAVE_REGS_AND_STACK_ACCESS_API 101 select HAVE_FUNCTION_ARG_ACCESS_API 102 select HAVE_STACKPROTECTOR 103 select HAVE_SYSCALL_TRACEPOINTS 104 select IRQ_DOMAIN 105 select IRQ_FORCED_THREADING 106 select MODULES_USE_ELF_RELA if MODULES 107 select MODULE_SECTIONS if MODULES 108 select OF 109 select OF_EARLY_FLATTREE 110 select OF_IRQ 111 select PCI_DOMAINS_GENERIC if PCI 112 select PCI_MSI if PCI 113 select RISCV_INTC 114 select RISCV_TIMER if RISCV_SBI 115 select SPARSE_IRQ 116 select SYSCTL_EXCEPTION_TRACE 117 select THREAD_INFO_IN_TASK 118 select TRACE_IRQFLAGS_SUPPORT 119 select UACCESS_MEMCPY if !MMU 120 select ZONE_DMA32 if 64BIT 121 122config ARCH_MMAP_RND_BITS_MIN 123 default 18 if 64BIT 124 default 8 125 126# max bits determined by the following formula: 127# VA_BITS - PAGE_SHIFT - 3 128config ARCH_MMAP_RND_BITS_MAX 129 default 24 if 64BIT # SV39 based 130 default 17 131 132# set if we run in machine mode, cleared if we run in supervisor mode 133config RISCV_M_MODE 134 bool 135 default !MMU 136 137# set if we are running in S-mode and can use SBI calls 138config RISCV_SBI 139 bool 140 depends on !RISCV_M_MODE 141 default y 142 143config MMU 144 bool "MMU-based Paged Memory Management Support" 145 default y 146 help 147 Select if you want MMU-based virtualised addressing space 148 support by paged memory management. If unsure, say 'Y'. 149 150config VA_BITS 151 int 152 default 32 if 32BIT 153 default 39 if 64BIT 154 155config PA_BITS 156 int 157 default 34 if 32BIT 158 default 56 if 64BIT 159 160config PAGE_OFFSET 161 hex 162 default 0xC0000000 if 32BIT 163 default 0x80000000 if 64BIT && !MMU 164 default 0xffffffe000000000 if 64BIT 165 166config KASAN_SHADOW_OFFSET 167 hex 168 depends on KASAN_GENERIC 169 default 0xdfffffc800000000 if 64BIT 170 default 0xffffffff if 32BIT 171 172config ARCH_FLATMEM_ENABLE 173 def_bool !NUMA 174 175config ARCH_SPARSEMEM_ENABLE 176 def_bool y 177 depends on MMU 178 select SPARSEMEM_STATIC if 32BIT && SPARSEMEM 179 select SPARSEMEM_VMEMMAP_ENABLE if 64BIT 180 181config ARCH_SELECT_MEMORY_MODEL 182 def_bool ARCH_SPARSEMEM_ENABLE 183 184config ARCH_WANT_GENERAL_HUGETLB 185 def_bool y 186 187config ARCH_SUPPORTS_UPROBES 188 def_bool y 189 190config STACKTRACE_SUPPORT 191 def_bool y 192 193config GENERIC_BUG 194 def_bool y 195 depends on BUG 196 select GENERIC_BUG_RELATIVE_POINTERS if 64BIT 197 198config GENERIC_BUG_RELATIVE_POINTERS 199 bool 200 201config GENERIC_CALIBRATE_DELAY 202 def_bool y 203 204config GENERIC_CSUM 205 def_bool y 206 207config GENERIC_HWEIGHT 208 def_bool y 209 210config FIX_EARLYCON_MEM 211 def_bool MMU 212 213config PGTABLE_LEVELS 214 int 215 default 3 if 64BIT 216 default 2 217 218config LOCKDEP_SUPPORT 219 def_bool y 220 221source "arch/riscv/Kconfig.socs" 222source "arch/riscv/Kconfig.erratas" 223 224menu "Platform type" 225 226choice 227 prompt "Base ISA" 228 default ARCH_RV64I 229 help 230 This selects the base ISA that this kernel will target and must match 231 the target platform. 232 233config ARCH_RV32I 234 bool "RV32I" 235 select 32BIT 236 select GENERIC_LIB_ASHLDI3 237 select GENERIC_LIB_ASHRDI3 238 select GENERIC_LIB_LSHRDI3 239 select GENERIC_LIB_UCMPDI2 240 select MMU 241 242config ARCH_RV64I 243 bool "RV64I" 244 select 64BIT 245 select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 246 select HAVE_DYNAMIC_FTRACE if !XIP_KERNEL && MMU && $(cc-option,-fpatchable-function-entry=8) 247 select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE 248 select HAVE_FTRACE_MCOUNT_RECORD if !XIP_KERNEL 249 select HAVE_FUNCTION_GRAPH_TRACER 250 select HAVE_FUNCTION_TRACER if !XIP_KERNEL 251 select SWIOTLB if MMU 252 253endchoice 254 255# We must be able to map all physical memory into the kernel, but the compiler 256# is still a bit more efficient when generating code if it's setup in a manner 257# such that it can only map 2GiB of memory. 258choice 259 prompt "Kernel Code Model" 260 default CMODEL_MEDLOW if 32BIT 261 default CMODEL_MEDANY if 64BIT 262 263 config CMODEL_MEDLOW 264 bool "medium low code model" 265 config CMODEL_MEDANY 266 bool "medium any code model" 267endchoice 268 269config MODULE_SECTIONS 270 bool 271 select HAVE_MOD_ARCH_SPECIFIC 272 273config SMP 274 bool "Symmetric Multi-Processing" 275 help 276 This enables support for systems with more than one CPU. If 277 you say N here, the kernel will run on single and 278 multiprocessor machines, but will use only one CPU of a 279 multiprocessor machine. If you say Y here, the kernel will run 280 on many, but not all, single processor machines. On a single 281 processor machine, the kernel will run faster if you say N 282 here. 283 284 If you don't know what to do here, say N. 285 286config NR_CPUS 287 int "Maximum number of CPUs (2-32)" 288 range 2 32 289 depends on SMP 290 default "8" 291 292config HOTPLUG_CPU 293 bool "Support for hot-pluggable CPUs" 294 depends on SMP 295 select GENERIC_IRQ_MIGRATION 296 help 297 298 Say Y here to experiment with turning CPUs off and on. CPUs 299 can be controlled through /sys/devices/system/cpu. 300 301 Say N if you want to disable CPU hotplug. 302 303choice 304 prompt "CPU Tuning" 305 default TUNE_GENERIC 306 307config TUNE_GENERIC 308 bool "generic" 309 310endchoice 311 312# Common NUMA Features 313config NUMA 314 bool "NUMA Memory Allocation and Scheduler Support" 315 depends on SMP && MMU 316 select GENERIC_ARCH_NUMA 317 select OF_NUMA 318 select ARCH_SUPPORTS_NUMA_BALANCING 319 help 320 Enable NUMA (Non-Uniform Memory Access) support. 321 322 The kernel will try to allocate memory used by a CPU on the 323 local memory of the CPU and add some more NUMA awareness to the kernel. 324 325config NODES_SHIFT 326 int "Maximum NUMA Nodes (as a power of 2)" 327 range 1 10 328 default "2" 329 depends on NUMA 330 help 331 Specify the maximum number of NUMA Nodes available on the target 332 system. Increases memory reserved to accommodate various tables. 333 334config USE_PERCPU_NUMA_NODE_ID 335 def_bool y 336 depends on NUMA 337 338config NEED_PER_CPU_EMBED_FIRST_CHUNK 339 def_bool y 340 depends on NUMA 341 342config RISCV_ISA_C 343 bool "Emit compressed instructions when building Linux" 344 default y 345 help 346 Adds "C" to the ISA subsets that the toolchain is allowed to emit 347 when building Linux, which results in compressed instructions in the 348 Linux binary. 349 350 If you don't know what to do here, say Y. 351 352menu "supported PMU type" 353 depends on PERF_EVENTS 354 355config RISCV_BASE_PMU 356 bool "Base Performance Monitoring Unit" 357 def_bool y 358 help 359 A base PMU that serves as a reference implementation and has limited 360 feature of perf. It can run on any RISC-V machines so serves as the 361 fallback, but this option can also be disable to reduce kernel size. 362 363endmenu 364 365config TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI 366 def_bool y 367 # https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=aed44286efa8ae8717a77d94b51ac3614e2ca6dc 368 depends on AS_IS_GNU && AS_VERSION >= 23800 369 help 370 Newer binutils versions default to ISA spec version 20191213 which 371 moves some instructions from the I extension to the Zicsr and Zifencei 372 extensions. 373 374config TOOLCHAIN_NEEDS_OLD_ISA_SPEC 375 def_bool y 376 depends on TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI 377 # https://github.com/llvm/llvm-project/commit/22e199e6afb1263c943c0c0d4498694e15bf8a16 378 depends on CC_IS_CLANG && CLANG_VERSION < 170000 379 help 380 Certain versions of clang do not support zicsr and zifencei via -march 381 but newer versions of binutils require it for the reasons noted in the 382 help text of CONFIG_TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI. This 383 option causes an older ISA spec compatible with these older versions 384 of clang to be passed to GAS, which has the same result as passing zicsr 385 and zifencei to -march. 386 387config FPU 388 bool "FPU support" 389 default y 390 help 391 Say N here if you want to disable all floating-point related procedure 392 in the kernel. 393 394 If you don't know what to do here, say Y. 395 396endmenu 397 398menu "Kernel features" 399 400source "kernel/Kconfig.hz" 401 402config RISCV_SBI_V01 403 bool "SBI v0.1 support" 404 default y 405 depends on RISCV_SBI 406 help 407 This config allows kernel to use SBI v0.1 APIs. This will be 408 deprecated in future once legacy M-mode software are no longer in use. 409 410config KEXEC 411 bool "Kexec system call" 412 select KEXEC_CORE 413 select HOTPLUG_CPU if SMP 414 depends on MMU 415 help 416 kexec is a system call that implements the ability to shutdown your 417 current kernel, and to start another kernel. It is like a reboot 418 but it is independent of the system firmware. And like a reboot 419 you can start any kernel with it, not just Linux. 420 421 The name comes from the similarity to the exec system call. 422 423config CRASH_DUMP 424 bool "Build kdump crash kernel" 425 help 426 Generate crash dump after being started by kexec. This should 427 be normally only set in special crash dump kernels which are 428 loaded in the main kernel with kexec-tools into a specially 429 reserved region and then later executed after a crash by 430 kdump/kexec. 431 432 For more details see Documentation/admin-guide/kdump/kdump.rst 433 434endmenu 435 436menu "Boot options" 437 438config CMDLINE 439 string "Built-in kernel command line" 440 help 441 For most platforms, the arguments for the kernel's command line 442 are provided at run-time, during boot. However, there are cases 443 where either no arguments are being provided or the provided 444 arguments are insufficient or even invalid. 445 446 When that occurs, it is possible to define a built-in command 447 line here and choose how the kernel should use it later on. 448 449choice 450 prompt "Built-in command line usage" if CMDLINE != "" 451 default CMDLINE_FALLBACK 452 help 453 Choose how the kernel will handle the provided built-in command 454 line. 455 456config CMDLINE_FALLBACK 457 bool "Use bootloader kernel arguments if available" 458 help 459 Use the built-in command line as fallback in case we get nothing 460 during boot. This is the default behaviour. 461 462config CMDLINE_EXTEND 463 bool "Extend bootloader kernel arguments" 464 help 465 The command-line arguments provided during boot will be 466 appended to the built-in command line. This is useful in 467 cases where the provided arguments are insufficient and 468 you don't want to or cannot modify them. 469 470 471config CMDLINE_FORCE 472 bool "Always use the default kernel command string" 473 help 474 Always use the built-in command line, even if we get one during 475 boot. This is useful in case you need to override the provided 476 command line on systems where you don't have or want control 477 over it. 478 479endchoice 480 481config EFI_STUB 482 bool 483 484config EFI 485 bool "UEFI runtime support" 486 depends on OF && !XIP_KERNEL 487 select LIBFDT 488 select UCS2_STRING 489 select EFI_PARAMS_FROM_FDT 490 select EFI_STUB 491 select EFI_GENERIC_STUB 492 select EFI_RUNTIME_WRAPPERS 493 select RISCV_ISA_C 494 depends on MMU 495 default y 496 help 497 This option provides support for runtime services provided 498 by UEFI firmware (such as non-volatile variables, realtime 499 clock, and platform reset). A UEFI stub is also provided to 500 allow the kernel to be booted as an EFI application. This 501 is only useful on systems that have UEFI firmware. 502 503config CC_HAVE_STACKPROTECTOR_TLS 504 def_bool $(cc-option,-mstack-protector-guard=tls -mstack-protector-guard-reg=tp -mstack-protector-guard-offset=0) 505 506config STACKPROTECTOR_PER_TASK 507 def_bool y 508 depends on !GCC_PLUGIN_RANDSTRUCT 509 depends on STACKPROTECTOR && CC_HAVE_STACKPROTECTOR_TLS 510 511config PHYS_RAM_BASE_FIXED 512 bool "Explicitly specified physical RAM address" 513 default n 514 515config PHYS_RAM_BASE 516 hex "Platform Physical RAM address" 517 depends on PHYS_RAM_BASE_FIXED 518 default "0x80000000" 519 help 520 This is the physical address of RAM in the system. It has to be 521 explicitly specified to run early relocations of read-write data 522 from flash to RAM. 523 524config XIP_KERNEL 525 bool "Kernel Execute-In-Place from ROM" 526 depends on MMU && SPARSEMEM 527 # This prevents XIP from being enabled by all{yes,mod}config, which 528 # fail to build since XIP doesn't support large kernels. 529 depends on !COMPILE_TEST 530 select PHYS_RAM_BASE_FIXED 531 help 532 Execute-In-Place allows the kernel to run from non-volatile storage 533 directly addressable by the CPU, such as NOR flash. This saves RAM 534 space since the text section of the kernel is not loaded from flash 535 to RAM. Read-write sections, such as the data section and stack, 536 are still copied to RAM. The XIP kernel is not compressed since 537 it has to run directly from flash, so it will take more space to 538 store it. The flash address used to link the kernel object files, 539 and for storing it, is configuration dependent. Therefore, if you 540 say Y here, you must know the proper physical address where to 541 store the kernel image depending on your own flash memory usage. 542 543 Also note that the make target becomes "make xipImage" rather than 544 "make zImage" or "make Image". The final kernel binary to put in 545 ROM memory will be arch/riscv/boot/xipImage. 546 547 SPARSEMEM is required because the kernel text and rodata that are 548 flash resident are not backed by memmap, then any attempt to get 549 a struct page on those regions will trigger a fault. 550 551 If unsure, say N. 552 553config XIP_PHYS_ADDR 554 hex "XIP Kernel Physical Location" 555 depends on XIP_KERNEL 556 default "0x21000000" 557 help 558 This is the physical address in your flash memory the kernel will 559 be linked for and stored to. This address is dependent on your 560 own flash usage. 561 562endmenu 563 564config BUILTIN_DTB 565 bool 566 depends on OF 567 default y if XIP_KERNEL 568 569menu "Power management options" 570 571source "kernel/power/Kconfig" 572 573endmenu 574