swiotlb-xen.h 483 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __LINUX_SWIOTLB_XEN_H
  3. #define __LINUX_SWIOTLB_XEN_H
  4. #include <linux/swiotlb.h>
  5. #include <asm/xen/swiotlb-xen.h>
  6. void xen_dma_sync_for_cpu(struct device *dev, dma_addr_t handle,
  7. size_t size, enum dma_data_direction dir);
  8. void xen_dma_sync_for_device(struct device *dev, dma_addr_t handle,
  9. size_t size, enum dma_data_direction dir);
  10. extern const struct dma_map_ops xen_swiotlb_dma_ops;
  11. #endif /* __LINUX_SWIOTLB_XEN_H */