Hi Frank, On Thu, Oct 23, 2014 at 04:04:37PM +0200, Frank Blaschka wrote: > > A domain is basically an abstraction for a DMA page table (or a > > dma_table, as you call it on s390). So you can easily create similar > > mappings for more than one device with it. > > > the clp instructions reports a start/end dma address for the pci device. > on my system all devices report: > > sdma = 0x100000000; > edma = 0x1ffffffffffffff; These values need to be reported through the IOMMU-API, so that the users know which address ranges they can map. > dma mappings are created for each device separately starting from 0x100000000 > and filling the the VIOA space for this device (until 0x1ffffffffffffff) > > If we would like to have more then one device per domain I think: > > we would have to slice the IOVA address space (0x100000000 - 0x1ffffffffffffff) > of the domain and report only a slice to the pci device (clp) > The iommu code would have to find the device by the dma (VIOA) address > and then program the entry to the table of the particular device (and only this > device). Why do you need to splice an address space when more than one device is assigned to it? Does that come from the hardware? Usually its not problematic when devices share an address space. The partitioning of that address-space between devices is done by an address allocator which works on small chunks of memory (io-page-size granularity). But such an address allocator is part of the DMA-API, the IOMMU-API which you implement here only cares about the mappings itself, not about address allocation. Joerg -- To unsubscribe from this list: send the line "unsubscribe linux-s390" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html