[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v3 10/11] xen/arm: introduce phys/dma translations in xen_dma_sync_for_*



From: Stefano Stabellini <stefano.stabellini@xxxxxxxxxx>

xen_dma_sync_for_cpu, xen_dma_sync_for_device, xen_arch_need_swiotlb are
getting called passing dma addresses. On some platforms dma addresses
could be different from physical addresses. Before doing any operations
on these addresses we need to convert them back to physical addresses
using dma_to_phys.

Move the arch_sync_dma_for_cpu and arch_sync_dma_for_device calls from
xen_dma_sync_for_cpu/device to swiotlb-xen.c, and add a call dma_to_phys
to do address translations there.

dma_cache_maint is fixed by the next patch.

Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxx>
Tested-by: Corey Minyard <cminyard@xxxxxxxxxx>
Tested-by: Roman Shaposhnik <roman@xxxxxxxxxx>

---
Changes in v2:
- improve commit message
- don't use pfn_valid

Changes in v3:
- move arch_sync_dma_for_cpu/device calls to swiotlb-xen.c
---
 arch/arm/xen/mm.c         | 17 ++++++-----------
 drivers/xen/swiotlb-xen.c | 32 ++++++++++++++++++++++++--------
 include/xen/swiotlb-xen.h |  6 ++----
 3 files changed, 32 insertions(+), 23 deletions(-)

diff --git a/arch/arm/xen/mm.c b/arch/arm/xen/mm.c
index f2414ea40a79..a8251a70f442 100644
--- a/arch/arm/xen/mm.c
+++ b/arch/arm/xen/mm.c
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-only
 #include <linux/cpu.h>
+#include <linux/dma-direct.h>
 #include <linux/dma-noncoherent.h>
 #include <linux/gfp.h>
 #include <linux/highmem.h>
@@ -72,22 +73,16 @@ static void dma_cache_maint(dma_addr_t handle, size_t size, 
u32 op)
  * dma-direct functions, otherwise we call the Xen specific version.
  */
 void xen_dma_sync_for_cpu(struct device *dev, dma_addr_t handle,
-                         phys_addr_t paddr, size_t size,
-                         enum dma_data_direction dir)
+                         size_t size, enum dma_data_direction dir)
 {
-       if (pfn_valid(PFN_DOWN(handle)))
-               arch_sync_dma_for_cpu(paddr, size, dir);
-       else if (dir != DMA_TO_DEVICE)
+       if (dir != DMA_TO_DEVICE)
                dma_cache_maint(handle, size, GNTTAB_CACHE_INVAL);
 }
 
 void xen_dma_sync_for_device(struct device *dev, dma_addr_t handle,
-                            phys_addr_t paddr, size_t size,
-                            enum dma_data_direction dir)
+                            size_t size, enum dma_data_direction dir)
 {
-       if (pfn_valid(PFN_DOWN(handle)))
-               arch_sync_dma_for_device(paddr, size, dir);
-       else if (dir == DMA_FROM_DEVICE)
+       if (dir == DMA_FROM_DEVICE)
                dma_cache_maint(handle, size, GNTTAB_CACHE_INVAL);
        else
                dma_cache_maint(handle, size, GNTTAB_CACHE_CLEAN);
@@ -98,7 +93,7 @@ bool xen_arch_need_swiotlb(struct device *dev,
                           dma_addr_t dev_addr)
 {
        unsigned int xen_pfn = XEN_PFN_DOWN(phys);
-       unsigned int bfn = XEN_PFN_DOWN(dev_addr);
+       unsigned int bfn = XEN_PFN_DOWN(dma_to_phys(dev, dev_addr));
 
        /*
         * The swiotlb buffer should be used if
diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c
index a6a95358a8cb..39a0f2e0847c 100644
--- a/drivers/xen/swiotlb-xen.c
+++ b/drivers/xen/swiotlb-xen.c
@@ -413,8 +413,12 @@ static dma_addr_t xen_swiotlb_map_page(struct device *dev, 
struct page *page,
        }
 
 done:
-       if (!dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC))
-               xen_dma_sync_for_device(dev, dev_addr, phys, size, dir);
+       if (!dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
+               if (pfn_valid(PFN_DOWN(dma_to_phys(dev, dev_addr))))
+                       arch_sync_dma_for_device(phys, size, dir);
+               else
+                       xen_dma_sync_for_device(dev, dev_addr, size, dir);
+       }
        return dev_addr;
 }
 
@@ -433,8 +437,12 @@ static void xen_swiotlb_unmap_page(struct device *hwdev, 
dma_addr_t dev_addr,
 
        BUG_ON(dir == DMA_NONE);
 
-       if (!dev_is_dma_coherent(hwdev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC))
-               xen_dma_sync_for_cpu(hwdev, dev_addr, paddr, size, dir);
+       if (!dev_is_dma_coherent(hwdev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
+               if (pfn_valid(PFN_DOWN(dma_to_phys(hwdev, dev_addr))))
+                       arch_sync_dma_for_cpu(paddr, size, dir);
+               else
+                       xen_dma_sync_for_cpu(hwdev, dev_addr, size, dir);
+       }
 
        /* NOTE: We use dev_addr here, not paddr! */
        if (is_xen_swiotlb_buffer(hwdev, dev_addr))
@@ -447,8 +455,12 @@ xen_swiotlb_sync_single_for_cpu(struct device *dev, 
dma_addr_t dma_addr,
 {
        phys_addr_t paddr = xen_dma_to_phys(dev, dma_addr);
 
-       if (!dev_is_dma_coherent(dev))
-               xen_dma_sync_for_cpu(dev, dma_addr, paddr, size, dir);
+       if (!dev_is_dma_coherent(dev)) {
+               if (pfn_valid(PFN_DOWN(dma_to_phys(dev, dma_addr))))
+                       arch_sync_dma_for_cpu(paddr, size, dir);
+               else
+                       xen_dma_sync_for_cpu(dev, dma_addr, size, dir);
+       }
 
        if (is_xen_swiotlb_buffer(dev, dma_addr))
                swiotlb_tbl_sync_single(dev, paddr, size, dir, SYNC_FOR_CPU);
@@ -463,8 +475,12 @@ xen_swiotlb_sync_single_for_device(struct device *dev, 
dma_addr_t dma_addr,
        if (is_xen_swiotlb_buffer(dev, dma_addr))
                swiotlb_tbl_sync_single(dev, paddr, size, dir, SYNC_FOR_DEVICE);
 
-       if (!dev_is_dma_coherent(dev))
-               xen_dma_sync_for_device(dev, dma_addr, paddr, size, dir);
+       if (!dev_is_dma_coherent(dev)) {
+               if (pfn_valid(PFN_DOWN(dma_to_phys(dev, dma_addr))))
+                       arch_sync_dma_for_device(paddr, size, dir);
+               else
+                       xen_dma_sync_for_device(dev, dma_addr, size, dir);
+       }
 }
 
 /*
diff --git a/include/xen/swiotlb-xen.h b/include/xen/swiotlb-xen.h
index 6d235fe2b92d..d5eaf9d682b8 100644
--- a/include/xen/swiotlb-xen.h
+++ b/include/xen/swiotlb-xen.h
@@ -5,11 +5,9 @@
 #include <linux/swiotlb.h>
 
 void xen_dma_sync_for_cpu(struct device *dev, dma_addr_t handle,
-                         phys_addr_t paddr, size_t size,
-                         enum dma_data_direction dir);
+                         size_t size, enum dma_data_direction dir);
 void xen_dma_sync_for_device(struct device *dev, dma_addr_t handle,
-                            phys_addr_t paddr, size_t size,
-                            enum dma_data_direction dir);
+                            size_t size, enum dma_data_direction dir);
 
 extern int xen_swiotlb_init(int verbose, bool early);
 extern const struct dma_map_ops xen_swiotlb_dma_ops;
-- 
2.17.1




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.