]> Pileus Git - ~andy/linux/commitdiff
iommu-api: Add ->{un}map callbacks to iommu_ops
authorJoerg Roedel <joerg.roedel@amd.com>
Thu, 21 Jan 2010 15:32:27 +0000 (16:32 +0100)
committerJoerg Roedel <joerg.roedel@amd.com>
Sun, 7 Mar 2010 17:01:11 +0000 (18:01 +0100)
This patch adds new callbacks for mapping and unmapping
pages to the iommu_ops structure. These callbacks are aware
of page sizes which makes them different to the
->{un}map_range callbacks.

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
drivers/base/iommu.c
include/linux/iommu.h

index cf7cbec116ed07321685ea32a922f3343266b728..55d37e4609eb6624f2852db94fac056a95550c2d 100644 (file)
@@ -119,6 +119,9 @@ int iommu_map(struct iommu_domain *domain, unsigned long iova,
 
        BUG_ON((iova | paddr) & invalid_mask);
 
+       if (iommu_ops->map)
+               return iommu_ops->map(domain, iova, paddr, gfp_order, prot);
+
        return iommu_ops->map_range(domain, iova, paddr, size, prot);
 }
 EXPORT_SYMBOL_GPL(iommu_map);
@@ -133,6 +136,9 @@ int iommu_unmap(struct iommu_domain *domain, unsigned long iova, int gfp_order)
 
        BUG_ON(iova & invalid_mask);
 
+       if (iommu_ops->unmap)
+               return iommu_ops->unmap(domain, iova, gfp_order);
+
        iommu_ops->unmap_range(domain, iova, size);
 
        return gfp_order;
index 6d0035bb1a0c564f1b6df7d8274029b180c20893..5a7a3d888dac3e70c2598d16f53c8d9107d6def3 100644 (file)
@@ -36,6 +36,10 @@ struct iommu_ops {
        void (*domain_destroy)(struct iommu_domain *domain);
        int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
        void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
+       int (*map)(struct iommu_domain *domain, unsigned long iova,
+                  phys_addr_t paddr, int gfp_order, int prot);
+       int (*unmap)(struct iommu_domain *domain, unsigned long iova,
+                    int gfp_order);
        int (*map_range)(struct iommu_domain *domain, unsigned long iova,
                         phys_addr_t paddr, size_t size, int prot);
        void (*unmap_range)(struct iommu_domain *domain, unsigned long iova,