Kconfig 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185
  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. config 64BIT
  7. bool
  8. config 32BIT
  9. bool
  10. config RISCV
  11. def_bool y
  12. select ACPI_GENERIC_GSI if ACPI
  13. select ACPI_MCFG if (ACPI && PCI)
  14. select ACPI_PPTT if ACPI
  15. select ACPI_REDUCED_HARDWARE_ONLY if ACPI
  16. select ACPI_SPCR_TABLE if ACPI
  17. select ARCH_DMA_DEFAULT_COHERENT
  18. select ARCH_ENABLE_HUGEPAGE_MIGRATION if HUGETLB_PAGE && MIGRATION
  19. select ARCH_ENABLE_MEMORY_HOTPLUG if SPARSEMEM_VMEMMAP
  20. select ARCH_ENABLE_MEMORY_HOTREMOVE if MEMORY_HOTPLUG
  21. select ARCH_ENABLE_SPLIT_PMD_PTLOCK if PGTABLE_LEVELS > 2
  22. select ARCH_ENABLE_THP_MIGRATION if TRANSPARENT_HUGEPAGE
  23. select ARCH_HAS_BINFMT_FLAT
  24. select ARCH_HAS_CURRENT_STACK_POINTER
  25. select ARCH_HAS_DEBUG_VIRTUAL if MMU
  26. select ARCH_HAS_DEBUG_VM_PGTABLE
  27. select ARCH_HAS_DEBUG_WX
  28. select ARCH_HAS_FAST_MULTIPLIER
  29. select ARCH_HAS_FORTIFY_SOURCE
  30. select ARCH_HAS_GCOV_PROFILE_ALL
  31. select ARCH_HAS_GIGANTIC_PAGE
  32. select ARCH_HAS_KCOV
  33. select ARCH_HAS_KERNEL_FPU_SUPPORT if 64BIT && FPU
  34. select ARCH_HAS_MEMBARRIER_CALLBACKS
  35. select ARCH_HAS_MEMBARRIER_SYNC_CORE
  36. select ARCH_HAS_MMIOWB
  37. select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
  38. select ARCH_HAS_PMEM_API
  39. select ARCH_HAS_PREPARE_SYNC_CORE_CMD
  40. select ARCH_HAS_PTE_DEVMAP if 64BIT && MMU
  41. select ARCH_HAS_PTE_SPECIAL
  42. select ARCH_HAS_SET_DIRECT_MAP if MMU
  43. select ARCH_HAS_SET_MEMORY if MMU
  44. select ARCH_HAS_STRICT_KERNEL_RWX if MMU && !XIP_KERNEL
  45. select ARCH_HAS_STRICT_MODULE_RWX if MMU && !XIP_KERNEL
  46. select ARCH_HAS_SYNC_CORE_BEFORE_USERMODE
  47. select ARCH_HAS_SYSCALL_WRAPPER
  48. select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
  49. select ARCH_HAS_UBSAN
  50. select ARCH_HAS_VDSO_DATA
  51. select ARCH_KEEP_MEMBLOCK if ACPI
  52. select ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE if 64BIT && MMU
  53. select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX
  54. select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
  55. select ARCH_STACKWALK
  56. select ARCH_SUPPORTS_ATOMIC_RMW
  57. select ARCH_SUPPORTS_CFI_CLANG
  58. select ARCH_SUPPORTS_DEBUG_PAGEALLOC if MMU
  59. select ARCH_SUPPORTS_HUGETLBFS if MMU
  60. # LLD >= 14: https://github.com/llvm/llvm-project/issues/50505
  61. select ARCH_SUPPORTS_LTO_CLANG if LLD_VERSION >= 140000
  62. select ARCH_SUPPORTS_LTO_CLANG_THIN if LLD_VERSION >= 140000
  63. select ARCH_SUPPORTS_PAGE_TABLE_CHECK if MMU
  64. select ARCH_SUPPORTS_PER_VMA_LOCK if MMU
  65. select ARCH_SUPPORTS_RT
  66. select ARCH_SUPPORTS_SHADOW_CALL_STACK if HAVE_SHADOW_CALL_STACK
  67. select ARCH_USE_CMPXCHG_LOCKREF if 64BIT
  68. select ARCH_USE_MEMTEST
  69. select ARCH_USE_QUEUED_RWLOCKS
  70. select ARCH_USE_SYM_ANNOTATIONS
  71. select ARCH_USES_CFI_TRAPS if CFI_CLANG
  72. select ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH if MMU
  73. select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU
  74. select ARCH_WANT_FRAME_POINTERS
  75. select ARCH_WANT_GENERAL_HUGETLB if !RISCV_ISA_SVNAPOT
  76. select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
  77. select ARCH_WANT_LD_ORPHAN_WARN if !XIP_KERNEL
  78. select ARCH_WANT_OPTIMIZE_DAX_VMEMMAP
  79. select ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP
  80. select ARCH_WANTS_NO_INSTR
  81. select ARCH_WANTS_THP_SWAP if HAVE_ARCH_TRANSPARENT_HUGEPAGE
  82. select BINFMT_FLAT_NO_DATA_START_OFFSET if !MMU
  83. select BUILDTIME_TABLE_SORT if MMU
  84. select CLINT_TIMER if RISCV_M_MODE
  85. select CLONE_BACKWARDS
  86. select COMMON_CLK
  87. select CPU_PM if CPU_IDLE || HIBERNATION || SUSPEND
  88. select EDAC_SUPPORT
  89. select FRAME_POINTER if PERF_EVENTS || (FUNCTION_TRACER && !DYNAMIC_FTRACE)
  90. select FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY if DYNAMIC_FTRACE
  91. select GENERIC_ARCH_TOPOLOGY
  92. select GENERIC_ATOMIC64 if !64BIT
  93. select GENERIC_CLOCKEVENTS_BROADCAST if SMP
  94. select GENERIC_CPU_DEVICES
  95. select GENERIC_CPU_VULNERABILITIES
  96. select GENERIC_EARLY_IOREMAP
  97. select GENERIC_ENTRY
  98. select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO
  99. select GENERIC_IDLE_POLL_SETUP
  100. select GENERIC_IOREMAP if MMU
  101. select GENERIC_IRQ_IPI if SMP
  102. select GENERIC_IRQ_IPI_MUX if SMP
  103. select GENERIC_IRQ_MULTI_HANDLER
  104. select GENERIC_IRQ_SHOW
  105. select GENERIC_IRQ_SHOW_LEVEL
  106. select GENERIC_LIB_DEVMEM_IS_ALLOWED
  107. select GENERIC_PCI_IOMAP
  108. select GENERIC_PTDUMP if MMU
  109. select GENERIC_SCHED_CLOCK
  110. select GENERIC_SMP_IDLE_THREAD
  111. select GENERIC_TIME_VSYSCALL if MMU && 64BIT
  112. select GENERIC_VDSO_TIME_NS if HAVE_GENERIC_VDSO
  113. select HARDIRQS_SW_RESEND
  114. select HAS_IOPORT if MMU
  115. select HAVE_ARCH_AUDITSYSCALL
  116. select HAVE_ARCH_HUGE_VMALLOC if HAVE_ARCH_HUGE_VMAP
  117. select HAVE_ARCH_HUGE_VMAP if MMU && 64BIT
  118. select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL
  119. select HAVE_ARCH_JUMP_LABEL_RELATIVE if !XIP_KERNEL
  120. select HAVE_ARCH_KASAN if MMU && 64BIT
  121. select HAVE_ARCH_KASAN_VMALLOC if MMU && 64BIT
  122. select HAVE_ARCH_KFENCE if MMU && 64BIT
  123. select HAVE_ARCH_KGDB if !XIP_KERNEL
  124. select HAVE_ARCH_KGDB_QXFER_PKT
  125. select HAVE_ARCH_MMAP_RND_BITS if MMU
  126. select HAVE_ARCH_MMAP_RND_COMPAT_BITS if COMPAT
  127. select HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET
  128. select HAVE_ARCH_SECCOMP_FILTER
  129. select HAVE_ARCH_STACKLEAK
  130. select HAVE_ARCH_THREAD_STRUCT_WHITELIST
  131. select HAVE_ARCH_TRACEHOOK
  132. select HAVE_ARCH_TRANSPARENT_HUGEPAGE if 64BIT && MMU
  133. select HAVE_ARCH_USERFAULTFD_MINOR if 64BIT && USERFAULTFD
  134. select HAVE_ARCH_VMAP_STACK if MMU && 64BIT
  135. select HAVE_ASM_MODVERSIONS
  136. select HAVE_CONTEXT_TRACKING_USER
  137. select HAVE_DEBUG_KMEMLEAK
  138. select HAVE_DMA_CONTIGUOUS if MMU
  139. select HAVE_DYNAMIC_FTRACE if !XIP_KERNEL && MMU && (CLANG_SUPPORTS_DYNAMIC_FTRACE || GCC_SUPPORTS_DYNAMIC_FTRACE)
  140. select HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
  141. select HAVE_DYNAMIC_FTRACE_WITH_ARGS if HAVE_DYNAMIC_FTRACE
  142. select HAVE_FTRACE_MCOUNT_RECORD if !XIP_KERNEL
  143. select HAVE_FUNCTION_GRAPH_TRACER
  144. select HAVE_FUNCTION_GRAPH_RETVAL if HAVE_FUNCTION_GRAPH_TRACER
  145. select HAVE_FUNCTION_TRACER if !XIP_KERNEL && !PREEMPTION
  146. select HAVE_EBPF_JIT if MMU
  147. select HAVE_GUP_FAST if MMU
  148. select HAVE_FUNCTION_ARG_ACCESS_API
  149. select HAVE_FUNCTION_ERROR_INJECTION
  150. select HAVE_GCC_PLUGINS
  151. select HAVE_GENERIC_VDSO if MMU && 64BIT
  152. select HAVE_IRQ_TIME_ACCOUNTING
  153. select HAVE_KERNEL_BZIP2 if !XIP_KERNEL && !EFI_ZBOOT
  154. select HAVE_KERNEL_GZIP if !XIP_KERNEL && !EFI_ZBOOT
  155. select HAVE_KERNEL_LZ4 if !XIP_KERNEL && !EFI_ZBOOT
  156. select HAVE_KERNEL_LZMA if !XIP_KERNEL && !EFI_ZBOOT
  157. select HAVE_KERNEL_LZO if !XIP_KERNEL && !EFI_ZBOOT
  158. select HAVE_KERNEL_UNCOMPRESSED if !XIP_KERNEL && !EFI_ZBOOT
  159. select HAVE_KERNEL_ZSTD if !XIP_KERNEL && !EFI_ZBOOT
  160. select HAVE_KERNEL_XZ if !XIP_KERNEL && !EFI_ZBOOT
  161. select HAVE_KPROBES if !XIP_KERNEL
  162. select HAVE_KRETPROBES if !XIP_KERNEL
  163. # https://github.com/ClangBuiltLinux/linux/issues/1881
  164. select HAVE_LD_DEAD_CODE_DATA_ELIMINATION if !LD_IS_LLD
  165. select HAVE_MOVE_PMD
  166. select HAVE_MOVE_PUD
  167. select HAVE_PAGE_SIZE_4KB
  168. select HAVE_PCI
  169. select HAVE_PERF_EVENTS
  170. select HAVE_PERF_REGS
  171. select HAVE_PERF_USER_STACK_DUMP
  172. select HAVE_POSIX_CPU_TIMERS_TASK_WORK
  173. select HAVE_PREEMPT_DYNAMIC_KEY if !XIP_KERNEL
  174. select HAVE_REGS_AND_STACK_ACCESS_API
  175. select HAVE_RETHOOK if !XIP_KERNEL
  176. select HAVE_RSEQ
  177. select HAVE_RUST if RUSTC_SUPPORTS_RISCV && CC_IS_CLANG
  178. select HAVE_SAMPLE_FTRACE_DIRECT
  179. select HAVE_SAMPLE_FTRACE_DIRECT_MULTI
  180. select HAVE_STACKPROTECTOR
  181. select HAVE_SYSCALL_TRACEPOINTS
  182. select HOTPLUG_CORE_SYNC_DEAD if HOTPLUG_CPU
  183. select IRQ_DOMAIN
  184. select IRQ_FORCED_THREADING
  185. select KASAN_VMALLOC if KASAN
  186. select LOCK_MM_AND_FIND_VMA
  187. select MMU_GATHER_RCU_TABLE_FREE if SMP && MMU
  188. select MODULES_USE_ELF_RELA if MODULES
  189. select OF
  190. select OF_EARLY_FLATTREE
  191. select OF_IRQ
  192. select PCI_DOMAINS_GENERIC if PCI
  193. select PCI_ECAM if (ACPI && PCI)
  194. select PCI_MSI if PCI
  195. select RISCV_ALTERNATIVE if !XIP_KERNEL
  196. select RISCV_APLIC
  197. select RISCV_IMSIC
  198. select RISCV_INTC
  199. select RISCV_TIMER if RISCV_SBI
  200. select SIFIVE_PLIC
  201. select SPARSE_IRQ
  202. select SYSCTL_EXCEPTION_TRACE
  203. select THREAD_INFO_IN_TASK
  204. select TRACE_IRQFLAGS_SUPPORT
  205. select UACCESS_MEMCPY if !MMU
  206. select USER_STACKTRACE_SUPPORT
  207. select ZONE_DMA32 if 64BIT
  208. config RUSTC_SUPPORTS_RISCV
  209. def_bool y
  210. depends on 64BIT
  211. # Shadow call stack requires rustc version 1.82+ due to use of the
  212. # -Zsanitizer=shadow-call-stack flag.
  213. depends on !SHADOW_CALL_STACK || RUSTC_VERSION >= 108200
  214. config CLANG_SUPPORTS_DYNAMIC_FTRACE
  215. def_bool CC_IS_CLANG
  216. # https://github.com/ClangBuiltLinux/linux/issues/1817
  217. depends on AS_IS_GNU || (AS_IS_LLVM && (LD_IS_LLD || LD_VERSION >= 23600))
  218. config GCC_SUPPORTS_DYNAMIC_FTRACE
  219. def_bool CC_IS_GCC
  220. depends on $(cc-option,-fpatchable-function-entry=8)
  221. config HAVE_SHADOW_CALL_STACK
  222. def_bool $(cc-option,-fsanitize=shadow-call-stack)
  223. # https://github.com/riscv-non-isa/riscv-elf-psabi-doc/commit/a484e843e6eeb51f0cb7b8819e50da6d2444d769
  224. depends on $(ld-option,--no-relax-gp)
  225. config RISCV_USE_LINKER_RELAXATION
  226. def_bool y
  227. # https://github.com/llvm/llvm-project/commit/6611d58f5bbcbec77262d392e2923e1d680f6985
  228. depends on !LD_IS_LLD || LLD_VERSION >= 150000
  229. # https://github.com/llvm/llvm-project/commit/bbc0f99f3bc96f1db16f649fc21dd18e5b0918f6
  230. config ARCH_HAS_BROKEN_DWARF5
  231. def_bool y
  232. depends on RISCV_USE_LINKER_RELAXATION
  233. # https://github.com/llvm/llvm-project/commit/1df5ea29b43690b6622db2cad7b745607ca4de6a
  234. depends on AS_IS_LLVM && AS_VERSION < 180000
  235. # https://github.com/llvm/llvm-project/commit/7ffabb61a5569444b5ac9322e22e5471cc5e4a77
  236. depends on LD_IS_LLD && LLD_VERSION < 180000
  237. config ARCH_MMAP_RND_BITS_MIN
  238. default 18 if 64BIT
  239. default 8
  240. config ARCH_MMAP_RND_COMPAT_BITS_MIN
  241. default 8
  242. # max bits determined by the following formula:
  243. # VA_BITS - PAGE_SHIFT - 3
  244. config ARCH_MMAP_RND_BITS_MAX
  245. default 24 if 64BIT # SV39 based
  246. default 17
  247. config ARCH_MMAP_RND_COMPAT_BITS_MAX
  248. default 17
  249. # set if we run in machine mode, cleared if we run in supervisor mode
  250. config RISCV_M_MODE
  251. bool "Build a kernel that runs in machine mode"
  252. depends on !MMU
  253. default y
  254. help
  255. Select this option if you want to run the kernel in M-mode,
  256. without the assistance of any other firmware.
  257. # set if we are running in S-mode and can use SBI calls
  258. config RISCV_SBI
  259. bool
  260. depends on !RISCV_M_MODE
  261. default y
  262. config MMU
  263. bool "MMU-based Paged Memory Management Support"
  264. default y
  265. help
  266. Select if you want MMU-based virtualised addressing space
  267. support by paged memory management. If unsure, say 'Y'.
  268. config PAGE_OFFSET
  269. hex
  270. default 0x80000000 if !MMU && RISCV_M_MODE
  271. default 0x80200000 if !MMU
  272. default 0xc0000000 if 32BIT
  273. default 0xff60000000000000 if 64BIT
  274. config KASAN_SHADOW_OFFSET
  275. hex
  276. depends on KASAN_GENERIC
  277. default 0xdfffffff00000000 if 64BIT
  278. default 0xffffffff if 32BIT
  279. config ARCH_FLATMEM_ENABLE
  280. def_bool !NUMA
  281. config ARCH_SPARSEMEM_ENABLE
  282. def_bool y
  283. depends on MMU
  284. select SPARSEMEM_STATIC if 32BIT && SPARSEMEM
  285. select SPARSEMEM_VMEMMAP_ENABLE if 64BIT
  286. config ARCH_SELECT_MEMORY_MODEL
  287. def_bool ARCH_SPARSEMEM_ENABLE
  288. config ARCH_SUPPORTS_UPROBES
  289. def_bool y
  290. config STACKTRACE_SUPPORT
  291. def_bool y
  292. config GENERIC_BUG
  293. def_bool y
  294. depends on BUG
  295. select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
  296. config GENERIC_BUG_RELATIVE_POINTERS
  297. bool
  298. config GENERIC_CALIBRATE_DELAY
  299. def_bool y
  300. config GENERIC_CSUM
  301. def_bool y
  302. config GENERIC_HWEIGHT
  303. def_bool y
  304. config FIX_EARLYCON_MEM
  305. def_bool MMU
  306. config ILLEGAL_POINTER_VALUE
  307. hex
  308. default 0 if 32BIT
  309. default 0xdead000000000000 if 64BIT
  310. config PGTABLE_LEVELS
  311. int
  312. default 5 if 64BIT
  313. default 2
  314. config LOCKDEP_SUPPORT
  315. def_bool y
  316. config RISCV_DMA_NONCOHERENT
  317. bool
  318. select ARCH_HAS_DMA_PREP_COHERENT
  319. select ARCH_HAS_SETUP_DMA_OPS
  320. select ARCH_HAS_SYNC_DMA_FOR_CPU
  321. select ARCH_HAS_SYNC_DMA_FOR_DEVICE
  322. select DMA_BOUNCE_UNALIGNED_KMALLOC if SWIOTLB
  323. config RISCV_NONSTANDARD_CACHE_OPS
  324. bool
  325. help
  326. This enables function pointer support for non-standard noncoherent
  327. systems to handle cache management.
  328. config AS_HAS_INSN
  329. def_bool $(as-instr,.insn r 51$(comma) 0$(comma) 0$(comma) t0$(comma) t0$(comma) zero)
  330. config AS_HAS_OPTION_ARCH
  331. # https://github.com/llvm/llvm-project/commit/9e8ed3403c191ab9c4903e8eeb8f732ff8a43cb4
  332. def_bool y
  333. depends on $(as-instr, .option arch$(comma) +m)
  334. source "arch/riscv/Kconfig.socs"
  335. source "arch/riscv/Kconfig.errata"
  336. menu "Platform type"
  337. config NONPORTABLE
  338. bool "Allow configurations that result in non-portable kernels"
  339. help
  340. RISC-V kernel binaries are compatible between all known systems
  341. whenever possible, but there are some use cases that can only be
  342. satisfied by configurations that result in kernel binaries that are
  343. not portable between systems.
  344. Selecting N does not guarantee kernels will be portable to all known
  345. systems. Selecting any of the options guarded by NONPORTABLE will
  346. result in kernel binaries that are unlikely to be portable between
  347. systems.
  348. If unsure, say N.
  349. choice
  350. prompt "Base ISA"
  351. default ARCH_RV64I
  352. help
  353. This selects the base ISA that this kernel will target and must match
  354. the target platform.
  355. config ARCH_RV32I
  356. bool "RV32I"
  357. depends on NONPORTABLE
  358. select 32BIT
  359. select GENERIC_LIB_ASHLDI3
  360. select GENERIC_LIB_ASHRDI3
  361. select GENERIC_LIB_LSHRDI3
  362. select GENERIC_LIB_UCMPDI2
  363. config ARCH_RV64I
  364. bool "RV64I"
  365. select 64BIT
  366. select ARCH_SUPPORTS_INT128 if CC_HAS_INT128
  367. select SWIOTLB if MMU
  368. endchoice
  369. # We must be able to map all physical memory into the kernel, but the compiler
  370. # is still a bit more efficient when generating code if it's setup in a manner
  371. # such that it can only map 2GiB of memory.
  372. choice
  373. prompt "Kernel Code Model"
  374. default CMODEL_MEDLOW if 32BIT
  375. default CMODEL_MEDANY if 64BIT
  376. config CMODEL_MEDLOW
  377. bool "medium low code model"
  378. config CMODEL_MEDANY
  379. bool "medium any code model"
  380. endchoice
  381. config MODULE_SECTIONS
  382. bool
  383. select HAVE_MOD_ARCH_SPECIFIC
  384. config SMP
  385. bool "Symmetric Multi-Processing"
  386. help
  387. This enables support for systems with more than one CPU. If
  388. you say N here, the kernel will run on single and
  389. multiprocessor machines, but will use only one CPU of a
  390. multiprocessor machine. If you say Y here, the kernel will run
  391. on many, but not all, single processor machines. On a single
  392. processor machine, the kernel will run faster if you say N
  393. here.
  394. If you don't know what to do here, say N.
  395. config SCHED_MC
  396. bool "Multi-core scheduler support"
  397. depends on SMP
  398. help
  399. Multi-core scheduler support improves the CPU scheduler's decision
  400. making when dealing with multi-core CPU chips at a cost of slightly
  401. increased overhead in some places. If unsure say N here.
  402. config NR_CPUS
  403. int "Maximum number of CPUs (2-512)"
  404. depends on SMP
  405. range 2 512 if !RISCV_SBI_V01
  406. range 2 32 if RISCV_SBI_V01 && 32BIT
  407. range 2 64 if RISCV_SBI_V01 && 64BIT
  408. default "32" if 32BIT
  409. default "64" if 64BIT
  410. config HOTPLUG_CPU
  411. bool "Support for hot-pluggable CPUs"
  412. depends on SMP
  413. select GENERIC_IRQ_MIGRATION
  414. help
  415. Say Y here to experiment with turning CPUs off and on. CPUs
  416. can be controlled through /sys/devices/system/cpu.
  417. Say N if you want to disable CPU hotplug.
  418. choice
  419. prompt "CPU Tuning"
  420. default TUNE_GENERIC
  421. config TUNE_GENERIC
  422. bool "generic"
  423. endchoice
  424. # Common NUMA Features
  425. config NUMA
  426. bool "NUMA Memory Allocation and Scheduler Support"
  427. depends on SMP && MMU
  428. select ARCH_SUPPORTS_NUMA_BALANCING
  429. select GENERIC_ARCH_NUMA
  430. select HAVE_SETUP_PER_CPU_AREA
  431. select NEED_PER_CPU_EMBED_FIRST_CHUNK
  432. select NEED_PER_CPU_PAGE_FIRST_CHUNK
  433. select OF_NUMA
  434. select USE_PERCPU_NUMA_NODE_ID
  435. help
  436. Enable NUMA (Non-Uniform Memory Access) support.
  437. The kernel will try to allocate memory used by a CPU on the
  438. local memory of the CPU and add some more NUMA awareness to the kernel.
  439. config NODES_SHIFT
  440. int "Maximum NUMA Nodes (as a power of 2)"
  441. range 1 10
  442. default "2"
  443. depends on NUMA
  444. help
  445. Specify the maximum number of NUMA Nodes available on the target
  446. system. Increases memory reserved to accommodate various tables.
  447. config RISCV_ALTERNATIVE
  448. bool
  449. depends on !XIP_KERNEL
  450. help
  451. This Kconfig allows the kernel to automatically patch the
  452. erratum or cpufeature required by the execution platform at run
  453. time. The code patching overhead is minimal, as it's only done
  454. once at boot and once on each module load.
  455. config RISCV_ALTERNATIVE_EARLY
  456. bool
  457. depends on RISCV_ALTERNATIVE
  458. help
  459. Allows early patching of the kernel for special errata
  460. config RISCV_ISA_C
  461. bool "Emit compressed instructions when building Linux"
  462. default y
  463. help
  464. Adds "C" to the ISA subsets that the toolchain is allowed to emit
  465. when building Linux, which results in compressed instructions in the
  466. Linux binary.
  467. If you don't know what to do here, say Y.
  468. config RISCV_ISA_SVNAPOT
  469. bool "Svnapot extension support for supervisor mode NAPOT pages"
  470. depends on 64BIT && MMU
  471. depends on RISCV_ALTERNATIVE
  472. default y
  473. help
  474. Allow kernel to detect the Svnapot ISA-extension dynamically at boot
  475. time and enable its usage.
  476. The Svnapot extension is used to mark contiguous PTEs as a range
  477. of contiguous virtual-to-physical translations for a naturally
  478. aligned power-of-2 (NAPOT) granularity larger than the base 4KB page
  479. size. When HUGETLBFS is also selected this option unconditionally
  480. allocates some memory for each NAPOT page size supported by the kernel.
  481. When optimizing for low memory consumption and for platforms without
  482. the Svnapot extension, it may be better to say N here.
  483. If you don't know what to do here, say Y.
  484. config RISCV_ISA_SVPBMT
  485. bool "Svpbmt extension support for supervisor mode page-based memory types"
  486. depends on 64BIT && MMU
  487. depends on RISCV_ALTERNATIVE
  488. default y
  489. help
  490. Adds support to dynamically detect the presence of the Svpbmt
  491. ISA-extension (Supervisor-mode: page-based memory types) and
  492. enable its usage.
  493. The memory type for a page contains a combination of attributes
  494. that indicate the cacheability, idempotency, and ordering
  495. properties for access to that page.
  496. The Svpbmt extension is only available on 64-bit cpus.
  497. If you don't know what to do here, say Y.
  498. config TOOLCHAIN_HAS_V
  499. bool
  500. default y
  501. depends on !64BIT || $(cc-option,-mabi=lp64 -march=rv64imv)
  502. depends on !32BIT || $(cc-option,-mabi=ilp32 -march=rv32imv)
  503. depends on LLD_VERSION >= 140000 || LD_VERSION >= 23800
  504. depends on AS_HAS_OPTION_ARCH
  505. config RISCV_ISA_V
  506. bool "VECTOR extension support"
  507. depends on TOOLCHAIN_HAS_V
  508. depends on FPU
  509. select DYNAMIC_SIGFRAME
  510. default y
  511. help
  512. Say N here if you want to disable all vector related procedure
  513. in the kernel.
  514. If you don't know what to do here, say Y.
  515. config RISCV_ISA_V_DEFAULT_ENABLE
  516. bool "Enable userspace Vector by default"
  517. depends on RISCV_ISA_V
  518. default y
  519. help
  520. Say Y here if you want to enable Vector in userspace by default.
  521. Otherwise, userspace has to make explicit prctl() call to enable
  522. Vector, or enable it via the sysctl interface.
  523. If you don't know what to do here, say Y.
  524. config RISCV_ISA_V_UCOPY_THRESHOLD
  525. int "Threshold size for vectorized user copies"
  526. depends on RISCV_ISA_V
  527. default 768
  528. help
  529. Prefer using vectorized copy_to_user()/copy_from_user() when the
  530. workload size exceeds this value.
  531. config RISCV_ISA_V_PREEMPTIVE
  532. bool "Run kernel-mode Vector with kernel preemption"
  533. depends on PREEMPTION
  534. depends on RISCV_ISA_V
  535. default y
  536. help
  537. Usually, in-kernel SIMD routines are run with preemption disabled.
  538. Functions which envoke long running SIMD thus must yield core's
  539. vector unit to prevent blocking other tasks for too long.
  540. This config allows kernel to run SIMD without explicitly disable
  541. preemption. Enabling this config will result in higher memory
  542. consumption due to the allocation of per-task's kernel Vector context.
  543. config RISCV_ISA_ZAWRS
  544. bool "Zawrs extension support for more efficient busy waiting"
  545. depends on RISCV_ALTERNATIVE
  546. default y
  547. help
  548. The Zawrs extension defines instructions to be used in polling loops
  549. which allow a hart to enter a low-power state or to trap to the
  550. hypervisor while waiting on a store to a memory location. Enable the
  551. use of these instructions in the kernel when the Zawrs extension is
  552. detected at boot.
  553. If you don't know what to do here, say Y.
  554. config TOOLCHAIN_HAS_ZBB
  555. bool
  556. default y
  557. depends on !64BIT || $(cc-option,-mabi=lp64 -march=rv64ima_zbb)
  558. depends on !32BIT || $(cc-option,-mabi=ilp32 -march=rv32ima_zbb)
  559. depends on LLD_VERSION >= 150000 || LD_VERSION >= 23900
  560. depends on AS_HAS_OPTION_ARCH
  561. # This symbol indicates that the toolchain supports all v1.0 vector crypto
  562. # extensions, including Zvk*, Zvbb, and Zvbc. LLVM added all of these at once.
  563. # binutils added all except Zvkb, then added Zvkb. So we just check for Zvkb.
  564. config TOOLCHAIN_HAS_VECTOR_CRYPTO
  565. def_bool $(as-instr, .option arch$(comma) +v$(comma) +zvkb)
  566. depends on AS_HAS_OPTION_ARCH
  567. config RISCV_ISA_ZBA
  568. bool "Zba extension support for bit manipulation instructions"
  569. default y
  570. help
  571. Add support for enabling optimisations in the kernel when the Zba
  572. extension is detected at boot.
  573. The Zba extension provides instructions to accelerate the generation
  574. of addresses that index into arrays of basic data types.
  575. If you don't know what to do here, say Y.
  576. config RISCV_ISA_ZBB
  577. bool "Zbb extension support for bit manipulation instructions"
  578. depends on TOOLCHAIN_HAS_ZBB
  579. depends on RISCV_ALTERNATIVE
  580. default y
  581. help
  582. Adds support to dynamically detect the presence of the ZBB
  583. extension (basic bit manipulation) and enable its usage.
  584. The Zbb extension provides instructions to accelerate a number
  585. of bit-specific operations (count bit population, sign extending,
  586. bitrotation, etc).
  587. If you don't know what to do here, say Y.
  588. config TOOLCHAIN_HAS_ZBC
  589. bool
  590. default y
  591. depends on !64BIT || $(cc-option,-mabi=lp64 -march=rv64ima_zbc)
  592. depends on !32BIT || $(cc-option,-mabi=ilp32 -march=rv32ima_zbc)
  593. depends on LLD_VERSION >= 150000 || LD_VERSION >= 23900
  594. depends on AS_HAS_OPTION_ARCH
  595. config RISCV_ISA_ZBC
  596. bool "Zbc extension support for carry-less multiplication instructions"
  597. depends on TOOLCHAIN_HAS_ZBC
  598. depends on MMU
  599. depends on RISCV_ALTERNATIVE
  600. default y
  601. help
  602. Adds support to dynamically detect the presence of the Zbc
  603. extension (carry-less multiplication) and enable its usage.
  604. The Zbc extension could accelerate CRC (cyclic redundancy check)
  605. calculations.
  606. If you don't know what to do here, say Y.
  607. config RISCV_ISA_ZICBOM
  608. bool "Zicbom extension support for non-coherent DMA operation"
  609. depends on MMU
  610. depends on RISCV_ALTERNATIVE
  611. default y
  612. select RISCV_DMA_NONCOHERENT
  613. select DMA_DIRECT_REMAP
  614. help
  615. Adds support to dynamically detect the presence of the ZICBOM
  616. extension (Cache Block Management Operations) and enable its
  617. usage.
  618. The Zicbom extension can be used to handle for example
  619. non-coherent DMA support on devices that need it.
  620. If you don't know what to do here, say Y.
  621. config RISCV_ISA_ZICBOZ
  622. bool "Zicboz extension support for faster zeroing of memory"
  623. depends on RISCV_ALTERNATIVE
  624. default y
  625. help
  626. Enable the use of the Zicboz extension (cbo.zero instruction)
  627. when available.
  628. The Zicboz extension is used for faster zeroing of memory.
  629. If you don't know what to do here, say Y.
  630. config TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI
  631. def_bool y
  632. # https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=aed44286efa8ae8717a77d94b51ac3614e2ca6dc
  633. # https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=98416dbb0a62579d4a7a4a76bab51b5b52fec2cd
  634. depends on AS_IS_GNU && AS_VERSION >= 23600
  635. help
  636. Binutils-2.38 and GCC-12.1.0 bumped the default ISA spec to the newer
  637. 20191213 version, which moves some instructions from the I extension to
  638. the Zicsr and Zifencei extensions. This requires explicitly specifying
  639. Zicsr and Zifencei when binutils >= 2.38 or GCC >= 12.1.0. Zicsr
  640. and Zifencei are supported in binutils from version 2.36 onwards.
  641. To make life easier, and avoid forcing toolchains that default to a
  642. newer ISA spec to version 2.2, relax the check to binutils >= 2.36.
  643. For clang < 17 or GCC < 11.3.0, for which this is not possible or need
  644. special treatment, this is dealt with in TOOLCHAIN_NEEDS_OLD_ISA_SPEC.
  645. config TOOLCHAIN_NEEDS_OLD_ISA_SPEC
  646. def_bool y
  647. depends on TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI
  648. # https://github.com/llvm/llvm-project/commit/22e199e6afb1263c943c0c0d4498694e15bf8a16
  649. # https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=d29f5d6ab513c52fd872f532c492e35ae9fd6671
  650. depends on (CC_IS_CLANG && CLANG_VERSION < 170000) || (CC_IS_GCC && GCC_VERSION < 110300)
  651. help
  652. Certain versions of clang and GCC do not support zicsr and zifencei via
  653. -march. This option causes an older ISA spec compatible with these older
  654. versions of clang and GCC to be passed to GAS, which has the same result
  655. as passing zicsr and zifencei to -march.
  656. config FPU
  657. bool "FPU support"
  658. default y
  659. help
  660. Say N here if you want to disable all floating-point related procedure
  661. in the kernel.
  662. If you don't know what to do here, say Y.
  663. config IRQ_STACKS
  664. bool "Independent irq & softirq stacks" if EXPERT
  665. default y
  666. select HAVE_IRQ_EXIT_ON_IRQ_STACK
  667. select HAVE_SOFTIRQ_ON_OWN_STACK
  668. help
  669. Add independent irq & softirq stacks for percpu to prevent kernel stack
  670. overflows. We may save some memory footprint by disabling IRQ_STACKS.
  671. config THREAD_SIZE_ORDER
  672. int "Kernel stack size (in power-of-two numbers of page size)" if VMAP_STACK && EXPERT
  673. range 0 4
  674. default 1 if 32BIT
  675. default 2
  676. help
  677. Specify the Pages of thread stack size (from 4KB to 64KB), which also
  678. affects irq stack size, which is equal to thread stack size.
  679. config RISCV_MISALIGNED
  680. bool
  681. select SYSCTL_ARCH_UNALIGN_ALLOW
  682. help
  683. Embed support for emulating misaligned loads and stores.
  684. choice
  685. prompt "Unaligned Accesses Support"
  686. default RISCV_PROBE_UNALIGNED_ACCESS
  687. help
  688. This determines the level of support for unaligned accesses. This
  689. information is used by the kernel to perform optimizations. It is also
  690. exposed to user space via the hwprobe syscall. The hardware will be
  691. probed at boot by default.
  692. config RISCV_PROBE_UNALIGNED_ACCESS
  693. bool "Probe for hardware unaligned access support"
  694. select RISCV_MISALIGNED
  695. help
  696. During boot, the kernel will run a series of tests to determine the
  697. speed of unaligned accesses. This probing will dynamically determine
  698. the speed of unaligned accesses on the underlying system. If unaligned
  699. memory accesses trap into the kernel as they are not supported by the
  700. system, the kernel will emulate the unaligned accesses to preserve the
  701. UABI.
  702. config RISCV_EMULATED_UNALIGNED_ACCESS
  703. bool "Emulate unaligned access where system support is missing"
  704. select RISCV_MISALIGNED
  705. help
  706. If unaligned memory accesses trap into the kernel as they are not
  707. supported by the system, the kernel will emulate the unaligned
  708. accesses to preserve the UABI. When the underlying system does support
  709. unaligned accesses, the unaligned accesses are assumed to be slow.
  710. config RISCV_SLOW_UNALIGNED_ACCESS
  711. bool "Assume the system supports slow unaligned memory accesses"
  712. depends on NONPORTABLE
  713. help
  714. Assume that the system supports slow unaligned memory accesses. The
  715. kernel and userspace programs may not be able to run at all on systems
  716. that do not support unaligned memory accesses.
  717. config RISCV_EFFICIENT_UNALIGNED_ACCESS
  718. bool "Assume the system supports fast unaligned memory accesses"
  719. depends on NONPORTABLE
  720. select DCACHE_WORD_ACCESS if MMU
  721. select HAVE_EFFICIENT_UNALIGNED_ACCESS
  722. help
  723. Assume that the system supports fast unaligned memory accesses. When
  724. enabled, this option improves the performance of the kernel on such
  725. systems. However, the kernel and userspace programs will run much more
  726. slowly, or will not be able to run at all, on systems that do not
  727. support efficient unaligned memory accesses.
  728. endchoice
  729. source "arch/riscv/Kconfig.vendor"
  730. endmenu # "Platform type"
  731. menu "Kernel features"
  732. source "kernel/Kconfig.hz"
  733. config RISCV_SBI_V01
  734. bool "SBI v0.1 support"
  735. depends on RISCV_SBI
  736. help
  737. This config allows kernel to use SBI v0.1 APIs. This will be
  738. deprecated in future once legacy M-mode software are no longer in use.
  739. config RISCV_BOOT_SPINWAIT
  740. bool "Spinwait booting method"
  741. depends on SMP
  742. default y if RISCV_SBI_V01 || RISCV_M_MODE
  743. help
  744. This enables support for booting Linux via spinwait method. In the
  745. spinwait method, all cores randomly jump to Linux. One of the cores
  746. gets chosen via lottery and all other keep spinning on a percpu
  747. variable. This method cannot support CPU hotplug and sparse hartid
  748. scheme. It should be only enabled for M-mode Linux or platforms relying
  749. on older firmware without SBI HSM extension. All other platforms should
  750. rely on ordered booting via SBI HSM extension which gets chosen
  751. dynamically at runtime if the firmware supports it.
  752. Since spinwait is incompatible with sparse hart IDs, it requires
  753. NR_CPUS be large enough to contain the physical hart ID of the first
  754. hart to enter Linux.
  755. If unsure what to do here, say N.
  756. config ARCH_SUPPORTS_KEXEC
  757. def_bool y
  758. config ARCH_SELECTS_KEXEC
  759. def_bool y
  760. depends on KEXEC
  761. select HOTPLUG_CPU if SMP
  762. config ARCH_SUPPORTS_KEXEC_FILE
  763. def_bool 64BIT
  764. config ARCH_SELECTS_KEXEC_FILE
  765. def_bool y
  766. depends on KEXEC_FILE
  767. select HAVE_IMA_KEXEC if IMA
  768. select KEXEC_ELF
  769. config ARCH_SUPPORTS_KEXEC_PURGATORY
  770. def_bool ARCH_SUPPORTS_KEXEC_FILE
  771. config ARCH_SUPPORTS_CRASH_DUMP
  772. def_bool y
  773. config ARCH_DEFAULT_CRASH_DUMP
  774. def_bool y
  775. config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION
  776. def_bool CRASH_RESERVE
  777. config COMPAT
  778. bool "Kernel support for 32-bit U-mode"
  779. default 64BIT
  780. depends on 64BIT && MMU
  781. help
  782. This option enables support for a 32-bit U-mode running under a 64-bit
  783. kernel at S-mode. riscv32-specific components such as system calls,
  784. the user helper functions (vdso), signal rt_frame functions and the
  785. ptrace interface are handled appropriately by the kernel.
  786. If you want to execute 32-bit userspace applications, say Y.
  787. config PARAVIRT
  788. bool "Enable paravirtualization code"
  789. depends on RISCV_SBI
  790. help
  791. This changes the kernel so it can modify itself when it is run
  792. under a hypervisor, potentially improving performance significantly
  793. over full virtualization.
  794. config PARAVIRT_TIME_ACCOUNTING
  795. bool "Paravirtual steal time accounting"
  796. depends on PARAVIRT
  797. help
  798. Select this option to enable fine granularity task steal time
  799. accounting. Time spent executing other tasks in parallel with
  800. the current vCPU is discounted from the vCPU power. To account for
  801. that, there can be a small performance impact.
  802. If in doubt, say N here.
  803. config RELOCATABLE
  804. bool "Build a relocatable kernel"
  805. depends on MMU && 64BIT && !XIP_KERNEL
  806. select MODULE_SECTIONS if MODULES
  807. help
  808. This builds a kernel as a Position Independent Executable (PIE),
  809. which retains all relocation metadata required to relocate the
  810. kernel binary at runtime to a different virtual address than the
  811. address it was linked at.
  812. Since RISCV uses the RELA relocation format, this requires a
  813. relocation pass at runtime even if the kernel is loaded at the
  814. same address it was linked at.
  815. If unsure, say N.
  816. config RANDOMIZE_BASE
  817. bool "Randomize the address of the kernel image"
  818. select RELOCATABLE
  819. depends on MMU && 64BIT && !XIP_KERNEL
  820. help
  821. Randomizes the virtual address at which the kernel image is
  822. loaded, as a security feature that deters exploit attempts
  823. relying on knowledge of the location of kernel internals.
  824. It is the bootloader's job to provide entropy, by passing a
  825. random u64 value in /chosen/kaslr-seed at kernel entry.
  826. When booting via the UEFI stub, it will invoke the firmware's
  827. EFI_RNG_PROTOCOL implementation (if available) to supply entropy
  828. to the kernel proper. In addition, it will randomise the physical
  829. location of the kernel Image as well.
  830. If unsure, say N.
  831. endmenu # "Kernel features"
  832. menu "Boot options"
  833. config CMDLINE
  834. string "Built-in kernel command line"
  835. help
  836. For most platforms, the arguments for the kernel's command line
  837. are provided at run-time, during boot. However, there are cases
  838. where either no arguments are being provided or the provided
  839. arguments are insufficient or even invalid.
  840. When that occurs, it is possible to define a built-in command
  841. line here and choose how the kernel should use it later on.
  842. choice
  843. prompt "Built-in command line usage"
  844. depends on CMDLINE != ""
  845. default CMDLINE_FALLBACK
  846. help
  847. Choose how the kernel will handle the provided built-in command
  848. line.
  849. config CMDLINE_FALLBACK
  850. bool "Use bootloader kernel arguments if available"
  851. help
  852. Use the built-in command line as fallback in case we get nothing
  853. during boot. This is the default behaviour.
  854. config CMDLINE_EXTEND
  855. bool "Extend bootloader kernel arguments"
  856. help
  857. The command-line arguments provided during boot will be
  858. appended to the built-in command line. This is useful in
  859. cases where the provided arguments are insufficient and
  860. you don't want to or cannot modify them.
  861. config CMDLINE_FORCE
  862. bool "Always use the default kernel command string"
  863. help
  864. Always use the built-in command line, even if we get one during
  865. boot. This is useful in case you need to override the provided
  866. command line on systems where you don't have or want control
  867. over it.
  868. endchoice
  869. config EFI_STUB
  870. bool
  871. config EFI
  872. bool "UEFI runtime support"
  873. depends on OF && !XIP_KERNEL
  874. depends on MMU
  875. default y
  876. select ARCH_SUPPORTS_ACPI if 64BIT
  877. select EFI_GENERIC_STUB
  878. select EFI_PARAMS_FROM_FDT
  879. select EFI_RUNTIME_WRAPPERS
  880. select EFI_STUB
  881. select LIBFDT
  882. select RISCV_ISA_C
  883. select UCS2_STRING
  884. help
  885. This option provides support for runtime services provided
  886. by UEFI firmware (such as non-volatile variables, realtime
  887. clock, and platform reset). A UEFI stub is also provided to
  888. allow the kernel to be booted as an EFI application. This
  889. is only useful on systems that have UEFI firmware.
  890. config DMI
  891. bool "Enable support for SMBIOS (DMI) tables"
  892. depends on EFI
  893. default y
  894. help
  895. This enables SMBIOS/DMI feature for systems.
  896. This option is only useful on systems that have UEFI firmware.
  897. However, even with this option, the resultant kernel should
  898. continue to boot on existing non-UEFI platforms.
  899. config CC_HAVE_STACKPROTECTOR_TLS
  900. def_bool $(cc-option,-mstack-protector-guard=tls -mstack-protector-guard-reg=tp -mstack-protector-guard-offset=0)
  901. config STACKPROTECTOR_PER_TASK
  902. def_bool y
  903. depends on !RANDSTRUCT
  904. depends on STACKPROTECTOR && CC_HAVE_STACKPROTECTOR_TLS
  905. config PHYS_RAM_BASE_FIXED
  906. bool "Explicitly specified physical RAM address"
  907. depends on NONPORTABLE
  908. default n
  909. config PHYS_RAM_BASE
  910. hex "Platform Physical RAM address"
  911. depends on PHYS_RAM_BASE_FIXED
  912. default "0x80000000"
  913. help
  914. This is the physical address of RAM in the system. It has to be
  915. explicitly specified to run early relocations of read-write data
  916. from flash to RAM.
  917. config XIP_KERNEL
  918. bool "Kernel Execute-In-Place from ROM"
  919. depends on MMU && SPARSEMEM && NONPORTABLE
  920. # This prevents XIP from being enabled by all{yes,mod}config, which
  921. # fail to build since XIP doesn't support large kernels.
  922. depends on !COMPILE_TEST
  923. select PHYS_RAM_BASE_FIXED
  924. help
  925. Execute-In-Place allows the kernel to run from non-volatile storage
  926. directly addressable by the CPU, such as NOR flash. This saves RAM
  927. space since the text section of the kernel is not loaded from flash
  928. to RAM. Read-write sections, such as the data section and stack,
  929. are still copied to RAM. The XIP kernel is not compressed since
  930. it has to run directly from flash, so it will take more space to
  931. store it. The flash address used to link the kernel object files,
  932. and for storing it, is configuration dependent. Therefore, if you
  933. say Y here, you must know the proper physical address where to
  934. store the kernel image depending on your own flash memory usage.
  935. Also note that the make target becomes "make xipImage" rather than
  936. "make zImage" or "make Image". The final kernel binary to put in
  937. ROM memory will be arch/riscv/boot/xipImage.
  938. SPARSEMEM is required because the kernel text and rodata that are
  939. flash resident are not backed by memmap, then any attempt to get
  940. a struct page on those regions will trigger a fault.
  941. If unsure, say N.
  942. config XIP_PHYS_ADDR
  943. hex "XIP Kernel Physical Location"
  944. depends on XIP_KERNEL
  945. default "0x21000000"
  946. help
  947. This is the physical address in your flash memory the kernel will
  948. be linked for and stored to. This address is dependent on your
  949. own flash usage.
  950. config RISCV_ISA_FALLBACK
  951. bool "Permit falling back to parsing riscv,isa for extension support by default"
  952. default y
  953. help
  954. Parsing the "riscv,isa" devicetree property has been deprecated and
  955. replaced by a list of explicitly defined strings. For compatibility
  956. with existing platforms, the kernel will fall back to parsing the
  957. "riscv,isa" property if the replacements are not found.
  958. Selecting N here will result in a kernel that does not use the
  959. fallback, unless the commandline "riscv_isa_fallback" parameter is
  960. present.
  961. Please see the dt-binding, located at
  962. Documentation/devicetree/bindings/riscv/extensions.yaml for details
  963. on the replacement properties, "riscv,isa-base" and
  964. "riscv,isa-extensions".
  965. config BUILTIN_DTB
  966. bool "Built-in device tree"
  967. depends on OF && NONPORTABLE
  968. help
  969. Build a device tree into the Linux image.
  970. This option should be selected if no bootloader is being used.
  971. If unsure, say N.
  972. config BUILTIN_DTB_SOURCE
  973. string "Built-in device tree source"
  974. depends on BUILTIN_DTB
  975. help
  976. DTS file path (without suffix, relative to arch/riscv/boot/dts)
  977. for the DTS file that will be used to produce the DTB linked into the
  978. kernel.
  979. endmenu # "Boot options"
  980. config PORTABLE
  981. bool
  982. default !NONPORTABLE
  983. select EFI
  984. select MMU
  985. select OF
  986. config ARCH_PROC_KCORE_TEXT
  987. def_bool y
  988. menu "Power management options"
  989. source "kernel/power/Kconfig"
  990. config ARCH_HIBERNATION_POSSIBLE
  991. def_bool y
  992. config ARCH_HIBERNATION_HEADER
  993. def_bool HIBERNATION
  994. config ARCH_SUSPEND_POSSIBLE
  995. def_bool y
  996. endmenu # "Power management options"
  997. menu "CPU Power Management"
  998. source "drivers/cpuidle/Kconfig"
  999. source "drivers/cpufreq/Kconfig"
  1000. endmenu # "CPU Power Management"
  1001. source "arch/riscv/kvm/Kconfig"
  1002. source "drivers/acpi/Kconfig"