blob: d5eaf9d682b804be2d563e2a284ae292436e9980 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_SWIOTLB_XEN_H
3#define __LINUX_SWIOTLB_XEN_H
4
5#include <linux/swiotlb.h>
6
David Brazdil0f672f62019-12-10 10:32:29 +00007void xen_dma_sync_for_cpu(struct device *dev, dma_addr_t handle,
Olivier Deprez157378f2022-04-04 15:47:50 +02008 size_t size, enum dma_data_direction dir);
David Brazdil0f672f62019-12-10 10:32:29 +00009void xen_dma_sync_for_device(struct device *dev, dma_addr_t handle,
Olivier Deprez157378f2022-04-04 15:47:50 +020010 size_t size, enum dma_data_direction dir);
David Brazdil0f672f62019-12-10 10:32:29 +000011
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012extern int xen_swiotlb_init(int verbose, bool early);
13extern const struct dma_map_ops xen_swiotlb_dma_ops;
14
15#endif /* __LINUX_SWIOTLB_XEN_H */