[PATCH v6 3/7] xen/arm: introduce is_dma_coherent

From: Stefano Stabellini
Date: Sat Oct 25 2014 - 14:27:57 EST


Introduce a simple utility function that returns whether a device is dma
coherent based on device tree information.

Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
CC: catalin.marinas@xxxxxxx
CC: Will.Deacon@xxxxxxx
---
arch/arm/xen/mm32.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/arch/arm/xen/mm32.c b/arch/arm/xen/mm32.c
index 6153d61..2b259f1 100644
--- a/arch/arm/xen/mm32.c
+++ b/arch/arm/xen/mm32.c
@@ -2,10 +2,16 @@
#include <linux/dma-mapping.h>
#include <linux/gfp.h>
#include <linux/highmem.h>
+#include <linux/of_address.h>

#include <xen/features.h>


+static inline bool is_dma_coherent(struct device *dev)
+{
+ return of_dma_is_coherent(dev->of_node);
+}
+
/* functions called by SWIOTLB */

static void dma_cache_maint(dma_addr_t handle, unsigned long offset,
--
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/