aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc/Kconfig')
-rw-r--r--arch/sparc/Kconfig525
1 files changed, 390 insertions, 135 deletions
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig
index e594559c8db..0a94d9c9cde 100644
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -4,21 +4,116 @@
4 4
5mainmenu "Linux/SPARC Kernel Configuration" 5mainmenu "Linux/SPARC Kernel Configuration"
6 6
7config SPARC
8 bool
9 default y
10 select HAVE_IDE
11 select HAVE_OPROFILE
12 select HAVE_ARCH_KGDB if !SMP || SPARC64
13 select HAVE_ARCH_TRACEHOOK
14 select ARCH_WANT_OPTIONAL_GPIOLIB
15 select RTC_CLASS
16 select RTC_DRV_M48T59
17
18# Identify this as a Sparc32 build
19config SPARC32
20 bool
21 default y if ARCH = "sparc"
22 help
23 SPARC is a family of RISC microprocessors designed and marketed by
24 Sun Microsystems, incorporated. They are very widely found in Sun
25 workstations and clones. This port covers the original 32-bit SPARC;
26 it is old and stable and usually considered one of the "big three"
27 along with the Intel and Alpha ports. The UltraLinux project
28 maintains both the SPARC32 and SPARC64 ports; its web page is
29 available at <http://www.ultralinux.org/>.
30
31config SPARC64
32 bool
33 default y if ARCH = "sparc64"
34 select ARCH_SUPPORTS_MSI
35 select HAVE_FUNCTION_TRACER
36 select HAVE_KRETPROBES
37 select HAVE_KPROBES
38 select HAVE_LMB
39 select USE_GENERIC_SMP_HELPERS if SMP
40 select RTC_DRV_CMOS
41 select RTC_DRV_BQ4802
42 select RTC_DRV_SUN4V
43 select RTC_DRV_STARFIRE
44
45config ARCH_DEFCONFIG
46 string
47 default "arch/sparc/configs/sparc32_defconfig" if SPARC32
48 default "arch/sparc/configs/sparc64_defconfig" if SPARC64
49
50# CONFIG_BITS can be used at source level to get 32/64 bits
51config BITS
52 int
53 default 32 if SPARC32
54 default 64 if SPARC64
55
56config 64BIT
57 def_bool y if SPARC64
58
59config GENERIC_TIME
60 bool
61 default y if SPARC64
62
63config GENERIC_CMOS_UPDATE
64 bool
65 default y if SPARC64
66
67config GENERIC_CLOCKEVENTS
68 bool
69 default y if SPARC64
70
71config IOMMU_HELPER
72 bool
73 default y if SPARC64
74
75config QUICKLIST
76 bool
77 default y if SPARC64
78
79config STACKTRACE_SUPPORT
80 bool
81 default y if SPARC64
82
83config LOCKDEP_SUPPORT
84 bool
85 default y if SPARC64
86
87config HAVE_LATENCYTOP_SUPPORT
88 bool
89 default y if SPARC64
90
91config AUDIT_ARCH
92 bool
93 default y
94
95config HAVE_SETUP_PER_CPU_AREA
96 def_bool y if SPARC64
97
98config GENERIC_HARDIRQS_NO__DO_IRQ
99 bool
100 def_bool y if SPARC64
101
7config MMU 102config MMU
8 bool 103 bool
9 default y 104 default y
10 105
11config HIGHMEM 106config HIGHMEM
12 bool 107 bool
13 default y 108 default y if SPARC32
14 109
15config ZONE_DMA 110config ZONE_DMA
16 bool 111 bool
17 default y 112 default y if SPARC32
18 113
19config GENERIC_ISA_DMA 114config GENERIC_ISA_DMA
20 bool 115 bool
21 default y 116 default y if SPARC32
22 117
23config GENERIC_GPIO 118config GENERIC_GPIO
24 bool 119 bool
@@ -31,15 +126,11 @@ config ARCH_NO_VIRT_TO_BUS
31config OF 126config OF
32 def_bool y 127 def_bool y
33 128
34config HZ
35 int
36 default 100
37
38source "init/Kconfig" 129source "init/Kconfig"
39 130
40source "kernel/Kconfig.freezer" 131source "kernel/Kconfig.freezer"
41 132
42menu "General machine setup" 133menu "Processor type and features"
43 134
44config SMP 135config SMP
45 bool "Symmetric multi-processing support (does not work on sun4/sun4c)" 136 bool "Symmetric multi-processing support (does not work on sun4/sun4c)"
@@ -64,82 +155,269 @@ config SMP
64 If you don't know what to do here, say N. 155 If you don't know what to do here, say N.
65 156
66config NR_CPUS 157config NR_CPUS
67 int "Maximum number of CPUs (2-32)" 158 int "Maximum number of CPUs"
68 range 2 32
69 depends on SMP 159 depends on SMP
70 default "32" 160 range 2 32 if SPARC32
161 range 2 1024 if SPARC64
162 default 32 if SPARC32
163 default 64 if SPARC64
71 164
72config SPARC 165source kernel/Kconfig.hz
166
167config RWSEM_GENERIC_SPINLOCK
168 bool
169 default y if SPARC32
170
171config RWSEM_XCHGADD_ALGORITHM
172 bool
173 default y if SPARC64
174
175config GENERIC_FIND_NEXT_BIT
73 bool 176 bool
74 default y 177 default y
75 select HAVE_IDE
76 select HAVE_OPROFILE
77 select HAVE_ARCH_KGDB if !SMP
78 select HAVE_ARCH_TRACEHOOK
79 select ARCH_WANT_OPTIONAL_GPIOLIB
80 select RTC_CLASS
81 select RTC_DRV_M48T59
82 178
83# Identify this as a Sparc32 build 179config GENERIC_HWEIGHT
84config SPARC32 180 bool
181 default y if !ULTRA_HAS_POPULATION_COUNT
182
183config GENERIC_CALIBRATE_DELAY
85 bool 184 bool
86 default y 185 default y
87 help
88 SPARC is a family of RISC microprocessors designed and marketed by
89 Sun Microsystems, incorporated. They are very widely found in Sun
90 workstations and clones. This port covers the original 32-bit SPARC;
91 it is old and stable and usually considered one of the "big three"
92 along with the Intel and Alpha ports. The UltraLinux project
93 maintains both the SPARC32 and SPARC64 ports; its web page is
94 available at <http://www.ultralinux.org/>.
95 186
96# Global things across all Sun machines. 187config ARCH_MAY_HAVE_PC_FDC
97config ISA
98 bool 188 bool
99 help 189 default y
100 ISA is found on Espresso only and is not supported currently.
101 Say N
102 190
103config EISA 191config ARCH_HAS_ILOG2_U32
104 bool 192 bool
193 default n
194
195config ARCH_HAS_ILOG2_U64
196 bool
197 default n
198
199config EMULATED_CMPXCHG
200 bool
201 default y if SPARC32
105 help 202 help
106 EISA is not supported. 203 Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
107 Say N 204 is emulated, and therefore it is not completely atomic.
108 205
109config MCA 206# Makefile helpers
207config SPARC32_SMP
208 bool
209 default y
210 depends on SPARC32 && SMP
211
212config SPARC64_SMP
110 bool 213 bool
214 default y
215 depends on SPARC64 && SMP
216
217choice
218 prompt "Kernel page size" if SPARC64
219 default SPARC64_PAGE_SIZE_8KB
220
221config SPARC64_PAGE_SIZE_8KB
222 bool "8KB"
111 help 223 help
112 MCA is not supported. 224 This lets you select the page size of the kernel.
113 Say N
114 225
115config PCMCIA 226 8KB and 64KB work quite well, since SPARC ELF sections
116 tristate 227 provide for up to 64KB alignment.
117 ---help---
118 Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
119 computer. These are credit-card size devices such as network cards,
120 modems or hard drives often used with laptops computers. There are
121 actually two varieties of these cards: the older 16 bit PCMCIA cards
122 and the newer 32 bit CardBus cards. If you want to use CardBus
123 cards, you need to say Y here and also to "CardBus support" below.
124 228
125 To use your PC-cards, you will need supporting software from David 229 If you don't know what to do, choose 8KB.
126 Hinds' pcmcia-cs package (see the file <file:Documentation/Changes>
127 for location). Please also read the PCMCIA-HOWTO, available from
128 <http://www.tldp.org/docs.html#howto>.
129 230
130 To compile this driver as modules, choose M here: the 231config SPARC64_PAGE_SIZE_64KB
131 modules will be called pcmcia_core and ds. 232 bool "64KB"
132 233
133config SBUS 234endchoice
235
236config SECCOMP
237 bool "Enable seccomp to safely compute untrusted bytecode"
238 depends on SPARC64 && PROC_FS
239 default y
240 help
241 This kernel feature is useful for number crunching applications
242 that may need to compute untrusted bytecode during their
243 execution. By using pipes or other transports made available to
244 the process as file descriptors supporting the read/write
245 syscalls, it's possible to isolate those applications in
246 their own address space using seccomp. Once seccomp is
247 enabled via /proc/<pid>/seccomp, it cannot be disabled
248 and the task is only allowed to execute a few safe syscalls
249 defined by each seccomp mode.
250
251 If unsure, say Y. Only embedded should say N here.
252
253config HOTPLUG_CPU
254 bool "Support for hot-pluggable CPUs"
255 depends on SPARC64 && SMP
256 select HOTPLUG
257 help
258 Say Y here to experiment with turning CPUs off and on. CPUs
259 can be controlled through /sys/devices/system/cpu/cpu#.
260 Say N if you want to disable CPU hotplug.
261
262config GENERIC_HARDIRQS
134 bool 263 bool
264 default y if SPARC64
265
266source "kernel/time/Kconfig"
267
268if SPARC64
269source "drivers/cpufreq/Kconfig"
270
271config US3_FREQ
272 tristate "UltraSPARC-III CPU Frequency driver"
273 depends on CPU_FREQ
274 select CPU_FREQ_TABLE
275 help
276 This adds the CPUFreq driver for UltraSPARC-III processors.
277
278 For details, take a look at <file:Documentation/cpu-freq>.
279
280 If in doubt, say N.
281
282config US2E_FREQ
283 tristate "UltraSPARC-IIe CPU Frequency driver"
284 depends on CPU_FREQ
285 select CPU_FREQ_TABLE
286 help
287 This adds the CPUFreq driver for UltraSPARC-IIe processors.
288
289 For details, take a look at <file:Documentation/cpu-freq>.
290
291 If in doubt, say N.
292
293endif
294
295config US3_MC
296 tristate "UltraSPARC-III Memory Controller driver"
297 depends on SPARC64
135 default y 298 default y
299 help
300 This adds a driver for the UltraSPARC-III memory controller.
301 Loading this driver allows exact mnemonic strings to be
302 printed in the event of a memory error, so that the faulty DIMM
303 on the motherboard can be matched to the error.
136 304
137config SBUSCHAR 305 If in doubt, say Y, as this information can be very useful.
306
307# Global things across all Sun machines.
308config GENERIC_LOCKBREAK
138 bool 309 bool
139 default y 310 default y
311 depends on SPARC64 && SMP && PREEMPT
312
313choice
314 prompt "SPARC64 Huge TLB Page Size"
315 depends on SPARC64 && HUGETLB_PAGE
316 default HUGETLB_PAGE_SIZE_4MB
317
318config HUGETLB_PAGE_SIZE_4MB
319 bool "4MB"
320
321config HUGETLB_PAGE_SIZE_512K
322 bool "512K"
323
324config HUGETLB_PAGE_SIZE_64K
325 depends on !SPARC64_PAGE_SIZE_64KB
326 bool "64K"
327
328endchoice
329
330config NUMA
331 bool "NUMA support"
332 depends on SPARC64 && SMP
333
334config NODES_SHIFT
335 int
336 default "4"
337 depends on NEED_MULTIPLE_NODES
338
339# Some NUMA nodes have memory ranges that span
340# other nodes. Even though a pfn is valid and
341# between a node's start and end pfns, it may not
342# reside on that node. See memmap_init_zone()
343# for details.
344config NODES_SPAN_OTHER_NODES
345 def_bool y
346 depends on NEED_MULTIPLE_NODES
347
348config ARCH_POPULATES_NODE_MAP
349 def_bool y if SPARC64
350
351config ARCH_SELECT_MEMORY_MODEL
352 def_bool y if SPARC64
353
354config ARCH_SPARSEMEM_ENABLE
355 def_bool y if SPARC64
356 select SPARSEMEM_VMEMMAP_ENABLE
357
358config ARCH_SPARSEMEM_DEFAULT
359 def_bool y if SPARC64
360
361source "mm/Kconfig"
362
363config SCHED_SMT
364 bool "SMT (Hyperthreading) scheduler support"
365 depends on SPARC64 && SMP
366 default y
367 help
368 SMT scheduler support improves the CPU scheduler's decision making
369 when dealing with SPARC cpus at a cost of slightly increased overhead
370 in some places. If unsure say N here.
371
372config SCHED_MC
373 bool "Multi-core scheduler support"
374 depends on SPARC64 && SMP
375 default y
376 help
377 Multi-core scheduler support improves the CPU scheduler's decision
378 making when dealing with multi-core CPU chips at a cost of slightly
379 increased overhead in some places. If unsure say N here.
380
381if SPARC64
382source "kernel/Kconfig.preempt"
383endif
384
385config CMDLINE_BOOL
386 bool "Default bootloader kernel arguments"
387 depends on SPARC64
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
402config SUN_PM
403 bool
404 default y if SPARC32
405 help
406 Enable power management and CPU standby features on supported
407 SPARC platforms.
408
409config SPARC_LED
410 tristate "Sun4m LED driver"
411 depends on SPARC32
412 help
413 This driver toggles the front-panel LED on sun4m systems
414 in a user-specifiable manner. Its state can be probed
415 by reading /proc/led and its blinking mode can be changed
416 via writes to /proc/led
140 417
141config SERIAL_CONSOLE 418config SERIAL_CONSOLE
142 bool 419 bool
420 depends on SPARC32
143 default y 421 default y
144 ---help--- 422 ---help---
145 If you say Y here, it will be possible to use a serial port as the 423 If you say Y here, it will be possible to use a serial port as the
@@ -161,71 +439,66 @@ config SERIAL_CONSOLE
161 439
162 If unsure, say N. 440 If unsure, say N.
163 441
164config SUN_AUXIO 442endmenu
165 bool
166 default y
167
168config SUN_IO
169 bool
170 default y
171
172config RWSEM_GENERIC_SPINLOCK
173 bool
174 default y
175 443
176config RWSEM_XCHGADD_ALGORITHM 444menu "Bus options (PCI etc.)"
445config ISA
177 bool 446 bool
447 help
448 ISA is found on Espresso only and is not supported currently.
178 449
179config GENERIC_FIND_NEXT_BIT 450config ISAPNP
180 bool 451 bool
181 default y 452 help
453 ISAPNP is not supported
182 454
183config GENERIC_HWEIGHT 455config EISA
184 bool 456 bool
185 default y 457 help
458 EISA is not supported.
186 459
187config GENERIC_CALIBRATE_DELAY 460config MCA
188 bool 461 bool
189 default y 462 help
463 MCA is not supported.
190 464
191config ARCH_MAY_HAVE_PC_FDC 465config SBUS
192 bool 466 bool
193 default y 467 default y
194 468
195config ARCH_HAS_ILOG2_U32 469config SBUSCHAR
196 bool
197 default n
198
199config ARCH_HAS_ILOG2_U64
200 bool
201 default n
202
203config EMULATED_CMPXCHG
204 bool 470 bool
205 default y 471 default y
206 help
207 Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
208 is emulated, and therefore it is not completely atomic.
209 472
210config SUN_PM 473config SUN_LDOMS
211 bool 474 bool "Sun Logical Domains support"
212 default y 475 depends on SPARC64
213 help 476 help
214 Enable power management and CPU standby features on supported 477 Say Y here is you want to support virtual devices via
215 SPARC platforms. 478 Logical Domains.
216 479
217config PCI 480config PCI
218 bool "Support for PCI and PS/2 keyboard/mouse" 481 bool "Support for PCI and PS/2 keyboard/mouse"
219 help 482 help
483 Find out whether your system includes a PCI bus. PCI is the name of
484 a bus system, i.e. the way the CPU talks to the other stuff inside
485 your box. If you say Y here, the kernel will include drivers and
486 infrastructure code to support PCI bus devices.
487
220 CONFIG_PCI is needed for all JavaStation's (including MrCoffee), 488 CONFIG_PCI is needed for all JavaStation's (including MrCoffee),
221 CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC. 489 CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC.
222 All of these platforms are extremely obscure, so say N if unsure. 490 All of these platforms are extremely obscure, so say N if unsure.
223 491
492config PCI_DOMAINS
493 def_bool PCI if SPARC64
494
224config PCI_SYSCALL 495config PCI_SYSCALL
225 def_bool PCI 496 def_bool PCI
226 497
227source "drivers/pci/Kconfig" 498source "drivers/pci/Kconfig"
228 499
500source "drivers/pcmcia/Kconfig"
501
229config SUN_OPENPROMFS 502config SUN_OPENPROMFS
230 tristate "Openprom tree appears in /proc/openprom" 503 tristate "Openprom tree appears in /proc/openprom"
231 help 504 help
@@ -239,17 +512,33 @@ config SUN_OPENPROMFS
239 Only choose N if you know in advance that you will not need to modify 512 Only choose N if you know in advance that you will not need to modify
240 OpenPROM settings on the running system. 513 OpenPROM settings on the running system.
241 514
242config SPARC_LED 515# Makefile helpers
243 tristate "Sun4m LED driver" 516config SPARC32_PCI
244 help 517 bool
245 This driver toggles the front-panel LED on sun4m systems 518 default y
246 in a user-specifiable manner. Its state can be probed 519 depends on SPARC32 && PCI
247 by reading /proc/led and its blinking mode can be changed 520
248 via writes to /proc/led 521config SPARC64_PCI
522 bool
523 default y
524 depends on SPARC64 && PCI
525
526endmenu
527
528menu "Executable file formats"
249 529
250source "fs/Kconfig.binfmt" 530source "fs/Kconfig.binfmt"
251 531
252source "mm/Kconfig" 532config COMPAT
533 bool
534 depends on SPARC64
535 default y
536 select COMPAT_BINFMT_ELF
537
538config SYSVIPC_COMPAT
539 bool
540 depends on COMPAT && SYSVIPC
541 default y
253 542
254endmenu 543endmenu
255 544
@@ -259,40 +548,6 @@ source "drivers/Kconfig"
259 548
260source "drivers/sbus/char/Kconfig" 549source "drivers/sbus/char/Kconfig"
261 550
262# This one must be before the filesystem configs. -DaveM
263
264menu "Unix98 PTY support"
265
266config UNIX98_PTYS
267 bool "Unix98 PTY support"
268 ---help---
269 A pseudo terminal (PTY) is a software device consisting of two
270 halves: a master and a slave. The slave device behaves identical to
271 a physical terminal; the master device is used by a process to
272 read data from and write data to the slave, thereby emulating a
273 terminal. Typical programs for the master side are telnet servers
274 and xterms.
275
276 Linux has traditionally used the BSD-like names /dev/ptyxx for
277 masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
278 has a number of problems. The GNU C library glibc 2.1 and later,
279 however, supports the Unix98 naming standard: in order to acquire a
280 pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
281 terminal is then made available to the process and the pseudo
282 terminal slave can be accessed as /dev/pts/<number>. What was
283 traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
284
285 The entries in /dev/pts/ are created on the fly by a virtual
286 file system; therefore, if you say Y here you should say Y to
287 "/dev/pts file system for Unix98 PTYs" as well.
288
289 If you want to say Y here, you need to have the C library glibc 2.1
290 or later (equal to libc-6.1, check with "ls -l /lib/libc.so.*").
291 Read the instructions in <file:Documentation/Changes> pertaining to
292 pseudo terminals. It's safe to say N.
293
294endmenu
295
296source "fs/Kconfig" 551source "fs/Kconfig"
297 552
298source "arch/sparc/Kconfig.debug" 553source "arch/sparc/Kconfig.debug"