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_sync_single_for_cpu(struct device
*dev
,
60 dma_addr_t dma_handle
, size_t size
,
63 extern void debug_dma_sync_single_for_device(struct device
*dev
,
64 dma_addr_t dma_handle
,
65 size_t size
, int direction
);
67 extern void debug_dma_sync_single_range_for_cpu(struct device
*dev
,
68 dma_addr_t dma_handle
,
73 extern void debug_dma_sync_single_range_for_device(struct device
*dev
,
74 dma_addr_t dma_handle
,
76 size_t size
, int direction
);
78 extern void debug_dma_sync_sg_for_cpu(struct device
*dev
,
79 struct scatterlist
*sg
,
80 int nelems
, int direction
);
82 extern void debug_dma_sync_sg_for_device(struct device
*dev
,
83 struct scatterlist
*sg
,
84 int nelems
, int direction
);
86 extern void debug_dma_dump_mappings(struct device
*dev
);
88 extern void debug_dma_assert_idle(struct page
*page
);
90 #else /* CONFIG_DMA_API_DEBUG */
92 static inline void dma_debug_add_bus(struct bus_type
*bus
)
96 static inline void dma_debug_init(u32 num_entries
)
100 static inline int dma_debug_resize_entries(u32 num_entries
)
105 static inline void debug_dma_map_page(struct device
*dev
, struct page
*page
,
106 size_t offset
, size_t size
,
107 int direction
, dma_addr_t dma_addr
,
112 static inline void debug_dma_mapping_error(struct device
*dev
,
117 static inline void debug_dma_unmap_page(struct device
*dev
, dma_addr_t addr
,
118 size_t size
, int direction
,
123 static inline void debug_dma_map_sg(struct device
*dev
, struct scatterlist
*sg
,
124 int nents
, int mapped_ents
, int direction
)
128 static inline void debug_dma_unmap_sg(struct device
*dev
,
129 struct scatterlist
*sglist
,
134 static inline void debug_dma_alloc_coherent(struct device
*dev
, size_t size
,
135 dma_addr_t dma_addr
, void *virt
)
139 static inline void debug_dma_free_coherent(struct device
*dev
, size_t size
,
140 void *virt
, dma_addr_t addr
)
144 static inline void debug_dma_sync_single_for_cpu(struct device
*dev
,
145 dma_addr_t dma_handle
,
146 size_t size
, int direction
)
150 static inline void debug_dma_sync_single_for_device(struct device
*dev
,
151 dma_addr_t dma_handle
,
152 size_t size
, int direction
)
156 static inline void debug_dma_sync_single_range_for_cpu(struct device
*dev
,
157 dma_addr_t dma_handle
,
158 unsigned long offset
,
164 static inline void debug_dma_sync_single_range_for_device(struct device
*dev
,
165 dma_addr_t dma_handle
,
166 unsigned long offset
,
172 static inline void debug_dma_sync_sg_for_cpu(struct device
*dev
,
173 struct scatterlist
*sg
,
174 int nelems
, int direction
)
178 static inline void debug_dma_sync_sg_for_device(struct device
*dev
,
179 struct scatterlist
*sg
,
180 int nelems
, int direction
)
184 static inline void debug_dma_dump_mappings(struct device
*dev
)
188 static inline void debug_dma_assert_idle(struct page
*page
)
192 #endif /* CONFIG_DMA_API_DEBUG */
194 #endif /* __DMA_DEBUG_H */