1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
11 #include <linux/types.h>
17 #ifdef CONFIG_DMA_API_DEBUG
19 extern void dma_debug_add_bus(struct bus_type *bus);
21 extern void debug_dma_map_single(struct device *dev, const void *addr,
24 extern void debug_dma_map_page(struct device *dev, struct page *page,
25 size_t offset, size_t size,
26 int direction, dma_addr_t dma_addr);
28 extern void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr);
30 extern void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
31 size_t size, int direction);
33 extern void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
34 int nents, int mapped_ents, int direction);
36 extern void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
39 extern void debug_dma_alloc_coherent(struct device *dev, size_t size,
40 dma_addr_t dma_addr, void *virt);
42 extern void debug_dma_free_coherent(struct device *dev, size_t size,
43 void *virt, dma_addr_t addr);
45 extern void debug_dma_map_resource(struct device *dev, phys_addr_t addr,
46 size_t size, int direction,
49 extern void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
50 size_t size, int direction);
52 extern void debug_dma_sync_single_for_cpu(struct device *dev,
53 dma_addr_t dma_handle, size_t size,
56 extern void debug_dma_sync_single_for_device(struct device *dev,
57 dma_addr_t dma_handle,
58 size_t size, int direction);
60 extern void debug_dma_sync_sg_for_cpu(struct device *dev,
61 struct scatterlist *sg,
62 int nelems, int direction);
64 extern void debug_dma_sync_sg_for_device(struct device *dev,
65 struct scatterlist *sg,
66 int nelems, int direction);
68 extern void debug_dma_dump_mappings(struct device *dev);
70 #else /* CONFIG_DMA_API_DEBUG */
72 static inline void dma_debug_add_bus(struct bus_type *bus)
76 static inline void debug_dma_map_single(struct device *dev, const void *addr,
81 static inline void debug_dma_map_page(struct device *dev, struct page *page,
82 size_t offset, size_t size,
83 int direction, dma_addr_t dma_addr)
87 static inline void debug_dma_mapping_error(struct device *dev,
92 static inline void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
93 size_t size, int direction)
97 static inline void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
98 int nents, int mapped_ents, int direction)
102 static inline void debug_dma_unmap_sg(struct device *dev,
103 struct scatterlist *sglist,
108 static inline void debug_dma_alloc_coherent(struct device *dev, size_t size,
109 dma_addr_t dma_addr, void *virt)
113 static inline void debug_dma_free_coherent(struct device *dev, size_t size,
114 void *virt, dma_addr_t addr)
118 static inline void debug_dma_map_resource(struct device *dev, phys_addr_t addr,
119 size_t size, int direction,
124 static inline void debug_dma_unmap_resource(struct device *dev,
125 dma_addr_t dma_addr, size_t size,
130 static inline void debug_dma_sync_single_for_cpu(struct device *dev,
131 dma_addr_t dma_handle,
132 size_t size, int direction)
136 static inline void debug_dma_sync_single_for_device(struct device *dev,
137 dma_addr_t dma_handle,
138 size_t size, int direction)
142 static inline void debug_dma_sync_sg_for_cpu(struct device *dev,
143 struct scatterlist *sg,
144 int nelems, int direction)
148 static inline void debug_dma_sync_sg_for_device(struct device *dev,
149 struct scatterlist *sg,
150 int nelems, int direction)
154 static inline void debug_dma_dump_mappings(struct device *dev)
158 #endif /* CONFIG_DMA_API_DEBUG */
160 #endif /* __DMA_DEBUG_H */