ata: fix sparse warning in libata-core.c
[linux-2.6/cjktty.git] / arch / powerpc / Kconfig
blob485513c9f1af4c4f4f0aa91ad6d29f0ccb363c1c
1 # For a description of the syntax of this configuration file,
2 # see Documentation/kbuild/kconfig-language.txt.
5 mainmenu "Linux/PowerPC Kernel Configuration"
7 source "arch/powerpc/platforms/Kconfig.cputype"
9 config PPC32
10         bool
11         default y if !PPC64
13 config 64BIT
14         bool
15         default y if PPC64
17 config WORD_SIZE
18         int
19         default 64 if PPC64
20         default 32 if !PPC64
22 config PPC_MERGE
23         def_bool y
25 config MMU
26         bool
27         default y
29 config GENERIC_CMOS_UPDATE
30         def_bool y
32 config GENERIC_TIME
33         def_bool y
35 config GENERIC_TIME_VSYSCALL
36         def_bool y
38 config GENERIC_CLOCKEVENTS
39         def_bool y
41 config GENERIC_HARDIRQS
42         bool
43         default y
45 config HAVE_SETUP_PER_CPU_AREA
46         def_bool PPC64
48 config IRQ_PER_CPU
49         bool
50         default y
52 config RWSEM_GENERIC_SPINLOCK
53         bool
55 config RWSEM_XCHGADD_ALGORITHM
56         bool
57         default y
59 config GENERIC_LOCKBREAK
60         bool
61         default y
62         depends on SMP && PREEMPT
64 config ARCH_HAS_ILOG2_U32
65         bool
66         default y
68 config ARCH_HAS_ILOG2_U64
69         bool
70         default y if 64BIT
72 config GENERIC_HWEIGHT
73         bool
74         default y
76 config GENERIC_CALIBRATE_DELAY
77         bool
78         default y
80 config GENERIC_FIND_NEXT_BIT
81         bool
82         default y
84 config ARCH_NO_VIRT_TO_BUS
85         def_bool PPC64
87 config PPC
88         bool
89         default y
90         select HAVE_IDE
91         select HAVE_OPROFILE
92         select HAVE_KPROBES
94 config EARLY_PRINTK
95         bool
96         default y
98 config COMPAT
99         bool
100         default y if PPC64
101         select COMPAT_BINFMT_ELF
103 config SYSVIPC_COMPAT
104         bool
105         depends on COMPAT && SYSVIPC
106         default y
108 # All PPC32s use generic nvram driver through ppc_md
109 config GENERIC_NVRAM
110         bool
111         default y if PPC32
113 config SCHED_NO_NO_OMIT_FRAME_POINTER
114         bool
115         default y
117 config ARCH_MAY_HAVE_PC_FDC
118         bool
119         default !PPC_PSERIES || PCI
121 config PPC_OF
122         def_bool y
124 config OF
125         def_bool y
127 config PPC_UDBG_16550
128         bool
129         default n
131 config GENERIC_TBSYNC
132         bool
133         default y if PPC32 && SMP
134         default n
136 config AUDIT_ARCH
137         bool
138         default y
140 config GENERIC_BUG
141         bool
142         default y
143         depends on BUG
145 config SYS_SUPPORTS_APM_EMULATION
146         default y if PMAC_APM_EMU
147         bool
149 config DEFAULT_UIMAGE
150         bool
151         help
152           Used to allow a board to specify it wants a uImage built by default
153         default n
155 config REDBOOT
156         bool
158 config HIBERNATE_32
159         bool
160         depends on (PPC_PMAC && !SMP) || BROKEN
161         default y
163 config HIBERNATE_64
164         bool
165         depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL)
166         default y
168 config ARCH_HIBERNATION_POSSIBLE
169         bool
170         depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32)
171         default y
173 config ARCH_SUSPEND_POSSIBLE
174         def_bool y
175         depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200
177 config PPC_DCR_NATIVE
178         bool
179         default n
181 config PPC_DCR_MMIO
182         bool
183         default n
185 config PPC_DCR
186         bool
187         depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
188         default y
190 config PPC_OF_PLATFORM_PCI
191         bool
192         depends on PCI
193         depends on PPC64 # not supported on 32 bits yet
194         default n
196 source "init/Kconfig"
198 source "arch/powerpc/sysdev/Kconfig"
199 source "arch/powerpc/platforms/Kconfig"
201 menu "Kernel options"
203 config HIGHMEM
204         bool "High memory support"
205         depends on PPC32
207 source kernel/time/Kconfig
208 source kernel/Kconfig.hz
209 source kernel/Kconfig.preempt
210 source "fs/Kconfig.binfmt"
212 # We optimistically allocate largepages from the VM, so make the limit
213 # large enough (16MB). This badly named config option is actually
214 # max order + 1
215 config FORCE_MAX_ZONEORDER
216         int
217         depends on PPC64
218         default "9" if PPC_64K_PAGES
219         default "13"
221 config HUGETLB_PAGE_SIZE_VARIABLE
222         bool
223         depends on HUGETLB_PAGE
224         default y
226 config MATH_EMULATION
227         bool "Math emulation"
228         depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
229         ---help---
230           Some PowerPC chips designed for embedded applications do not have
231           a floating-point unit and therefore do not implement the
232           floating-point instructions in the PowerPC instruction set.  If you
233           say Y here, the kernel will include code to emulate a floating-point
234           unit, which will allow programs that use floating-point
235           instructions to run.
237 config 8XX_MINIMAL_FPEMU
238         bool "Minimal math emulation for 8xx"
239         depends on 8xx && !MATH_EMULATION
240         help
241           Older arch/ppc kernels still emulated a few floating point
242           instructions such as load and store, even when full math
243           emulation is disabled.  Say "Y" here if you want to preserve
244           this behavior.
246           It is recommended that you build a soft-float userspace instead.
248 config IOMMU_VMERGE
249         bool "Enable IOMMU virtual merging"
250         depends on PPC64
251         default y
252         help
253           Cause IO segments sent to a device for DMA to be merged virtually
254           by the IOMMU when they happen to have been allocated contiguously.
255           This doesn't add pressure to the IOMMU allocator. However, some
256           drivers don't support getting large merged segments coming back
257           from *_map_sg().
259           Most drivers don't have this problem; it is safe to say Y here.
261 config IOMMU_HELPER
262         def_bool PPC64
264 config HOTPLUG_CPU
265         bool "Support for enabling/disabling CPUs"
266         depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
267         ---help---
268           Say Y here to be able to disable and re-enable individual
269           CPUs at runtime on SMP machines.
271           Say N if you are unsure.
273 config ARCH_ENABLE_MEMORY_HOTPLUG
274         def_bool y
276 config ARCH_HAS_WALK_MEMORY
277         def_bool y
279 config ARCH_ENABLE_MEMORY_HOTREMOVE
280         def_bool y
282 config KEXEC
283         bool "kexec system call (EXPERIMENTAL)"
284         depends on (PPC_PRPMC2800 || PPC_MULTIPLATFORM) && EXPERIMENTAL
285         help
286           kexec is a system call that implements the ability to shutdown your
287           current kernel, and to start another kernel.  It is like a reboot
288           but it is independent of the system firmware.   And like a reboot
289           you can start any kernel with it, not just Linux.
291           The name comes from the similarity to the exec system call.
293           It is an ongoing process to be certain the hardware in a machine
294           is properly shutdown, so do not be surprised if this code does not
295           initially work for you.  It may help to enable device hotplugging
296           support.  As of this writing the exact hardware interface is
297           strongly in flux, so no good recommendation can be made.
299 config CRASH_DUMP
300         bool "Build a kdump crash kernel (EXPERIMENTAL)"
301         depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
302         help
303           Build a kernel suitable for use as a kdump capture kernel.
304           The kernel will be linked at a different address than normal, and
305           so can only be used for Kdump.
307           Don't change this unless you know what you are doing.
309 config PPCBUG_NVRAM
310         bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
311         default y if PPC_PREP
313 config IRQ_ALL_CPUS
314         bool "Distribute interrupts on all CPUs by default"
315         depends on SMP && !MV64360
316         help
317           This option gives the kernel permission to distribute IRQs across
318           multiple CPUs.  Saying N here will route all IRQs to the first
319           CPU.  Generally saying Y is safe, although some problems have been
320           reported with SMP Power Macintoshes with this option enabled.
322 config NUMA
323         bool "NUMA support"
324         depends on PPC64
325         default y if SMP && PPC_PSERIES
327 config NODES_SHIFT
328         int
329         default "4"
330         depends on NEED_MULTIPLE_NODES
332 config ARCH_SELECT_MEMORY_MODEL
333         def_bool y
334         depends on PPC64
336 config ARCH_FLATMEM_ENABLE
337         def_bool y
338         depends on (PPC64 && !NUMA) || PPC32
340 config ARCH_SPARSEMEM_ENABLE
341         def_bool y
342         depends on PPC64
343         select SPARSEMEM_VMEMMAP_ENABLE
345 config ARCH_SPARSEMEM_DEFAULT
346         def_bool y
347         depends on (SMP && PPC_PSERIES) || PPC_PS3
349 config ARCH_POPULATES_NODE_MAP
350         def_bool y
352 source "mm/Kconfig"
354 config ARCH_MEMORY_PROBE
355         def_bool y
356         depends on MEMORY_HOTPLUG
358 # Some NUMA nodes have memory ranges that span
359 # other nodes.  Even though a pfn is valid and
360 # between a node's start and end pfns, it may not
361 # reside on that node.  See memmap_init_zone()
362 # for details.
363 config NODES_SPAN_OTHER_NODES
364         def_bool y
365         depends on NEED_MULTIPLE_NODES
367 config PPC_HAS_HASH_64K
368         bool
369         depends on PPC64
370         default n
372 config PPC_64K_PAGES
373         bool "64k page size"
374         depends on PPC64
375         select PPC_HAS_HASH_64K
376         help
377           This option changes the kernel logical page size to 64k. On machines
378           without processor support for 64k pages, the kernel will simulate
379           them by loading each individual 4k page on demand transparently,
380           while on hardware with such support, it will be used to map
381           normal application pages.
383 config PPC_SUBPAGE_PROT
384         bool "Support setting protections for 4k subpages"
385         depends on PPC_64K_PAGES
386         help
387           This option adds support for a system call to allow user programs
388           to set access permissions (read/write, readonly, or no access)
389           on the 4k subpages of each 64k page.
391 config SCHED_SMT
392         bool "SMT (Hyperthreading) scheduler support"
393         depends on PPC64 && SMP
394         help
395           SMT scheduler support improves the CPU scheduler's decision making
396           when dealing with POWER5 cpus at a cost of slightly increased
397           overhead in some places. If unsure say N here.
399 config PROC_DEVICETREE
400         bool "Support for device tree in /proc"
401         depends on PROC_FS
402         help
403           This option adds a device-tree directory under /proc which contains
404           an image of the device tree that the kernel copies from Open
405           Firmware or other boot firmware. If unsure, say Y here.
407 config CMDLINE_BOOL
408         bool "Default bootloader kernel arguments"
410 config CMDLINE
411         string "Initial kernel command string"
412         depends on CMDLINE_BOOL
413         default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
414         help
415           On some platforms, there is currently no way for the boot loader to
416           pass arguments to the kernel. For these platforms, you can supply
417           some command-line options at build time by entering them here.  In
418           most cases you will need to specify the root device here.
420 if !44x || BROKEN
421 config ARCH_WANTS_FREEZER_CONTROL
422         def_bool y
423         depends on ADB_PMU
425 source kernel/power/Kconfig
426 endif
428 config SECCOMP
429         bool "Enable seccomp to safely compute untrusted bytecode"
430         depends on PROC_FS
431         default y
432         help
433           This kernel feature is useful for number crunching applications
434           that may need to compute untrusted bytecode during their
435           execution. By using pipes or other transports made available to
436           the process as file descriptors supporting the read/write
437           syscalls, it's possible to isolate those applications in
438           their own address space using seccomp. Once seccomp is
439           enabled via /proc/<pid>/seccomp, it cannot be disabled
440           and the task is only allowed to execute a few safe syscalls
441           defined by each seccomp mode.
443           If unsure, say Y. Only embedded should say N here.
445 config WANT_DEVICE_TREE
446         bool
447         default n
449 endmenu
451 config ISA_DMA_API
452         bool
453         default !PPC_ISERIES || PCI
455 menu "Bus options"
457 config ISA
458         bool "Support for ISA-bus hardware"
459         depends on PPC_PREP || PPC_CHRP
460         select PPC_I8259
461         help
462           Find out whether you have ISA slots on your motherboard.  ISA is the
463           name of a bus system, i.e. the way the CPU talks to the other stuff
464           inside your box.  If you have an Apple machine, say N here; if you
465           have an IBM RS/6000 or pSeries machine or a PReP machine, say Y.  If
466           you have an embedded board, consult your board documentation.
468 config ZONE_DMA
469         bool
470         default y
472 config GENERIC_ISA_DMA
473         bool
474         depends on PPC64 || POWER4 || 6xx && !CPM2
475         default y
477 config PPC_INDIRECT_PCI
478         bool
479         depends on PCI
480         default y if 40x || 44x
481         default n
483 config EISA
484         bool
486 config SBUS
487         bool
489 config FSL_SOC
490         bool
492 config FSL_PCI
493         bool
494         select PPC_INDIRECT_PCI
496 # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
497 config MCA
498         bool
500 config PCI
501         bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx \
502                 || PPC_MPC52xx || (EMBEDDED && (PPC_PSERIES || PPC_ISERIES)) \
503                 || PPC_PS3 || 44x
504         default y if !40x && !CPM2 && !8xx && !PPC_MPC512x && !PPC_83xx \
505                 && !PPC_85xx && !PPC_86xx
506         default PCI_PERMEDIA if !4xx && !CPM2 && !8xx
507         default PCI_QSPAN if !4xx && !CPM2 && 8xx
508         select ARCH_SUPPORTS_MSI
509         help
510           Find out whether your system includes a PCI bus. PCI is the name of
511           a bus system, i.e. the way the CPU talks to the other stuff inside
512           your box.  If you say Y here, the kernel will include drivers and
513           infrastructure code to support PCI bus devices.
515 config PCI_DOMAINS
516         def_bool PCI
518 config PCI_SYSCALL
519         def_bool PCI
521 config PCI_QSPAN
522         bool "QSpan PCI"
523         depends on !4xx && !CPM2 && 8xx
524         select PPC_I8259
525         help
526           Say Y here if you have a system based on a Motorola 8xx-series
527           embedded processor with a QSPAN PCI interface, otherwise say N.
529 config PCI_8260
530         bool
531         depends on PCI && 8260
532         select PPC_INDIRECT_PCI
533         default y
535 config 8260_PCI9
536         bool "Enable workaround for MPC826x erratum PCI 9"
537         depends on PCI_8260 && !8272
538         default y
540 choice
541         prompt "IDMA channel for PCI 9 workaround"
542         depends on 8260_PCI9
544 config 8260_PCI9_IDMA1
545         bool "IDMA1"
547 config 8260_PCI9_IDMA2
548         bool "IDMA2"
550 config 8260_PCI9_IDMA3
551         bool "IDMA3"
553 config 8260_PCI9_IDMA4
554         bool "IDMA4"
556 endchoice
558 source "drivers/pci/pcie/Kconfig"
560 source "drivers/pci/Kconfig"
562 source "drivers/pcmcia/Kconfig"
564 source "drivers/pci/hotplug/Kconfig"
566 endmenu
568 menu "Advanced setup"
569         depends on PPC32
571 config ADVANCED_OPTIONS
572         bool "Prompt for advanced kernel configuration options"
573         help
574           This option will enable prompting for a variety of advanced kernel
575           configuration options.  These options can cause the kernel to not
576           work if they are set incorrectly, but can be used to optimize certain
577           aspects of kernel memory management.
579           Unless you know what you are doing, say N here.
581 comment "Default settings for advanced configuration options are used"
582         depends on !ADVANCED_OPTIONS
584 config HIGHMEM_START_BOOL
585         bool "Set high memory pool address"
586         depends on ADVANCED_OPTIONS && HIGHMEM
587         help
588           This option allows you to set the base address of the kernel virtual
589           area used to map high memory pages.  This can be useful in
590           optimizing the layout of kernel virtual memory.
592           Say N here unless you know what you are doing.
594 config HIGHMEM_START
595         hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
596         default "0xfe000000"
598 config LOWMEM_SIZE_BOOL
599         bool "Set maximum low memory"
600         depends on ADVANCED_OPTIONS
601         help
602           This option allows you to set the maximum amount of memory which
603           will be used as "low memory", that is, memory which the kernel can
604           access directly, without having to set up a kernel virtual mapping.
605           This can be useful in optimizing the layout of kernel virtual
606           memory.
608           Say N here unless you know what you are doing.
610 config LOWMEM_SIZE
611         hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
612         default "0x30000000"
614 config KERNEL_START_BOOL
615         bool "Set custom kernel base address"
616         depends on ADVANCED_OPTIONS
617         help
618           This option allows you to set the kernel virtual address at which
619           the kernel will map low memory (the kernel image will be linked at
620           this address).  This can be useful in optimizing the virtual memory
621           layout of the system.
623           Say N here unless you know what you are doing.
625 config KERNEL_START
626         hex "Virtual address of kernel base" if KERNEL_START_BOOL
627         default "0xc0000000"
629 config TASK_SIZE_BOOL
630         bool "Set custom user task size"
631         depends on ADVANCED_OPTIONS
632         help
633           This option allows you to set the amount of virtual address space
634           allocated to user tasks.  This can be useful in optimizing the
635           virtual memory layout of the system.
637           Say N here unless you know what you are doing.
639 config TASK_SIZE
640         hex "Size of user task space" if TASK_SIZE_BOOL
641         default "0x80000000" if PPC_PREP || PPC_8xx
642         default "0xc0000000"
644 config CONSISTENT_START_BOOL
645         bool "Set custom consistent memory pool address"
646         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
647         help
648           This option allows you to set the base virtual address
649           of the consistent memory pool.  This pool of virtual
650           memory is used to make consistent memory allocations.
652 config CONSISTENT_START
653         hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
654         default "0xfd000000" if (NOT_COHERENT_CACHE && 8xx)
655         default "0xff100000" if NOT_COHERENT_CACHE
657 config CONSISTENT_SIZE_BOOL
658         bool "Set custom consistent memory pool size"
659         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
660         help
661           This option allows you to set the size of the
662           consistent memory pool.  This pool of virtual memory
663           is used to make consistent memory allocations.
665 config CONSISTENT_SIZE
666         hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
667         default "0x00200000" if NOT_COHERENT_CACHE
669 config BOOT_LOAD_BOOL
670         bool "Set the boot link/load address"
671         depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
672         help
673           This option allows you to set the initial load address of the zImage
674           or zImage.initrd file.  This can be useful if you are on a board
675           which has a small amount of memory.
677           Say N here unless you know what you are doing.
679 config BOOT_LOAD
680         hex "Link/load address for booting" if BOOT_LOAD_BOOL
681         default "0x00400000" if 40x || 8xx || 8260
682         default "0x01000000" if 44x
683         default "0x00800000"
685 config PIN_TLB
686         bool "Pinned Kernel TLBs (860 ONLY)"
687         depends on ADVANCED_OPTIONS && 8xx
688 endmenu
690 if PPC64
691 config KERNEL_START
692         hex
693         default "0xc000000000000000"
694 endif
696 source "net/Kconfig"
698 source "drivers/Kconfig"
700 source "fs/Kconfig"
702 # XXX source "arch/ppc/8xx_io/Kconfig"
704 # XXX source "arch/ppc/8260_io/Kconfig"
706 source "arch/powerpc/sysdev/qe_lib/Kconfig"
708 source "lib/Kconfig"
710 source "arch/powerpc/Kconfig.debug"
712 source "security/Kconfig"
714 config KEYS_COMPAT
715         bool
716         depends on COMPAT && KEYS
717         default y
719 source "crypto/Kconfig"
721 config PPC_CLOCK
722         bool
723         default n
725 config PPC_LIB_RHEAP
726         bool