mm: add new arch_make_huge_pte() method for tile support
[deliverable/linux.git] / arch / tile / Kconfig
CommitLineData
867e359b 1# For a description of the syntax of this configuration file,
5fb682b0 2# see Documentation/kbuild/kconfig-language.txt.
867e359b 3
8df27406 4config TILE
867e359b 5 def_bool y
8df27406
TG
6 select HAVE_KVM if !TILEGX
7 select GENERIC_FIND_FIRST_BIT
8df27406
TG
8 select USE_GENERIC_SMP_HELPERS
9 select CC_OPTIMIZE_FOR_SIZE
10 select HAVE_GENERIC_HARDIRQS
11 select GENERIC_IRQ_PROBE
12 select GENERIC_PENDING_IRQ if SMP
61a16741 13 select GENERIC_IRQ_SHOW
e6d9668e 14 select HAVE_SYSCALL_WRAPPERS if TILEGX
f133ecca 15 select SYS_HYPERVISOR
8d695143 16 select ARCH_HAVE_NMI_SAFE_CMPXCHG
867e359b 17
8df27406
TG
18# FIXME: investigate whether we need/want these options.
19# select HAVE_IOREMAP_PROT
5fb682b0
CM
20# select HAVE_OPTPROBES
21# select HAVE_REGS_AND_STACK_ACCESS_API
22# select HAVE_HW_BREAKPOINT
23# select PERF_EVENTS
24# select HAVE_USER_RETURN_NOTIFIER
25# config NO_BOOTMEM
26# config ARCH_SUPPORTS_DEBUG_PAGEALLOC
27# config HUGETLB_PAGE_SIZE_VARIABLE
867e359b 28
8df27406 29config MMU
867e359b
CM
30 def_bool y
31
8df27406 32config GENERIC_CSUM
867e359b 33 def_bool y
867e359b
CM
34
35config SEMAPHORE_SLEEPERS
36 def_bool y
37
38config HAVE_ARCH_ALLOC_REMAP
39 def_bool y
40
41config HAVE_SETUP_PER_CPU_AREA
42 def_bool y
43
44config NEED_PER_CPU_PAGE_FIRST_CHUNK
5fb682b0 45 def_bool y
867e359b
CM
46
47config SYS_SUPPORTS_HUGETLBFS
48 def_bool y
49
867e359b
CM
50config GENERIC_CLOCKEVENTS
51 def_bool y
52
25985edc 53# FIXME: tilegx can implement a more efficient rwsem.
867e359b
CM
54config RWSEM_GENERIC_SPINLOCK
55 def_bool y
56
57# We have a very flat architecture from a migration point of view,
58# so save boot time by presetting this (particularly useful on tile-sim).
59config DEFAULT_MIGRATION_COST
60 int
61 default "10000000"
62
63# We only support gcc 4.4 and above, so this should work.
64config ARCH_SUPPORTS_OPTIMIZED_INLINING
65 def_bool y
66
67config ARCH_PHYS_ADDR_T_64BIT
68 def_bool y
69
d31eb519
FT
70config ARCH_DMA_ADDR_T_64BIT
71 def_bool y
72
3d1e8a81
CM
73config NEED_DMA_MAP_STATE
74 def_bool y
75
867e359b
CM
76config LOCKDEP_SUPPORT
77 def_bool y
78
79config STACKTRACE_SUPPORT
80 def_bool y
81 select STACKTRACE
82
83# We use discontigmem for now; at some point we may want to switch
84# to sparsemem (Tilera bug 7996).
85config ARCH_DISCONTIGMEM_ENABLE
86 def_bool y
87
88config ARCH_DISCONTIGMEM_DEFAULT
89 def_bool y
90
91config TRACE_IRQFLAGS_SUPPORT
92 def_bool y
93
94config STRICT_DEVMEM
95 def_bool y
96
97# SMP is required for Tilera Linux.
98config SMP
99 def_bool y
100
101# Allow checking for compile-time determined overflow errors in
102# copy_from_user(). There are still unprovable places in the
103# generic code as of 2.6.34, so this option is not really compatible
104# with -Werror, which is more useful in general.
105config DEBUG_COPY_FROM_USER
106 def_bool n
107
108config HVC_TILE
109 select HVC_DRIVER
110 def_bool y
111
867e359b
CM
112# Please note: TILE-Gx support is not yet finalized; this is
113# the preliminary support. TILE-Gx drivers are only provided
114# with the alpha or beta test versions for Tilera customers.
115config TILEGX
116 depends on EXPERIMENTAL
117 bool "Building with TILE-Gx (64-bit) compiler and toolchain"
118
119config 64BIT
120 depends on TILEGX
121 def_bool y
122
123config ARCH_DEFCONFIG
124 string
3d1e8a81 125 default "arch/tile/configs/tilepro_defconfig" if !TILEGX
867e359b
CM
126 default "arch/tile/configs/tilegx_defconfig" if TILEGX
127
128source "init/Kconfig"
129
130menu "Tilera-specific configuration"
131
132config NR_CPUS
133 int "Maximum number of tiles (2-255)"
134 range 2 255
135 depends on SMP
136 default "64"
137 ---help---
138 Building with 64 is the recommended value, but a slightly
139 smaller kernel memory footprint results from using a smaller
140 value on chips with fewer tiles.
141
d5d14ed6
CM
142if TILEGX
143
144choice
145 prompt "Kernel page size"
146 default PAGE_SIZE_64KB
147 help
148 This lets you select the page size of the kernel. For best
149 performance on memory-intensive applications, a page size of 64KB
150 is recommended. For workloads involving many small files, many
151 connections, etc., it may be better to select 16KB, which uses
152 memory more efficiently at some cost in TLB performance.
153
154 Note that this option is TILE-Gx specific; currently
155 TILEPro page size is set by rebuilding the hypervisor.
156
157config PAGE_SIZE_16KB
158 bool "16KB"
159
160config PAGE_SIZE_64KB
161 bool "64KB"
162
163endchoice
164
165endif
166
867e359b
CM
167source "kernel/time/Kconfig"
168
169source "kernel/Kconfig.hz"
170
171config KEXEC
172 bool "kexec system call"
173 ---help---
174 kexec is a system call that implements the ability to shutdown your
175 current kernel, and to start another kernel. It is like a reboot
176 but it is independent of the system firmware. It is used
177 to implement the "mboot" Tilera booter.
178
179 The name comes from the similarity to the exec system call.
180
181config COMPAT
182 bool "Support 32-bit TILE-Gx binaries in addition to 64-bit"
183 depends on TILEGX
184 select COMPAT_BINFMT_ELF
185 default y
186 ---help---
187 If enabled, the kernel will support running TILE-Gx binaries
188 that were built with the -m32 option.
189
190config SYSVIPC_COMPAT
191 def_bool y
192 depends on COMPAT && SYSVIPC
193
194# We do not currently support disabling HIGHMEM on tile64 and tilepro.
195config HIGHMEM
196 bool # "Support for more than 512 MB of RAM"
197 default !TILEGX
198 ---help---
199 Linux can use the full amount of RAM in the system by
200 default. However, the address space of TILE processors is
201 only 4 Gigabytes large. That means that, if you have a large
202 amount of physical memory, not all of it can be "permanently
203 mapped" by the kernel. The physical memory that's not
204 permanently mapped is called "high memory".
205
206 If you are compiling a kernel which will never run on a
207 machine with more than 512 MB total physical RAM, answer
208 "false" here. This will result in the kernel mapping all of
209 physical memory into the top 1 GB of virtual memory space.
210
211 If unsure, say "true".
212
213# We do not currently support disabling NUMA.
214config NUMA
215 bool # "NUMA Memory Allocation and Scheduler Support"
216 depends on SMP && DISCONTIGMEM
217 default y
218 ---help---
219 NUMA memory allocation is required for TILE processors
220 unless booting with memory striping enabled in the
221 hypervisor, or with only a single memory controller.
222 It is recommended that this option always be enabled.
223
224config NODES_SHIFT
225 int "Log base 2 of the max number of memory controllers"
226 default 2
227 depends on NEED_MULTIPLE_NODES
228 ---help---
229 By default, 2, i.e. 2^2 == 4 DDR2 controllers.
230 In a system with more controllers, this value should be raised.
231
867e359b
CM
232choice
233 depends on !TILEGX
6a108a14 234 prompt "Memory split" if EXPERT
867e359b
CM
235 default VMSPLIT_3G
236 ---help---
237 Select the desired split between kernel and user memory.
238
239 If the address range available to the kernel is less than the
240 physical memory installed, the remaining memory will be available
241 as "high memory". Accessing high memory is a little more costly
242 than low memory, as it needs to be mapped into the kernel first.
243 Note that increasing the kernel address space limits the range
244 available to user programs, making the address space there
245 tighter. Selecting anything other than the default 3G/1G split
246 will also likely make your kernel incompatible with binary-only
247 kernel modules.
248
249 If you are not absolutely sure what you are doing, leave this
250 option alone!
251
5592840b 252 config VMSPLIT_3_75G
867e359b 253 bool "3.75G/0.25G user/kernel split (no kernel networking)"
5592840b 254 config VMSPLIT_3_5G
867e359b
CM
255 bool "3.5G/0.5G user/kernel split"
256 config VMSPLIT_3G
257 bool "3G/1G user/kernel split"
09c17eab
CM
258 config VMSPLIT_2_75G
259 bool "2.75G/1.25G user/kernel split (for full 1G low memory)"
260 config VMSPLIT_2_5G
261 bool "2.5G/1.5G user/kernel split"
262 config VMSPLIT_2_25G
263 bool "2.25G/1.75G user/kernel split"
867e359b
CM
264 config VMSPLIT_2G
265 bool "2G/2G user/kernel split"
266 config VMSPLIT_1G
267 bool "1G/3G user/kernel split"
268endchoice
269
270config PAGE_OFFSET
271 hex
884197f7 272 depends on !64BIT
5592840b
CM
273 default 0xF0000000 if VMSPLIT_3_75G
274 default 0xE0000000 if VMSPLIT_3_5G
09c17eab
CM
275 default 0xB0000000 if VMSPLIT_2_75G
276 default 0xA0000000 if VMSPLIT_2_5G
277 default 0x90000000 if VMSPLIT_2_25G
867e359b
CM
278 default 0x80000000 if VMSPLIT_2G
279 default 0x40000000 if VMSPLIT_1G
280 default 0xC0000000
281
282source "mm/Kconfig"
283
284config CMDLINE_BOOL
285 bool "Built-in kernel command line"
286 default n
287 ---help---
288 Allow for specifying boot arguments to the kernel at
289 build time. On some systems (e.g. embedded ones), it is
290 necessary or convenient to provide some or all of the
291 kernel boot arguments with the kernel itself (that is,
292 to not rely on the boot loader to provide them.)
293
294 To compile command line arguments into the kernel,
295 set this option to 'Y', then fill in the
296 the boot arguments in CONFIG_CMDLINE.
297
298 Systems with fully functional boot loaders (e.g. mboot, or
299 if booting over PCI) should leave this option set to 'N'.
300
301config CMDLINE
302 string "Built-in kernel command string"
303 depends on CMDLINE_BOOL
304 default ""
305 ---help---
306 Enter arguments here that should be compiled into the kernel
307 image and used at boot time. If the boot loader provides a
308 command line at boot time, it is appended to this string to
309 form the full kernel command line, when the system boots.
310
311 However, you can use the CONFIG_CMDLINE_OVERRIDE option to
312 change this behavior.
313
314 In most cases, the command line (whether built-in or provided
315 by the boot loader) should specify the device for the root
316 file system.
317
318config CMDLINE_OVERRIDE
319 bool "Built-in command line overrides boot loader arguments"
320 default n
321 depends on CMDLINE_BOOL
322 ---help---
323 Set this option to 'Y' to have the kernel ignore the boot loader
324 command line, and use ONLY the built-in command line.
325
326 This is used to work around broken boot loaders. This should
327 be set to 'N' under normal conditions.
328
329config VMALLOC_RESERVE
330 hex
331 default 0x1000000
332
9f9c0382
CM
333config HARDWALL
334 bool "Hardwall support to allow access to user dynamic network"
335 default y
336
a78c942d
CM
337config KERNEL_PL
338 int "Processor protection level for kernel"
339 range 1 2
340 default "1"
341 ---help---
342 This setting determines the processor protection level the
343 kernel will be built to run at. Generally you should use
344 the default value here.
345
867e359b
CM
346endmenu # Tilera-specific configuration
347
348menu "Bus options"
349
f02cbbe6
CM
350config PCI
351 bool "PCI support"
352 default y
353 select PCI_DOMAINS
84550121 354 select GENERIC_PCI_IOMAP
f02cbbe6
CM
355 ---help---
356 Enable PCI root complex support, so PCIe endpoint devices can
357 be attached to the Tile chip. Many, but not all, PCI devices
358 are supported under Tilera's root complex driver.
359
360config PCI_DOMAINS
361 bool
362
867e359b
CM
363config NO_IOMEM
364 def_bool !PCI
365
366config NO_IOPORT
367 def_bool !PCI
368
369source "drivers/pci/Kconfig"
370
398fa5a9
CM
371config HOTPLUG
372 bool "Support for hot-pluggable devices"
373 ---help---
374 Say Y here if you want to plug devices into your computer while
375 the system is running, and be able to use them quickly. In many
376 cases, the devices can likewise be unplugged at any time too.
377 One well-known example of this is USB.
378
867e359b
CM
379source "drivers/pci/hotplug/Kconfig"
380
381endmenu
382
383menu "Executable file formats"
384
385# only elf supported
386config KCORE_ELF
387 def_bool y
388 depends on PROC_FS
389
390source "fs/Kconfig.binfmt"
391
392endmenu
393
394source "net/Kconfig"
395
396source "drivers/Kconfig"
397
398source "fs/Kconfig"
399
400source "arch/tile/Kconfig.debug"
401
402source "security/Kconfig"
403
404source "crypto/Kconfig"
405
406source "lib/Kconfig"
a78c942d
CM
407
408source "arch/tile/kvm/Kconfig"
This page took 0.107514 seconds and 5 git commands to generate.