of/flattree: merge find_flat_dt_string and initial_boot_params
[safe/jmp/linux-2.6] / 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 source "arch/powerpc/platforms/Kconfig.cputype"
8
9 config PPC32
10         bool
11         default y if !PPC64
12
13 config 64BIT
14         bool
15         default y if PPC64
16
17 config WORD_SIZE
18         int
19         default 64 if PPC64
20         default 32 if !PPC64
21
22 config ARCH_PHYS_ADDR_T_64BIT
23        def_bool PPC64 || PHYS_64BIT
24
25 config MMU
26         bool
27         default y
28
29 config GENERIC_CMOS_UPDATE
30         def_bool y
31
32 config GENERIC_TIME
33         def_bool y
34
35 config GENERIC_TIME_VSYSCALL
36         def_bool y
37
38 config GENERIC_CLOCKEVENTS
39         def_bool y
40
41 config GENERIC_HARDIRQS
42         bool
43         default y
44
45 config GENERIC_HARDIRQS_NO__DO_IRQ
46         bool
47         default y
48
49 config HAVE_SETUP_PER_CPU_AREA
50         def_bool PPC64
51
52 config NEED_PER_CPU_EMBED_FIRST_CHUNK
53         def_bool PPC64
54
55 config IRQ_PER_CPU
56         bool
57         default y
58
59 config STACKTRACE_SUPPORT
60         bool
61         default y
62
63 config HAVE_LATENCYTOP_SUPPORT
64         def_bool y
65
66 config TRACE_IRQFLAGS_SUPPORT
67         bool
68         default y
69
70 config LOCKDEP_SUPPORT
71         bool
72         default y
73
74 config RWSEM_GENERIC_SPINLOCK
75         bool
76
77 config RWSEM_XCHGADD_ALGORITHM
78         bool
79         default y
80
81 config GENERIC_LOCKBREAK
82         bool
83         default y
84         depends on SMP && PREEMPT
85
86 config ARCH_HAS_ILOG2_U32
87         bool
88         default y
89
90 config ARCH_HAS_ILOG2_U64
91         bool
92         default y if 64BIT
93
94 config GENERIC_HWEIGHT
95         bool
96         default y
97
98 config GENERIC_FIND_NEXT_BIT
99         bool
100         default y
101
102 config GENERIC_GPIO
103         bool
104         help
105           Generic GPIO API support
106
107 config ARCH_NO_VIRT_TO_BUS
108         def_bool PPC64
109
110 config PPC
111         bool
112         default y
113         select HAVE_FTRACE_MCOUNT_RECORD
114         select HAVE_DYNAMIC_FTRACE
115         select HAVE_FUNCTION_TRACER
116         select HAVE_FUNCTION_GRAPH_TRACER
117         select ARCH_WANT_OPTIONAL_GPIOLIB
118         select HAVE_IDE
119         select HAVE_IOREMAP_PROT
120         select HAVE_EFFICIENT_UNALIGNED_ACCESS
121         select HAVE_KPROBES
122         select HAVE_ARCH_KGDB
123         select HAVE_KRETPROBES
124         select HAVE_ARCH_TRACEHOOK
125         select HAVE_LMB
126         select HAVE_DMA_ATTRS
127         select HAVE_DMA_API_DEBUG
128         select USE_GENERIC_SMP_HELPERS if SMP
129         select HAVE_OPROFILE
130         select HAVE_SYSCALL_WRAPPERS if PPC64
131         select GENERIC_ATOMIC64 if PPC32
132         select HAVE_PERF_EVENTS
133
134 config EARLY_PRINTK
135         bool
136         default y
137
138 config COMPAT
139         bool
140         default y if PPC64
141         select COMPAT_BINFMT_ELF
142
143 config SYSVIPC_COMPAT
144         bool
145         depends on COMPAT && SYSVIPC
146         default y
147
148 # All PPC32s use generic nvram driver through ppc_md
149 config GENERIC_NVRAM
150         bool
151         default y if PPC32
152
153 config SCHED_OMIT_FRAME_POINTER
154         bool
155         default y
156
157 config ARCH_MAY_HAVE_PC_FDC
158         bool
159         default !PPC_PSERIES || PCI
160
161 config PPC_OF
162         def_bool y
163
164 config OF
165         def_bool y
166         select OF_FLATTREE
167
168 config PPC_UDBG_16550
169         bool
170         default n
171
172 config GENERIC_TBSYNC
173         bool
174         default y if PPC32 && SMP
175         default n
176
177 config AUDIT_ARCH
178         bool
179         default y
180
181 config GENERIC_BUG
182         bool
183         default y
184         depends on BUG
185
186 config SYS_SUPPORTS_APM_EMULATION
187         default y if PMAC_APM_EMU
188         bool
189
190 config DTC
191        bool
192        default y
193
194 config DEFAULT_UIMAGE
195         bool
196         help
197           Used to allow a board to specify it wants a uImage built by default
198         default n
199
200 config REDBOOT
201         bool
202
203 config HIBERNATE_32
204         bool
205         depends on (PPC_PMAC && !SMP) || BROKEN
206         default y
207
208 config HIBERNATE_64
209         bool
210         depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL)
211         default y
212
213 config ARCH_HIBERNATION_POSSIBLE
214         bool
215         depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32)
216         default y
217
218 config ARCH_SUSPEND_POSSIBLE
219         def_bool y
220         depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200 || PPC_83xx
221
222 config PPC_DCR_NATIVE
223         bool
224         default n
225
226 config PPC_DCR_MMIO
227         bool
228         default n
229
230 config PPC_DCR
231         bool
232         depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
233         default y
234
235 config PPC_OF_PLATFORM_PCI
236         bool
237         depends on PCI
238         depends on PPC64 # not supported on 32 bits yet
239         default n
240
241 config ARCH_SUPPORTS_DEBUG_PAGEALLOC
242         def_bool y
243
244 source "init/Kconfig"
245
246 source "kernel/Kconfig.freezer"
247
248 source "arch/powerpc/sysdev/Kconfig"
249 source "arch/powerpc/platforms/Kconfig"
250
251 menu "Kernel options"
252
253 config HIGHMEM
254         bool "High memory support"
255         depends on PPC32
256
257 source kernel/time/Kconfig
258 source kernel/Kconfig.hz
259 source kernel/Kconfig.preempt
260 source "fs/Kconfig.binfmt"
261
262 config HUGETLB_PAGE_SIZE_VARIABLE
263         bool
264         depends on HUGETLB_PAGE
265         default y
266
267 config MATH_EMULATION
268         bool "Math emulation"
269         depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
270         ---help---
271           Some PowerPC chips designed for embedded applications do not have
272           a floating-point unit and therefore do not implement the
273           floating-point instructions in the PowerPC instruction set.  If you
274           say Y here, the kernel will include code to emulate a floating-point
275           unit, which will allow programs that use floating-point
276           instructions to run.
277
278 config 8XX_MINIMAL_FPEMU
279         bool "Minimal math emulation for 8xx"
280         depends on 8xx && !MATH_EMULATION
281         help
282           Older arch/ppc kernels still emulated a few floating point
283           instructions such as load and store, even when full math
284           emulation is disabled.  Say "Y" here if you want to preserve
285           this behavior.
286
287           It is recommended that you build a soft-float userspace instead.
288
289 config IOMMU_VMERGE
290         bool "Enable IOMMU virtual merging"
291         depends on PPC64
292         default y
293         help
294           Cause IO segments sent to a device for DMA to be merged virtually
295           by the IOMMU when they happen to have been allocated contiguously.
296           This doesn't add pressure to the IOMMU allocator. However, some
297           drivers don't support getting large merged segments coming back
298           from *_map_sg().
299
300           Most drivers don't have this problem; it is safe to say Y here.
301
302 config IOMMU_HELPER
303         def_bool PPC64
304
305 config SWIOTLB
306         bool "SWIOTLB support"
307         default n
308         select IOMMU_HELPER
309         ---help---
310           Support for IO bounce buffering for systems without an IOMMU.
311           This allows us to DMA to the full physical address space on
312           platforms where the size of a physical address is larger
313           than the bus address.  Not all platforms support this.
314
315 config HOTPLUG_CPU
316         bool "Support for enabling/disabling CPUs"
317         depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
318         ---help---
319           Say Y here to be able to disable and re-enable individual
320           CPUs at runtime on SMP machines.
321
322           Say N if you are unsure.
323
324 config ARCH_ENABLE_MEMORY_HOTPLUG
325         def_bool y
326
327 config ARCH_HAS_WALK_MEMORY
328         def_bool y
329
330 config ARCH_ENABLE_MEMORY_HOTREMOVE
331         def_bool y
332
333 config KEXEC
334         bool "kexec system call (EXPERIMENTAL)"
335         depends on PPC_BOOK3S && EXPERIMENTAL
336         help
337           kexec is a system call that implements the ability to shutdown your
338           current kernel, and to start another kernel.  It is like a reboot
339           but it is independent of the system firmware.   And like a reboot
340           you can start any kernel with it, not just Linux.
341
342           The name comes from the similarity to the exec system call.
343
344           It is an ongoing process to be certain the hardware in a machine
345           is properly shutdown, so do not be surprised if this code does not
346           initially work for you.  It may help to enable device hotplugging
347           support.  As of this writing the exact hardware interface is
348           strongly in flux, so no good recommendation can be made.
349
350 config CRASH_DUMP
351         bool "Build a kdump crash kernel"
352         depends on PPC64 || 6xx
353         select RELOCATABLE if PPC64
354         help
355           Build a kernel suitable for use as a kdump capture kernel.
356           The same kernel binary can be used as production kernel and dump
357           capture kernel.
358
359 config PHYP_DUMP
360         bool "Hypervisor-assisted dump (EXPERIMENTAL)"
361         depends on PPC_PSERIES && EXPERIMENTAL
362         help
363           Hypervisor-assisted dump is meant to be a kdump replacement
364           offering robustness and speed not possible without system
365           hypervisor assistance.
366
367           If unsure, say "N"
368
369 config PPCBUG_NVRAM
370         bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
371         default y if PPC_PREP
372
373 config IRQ_ALL_CPUS
374         bool "Distribute interrupts on all CPUs by default"
375         depends on SMP && !MV64360
376         help
377           This option gives the kernel permission to distribute IRQs across
378           multiple CPUs.  Saying N here will route all IRQs to the first
379           CPU.  Generally saying Y is safe, although some problems have been
380           reported with SMP Power Macintoshes with this option enabled.
381
382 config NUMA
383         bool "NUMA support"
384         depends on PPC64
385         default y if SMP && PPC_PSERIES
386
387 config NODES_SHIFT
388         int
389         default "8" if PPC64
390         default "4"
391         depends on NEED_MULTIPLE_NODES
392
393 config MAX_ACTIVE_REGIONS
394         int
395         default "256" if PPC64
396         default "32"
397
398 config ARCH_SELECT_MEMORY_MODEL
399         def_bool y
400         depends on PPC64
401
402 config ARCH_FLATMEM_ENABLE
403         def_bool y
404         depends on (PPC64 && !NUMA) || PPC32
405
406 config ARCH_SPARSEMEM_ENABLE
407         def_bool y
408         depends on PPC64
409         select SPARSEMEM_VMEMMAP_ENABLE
410
411 config ARCH_SPARSEMEM_DEFAULT
412         def_bool y
413         depends on (SMP && PPC_PSERIES) || PPC_PS3
414
415 config ARCH_POPULATES_NODE_MAP
416         def_bool y
417
418 config SYS_SUPPORTS_HUGETLBFS
419        def_bool y
420        depends on PPC_BOOK3S_64
421
422 source "mm/Kconfig"
423
424 config ARCH_MEMORY_PROBE
425         def_bool y
426         depends on MEMORY_HOTPLUG
427
428 # Some NUMA nodes have memory ranges that span
429 # other nodes.  Even though a pfn is valid and
430 # between a node's start and end pfns, it may not
431 # reside on that node.  See memmap_init_zone()
432 # for details.
433 config NODES_SPAN_OTHER_NODES
434         def_bool y
435         depends on NEED_MULTIPLE_NODES
436
437 config PPC_HAS_HASH_64K
438         bool
439         depends on PPC64
440         default n
441
442 config STDBINUTILS
443         bool "Using standard binutils settings"
444         depends on 44x
445         default y
446         help
447           Turning this option off allows you to select 256KB PAGE_SIZE on 44x.
448           Note, that kernel will be able to run only those applications,
449           which had been compiled using binutils later than 2.17.50.0.3 with
450           '-zmax-page-size' set to 256K (the default is 64K). Or, if using
451           the older binutils, you can patch them with a trivial patch, which
452           changes the ELF_MAXPAGESIZE definition from 0x10000 to 0x40000.
453
454 choice
455         prompt "Page size"
456         default PPC_4K_PAGES
457         help
458           Select the kernel logical page size. Increasing the page size
459           will reduce software overhead at each page boundary, allow
460           hardware prefetch mechanisms to be more effective, and allow
461           larger dma transfers increasing IO efficiency and reducing
462           overhead. However the utilization of memory will increase.
463           For example, each cached file will using a multiple of the
464           page size to hold its contents and the difference between the
465           end of file and the end of page is wasted.
466
467           Some dedicated systems, such as software raid serving with
468           accelerated calculations, have shown significant increases.
469
470           If you configure a 64 bit kernel for 64k pages but the
471           processor does not support them, then the kernel will simulate
472           them with 4k pages, loading them on demand, but with the
473           reduced software overhead and larger internal fragmentation.
474           For the 32 bit kernel, a large page option will not be offered
475           unless it is supported by the configured processor.
476
477           If unsure, choose 4K_PAGES.
478
479 config PPC_4K_PAGES
480         bool "4k page size"
481
482 config PPC_16K_PAGES
483         bool "16k page size" if 44x
484
485 config PPC_64K_PAGES
486         bool "64k page size" if 44x || PPC_STD_MMU_64 || PPC_BOOK3E_64
487         select PPC_HAS_HASH_64K if PPC_STD_MMU_64
488
489 config PPC_256K_PAGES
490         bool "256k page size" if 44x
491         depends on !STDBINUTILS
492         help
493           Make the page size 256k.
494
495           As the ELF standard only requires alignment to support page
496           sizes up to 64k, you will need to compile all of your user
497           space applications with a non-standard binutils settings
498           (see the STDBINUTILS description for details).
499
500           Say N unless you know what you are doing.
501
502 endchoice
503
504 config FORCE_MAX_ZONEORDER
505         int "Maximum zone order"
506         range 9 64 if PPC64 && PPC_64K_PAGES
507         default "9" if PPC64 && PPC_64K_PAGES
508         range 13 64 if PPC64 && !PPC_64K_PAGES
509         default "13" if PPC64 && !PPC_64K_PAGES
510         range 9 64 if PPC32 && PPC_16K_PAGES
511         default "9" if PPC32 && PPC_16K_PAGES
512         range 7 64 if PPC32 && PPC_64K_PAGES
513         default "7" if PPC32 && PPC_64K_PAGES
514         range 5 64 if PPC32 && PPC_256K_PAGES
515         default "5" if PPC32 && PPC_256K_PAGES
516         range 11 64
517         default "11"
518         help
519           The kernel memory allocator divides physically contiguous memory
520           blocks into "zones", where each zone is a power of two number of
521           pages.  This option selects the largest power of two that the kernel
522           keeps in the memory allocator.  If you need to allocate very large
523           blocks of physically contiguous memory, then you may need to
524           increase this value.
525
526           This config option is actually maximum order plus one. For example,
527           a value of 11 means that the largest free memory block is 2^10 pages.
528
529           The page size is not necessarily 4KB.  For example, on 64-bit
530           systems, 64KB pages can be enabled via CONFIG_PPC_64K_PAGES.  Keep
531           this in mind when choosing a value for this option.
532
533 config PPC_SUBPAGE_PROT
534         bool "Support setting protections for 4k subpages"
535         depends on PPC_STD_MMU_64 && PPC_64K_PAGES
536         help
537           This option adds support for a system call to allow user programs
538           to set access permissions (read/write, readonly, or no access)
539           on the 4k subpages of each 64k page.
540
541 config SCHED_SMT
542         bool "SMT (Hyperthreading) scheduler support"
543         depends on PPC64 && SMP
544         help
545           SMT scheduler support improves the CPU scheduler's decision making
546           when dealing with POWER5 cpus at a cost of slightly increased
547           overhead in some places. If unsure say N here.
548
549 config PROC_DEVICETREE
550         bool "Support for device tree in /proc"
551         depends on PROC_FS
552         help
553           This option adds a device-tree directory under /proc which contains
554           an image of the device tree that the kernel copies from Open
555           Firmware or other boot firmware. If unsure, say Y here.
556
557 config CMDLINE_BOOL
558         bool "Default bootloader kernel arguments"
559
560 config CMDLINE
561         string "Initial kernel command string"
562         depends on CMDLINE_BOOL
563         default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
564         help
565           On some platforms, there is currently no way for the boot loader to
566           pass arguments to the kernel. For these platforms, you can supply
567           some command-line options at build time by entering them here.  In
568           most cases you will need to specify the root device here.
569
570 config EXTRA_TARGETS
571         string "Additional default image types"
572         help
573           List additional targets to be built by the bootwrapper here (separated
574           by spaces).  This is useful for targets that depend of device tree
575           files in the .dts directory.
576
577           Targets in this list will be build as part of the default build
578           target, or when the user does a 'make zImage' or a
579           'make zImage.initrd'.
580
581           If unsure, leave blank
582
583 if !44x || BROKEN
584 config ARCH_WANTS_FREEZER_CONTROL
585         def_bool y
586         depends on ADB_PMU
587
588 source kernel/power/Kconfig
589 endif
590
591 config SECCOMP
592         bool "Enable seccomp to safely compute untrusted bytecode"
593         depends on PROC_FS
594         default y
595         help
596           This kernel feature is useful for number crunching applications
597           that may need to compute untrusted bytecode during their
598           execution. By using pipes or other transports made available to
599           the process as file descriptors supporting the read/write
600           syscalls, it's possible to isolate those applications in
601           their own address space using seccomp. Once seccomp is
602           enabled via /proc/<pid>/seccomp, it cannot be disabled
603           and the task is only allowed to execute a few safe syscalls
604           defined by each seccomp mode.
605
606           If unsure, say Y. Only embedded should say N here.
607
608 endmenu
609
610 config ISA_DMA_API
611         bool
612         default !PPC_ISERIES || PCI
613
614 menu "Bus options"
615
616 config ISA
617         bool "Support for ISA-bus hardware"
618         depends on PPC_PREP || PPC_CHRP
619         select PPC_I8259
620         help
621           Find out whether you have ISA slots on your motherboard.  ISA is the
622           name of a bus system, i.e. the way the CPU talks to the other stuff
623           inside your box.  If you have an Apple machine, say N here; if you
624           have an IBM RS/6000 or pSeries machine or a PReP machine, say Y.  If
625           you have an embedded board, consult your board documentation.
626
627 config ZONE_DMA
628         bool
629         default y
630
631 config GENERIC_ISA_DMA
632         bool
633         depends on PPC64 || POWER4 || 6xx && !CPM2
634         default y
635
636 config PPC_INDIRECT_PCI
637         bool
638         depends on PCI
639         default y if 40x || 44x
640         default n
641
642 config EISA
643         bool
644
645 config SBUS
646         bool
647
648 config FSL_SOC
649         bool
650
651 config FSL_PCI
652         bool
653         select PPC_INDIRECT_PCI
654         select PCI_QUIRKS
655
656 config 4xx_SOC
657         bool
658
659 config FSL_LBC
660         bool
661         help
662           Freescale Localbus support
663
664 config FSL_GTM
665         bool
666         depends on PPC_83xx || QUICC_ENGINE || CPM2
667         help
668           Freescale General-purpose Timers support
669
670 # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
671 config MCA
672         bool
673
674 # Platforms that what PCI turned unconditionally just do select PCI
675 # in their config node.  Platforms that want to choose at config
676 # time should select PPC_PCI_CHOICE
677 config PPC_PCI_CHOICE
678         bool
679
680 config PCI
681         bool "PCI support" if PPC_PCI_CHOICE
682         default y if !40x && !CPM2 && !8xx && !PPC_83xx \
683                 && !PPC_85xx && !PPC_86xx
684         default PCI_PERMEDIA if !4xx && !CPM2 && !8xx
685         default PCI_QSPAN if !4xx && !CPM2 && 8xx
686         select ARCH_SUPPORTS_MSI
687         help
688           Find out whether your system includes a PCI bus. PCI is the name of
689           a bus system, i.e. the way the CPU talks to the other stuff inside
690           your box.  If you say Y here, the kernel will include drivers and
691           infrastructure code to support PCI bus devices.
692
693 config PCI_DOMAINS
694         def_bool PCI
695
696 config PCI_SYSCALL
697         def_bool PCI
698
699 config PCI_QSPAN
700         bool "QSpan PCI"
701         depends on !4xx && !CPM2 && 8xx
702         select PPC_I8259
703         help
704           Say Y here if you have a system based on a Motorola 8xx-series
705           embedded processor with a QSPAN PCI interface, otherwise say N.
706
707 config PCI_8260
708         bool
709         depends on PCI && 8260
710         select PPC_INDIRECT_PCI
711         default y
712
713 config 8260_PCI9
714         bool "Enable workaround for MPC826x erratum PCI 9"
715         depends on PCI_8260 && !8272
716         default y
717
718 choice
719         prompt "IDMA channel for PCI 9 workaround"
720         depends on 8260_PCI9
721
722 config 8260_PCI9_IDMA1
723         bool "IDMA1"
724
725 config 8260_PCI9_IDMA2
726         bool "IDMA2"
727
728 config 8260_PCI9_IDMA3
729         bool "IDMA3"
730
731 config 8260_PCI9_IDMA4
732         bool "IDMA4"
733
734 endchoice
735
736 source "drivers/pci/pcie/Kconfig"
737
738 source "drivers/pci/Kconfig"
739
740 source "drivers/pcmcia/Kconfig"
741
742 source "drivers/pci/hotplug/Kconfig"
743
744 config HAS_RAPIDIO
745         bool
746         default n
747
748 config RAPIDIO
749         bool "RapidIO support"
750         depends on HAS_RAPIDIO
751         help
752           If you say Y here, the kernel will include drivers and
753           infrastructure code to support RapidIO interconnect devices.
754
755 source "drivers/rapidio/Kconfig"
756
757 endmenu
758
759 menu "Advanced setup"
760         depends on PPC32
761
762 config ADVANCED_OPTIONS
763         bool "Prompt for advanced kernel configuration options"
764         help
765           This option will enable prompting for a variety of advanced kernel
766           configuration options.  These options can cause the kernel to not
767           work if they are set incorrectly, but can be used to optimize certain
768           aspects of kernel memory management.
769
770           Unless you know what you are doing, say N here.
771
772 comment "Default settings for advanced configuration options are used"
773         depends on !ADVANCED_OPTIONS
774
775 config LOWMEM_SIZE_BOOL
776         bool "Set maximum low memory"
777         depends on ADVANCED_OPTIONS
778         help
779           This option allows you to set the maximum amount of memory which
780           will be used as "low memory", that is, memory which the kernel can
781           access directly, without having to set up a kernel virtual mapping.
782           This can be useful in optimizing the layout of kernel virtual
783           memory.
784
785           Say N here unless you know what you are doing.
786
787 config LOWMEM_SIZE
788         hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
789         default "0x30000000"
790
791 config LOWMEM_CAM_NUM_BOOL
792         bool "Set number of CAMs to use to map low memory"
793         depends on ADVANCED_OPTIONS && FSL_BOOKE
794         help
795           This option allows you to set the maximum number of CAM slots that
796           will be used to map low memory.  There are a limited number of slots
797           available and even more limited number that will fit in the L1 MMU.
798           However, using more entries will allow mapping more low memory.  This
799           can be useful in optimizing the layout of kernel virtual memory.
800
801           Say N here unless you know what you are doing.
802
803 config LOWMEM_CAM_NUM
804         depends on FSL_BOOKE
805         int "Number of CAMs to use to map low memory" if LOWMEM_CAM_NUM_BOOL
806         default 3
807
808 config RELOCATABLE
809         bool "Build a relocatable kernel (EXPERIMENTAL)"
810         depends on EXPERIMENTAL && ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
811         help
812           This builds a kernel image that is capable of running at the
813           location the kernel is loaded at (some alignment restrictions may
814           exist).
815
816           One use is for the kexec on panic case where the recovery kernel
817           must live at a different physical address than the primary
818           kernel.
819
820           Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address
821           it has been loaded at and the compile time physical addresses
822           CONFIG_PHYSICAL_START is ignored.  However CONFIG_PHYSICAL_START
823           setting can still be useful to bootwrappers that need to know the
824           load location of the kernel (eg. u-boot/mkimage).
825
826 config PAGE_OFFSET_BOOL
827         bool "Set custom page offset address"
828         depends on ADVANCED_OPTIONS
829         help
830           This option allows you to set the kernel virtual address at which
831           the kernel will map low memory.  This can be useful in optimizing
832           the virtual memory layout of the system.
833
834           Say N here unless you know what you are doing.
835
836 config PAGE_OFFSET
837         hex "Virtual address of memory base" if PAGE_OFFSET_BOOL
838         default "0xc0000000"
839
840 config KERNEL_START_BOOL
841         bool "Set custom kernel base address"
842         depends on ADVANCED_OPTIONS
843         help
844           This option allows you to set the kernel virtual address at which
845           the kernel will be loaded.  Normally this should match PAGE_OFFSET
846           however there are times (like kdump) that one might not want them
847           to be the same.
848
849           Say N here unless you know what you are doing.
850
851 config KERNEL_START
852         hex "Virtual address of kernel base" if KERNEL_START_BOOL
853         default PAGE_OFFSET if PAGE_OFFSET_BOOL
854         default "0xc2000000" if CRASH_DUMP
855         default "0xc0000000"
856
857 config PHYSICAL_START_BOOL
858         bool "Set physical address where the kernel is loaded"
859         depends on ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
860         help
861           This gives the physical address where the kernel is loaded.
862
863           Say N here unless you know what you are doing.
864
865 config PHYSICAL_START
866         hex "Physical address where the kernel is loaded" if PHYSICAL_START_BOOL
867         default "0x02000000" if PPC_STD_MMU && CRASH_DUMP
868         default "0x00000000"
869
870 config PHYSICAL_ALIGN
871         hex
872         default "0x04000000" if FSL_BOOKE
873         help
874           This value puts the alignment restrictions on physical address
875           where kernel is loaded and run from. Kernel is compiled for an
876           address which meets above alignment restriction.
877
878 config TASK_SIZE_BOOL
879         bool "Set custom user task size"
880         depends on ADVANCED_OPTIONS
881         help
882           This option allows you to set the amount of virtual address space
883           allocated to user tasks.  This can be useful in optimizing the
884           virtual memory layout of the system.
885
886           Say N here unless you know what you are doing.
887
888 config TASK_SIZE
889         hex "Size of user task space" if TASK_SIZE_BOOL
890         default "0x80000000" if PPC_PREP || PPC_8xx
891         default "0xc0000000"
892
893 config CONSISTENT_SIZE_BOOL
894         bool "Set custom consistent memory pool size"
895         depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
896         help
897           This option allows you to set the size of the
898           consistent memory pool.  This pool of virtual memory
899           is used to make consistent memory allocations.
900
901 config CONSISTENT_SIZE
902         hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
903         default "0x00200000" if NOT_COHERENT_CACHE
904
905 config PIN_TLB
906         bool "Pinned Kernel TLBs (860 ONLY)"
907         depends on ADVANCED_OPTIONS && 8xx
908 endmenu
909
910 if PPC64
911 config RELOCATABLE
912         bool "Build a relocatable kernel"
913         help
914           This builds a kernel image that is capable of running anywhere
915           in the RMA (real memory area) at any 16k-aligned base address.
916           The kernel is linked as a position-independent executable (PIE)
917           and contains dynamic relocations which are processed early
918           in the bootup process.
919
920           One use is for the kexec on panic case where the recovery kernel
921           must live at a different physical address than the primary
922           kernel.
923
924 config PAGE_OFFSET
925         hex
926         default "0xc000000000000000"
927 config KERNEL_START
928         hex
929         default "0xc000000000000000"
930 config PHYSICAL_START
931         hex
932         default "0x00000000"
933 endif
934
935 source "net/Kconfig"
936
937 source "drivers/Kconfig"
938
939 source "fs/Kconfig"
940
941 source "arch/powerpc/sysdev/qe_lib/Kconfig"
942
943 source "lib/Kconfig"
944
945 source "arch/powerpc/Kconfig.debug"
946
947 source "security/Kconfig"
948
949 config KEYS_COMPAT
950         bool
951         depends on COMPAT && KEYS
952         default y
953
954 source "crypto/Kconfig"
955
956 config PPC_CLOCK
957         bool
958         default n
959         select HAVE_CLK
960
961 config PPC_LIB_RHEAP
962         bool
963
964 source "arch/powerpc/kvm/Kconfig"