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