summaryrefslogtreecommitdiffstats
path: root/include/xen/arm/xen-ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xen/arm/xen-ops.h')
-rw-r--r--include/xen/arm/xen-ops.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/xen/arm/xen-ops.h b/include/xen/arm/xen-ops.h
new file mode 100644
index 000000000..70073f5a2
--- /dev/null
+++ b/include/xen/arm/xen-ops.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _ASM_ARM_XEN_OPS_H
+#define _ASM_ARM_XEN_OPS_H
+
+#include <xen/swiotlb-xen.h>
+#include <xen/xen-ops.h>
+
+static inline void xen_setup_dma_ops(struct device *dev)
+{
+#ifdef CONFIG_XEN
+ if (xen_swiotlb_detect())
+ dev->dma_ops = &xen_swiotlb_dma_ops;
+#endif
+}
+
+#endif /* _ASM_ARM_XEN_OPS_H */