[PATCH] powerpc/85xx: fix PHYS_64BIT selection for P1022DS

2011-09-23 Thread Anatolij Gustschin
Remove wrong CONFIG_ prefix in Kconfig file. Signed-off-by: Anatolij Gustschin --- arch/powerpc/platforms/85xx/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/platforms/85xx/Kconfig b/arch/powerpc/platforms/85xx/Kconfig index 1b393f4..b29d4f2 10064

Re: [PATCH v2] powerpc: Fix xmon for systems without MSR[RI]

2011-09-23 Thread Scott Wood
On 09/23/2011 12:54 PM, Jimi Xenidis wrote: > On Sep 23, 2011, at 11:32 AM, Scott Wood wrote: >> How is CONFIG_BOOK3E better than CONFIG_BOOKE? Both e500mc (has RI) and >> e500v2 (doesn't have RI) will select both symbols. Sounds like it >> should be a cputable flag. > > Ben was not in favor of

Re: [PATCH v2] powerpc: Fix xmon for systems without MSR[RI]

2011-09-23 Thread Jimi Xenidis
On Sep 23, 2011, at 11:32 AM, Scott Wood wrote: > On 09/23/2011 10:01 AM, Jimi Xenidis wrote: >> From: David Gibson >> >> Based on patch by David Gibson >> >> xmon has a longstanding bug on systems which are SMP-capable but lack >> the MSR[RI] bit. In these cases, xmon invoked by IPI on seco

[PATCH] powerpc/fsl_msi: add support for "msi-address-64" property

2011-09-23 Thread Timur Tabi
Add support for the msi-address-64 property of a PCI node. This property specifies the PCI address of MSIIR (message signaled interrupt index register). In commit 3da34aae ("powerpc/fsl: Support unique MSI addresses per PCIe Root Complex"), the msi_addr_hi/msi_addr_lo fields of struct fsl_msi wer

Re: [PATCH] powerpc: Fix hugetlb with CONFIG_PPC_MM_SLICES=y

2011-09-23 Thread Becky Bruce
On Sep 21, 2011, at 12:58 AM, Paul Mackerras wrote: > Commit 41151e77a4 ("powerpc: Hugetlb for BookE") added some > #ifdef CONFIG_MM_SLICES conditionals to hugetlb_get_unmapped_area() > and vma_mmu_pagesize(). Unfortunately this is not the correct config > symbol; it should be CONFIG_PPC_MM_SLIC

Re: [PATCH v2] powerpc: Fix xmon for systems without MSR[RI]

2011-09-23 Thread Scott Wood
On 09/23/2011 10:01 AM, Jimi Xenidis wrote: > From: David Gibson > > Based on patch by David Gibson > > xmon has a longstanding bug on systems which are SMP-capable but lack > the MSR[RI] bit. In these cases, xmon invoked by IPI on secondary > CPUs will not properly keep quiet, but will print

[PATCH 3/3 v2] powerpc: icswx: Simple ACOP fault handler for both book3e and book3s parts.

2011-09-23 Thread Jimi Xenidis
This patch adds a fault handler that responds to illegal Coprocessor types. Currently all CTs are treated and illegal. There are two ways to report the fault back to the application. If the application used the record form ("icswx.") then the architected "reject" is emulated. If the application

[PATCH 2/3 v2] powerpc: book3e: Add ICSWX/ACOP support to Book3e cores like A2

2011-09-23 Thread Jimi Xenidis
ICSWX is also used by the A2 processor to access coprocessors, although not all "chips" that contain A2s have coprocessors. Signed-off-by: Jimi Xenidis --- Re: ga...@kernel.crashing.org Fix white space *embarrassed* --- arch/powerpc/include/asm/cputable.h |2 +- arch/powerpc/include/a

[PATCH 1/3 v2] powerpc: Split ICSWX ACOP and PID processing

2011-09-23 Thread Jimi Xenidis
Some processors, like embedded, that already have a PID register that is managed by the system. This patch separates the ACOP and PID processing into separate files so that the ACOP code can be shared. Signed-off-by: Jimi Xenidis --- Re: ga...@kernel.crashing.org Fix typo in arch/powerpc/mm

[PATCH v2] powerpc: Fix xmon for systems without MSR[RI]

2011-09-23 Thread Jimi Xenidis
From: David Gibson Based on patch by David Gibson xmon has a longstanding bug on systems which are SMP-capable but lack the MSR[RI] bit. In these cases, xmon invoked by IPI on secondary CPUs will not properly keep quiet, but will print stuff, thereby garbling the primary xmon's output. This p