Merge branches 'iommu/page-sizes' and 'iommu/group-id' into next
authorJoerg Roedel <joerg.roedel@amd.com>
Mon, 9 Jan 2012 12:06:28 +0000 (13:06 +0100)
committerJoerg Roedel <joerg.roedel@amd.com>
Mon, 9 Jan 2012 12:06:28 +0000 (13:06 +0100)
Conflicts:
drivers/iommu/amd_iommu.c
drivers/iommu/intel-iommu.c
include/linux/iommu.h

1  2 
Documentation/kernel-parameters.txt
drivers/iommu/amd_iommu.c
drivers/iommu/intel-iommu.c
drivers/iommu/iommu.c
include/linux/iommu.h

Simple merge
index edd291070b0b926357b868858ec5023504228977,6f7553684c1e61373ac5115b8470c2840f36ce1f..cce1f03b8895324d7d6e92cd6094cc39e7673cbe
@@@ -3197,7 -2802,7 +3217,8 @@@ static struct iommu_ops amd_iommu_ops 
        .unmap = amd_iommu_unmap,
        .iova_to_phys = amd_iommu_iova_to_phys,
        .domain_has_cap = amd_iommu_domain_has_cap,
+       .device_group = amd_iommu_device_group,
 +      .pgsize_bitmap  = AMD_IOMMU_PGSIZES,
  };
  
  /*****************************************************************************
index aea72e11e166dd397a8725059ff13e16d23c78d6,9ef16d664a993702b5671c2af79319296d581a6d..77e3b917c8da8a6767e47fae9bf9532394c1190d
@@@ -4089,7 -4117,7 +4137,8 @@@ static struct iommu_ops intel_iommu_op
        .unmap          = intel_iommu_unmap,
        .iova_to_phys   = intel_iommu_iova_to_phys,
        .domain_has_cap = intel_iommu_domain_has_cap,
+       .device_group   = intel_iommu_device_group,
 +      .pgsize_bitmap  = INTEL_IOMMU_PGSIZES,
  };
  
  static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
index 14d6f908196b23bdc77e8101c036bb6a7eb8a460,9c35be4b333f1904f6f43a51da2df7dfaa17cb84..2198b2dbbcd3ad964b03a13dd6fd8dd336f27bed
@@@ -243,41 -230,19 +294,50 @@@ size_t iommu_unmap(struct iommu_domain 
        if (unlikely(domain->ops->unmap == NULL))
                return -ENODEV;
  
 -      size         = PAGE_SIZE << gfp_order;
 -
 -      BUG_ON(!IS_ALIGNED(iova, size));
 -
 -      return domain->ops->unmap(domain, iova, gfp_order);
 +      /* find out the minimum page size supported */
 +      min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
 +
 +      /*
 +       * The virtual address, as well as the size of the mapping, must be
 +       * aligned (at least) to the size of the smallest page supported
 +       * by the hardware
 +       */
 +      if (!IS_ALIGNED(iova | size, min_pagesz)) {
 +              pr_err("unaligned: iova 0x%lx size 0x%lx min_pagesz 0x%x\n",
 +                                      iova, (unsigned long)size, min_pagesz);
 +              return -EINVAL;
 +      }
 +
 +      pr_debug("unmap this: iova 0x%lx size 0x%lx\n", iova,
 +                                                      (unsigned long)size);
 +
 +      /*
 +       * Keep iterating until we either unmap 'size' bytes (or more)
 +       * or we hit an area that isn't mapped.
 +       */
 +      while (unmapped < size) {
 +              size_t left = size - unmapped;
 +
 +              unmapped_page = domain->ops->unmap(domain, iova, left);
 +              if (!unmapped_page)
 +                      break;
 +
 +              pr_debug("unmapped: iova 0x%lx size %lx\n", iova,
 +                                      (unsigned long)unmapped_page);
 +
 +              iova += unmapped_page;
 +              unmapped += unmapped_page;
 +      }
 +
 +      return unmapped;
  }
  EXPORT_SYMBOL_GPL(iommu_unmap);
+ int iommu_device_group(struct device *dev, unsigned int *groupid)
+ {
+       if (iommu_present(dev->bus) && dev->bus->iommu_ops->device_group)
+               return dev->bus->iommu_ops->device_group(dev, groupid);
+       return -ENODEV;
+ }
+ EXPORT_SYMBOL_GPL(iommu_device_group);
index cc26f89c4ee6303ae670196905055dbfae654510,0f318fd549beb73d2311096e56d33ca8bf5fb5df..d937580417ba668d343b30b1741d59139f7924b9
@@@ -74,7 -61,7 +74,8 @@@ struct iommu_ops 
                                    unsigned long iova);
        int (*domain_has_cap)(struct iommu_domain *domain,
                              unsigned long cap);
+       int (*device_group)(struct device *dev, unsigned int *groupid);
 +      unsigned long pgsize_bitmap;
  };
  
  extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops);