On Wed, May 30, 2018 at 02:13:11PM -0600, Logan Gunthorpe wrote: > Seeing there's been some confusion about the use of pci_add_dma_alias(), > expand the comment to describe why it must be called early and how > early it must be called. > > Also, expand on the purpose of this function and common reasons it would > be used. > > [The comment was reworded to some extent by Alex Williamson] > > Signed-off-by: Logan Gunthorpe <logang@xxxxxxxxxxxx> Applied to pci/switchtec for v4.19, thanks! > Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> > Cc: Alex Williamson <alex.williamson@xxxxxxxxxx> > Cc: Doug Meyer <dmeyer@xxxxxxxxxx> > --- > > v3: Fixed some typos pointed out by Randy > v2: Reworked the patch with Alex's suggested wording > > drivers/pci/pci.c | 15 +++++++++++++-- > 1 file changed, 13 insertions(+), 2 deletions(-) > > diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c > index dbfe7c4f3776..2d8650253cc9 100644 > --- a/drivers/pci/pci.c > +++ b/drivers/pci/pci.c > @@ -5395,8 +5395,19 @@ int pci_set_vga_state(struct pci_dev *dev, bool decode, > * @dev: the PCI device for which alias is added > * @devfn: alias slot and function > * > - * This helper encodes 8-bit devfn as bit number in dma_alias_mask. > - * It should be called early, preferably as PCI fixup header quirk. > + * This helper encodes an 8-bit devfn as a bit number in dma_alias_mask > + * which is used to program permissible bus-devfn source addresses for DMA > + * requests in an IOMMU. These aliases factor into IOMMU group creation > + * and are useful for devices generating DMA requests beyond or different > + * from their logical bus-devfn. Examples include device quirks where the > + * device simply uses the wrong devfn, as well as non-transparent bridges > + * where the alias may be a proxy for devices in another domain. > + * > + * IOMMU group creation is performed during device discovery or addition, > + * prior to any potential DMA mapping and therefore prior to driver probing > + * (especially for userspace assigned devices where IOMMU group definition > + * cannot be left as a userspace activity). DMA aliases should therefore > + * be configured via quirks, such as the PCI fixup header quirk. > */ > void pci_add_dma_alias(struct pci_dev *dev, u8 devfn) > { > -- > 2.11.0