]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/sparc64/Kconfig
[SPARC64]: Add tick_nohz_{stop,restart}_sched_tick() calls to cpu_idle().
[net-next-2.6.git] / arch / sparc64 / Kconfig
CommitLineData
1da177e4
LT
1# $Id: config.in,v 1.158 2002/01/24 22:14:44 davem Exp $
2# For a description of the syntax of this configuration file,
3# see the Configure script.
4#
5
6mainmenu "Linux/UltraSPARC Kernel Configuration"
7
0b57ee9e
AB
8config SPARC
9 bool
10 default y
11
5843e37e
DM
12config SPARC64
13 bool
14 default y
15 help
16 SPARC is a family of RISC microprocessors designed and marketed by
17 Sun Microsystems, incorporated. This port covers the newer 64-bit
18 UltraSPARC. The UltraLinux project maintains both the SPARC32 and
19 SPARC64 ports; its web page is available at
20 <http://www.ultralinux.org/>.
21
1da177e4
LT
22config 64BIT
23 def_bool y
24
25config MMU
26 bool
27 default y
28
10e26723
DM
29config STACKTRACE_SUPPORT
30 bool
31 default y
32
33config LOCKDEP_SUPPORT
34 bool
35 default y
36
1da177e4
LT
37config TIME_INTERPOLATION
38 bool
39 default y
40
a08b6b79
AV
41config ARCH_MAY_HAVE_PC_FDC
42 bool
43 default y
44
f0d1b0b3
DH
45config ARCH_HAS_ILOG2_U32
46 bool
47 default n
48
49config ARCH_HAS_ILOG2_U64
50 bool
51 default n
52
f6bc0c1c
AV
53config AUDIT_ARCH
54 bool
55 default y
56
1da177e4
LT
57choice
58 prompt "Kernel page size"
59 default SPARC64_PAGE_SIZE_8KB
60
61config SPARC64_PAGE_SIZE_8KB
62 bool "8KB"
63 help
64 This lets you select the page size of the kernel.
65
66 8KB and 64KB work quite well, since Sparc ELF sections
67 provide for up to 64KB alignment.
68
69 Therefore, 512KB and 4MB are for expert hackers only.
70
71 If you don't know what to do, choose 8KB.
72
73config SPARC64_PAGE_SIZE_64KB
74 bool "64KB"
75
76config SPARC64_PAGE_SIZE_512KB
77 bool "512KB"
78
79config SPARC64_PAGE_SIZE_4MB
80 bool "4MB"
81
82endchoice
83
bb49bcda
DM
84config SECCOMP
85 bool "Enable seccomp to safely compute untrusted bytecode"
86 depends on PROC_FS
87 default y
88 help
89 This kernel feature is useful for number crunching applications
90 that may need to compute untrusted bytecode during their
91 execution. By using pipes or other transports made available to
92 the process as file descriptors supporting the read/write
93 syscalls, it's possible to isolate those applications in
94 their own address space using seccomp. Once seccomp is
95 enabled via /proc/<pid>/seccomp, it cannot be disabled
96 and the task is only allowed to execute a few safe syscalls
97 defined by each seccomp mode.
98
99 If unsure, say Y. Only embedded should say N here.
100
a6524813
DM
101source kernel/Kconfig.hz
102
1da177e4
LT
103source "init/Kconfig"
104
105config SYSVIPC_COMPAT
106 bool
107 depends on COMPAT && SYSVIPC
108 default y
109
e18e2a00
DM
110config GENERIC_HARDIRQS
111 bool
112 default y
113
1da177e4
LT
114menu "General machine setup"
115
1da177e4
LT
116config SMP
117 bool "Symmetric multi-processing support"
118 ---help---
119 This enables support for systems with more than one CPU. If you have
120 a system with only one CPU, say N. If you have a system with more than
121 one CPU, say Y.
122
123 If you say N here, the kernel will run on single and multiprocessor
124 machines, but will use only one CPU of a multiprocessor machine. If
125 you say Y here, the kernel will run on many, but not all,
126 singleprocessor machines. On a singleprocessor machine, the kernel
127 will run faster if you say N here.
128
129 People using multiprocessor machines who say Y here should also say
130 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
131 Management" code will be disabled if you say Y here.
132
133 See also the <file:Documentation/smp.txt>,
134 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
135 <http://www.tldp.org/docs.html#howto>.
136
137 If you don't know what to do here, say N.
138
1da177e4
LT
139config NR_CPUS
140 int "Maximum number of CPUs (2-64)"
141 range 2 64
142 depends on SMP
143 default "32"
144
145source "drivers/cpufreq/Kconfig"
146
147config US3_FREQ
148 tristate "UltraSPARC-III CPU Frequency driver"
149 depends on CPU_FREQ
150 select CPU_FREQ_TABLE
151 help
152 This adds the CPUFreq driver for UltraSPARC-III processors.
153
154 For details, take a look at <file:Documentation/cpu-freq>.
155
156 If in doubt, say N.
157
158config US2E_FREQ
159 tristate "UltraSPARC-IIe CPU Frequency driver"
160 depends on CPU_FREQ
161 select CPU_FREQ_TABLE
162 help
163 This adds the CPUFreq driver for UltraSPARC-IIe processors.
164
165 For details, take a look at <file:Documentation/cpu-freq>.
166
167 If in doubt, say N.
168
1da177e4
LT
169# Global things across all Sun machines.
170config RWSEM_GENERIC_SPINLOCK
171 bool
172
173config RWSEM_XCHGADD_ALGORITHM
174 bool
175 default y
176
2d78d4be
AM
177config GENERIC_FIND_NEXT_BIT
178 bool
179 default y
180
181config GENERIC_HWEIGHT
182 bool
183 default y if !ULTRA_HAS_POPULATION_COUNT
184
1da177e4
LT
185config GENERIC_CALIBRATE_DELAY
186 bool
187 default y
188
189choice
190 prompt "SPARC64 Huge TLB Page Size"
191 depends on HUGETLB_PAGE
192 default HUGETLB_PAGE_SIZE_4MB
193
194config HUGETLB_PAGE_SIZE_4MB
195 bool "4MB"
196
197config HUGETLB_PAGE_SIZE_512K
dcc1e8dd 198 depends on !SPARC64_PAGE_SIZE_4MB && !SPARC64_PAGE_SIZE_512KB
1da177e4
LT
199 bool "512K"
200
201config HUGETLB_PAGE_SIZE_64K