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 | |
| 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
...
88 files changed, 2071 insertions, 712 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index f3dc951e949f..ed3708f8d0db 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
| @@ -403,6 +403,10 @@ and is between 256 and 4096 characters. It is defined in the file | |||
| 403 | bttv.pll= See Documentation/video4linux/bttv/Insmod-options | 403 | bttv.pll= See Documentation/video4linux/bttv/Insmod-options |
| 404 | bttv.tuner= and Documentation/video4linux/bttv/CARDLIST | 404 | bttv.tuner= and Documentation/video4linux/bttv/CARDLIST |
| 405 | 405 | ||
| 406 | bulk_remove=off [PPC] This parameter disables the use of the pSeries | ||
| 407 | firmware feature for flushing multiple hpte entries | ||
| 408 | at a time. | ||
| 409 | |||
| 406 | c101= [NET] Moxa C101 synchronous serial card | 410 | c101= [NET] Moxa C101 synchronous serial card |
| 407 | 411 | ||
| 408 | cachesize= [BUGS=X86-32] Override level 2 CPU cache size detection. | 412 | cachesize= [BUGS=X86-32] Override level 2 CPU cache size detection. |
| @@ -1490,6 +1494,10 @@ and is between 256 and 4096 characters. It is defined in the file | |||
| 1490 | mtdparts= [MTD] | 1494 | mtdparts= [MTD] |
| 1491 | See drivers/mtd/cmdlinepart.c. | 1495 | See drivers/mtd/cmdlinepart.c. |
| 1492 | 1496 | ||
| 1497 | multitce=off [PPC] This parameter disables the use of the pSeries | ||
| 1498 | firmware feature for updating multiple TCE entries | ||
| 1499 | at a time. | ||
| 1500 | |||
| 1493 | onenand.bdry= [HW,MTD] Flex-OneNAND Boundary Configuration | 1501 | onenand.bdry= [HW,MTD] Flex-OneNAND Boundary Configuration |
| 1494 | 1502 | ||
| 1495 | Format: [die0_boundary][,die0_lock][,die1_boundary][,die1_lock] | 1503 | Format: [die0_boundary][,die0_lock][,die1_boundary][,die1_lock] |
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index 302db5da49b3..3272ed59dec7 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt | |||
| @@ -131,7 +131,7 @@ order to avoid the degeneration that had become the ppc32 kernel entry | |||
| 131 | point and the way a new platform should be added to the kernel. The | 131 | point and the way a new platform should be added to the kernel. The |
| 132 | legacy iSeries platform breaks those rules as it predates this scheme, | 132 | legacy iSeries platform breaks those rules as it predates this scheme, |
| 133 | but no new board support will be accepted in the main tree that | 133 | but no new board support will be accepted in the main tree that |
| 134 | doesn't follows them properly. In addition, since the advent of the | 134 | doesn't follow them properly. In addition, since the advent of the |
| 135 | arch/powerpc merged architecture for ppc32 and ppc64, new 32-bit | 135 | arch/powerpc merged architecture for ppc32 and ppc64, new 32-bit |
| 136 | platforms and 32-bit platforms which move into arch/powerpc will be | 136 | platforms and 32-bit platforms which move into arch/powerpc will be |
| 137 | required to use these rules as well. | ||
