mm: remove CONFIG_NO_BOOTMEM
[linux-2.6-block.git] / arch / riscv / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
4 #
5
6 config 64BIT
7         bool
8
9 config 32BIT
10         bool
11
12 config RISCV
13         def_bool y
14         # even on 32-bit, physical (and DMA) addresses are > 32-bits
15         select PHYS_ADDR_T_64BIT
16         select OF
17         select OF_EARLY_FLATTREE
18         select OF_IRQ
19         select ARCH_WANT_FRAME_POINTERS
20         select CLONE_BACKWARDS
21         select COMMON_CLK
22         select DMA_DIRECT_OPS
23         select GENERIC_CLOCKEVENTS
24         select GENERIC_CPU_DEVICES
25         select GENERIC_IRQ_SHOW
26         select GENERIC_PCI_IOMAP
27         select GENERIC_STRNCPY_FROM_USER
28         select GENERIC_STRNLEN_USER
29         select GENERIC_SMP_IDLE_THREAD
30         select GENERIC_ATOMIC64 if !64BIT || !RISCV_ISA_A
31         select HAVE_MEMBLOCK
32         select HAVE_MEMBLOCK_NODE_MAP
33         select HAVE_DMA_CONTIGUOUS
34         select HAVE_FUTEX_CMPXCHG if FUTEX
35         select HAVE_GENERIC_DMA_COHERENT
36         select HAVE_PERF_EVENTS
37         select IRQ_DOMAIN
38         select RISCV_ISA_A if SMP
39         select SPARSE_IRQ
40         select SYSCTL_EXCEPTION_TRACE
41         select HAVE_ARCH_TRACEHOOK
42         select MODULES_USE_ELF_RELA if MODULES
43         select THREAD_INFO_IN_TASK
44         select RISCV_TIMER
45         select GENERIC_IRQ_MULTI_HANDLER
46         select ARCH_HAS_PTE_SPECIAL
47
48 config MMU
49         def_bool y
50
51 config ZONE_DMA32
52         bool
53         default y if 64BIT
54
55 config PAGE_OFFSET
56         hex
57         default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB
58         default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB
59         default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB
60
61 config STACKTRACE_SUPPORT
62         def_bool y
63
64 config TRACE_IRQFLAGS_SUPPORT
65         def_bool y
66
67 config RWSEM_GENERIC_SPINLOCK
68         def_bool y
69
70 config GENERIC_BUG
71         def_bool y
72         depends on BUG
73         select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
74
75 config GENERIC_BUG_RELATIVE_POINTERS
76         bool
77
78 config GENERIC_CALIBRATE_DELAY
79         def_bool y
80
81 config GENERIC_CSUM
82         def_bool y
83
84 config GENERIC_HWEIGHT
85         def_bool y
86
87 config PGTABLE_LEVELS
88         int
89         default 3 if 64BIT
90         default 2
91
92 config HAVE_KPROBES
93         def_bool n
94
95 menu "Platform type"
96
97 choice
98         prompt "Base ISA"
99         default ARCH_RV64I
100         help
101           This selects the base ISA that this kernel will traget and must match
102           the target platform.
103
104 config ARCH_RV32I
105         bool "RV32I"
106         select 32BIT
107         select GENERIC_LIB_ASHLDI3
108         select GENERIC_LIB_ASHRDI3
109         select GENERIC_LIB_LSHRDI3
110         select GENERIC_LIB_UCMPDI2
111         select GENERIC_LIB_UMODDI3
112
113 config ARCH_RV64I
114         bool "RV64I"
115         select 64BIT
116         select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000
117         select HAVE_FUNCTION_TRACER
118         select HAVE_FUNCTION_GRAPH_TRACER
119         select HAVE_FTRACE_MCOUNT_RECORD
120         select HAVE_DYNAMIC_FTRACE
121         select HAVE_DYNAMIC_FTRACE_WITH_REGS
122         select SWIOTLB
123
124 endchoice
125
126 # We must be able to map all physical memory into the kernel, but the compiler
127 # is still a bit more efficient when generating code if it's setup in a manner
128 # such that it can only map 2GiB of memory.
129 choice
130         prompt "Kernel Code Model"
131         default CMODEL_MEDLOW if 32BIT
132         default CMODEL_MEDANY if 64BIT
133
134         config CMODEL_MEDLOW
135                 bool "medium low code model"
136         config CMODEL_MEDANY
137                 bool "medium any code model"
138 endchoice
139
140 config MODULE_SECTIONS
141         bool
142         select HAVE_MOD_ARCH_SPECIFIC
143
144 choice
145         prompt "Maximum Physical Memory"
146         default MAXPHYSMEM_2GB if 32BIT
147         default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW
148         default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY
149
150         config MAXPHYSMEM_2GB
151                 bool "2GiB"
152         config MAXPHYSMEM_128GB
153                 depends on 64BIT && CMODEL_MEDANY
154                 select MODULE_SECTIONS if MODULES
155                 bool "128GiB"
156 endchoice
157
158
159 config SMP
160         bool "Symmetric Multi-Processing"
161         help
162           This enables support for systems with more than one CPU.  If
163           you say N here, the kernel will run on single and
164           multiprocessor machines, but will use only one CPU of a
165           multiprocessor machine. If you say Y here, the kernel will run
166           on many, but not all, single processor machines. On a single
167           processor machine, the kernel will run faster if you say N
168           here.
169
170           If you don't know what to do here, say N.
171
172 config NR_CPUS
173         int "Maximum number of CPUs (2-32)"
174         range 2 32
175         depends on SMP
176         default "8"
177
178 choice
179         prompt "CPU Tuning"
180         default TUNE_GENERIC
181
182 config TUNE_GENERIC
183         bool "generic"
184
185 endchoice
186
187 config RISCV_ISA_C
188         bool "Emit compressed instructions when building Linux"
189         default y
190         help
191            Adds "C" to the ISA subsets that the toolchain is allowed to emit
192            when building Linux, which results in compressed instructions in the
193            Linux binary.
194
195            If you don't know what to do here, say Y.
196
197 config RISCV_ISA_A
198         def_bool y
199
200 menu "supported PMU type"
201         depends on PERF_EVENTS
202
203 config RISCV_BASE_PMU
204         bool "Base Performance Monitoring Unit"
205         def_bool y
206         help
207           A base PMU that serves as a reference implementation and has limited
208           feature of perf.  It can run on any RISC-V machines so serves as the
209           fallback, but this option can also be disable to reduce kernel size.
210
211 endmenu
212
213 config FPU
214         bool "FPU support"
215         default y
216         help
217           Say N here if you want to disable all floating-point related procedure
218           in the kernel.
219
220           If you don't know what to do here, say Y.
221
222 endmenu
223
224 menu "Kernel features"
225
226 source "kernel/Kconfig.hz"
227
228 endmenu
229
230 menu "Boot options"
231
232 config CMDLINE_BOOL
233         bool "Built-in kernel command line"
234         help
235           For most platforms, it is firmware or second stage bootloader
236           that by default specifies the kernel command line options.
237           However, it might be necessary or advantageous to either override
238           the default kernel command line or add a few extra options to it.
239           For such cases, this option allows hardcoding command line options
240           directly into the kernel.
241
242           For that, choose 'Y' here and fill in the extra boot parameters
243           in CONFIG_CMDLINE.
244
245           The built-in options will be concatenated to the default command
246           line if CMDLINE_FORCE is set to 'N'. Otherwise, the default
247           command line will be ignored and replaced by the built-in string.
248
249 config CMDLINE
250         string "Built-in kernel command string"
251         depends on CMDLINE_BOOL
252         default ""
253         help
254           Supply command-line options at build time by entering them here.
255
256 config CMDLINE_FORCE
257         bool "Built-in command line overrides bootloader arguments"
258         depends on CMDLINE_BOOL
259         help
260           Set this option to 'Y' to have the kernel ignore the bootloader
261           or firmware command line.  Instead, the built-in command line
262           will be used exclusively.
263
264           If you don't know what to do here, say N.
265
266 endmenu
267
268 menu "Bus support"
269
270 config PCI
271         bool "PCI support"
272         select PCI_MSI
273         help
274           This feature enables support for PCI bus system. If you say Y
275           here, the kernel will include drivers and infrastructure code
276           to support PCI bus devices.
277
278           If you don't know what to do here, say Y.
279
280 config PCI_DOMAINS
281         def_bool PCI
282
283 config PCI_DOMAINS_GENERIC
284         def_bool PCI
285
286 source "drivers/pci/Kconfig"
287
288 endmenu
289
290 menu "Power management options"
291
292 source kernel/power/Kconfig
293
294 endmenu