> On Thu, May 12, 2011 at 00:25, Nishanth Aravamudan <n...@us.ibm.com> wrote: > > diff --git a/arch/powerpc/platforms/ps3/system-bus.c > > b/arch/powerpc/platforms/ps3/system-bus.c > > index 23083c3..688141c 100644 > > --- a/arch/powerpc/platforms/ps3/system-bus.c > > +++ b/arch/powerpc/platforms/ps3/system-bus.c > > @@ -695,12 +695,18 @@ static int ps3_dma_supported(struct device *_dev, u64 > > mask) > > return mask >= DMA_BIT_MASK(32); > > } > > > > +static u64 ps3_dma_get_required_mask(struct device *_dev) > > +{ > > + return DMA_BIT_MASK(32); > > Why 32 and not 64?
I based it on the return of ps3_dma_supported, which you can see just above says anything at or above a 32 bit mask is ok. I don't really know the platform, but digging a bit deeper, it looks like this goes to ps3_map_dma in ps3/mm.c. It looks like that translates the virt to phys to lpar (similar to absolute in iseries), and the maps it to a bus address by a linear mapping. But no where do I see mention of a device dma mask (neither in mm.c or system-dev.c (except for the ps3_dma_supported local), so I assume that 32 bits is sufficient for any device. It appears to me the code establishs a 1:1 mapping of all possible memory with no provision for allocating blocks or checking that a bus address belongs to another memory segment. Feel free to point out any errors in the above analysis, otherwise I assume the required mask matches the dma_supported op. Does the lv1 hypervisor offer more than 4G of memory to the lpar? milton _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev