blob: a5e9912e2d3773fdab23a4bc52ec5e147f47e1cf [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001# For a description of the syntax of this configuration file,
2# see Documentation/kbuild/kconfig-language.txt.
3#
4
5mainmenu "Linux/PowerPC Kernel Configuration"
6
Arnd Bergmanna0ae9c72007-06-13 02:30:17 +10007source "arch/powerpc/platforms/Kconfig.cputype"
Johannes Berg17e638b2007-03-19 11:53:53 +01008
Paul Mackerras14cf11a2005-09-26 16:04:21 +10009config PPC32
10 bool
11 default y if !PPC64
12
13config 64BIT
14 bool
15 default y if PPC64
16
Stephen Rothwell2578bfa2007-09-21 10:16:20 +100017config WORD_SIZE
18 int
19 default 64 if PPC64
20 default 32 if !PPC64
21
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022config PPC_MERGE
23 def_bool y
24
25config MMU
26 bool
27 default y
28
Tony Breedsaa3be5f2007-09-21 13:26:02 +100029config GENERIC_CMOS_UPDATE
30 def_bool y
31
Tony Breeds4a4cfe32007-09-22 07:35:52 +100032config GENERIC_TIME
33 def_bool y
34
35config GENERIC_TIME_VSYSCALL
36 def_bool y
37
Tony Breedsd831d0b2007-09-21 13:26:03 +100038config GENERIC_CLOCKEVENTS
39 def_bool y
40
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041config GENERIC_HARDIRQS
42 bool
43 default y
44
travis@sgi.com988c3882008-01-30 23:27:58 +010045config HAVE_SETUP_PER_CPU_AREA
travis@sgi.comb32ef632008-01-30 13:32:51 +010046 def_bool PPC64
47
Ingo Molnar0d7012a2006-06-29 02:24:43 -070048config IRQ_PER_CPU
49 bool
50 default y
51
Christoph Hellwigfd3e0bb2008-04-17 14:35:00 +100052config STACKTRACE_SUPPORT
53 bool
54 default y
55
Benjamin Herrenschmidt945feb12008-04-17 14:35:01 +100056config TRACE_IRQFLAGS_SUPPORT
57 bool
58 depends on PPC64
59 default y
60
61config LOCKDEP_SUPPORT
62 bool
63 default y
64
Paul Mackerras14cf11a2005-09-26 16:04:21 +100065config RWSEM_GENERIC_SPINLOCK
66 bool
67
68config RWSEM_XCHGADD_ALGORITHM
69 bool
70 default y
71
Nick Piggin95c354f2008-01-30 13:31:20 +010072config GENERIC_LOCKBREAK
73 bool
74 default y
75 depends on SMP && PREEMPT
76
David Howellsf0d1b0b2006-12-08 02:37:49 -080077config ARCH_HAS_ILOG2_U32
78 bool
David Howellsef55d532006-12-08 02:37:53 -080079 default y
David Howellsf0d1b0b2006-12-08 02:37:49 -080080
81config ARCH_HAS_ILOG2_U64
82 bool
David Howellsef55d532006-12-08 02:37:53 -080083 default y if 64BIT
David Howellsf0d1b0b2006-12-08 02:37:49 -080084
Akinobu Mitae779b2f2006-03-26 01:39:33 -080085config GENERIC_HWEIGHT
86 bool
87 default y
88
Paul Mackerras14cf11a2005-09-26 16:04:21 +100089config GENERIC_CALIBRATE_DELAY
90 bool
91 default y
92
Jon Mason0a9cb462006-05-19 15:35:32 -050093config GENERIC_FIND_NEXT_BIT
94 bool
95 default y
96
Anton Vorontsovb7ce3412008-04-11 23:06:36 +100097config GENERIC_GPIO
98 bool
99 help
100 Generic GPIO API support
101
Stephen Rothwellf057eac2007-07-15 23:40:05 -0700102config ARCH_NO_VIRT_TO_BUS
103 def_bool PPC64
104
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000105config PPC
106 bool
107 default y
Steven Rostedt677aa9f2008-05-17 00:01:36 -0400108 select HAVE_DYNAMIC_FTRACE
Steven Rostedt4e491d12008-05-14 23:49:44 -0400109 select HAVE_FTRACE
Sam Ravnborgec7748b2008-02-09 10:46:40 +0100110 select HAVE_IDE
Mathieu Desnoyers3f550092008-02-02 15:10:35 -0500111 select HAVE_KPROBES
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800112 select HAVE_KRETPROBES
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800113 select HAVE_LMB
Steven Rostedt4e491d12008-05-14 23:49:44 -0400114 select HAVE_OPROFILE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000115
116config EARLY_PRINTK
117 bool
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100118 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000119
120config COMPAT
121 bool
122 default y if PPC64
Roland McGrath01e31db2008-01-02 17:03:11 -0800123 select COMPAT_BINFMT_ELF
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000124
125config SYSVIPC_COMPAT
126 bool
127 depends on COMPAT && SYSVIPC
128 default y
129
130# All PPC32s use generic nvram driver through ppc_md
131config GENERIC_NVRAM
132 bool
133 default y if PPC32
134
135config SCHED_NO_NO_OMIT_FRAME_POINTER
136 bool
137 default y
138
139config ARCH_MAY_HAVE_PC_FDC
140 bool
Stephen Rothwellbed59272007-03-04 17:04:44 +1100141 default !PPC_PSERIES || PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000142
Kumar Gala08264cb2006-01-10 21:43:56 -0600143config PPC_OF
144 def_bool y
145
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000146config OF
147 def_bool y
148
Kumar Gala08264cb2006-01-10 21:43:56 -0600149config PPC_UDBG_16550
150 bool
151 default n
152
Kumar Gala08264cb2006-01-10 21:43:56 -0600153config GENERIC_TBSYNC
154 bool
155 default y if PPC32 && SMP
156 default n
157
Al Viroe65e1fc2006-09-12 03:04:40 -0400158config AUDIT_ARCH
159 bool
160 default y
161
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800162config GENERIC_BUG
163 bool
164 default y
165 depends on BUG
166
Johannes Bergb3028872007-03-20 05:18:02 +1100167config SYS_SUPPORTS_APM_EMULATION
Kumar Gala58da10b2007-05-23 09:51:46 -0500168 default y if PMAC_APM_EMU
Johannes Bergb3028872007-03-20 05:18:02 +1100169 bool
170
Kumar Galaf4fc4a52006-01-16 10:53:22 -0600171config DEFAULT_UIMAGE
172 bool
173 help
174 Used to allow a board to specify it wants a uImage built by default
175 default n
176
Scott Woodb09c1642008-01-17 16:31:40 -0600177config REDBOOT
178 bool
179
Johannes Berg801e4062007-12-08 02:12:39 +0100180config HIBERNATE_32
Johannes Berg543b9fd2007-05-03 22:31:38 +1000181 bool
Johannes Berg801e4062007-12-08 02:12:39 +0100182 depends on (PPC_PMAC && !SMP) || BROKEN
183 default y
184
185config HIBERNATE_64
186 bool
187 depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL)
188 default y
189
190config ARCH_HIBERNATION_POSSIBLE
191 bool
192 depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32)
Johannes Berg543b9fd2007-05-03 22:31:38 +1000193 default y
194
Johannes Bergf4cb5702007-12-08 02:14:00 +0100195config ARCH_SUSPEND_POSSIBLE
196 def_bool y
197 depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200
198
Benjamin Herrenschmidt4c75a6f2006-11-11 17:24:53 +1100199config PPC_DCR_NATIVE
200 bool
201 default n
202
203config PPC_DCR_MMIO
204 bool
205 default n
206
207config PPC_DCR
208 bool
209 depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
210 default y
211
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100212config PPC_OF_PLATFORM_PCI
213 bool
Stephen Rothwell373a6da2007-12-21 15:37:07 +1100214 depends on PCI
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100215 depends on PPC64 # not supported on 32 bits yet
216 default n
217
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000218source "init/Kconfig"
219
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100220source "arch/powerpc/sysdev/Kconfig"
Kumar Gala4330f5d2007-03-16 09:32:17 -0500221source "arch/powerpc/platforms/Kconfig"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000222
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000223menu "Kernel options"
224
225config HIGHMEM
226 bool "High memory support"
227 depends on PPC32
228
Tony Breeds1ad74992007-09-21 13:26:03 +1000229source kernel/time/Kconfig
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000230source kernel/Kconfig.hz
231source kernel/Kconfig.preempt
232source "fs/Kconfig.binfmt"
233
Mel Gormanba72cb82007-11-28 16:21:13 -0800234config HUGETLB_PAGE_SIZE_VARIABLE
235 bool
236 depends on HUGETLB_PAGE
237 default y
238
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000239config MATH_EMULATION
240 bool "Math emulation"
Kumar Gala4d527192007-01-26 00:23:34 -0600241 depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000242 ---help---
243 Some PowerPC chips designed for embedded applications do not have
244 a floating-point unit and therefore do not implement the
245 floating-point instructions in the PowerPC instruction set. If you
246 say Y here, the kernel will include code to emulate a floating-point
247 unit, which will allow programs that use floating-point
248 instructions to run.
249
Scott Wood5dd57a12007-09-18 15:29:35 -0500250config 8XX_MINIMAL_FPEMU
251 bool "Minimal math emulation for 8xx"
252 depends on 8xx && !MATH_EMULATION
253 help
254 Older arch/ppc kernels still emulated a few floating point
255 instructions such as load and store, even when full math
256 emulation is disabled. Say "Y" here if you want to preserve
257 this behavior.
258
259 It is recommended that you build a soft-float userspace instead.
260
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000261config IOMMU_VMERGE
Linas Vepstas768cc2d2007-07-18 02:09:35 +1000262 bool "Enable IOMMU virtual merging"
263 depends on PPC64
264 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000265 help
266 Cause IO segments sent to a device for DMA to be merged virtually
267 by the IOMMU when they happen to have been allocated contiguously.
268 This doesn't add pressure to the IOMMU allocator. However, some
269 drivers don't support getting large merged segments coming back
Linas Vepstas768cc2d2007-07-18 02:09:35 +1000270 from *_map_sg().
271
272 Most drivers don't have this problem; it is safe to say Y here.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000273
FUJITA Tomonorifb3475e2008-02-04 22:28:08 -0800274config IOMMU_HELPER
275 def_bool PPC64
276
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000277config HOTPLUG_CPU
278 bool "Support for enabling/disabling CPUs"
279 depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
280 ---help---
281 Say Y here to be able to disable and re-enable individual
282 CPUs at runtime on SMP machines.
283
284 Say N if you are unsure.
285
Yasunori Gotocc576372006-06-29 02:24:27 -0700286config ARCH_ENABLE_MEMORY_HOTPLUG
287 def_bool y
288
Badari Pulavartya99824f2008-02-05 00:10:18 -0800289config ARCH_HAS_WALK_MEMORY
290 def_bool y
291
Badari Pulavarty14824712008-02-05 00:10:17 -0800292config ARCH_ENABLE_MEMORY_HOTREMOVE
293 def_bool y
294
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000295config KEXEC
296 bool "kexec system call (EXPERIMENTAL)"
Dale Farnsworthfd4ba7e2007-05-12 10:58:43 +1000297 depends on (PPC_PRPMC2800 || PPC_MULTIPLATFORM) && EXPERIMENTAL
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000298 help
299 kexec is a system call that implements the ability to shutdown your
300 current kernel, and to start another kernel. It is like a reboot
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400301 but it is independent of the system firmware. And like a reboot
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 you can start any kernel with it, not just Linux.
303
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400304 The name comes from the similarity to the exec system call.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000305
306 It is an ongoing process to be certain the hardware in a machine
307 is properly shutdown, so do not be surprised if this code does not
308 initially work for you. It may help to enable device hotplugging
309 support. As of this writing the exact hardware interface is
310 strongly in flux, so no good recommendation can be made.
311
Haren Mynenie8625d462006-01-14 13:48:25 -0800312config CRASH_DUMP
Michael Ellermancd9c99d2006-03-10 15:01:08 +1100313 bool "Build a kdump crash kernel (EXPERIMENTAL)"
Haren Mynenie8625d462006-01-14 13:48:25 -0800314 depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
315 help
316 Build a kernel suitable for use as a kdump capture kernel.
317 The kernel will be linked at a different address than normal, and
318 so can only be used for Kdump.
319
320 Don't change this unless you know what you are doing.
321
Manish Ahuja242f2712008-03-22 10:50:50 +1100322config PHYP_DUMP
323 bool "Hypervisor-assisted dump (EXPERIMENTAL)"
324 depends on PPC_PSERIES && EXPERIMENTAL
325 help
326 Hypervisor-assisted dump is meant to be a kdump replacement
327 offering robustness and speed not possible without system
328 hypervisor assistence.
329
330 If unsure, say "N"
331
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000332config PPCBUG_NVRAM
333 bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
334 default y if PPC_PREP
335
336config IRQ_ALL_CPUS
337 bool "Distribute interrupts on all CPUs by default"
338 depends on SMP && !MV64360
339 help
340 This option gives the kernel permission to distribute IRQs across
341 multiple CPUs. Saying N here will route all IRQs to the first
342 CPU. Generally saying Y is safe, although some problems have been
343 reported with SMP Power Macintoshes with this option enabled.
344
Andy Whitcroftffa27b62005-10-28 17:46:58 -0700345config NUMA
346 bool "NUMA support"
347 depends on PPC64
348 default y if SMP && PPC_PSERIES
349
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700350config NODES_SHIFT
351 int
352 default "4"
353 depends on NEED_MULTIPLE_NODES
354
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000355config ARCH_SELECT_MEMORY_MODEL
356 def_bool y
357 depends on PPC64
358
359config ARCH_FLATMEM_ENABLE
Andy Whitcroft9100b202005-11-29 19:20:55 +0000360 def_bool y
361 depends on (PPC64 && !NUMA) || PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000362
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000363config ARCH_SPARSEMEM_ENABLE
364 def_bool y
Andy Whitcroft9100b202005-11-29 19:20:55 +0000365 depends on PPC64
Andy Whitcroftd29eff72007-10-16 01:24:17 -0700366 select SPARSEMEM_VMEMMAP_ENABLE
Anton Blanchard45fb6ce2005-11-11 14:22:35 +1100367
368config ARCH_SPARSEMEM_DEFAULT
369 def_bool y
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100370 depends on (SMP && PPC_PSERIES) || PPC_PS3
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000371
Mel Gormanc67c3cb2006-09-27 01:49:49 -0700372config ARCH_POPULATES_NODE_MAP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000373 def_bool y
Mel Gormanc67c3cb2006-09-27 01:49:49 -0700374
375source "mm/Kconfig"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000376
Mike Kravetz7e9191d2005-11-07 09:39:48 -0800377config ARCH_MEMORY_PROBE
378 def_bool y
379 depends on MEMORY_HOTPLUG
380
Andy Whitcroft75167952006-10-21 10:24:14 -0700381# Some NUMA nodes have memory ranges that span
382# other nodes. Even though a pfn is valid and
383# between a node's start and end pfns, it may not
384# reside on that node. See memmap_init_zone()
385# for details.
386config NODES_SPAN_OTHER_NODES
387 def_bool y
388 depends on NEED_MULTIPLE_NODES
389
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000390config PPC_HAS_HASH_64K
391 bool
392 depends on PPC64
393 default n
394
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100395config PPC_64K_PAGES
396 bool "64k page size"
Benjamin Herrenschmidt863c84b2005-11-07 00:57:58 -0800397 depends on PPC64
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000398 select PPC_HAS_HASH_64K
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100399 help
400 This option changes the kernel logical page size to 64k. On machines
Kumar Gala98750262007-04-12 18:01:34 -0500401 without processor support for 64k pages, the kernel will simulate
402 them by loading each individual 4k page on demand transparently,
403 while on hardware with such support, it will be used to map
404 normal application pages.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100405
Stephen Rothwell53bcddb2008-04-11 11:11:56 +1000406config FORCE_MAX_ZONEORDER
407 int "Maximum zone order"
408 default "9" if PPC_64K_PAGES
409 default "13" if PPC64 && !PPC_64K_PAGES
410 default "11"
411 help
412 The kernel memory allocator divides physically contiguous memory
413 blocks into "zones", where each zone is a power of two number of
414 pages. This option selects the largest power of two that the kernel
415 keeps in the memory allocator. If you need to allocate very large
416 blocks of physically contiguous memory, then you may need to
417 increase this value.
418
419 This config option is actually maximum order plus one. For example,
420 a value of 11 means that the largest free memory block is 2^10 pages.
421
422 The page size is not necessarily 4KB. For example, on 64-bit
423 systems, 64KB pages can be enabled via CONFIG_PPC_64K_PAGES. Keep
424 this in mind when choosing a value for this option.
425
Paul Mackerrasfa282372008-01-24 08:35:13 +1100426config PPC_SUBPAGE_PROT
427 bool "Support setting protections for 4k subpages"
428 depends on PPC_64K_PAGES
429 help
430 This option adds support for a system call to allow user programs
431 to set access permissions (read/write, readonly, or no access)
432 on the 4k subpages of each 64k page.
433
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000434config SCHED_SMT
435 bool "SMT (Hyperthreading) scheduler support"
436 depends on PPC64 && SMP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000437 help
438 SMT scheduler support improves the CPU scheduler's decision making
439 when dealing with POWER5 cpus at a cost of slightly increased
440 overhead in some places. If unsure say N here.
441
442config PROC_DEVICETREE
Paul Mackerras5f296752005-10-17 20:14:59 +1000443 bool "Support for device tree in /proc"
444 depends on PROC_FS
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000445 help
446 This option adds a device-tree directory under /proc which contains
447 an image of the device tree that the kernel copies from Open
Paul Mackerras5f296752005-10-17 20:14:59 +1000448 Firmware or other boot firmware. If unsure, say Y here.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000449
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000450config CMDLINE_BOOL
451 bool "Default bootloader kernel arguments"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000452
453config CMDLINE
454 string "Initial kernel command string"
455 depends on CMDLINE_BOOL
456 default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
457 help
458 On some platforms, there is currently no way for the boot loader to
459 pass arguments to the kernel. For these platforms, you can supply
460 some command-line options at build time by entering them here. In
461 most cases you will need to specify the root device here.
462
463if !44x || BROKEN
Johannes Bergb28f5082008-01-15 23:17:00 -0500464config ARCH_WANTS_FREEZER_CONTROL
465 def_bool y
466 depends on ADB_PMU
467
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000468source kernel/power/Kconfig
469endif
470
471config SECCOMP
472 bool "Enable seccomp to safely compute untrusted bytecode"
473 depends on PROC_FS
474 default y
475 help
476 This kernel feature is useful for number crunching applications
477 that may need to compute untrusted bytecode during their
478 execution. By using pipes or other transports made available to
479 the process as file descriptors supporting the read/write
480 syscalls, it's possible to isolate those applications in
481 their own address space using seccomp. Once seccomp is
482 enabled via /proc/<pid>/seccomp, it cannot be disabled
483 and the task is only allowed to execute a few safe syscalls
484 defined by each seccomp mode.
485
486 If unsure, say Y. Only embedded should say N here.
487
488endmenu
489
490config ISA_DMA_API
491 bool
Stephen Rothwell373a6da2007-12-21 15:37:07 +1100492 default !PPC_ISERIES || PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000493
494menu "Bus options"
495
496config ISA
497 bool "Support for ISA-bus hardware"
498 depends on PPC_PREP || PPC_CHRP
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000499 select PPC_I8259
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000500 help
501 Find out whether you have ISA slots on your motherboard. ISA is the
502 name of a bus system, i.e. the way the CPU talks to the other stuff
503 inside your box. If you have an Apple machine, say N here; if you
504 have an IBM RS/6000 or pSeries machine or a PReP machine, say Y. If
505 you have an embedded board, consult your board documentation.
506
Christoph Lameter5ac6da62007-02-10 01:43:14 -0800507config ZONE_DMA
508 bool
509 default y
510
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000511config GENERIC_ISA_DMA
512 bool
513 depends on PPC64 || POWER4 || 6xx && !CPM2
514 default y
515
Paul Mackerras25635c72005-10-26 16:36:55 +1000516config PPC_INDIRECT_PCI
517 bool
518 depends on PCI
Becky Bruce63dafe52006-01-14 16:57:39 -0600519 default y if 40x || 44x
Paul Mackerras25635c72005-10-26 16:36:55 +1000520 default n
521
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000522config EISA
523 bool
524
525config SBUS
526 bool
527
Kumar Gala08264cb2006-01-10 21:43:56 -0600528config FSL_SOC
529 bool
530
Roy Zang55c44992007-07-10 18:44:34 +0800531config FSL_PCI
532 bool
533 select PPC_INDIRECT_PCI
534
Stefan Roese2a706912008-03-26 22:39:50 +1100535config 4xx_SOC
536 bool
537
Anton Vorontsovacaa7aa2008-04-11 21:03:40 +0400538config FSL_LBC
539 bool
540 help
541 Freescale Localbus support
542
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000543# Yes MCA RS/6000s exist but Linux-PPC does not currently support any
544config MCA
545 bool
546
547config PCI
Jon Loeliger53158622006-08-09 10:37:28 -0500548 bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx \
Stephen Rothwellbed59272007-03-04 17:04:44 +1100549 || PPC_MPC52xx || (EMBEDDED && (PPC_PSERIES || PPC_ISERIES)) \
Sean MacLennanf9bdedb2008-01-22 04:55:29 +1100550 || PPC_PS3 || 44x
John Rigbye177edc2008-01-29 04:28:53 +1100551 default y if !40x && !CPM2 && !8xx && !PPC_MPC512x && !PPC_83xx \
Jon Loeliger53158622006-08-09 10:37:28 -0500552 && !PPC_85xx && !PPC_86xx
David Gibsonf21f49e2007-06-13 14:52:54 +1000553 default PCI_PERMEDIA if !4xx && !CPM2 && !8xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000554 default PCI_QSPAN if !4xx && !CPM2 && 8xx
Michael Ellermandf87ef52007-05-08 12:58:34 +1000555 select ARCH_SUPPORTS_MSI
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000556 help
557 Find out whether your system includes a PCI bus. PCI is the name of
558 a bus system, i.e. the way the CPU talks to the other stuff inside
559 your box. If you say Y here, the kernel will include drivers and
560 infrastructure code to support PCI bus devices.
561
562config PCI_DOMAINS
Matthew Wilcox36e23592007-07-10 10:54:40 -0600563 def_bool PCI
564
565config PCI_SYSCALL
566 def_bool PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000567
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000568config PCI_QSPAN
569 bool "QSpan PCI"
570 depends on !4xx && !CPM2 && 8xx
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000571 select PPC_I8259
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000572 help
573 Say Y here if you have a system based on a Motorola 8xx-series
574 embedded processor with a QSPAN PCI interface, otherwise say N.
575
576config PCI_8260
577 bool
578 depends on PCI && 8260
Paul Mackerras25635c72005-10-26 16:36:55 +1000579 select PPC_INDIRECT_PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000580 default y
581
582config 8260_PCI9
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700583 bool "Enable workaround for MPC826x erratum PCI 9"
Scott Woode00c5492007-09-14 15:41:56 -0500584 depends on PCI_8260 && !8272
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000585 default y
586
587choice
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700588 prompt "IDMA channel for PCI 9 workaround"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000589 depends on 8260_PCI9
590
591config 8260_PCI9_IDMA1
592 bool "IDMA1"
593
594config 8260_PCI9_IDMA2
595 bool "IDMA2"
596
597config 8260_PCI9_IDMA3
598 bool "IDMA3"
599
600config 8260_PCI9_IDMA4
601 bool "IDMA4"
602
603endchoice
604
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500605source "drivers/pci/pcie/Kconfig"
606
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000607source "drivers/pci/Kconfig"
608
609source "drivers/pcmcia/Kconfig"
610
611source "drivers/pci/hotplug/Kconfig"
612
Zhang Weif1f389d2008-04-18 13:33:39 -0700613config HAS_RAPIDIO
614 bool
615 default n
616
617config RAPIDIO
618 bool "RapidIO support"
619 depends on HAS_RAPIDIO
620 help
621 If you say Y here, the kernel will include drivers and
622 infrastructure code to support RapidIO interconnect devices.
623
624source "drivers/rapidio/Kconfig"
625
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000626endmenu
627
628menu "Advanced setup"
629 depends on PPC32
630
631config ADVANCED_OPTIONS
632 bool "Prompt for advanced kernel configuration options"
633 help
634 This option will enable prompting for a variety of advanced kernel
635 configuration options. These options can cause the kernel to not
636 work if they are set incorrectly, but can be used to optimize certain
637 aspects of kernel memory management.
638
639 Unless you know what you are doing, say N here.
640
641comment "Default settings for advanced configuration options are used"
642 depends on !ADVANCED_OPTIONS
643
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000644config LOWMEM_SIZE_BOOL
645 bool "Set maximum low memory"
646 depends on ADVANCED_OPTIONS
647 help
648 This option allows you to set the maximum amount of memory which
649 will be used as "low memory", that is, memory which the kernel can
650 access directly, without having to set up a kernel virtual mapping.
651 This can be useful in optimizing the layout of kernel virtual
652 memory.
653
654 Say N here unless you know what you are doing.
655
656config LOWMEM_SIZE
657 hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
658 default "0x30000000"
659
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000660config RELOCATABLE
661 bool "Build a relocatable kernel (EXPERIMENTAL)"
662 depends on EXPERIMENTAL && ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
663 help
664 This builds a kernel image that is capable of running at the
665 location the kernel is loaded at (some alignment restrictions may
666 exist).
667
668 One use is for the kexec on panic case where the recovery kernel
669 must live at a different physical address than the primary
670 kernel.
671
672 Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address
673 it has been loaded at and the compile time physical addresses
674 CONFIG_PHYSICAL_START is ignored. However CONFIG_PHYSICAL_START
675 setting can still be useful to bootwrappers that need to know the
676 load location of the kernel (eg. u-boot/mkimage).
677
678config PAGE_OFFSET_BOOL
679 bool "Set custom page offset address"
680 depends on ADVANCED_OPTIONS
681 help
682 This option allows you to set the kernel virtual address at which
683 the kernel will map low memory. This can be useful in optimizing
684 the virtual memory layout of the system.
685
686 Say N here unless you know what you are doing.
687
688config PAGE_OFFSET
689 hex "Virtual address of memory base" if PAGE_OFFSET_BOOL
690 default "0xc0000000"
691
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000692config KERNEL_START_BOOL
693 bool "Set custom kernel base address"
694 depends on ADVANCED_OPTIONS
695 help
696 This option allows you to set the kernel virtual address at which
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000697 the kernel will be loaded. Normally this should match PAGE_OFFSET
698 however there are times (like kdump) that one might not want them
699 to be the same.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000700
701 Say N here unless you know what you are doing.
702
703config KERNEL_START
704 hex "Virtual address of kernel base" if KERNEL_START_BOOL
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000705 default PAGE_OFFSET if PAGE_OFFSET_BOOL
706 default "0xc2000000" if CRASH_DUMP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000707 default "0xc0000000"
708
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000709config PHYSICAL_START_BOOL
710 bool "Set physical address where the kernel is loaded"
711 depends on ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
712 help
713 This gives the physical address where the kernel is loaded.
714
715 Say N here unless you know what you are doing.
716
717config PHYSICAL_START
718 hex "Physical address where the kernel is loaded" if PHYSICAL_START_BOOL
719 default "0x02000000" if PPC_STD_MMU && CRASH_DUMP
720 default "0x00000000"
721
722config PHYSICAL_ALIGN
723 hex
724 default "0x10000000" if FSL_BOOKE
725 help
726 This value puts the alignment restrictions on physical address
727 where kernel is loaded and run from. Kernel is compiled for an
728 address which meets above alignment restriction.
729
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000730config TASK_SIZE_BOOL
731 bool "Set custom user task size"
732 depends on ADVANCED_OPTIONS
733 help
734 This option allows you to set the amount of virtual address space
735 allocated to user tasks. This can be useful in optimizing the
736 virtual memory layout of the system.
737
738 Say N here unless you know what you are doing.
739
740config TASK_SIZE
741 hex "Size of user task space" if TASK_SIZE_BOOL
Kumar Gala4d9e55102007-10-11 13:40:21 -0500742 default "0x80000000" if PPC_PREP || PPC_8xx
743 default "0xc0000000"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000744
745config CONSISTENT_START_BOOL
746 bool "Set custom consistent memory pool address"
747 depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
748 help
749 This option allows you to set the base virtual address
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200750 of the consistent memory pool. This pool of virtual
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000751 memory is used to make consistent memory allocations.
752
753config CONSISTENT_START
754 hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
Scott Woodccf0d682007-07-16 11:28:18 -0500755 default "0xfd000000" if (NOT_COHERENT_CACHE && 8xx)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000756 default "0xff100000" if NOT_COHERENT_CACHE
757
758config CONSISTENT_SIZE_BOOL
759 bool "Set custom consistent memory pool size"
760 depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
761 help
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200762 This option allows you to set the size of the
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000763 consistent memory pool. This pool of virtual memory
764 is used to make consistent memory allocations.
765
766config CONSISTENT_SIZE
767 hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
768 default "0x00200000" if NOT_COHERENT_CACHE
769
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000770config PIN_TLB
771 bool "Pinned Kernel TLBs (860 ONLY)"
772 depends on ADVANCED_OPTIONS && 8xx
773endmenu
774
Stephen Rothwellcabb5582005-09-30 16:16:52 +1000775if PPC64
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000776config PAGE_OFFSET
Stephen Rothwellcabb5582005-09-30 16:16:52 +1000777 hex
Stephen Rothwelleeb2d212005-09-30 17:24:15 +1000778 default "0xc000000000000000"
Kumar Gala37dd2ba2008-04-22 04:22:34 +1000779config KERNEL_START
780 hex
781 default "0xc000000002000000" if CRASH_DUMP
782 default "0xc000000000000000"
783config PHYSICAL_START
784 hex
785 default "0x02000000" if CRASH_DUMP
786 default "0x00000000"
Stephen Rothwellcabb5582005-09-30 16:16:52 +1000787endif
788
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000789source "net/Kconfig"
790
791source "drivers/Kconfig"
792
793source "fs/Kconfig"
794
795# XXX source "arch/ppc/8xx_io/Kconfig"
796
797# XXX source "arch/ppc/8260_io/Kconfig"
798
Li Yang98658532006-10-03 23:10:46 -0500799source "arch/powerpc/sysdev/qe_lib/Kconfig"
800
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000801source "lib/Kconfig"
802
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000803source "arch/powerpc/Kconfig.debug"
804
805source "security/Kconfig"
806
807config KEYS_COMPAT
808 bool
809 depends on COMPAT && KEYS
810 default y
811
812source "crypto/Kconfig"
Domen Puncer6f668282007-09-21 00:00:11 +1000813
814config PPC_CLOCK
815 bool
816 default n
Sylvain Munaut1088a202007-09-16 20:53:25 +1000817
818config PPC_LIB_RHEAP
819 bool
820
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500821source "arch/powerpc/kvm/Kconfig"