]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/sparc/Kconfig
sparc: drop UNIX98_PTYS from arch Kconfig
[linux-2.6-omap-h63xx.git] / arch / sparc / Kconfig
1 # For a description of the syntax of this configuration file,
2 # see Documentation/kbuild/kconfig-language.txt.
3 #
4
5 mainmenu "Linux/SPARC Kernel Configuration"
6
7 config SPARC
8         bool
9         default y
10         select HAVE_IDE
11         select HAVE_OPROFILE
12         select HAVE_ARCH_KGDB if !SMP
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
19 config SPARC32
20         bool
21         default y
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
31 config MMU
32         bool
33         default y
34
35 config HIGHMEM
36         bool
37         default y
38
39 config ZONE_DMA
40         bool
41         default y
42
43 config GENERIC_ISA_DMA
44         bool
45         default y
46
47 config GENERIC_GPIO
48         bool
49         help
50           Generic GPIO API support
51
52 config ARCH_NO_VIRT_TO_BUS
53         def_bool y
54
55 config OF
56         def_bool y
57
58 config HZ
59         int
60         default 100
61
62 source "init/Kconfig"
63
64 source "kernel/Kconfig.freezer"
65
66 menu "General machine setup"
67
68 config SMP
69         bool "Symmetric multi-processing support (does not work on sun4/sun4c)"
70         ---help---
71           This enables support for systems with more than one CPU. If you have
72           a system with only one CPU, say N. If you have a system with more
73           than one CPU, say Y.
74
75           If you say N here, the kernel will run on single and multiprocessor
76           machines, but will use only one CPU of a multiprocessor machine. If
77           you say Y here, the kernel will run on many, but not all,
78           singleprocessor machines. On a singleprocessor machine, the kernel
79           will run faster if you say N here.
80
81           People using multiprocessor machines who say Y here should also say
82           Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
83           Management" code will be disabled if you say Y here.
84
85           See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
86           available at <http://www.tldp.org/docs.html#howto>.
87
88           If you don't know what to do here, say N.
89
90 config NR_CPUS
91         int "Maximum number of CPUs (2-32)"
92         range 2 32
93         depends on SMP
94         default "32"
95
96
97 # Global things across all Sun machines.
98 config ISA
99         bool
100         help
101           ISA is found on Espresso only and is not supported currently.
102           Say N
103
104 config EISA
105         bool
106         help
107           EISA is not supported.
108           Say N
109
110 config MCA
111         bool
112         help
113           MCA is not supported.
114           Say N
115
116 config PCMCIA
117         tristate
118         ---help---
119           Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
120           computer.  These are credit-card size devices such as network cards,
121           modems or hard drives often used with laptops computers.  There are
122           actually two varieties of these cards: the older 16 bit PCMCIA cards
123           and the newer 32 bit CardBus cards.  If you want to use CardBus
124           cards, you need to say Y here and also to "CardBus support" below.
125
126           To use your PC-cards, you will need supporting software from David
127           Hinds' pcmcia-cs package (see the file <file:Documentation/Changes>
128           for location).  Please also read the PCMCIA-HOWTO, available from
129           <http://www.tldp.org/docs.html#howto>.
130
131           To compile this driver as modules, choose M here: the
132           modules will be called pcmcia_core and ds.
133
134 config SBUS
135         bool
136         default y
137
138 config SBUSCHAR
139         bool
140         default y
141
142 config SERIAL_CONSOLE
143         bool
144         default y
145         ---help---
146           If you say Y here, it will be possible to use a serial port as the
147           system console (the system console is the device which receives all
148           kernel messages and warnings and which allows logins in single user
149           mode). This could be useful if some terminal or printer is connected
150           to that serial port.
151
152           Even if you say Y here, the currently visible virtual console
153           (/dev/tty0) will still be used as the system console by default, but
154           you can alter that using a kernel command line option such as
155           "console=ttyS1". (Try "man bootparam" or see the documentation of
156           your boot loader (silo) about how to pass options to the kernel at
157           boot time.)
158
159           If you don't have a graphics card installed and you say Y here, the
160           kernel will automatically use the first serial line, /dev/ttyS0, as
161           system console.
162
163           If unsure, say N.
164
165 config SUN_AUXIO
166         bool
167         default y
168
169 config SUN_IO
170         bool
171         default y
172
173 config RWSEM_GENERIC_SPINLOCK
174         bool
175         default y
176
177 config RWSEM_XCHGADD_ALGORITHM
178         bool
179
180 config GENERIC_FIND_NEXT_BIT
181         bool
182         default y
183
184 config GENERIC_HWEIGHT
185         bool
186         default y
187
188 config GENERIC_CALIBRATE_DELAY
189         bool
190         default y
191
192 config ARCH_MAY_HAVE_PC_FDC
193         bool
194         default y
195
196 config ARCH_HAS_ILOG2_U32
197         bool
198         default n
199
200 config ARCH_HAS_ILOG2_U64
201         bool
202         default n
203
204 config EMULATED_CMPXCHG
205         bool
206         default y
207         help
208           Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
209           is emulated, and therefore it is not completely atomic.
210
211 config SUN_PM
212         bool
213         default y
214         help
215           Enable power management and CPU standby features on supported
216           SPARC platforms.
217
218 config PCI
219         bool "Support for PCI and PS/2 keyboard/mouse"
220         help
221           CONFIG_PCI is needed for all JavaStation's (including MrCoffee),
222           CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC.
223           All of these platforms are extremely obscure, so say N if unsure.
224
225 config PCI_SYSCALL
226         def_bool PCI
227
228 source "drivers/pci/Kconfig"
229
230 config SUN_OPENPROMFS
231         tristate "Openprom tree appears in /proc/openprom"
232         help
233           If you say Y, the OpenPROM device tree will be available as a
234           virtual file system, which you can mount to /proc/openprom by "mount
235           -t openpromfs none /proc/openprom".
236
237           To compile the /proc/openprom support as a module, choose M here: the
238           module will be called openpromfs.
239
240           Only choose N if you know in advance that you will not need to modify
241           OpenPROM settings on the running system.
242
243 config SPARC_LED
244         tristate "Sun4m LED driver"
245         help
246           This driver toggles the front-panel LED on sun4m systems
247           in a user-specifiable manner.  Its state can be probed
248           by reading /proc/led and its blinking mode can be changed
249           via writes to /proc/led
250
251 source "fs/Kconfig.binfmt"
252
253 source "mm/Kconfig"
254
255 endmenu
256
257 source "net/Kconfig"
258
259 source "drivers/Kconfig"
260
261 source "drivers/sbus/char/Kconfig"
262
263 source "fs/Kconfig"
264
265 source "arch/sparc/Kconfig.debug"
266
267 source "security/Kconfig"
268
269 source "crypto/Kconfig"
270
271 source "lib/Kconfig"