blob: f392358ad4ea1d4a6ab5f51c45df580b385f2db1 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07002#
3# For a description of the syntax of this configuration file,
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03004# see Documentation/kbuild/kconfig-language.rst.
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07005#
6
Christoph Hellwigc3e4ed02018-04-27 08:38:23 +02007config 64BIT
8 bool
9
10config 32BIT
11 bool
12
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070013config RISCV
14 def_bool y
Christoph Hellwigd4a451d2018-04-03 16:24:20 +020015 # even on 32-bit, physical (and DMA) addresses are > 32-bits
16 select PHYS_ADDR_T_64BIT
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070017 select OF
18 select OF_EARLY_FLATTREE
19 select OF_IRQ
Christoph Hellwigad97f9d2019-06-13 09:09:03 +020020 select ARCH_HAS_BINFMT_FLAT
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070021 select ARCH_WANT_FRAME_POINTERS
22 select CLONE_BACKWARDS
23 select COMMON_CLK
24 select GENERIC_CLOCKEVENTS
25 select GENERIC_CPU_DEVICES
26 select GENERIC_IRQ_SHOW
27 select GENERIC_PCI_IOMAP
Anup Patel9b9afe42018-12-04 15:59:51 +053028 select GENERIC_SCHED_CLOCK
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070029 select GENERIC_STRNCPY_FROM_USER
30 select GENERIC_STRNLEN_USER
31 select GENERIC_SMP_IDLE_THREAD
Christoph Hellwig09afac72019-04-15 11:14:35 +020032 select GENERIC_ATOMIC64 if !64BIT
David Abdurachmanovefe75c42018-10-29 11:48:53 +010033 select HAVE_ARCH_AUDITSYSCALL
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010034 select HAVE_MEMBLOCK_NODE_MAP
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070035 select HAVE_DMA_CONTIGUOUS
Jim Wilsonb90edb32018-10-16 14:42:59 -070036 select HAVE_FUTEX_CMPXCHG if FUTEX
Alan Kao178e9fc2018-04-20 07:27:49 +080037 select HAVE_PERF_EVENTS
David Abdurachmanov5aeb1b32018-12-06 16:26:35 +010038 select HAVE_SYSCALL_TRACEPOINTS
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070039 select IRQ_DOMAIN
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070040 select SPARSE_IRQ
41 select SYSCTL_EXCEPTION_TRACE
42 select HAVE_ARCH_TRACEHOOK
Christoph Hellwigeb01d422018-11-15 20:05:32 +010043 select HAVE_PCI
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070044 select MODULES_USE_ELF_RELA if MODULES
Zong Li2cffc952018-12-07 17:02:16 +080045 select MODULE_SECTIONS if MODULES
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070046 select THREAD_INFO_IN_TASK
Christoph Hellwig2eac9c22018-11-15 20:05:33 +010047 select PCI_DOMAINS_GENERIC if PCI
Christoph Hellwigeb01d422018-11-15 20:05:32 +010048 select PCI_MSI if PCI
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070049 select RISCV_TIMER
Palmer Dabbeltcc6c9842018-03-07 15:57:28 -080050 select GENERIC_IRQ_MULTI_HANDLER
Atish Patra03f11f02019-06-27 12:53:00 -070051 select GENERIC_ARCH_TOPOLOGY if SMP
Laurent Dufour3010a5e2018-06-07 17:06:08 -070052 select ARCH_HAS_PTE_SPECIAL
Will Deaconb0129802019-02-22 14:45:42 +000053 select ARCH_HAS_MMIOWB
Björn Töpel2353ecc2019-02-05 13:41:22 +010054 select HAVE_EBPF_JIT if 64BIT
Yash Shah91abaea2019-05-06 16:57:06 +053055 select EDAC_SUPPORT
Alexandre Ghiti9e953cd2019-05-26 08:50:38 -040056 select ARCH_HAS_GIGANTIC_PAGE
57 select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
Logan Gunthorped95f1a52019-08-28 15:40:54 -060058 select SPARSEMEM_STATIC if 32BIT
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070059
60config MMU
61 def_bool y
62
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010063config ZONE_DMA32
64 bool
Christoph Hellwigf1306f02018-04-27 08:41:09 +020065 default y if 64BIT
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010066
Logan Gunthorped95f1a52019-08-28 15:40:54 -060067config VA_BITS
68 int
69 default 32 if 32BIT
70 default 39 if 64BIT
71
72config PA_BITS
73 int
74 default 34 if 32BIT
75 default 56 if 64BIT
76
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070077config PAGE_OFFSET
78 hex
79 default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB
80 default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB
81 default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB
82
Logan Gunthorped95f1a52019-08-28 15:40:54 -060083config ARCH_FLATMEM_ENABLE
84 def_bool y
85
86config ARCH_SPARSEMEM_ENABLE
87 def_bool y
88 select SPARSEMEM_VMEMMAP_ENABLE
89
90config ARCH_SELECT_MEMORY_MODEL
91 def_bool ARCH_SPARSEMEM_ENABLE
92
Alexandre Ghiti9e953cd2019-05-26 08:50:38 -040093config ARCH_WANT_GENERAL_HUGETLB
94 def_bool y
95
96config SYS_SUPPORTS_HUGETLBFS
97 def_bool y
98
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070099config STACKTRACE_SUPPORT
100 def_bool y
101
Alan Kao10626c32017-12-18 17:52:48 +0800102config TRACE_IRQFLAGS_SUPPORT
103 def_bool y
104
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700105config GENERIC_BUG
106 def_bool y
107 depends on BUG
108 select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
109
110config GENERIC_BUG_RELATIVE_POINTERS
111 bool
112
113config GENERIC_CALIBRATE_DELAY
114 def_bool y
115
116config GENERIC_CSUM
117 def_bool y
118
119config GENERIC_HWEIGHT
120 def_bool y
121
Anup Patelf2c17aa2019-01-07 20:57:01 +0530122config FIX_EARLYCON_MEM
123 def_bool y
124
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700125config PGTABLE_LEVELS
126 int
127 default 3 if 64BIT
128 default 2
129
Loys Ollivier0cbb8a32019-06-17 21:29:48 +0200130source "arch/riscv/Kconfig.socs"
131
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700132menu "Platform type"
133
134choice
135 prompt "Base ISA"
136 default ARCH_RV64I
137 help
Antony Pavlov86cca812019-01-08 22:45:57 +0300138 This selects the base ISA that this kernel will target and must match
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700139 the target platform.
140
141config ARCH_RV32I
142 bool "RV32I"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700143 select 32BIT
Matt Redfearne3d59802018-04-11 08:50:17 +0100144 select GENERIC_LIB_ASHLDI3
145 select GENERIC_LIB_ASHRDI3
146 select GENERIC_LIB_LSHRDI3
Zong Li8f791252018-06-25 16:49:38 +0800147 select GENERIC_LIB_UCMPDI2
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700148
149config ARCH_RV64I
150 bool "RV64I"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700151 select 64BIT
Masahiro Yamadaee592882018-08-24 17:33:53 +0900152 select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000
Alan Kao10626c32017-12-18 17:52:48 +0800153 select HAVE_FUNCTION_TRACER
154 select HAVE_FUNCTION_GRAPH_TRACER
Alan Kaoa1d2a6b2018-02-13 13:13:16 +0800155 select HAVE_FTRACE_MCOUNT_RECORD
Alan Kaoc15ac4f2018-02-13 13:13:17 +0800156 select HAVE_DYNAMIC_FTRACE
Alan Kaoaea4c672018-02-13 13:13:20 +0800157 select HAVE_DYNAMIC_FTRACE_WITH_REGS
Christoph Hellwig10314e02018-04-27 08:43:14 +0200158 select SWIOTLB
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700159
160endchoice
161
162# We must be able to map all physical memory into the kernel, but the compiler
163# is still a bit more efficient when generating code if it's setup in a manner
164# such that it can only map 2GiB of memory.
165choice
166 prompt "Kernel Code Model"
167 default CMODEL_MEDLOW if 32BIT
168 default CMODEL_MEDANY if 64BIT
169
170 config CMODEL_MEDLOW
171 bool "medium low code model"
172 config CMODEL_MEDANY
173 bool "medium any code model"
174endchoice
175
Zong Liab1ef682018-03-15 16:50:41 +0800176config MODULE_SECTIONS
177 bool
178 select HAVE_MOD_ARCH_SPECIFIC
179
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700180choice
181 prompt "Maximum Physical Memory"
182 default MAXPHYSMEM_2GB if 32BIT
183 default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW
184 default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY
185
186 config MAXPHYSMEM_2GB
187 bool "2GiB"
188 config MAXPHYSMEM_128GB
189 depends on 64BIT && CMODEL_MEDANY
190 bool "128GiB"
191endchoice
192
193
194config SMP
195 bool "Symmetric Multi-Processing"
196 help
197 This enables support for systems with more than one CPU. If
198 you say N here, the kernel will run on single and
199 multiprocessor machines, but will use only one CPU of a
200 multiprocessor machine. If you say Y here, the kernel will run
201 on many, but not all, single processor machines. On a single
202 processor machine, the kernel will run faster if you say N
203 here.
204
205 If you don't know what to do here, say N.
206
207config NR_CPUS
208 int "Maximum number of CPUs (2-32)"
209 range 2 32
210 depends on SMP
211 default "8"
212
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700213choice
214 prompt "CPU Tuning"
215 default TUNE_GENERIC
216
217config TUNE_GENERIC
218 bool "generic"
219
220endchoice
221
222config RISCV_ISA_C
223 bool "Emit compressed instructions when building Linux"
224 default y
225 help
226 Adds "C" to the ISA subsets that the toolchain is allowed to emit
227 when building Linux, which results in compressed instructions in the
228 Linux binary.
229
230 If you don't know what to do here, say Y.
231
Alan Kao178e9fc2018-04-20 07:27:49 +0800232menu "supported PMU type"
233 depends on PERF_EVENTS
234
235config RISCV_BASE_PMU
236 bool "Base Performance Monitoring Unit"
237 def_bool y
238 help
239 A base PMU that serves as a reference implementation and has limited
240 feature of perf. It can run on any RISC-V machines so serves as the
241 fallback, but this option can also be disable to reduce kernel size.
242
243endmenu
244
Alan Kao9671f702018-10-09 10:18:33 +0800245config FPU
246 bool "FPU support"
247 default y
248 help
249 Say N here if you want to disable all floating-point related procedure
250 in the kernel.
251
252 If you don't know what to do here, say Y.
253
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700254endmenu
255
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300256menu "Kernel features"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700257
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700258source "kernel/Kconfig.hz"
259
260endmenu
261
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300262menu "Boot options"
263
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300264config CMDLINE
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200265 string "Built-in kernel command line"
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300266 help
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200267 For most platforms, the arguments for the kernel's command line
268 are provided at run-time, during boot. However, there are cases
269 where either no arguments are being provided or the provided
270 arguments are insufficient or even invalid.
271
272 When that occurs, it is possible to define a built-in command
273 line here and choose how the kernel should use it later on.
274
275choice
276 prompt "Built-in command line usage" if CMDLINE != ""
277 default CMDLINE_FALLBACK
278 help
279 Choose how the kernel will handle the provided built-in command
280 line.
281
282config CMDLINE_FALLBACK
283 bool "Use bootloader kernel arguments if available"
284 help
285 Use the built-in command line as fallback in case we get nothing
286 during boot. This is the default behaviour.
287
288config CMDLINE_EXTEND
289 bool "Extend bootloader kernel arguments"
290 help
291 The command-line arguments provided during boot will be
292 appended to the built-in command line. This is useful in
293 cases where the provided arguments are insufficient and
294 you don't want to or cannot modify them.
295
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300296
297config CMDLINE_FORCE
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200298 bool "Always use the default kernel command string"
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300299 help
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200300 Always use the built-in command line, even if we get one during
301 boot. This is useful in case you need to override the provided
302 command line on systems where you don't have or want control
303 over it.
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300304
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200305endchoice
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300306
307endmenu
308
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700309menu "Power management options"
310
Masahiro Yamada8636a1f2018-12-11 20:01:04 +0900311source "kernel/power/Kconfig"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700312
313endmenu