irq_work: Remove CONFIG_HAVE_IRQ_WORK
[sfrench/cifs-2.6.git] / arch / sparc / Kconfig
1 config 64BIT
2         bool "64-bit kernel" if ARCH = "sparc"
3         default ARCH = "sparc64"
4         help
5           SPARC is a family of RISC microprocessors designed and marketed by
6           Sun Microsystems, incorporated.  They are very widely found in Sun
7           workstations and clones.
8
9           Say yes to build a 64-bit kernel - formerly known as sparc64
10           Say no to build a 32-bit kernel - formerly known as sparc
11
12 config SPARC
13         bool
14         default y
15         select OF
16         select OF_PROMTREE
17         select HAVE_IDE
18         select HAVE_OPROFILE
19         select HAVE_ARCH_KGDB if !SMP || SPARC64
20         select HAVE_ARCH_TRACEHOOK
21         select SYSCTL_EXCEPTION_TRACE
22         select ARCH_WANT_OPTIONAL_GPIOLIB
23         select RTC_CLASS
24         select RTC_DRV_M48T59
25         select HAVE_DMA_ATTRS
26         select HAVE_DMA_API_DEBUG
27         select HAVE_ARCH_JUMP_LABEL
28         select HAVE_GENERIC_HARDIRQS
29         select GENERIC_IRQ_SHOW
30         select ARCH_WANT_IPC_PARSE_VERSION
31         select USE_GENERIC_SMP_HELPERS if SMP
32         select GENERIC_PCI_IOMAP
33         select HAVE_NMI_WATCHDOG if SPARC64
34         select HAVE_BPF_JIT
35         select HAVE_DEBUG_BUGVERBOSE
36         select GENERIC_SMP_IDLE_THREAD
37         select GENERIC_CMOS_UPDATE
38         select GENERIC_CLOCKEVENTS
39         select GENERIC_STRNCPY_FROM_USER
40         select GENERIC_STRNLEN_USER
41         select MODULES_USE_ELF_RELA
42
43 config SPARC32
44         def_bool !64BIT
45         select GENERIC_ATOMIC64
46         select CLZ_TAB
47         select HAVE_UID16
48
49 config SPARC64
50         def_bool 64BIT
51         select ARCH_SUPPORTS_MSI
52         select HAVE_FUNCTION_TRACER
53         select HAVE_FUNCTION_GRAPH_TRACER
54         select HAVE_FUNCTION_GRAPH_FP_TEST
55         select HAVE_FUNCTION_TRACE_MCOUNT_TEST
56         select HAVE_KRETPROBES
57         select HAVE_KPROBES
58         select HAVE_RCU_TABLE_FREE if SMP
59         select HAVE_MEMBLOCK
60         select HAVE_MEMBLOCK_NODE_MAP
61         select HAVE_SYSCALL_WRAPPERS
62         select HAVE_DYNAMIC_FTRACE
63         select HAVE_FTRACE_MCOUNT_RECORD
64         select HAVE_SYSCALL_TRACEPOINTS
65         select HAVE_DEBUG_KMEMLEAK
66         select RTC_DRV_CMOS
67         select RTC_DRV_BQ4802
68         select RTC_DRV_SUN4V
69         select RTC_DRV_STARFIRE
70         select HAVE_PERF_EVENTS
71         select PERF_USE_VMALLOC
72         select IRQ_PREFLOW_FASTEOI
73         select ARCH_HAVE_NMI_SAFE_CMPXCHG
74         select HAVE_C_RECORDMCOUNT
75         select NO_BOOTMEM
76
77 config ARCH_DEFCONFIG
78         string
79         default "arch/sparc/configs/sparc32_defconfig" if SPARC32
80         default "arch/sparc/configs/sparc64_defconfig" if SPARC64
81
82 # CONFIG_BITS can be used at source level to get 32/64 bits
83 config BITS
84         int
85         default 32 if SPARC32
86         default 64 if SPARC64
87
88 config IOMMU_HELPER
89         bool
90         default y if SPARC64
91
92 config STACKTRACE_SUPPORT
93         bool
94         default y if SPARC64
95
96 config LOCKDEP_SUPPORT
97         bool
98         default y if SPARC64
99
100 config HAVE_LATENCYTOP_SUPPORT
101         bool
102         default y if SPARC64
103
104 config AUDIT_ARCH
105         bool
106         default y
107
108 config HAVE_SETUP_PER_CPU_AREA
109         def_bool y if SPARC64
110
111 config NEED_PER_CPU_EMBED_FIRST_CHUNK
112         def_bool y if SPARC64
113
114 config NEED_PER_CPU_PAGE_FIRST_CHUNK
115         def_bool y if SPARC64
116
117 config MMU
118         bool
119         default y
120
121 config HIGHMEM
122         bool
123         default y if SPARC32
124
125 config ZONE_DMA
126         bool
127         default y if SPARC32
128
129 config NEED_DMA_MAP_STATE
130         def_bool y
131
132 config NEED_SG_DMA_LENGTH
133         def_bool y
134
135 config GENERIC_ISA_DMA
136         bool
137         default y if SPARC32
138
139 config GENERIC_GPIO
140         bool
141         help
142           Generic GPIO API support
143
144 config ARCH_NO_VIRT_TO_BUS
145         def_bool y
146
147 config ARCH_SUPPORTS_DEBUG_PAGEALLOC
148         def_bool y if SPARC64
149
150 source "init/Kconfig"
151
152 source "kernel/Kconfig.freezer"
153
154 menu "Processor type and features"
155
156 config SMP
157         bool "Symmetric multi-processing support"
158         ---help---
159           This enables support for systems with more than one CPU. If you have
160           a system with only one CPU, say N. If you have a system with more
161           than one CPU, say Y.
162
163           If you say N here, the kernel will run on single and multiprocessor
164           machines, but will use only one CPU of a multiprocessor machine. If
165           you say Y here, the kernel will run on many, but not all,
166           singleprocessor machines. On a singleprocessor machine, the kernel
167           will run faster if you say N here.
168
169           People using multiprocessor machines who say Y here should also say
170           Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
171           Management" code will be disabled if you say Y here.
172
173           See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
174           available at <http://www.tldp.org/docs.html#howto>.
175
176           If you don't know what to do here, say N.
177
178 config NR_CPUS
179         int "Maximum number of CPUs"
180         depends on SMP
181         range 2 32 if SPARC32
182         range 2 1024 if SPARC64
183         default 32 if SPARC32
184         default 64 if SPARC64
185
186 source kernel/Kconfig.hz
187
188 config RWSEM_GENERIC_SPINLOCK
189         bool
190         default y if SPARC32
191
192 config RWSEM_XCHGADD_ALGORITHM
193         bool
194         default y if SPARC64
195
196 config GENERIC_HWEIGHT
197         bool
198         default y if !ULTRA_HAS_POPULATION_COUNT
199
200 config GENERIC_CALIBRATE_DELAY
201         bool
202         default y
203
204 config ARCH_MAY_HAVE_PC_FDC
205         bool
206         default y
207
208 config EMULATED_CMPXCHG
209         bool
210         default y if SPARC32
211         help
212           Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
213           is emulated, and therefore it is not completely atomic.
214
215 # Makefile helpers
216 config SPARC32_SMP
217         bool
218         default y
219         depends on SPARC32 && SMP
220
221 config SPARC64_SMP
222         bool
223         default y
224         depends on SPARC64 && SMP
225
226 config EARLYFB
227         bool "Support for early boot text console"
228         default y
229         depends on SPARC64
230         help
231           Say Y here to enable a faster early framebuffer boot console.
232
233 config SECCOMP
234         bool "Enable seccomp to safely compute untrusted bytecode"
235         depends on SPARC64 && PROC_FS
236         default y
237         help
238           This kernel feature is useful for number crunching applications
239           that may need to compute untrusted bytecode during their
240           execution. By using pipes or other transports made available to
241           the process as file descriptors supporting the read/write
242           syscalls, it's possible to isolate those applications in
243           their own address space using seccomp. Once seccomp is
244           enabled via /proc/<pid>/seccomp, it cannot be disabled
245           and the task is only allowed to execute a few safe syscalls
246           defined by each seccomp mode.
247
248           If unsure, say Y. Only embedded should say N here.
249
250 config HOTPLUG_CPU
251         bool "Support for hot-pluggable CPUs"
252         depends on SPARC64 && SMP
253         select HOTPLUG
254         help
255           Say Y here to experiment with turning CPUs off and on.  CPUs
256           can be controlled through /sys/devices/system/cpu/cpu#.
257           Say N if you want to disable CPU hotplug.
258
259 if SPARC64
260 source "drivers/cpufreq/Kconfig"
261
262 config US3_FREQ
263         tristate "UltraSPARC-III CPU Frequency driver"
264         depends on CPU_FREQ
265         select CPU_FREQ_TABLE
266         help
267           This adds the CPUFreq driver for UltraSPARC-III processors.
268
269           For details, take a look at <file:Documentation/cpu-freq>.
270
271           If in doubt, say N.
272
273 config US2E_FREQ
274         tristate "UltraSPARC-IIe CPU Frequency driver"
275         depends on CPU_FREQ
276         select CPU_FREQ_TABLE
277         help
278           This adds the CPUFreq driver for UltraSPARC-IIe processors.
279
280           For details, take a look at <file:Documentation/cpu-freq>.
281
282           If in doubt, say N.
283
284 endif
285
286 config US3_MC
287         tristate "UltraSPARC-III Memory Controller driver"
288         depends on SPARC64
289         default y
290         help
291           This adds a driver for the UltraSPARC-III memory controller.
292           Loading this driver allows exact mnemonic strings to be
293           printed in the event of a memory error, so that the faulty DIMM
294           on the motherboard can be matched to the error.
295
296           If in doubt, say Y, as this information can be very useful.
297
298 # Global things across all Sun machines.
299 config GENERIC_LOCKBREAK
300         bool
301         default y
302         depends on SPARC64 && SMP && PREEMPT
303
304 config NUMA
305         bool "NUMA support"
306         depends on SPARC64 && SMP
307
308 config NODES_SHIFT
309         int
310         default "4"
311         depends on NEED_MULTIPLE_NODES
312
313 # Some NUMA nodes have memory ranges that span
314 # other nodes.  Even though a pfn is valid and
315 # between a node's start and end pfns, it may not
316 # reside on that node.  See memmap_init_zone()
317 # for details.
318 config NODES_SPAN_OTHER_NODES
319         def_bool y
320         depends on NEED_MULTIPLE_NODES
321
322 config ARCH_SELECT_MEMORY_MODEL
323         def_bool y if SPARC64
324
325 config ARCH_SPARSEMEM_ENABLE
326         def_bool y if SPARC64
327         select SPARSEMEM_VMEMMAP_ENABLE
328
329 config ARCH_SPARSEMEM_DEFAULT
330         def_bool y if SPARC64
331
332 source "mm/Kconfig"
333
334 config SCHED_SMT
335         bool "SMT (Hyperthreading) scheduler support"
336         depends on SPARC64 && SMP
337         default y
338         help
339           SMT scheduler support improves the CPU scheduler's decision making
340           when dealing with SPARC cpus at a cost of slightly increased overhead
341           in some places. If unsure say N here.
342
343 config SCHED_MC
344         bool "Multi-core scheduler support"
345         depends on SPARC64 && SMP
346         default y
347         help
348           Multi-core scheduler support improves the CPU scheduler's decision
349           making when dealing with multi-core CPU chips at a cost of slightly
350           increased overhead in some places. If unsure say N here.
351
352 source "kernel/Kconfig.preempt"
353
354 config CMDLINE_BOOL
355         bool "Default bootloader kernel arguments"
356         depends on SPARC64
357
358 config CMDLINE
359         string "Initial kernel command string"
360         depends on CMDLINE_BOOL
361         default "console=ttyS0,9600 root=/dev/sda1"
362         help
363           Say Y here if you want to be able to pass default arguments to
364           the kernel. This will be overridden by the bootloader, if you
365           use one (such as SILO). This is most useful if you want to boot
366           a kernel from TFTP, and want default options to be available
367           with having them passed on the command line.
368
369           NOTE: This option WILL override the PROM bootargs setting!
370
371 config SUN_PM
372         bool
373         default y if SPARC32
374         help
375           Enable power management and CPU standby features on supported
376           SPARC platforms.
377
378 config SPARC_LED
379         tristate "Sun4m LED driver"
380         depends on SPARC32
381         help
382           This driver toggles the front-panel LED on sun4m systems
383           in a user-specifiable manner.  Its state can be probed
384           by reading /proc/led and its blinking mode can be changed
385           via writes to /proc/led
386
387 config SERIAL_CONSOLE
388         bool
389         depends on SPARC32
390         default y
391         ---help---
392           If you say Y here, it will be possible to use a serial port as the
393           system console (the system console is the device which receives all
394           kernel messages and warnings and which allows logins in single user
395           mode). This could be useful if some terminal or printer is connected
396           to that serial port.
397
398           Even if you say Y here, the currently visible virtual console
399           (/dev/tty0) will still be used as the system console by default, but
400           you can alter that using a kernel command line option such as
401           "console=ttyS1". (Try "man bootparam" or see the documentation of
402           your boot loader (silo) about how to pass options to the kernel at
403           boot time.)
404
405           If you don't have a graphics card installed and you say Y here, the
406           kernel will automatically use the first serial line, /dev/ttyS0, as
407           system console.
408
409           If unsure, say N.
410
411 config SPARC_LEON
412         bool "Sparc Leon processor family"
413         depends on SPARC32
414         ---help---
415           If you say Y here if you are running on a SPARC-LEON processor.
416           The LEON processor is a synthesizable VHDL model of the
417           SPARC-v8 standard. LEON is  part of the GRLIB collection of
418           IP cores that are distributed under GPL. GRLIB can be downloaded
419           from www.gaisler.com. You can download a sparc-linux cross-compilation
420           toolchain at www.gaisler.com.
421
422 if SPARC_LEON
423 menu "U-Boot options"
424
425 config UBOOT_LOAD_ADDR
426         hex "uImage Load Address"
427         default 0x40004000
428         ---help---
429          U-Boot kernel load address, the address in physical address space
430          where u-boot will place the Linux kernel before booting it.
431          This address is normally the base address of main memory + 0x4000.
432
433 config UBOOT_FLASH_ADDR
434         hex "uImage.o Load Address"
435         default 0x00080000
436         ---help---
437          Optional setting only affecting the uImage.o ELF-image used to
438          download the uImage file to the target using a ELF-loader other than
439          U-Boot. It may for example be used to download an uImage to FLASH with
440          the GRMON utility before even starting u-boot.
441
442 config UBOOT_ENTRY_ADDR
443         hex "uImage Entry Address"
444         default 0xf0004000
445         ---help---
446          Do not change this unless you know what you're doing. This is
447          hardcoded by the SPARC32 and LEON port.
448
449          This is the virtual address u-boot jumps to when booting the Linux
450          Kernel.
451
452 endmenu
453 endif
454
455 endmenu
456
457 menu "Bus options (PCI etc.)"
458 config SBUS
459         bool
460         default y
461
462 config SBUSCHAR
463         bool
464         default y
465
466 config SUN_LDOMS
467         bool "Sun Logical Domains support"
468         depends on SPARC64
469         help
470           Say Y here is you want to support virtual devices via
471           Logical Domains.
472
473 config PCI
474         bool "Support for PCI and PS/2 keyboard/mouse"
475         help
476           Find out whether your system includes a PCI bus. PCI is the name of
477           a bus system, i.e. the way the CPU talks to the other stuff inside
478           your box.  If you say Y here, the kernel will include drivers and
479           infrastructure code to support PCI bus devices.
480
481           CONFIG_PCI is needed for all JavaStation's (including MrCoffee),
482           CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC.
483           All of these platforms are extremely obscure, so say N if unsure.
484
485 config PCI_DOMAINS
486         def_bool PCI if SPARC64
487
488 config PCI_SYSCALL
489         def_bool PCI
490
491 config PCIC_PCI
492         bool
493         depends on PCI && SPARC32 && !SPARC_LEON
494         default y
495
496 config LEON_PCI
497         bool
498         depends on PCI && SPARC_LEON
499         default y
500
501 config GRPCI2
502         bool "GRPCI2 Host Bridge Support"
503         depends on LEON_PCI
504         default y
505         help
506           Say Y here to include the GRPCI2 Host Bridge Driver.
507
508 source "drivers/pci/Kconfig"
509
510 source "drivers/pcmcia/Kconfig"
511
512 config SUN_OPENPROMFS
513         tristate "Openprom tree appears in /proc/openprom"
514         help
515           If you say Y, the OpenPROM device tree will be available as a
516           virtual file system, which you can mount to /proc/openprom by "mount
517           -t openpromfs none /proc/openprom".
518
519           To compile the /proc/openprom support as a module, choose M here: the
520           module will be called openpromfs.
521
522           Only choose N if you know in advance that you will not need to modify
523           OpenPROM settings on the running system.
524
525 # Makefile helper
526 config SPARC64_PCI
527         bool
528         default y
529         depends on SPARC64 && PCI
530
531 endmenu
532
533 menu "Executable file formats"
534
535 source "fs/Kconfig.binfmt"
536
537 config COMPAT
538         bool
539         depends on SPARC64
540         default y
541         select COMPAT_BINFMT_ELF
542         select HAVE_UID16
543         select ARCH_WANT_OLD_COMPAT_IPC
544
545 config SYSVIPC_COMPAT
546         bool
547         depends on COMPAT && SYSVIPC
548         default y
549
550 config KEYS_COMPAT
551         def_bool y if COMPAT && KEYS
552
553 endmenu
554
555 source "net/Kconfig"
556
557 source "drivers/Kconfig"
558
559 source "drivers/sbus/char/Kconfig"
560
561 source "fs/Kconfig"
562
563 source "arch/sparc/Kconfig.debug"
564
565 source "security/Kconfig"
566
567 source "crypto/Kconfig"
568
569 source "lib/Kconfig"