blob: 6b15a24930e0abf92d69519b3ac39e6593ccadb6 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_X86_DMA_MAPPING_H
3#define _ASM_X86_DMA_MAPPING_H
4
5/*
6 * IOMMU interface. See Documentation/DMA-API-HOWTO.txt and
7 * Documentation/DMA-API.txt for documentation.
8 */
9
10#include <linux/scatterlist.h>
11#include <linux/dma-debug.h>
12#include <asm/io.h>
13#include <asm/swiotlb.h>
14#include <linux/dma-contiguous.h>
15
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016extern int iommu_merge;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017extern int panic_on_overflow;
18
19extern const struct dma_map_ops *dma_ops;
20
21static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
22{
23 return dma_ops;
24}
25
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026#endif