blob: fca9246470b11e3beb0be6e6fe1ba65c1e7a183b [file] [log] [blame]
David S. Miller05d515e2008-04-26 03:07:34 -07001# sparc64 configuration
2mainmenu "Linux Kernel Configuration for 64-bit SPARC"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Adrian Bunk0b57ee92005-12-22 21:03:47 -08004config SPARC
5 bool
6 default y
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -05007 select HAVE_OPROFILE
Mathieu Desnoyers3f550092008-02-02 15:10:35 -05008 select HAVE_KPROBES
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08009 select HAVE_KRETPROBES
Adrian Bunk0b57ee92005-12-22 21:03:47 -080010
David S. Miller5843e372005-08-30 21:46:19 -070011config SPARC64
12 bool
13 default y
Steven Rostedt677aa9f2008-05-17 00:01:36 -040014 select HAVE_DYNAMIC_FTRACE
David Millerd05f5f92008-05-13 22:06:59 -070015 select HAVE_FTRACE
Sam Ravnborgec7748b2008-02-09 10:46:40 +010016 select HAVE_IDE
David S. Millerd9b2b2a2008-02-13 16:56:49 -080017 select HAVE_LMB
David S. Millere2fdd7f2008-04-29 02:38:50 -070018 select HAVE_ARCH_KGDB
David S. Miller5843e372005-08-30 21:46:19 -070019
David S. Miller112f4872007-03-05 15:28:37 -080020config GENERIC_TIME
21 bool
22 default y
23
Thomas Gleixner82644452007-07-21 04:37:37 -070024config GENERIC_CMOS_UPDATE
25 bool
26 default y
27
David S. Miller112f4872007-03-05 15:28:37 -080028config GENERIC_CLOCKEVENTS
29 bool
30 default y
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032config 64BIT
33 def_bool y
34
35config MMU
36 bool
37 default y
38
David S. Millerd2841422008-02-08 18:05:46 -080039config IOMMU_HELPER
40 bool
41 default y
42
David Miller3a2cba92007-05-06 14:49:51 -070043config QUICKLIST
44 bool
45 default y
46
David S. Miller10e26722006-11-16 13:38:57 -080047config STACKTRACE_SUPPORT
48 bool
49 default y
50
51config LOCKDEP_SUPPORT
52 bool
53 default y
54
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010055config ARCH_MAY_HAVE_PC_FDC
56 bool
57 default y
58
David Howellsf0d1b0b2006-12-08 02:37:49 -080059config ARCH_HAS_ILOG2_U32
60 bool
61 default n
62
63config ARCH_HAS_ILOG2_U64
64 bool
65 default n
66
Al Virof6bc0c12006-09-12 02:59:45 -040067config AUDIT_ARCH
68 bool
69 default y
70
travis@sgi.com988c3882008-01-30 23:27:58 +010071config HAVE_SETUP_PER_CPU_AREA
travis@sgi.comb32ef632008-01-30 13:32:51 +010072 def_bool y
73
Stephen Rothwell0785b9d2007-07-18 00:09:30 -070074config ARCH_NO_VIRT_TO_BUS
75 def_bool y
76
Stephen Rothwell97e873e2007-05-01 16:26:07 +100077config OF
78 def_bool y
79
David S. Miller8d57d3a2007-10-22 02:16:45 -070080config GENERIC_HARDIRQS_NO__DO_IRQ
81 bool
82 def_bool y
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084choice
85 prompt "Kernel page size"
86 default SPARC64_PAGE_SIZE_8KB
87
88config SPARC64_PAGE_SIZE_8KB
89 bool "8KB"
90 help
91 This lets you select the page size of the kernel.
92
David S. Miller05d515e2008-04-26 03:07:34 -070093 8KB and 64KB work quite well, since SPARC ELF sections
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 provide for up to 64KB alignment.
95
96 Therefore, 512KB and 4MB are for expert hackers only.
97
98 If you don't know what to do, choose 8KB.
99
100config SPARC64_PAGE_SIZE_64KB
101 bool "64KB"
102
103config SPARC64_PAGE_SIZE_512KB
104 bool "512KB"
105
106config SPARC64_PAGE_SIZE_4MB
107 bool "4MB"
108
109endchoice
110
David S. Millerbb49bcd2005-07-10 16:49:28 -0700111config SECCOMP
112 bool "Enable seccomp to safely compute untrusted bytecode"
113 depends on PROC_FS
114 default y
115 help
116 This kernel feature is useful for number crunching applications
117 that may need to compute untrusted bytecode during their
118 execution. By using pipes or other transports made available to
119 the process as file descriptors supporting the read/write
120 syscalls, it's possible to isolate those applications in
121 their own address space using seccomp. Once seccomp is
122 enabled via /proc/<pid>/seccomp, it cannot be disabled
123 and the task is only allowed to execute a few safe syscalls
124 defined by each seccomp mode.
125
126 If unsure, say Y. Only embedded should say N here.
127
David S. Millera6524812005-07-08 15:21:51 -0700128source kernel/Kconfig.hz
129
David S. Miller4f0234f2007-07-13 16:03:42 -0700130config HOTPLUG_CPU
131 bool "Support for hot-pluggable CPUs"
132 depends on SMP
133 select HOTPLUG
David S. Miller05d515e2008-04-26 03:07:34 -0700134 help
David S. Miller4f0234f2007-07-13 16:03:42 -0700135 Say Y here to experiment with turning CPUs off and on. CPUs
136 can be controlled through /sys/devices/system/cpu/cpu#.
137 Say N if you want to disable CPU hotplug.
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139source "init/Kconfig"
140
David S. Millere18e2a02006-06-20 01:23:32 -0700141config GENERIC_HARDIRQS
142 bool
143 default y
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145menu "General machine setup"
146
David S. Miller112f4872007-03-05 15:28:37 -0800147source "kernel/time/Kconfig"
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149config SMP
150 bool "Symmetric multi-processing support"
David S. Miller05d515e2008-04-26 03:07:34 -0700151 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 This enables support for systems with more than one CPU. If you have
153 a system with only one CPU, say N. If you have a system with more than
154 one CPU, say Y.
155
156 If you say N here, the kernel will run on single and multiprocessor
157 machines, but will use only one CPU of a multiprocessor machine. If
David S. Miller05d515e2008-04-26 03:07:34 -0700158 you say Y here, the kernel will run on single-processor machines.
159 On a single-processor machine, the kernel will run faster if you say
160 N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 If you don't know what to do here, say N.
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164config NR_CPUS
David S. Miller22adb352007-05-26 01:14:43 -0700165 int "Maximum number of CPUs (2-1024)"
166 range 2 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 depends on SMP
David S. Miller22adb352007-05-26 01:14:43 -0700168 default "64"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170source "drivers/cpufreq/Kconfig"
171
172config US3_FREQ
173 tristate "UltraSPARC-III CPU Frequency driver"
174 depends on CPU_FREQ
175 select CPU_FREQ_TABLE
176 help
177 This adds the CPUFreq driver for UltraSPARC-III processors.
178
179 For details, take a look at <file:Documentation/cpu-freq>.
180
181 If in doubt, say N.
182
183config US2E_FREQ
184 tristate "UltraSPARC-IIe CPU Frequency driver"
185 depends on CPU_FREQ
186 select CPU_FREQ_TABLE
187 help
188 This adds the CPUFreq driver for UltraSPARC-IIe processors.
189
190 For details, take a look at <file:Documentation/cpu-freq>.
191
192 If in doubt, say N.
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194# Global things across all Sun machines.
Nick Piggin95c354f2008-01-30 13:31:20 +0100195config GENERIC_LOCKBREAK
196 bool
197 default y
198 depends on SMP && PREEMPT
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200config RWSEM_GENERIC_SPINLOCK
201 bool
202
203config RWSEM_XCHGADD_ALGORITHM
204 bool
205 default y
206
Akinobu Mita2d78d4b2006-03-26 01:39:40 -0800207config GENERIC_FIND_NEXT_BIT
208 bool
209 default y
210
211config GENERIC_HWEIGHT
212 bool
213 default y if !ULTRA_HAS_POPULATION_COUNT
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215config GENERIC_CALIBRATE_DELAY
216 bool
217 default y
218
219choice
220 prompt "SPARC64 Huge TLB Page Size"
221 depends on HUGETLB_PAGE
222 default HUGETLB_PAGE_SIZE_4MB
223
224config HUGETLB_PAGE_SIZE_4MB
225 bool "4MB"
226
227config HUGETLB_PAGE_SIZE_512K
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800228 depends on !SPARC64_PAGE_SIZE_4MB && !SPARC64_PAGE_SIZE_512KB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 bool "512K"
230
231config HUGETLB_PAGE_SIZE_64K
Jean-Luc Légerf2a15852006-04-18 16:19:53 -0700232 depends on !SPARC64_PAGE_SIZE_4MB && !SPARC64_PAGE_SIZE_512KB && !SPARC64_PAGE_SIZE_64KB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 bool "64K"
234
235endchoice
236
David S. Miller5843e372005-08-30 21:46:19 -0700237endmenu
238
David S. Miller919ee672008-04-23 05:40:25 -0700239config NUMA
240 bool "NUMA support"
241
242config NODES_SHIFT
243 int
244 default "4"
245 depends on NEED_MULTIPLE_NODES
246
247# Some NUMA nodes have memory ranges that span
248# other nodes. Even though a pfn is valid and
249# between a node's start and end pfns, it may not
250# reside on that node. See memmap_init_zone()
251# for details.
252config NODES_SPAN_OTHER_NODES
253 def_bool y
254 depends on NEED_MULTIPLE_NODES
255
256config ARCH_POPULATES_NODE_MAP
257 def_bool y
258
David S. Miller68491d52006-04-06 20:28:11 -0700259config ARCH_SELECT_MEMORY_MODEL
260 def_bool y
261
David S. Millerd1112012006-03-08 02:16:07 -0800262config ARCH_SPARSEMEM_ENABLE
263 def_bool y
David Miller46644c22007-10-16 01:24:16 -0700264 select SPARSEMEM_VMEMMAP_ENABLE
David S. Millerd1112012006-03-08 02:16:07 -0800265
266config ARCH_SPARSEMEM_DEFAULT
267 def_bool y
268
David S. Miller5843e372005-08-30 21:46:19 -0700269source "mm/Kconfig"
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271config ISA
272 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274config ISAPNP
275 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277config EISA
278 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280config MCA
281 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283config PCMCIA
284 tristate
David S. Miller05d515e2008-04-26 03:07:34 -0700285 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
287 computer. These are credit-card size devices such as network cards,
288 modems or hard drives often used with laptops computers. There are
289 actually two varieties of these cards: the older 16 bit PCMCIA cards
290 and the newer 32 bit CardBus cards. If you want to use CardBus
291 cards, you need to say Y here and also to "CardBus support" below.
292
293 To use your PC-cards, you will need supporting software from David
294 Hinds' pcmcia-cs package (see the file <file:Documentation/Changes>
295 for location). Please also read the PCMCIA-HOWTO, available from
296 <http://www.tldp.org/docs.html#howto>.
297
298 To compile this driver as modules, choose M here: the
299 modules will be called pcmcia_core and ds.
300
301config SBUS
302 bool
303 default y
304
305config SBUSCHAR
306 bool
307 default y
308
309config SUN_AUXIO
310 bool
311 default y
312
313config SUN_IO
314 bool
315 default y
316
David S. Millere53e97c2007-07-09 22:22:44 -0700317config SUN_LDOMS
318 bool "Sun Logical Domains support"
319 help
320 Say Y here is you want to support virtual devices via
321 Logical Domains.
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323config PCI
324 bool "PCI support"
Dan Williamsf282b972007-04-18 18:46:20 +1000325 select ARCH_SUPPORTS_MSI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 help
David S. Miller05d515e2008-04-26 03:07:34 -0700327 Find out whether your system includes a PCI bus. PCI is the name of
328 a bus system, i.e. the way the CPU talks to the other stuff inside
329 your box. If you say Y here, the kernel will include drivers and
330 infrastructure code to support PCI bus devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332config PCI_DOMAINS
Matthew Wilcox36e23592007-07-10 10:54:40 -0600333 def_bool PCI
334
335config PCI_SYSCALL
336 def_bool PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338source "drivers/pci/Kconfig"
339
340config SUN_OPENPROMFS
341 tristate "Openprom tree appears in /proc/openprom"
342 help
343 If you say Y, the OpenPROM device tree will be available as a
344 virtual file system, which you can mount to /proc/openprom by "mount
345 -t openpromfs none /proc/openprom".
346
347 To compile the /proc/openprom support as a module, choose M here: the
348 module will be called openpromfs. If unsure, choose M.
349
David S. Millerec98c6b2008-04-20 02:14:23 -0700350menu "Executable file formats"
351
352source "fs/Kconfig.binfmt"
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354config COMPAT
355 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 default y
David S. Miller48c946a2008-02-08 00:08:10 -0800357 select COMPAT_BINFMT_ELF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
David S. Millerec98c6b2008-04-20 02:14:23 -0700359config SYSVIPC_COMPAT
360 bool
361 depends on COMPAT && SYSVIPC
362 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
David S. Miller5843e372005-08-30 21:46:19 -0700364endmenu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
David S. Miller8935dce2006-03-08 16:09:19 -0800366config SCHED_SMT
367 bool "SMT (Hyperthreading) scheduler support"
368 depends on SMP
369 default y
370 help
371 SMT scheduler support improves the CPU scheduler's decision making
David S. Miller05d515e2008-04-26 03:07:34 -0700372 when dealing with SPARC cpus at a cost of slightly increased overhead
373 in some places. If unsure say N here.
David S. Miller8935dce2006-03-08 16:09:19 -0800374
David S. Millerf78eae22007-06-04 17:01:39 -0700375config SCHED_MC
376 bool "Multi-core scheduler support"
377 depends on SMP
378 default y
379 help
380 Multi-core scheduler support improves the CPU scheduler's decision
381 making when dealing with multi-core CPU chips at a cost of slightly
382 increased overhead in some places. If unsure say N here.
383
David S. Millerdb2f9f62007-03-17 15:23:22 -0700384source "kernel/Kconfig.preempt"
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386config CMDLINE_BOOL
387 bool "Default bootloader kernel arguments"
388
389config CMDLINE
390 string "Initial kernel command string"
391 depends on CMDLINE_BOOL
392 default "console=ttyS0,9600 root=/dev/sda1"
393 help
394 Say Y here if you want to be able to pass default arguments to
395 the kernel. This will be overridden by the bootloader, if you
396 use one (such as SILO). This is most useful if you want to boot
397 a kernel from TFTP, and want default options to be available
398 with having them passed on the command line.
399
400 NOTE: This option WILL override the PROM bootargs setting!
401
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700402source "net/Kconfig"
403
David S. Miller5843e372005-08-30 21:46:19 -0700404source "drivers/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406source "drivers/sbus/char/Kconfig"
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408source "fs/Kconfig"
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410source "arch/sparc64/Kconfig.debug"
411
412source "security/Kconfig"
413
414source "crypto/Kconfig"
415
416source "lib/Kconfig"