Re: [PATCH] powerpc: Add DMA mask to MPSC serial and network and UART device to serial

2010-02-01 Thread Benjamin Herrenschmidt
On Mon, 2010-02-01 at 12:00 -0600, Corey Minyard wrote: > That's done in ppc_dflt_bus_notify(), but that didn't seem an > appropriate > place to do this. If it is, it's easy enough to add it there, but > that would mean it would get set for all devices on any type of ppc > system. Well, we are lo

Re: [PATCH] powerpc: Add DMA mask to MPSC serial and network and UART device to serial

2010-02-01 Thread Corey Minyard
Benjamin Herrenschmidt wrote: On Fri, 2010-01-29 at 18:04 -0600, Corey Minyard wrote: From: Corey Minyard The MPSC drivers that use DMA need to set coherent_dma_mask to allow dma_alloc_xxx routines to work properly. Also, the mpsc serial driver needed to set pi->port.dev to register proper

Re: [PATCH] powerpc: Add DMA mask to MPSC serial and network and UART device to serial

2010-01-31 Thread Benjamin Herrenschmidt
On Fri, 2010-01-29 at 18:04 -0600, Corey Minyard wrote: > From: Corey Minyard > > The MPSC drivers that use DMA need to set coherent_dma_mask to allow > dma_alloc_xxx routines to work properly. Also, the mpsc serial driver > needed to set pi->port.dev to register properly. With these fixes, > t

[PATCH] powerpc: Add DMA mask to MPSC serial and network and UART device to serial

2010-01-29 Thread Corey Minyard
From: Corey Minyard The MPSC drivers that use DMA need to set coherent_dma_mask to allow dma_alloc_xxx routines to work properly. Also, the mpsc serial driver needed to set pi->port.dev to register properly. With these fixes, the MPSC drivers seem to work again. Signed-off-by: Corey Minyard -