blob: ec092b7ea24218f43c3a35827c4a29508a5f41d0 [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
7config 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
Johannes Berg17e638b2007-03-19 11:53:53 +010014config PPC_PM_NEEDS_RTC_LIB
15 bool
16 select RTC_LIB
17 default y if PM
18
Paul Mackerras14cf11a2005-09-26 16:04:21 +100019config PPC32
20 bool
21 default y if !PPC64
22
23config 64BIT
24 bool
25 default y if PPC64
26
27config PPC_MERGE
28 def_bool y
29
30config MMU
31 bool
32 default y
33
Paul Mackerras14cf11a2005-09-26 16:04:21 +100034config GENERIC_HARDIRQS
35 bool
36 default y
37
Ingo Molnar0d7012a2006-06-29 02:24:43 -070038config IRQ_PER_CPU
39 bool
40 default y
41
Paul Mackerras14cf11a2005-09-26 16:04:21 +100042config RWSEM_GENERIC_SPINLOCK
43 bool
44
45config RWSEM_XCHGADD_ALGORITHM
46 bool
47 default y
48
David Howellsf0d1b0b2006-12-08 02:37:49 -080049config ARCH_HAS_ILOG2_U32
50 bool
David Howellsef55d532006-12-08 02:37:53 -080051 default y
David Howellsf0d1b0b2006-12-08 02:37:49 -080052
53config ARCH_HAS_ILOG2_U64
54 bool
David Howellsef55d532006-12-08 02:37:53 -080055 default y if 64BIT
David Howellsf0d1b0b2006-12-08 02:37:49 -080056
Akinobu Mitae779b2f2006-03-26 01:39:33 -080057config GENERIC_HWEIGHT
58 bool
59 default y
60
Paul Mackerras14cf11a2005-09-26 16:04:21 +100061config GENERIC_CALIBRATE_DELAY
62 bool
63 default y
64
Jon Mason0a9cb462006-05-19 15:35:32 -050065config GENERIC_FIND_NEXT_BIT
66 bool
67 default y
68
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069config PPC
70 bool
71 default y
72
73config EARLY_PRINTK
74 bool
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110075 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +100076
77config COMPAT
78 bool
79 default y if PPC64
80
81config SYSVIPC_COMPAT
82 bool
83 depends on COMPAT && SYSVIPC
84 default y
85
86# All PPC32s use generic nvram driver through ppc_md
87config GENERIC_NVRAM
88 bool
89 default y if PPC32
90
91config SCHED_NO_NO_OMIT_FRAME_POINTER
92 bool
93 default y
94
95config ARCH_MAY_HAVE_PC_FDC
96 bool
Stephen Rothwellbed59272007-03-04 17:04:44 +110097 default !PPC_PSERIES || PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +100098
Kumar Gala08264cb2006-01-10 21:43:56 -060099config PPC_OF
100 def_bool y
101
102config PPC_UDBG_16550
103 bool
104 default n
105
Kumar Gala08264cb2006-01-10 21:43:56 -0600106config GENERIC_TBSYNC
107 bool
108 default y if PPC32 && SMP
109 default n
110
Al Viroe65e1fc2006-09-12 03:04:40 -0400111config AUDIT_ARCH
112 bool
113 default y
114
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800115config GENERIC_BUG
116 bool
117 default y
118 depends on BUG
119
Kumar Galaf4fc4a52006-01-16 10:53:22 -0600120config DEFAULT_UIMAGE
121 bool
122 help
123 Used to allow a board to specify it wants a uImage built by default
124 default n
125
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000126menu "Processor support"
127choice
128 prompt "Processor Type"
129 depends on PPC32
130 default 6xx
131
Kumar Gala08264cb2006-01-10 21:43:56 -0600132config CLASSIC32
Grant Likely650f3282006-12-04 17:29:13 -0700133 bool "52xx/6xx/7xx/74xx"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000134 select PPC_FPU
Kumar Gala08264cb2006-01-10 21:43:56 -0600135 select 6xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000136 help
137 There are four families of PowerPC chips supported. The more common
138 types (601, 603, 604, 740, 750, 7400), the Motorola embedded
139 versions (821, 823, 850, 855, 860, 52xx, 82xx, 83xx), the AMCC
140 embedded versions (403 and 405) and the high end 64 bit Power
141 processors (POWER 3, POWER4, and IBM PPC970 also known as G5).
Grant Likely650f3282006-12-04 17:29:13 -0700142
143 This option is the catch-all for 6xx types, including some of the
144 embedded versions. Unless there is see an option for the specific
145 chip family you are using, you want this option.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146
Grant Likely650f3282006-12-04 17:29:13 -0700147 You do not want this if you are building a kernel for a 64 bit
148 IBM RS/6000 or an Apple G5, choose 6xx.
149
150 If unsure, select this option
151
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000152 Note that the kernel runs in 32-bit mode even on 64-bit chips.
153
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000154config PPC_82xx
155 bool "Freescale 82xx"
Kumar Gala08264cb2006-01-10 21:43:56 -0600156 select 6xx
157 select PPC_FPU
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000158
159config PPC_83xx
160 bool "Freescale 83xx"
Kumar Gala08264cb2006-01-10 21:43:56 -0600161 select 6xx
162 select FSL_SOC
163 select 83xx
164 select PPC_FPU
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000165
Becky Bruce63dafe52006-01-14 16:57:39 -0600166config PPC_85xx
167 bool "Freescale 85xx"
168 select E500
169 select FSL_SOC
170 select 85xx
171
Jon Loeligerc9b484b2006-06-17 17:52:35 -0500172config PPC_86xx
173 bool "Freescale 86xx"
174 select 6xx
175 select FSL_SOC
176 select PPC_FPU
177 select ALTIVEC
178 help
179 The Freescale E600 SoCs have 74xx cores.
180
Vitaly Bordug5902ebc2007-01-24 22:41:06 +0300181config PPC_8xx
182 bool "Freescale 8xx"
183 select FSL_SOC
184 select 8xx
185
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000186config 40x
187 bool "AMCC 40x"
Benjamin Herrenschmidt4c75a6f2006-11-11 17:24:53 +1100188 select PPC_DCR_NATIVE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000189
190config 44x
191 bool "AMCC 44x"
Benjamin Herrenschmidt4c75a6f2006-11-11 17:24:53 +1100192 select PPC_DCR_NATIVE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000193
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000194
195config E200
196 bool "Freescale e200"
197
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000198endchoice
199
200config POWER4_ONLY
201 bool "Optimize for POWER4"
Paul Mackerras187a0062005-10-06 12:49:05 +1000202 depends on PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000203 default n
204 ---help---
205 Cause the compiler to optimize for POWER4/POWER5/PPC970 processors.
206 The resulting binary will not work on POWER3 or RS64 processors
207 when compiled with binutils 2.15 or later.
208
209config POWER3
210 bool
Paul Mackerras187a0062005-10-06 12:49:05 +1000211 depends on PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000212 default y if !POWER4_ONLY
213
214config POWER4
Paul Mackerras187a0062005-10-06 12:49:05 +1000215 depends on PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000216 def_bool y
217
Kumar Gala08264cb2006-01-10 21:43:56 -0600218config 6xx
219 bool
220
221# this is temp to handle compat with arch=ppc
Vitaly Bordug5902ebc2007-01-24 22:41:06 +0300222config 8xx
223 bool
224
225# this is temp to handle compat with arch=ppc
Kumar Gala08264cb2006-01-10 21:43:56 -0600226config 83xx
227 bool
228
Becky Bruce63dafe52006-01-14 16:57:39 -0600229# this is temp to handle compat with arch=ppc
230config 85xx
231 bool
232
233config E500
234 bool
235
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000236config PPC_FPU
Paul Mackerras187a0062005-10-06 12:49:05 +1000237 bool
238 default y if PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000239
Benjamin Herrenschmidt4c75a6f2006-11-11 17:24:53 +1100240config PPC_DCR_NATIVE
241 bool
242 default n
243
244config PPC_DCR_MMIO
245 bool
246 default n
247
248config PPC_DCR
249 bool
250 depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
251 default y
252
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100253config PPC_OF_PLATFORM_PCI
254 bool
255 depends on PPC64 # not supported on 32 bits yet
256 default n
257
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000258config BOOKE
259 bool
260 depends on E200 || E500
261 default y
262
263config FSL_BOOKE
264 bool
265 depends on E200 || E500
266 default y
267
268config PTE_64BIT
269 bool
270 depends on 44x || E500
271 default y if 44x
272 default y if E500 && PHYS_64BIT
273
274config PHYS_64BIT
275 bool 'Large physical address support' if E500
276 depends on 44x || E500
Benjamin Herrenschmidt3d1ea8e2006-11-11 17:25:19 +1100277 select RESOURCES_64BIT
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000278 default y if 44x
279 ---help---
280 This option enables kernel support for larger than 32-bit physical
281 addresses. This features is not be available on all e500 cores.
282
283 If in doubt, say N here.
284
285config ALTIVEC
286 bool "AltiVec Support"
Kumar Gala08264cb2006-01-10 21:43:56 -0600287 depends on CLASSIC32 || POWER4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000288 ---help---
289 This option enables kernel support for the Altivec extensions to the
290 PowerPC processor. The kernel currently supports saving and restoring
291 altivec registers, and turning on the 'altivec enable' bit so user
292 processes can execute altivec instructions.
293
294 This option is only usefully if you have a processor that supports
295 altivec (G4, otherwise known as 74xx series), but does not have
296 any affect on a non-altivec cpu (it does, however add code to the
297 kernel).
298
299 If in doubt, say Y here.
300
301config SPE
302 bool "SPE Support"
303 depends on E200 || E500
Becky Bruce63dafe52006-01-14 16:57:39 -0600304 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000305 ---help---
306 This option enables kernel support for the Signal Processing
307 Extensions (SPE) to the PowerPC processor. The kernel currently
308 supports saving and restoring SPE registers, and turning on the
309 'spe enable' bit so user processes can execute SPE instructions.
310
311 This option is only useful if you have a processor that supports
312 SPE (e500, otherwise known as 85xx series), but does not have any
313 effect on a non-spe cpu (it does, however add code to the kernel).
314
315 If in doubt, say Y here.
316
317config PPC_STD_MMU
318 bool
319 depends on 6xx || POWER3 || POWER4 || PPC64
320 default y
321
322config PPC_STD_MMU_32
323 def_bool y
324 depends on PPC_STD_MMU && PPC32
325
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100326config VIRT_CPU_ACCOUNTING
327 bool "Deterministic task and CPU time accounting"
328 depends on PPC64
329 default y
330 help
331 Select this option to enable more accurate task and CPU time
332 accounting. This is done by reading a CPU counter on each
333 kernel entry and exit and on transitions within the kernel
334 between system, softirq and hardirq state, so there is a
335 small performance impact. This also enables accounting of
336 stolen time on logically-partitioned systems running on
337 IBM POWER5-based machines.
338
339 If in doubt, say Y here.
340
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000341config SMP
342 depends on PPC_STD_MMU
343 bool "Symmetric multi-processing support"
344 ---help---
345 This enables support for systems with more than one CPU. If you have
346 a system with only one CPU, say N. If you have a system with more
347 than one CPU, say Y. Note that the kernel does not currently
348 support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
349 since they have inadequate hardware support for multiprocessor
350 operation.
351
352 If you say N here, the kernel will run on single and multiprocessor
353 machines, but will use only one CPU of a multiprocessor machine. If
354 you say Y here, the kernel will run on single-processor machines.
355 On a single-processor machine, the kernel will run faster if you say
356 N here.
357
358 If you don't know what to do here, say N.
359
360config NR_CPUS
Olaf Heringe8a167a2005-12-01 21:10:10 +0100361 int "Maximum number of CPUs (2-128)"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000362 range 2 128
363 depends on SMP
364 default "32" if PPC64
365 default "4"
366
367config NOT_COHERENT_CACHE
368 bool
369 depends on 4xx || 8xx || E200
370 default y
371endmenu
372
373source "init/Kconfig"
374
375menu "Platform support"
Kumar Gala08264cb2006-01-10 21:43:56 -0600376 depends on PPC64 || CLASSIC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000377
378choice
379 prompt "Machine type"
380 default PPC_MULTIPLATFORM
381
382config PPC_MULTIPLATFORM
383 bool "Generic desktop/server/laptop"
384 help
385 Select this option if configuring for an IBM pSeries or
386 RS/6000 machine, an Apple machine, or a PReP, CHRP,
387 Maple or Cell-based machine.
388
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000389config EMBEDDED6xx
390 bool "Embedded 6xx/7xx/7xxx-based board"
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800391 depends on PPC32 && (BROKEN||BROKEN_ON_SMP)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000392
393config APUS
394 bool "Amiga-APUS"
395 depends on PPC32 && BROKEN
396 help
397 Select APUS if configuring for a PowerUP Amiga.
398 More information is available at:
399 <http://linux-apus.sourceforge.net/>.
400endchoice
401
Li Yang98658532006-10-03 23:10:46 -0500402config QUICC_ENGINE
403 bool
404 depends on PPC_MPC836x || PPC_MPC832x
405 default y
406 help
407 The QUICC Engine (QE) is a new generation of communications
408 coprocessors on Freescale embedded CPUs (akin to CPM in older chips).
409 Selecting this option means that you wish to build a kernel
410 for a machine with a QE coprocessor.
411
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000412config PPC_PSERIES
413 depends on PPC_MULTIPLATFORM && PPC64
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700414 bool "IBM pSeries & new (POWER5-based) iSeries"
Zang Roy-r6191172335932006-08-25 14:16:30 +1000415 select MPIC
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000416 select PPC_I8259
Paul Mackerras033ef332005-10-26 17:05:24 +1000417 select PPC_RTAS
418 select RTAS_ERROR_LOGGING
Paul Mackerras13b8a272006-01-10 16:19:05 +1100419 select PPC_UDBG_16550
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100420 select PPC_NATIVE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000421 default y
422
Stephen Rothwella542dbd2006-09-25 13:49:58 +1000423config PPC_ISERIES
424 bool "IBM Legacy iSeries"
425 depends on PPC_MULTIPLATFORM && PPC64
Benjamin Herrenschmidt4cb3cee2006-11-11 17:25:10 +1100426 select PPC_INDIRECT_IO
Stephen Rothwella542dbd2006-09-25 13:49:58 +1000427
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000428config PPC_CHRP
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700429 bool "Common Hardware Reference Platform (CHRP) based machines"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000430 depends on PPC_MULTIPLATFORM && PPC32
Zang Roy-r6191172335932006-08-25 14:16:30 +1000431 select MPIC
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000432 select PPC_I8259
Paul Mackerras25635c72005-10-26 16:36:55 +1000433 select PPC_INDIRECT_PCI
Paul Mackerras033ef332005-10-26 17:05:24 +1000434 select PPC_RTAS
Paul Mackerras830825d2005-10-26 17:16:38 +1000435 select PPC_MPC106
Paul Mackerras13b8a272006-01-10 16:19:05 +1100436 select PPC_UDBG_16550
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100437 select PPC_NATIVE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000438 default y
439
Grant Likelyd41502482006-11-27 14:16:24 -0700440config PPC_MPC52xx
441 bool
442 default n
443
Grant Likelyf42963f2006-12-12 15:13:19 -0700444config PPC_MPC5200
445 bool
446 select PPC_MPC52xx
447 default n
448
449config PPC_MPC5200_BUGFIX
450 bool "MPC5200 (L25R) bugfix support"
451 depends on PPC_MPC5200
452 default n
453 help
454 Enable workarounds for original MPC5200 errata. This is not required
455 for MPC5200B based boards.
456
457 It is safe to say 'Y' here
458
Nicolas DETc37858d2006-11-05 12:57:16 +0100459config PPC_EFIKA
460 bool "bPlan Efika 5k2. MPC5200B based computer"
461 depends on PPC_MULTIPLATFORM && PPC32
462 select PPC_RTAS
463 select RTAS_PROC
464 select PPC_MPC52xx
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100465 select PPC_NATIVE
Olaf Hering72328462007-01-03 18:33:56 +0100466 default n
Nicolas DETc37858d2006-11-05 12:57:16 +0100467
Grant Likely6b642532006-11-27 14:16:28 -0700468config PPC_LITE5200
469 bool "Freescale Lite5200 Eval Board"
470 depends on PPC_MULTIPLATFORM && PPC32
Grant Likelyf42963f2006-12-12 15:13:19 -0700471 select PPC_MPC5200
Grant Likely6b642532006-11-27 14:16:28 -0700472 default n
473
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000474config PPC_PMAC
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700475 bool "Apple PowerMac based machines"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000476 depends on PPC_MULTIPLATFORM
Zang Roy-r6191172335932006-08-25 14:16:30 +1000477 select MPIC
Paul Mackerras25635c72005-10-26 16:36:55 +1000478 select PPC_INDIRECT_PCI if PPC32
Paul Mackerrasb6a4ce52005-10-26 22:54:17 +1000479 select PPC_MPC106 if PPC32
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100480 select PPC_NATIVE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000481 default y
482
483config PPC_PMAC64
484 bool
485 depends on PPC_PMAC && POWER4
Zang Roy-r6191172335932006-08-25 14:16:30 +1000486 select MPIC
Paul Mackerras35499c02005-10-22 16:02:39 +1000487 select U3_DART
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100488 select MPIC_BROKEN_U3
Paul Mackerras8ad200d2005-11-04 13:28:58 +1100489 select GENERIC_TBSYNC
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000490 select PPC_970_NAP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000491 default y
492
493config PPC_PREP
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700494 bool "PowerPC Reference Platform (PReP) based machines"
Paul Mackerras5be396b2005-11-14 17:31:55 +1100495 depends on PPC_MULTIPLATFORM && PPC32 && BROKEN
Zang Roy-r6191172335932006-08-25 14:16:30 +1000496 select MPIC
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000497 select PPC_I8259
Paul Mackerras25635c72005-10-26 16:36:55 +1000498 select PPC_INDIRECT_PCI
Paul Mackerras13b8a272006-01-10 16:19:05 +1100499 select PPC_UDBG_16550
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100500 select PPC_NATIVE
Olaf Hering72328462007-01-03 18:33:56 +0100501 default n
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000502
503config PPC_MAPLE
504 depends on PPC_MULTIPLATFORM && PPC64
Andrew Morton4a3ecc62006-06-01 20:36:04 -0700505 bool "Maple 970FX Evaluation Board"
Zang Roy-r6191172335932006-08-25 14:16:30 +1000506 select MPIC
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000507 select U3_DART
508 select MPIC_BROKEN_U3
Paul Mackerras8ad200d2005-11-04 13:28:58 +1100509 select GENERIC_TBSYNC
Paul Mackerras13b8a272006-01-10 16:19:05 +1100510 select PPC_UDBG_16550
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000511 select PPC_970_NAP
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100512 select PPC_NATIVE
Nathan Lynch9d9d868e2006-12-06 18:50:44 -0600513 select PPC_RTAS
Nathan Lynch4297c982007-02-05 20:01:15 -0600514 select MMIO_NVRAM
David Woodhouse8cdf92a2007-01-01 19:31:15 +0000515 select ATA_NONSTANDARD if ATA
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000516 default n
517 help
518 This option enables support for the Maple 970FX Evaluation Board.
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +0100519 For more information, refer to <http://www.970eval.com>
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000520
Olof Johansson1e768752006-09-06 14:42:08 -0500521config PPC_PASEMI
522 depends on PPC_MULTIPLATFORM && PPC64
523 bool "PA Semi SoC-based platforms"
524 default n
525 select MPIC
526 select PPC_UDBG_16550
527 select GENERIC_TBSYNC
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100528 select PPC_NATIVE
Olof Johansson1e768752006-09-06 14:42:08 -0500529 help
530 This option enables support for PA Semi's PWRficient line
531 of SoC processors, including PA6T-1682M
532
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500533config PPC_CELL
Geoff Levandc01ea722006-06-19 20:33:28 +0200534 bool
535 default n
536
537config PPC_CELL_NATIVE
538 bool
539 select PPC_CELL
Benjamin Herrenschmidt4c75a6f2006-11-11 17:24:53 +1100540 select PPC_DCR_MMIO
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100541 select PPC_OF_PLATFORM_PCI
Benjamin Herrenschmidt014da7f2006-11-11 17:25:12 +1100542 select PPC_INDIRECT_IO
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100543 select PPC_NATIVE
Benjamin Herrenschmidt21fb5a12006-11-11 17:24:58 +1100544 select MPIC
Geoff Levandc01ea722006-06-19 20:33:28 +0200545 default n
546
547config PPC_IBM_CELL_BLADE
Andrew Mortonf127a2b2006-06-25 01:49:07 -0700548 bool "IBM Cell Blade"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000549 depends on PPC_MULTIPLATFORM && PPC64
Geoff Levandc01ea722006-06-19 20:33:28 +0200550 select PPC_CELL_NATIVE
Paul Mackerras033ef332005-10-26 17:05:24 +1000551 select PPC_RTAS
Arnd Bergmannedf03c12005-10-31 20:08:40 -0500552 select MMIO_NVRAM
Paul Mackerras13b8a272006-01-10 16:19:05 +1100553 select PPC_UDBG_16550
Michael Ellerman94b60ec2006-06-23 18:20:22 +1000554 select UDBG_RTAS_CONSOLE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000555
Geoff Levandf58a9d12006-11-23 00:46:51 +0100556config PPC_PS3
Geoff Levand05916ee2007-01-25 18:07:14 -0800557 bool "Sony PS3 (incomplete)"
Geoff Levandf58a9d12006-11-23 00:46:51 +0100558 depends on PPC_MULTIPLATFORM && PPC64
559 select PPC_CELL
Geoff Levand6a6c9572007-01-15 20:12:10 -0800560 select USB_ARCH_HAS_OHCI
561 select USB_OHCI_LITTLE_ENDIAN
562 select USB_OHCI_BIG_ENDIAN_MMIO
Geoff Levandad75a412007-01-15 20:11:47 -0800563 select USB_ARCH_HAS_EHCI
564 select USB_EHCI_BIG_ENDIAN_MMIO
Geoff Levandf58a9d12006-11-23 00:46:51 +0100565 help
566 This option enables support for the Sony PS3 game console
567 and other platforms using the PS3 hypervisor.
Geoff Levand05916ee2007-01-25 18:07:14 -0800568 Support for this platform is not yet complete, so
569 enabling this will not result in a bootable kernel on a
570 PS3 system.
Geoff Levandf58a9d12006-11-23 00:46:51 +0100571
Ishizaki Kouc347b792007-02-02 16:47:17 +0900572config PPC_CELLEB
573 bool "Toshiba's Cell Reference Set 'Celleb' Architecture"
574 depends on PPC_MULTIPLATFORM && PPC64
575 select PPC_CELL
576 select PPC_OF_PLATFORM_PCI
577 select HAS_TXX9_SERIAL
578 select PPC_UDBG_BEAT
579 select USB_OHCI_BIG_ENDIAN_MMIO
580 select USB_EHCI_BIG_ENDIAN_MMIO
581
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100582config PPC_NATIVE
583 bool
584 depends on PPC_MULTIPLATFORM
585 help
586 Support for running natively on the hardware, i.e. without
587 a hypervisor. This option is not user-selectable but should
588 be selected by all platforms that need it.
589
590config UDBG_RTAS_CONSOLE
591 bool "RTAS based debug console"
592 depends on PPC_RTAS
593 default n
594
Ishizaki Kouc347b792007-02-02 16:47:17 +0900595config PPC_UDBG_BEAT
596 bool "BEAT based debug console"
597 depends on PPC_CELLEB
598 default n
599
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000600config XICS
601 depends on PPC_PSERIES
602 bool
603 default y
604
605config U3_DART
606 bool
607 depends on PPC_MULTIPLATFORM && PPC64
608 default n
609
Paul Mackerras033ef332005-10-26 17:05:24 +1000610config PPC_RTAS
611 bool
612 default n
613
614config RTAS_ERROR_LOGGING
615 bool
616 depends on PPC_RTAS
617 default n
618
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100619config RTAS_PROC
620 bool "Proc interface to RTAS"
Arnd Bergmanne9add2e2005-10-31 20:08:39 -0500621 depends on PPC_RTAS
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100622 default y
623
624config RTAS_FLASH
625 tristate "Firmware flash interface"
626 depends on PPC64 && RTAS_PROC
Arnd Bergmanne9add2e2005-10-31 20:08:39 -0500627
Christian Krafft0e826642007-02-14 14:09:45 +0100628config PPC_PMI
629 tristate "Support for PMI"
630 depends PPC_IBM_CELL_BLADE
631 help
632 PMI (Platform Management Interrupt) is a way to
633 communicate with the BMC (Baseboard Mangement Controller).
634 It is used in some IBM Cell blades.
635 default m
636
Arnd Bergmannedf03c12005-10-31 20:08:40 -0500637config MMIO_NVRAM
638 bool
639 default n
640
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000641config MPIC_BROKEN_U3
642 bool
643 depends on PPC_MAPLE
644 default y
645
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000646config IBMVIO
647 depends on PPC_PSERIES || PPC_ISERIES
648 bool
649 default y
650
Heiko J Schickd7a30102005-11-16 08:56:43 +0100651config IBMEBUS
652 depends on PPC_PSERIES
653 bool "Support for GX bus based adapters"
Heiko J Schickd7a30102005-11-16 08:56:43 +0100654 help
655 Bus device driver for GX bus based adapters.
656
Paul Mackerras830825d2005-10-26 17:16:38 +1000657config PPC_MPC106
658 bool
659 default n
660
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000661config PPC_970_NAP
662 bool
663 default n
664
Benjamin Herrenschmidt4cb3cee2006-11-11 17:25:10 +1100665config PPC_INDIRECT_IO
666 bool
667 select GENERIC_IOMAP
668 default n
669
670config GENERIC_IOMAP
671 bool
672 default n
673
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000674source "drivers/cpufreq/Kconfig"
675
676config CPU_FREQ_PMAC
677 bool "Support for Apple PowerBooks"
678 depends on CPU_FREQ && ADB_PMU && PPC32
679 select CPU_FREQ_TABLE
680 help
681 This adds support for frequency switching on Apple PowerBooks,
682 this currently includes some models of iBook & Titanium
683 PowerBook.
684
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100685config CPU_FREQ_PMAC64
686 bool "Support for some Apple G5s"
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000687 depends on CPU_FREQ && PPC64
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100688 select CPU_FREQ_TABLE
689 help
690 This adds support for frequency switching on Apple iMac G5,
691 and some of the more recent desktop G5 machines as well.
692
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000693config PPC601_SYNC_FIX
694 bool "Workarounds for PPC601 bugs"
695 depends on 6xx && (PPC_PREP || PPC_PMAC)
696 help
697 Some versions of the PPC601 (the first PowerPC chip) have bugs which
698 mean that extra synchronization instructions are required near
699 certain instructions, typically those that make major changes to the
700 CPU state. These extra instructions reduce performance slightly.
701 If you say N here, these extra instructions will not be included,
702 resulting in a kernel which will run faster but may not run at all
703 on some systems with the PPC601 chip.
704
705 If in doubt, say Y here.
706
707config TAU
Paul Mackerras9b781722006-03-27 19:15:26 +1100708 bool "On-chip CPU temperature sensor support"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000709 depends on 6xx
710 help
711 G3 and G4 processors have an on-chip temperature sensor called the
712 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die
713 temperature within 2-4 degrees Celsius. This option shows the current
714 on-die temperature in /proc/cpuinfo if the cpu supports it.
715
716 Unfortunately, on some chip revisions, this sensor is very inaccurate
Paul Mackerras9b781722006-03-27 19:15:26 +1100717 and in many cases, does not work at all, so don't assume the cpu
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000718 temp is actually what /proc/cpuinfo says it is.
719
720config TAU_INT
721 bool "Interrupt driven TAU driver (DANGEROUS)"
722 depends on TAU
723 ---help---
724 The TAU supports an interrupt driven mode which causes an interrupt
725 whenever the temperature goes out of range. This is the fastest way
726 to get notified the temp has exceeded a range. With this option off,
727 a timer is used to re-check the temperature periodically.
728
729 However, on some cpus it appears that the TAU interrupt hardware
730 is buggy and can cause a situation which would lead unexplained hard
731 lockups.
732
733 Unless you are extending the TAU driver, or enjoy kernel/hardware
734 debugging, leave this option off.
735
736config TAU_AVERAGE
737 bool "Average high and low temp"
738 depends on TAU
739 ---help---
740 The TAU hardware can compare the temperature to an upper and lower
741 bound. The default behavior is to show both the upper and lower
742 bound in /proc/cpuinfo. If the range is large, the temperature is
743 either changing a lot, or the TAU hardware is broken (likely on some
744 G4's). If the range is small (around 4 degrees), the temperature is
745 relatively stable. If you say Y here, a single temperature value,
746 halfway between the upper and lower bounds, will be reported in
747 /proc/cpuinfo.
748
749 If in doubt, say N here.
Mark A. Greerc2201532006-06-28 14:13:20 -0700750
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000751endmenu
752
753source arch/powerpc/platforms/embedded6xx/Kconfig
754source arch/powerpc/platforms/4xx/Kconfig
Vitaly Borduged943c12006-10-02 22:41:50 +0400755source arch/powerpc/platforms/82xx/Kconfig
Kumar Gala08264cb2006-01-10 21:43:56 -0600756source arch/powerpc/platforms/83xx/Kconfig
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000757source arch/powerpc/platforms/85xx/Kconfig
Jon Loeligerc9b484b2006-06-17 17:52:35 -0500758source arch/powerpc/platforms/86xx/Kconfig
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000759source arch/powerpc/platforms/8xx/Kconfig
Arnd Bergmann67207b92005-11-15 15:53:48 -0500760source arch/powerpc/platforms/cell/Kconfig
Geoff Levandf58a9d12006-11-23 00:46:51 +0100761source arch/powerpc/platforms/ps3/Kconfig
Olof Johansson31c56d82007-02-04 16:36:55 -0600762source arch/powerpc/platforms/pasemi/Kconfig
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000763
764menu "Kernel options"
765
766config HIGHMEM
767 bool "High memory support"
768 depends on PPC32
769
770source kernel/Kconfig.hz
771source kernel/Kconfig.preempt
772source "fs/Kconfig.binfmt"
773
774# We optimistically allocate largepages from the VM, so make the limit
775# large enough (16MB). This badly named config option is actually
776# max order + 1
777config FORCE_MAX_ZONEORDER
778 int
779 depends on PPC64
Mike Kravetz02864862005-11-07 13:48:59 -0800780 default "9" if PPC_64K_PAGES
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000781 default "13"
782
783config MATH_EMULATION
784 bool "Math emulation"
Kumar Gala4d527192007-01-26 00:23:34 -0600785 depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000786 ---help---
787 Some PowerPC chips designed for embedded applications do not have
788 a floating-point unit and therefore do not implement the
789 floating-point instructions in the PowerPC instruction set. If you
790 say Y here, the kernel will include code to emulate a floating-point
791 unit, which will allow programs that use floating-point
792 instructions to run.
793
794config IOMMU_VMERGE
795 bool "Enable IOMMU virtual merging (EXPERIMENTAL)"
796 depends on EXPERIMENTAL && PPC64
797 default n
798 help
799 Cause IO segments sent to a device for DMA to be merged virtually
800 by the IOMMU when they happen to have been allocated contiguously.
801 This doesn't add pressure to the IOMMU allocator. However, some
802 drivers don't support getting large merged segments coming back
803 from *_map_sg(). Say Y if you know the drivers you are using are
804 properly handling this case.
805
806config HOTPLUG_CPU
807 bool "Support for enabling/disabling CPUs"
808 depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
809 ---help---
810 Say Y here to be able to disable and re-enable individual
811 CPUs at runtime on SMP machines.
812
813 Say N if you are unsure.
814
Yasunori Gotocc576372006-06-29 02:24:27 -0700815config ARCH_ENABLE_MEMORY_HOTPLUG
816 def_bool y
817
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000818config KEXEC
819 bool "kexec system call (EXPERIMENTAL)"
820 depends on PPC_MULTIPLATFORM && EXPERIMENTAL
821 help
822 kexec is a system call that implements the ability to shutdown your
823 current kernel, and to start another kernel. It is like a reboot
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400824 but it is independent of the system firmware. And like a reboot
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000825 you can start any kernel with it, not just Linux.
826
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400827 The name comes from the similarity to the exec system call.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000828
829 It is an ongoing process to be certain the hardware in a machine
830 is properly shutdown, so do not be surprised if this code does not
831 initially work for you. It may help to enable device hotplugging
832 support. As of this writing the exact hardware interface is
833 strongly in flux, so no good recommendation can be made.
834
Haren Mynenie8625d462006-01-14 13:48:25 -0800835config CRASH_DUMP
Michael Ellermancd9c99d2006-03-10 15:01:08 +1100836 bool "Build a kdump crash kernel (EXPERIMENTAL)"
Haren Mynenie8625d462006-01-14 13:48:25 -0800837 depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
838 help
839 Build a kernel suitable for use as a kdump capture kernel.
840 The kernel will be linked at a different address than normal, and
841 so can only be used for Kdump.
842
843 Don't change this unless you know what you are doing.
844
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000845config EMBEDDEDBOOT
846 bool
847 depends on 8xx || 8260
848 default y
849
850config PC_KEYBOARD
851 bool "PC PS/2 style Keyboard"
852 depends on 4xx || CPM2
853
854config PPCBUG_NVRAM
855 bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
856 default y if PPC_PREP
857
858config IRQ_ALL_CPUS
859 bool "Distribute interrupts on all CPUs by default"
860 depends on SMP && !MV64360
861 help
862 This option gives the kernel permission to distribute IRQs across
863 multiple CPUs. Saying N here will route all IRQs to the first
864 CPU. Generally saying Y is safe, although some problems have been
865 reported with SMP Power Macintoshes with this option enabled.
866
867source "arch/powerpc/platforms/pseries/Kconfig"
868
Andy Whitcroftffa27b62005-10-28 17:46:58 -0700869config NUMA
870 bool "NUMA support"
871 depends on PPC64
872 default y if SMP && PPC_PSERIES
873
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700874config NODES_SHIFT
875 int
876 default "4"
877 depends on NEED_MULTIPLE_NODES
878
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000879config ARCH_SELECT_MEMORY_MODEL
880 def_bool y
881 depends on PPC64
882
883config ARCH_FLATMEM_ENABLE
Andy Whitcroft9100b202005-11-29 19:20:55 +0000884 def_bool y
885 depends on (PPC64 && !NUMA) || PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000886
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000887config ARCH_SPARSEMEM_ENABLE
888 def_bool y
Andy Whitcroft9100b202005-11-29 19:20:55 +0000889 depends on PPC64
Anton Blanchard45fb6ce2005-11-11 14:22:35 +1100890
891config ARCH_SPARSEMEM_DEFAULT
892 def_bool y
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100893 depends on (SMP && PPC_PSERIES) || PPC_PS3
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000894
Mel Gormanc67c3cb2006-09-27 01:49:49 -0700895config ARCH_POPULATES_NODE_MAP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000896 def_bool y
Mel Gormanc67c3cb2006-09-27 01:49:49 -0700897
898source "mm/Kconfig"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000899
Mike Kravetz7e9191d2005-11-07 09:39:48 -0800900config ARCH_MEMORY_PROBE
901 def_bool y
902 depends on MEMORY_HOTPLUG
903
Andy Whitcroft75167952006-10-21 10:24:14 -0700904# Some NUMA nodes have memory ranges that span
905# other nodes. Even though a pfn is valid and
906# between a node's start and end pfns, it may not
907# reside on that node. See memmap_init_zone()
908# for details.
909config NODES_SPAN_OTHER_NODES
910 def_bool y
911 depends on NEED_MULTIPLE_NODES
912
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100913config PPC_64K_PAGES
914 bool "64k page size"
Benjamin Herrenschmidt863c84b2005-11-07 00:57:58 -0800915 depends on PPC64
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100916 help
917 This option changes the kernel logical page size to 64k. On machines
918 without processor support for 64k pages, the kernel will simulate
919 them by loading each individual 4k page on demand transparently,
920 while on hardware with such support, it will be used to map
921 normal application pages.
922
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000923config SCHED_SMT
924 bool "SMT (Hyperthreading) scheduler support"
925 depends on PPC64 && SMP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000926 help
927 SMT scheduler support improves the CPU scheduler's decision making
928 when dealing with POWER5 cpus at a cost of slightly increased
929 overhead in some places. If unsure say N here.
930
931config PROC_DEVICETREE
Paul Mackerras5f296752005-10-17 20:14:59 +1000932 bool "Support for device tree in /proc"
933 depends on PROC_FS
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000934 help
935 This option adds a device-tree directory under /proc which contains
936 an image of the device tree that the kernel copies from Open
Paul Mackerras5f296752005-10-17 20:14:59 +1000937 Firmware or other boot firmware. If unsure, say Y here.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000938
939source "arch/powerpc/platforms/prep/Kconfig"
940
941config CMDLINE_BOOL
942 bool "Default bootloader kernel arguments"
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000943
944config CMDLINE
945 string "Initial kernel command string"
946 depends on CMDLINE_BOOL
947 default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
948 help
949 On some platforms, there is currently no way for the boot loader to
950 pass arguments to the kernel. For these platforms, you can supply
951 some command-line options at build time by entering them here. In
952 most cases you will need to specify the root device here.
953
954if !44x || BROKEN
955source kernel/power/Kconfig
956endif
957
958config SECCOMP
959 bool "Enable seccomp to safely compute untrusted bytecode"
960 depends on PROC_FS
961 default y
962 help
963 This kernel feature is useful for number crunching applications
964 that may need to compute untrusted bytecode during their
965 execution. By using pipes or other transports made available to
966 the process as file descriptors supporting the read/write
967 syscalls, it's possible to isolate those applications in
968 their own address space using seccomp. Once seccomp is
969 enabled via /proc/<pid>/seccomp, it cannot be disabled
970 and the task is only allowed to execute a few safe syscalls
971 defined by each seccomp mode.
972
973 If unsure, say Y. Only embedded should say N here.
974
975endmenu
976
977config ISA_DMA_API
978 bool
979 default y
980
981menu "Bus options"
982
983config ISA
984 bool "Support for ISA-bus hardware"
985 depends on PPC_PREP || PPC_CHRP
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000986 select PPC_I8259
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000987 help
988 Find out whether you have ISA slots on your motherboard. ISA is the
989 name of a bus system, i.e. the way the CPU talks to the other stuff
990 inside your box. If you have an Apple machine, say N here; if you
991 have an IBM RS/6000 or pSeries machine or a PReP machine, say Y. If
992 you have an embedded board, consult your board documentation.
993
Christoph Lameter5ac6da62007-02-10 01:43:14 -0800994config ZONE_DMA
995 bool
996 default y
997
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000998config GENERIC_ISA_DMA
999 bool
1000 depends on PPC64 || POWER4 || 6xx && !CPM2
1001 default y
1002
Zang Roy-r6191172335932006-08-25 14:16:30 +10001003config MPIC
1004 bool
1005 default n
1006
1007config MPIC_WEIRD
1008 bool
1009 default n
1010
Paul Mackerrasf9bd1702005-10-26 16:47:42 +10001011config PPC_I8259
1012 bool
Paul Mackerrasf9bd1702005-10-26 16:47:42 +10001013 default n
1014
Paul Mackerras25635c72005-10-26 16:36:55 +10001015config PPC_INDIRECT_PCI
1016 bool
1017 depends on PCI
Becky Bruce63dafe52006-01-14 16:57:39 -06001018 default y if 40x || 44x
Paul Mackerras25635c72005-10-26 16:36:55 +10001019 default n
1020
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001021config EISA
1022 bool
1023
1024config SBUS
1025 bool
1026
Kumar Gala08264cb2006-01-10 21:43:56 -06001027config FSL_SOC
1028 bool
1029
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001030# Yes MCA RS/6000s exist but Linux-PPC does not currently support any
1031config MCA
1032 bool
1033
1034config PCI
Jon Loeliger53158622006-08-09 10:37:28 -05001035 bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx \
Stephen Rothwellbed59272007-03-04 17:04:44 +11001036 || PPC_MPC52xx || (EMBEDDED && (PPC_PSERIES || PPC_ISERIES)) \
1037 || MPC7448HPC2 || PPC_PS3
Jon Loeliger53158622006-08-09 10:37:28 -05001038 default y if !40x && !CPM2 && !8xx && !APUS && !PPC_83xx \
1039 && !PPC_85xx && !PPC_86xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001040 default PCI_PERMEDIA if !4xx && !CPM2 && !8xx && APUS
1041 default PCI_QSPAN if !4xx && !CPM2 && 8xx
1042 help
1043 Find out whether your system includes a PCI bus. PCI is the name of
1044 a bus system, i.e. the way the CPU talks to the other stuff inside
1045 your box. If you say Y here, the kernel will include drivers and
1046 infrastructure code to support PCI bus devices.
1047
1048config PCI_DOMAINS
1049 bool
1050 default PCI
1051
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001052config PCI_QSPAN
1053 bool "QSpan PCI"
1054 depends on !4xx && !CPM2 && 8xx
Paul Mackerrasf9bd1702005-10-26 16:47:42 +10001055 select PPC_I8259
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001056 help
1057 Say Y here if you have a system based on a Motorola 8xx-series
1058 embedded processor with a QSPAN PCI interface, otherwise say N.
1059
1060config PCI_8260
1061 bool
1062 depends on PCI && 8260
Paul Mackerras25635c72005-10-26 16:36:55 +10001063 select PPC_INDIRECT_PCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001064 default y
1065
1066config 8260_PCI9
Andrew Morton4a3ecc62006-06-01 20:36:04 -07001067 bool "Enable workaround for MPC826x erratum PCI 9"
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001068 depends on PCI_8260 && !ADS8272
1069 default y
1070
1071choice
Andrew Morton4a3ecc62006-06-01 20:36:04 -07001072 prompt "IDMA channel for PCI 9 workaround"
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001073 depends on 8260_PCI9
1074
1075config 8260_PCI9_IDMA1
1076 bool "IDMA1"
1077
1078config 8260_PCI9_IDMA2
1079 bool "IDMA2"
1080
1081config 8260_PCI9_IDMA3
1082 bool "IDMA3"
1083
1084config 8260_PCI9_IDMA4
1085 bool "IDMA4"
1086
1087endchoice
1088
Jake Moilanenbb53bb32006-06-07 16:05:46 -05001089source "drivers/pci/pcie/Kconfig"
1090
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001091source "drivers/pci/Kconfig"
1092
1093source "drivers/pcmcia/Kconfig"
1094
1095source "drivers/pci/hotplug/Kconfig"
1096
1097endmenu
1098
1099menu "Advanced setup"
1100 depends on PPC32
1101
1102config ADVANCED_OPTIONS
1103 bool "Prompt for advanced kernel configuration options"
1104 help
1105 This option will enable prompting for a variety of advanced kernel
1106 configuration options. These options can cause the kernel to not
1107 work if they are set incorrectly, but can be used to optimize certain
1108 aspects of kernel memory management.
1109
1110 Unless you know what you are doing, say N here.
1111
1112comment "Default settings for advanced configuration options are used"
1113 depends on !ADVANCED_OPTIONS
1114
1115config HIGHMEM_START_BOOL
1116 bool "Set high memory pool address"
1117 depends on ADVANCED_OPTIONS && HIGHMEM
1118 help
1119 This option allows you to set the base address of the kernel virtual
1120 area used to map high memory pages. This can be useful in
1121 optimizing the layout of kernel virtual memory.
1122
1123 Say N here unless you know what you are doing.
1124
1125config HIGHMEM_START
1126 hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
1127 default "0xfe000000"
1128
1129config LOWMEM_SIZE_BOOL
1130 bool "Set maximum low memory"
1131 depends on ADVANCED_OPTIONS
1132 help
1133 This option allows you to set the maximum amount of memory which
1134 will be used as "low memory", that is, memory which the kernel can
1135 access directly, without having to set up a kernel virtual mapping.
1136 This can be useful in optimizing the layout of kernel virtual
1137 memory.
1138
1139 Say N here unless you know what you are doing.
1140
1141config LOWMEM_SIZE
1142 hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
1143 default "0x30000000"
1144
1145config KERNEL_START_BOOL
1146 bool "Set custom kernel base address"
1147 depends on ADVANCED_OPTIONS
1148 help
1149 This option allows you to set the kernel virtual address at which
1150 the kernel will map low memory (the kernel image will be linked at
1151 this address). This can be useful in optimizing the virtual memory
1152 layout of the system.
1153
1154 Say N here unless you know what you are doing.
1155
1156config KERNEL_START
1157 hex "Virtual address of kernel base" if KERNEL_START_BOOL
1158 default "0xc0000000"
1159
1160config TASK_SIZE_BOOL
1161 bool "Set custom user task size"
1162 depends on ADVANCED_OPTIONS
1163 help
1164 This option allows you to set the amount of virtual address space
1165 allocated to user tasks. This can be useful in optimizing the
1166 virtual memory layout of the system.
1167
1168 Say N here unless you know what you are doing.
1169
1170config TASK_SIZE
1171 hex "Size of user task space" if TASK_SIZE_BOOL
1172 default "0x80000000"
1173
1174config CONSISTENT_START_BOOL
1175 bool "Set custom consistent memory pool address"
1176 depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
1177 help
1178 This option allows you to set the base virtual address
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001179 of the consistent memory pool. This pool of virtual
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001180 memory is used to make consistent memory allocations.
1181
1182config CONSISTENT_START
1183 hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
1184 default "0xff100000" if NOT_COHERENT_CACHE
1185
1186config CONSISTENT_SIZE_BOOL
1187 bool "Set custom consistent memory pool size"
1188 depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
1189 help
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001190 This option allows you to set the size of the
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001191 consistent memory pool. This pool of virtual memory
1192 is used to make consistent memory allocations.
1193
1194config CONSISTENT_SIZE
1195 hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
1196 default "0x00200000" if NOT_COHERENT_CACHE
1197
1198config BOOT_LOAD_BOOL
1199 bool "Set the boot link/load address"
1200 depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
1201 help
1202 This option allows you to set the initial load address of the zImage
1203 or zImage.initrd file. This can be useful if you are on a board
1204 which has a small amount of memory.
1205
1206 Say N here unless you know what you are doing.
1207
1208config BOOT_LOAD
1209 hex "Link/load address for booting" if BOOT_LOAD_BOOL
1210 default "0x00400000" if 40x || 8xx || 8260
1211 default "0x01000000" if 44x
1212 default "0x00800000"
1213
1214config PIN_TLB
1215 bool "Pinned Kernel TLBs (860 ONLY)"
1216 depends on ADVANCED_OPTIONS && 8xx
1217endmenu
1218
Stephen Rothwellcabb5582005-09-30 16:16:52 +10001219if PPC64
1220config KERNEL_START
1221 hex
Stephen Rothwelleeb2d212005-09-30 17:24:15 +10001222 default "0xc000000000000000"
Stephen Rothwellcabb5582005-09-30 16:16:52 +10001223endif
1224
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001225source "net/Kconfig"
1226
1227source "drivers/Kconfig"
1228
1229source "fs/Kconfig"
1230
1231# XXX source "arch/ppc/8xx_io/Kconfig"
1232
1233# XXX source "arch/ppc/8260_io/Kconfig"
1234
Li Yang98658532006-10-03 23:10:46 -05001235source "arch/powerpc/sysdev/qe_lib/Kconfig"
1236
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001237source "arch/powerpc/platforms/iseries/Kconfig"
1238
1239source "lib/Kconfig"
1240
Prasanna S Panchamukhicd6b0762005-11-07 00:59:14 -08001241menu "Instrumentation Support"
1242 depends on EXPERIMENTAL
1243
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001244source "arch/powerpc/oprofile/Kconfig"
1245
Prasanna S Panchamukhicd6b0762005-11-07 00:59:14 -08001246config KPROBES
1247 bool "Kprobes (EXPERIMENTAL)"
Kumar Gala82090032007-02-06 22:55:19 -06001248 depends on !BOOKE && !4xx && KALLSYMS && EXPERIMENTAL && MODULES
Prasanna S Panchamukhicd6b0762005-11-07 00:59:14 -08001249 help
1250 Kprobes allows you to trap at almost any kernel address and
1251 execute a callback function. register_kprobe() establishes
1252 a probepoint and specifies the callback. Kprobes is useful
1253 for kernel debugging, non-intrusive instrumentation and testing.
1254 If in doubt, say "N".
1255endmenu
1256
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001257source "arch/powerpc/Kconfig.debug"
1258
1259source "security/Kconfig"
1260
1261config KEYS_COMPAT
1262 bool
1263 depends on COMPAT && KEYS
1264 default y
1265
1266source "crypto/Kconfig"