Merge to Fedora kernel-2.6.17-1.2187_FC5 patched with stable patch-2.6.17.13-vs2...
[linux-2.6.git] / arch / powerpc / Kconfig
1 # For a description of the syntax of this configuration file,
2 # see Documentation/kbuild/kconfig-language.txt.
3 #
4
5 mainmenu "Linux/PowerPC Kernel Configuration"
6
7 config PPC64
8         bool "64-bit kernel"
9         default n
10         help
11           This option selects whether a 32-bit or a 64-bit kernel
12           will be built.
13
14 config PPC32
15         bool
16         default y if !PPC64
17
18 config 64BIT
19         bool
20         default y if PPC64
21
22 config PPC_MERGE
23         def_bool y
24
25 config MMU
26         bool
27         default y
28
29 config GENERIC_HARDIRQS
30         bool
31         default y
32
33 config RWSEM_GENERIC_SPINLOCK
34         bool
35
36 config RWSEM_XCHGADD_ALGORITHM
37         bool
38         default y
39
40 config GENERIC_HWEIGHT
41         bool
42         default y
43
44 config GENERIC_CALIBRATE_DELAY
45         bool
46         default y
47
48 config PPC
49         bool
50         default y
51
52 config EARLY_PRINTK
53         bool
54         default y
55
56 config COMPAT
57         bool
58         default y if PPC64
59
60 config SYSVIPC_COMPAT
61         bool
62         depends on COMPAT && SYSVIPC
63         default y
64
65 # All PPC32s use generic nvram driver through ppc_md
66 config GENERIC_NVRAM
67         bool
68         default y if PPC32
69
70 config SCHED_NO_NO_OMIT_FRAME_POINTER
71         bool
72         default y
73
74 config ARCH_MAY_HAVE_PC_FDC
75         bool
76         default y
77
78 config PPC_OF
79         def_bool y
80
81 config PPC_UDBG_16550
82         bool
83         default n
84
85 config GENERIC_TBSYNC
86         bool
87         default y if PPC32 && SMP
88         default n
89
90 config DEFAULT_UIMAGE
91         bool
92         help
93           Used to allow a board to specify it wants a uImage built by default
94         default n
95
96 menu "Processor support"
97 choice
98         prompt "Processor Type"
99         depends on PPC32
100         default 6xx
101
102 config CLASSIC32
103         bool "6xx/7xx/74xx"
104         select PPC_FPU
105         select 6xx
106         help
107           There are four families of PowerPC chips supported.  The more common
108           types (601, 603, 604, 740, 750, 7400), the Motorola embedded
109           versions (821, 823, 850, 855, 860, 52xx, 82xx, 83xx), the AMCC
110           embedded versions (403 and 405) and the high end 64 bit Power
111           processors (POWER 3, POWER4, and IBM PPC970 also known as G5).
112           
113           Unless you are building a kernel for one of the embedded processor
114           systems, 64 bit IBM RS/6000 or an Apple G5, choose 6xx.
115           Note that the kernel runs in 32-bit mode even on 64-bit chips.
116
117 config PPC_52xx
118         bool "Freescale 52xx"
119         select 6xx
120         select PPC_FPU
121         
122 config PPC_82xx
123         bool "Freescale 82xx"
124         select 6xx
125         select PPC_FPU
126
127 config PPC_83xx
128         bool "Freescale 83xx"
129         select 6xx
130         select FSL_SOC
131         select 83xx
132         select PPC_FPU
133
134 config PPC_85xx
135         bool "Freescale 85xx"
136         select E500
137         select FSL_SOC
138         select 85xx
139
140 config 40x
141         bool "AMCC 40x"
142
143 config 44x
144         bool "AMCC 44x"
145
146 config 8xx
147         bool "Freescale 8xx"
148
149 config E200
150         bool "Freescale e200"
151
152 endchoice
153
154 config POWER4_ONLY
155         bool "Optimize for POWER4"
156         depends on PPC64
157         default n
158         ---help---
159           Cause the compiler to optimize for POWER4/POWER5/PPC970 processors.
160           The resulting binary will not work on POWER3 or RS64 processors
161           when compiled with binutils 2.15 or later.
162
163 config POWER3
164         bool
165         depends on PPC64
166         default y if !POWER4_ONLY
167
168 config POWER4
169         depends on PPC64
170         def_bool y
171
172 config 6xx
173         bool
174
175 # this is temp to handle compat with arch=ppc
176 config 83xx
177         bool
178
179 # this is temp to handle compat with arch=ppc
180 config 85xx
181         bool
182
183 config E500
184         bool
185
186 config PPC_FPU
187         bool
188         default y if PPC64
189
190 config BOOKE
191         bool
192         depends on E200 || E500
193         default y
194
195 config FSL_BOOKE
196         bool
197         depends on E200 || E500
198         default y
199
200 config PTE_64BIT
201         bool
202         depends on 44x || E500
203         default y if 44x
204         default y if E500 && PHYS_64BIT
205
206 config PHYS_64BIT
207         bool 'Large physical address support' if E500
208         depends on 44x || E500
209         default y if 44x
210         ---help---
211           This option enables kernel support for larger than 32-bit physical
212           addresses.  This features is not be available on all e500 cores.
213
214           If in doubt, say N here.
215
216 config ALTIVEC
217         bool "AltiVec Support"
218         depends on CLASSIC32 || POWER4
219         ---help---
220           This option enables kernel support for the Altivec extensions to the
221           PowerPC processor. The kernel currently supports saving and restoring
222           altivec registers, and turning on the 'altivec enable' bit so user
223           processes can execute altivec instructions.
224
225           This option is only usefully if you have a processor that supports
226           altivec (G4, otherwise known as 74xx series), but does not have
227           any affect on a non-altivec cpu (it does, however add code to the
228           kernel).
229
230           If in doubt, say Y here.
231
232 config SPE
233         bool "SPE Support"
234         depends on E200 || E500
235         default y
236         ---help---
237           This option enables kernel support for the Signal Processing
238           Extensions (SPE) to the PowerPC processor. The kernel currently
239           supports saving and restoring SPE registers, and turning on the
240           'spe enable' bit so user processes can execute SPE instructions.
241
242           This option is only useful if you have a processor that supports
243           SPE (e500, otherwise known as 85xx series), but does not have any
244           effect on a non-spe cpu (it does, however add code to the kernel).
245
246           If in doubt, say Y here.
247
248 config PPC_STD_MMU
249         bool
250         depends on 6xx || POWER3 || POWER4 || PPC64
251         default y
252
253 config PPC_STD_MMU_32
254         def_bool y
255         depends on PPC_STD_MMU && PPC32
256
257 config VIRT_CPU_ACCOUNTING
258         bool "Deterministic task and CPU time accounting"
259         depends on PPC64
260         default y
261         help
262           Select this option to enable more accurate task and CPU time
263           accounting.  This is done by reading a CPU counter on each
264           kernel entry and exit and on transitions within the kernel
265           between system, softirq and hardirq state, so there is a
266           small performance impact.  This also enables accounting of
267           stolen time on logically-partitioned systems running on
268           IBM POWER5-based machines.
269
270           If in doubt, say Y here.
271
272 config SMP
273         depends on PPC_STD_MMU
274         bool "Symmetric multi-processing support"
275         ---help---
276           This enables support for systems with more than one CPU. If you have
277           a system with only one CPU, say N. If you have a system with more
278           than one CPU, say Y.  Note that the kernel does not currently
279           support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
280           since they have inadequate hardware support for multiprocessor
281           operation.
282
283           If you say N here, the kernel will run on single and multiprocessor
284           machines, but will use only one CPU of a multiprocessor machine. If
285           you say Y here, the kernel will run on single-processor machines.
286           On a single-processor machine, the kernel will run faster if you say
287           N here.
288
289           If you don't know what to do here, say N.
290
291 config NR_CPUS
292         int "Maximum number of CPUs (2-128)"
293         range 2 128
294         depends on SMP
295         default "32" if PPC64
296         default "4"
297
298 config NOT_COHERENT_CACHE
299         bool
300         depends on 4xx || 8xx || E200
301         default y
302 endmenu
303
304 source "init/Kconfig"
305
306 menu "Platform support"
307         depends on PPC64 || CLASSIC32
308
309 choice
310         prompt "Machine type"
311         default PPC_MULTIPLATFORM
312
313 config PPC_MULTIPLATFORM
314         bool "Generic desktop/server/laptop"
315         help
316           Select this option if configuring for an IBM pSeries or
317           RS/6000 machine, an Apple machine, or a PReP, CHRP,
318           Maple or Cell-based machine.
319
320 config PPC_ISERIES
321         bool "IBM Legacy iSeries"
322         depends on PPC64
323
324 config EMBEDDED6xx
325         bool "Embedded 6xx/7xx/7xxx-based board"
326         depends on PPC32 && BROKEN
327
328 config APUS
329         bool "Amiga-APUS"
330         depends on PPC32 && BROKEN
331         help
332           Select APUS if configuring for a PowerUP Amiga.
333           More information is available at:
334           <http://linux-apus.sourceforge.net/>.
335 endchoice
336
337 config PPC_PSERIES
338         depends on PPC_MULTIPLATFORM && PPC64
339         bool "  IBM pSeries & new (POWER5-based) iSeries"
340         select PPC_I8259
341         select PPC_RTAS
342         select RTAS_ERROR_LOGGING
343         select PPC_UDBG_16550
344         default y
345
346 config PPC_CHRP
347         bool "  Common Hardware Reference Platform (CHRP) based machines"
348         depends on PPC_MULTIPLATFORM && PPC32
349         select PPC_I8259
350         select PPC_INDIRECT_PCI
351         select PPC_RTAS
352         select PPC_MPC106
353         select PPC_UDBG_16550
354         default y
355
356 config PPC_PMAC
357         bool "  Apple PowerMac based machines"
358         depends on PPC_MULTIPLATFORM
359         select PPC_INDIRECT_PCI if PPC32
360         select PPC_MPC106 if PPC32
361         default y
362
363 config PPC_PMAC64
364         bool
365         depends on PPC_PMAC && POWER4
366         select U3_DART
367         select MPIC_BROKEN_U3
368         select GENERIC_TBSYNC
369         select PPC_970_NAP
370         default y
371
372 config PPC_PREP
373         bool "  PowerPC Reference Platform (PReP) based machines"
374         depends on PPC_MULTIPLATFORM && PPC32 && BROKEN
375         select PPC_I8259
376         select PPC_INDIRECT_PCI
377         select PPC_UDBG_16550
378         default y
379
380 config PPC_MAPLE
381         depends on PPC_MULTIPLATFORM && PPC64
382         bool "  Maple 970FX Evaluation Board"
383         select U3_DART
384         select MPIC_BROKEN_U3
385         select GENERIC_TBSYNC
386         select PPC_UDBG_16550
387         select PPC_970_NAP
388         default n
389         help
390           This option enables support for the Maple 970FX Evaluation Board.
391           For more informations, refer to <http://www.970eval.com>
392
393 config PPC_CELL
394         bool "  Cell Broadband Processor Architecture"
395         depends on PPC_MULTIPLATFORM && PPC64
396         select PPC_RTAS
397         select MMIO_NVRAM
398         select PPC_UDBG_16550
399
400 # Systemsim configuration
401 config MAMBO
402         bool "  IBM Full System Simulator (systemsim) support"
403         default n
404         ---help---
405            Support booting resulting image under IBMs Full System Simulator.
406 config MAMBO_DISK
407         depends on MAMBO
408         tristate "    IBM Full System Simulator Bogus Disk Support"
409         default y
410         ---help---
411            Provides quick access to disk images in the simulator without
412            simulating a full IDE or SCSI device.
413 config MAMBO_NET
414         depends on MAMBO
415         tristate "    IBM Full System Simulator Bogus Network Support"
416         default y
417         ---help---
418            Provides quick access to a raw ethernet device in the simulator
419            without simulating any specific network device hardware.
420
421 config XICS
422         depends on PPC_PSERIES
423         bool
424         default y
425
426 config U3_DART
427         bool 
428         depends on PPC_MULTIPLATFORM && PPC64
429         default n
430
431 config MPIC
432         depends on PPC_PSERIES || PPC_PMAC || PPC_MAPLE || PPC_CHRP
433         bool
434         default y
435
436 config PPC_RTAS
437         bool
438         default n
439
440 config RTAS_ERROR_LOGGING
441         bool
442         depends on PPC_RTAS
443         default n
444
445 config RTAS_PROC
446         bool "Proc interface to RTAS"
447         depends on PPC_RTAS
448         default y
449
450 config RTAS_FLASH
451         tristate "Firmware flash interface"
452         depends on PPC64 && RTAS_PROC
453
454 config MMIO_NVRAM
455         bool
456         default n
457
458 config MPIC_BROKEN_U3
459         bool
460         depends on PPC_MAPLE
461         default y
462
463 config CELL_IIC
464         depends on PPC_CELL
465         bool
466         default y
467
468 config IBMVIO
469         depends on PPC_PSERIES || PPC_ISERIES
470         bool
471         default y
472
473 config IBMEBUS
474         depends on PPC_PSERIES
475         bool "Support for GX bus based adapters"
476         help
477           Bus device driver for GX bus based adapters.
478
479 config PPC_MPC106
480         bool
481         default n
482
483 config PPC_970_NAP
484         bool
485         default n
486
487 source "drivers/cpufreq/Kconfig"
488
489 config CPU_FREQ_PMAC
490         bool "Support for Apple PowerBooks"
491         depends on CPU_FREQ && ADB_PMU && PPC32
492         select CPU_FREQ_TABLE
493         help
494           This adds support for frequency switching on Apple PowerBooks,
495           this currently includes some models of iBook & Titanium
496           PowerBook.
497
498 config CPU_FREQ_PMAC64
499         bool "Support for some Apple G5s"
500         depends on CPU_FREQ && PMAC_SMU && PPC64
501         select CPU_FREQ_TABLE
502         help
503           This adds support for frequency switching on Apple iMac G5,
504           and some of the more recent desktop G5 machines as well.
505
506 config PPC601_SYNC_FIX
507         bool "Workarounds for PPC601 bugs"
508         depends on 6xx && (PPC_PREP || PPC_PMAC)
509         help
510           Some versions of the PPC601 (the first PowerPC chip) have bugs which
511           mean that extra synchronization instructions are required near
512           certain instructions, typically those that make major changes to the
513           CPU state.  These extra instructions reduce performance slightly.
514           If you say N here, these extra instructions will not be included,
515           resulting in a kernel which will run faster but may not run at all
516           on some systems with the PPC601 chip.
517
518           If in doubt, say Y here.
519
520 config TAU
521         bool "On-chip CPU temperature sensor support"
522         depends on 6xx
523         help
524           G3 and G4 processors have an on-chip temperature sensor called the
525           'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die
526           temperature within 2-4 degrees Celsius. This option shows the current
527           on-die temperature in /proc/cpuinfo if the cpu supports it.
528
529           Unfortunately, on some chip revisions, this sensor is very inaccurate
530           and in many cases, does not work at all, so don't assume the cpu
531           temp is actually what /proc/cpuinfo says it is.
532
533 config TAU_INT
534         bool "Interrupt driven TAU driver (DANGEROUS)"
535         depends on TAU
536         ---help---
537           The TAU supports an interrupt driven mode which causes an interrupt
538           whenever the temperature goes out of range. This is the fastest way
539           to get notified the temp has exceeded a range. With this option off,
540           a timer is used to re-check the temperature periodically.
541
542           However, on some cpus it appears that the TAU interrupt hardware
543           is buggy and can cause a situation which would lead unexplained hard
544           lockups.
545
546           Unless you are extending the TAU driver, or enjoy kernel/hardware
547           debugging, leave this option off.
548
549 config TAU_AVERAGE
550         bool "Average high and low temp"
551         depends on TAU
552         ---help---
553           The TAU hardware can compare the temperature to an upper and lower
554           bound.  The default behavior is to show both the upper and lower
555           bound in /proc/cpuinfo. If the range is large, the temperature is
556           either changing a lot, or the TAU hardware is broken (likely on some
557           G4's). If the range is small (around 4 degrees), the temperature is
558           relatively stable.  If you say Y here, a single temperature value,
559           halfway between the upper and lower bounds, will be reported in
560           /proc/cpuinfo.
561
562           If in doubt, say N here.
563 endmenu
564
565 source arch/powerpc/platforms/embedded6xx/Kconfig
566 source arch/powerpc/platforms/4xx/Kconfig
567 source arch/powerpc/platforms/83xx/Kconfig
568 source arch/powerpc/platforms/85xx/Kconfig
569 source arch/powerpc/platforms/8xx/Kconfig
570 source arch/powerpc/platforms/cell/Kconfig
571
572 menu "Kernel options"
573
574 config HIGHMEM
575         bool "High memory support"
576         depends on PPC32
577
578 source kernel/Kconfig.hz
579 source kernel/Kconfig.preempt
580 source "fs/Kconfig.binfmt"
581
582 # We optimistically allocate largepages from the VM, so make the limit
583 # large enough (16MB). This badly named config option is actually
584 # max order + 1
585 config FORCE_MAX_ZONEORDER
586         int
587         depends on PPC64
588         default "9" if PPC_64K_PAGES
589         default "13"
590
591 config MATH_EMULATION
592         bool "Math emulation"
593         depends on 4xx || 8xx || E200 || E500
594         ---help---
595           Some PowerPC chips designed for embedded applications do not have
596           a floating-point unit and therefore do not implement the
597           floating-point instructions in the PowerPC instruction set.  If you
598           say Y here, the kernel will include code to emulate a floating-point
599           unit, which will allow programs that use floating-point
600           instructions to run.
601
602 config IOMMU_VMERGE
603         bool "Enable IOMMU virtual merging (EXPERIMENTAL)"
604         depends on EXPERIMENTAL && PPC64
605         default n
606         help
607           Cause IO segments sent to a device for DMA to be merged virtually
608           by the IOMMU when they happen to have been allocated contiguously.
609           This doesn't add pressure to the IOMMU allocator. However, some
610           drivers don't support getting large merged segments coming back
611           from *_map_sg(). Say Y if you know the drivers you are using are
612           properly handling this case.
613
614 config HOTPLUG_CPU
615         bool "Support for enabling/disabling CPUs"
616         depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
617         ---help---
618           Say Y here to be able to disable and re-enable individual
619           CPUs at runtime on SMP machines.
620
621           Say N if you are unsure.
622
623 config ARCH_ENABLE_MEMORY_HOTPLUG
624         def_bool y
625
626 config KEXEC
627         bool "kexec system call (EXPERIMENTAL)"
628         depends on PPC_MULTIPLATFORM && EXPERIMENTAL
629         help
630           kexec is a system call that implements the ability to shutdown your
631           current kernel, and to start another kernel.  It is like a reboot
632           but it is indepedent of the system firmware.   And like a reboot
633           you can start any kernel with it, not just Linux.
634
635           The name comes from the similiarity to the exec system call.
636
637           It is an ongoing process to be certain the hardware in a machine
638           is properly shutdown, so do not be surprised if this code does not
639           initially work for you.  It may help to enable device hotplugging
640           support.  As of this writing the exact hardware interface is
641           strongly in flux, so no good recommendation can be made.
642
643 config CRASH_DUMP
644         bool "Build a kdump crash kernel (EXPERIMENTAL)"
645         depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
646         help
647           Build a kernel suitable for use as a kdump capture kernel.
648           The kernel will be linked at a different address than normal, and
649           so can only be used for Kdump.
650
651           Don't change this unless you know what you are doing.
652
653 config EMBEDDEDBOOT
654         bool
655         depends on 8xx || 8260
656         default y
657
658 config PC_KEYBOARD
659         bool "PC PS/2 style Keyboard"
660         depends on 4xx || CPM2
661
662 config PPCBUG_NVRAM
663         bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
664         default y if PPC_PREP
665
666 config IRQ_ALL_CPUS
667         bool "Distribute interrupts on all CPUs by default"
668         depends on SMP && !MV64360
669         help
670           This option gives the kernel permission to distribute IRQs across
671           multiple CPUs.  Saying N here will route all IRQs to the first
672           CPU.  Generally saying Y is safe, although some problems have been
673           reported with SMP Power Macintoshes with this option enabled.
674
675 source "arch/powerpc/platforms/pseries/Kconfig"
676
677 config NUMA
678         bool "NUMA support"
679         depends on PPC64
680         default y if SMP && PPC_PSERIES
681
682 config NODES_SHIFT
683         int
684         default "4"
685         depends on NEED_MULTIPLE_NODES
686
687 config ARCH_SELECT_MEMORY_MODEL
688         def_bool y
689         depends on PPC64
690
691 config ARCH_FLATMEM_ENABLE
692         def_bool y
693         depends on (PPC64 && !NUMA) || PPC32
694
695 config ARCH_SPARSEMEM_ENABLE
696         def_bool y
697         depends on PPC64
698
699 config ARCH_SPARSEMEM_DEFAULT
700         def_bool y
701         depends on SMP && PPC_PSERIES
702
703 source "mm/Kconfig"
704
705 config HAVE_ARCH_EARLY_PFN_TO_NID
706         def_bool y
707         depends on NEED_MULTIPLE_NODES
708
709 config ARCH_MEMORY_PROBE
710         def_bool y
711         depends on MEMORY_HOTPLUG
712
713 config PPC_64K_PAGES
714         bool "64k page size"
715         depends on PPC64
716         help
717           This option changes the kernel logical page size to 64k. On machines
718           without processor support for 64k pages, the kernel will simulate
719           them by loading each individual 4k page on demand transparently,
720           while on hardware with such support, it will be used to map
721           normal application pages.
722
723 config SCHED_SMT
724         bool "SMT (Hyperthreading) scheduler support"
725         depends on PPC64 && SMP
726         default off
727         help
728           SMT scheduler support improves the CPU scheduler's decision making
729           when dealing with POWER5 cpus at a cost of slightly increased
730           overhead in some places. If unsure say N here.
731
732 config PROC_DEVICETREE
733         bool "Support for device tree in /proc"
734         depends on PROC_FS
735         help
736           This option adds a device-tree directory under /proc which contains
737           an image of the device tree that the kernel copies from Open
738           Firmware or other boot firmware. If unsure, say Y here.
739
740 source "arch/powerpc/platforms/prep/Kconfig"
741
742 config CMDLINE_BOOL
743         bool "Default bootloader kernel arguments"
744         depends on !PPC_ISERIES
745
746 config CMDLINE
747         string "Initial kernel command string"
748         depends on CMDLINE_BOOL
749         default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
750         help
751           On some platforms, there is currently no way for the boot loader to
752           pass arguments to the kernel. For these platforms, you can supply
753           some command-line options at build time by entering them here.  In
754           most cases you will need to specify the root device here.
755
756 if !44x || BROKEN
757 source kernel/power/Kconfig
758 endif
759
760 config SECCOMP
761         bool "Enable seccomp to safely compute untrusted bytecode"
762         depends on PROC_FS
763         default y
764         help
765           This kernel feature is useful for number crunching applications
766           that may need to compute untrusted bytecode during their
767           execution. By using pipes or other transports made available to
768           the process as file descriptors supporting the read/write
769           syscalls, it's possible to isolate those applications in
770           their own address space using seccomp. Once seccomp is
771           enabled via /proc/<pid>/seccomp, it cannot be disabled
772           and the task is only allowed to execute a few safe syscalls
773           defined by each seccomp mode.
774
775           If unsure, say Y. Only embedded should say N here.
776
777 endmenu
778
779 config ISA_DMA_API
780         bool
781         default y
782
783 menu "Bus options"
784
785 config ISA
786         bool "Support for ISA-bus hardware"
787         depends on PPC_PREP || PPC_CHRP
788         select PPC_I8259
789         help
790           Find out whether you have ISA slots on your motherboard.  ISA is the
791           name of a bus system, i.e. the way the CPU talks to the other stuff
792           inside your box.  If you have an Apple machine, say N here; if you
793           have an IBM RS/6000 or pSeries machine or a PReP machine, say Y.  If
794           you have an embedded board, consult your board documentation.
795
796 config GENERIC_ISA_DMA
797         bool
798         depends on PPC64 || POWER4 || 6xx && !CPM2
799         default y
800
801 config PPC_I8259
802         bool
803         default n
804
805 config PPC_INDIRECT_PCI
806         bool
807         depends on PCI
808         default y if 40x || 44x
809         default n
810
811 config EISA
812         bool
813
814 config SBUS
815         bool
816
817 config FSL_SOC
818         bool
819
820 # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
821 config MCA
822         bool
823
824 config PCI
825         bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_MPC52xx || (EMBEDDED && PPC_ISERIES)
826         default y if !40x && !CPM2 && !8xx && !APUS && !PPC_83xx && !PPC_85xx
827         default PCI_PERMEDIA if !4xx && !CPM2 && !8xx && APUS
828         default PCI_QSPAN if !4xx && !CPM2 && 8xx
829         help
830           Find out whether your system includes a PCI bus. PCI is the name of
831           a bus system, i.e. the way the CPU talks to the other stuff inside
832           your box.  If you say Y here, the kernel will include drivers and
833           infrastructure code to support PCI bus devices.
834
835 config PCI_DOMAINS
836         bool
837         default PCI
838
839 config PCI_QSPAN
840         bool "QSpan PCI"
841         depends on !4xx && !CPM2 && 8xx
842         select PPC_I8259
843         help
844           Say Y here if you have a system based on a Motorola 8xx-series
845           embedded processor with a QSPAN PCI interface, otherwise say N.
846
847 config PCI_8260
848         bool
849         depends on PCI && 8260
850         select PPC_INDIRECT_PCI
851         default y
852
853 config 8260_PCI9
854         bool "  Enable workaround for MPC826x erratum PCI 9"
855         depends on PCI_8260 && !ADS8272
856         default y
857
858 choice
859         prompt "  IDMA channel for PCI 9 workaround"
860         depends on 8260_PCI9
861
862 config 8260_PCI9_IDMA1
863         bool "IDMA1"
864
865 config 8260_PCI9_IDMA2
866         bool "IDMA2"
867
868 config 8260_PCI9_IDMA3
869         bool "IDMA3"
870
871 config 8260_PCI9_IDMA4
872         bool "IDMA4"
873
874 endchoice
875
876 source "drivers/pci/Kconfig"
877
878 source "drivers/pcmcia/Kconfig"
879
880 source "drivers/pci/hotplug/Kconfig"
881
882 endmenu
883
884 menu "Advanced setup"
885         depends on PPC32
886
887 config ADVANCED_OPTIONS
888         bool "Prompt for advanced kernel configuration options"
889         help
890           This option will enable prompting for a variety of advanced kernel
891           configuration options.  These options can cause the kernel to not
892           work if they are set incorrectly, but can be used to optimize certain
893           aspects of kernel memory management.
894
895           Unless you know what you are doing, say N here.
896
897 comment "Default settings for advanced configuration options are used"
898         depends on !ADVANCED_OPTIONS
899
900 config HIGHMEM_START_BOOL
901         bool "Set high memory pool address"
902         depends on ADVANCED_OPTIONS && HIGHMEM
903         help
904           This option allows you to set the base address of the kernel virtual
905           area used to map high memory pages.  This can be useful in
906           optimizing the layout of kernel virtual memory.
907
908           Say N here unless you know what you are doing.
909
910 config HIGHMEM_START
911         hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
912         default "0xfe000000"
913
914 config LOWMEM_SIZE_BOOL
915         bool "Set maximum low memory"
916         depends on ADVANCED_OPTIONS
917         help
918           This option allows you to set the maximum amount of memory which
919           will be used as "low memory", that is, memory which the kernel can
920           access directly, without having to set up a kernel virtual mapping.
921           This can be useful in optimizing the layout of kernel virtual
922           memory.
923
924           Say N here unless you know what you are doing.
925
926 config LOWMEM_SIZE
927         hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
928         default "0x30000000"
929
930 config KERNEL_START_BOOL
931         bool "Set custom kernel base address"
932         depends on ADVANCED_OPTIONS
933         help
934           This option allows you to set the kernel virtual address at which
935           the kernel will map low memory (the kernel image will be linked at
936           this address).  This can be useful in optimizing the virtual memory
937           layout of the system.
938
939           Say N here unless you know what you are doing.
940
941 config KERNEL_START
942         hex "Virtual address of kernel base" if KERNEL_START_BOOL
943         default "0xc0000000"
944
945 config TASK_SIZE_BOOL
946         bool "Set custom user task size"
947         depends on ADVANCED_OPTIONS
948         help
949           This option allows you to set the amount of virtual address space
950           allocated to user tasks.  This can be useful in optimizing the
951           virtual memory layout of the system.
952
953           Say N here unless you know what you are doing.
954
955 config TASK_SIZE
956         hex "Size of user task space" if TASK_SIZE_BOOL
957         default "0x80000000"
958
959 config CONSISTENT_START_BOOL
960         bool "Set custom consistent memory pool address"
961         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
962         help
963           This option allows you to set the base virtual address
964           of the the consistent memory pool.  This pool of virtual
965           memory is used to make consistent memory allocations.
966
967 config CONSISTENT_START
968         hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
969         default "0xff100000" if NOT_COHERENT_CACHE
970
971 config CONSISTENT_SIZE_BOOL
972         bool "Set custom consistent memory pool size"
973         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
974         help
975           This option allows you to set the size of the the
976           consistent memory pool.  This pool of virtual memory
977           is used to make consistent memory allocations.
978
979 config CONSISTENT_SIZE
980         hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
981         default "0x00200000" if NOT_COHERENT_CACHE
982
983 config BOOT_LOAD_BOOL
984         bool "Set the boot link/load address"
985         depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
986         help
987           This option allows you to set the initial load address of the zImage
988           or zImage.initrd file.  This can be useful if you are on a board
989           which has a small amount of memory.
990
991           Say N here unless you know what you are doing.
992
993 config BOOT_LOAD
994         hex "Link/load address for booting" if BOOT_LOAD_BOOL
995         default "0x00400000" if 40x || 8xx || 8260
996         default "0x01000000" if 44x
997         default "0x00800000"
998
999 config PIN_TLB
1000         bool "Pinned Kernel TLBs (860 ONLY)"
1001         depends on ADVANCED_OPTIONS && 8xx
1002 endmenu
1003
1004 if PPC64
1005 config KERNEL_START
1006         hex
1007         default "0xc000000000000000"
1008 endif
1009
1010 source "net/Kconfig"
1011
1012 source "drivers/Kconfig"
1013
1014 source "fs/Kconfig"
1015
1016 # XXX source "arch/ppc/8xx_io/Kconfig"
1017
1018 # XXX source "arch/ppc/8260_io/Kconfig"
1019
1020 source "arch/powerpc/platforms/iseries/Kconfig"
1021
1022 source "lib/Kconfig"
1023
1024 menu "Instrumentation Support"
1025         depends on EXPERIMENTAL
1026
1027 source "arch/powerpc/oprofile/Kconfig"
1028
1029 config KPROBES
1030         bool "Kprobes (EXPERIMENTAL)"
1031         depends on PPC64 && EXPERIMENTAL && MODULES
1032         help
1033           Kprobes allows you to trap at almost any kernel address and
1034           execute a callback function.  register_kprobe() establishes
1035           a probepoint and specifies the callback.  Kprobes is useful
1036           for kernel debugging, non-intrusive instrumentation and testing.
1037           If in doubt, say "N".
1038 endmenu
1039
1040 source "arch/powerpc/Kconfig.debug"
1041
1042 source "kernel/vserver/Kconfig"
1043
1044 source "security/Kconfig"
1045
1046 config KEYS_COMPAT
1047         bool
1048         depends on COMPAT && KEYS
1049         default y
1050
1051 source "crypto/Kconfig"