blob: 38c3957e0b40e931d02840f0ec8c0ee015ab33d6 [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001# For a description of the syntax of this configuration file,
Chris Metcalf5fb682b2011-02-28 15:58:39 -05002# see Documentation/kbuild/kconfig-language.txt.
Chris Metcalf867e3592010-05-28 23:09:12 -04003
Thomas Gleixner8df274062011-01-19 20:44:43 +01004config TILE
5 def_bool y
6 select HAVE_KVM if !TILEGX
7 select GENERIC_FIND_FIRST_BIT
Thomas Gleixner8df274062011-01-19 20:44:43 +01008 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
Thomas Gleixner61a16742011-03-25 14:21:17 +000013 select GENERIC_IRQ_SHOW
Chris Metcalfe6d96682012-05-18 13:33:24 -040014 select HAVE_SYSCALL_WRAPPERS if TILEGX
Chris Metcalff133ecc2011-05-26 12:40:09 -040015 select SYS_HYPERVISOR
Chris Metcalf8d695142012-03-27 13:47:57 -040016 select ARCH_HAVE_NMI_SAFE_CMPXCHG
Thomas Gleixner8df274062011-01-19 20:44:43 +010017
18# FIXME: investigate whether we need/want these options.
19# select HAVE_IOREMAP_PROT
Chris Metcalf5fb682b2011-02-28 15:58:39 -050020# 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
Thomas Gleixner8df274062011-01-19 20:44:43 +010028
Chris Metcalf867e3592010-05-28 23:09:12 -040029config MMU
30 def_bool y
31
32config GENERIC_CSUM
33 def_bool y
34
Chris Metcalf867e3592010-05-28 23:09:12 -040035config 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
Chris Metcalf5fb682b2011-02-28 15:58:39 -050045 def_bool y
Chris Metcalf867e3592010-05-28 23:09:12 -040046
47config SYS_SUPPORTS_HUGETLBFS
48 def_bool y
49
Chris Metcalf867e3592010-05-28 23:09:12 -040050config GENERIC_CLOCKEVENTS
51 def_bool y
52
Lucas De Marchi25985ed2011-03-30 22:57:33 -030053# FIXME: tilegx can implement a more efficient rwsem.
Chris Metcalf867e3592010-05-28 23:09:12 -040054config 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
FUJITA Tomonorid31eb512010-10-27 15:32:58 -070070config ARCH_DMA_ADDR_T_64BIT
71 def_bool y
72
Chris Metcalf3d1e8a82012-03-27 13:53:30 -040073config NEED_DMA_MAP_STATE
74 def_bool y
75
Chris Metcalf867e3592010-05-28 23:09:12 -040076config 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
Chris Metcalf867e3592010-05-28 23:09:12 -0400112# 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
Chris Metcalf3d1e8a82012-03-27 13:53:30 -0400125 default "arch/tile/configs/tilepro_defconfig" if !TILEGX
Chris Metcalf867e3592010-05-28 23:09:12 -0400126 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
Chris Metcalfd5d14ed2012-03-29 13:58:43 -0400142if 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
Chris Metcalf867e3592010-05-28 23:09:12 -0400167source "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
Chris Metcalf867e3592010-05-28 23:09:12 -0400232choice
233 depends on !TILEGX
David Rientjes6a108a12011-01-20 14:44:16 -0800234 prompt "Memory split" if EXPERT
Chris Metcalf867e3592010-05-28 23:09:12 -0400235 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
Chris Metcalf55928402010-09-13 08:50:09 -0400252 config VMSPLIT_3_75G
Chris Metcalf867e3592010-05-28 23:09:12 -0400253 bool "3.75G/0.25G user/kernel split (no kernel networking)"
Chris Metcalf55928402010-09-13 08:50:09 -0400254 config VMSPLIT_3_5G
Chris Metcalf867e3592010-05-28 23:09:12 -0400255 bool "3.5G/0.5G user/kernel split"
256 config VMSPLIT_3G
257 bool "3G/1G user/kernel split"
Chris Metcalf09c17ea2011-02-28 16:01:09 -0500258 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"
Chris Metcalf867e3592010-05-28 23:09:12 -0400264 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
Chris Metcalf884197f2012-03-27 13:56:04 -0400272 depends on !64BIT
Chris Metcalf55928402010-09-13 08:50:09 -0400273 default 0xF0000000 if VMSPLIT_3_75G
274 default 0xE0000000 if VMSPLIT_3_5G
Chris Metcalf09c17ea2011-02-28 16:01:09 -0500275 default 0xB0000000 if VMSPLIT_2_75G
276 default 0xA0000000 if VMSPLIT_2_5G
277 default 0x90000000 if VMSPLIT_2_25G
Chris Metcalf867e3592010-05-28 23:09:12 -0400278 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
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400333config HARDWALL
334 bool "Hardwall support to allow access to user dynamic network"
335 default y
336
Chris Metcalfa78c9422010-10-14 16:23:03 -0400337config 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
Chris Metcalf867e3592010-05-28 23:09:12 -0400346endmenu # Tilera-specific configuration
347
348menu "Bus options"
349
Chris Metcalff02cbbe2010-11-02 12:05:10 -0400350config PCI
351 bool "PCI support"
352 default y
353 select PCI_DOMAINS
Michael S. Tsirkin84550122011-11-29 20:42:56 +0200354 select GENERIC_PCI_IOMAP
Chris Metcalff02cbbe2010-11-02 12:05:10 -0400355 ---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
Chris Metcalf867e3592010-05-28 23:09:12 -0400363config NO_IOMEM
364 def_bool !PCI
365
366config NO_IOPORT
367 def_bool !PCI
368
369source "drivers/pci/Kconfig"
370
Chris Metcalf398fa5a2011-05-02 15:09:42 -0400371config 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
Chris Metcalf867e3592010-05-28 23:09:12 -0400379source "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"
Chris Metcalfa78c9422010-10-14 16:23:03 -0400407
408source "arch/tile/kvm/Kconfig"