[PATCH v2 7/9] dma-iommu: support iommu bounce buffer optimization

From: David Stevens
Date: Fri Aug 06 2021 - 06:35:44 EST


From: David Stevens <stevensd@xxxxxxxxxxxx>

Add config that uses IOMMU bounce buffer pools to avoid IOMMU
interactions as much as possible for relatively small streaming DMA
operations. This can lead to significant performance improvements on
systems where IOMMU map/unmap operations are very slow, such as when
running virtualized.

Signed-off-by: David Stevens <stevensd@xxxxxxxxxxxx>
---
drivers/iommu/Kconfig | 11 +++++
drivers/iommu/dma-iommu.c | 5 ++-
drivers/iommu/io-bounce-buffers.c | 70 +++++++++++++++++++++----------
drivers/iommu/io-buffer-manager.c | 17 +++++---
drivers/iommu/io-buffer-manager.h | 8 ++--
include/linux/dma-iommu.h | 2 +
6 files changed, 81 insertions(+), 32 deletions(-)

diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index 07b7c25cbed8..e573b5c276dc 100644
--- a/drivers/iommu/Kconfig
+++ b/drivers/iommu/Kconfig
@@ -422,4 +422,15 @@ config SPRD_IOMMU

Say Y here if you want to use the multimedia devices listed above.

+config IOMMU_BOUNCE_BUFFERS
+ bool "Use IOMMU bounce buffers"
+ depends on IOMMU_DMA
+ default n
+ help
+ Use bounce buffers for small, streaming DMA operations. This may
+ have performance benefits on systems where establishing IOMMU mappings
+ is particularly expensive, such as when running as a guest.
+
+ If unsure, say N here.
+
endif # IOMMU_SUPPORT
diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index 42f85b7a90f0..965bc0a2f140 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -324,7 +324,7 @@ static void iommu_dma_flush_iotlb_all(struct iova_domain *iovad)
domain->ops->flush_iotlb_all(domain);
}

-static bool dev_is_untrusted(struct device *dev)
+bool dev_is_untrusted(struct device *dev)
{
return dev_is_pci(dev) && to_pci_dev(dev)->untrusted;
}
@@ -402,7 +402,8 @@ static int iommu_dma_init_domain(struct iommu_domain *domain, dma_addr_t base,

ret = iova_reserve_iommu_regions(dev, domain);

- if (ret == 0 && dev_is_untrusted(dev)) {
+ if (ret == 0 && (dev_is_untrusted(dev) ||
+ IS_ENABLED(CONFIG_IOMMU_BOUNCE_BUFFERS))) {
cookie->bounce_buffers =
io_bounce_buffers_init(dev, domain, iovad);
if (IS_ERR(cookie->bounce_buffers))
diff --git a/drivers/iommu/io-bounce-buffers.c b/drivers/iommu/io-bounce-buffers.c
index 8af8e1546d5f..af8c2a51eeed 100644
--- a/drivers/iommu/io-bounce-buffers.c
+++ b/drivers/iommu/io-bounce-buffers.c
@@ -20,10 +20,20 @@
static unsigned int buffer_pool_size = 1024;
module_param(buffer_pool_size, uint, 0);

+#ifdef CONFIG_IOMMU_BOUNCE_BUFFERS
+// All buffers at most this size will always use bounce buffers if there
+// are slots of the appropriate size available.
+static unsigned int always_bounce_limit = PAGE_SIZE;
+module_param(always_bounce_limit, uint, 0644);
+#else
+static const unsigned int always_bounce_limit;
+#endif
+
struct io_bounce_buffers {
struct iommu_domain *domain;
struct iova_domain *iovad;
unsigned int nid;
+ bool untrusted;
struct io_buffer_manager manager;
};

@@ -56,6 +66,7 @@ struct io_bounce_buffers *io_bounce_buffers_init(struct device *dev,
buffers->domain = domain;
buffers->iovad = iovad;
buffers->nid = dev_to_node(dev);
+ buffers->untrusted = dev_is_untrusted(dev);

return buffers;
}
@@ -201,7 +212,8 @@ bool io_bounce_buffers_sync_single(struct io_bounce_buffers *buffers,
void *orig_buffer;
int prot;

- if (!io_buffer_manager_find_buffer(&buffers->manager, dma_handle, &info,
+ if (!io_buffer_manager_find_buffer(&buffers->manager, dma_handle,
+ buffers->untrusted, &info,
&orig_buffer, &prot))
return false;

@@ -237,9 +249,9 @@ bool io_bounce_buffers_sync_sg(struct io_bounce_buffers *buffers,
void *orig_buffer;
int prot;

- if (!io_buffer_manager_find_buffer(&buffers->manager,
- sg_dma_address(sgl), &info,
- &orig_buffer, &prot))
+ if (!io_buffer_manager_find_buffer(
+ &buffers->manager, sg_dma_address(sgl), buffers->untrusted,
+ &info, &orig_buffer, &prot))
return false;

// In the non bounce buffer case, iommu_dma_map_sg syncs before setting
@@ -291,7 +303,7 @@ bool io_bounce_buffers_unmap_page(struct io_bounce_buffers *buffers,

return io_buffer_manager_release_buffer(
&buffers->manager, buffers->domain, handle, true,
- io_bounce_buffers_unmap_page_sync, &args);
+ buffers->untrusted, io_bounce_buffers_unmap_page_sync, &args);
}

static void io_bounce_buffers_unmap_sg_sync(struct io_bounce_buffer_info *info,
@@ -318,7 +330,7 @@ bool io_bounce_buffers_unmap_sg(struct io_bounce_buffers *buffers,

return io_buffer_manager_release_buffer(
&buffers->manager, buffers->domain, sg_dma_address(sgl), true,
- io_bounce_buffers_unmap_sg_sync, &args);
+ buffers->untrusted, io_bounce_buffers_unmap_sg_sync, &args);
}

static void io_bounce_buffers_clear_padding(struct io_bounce_buffer_info *info,
@@ -370,7 +382,8 @@ static bool io_bounce_buffers_map_buffer(struct io_bounce_buffers *buffers,
struct sg_table sgt;
size_t mapped;

- if (offset || offset + orig_size < info->size || skiped_sync) {
+ if (buffers->untrusted &&
+ (offset || offset + orig_size < info->size || skiped_sync)) {
// Ensure that nothing is leaked to untrusted devices when
// mapping the buffer by clearing any part of the bounce buffer
// that wasn't already cleared by syncing.
@@ -396,6 +409,15 @@ static bool io_bounce_buffers_map_buffer(struct io_bounce_buffers *buffers,
return mapped >= info->size;
}

+static bool use_bounce_buffer(bool force_bounce, size_t size)
+{
+ if (IS_ENABLED(CONFIG_IOMMU_BOUNCE_BUFFERS) &&
+ size <= always_bounce_limit)
+ return true;
+
+ return force_bounce;
+}
+
bool io_bounce_buffers_map_page(struct io_bounce_buffers *buffers,
struct device *dev, struct page *page,
unsigned long offset, size_t size, int prot,
@@ -404,16 +426,17 @@ bool io_bounce_buffers_map_page(struct io_bounce_buffers *buffers,
{
bool new_buffer, skip_cpu_sync = attrs & DMA_ATTR_SKIP_CPU_SYNC;
struct io_bounce_buffer_info info;
- bool force_bounce = iova_offset(buffers->iovad, offset | size);
+ bool force_bounce = buffers->untrusted &&
+ iova_offset(buffers->iovad, offset | size);

- if (!force_bounce)
+ if (!use_bounce_buffer(force_bounce, size))
return false;

*handle = DMA_MAPPING_ERROR;
if (!io_buffer_manager_alloc_buffer(&buffers->manager, dev, page,
- offset + size, prot, buffers->nid,
- &info, &new_buffer))
- return true;
+ offset + size, prot, force_bounce,
+ buffers->nid, &info, &new_buffer))
+ return force_bounce;

if (!skip_cpu_sync)
io_bounce_buffers_do_sync(buffers, info.bounce_buffer, offset,
@@ -424,8 +447,9 @@ bool io_bounce_buffers_map_page(struct io_bounce_buffers *buffers,
offset, size)) {
io_buffer_manager_release_buffer(&buffers->manager,
buffers->domain, info.iova,
- false, NULL, NULL);
- return true;
+ false, force_bounce, NULL,
+ NULL);
+ return force_bounce;
}

*handle = info.iova + offset;
@@ -447,18 +471,19 @@ bool io_bounce_buffers_map_sg(struct io_bounce_buffers *buffers,

for_each_sg(sgl, iter, nents, i) {
size += iter->length;
- force_bounce |= iova_offset(buffers->iovad,
- iter->offset | iter->length);
+ if (buffers->untrusted)
+ force_bounce |= iova_offset(
+ buffers->iovad, iter->offset | iter->length);
}

- if (!force_bounce)
+ if (!use_bounce_buffer(force_bounce, size))
return false;

*out_nents = 0;
if (!io_buffer_manager_alloc_buffer(&buffers->manager, dev, sgl, size,
- prot, buffers->nid, &info,
- &new_buffer))
- return true;
+ prot, force_bounce, buffers->nid,
+ &info, &new_buffer))
+ return force_bounce;

if (!skip_cpu_sync)
__io_bounce_buffers_sync_sg(buffers, sgl, nents,
@@ -470,8 +495,9 @@ bool io_bounce_buffers_map_sg(struct io_bounce_buffers *buffers,
0, size)) {
io_buffer_manager_release_buffer(&buffers->manager,
buffers->domain, info.iova,
- false, NULL, NULL);
- return true;
+ false, force_bounce, NULL,
+ NULL);
+ return force_bounce;
}

i = 0;
diff --git a/drivers/iommu/io-buffer-manager.c b/drivers/iommu/io-buffer-manager.c
index 1c69df08603c..0f7f003b53bb 100644
--- a/drivers/iommu/io-buffer-manager.c
+++ b/drivers/iommu/io-buffer-manager.c
@@ -324,7 +324,8 @@ static bool io_buffer_manager_alloc_slot(struct io_buffer_manager *manager,

bool io_buffer_manager_alloc_buffer(struct io_buffer_manager *manager,
struct device *dev, void *orig_buffer,
- size_t size, int prot, unsigned int nid,
+ size_t size, int prot, bool require_bounce,
+ unsigned int nid,
struct io_bounce_buffer_info *info,
bool *new_buffer)
{
@@ -336,6 +337,9 @@ bool io_buffer_manager_alloc_buffer(struct io_buffer_manager *manager,
nid, info, new_buffer))
return true;

+ if (!require_bounce)
+ return false;
+
node = kzalloc(sizeof(*node), GFP_ATOMIC);
if (!node)
return false;
@@ -401,7 +405,7 @@ static bool __io_buffer_manager_find_slot(struct io_buffer_manager *manager,
}

bool io_buffer_manager_find_buffer(struct io_buffer_manager *manager,
- dma_addr_t handle,
+ dma_addr_t handle, bool may_use_fallback,
struct io_bounce_buffer_info *info,
void **orig_buffer, int *prot)
{
@@ -415,7 +419,8 @@ bool io_buffer_manager_find_buffer(struct io_buffer_manager *manager,
*orig_buffer = slot->orig_buffer;
*prot = slot->prot;
return true;
- }
+ } else if (!may_use_fallback)
+ return false;

spin_lock_irqsave(&manager->fallback_lock, flags);
node = find_fallback_node(&manager->fallback_buffers, handle);
@@ -433,7 +438,8 @@ bool io_buffer_manager_find_buffer(struct io_buffer_manager *manager,
bool io_buffer_manager_release_buffer(struct io_buffer_manager *manager,
struct iommu_domain *domain,
dma_addr_t handle, bool inited,
- prerelease_cb cb, void *ctx)
+ bool may_use_fallback, prerelease_cb cb,
+ void *ctx)
{
struct io_buffer_slot *slot, **cache;
struct io_buffer_pool *pool;
@@ -472,7 +478,8 @@ bool io_buffer_manager_release_buffer(struct io_buffer_manager *manager,

spin_unlock_irqrestore(&pool->lock, flags);
return true;
- }
+ } else if (!may_use_fallback)
+ return false;

spin_lock_irqsave(&manager->fallback_lock, flags);
node = find_fallback_node(&manager->fallback_buffers, handle);
diff --git a/drivers/iommu/io-buffer-manager.h b/drivers/iommu/io-buffer-manager.h
index 2aa3b9afcb3d..3d32f9366536 100644
--- a/drivers/iommu/io-buffer-manager.h
+++ b/drivers/iommu/io-buffer-manager.h
@@ -57,12 +57,13 @@ struct io_bounce_buffer_info {

bool io_buffer_manager_alloc_buffer(struct io_buffer_manager *manager,
struct device *dev, void *orig_buffer,
- size_t size, int prot, unsigned int nid,
+ size_t size, int prot, bool use_fallback,
+ unsigned int nid,
struct io_bounce_buffer_info *info,
bool *new_buffer);

bool io_buffer_manager_find_buffer(struct io_buffer_manager *manager,
- dma_addr_t handle,
+ dma_addr_t handle, bool may_use_fallback,
struct io_bounce_buffer_info *info,
void **orig_buffer, int *prot);

@@ -72,7 +73,8 @@ typedef void (*prerelease_cb)(struct io_bounce_buffer_info *info, int prot,
bool io_buffer_manager_release_buffer(struct io_buffer_manager *manager,
struct iommu_domain *domain,
dma_addr_t handle, bool inited,
- prerelease_cb cb, void *ctx);
+ bool may_use_fallback, prerelease_cb cb,
+ void *ctx);

int io_buffer_manager_init(struct io_buffer_manager *manager,
struct device *dev, struct iova_domain *iovad,
diff --git a/include/linux/dma-iommu.h b/include/linux/dma-iommu.h
index 944fd491d94f..70bed650d5d1 100644
--- a/include/linux/dma-iommu.h
+++ b/include/linux/dma-iommu.h
@@ -52,6 +52,8 @@ void __iommu_dma_free_iova(struct iommu_dma_cookie *cookie,
u64 __iommu_dma_limit(struct iommu_domain *domain,
struct device *dev, u64 mask);

+bool dev_is_untrusted(struct device *dev);
+
#else /* CONFIG_IOMMU_DMA */

struct iommu_domain;
--
2.32.0.605.g8dce9f2422-goog