aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc64/Kconfig')
-rw-r--r--arch/ppc64/Kconfig24
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/ppc64/Kconfig b/arch/ppc64/Kconfig
index b987164fca4c..29552348e581 100644
--- a/arch/ppc64/Kconfig
+++ b/arch/ppc64/Kconfig
@@ -47,11 +47,16 @@ config ARCH_MAY_HAVE_PC_FDC
47 bool 47 bool
48 default y 48 default y
49 49
50config PPC_STD_MMU
51 bool
52 default y
53
50# We optimistically allocate largepages from the VM, so make the limit 54# We optimistically allocate largepages from the VM, so make the limit
51# large enough (16MB). This badly named config option is actually 55# large enough (16MB). This badly named config option is actually
52# max order + 1 56# max order + 1
53config FORCE_MAX_ZONEORDER 57config FORCE_MAX_ZONEORDER
54 int 58 int
59 default "9" if PPC_64K_PAGES
55 default "13" 60 default "13"
56 61
57source "init/Kconfig" 62source "init/Kconfig"
@@ -169,6 +174,16 @@ config KEXEC
169 support. As of this writing the exact hardware interface is 174 support. As of this writing the exact hardware interface is
170 strongly in flux, so no good recommendation can be made. 175 strongly in flux, so no good recommendation can be made.
171 176
177source "drivers/cpufreq/Kconfig"
178
179config CPU_FREQ_PMAC64
180 bool "Support for some Apple G5s"
181 depends on CPU_FREQ && PMAC_SMU && PPC64
182 select CPU_FREQ_TABLE
183 help
184 This adds support for frequency switching on Apple iMac G5,
185 and some of the more recent desktop G5 machines as well.
186
172config IBMVIO 187config IBMVIO
173 depends on PPC_PSERIES || PPC_ISERIES 188 depends on PPC_PSERIES || PPC_ISERIES
174 bool 189 bool
@@ -294,6 +309,15 @@ config NODES_SPAN_OTHER_NODES
294 def_bool y 309 def_bool y
295 depends on NEED_MULTIPLE_NODES 310 depends on NEED_MULTIPLE_NODES
296 311
312config PPC_64K_PAGES
313 bool "64k page size"
314 help
315 This option changes the kernel logical page size to 64k. On machines
316 without processor support for 64k pages, the kernel will simulate
317 them by loading each individual 4k page on demand transparently,
318 while on hardware with such support, it will be used to map
319 normal application pages.
320
297config SCHED_SMT 321config SCHED_SMT
298 bool "SMT (Hyperthreading) scheduler support" 322 bool "SMT (Hyperthreading) scheduler support"
299 depends on SMP 323 depends on SMP