2 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/types.h>
29 #ifdef CONFIG_DMA_API_DEBUG
31 extern void dma_debug_add_bus(struct bus_type
*bus
);
33 extern void dma_debug_init(u32 num_entries
);
35 extern int dma_debug_resize_entries(u32 num_entries
);
37 extern void debug_dma_map_page(struct device
*dev
, struct page
*page
,
38 size_t offset
, size_t size
,
39 int direction
, dma_addr_t dma_addr
,
42 extern void debug_dma_mapping_error(struct device
*dev
, dma_addr_t dma_addr
);
44 extern void debug_dma_unmap_page(struct device
*dev
, dma_addr_t addr
,
45 size_t size
, int direction
, bool map_single
);
47 extern void debug_dma_map_sg(struct device
*dev
, struct scatterlist
*sg
,
48 int nents
, int mapped_ents
, int direction
);
50 extern void debug_dma_unmap_sg(struct device
*dev
, struct scatterlist
*sglist
,
53 extern void debug_dma_alloc_coherent(struct device
*dev
, size_t size
,
54 dma_addr_t dma_addr
, void *virt
);
56 extern void debug_dma_free_coherent(struct device
*dev
, size_t size
,
57 void *virt
, dma_addr_t addr
);
59 extern void debug_dma_map_resource(struct device
*dev
, phys_addr_t addr
,
60 size_t size
, int direction
,
63 extern void debug_dma_unmap_resource(struct device
*dev
, dma_addr_t dma_addr
,
64 size_t size
, int direction
);
66 extern void debug_dma_sync_single_for_cpu(struct device
*dev
,
67 dma_addr_t dma_handle
, size_t size
,
70 extern void debug_dma_sync_single_for_device(struct device
*dev
,
71 dma_addr_t dma_handle
,
72 size_t size
, int direction
);
74 extern void debug_dma_sync_single_range_for_cpu(struct device
*dev
,
75 dma_addr_t dma_handle
,
80 extern void debug_dma_sync_single_range_for_device(struct device
*dev
,
81 dma_addr_t dma_handle
,
83 size_t size
, int direction
);
85 extern void debug_dma_sync_sg_for_cpu(struct device
*dev
,
86 struct scatterlist
*sg
,
87 int nelems
, int direction
);
89 extern void debug_dma_sync_sg_for_device(struct device
*dev
,
90 struct scatterlist
*sg
,
91 int nelems
, int direction
);
93 extern void debug_dma_dump_mappings(struct device
*dev
);
95 extern void debug_dma_assert_idle(struct page
*page
);
97 #else /* CONFIG_DMA_API_DEBUG */
99 static inline void dma_debug_add_bus(struct bus_type
*bus
)
103 static inline void dma_debug_init(u32 num_entries
)
107 static inline int dma_debug_resize_entries(u32 num_entries
)
112 static inline void debug_dma_map_page(struct device
*dev
, struct page
*page
,
113 size_t offset
, size_t size
,
114 int direction
, dma_addr_t dma_addr
,
119 static inline void debug_dma_mapping_error(struct device
*dev
,
124 static inline void debug_dma_unmap_page(struct device
*dev
, dma_addr_t addr
,
125 size_t size
, int direction
,
130 static inline void debug_dma_map_sg(struct device
*dev
, struct scatterlist
*sg
,
131 int nents
, int mapped_ents
, int direction
)
135 static inline void debug_dma_unmap_sg(struct device
*dev
,
136 struct scatterlist
*sglist
,
141 static inline void debug_dma_alloc_coherent(struct device
*dev
, size_t size
,
142 dma_addr_t dma_addr
, void *virt
)
146 static inline void debug_dma_free_coherent(struct device
*dev
, size_t size
,
147 void *virt
, dma_addr_t addr
)
151 static inline void debug_dma_map_resource(struct device
*dev
, phys_addr_t addr
,
152 size_t size
, int direction
,
157 static inline void debug_dma_unmap_resource(struct device
*dev
,
158 dma_addr_t dma_addr
, size_t size
,
163 static inline void debug_dma_sync_single_for_cpu(struct device
*dev
,
164 dma_addr_t dma_handle
,
165 size_t size
, int direction
)
169 static inline void debug_dma_sync_single_for_device(struct device
*dev
,
170 dma_addr_t dma_handle
,
171 size_t size
, int direction
)
175 static inline void debug_dma_sync_single_range_for_cpu(struct device
*dev
,
176 dma_addr_t dma_handle
,
177 unsigned long offset
,
183 static inline void debug_dma_sync_single_range_for_device(struct device
*dev
,
184 dma_addr_t dma_handle
,
185 unsigned long offset
,
191 static inline void debug_dma_sync_sg_for_cpu(struct device
*dev
,
192 struct scatterlist
*sg
,
193 int nelems
, int direction
)
197 static inline void debug_dma_sync_sg_for_device(struct device
*dev
,
198 struct scatterlist
*sg
,
199 int nelems
, int direction
)
203 static inline void debug_dma_dump_mappings(struct device
*dev
)
207 static inline void debug_dma_assert_idle(struct page
*page
)
211 #endif /* CONFIG_DMA_API_DEBUG */
213 #endif /* __DMA_DEBUG_H */