diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-11 19:31:41 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-11 19:31:41 -0500 |
commit | 5a62f995446be44811fefa48f91f9efb7ea172d7 (patch) | |
tree | e297371f0d513dc6278bb67d582d2216eb7d74ed /arch/powerpc/Kconfig | |
parent | f1d6d6cd9029daa7e7d4a0b14347b5392320f22a (diff) | |
parent | 5d7d8072edc11080a7cf6cc37c9f4e61ca1e93c9 (diff) |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
* 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: (72 commits)
powerpc/pseries: Fix build of topology stuff without CONFIG_NUMA
powerpc/pseries: Fix VPHN build errors on non-SMP systems
powerpc/83xx: add mpc8308_p1m DMA controller device-tree node
powerpc/83xx: add DMA controller to mpc8308 device-tree node
powerpc/512x: try to free dma descriptors in case of allocation failure
powerpc/512x: add MPC8308 dma support
powerpc/512x: fix the hanged dma transfer issue
powerpc/512x: scatter/gather dma fix
powerpc/powermac: Make auto-loading of therm_pm72 possible
of/address: Use propper endianess in get_flags
powerpc/pci: Use printf extension %pR for struct resource
powerpc: Remove unnecessary casts of void ptr
powerpc: Disable VPHN polling during a suspend operation
powerpc/pseries: Poll VPA for topology changes and update NUMA maps
powerpc: iommu: Add device name to iommu error printks
powerpc: Record vma->phys_addr in ioremap()
powerpc: Update compat_arch_ptrace
powerpc: Fix PPC_PTRACE_SETHWDEBUG on PPC_BOOK3S
powerpc/time: printk time stamp init not correct
powerpc: Minor cleanups for machdep.h
...
Diffstat (limited to 'arch/powerpc/Kconfig')
-rw-r--r-- | arch/powerpc/Kconfig | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 48fb4790bfec..959f38ccb9a7 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -20,6 +20,9 @@ config WORD_SIZE | |||
20 | config ARCH_PHYS_ADDR_T_64BIT | 20 | config ARCH_PHYS_ADDR_T_64BIT |
21 | def_bool PPC64 || PHYS_64BIT | 21 | def_bool PPC64 || PHYS_64BIT |
22 | 22 | ||
23 | config ARCH_DMA_ADDR_T_64BIT | ||
24 | def_bool ARCH_PHYS_ADDR_T_64BIT | ||
25 | |||
23 | config MMU | 26 | config MMU |
24 | bool | 27 | bool |
25 | default y | 28 | default y |
@@ -209,7 +212,7 @@ config ARCH_HIBERNATION_POSSIBLE | |||
209 | config ARCH_SUSPEND_POSSIBLE | 212 | config ARCH_SUSPEND_POSSIBLE |
210 | def_bool y | 213 | def_bool y |
211 | depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200 || PPC_83xx || \ | 214 | depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200 || PPC_83xx || \ |
212 | PPC_85xx || PPC_86xx || PPC_PSERIES | 215 | PPC_85xx || PPC_86xx || PPC_PSERIES || 44x || 40x |
213 | 216 | ||
214 | config PPC_DCR_NATIVE | 217 | config PPC_DCR_NATIVE |
215 | bool | 218 | bool |
@@ -595,13 +598,11 @@ config EXTRA_TARGETS | |||
595 | 598 | ||
596 | If unsure, leave blank | 599 | If unsure, leave blank |
597 | 600 | ||
598 | if !44x || BROKEN | ||
599 | config ARCH_WANTS_FREEZER_CONTROL | 601 | config ARCH_WANTS_FREEZER_CONTROL |
600 | def_bool y | 602 | def_bool y |
601 | depends on ADB_PMU | 603 | depends on ADB_PMU |
602 | 604 | ||
603 | source kernel/power/Kconfig | 605 | source kernel/power/Kconfig |
604 | endif | ||
605 | 606 | ||
606 | config SECCOMP | 607 | config SECCOMP |
607 | bool "Enable seccomp to safely compute untrusted bytecode" | 608 | bool "Enable seccomp to safely compute untrusted bytecode" |
@@ -682,6 +683,15 @@ config FSL_PMC | |||
682 | Freescale MPC85xx/MPC86xx power management controller support | 683 | Freescale MPC85xx/MPC86xx power management controller support |
683 | (suspend/resume). For MPC83xx see platforms/83xx/suspend.c | 684 | (suspend/resume). For MPC83xx see platforms/83xx/suspend.c |
684 | 685 | ||
686 | config PPC4xx_CPM | ||
687 | bool | ||
688 | default y | ||
689 | depends on SUSPEND && (44x || 40x) | ||
690 | help | ||
691 | PPC4xx Clock Power Management (CPM) support (suspend/resume). | ||
692 | It also enables support for two different idle states (idle-wait | ||
693 | and idle-doze). | ||
694 | |||
685 | config 4xx_SOC | 695 | config 4xx_SOC |
686 | bool | 696 | bool |
687 | 697 | ||