blob: fc0e34ce038f4055eaf7160cb1eb7693b7cc7e5d [file] [log] [blame]
Joerg Roedelf2f45e52009-01-09 12:19:52 +01001/*
2 * Copyright (C) 2008 Advanced Micro Devices, Inc.
3 *
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
5 *
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.
9 *
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.
14 *
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
18 */
19
20#ifndef __DMA_DEBUG_H
21#define __DMA_DEBUG_H
22
Joerg Roedel6bf07872009-01-09 12:54:42 +010023#include <linux/types.h>
24
Joerg Roedelf2f45e52009-01-09 12:19:52 +010025struct device;
Joerg Roedel972aa452009-01-09 14:19:54 +010026struct scatterlist;
Joerg Roedel41531c82009-03-16 17:32:14 +010027struct bus_type;
Joerg Roedelf2f45e52009-01-09 12:19:52 +010028
Joerg Roedel6bf07872009-01-09 12:54:42 +010029#ifdef CONFIG_DMA_API_DEBUG
30
Joerg Roedel41531c82009-03-16 17:32:14 +010031extern void dma_debug_add_bus(struct bus_type *bus);
32
Joerg Roedel6bf07872009-01-09 12:54:42 +010033extern void dma_debug_init(u32 num_entries);
34
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +090035extern int dma_debug_resize_entries(u32 num_entries);
36
Joerg Roedelf62bc982009-01-09 14:14:49 +010037extern 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,
40 bool map_single);
41
Shuah Khan6c9c6d62012-10-08 11:08:06 -060042extern void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr);
43
Joerg Roedelf62bc982009-01-09 14:14:49 +010044extern void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
45 size_t size, int direction, bool map_single);
46
Joerg Roedel972aa452009-01-09 14:19:54 +010047extern void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
48 int nents, int mapped_ents, int direction);
49
50extern void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
51 int nelems, int dir);
Joerg Roedelf62bc982009-01-09 14:14:49 +010052
Joerg Roedel6bfd4492009-01-09 14:38:50 +010053extern void debug_dma_alloc_coherent(struct device *dev, size_t size,
54 dma_addr_t dma_addr, void *virt);
55
56extern void debug_dma_free_coherent(struct device *dev, size_t size,
57 void *virt, dma_addr_t addr);
58
Joerg Roedelb9d23172009-01-09 14:43:04 +010059extern void debug_dma_sync_single_for_cpu(struct device *dev,
60 dma_addr_t dma_handle, size_t size,
61 int direction);
62
63extern void debug_dma_sync_single_for_device(struct device *dev,
64 dma_addr_t dma_handle,
65 size_t size, int direction);
66
Joerg Roedel948408b2009-01-09 14:55:38 +010067extern void debug_dma_sync_single_range_for_cpu(struct device *dev,
68 dma_addr_t dma_handle,
69 unsigned long offset,
70 size_t size,
71 int direction);
72
73extern void debug_dma_sync_single_range_for_device(struct device *dev,
74 dma_addr_t dma_handle,
75 unsigned long offset,
76 size_t size, int direction);
77
Joerg Roedela31fba52009-01-09 15:01:12 +010078extern void debug_dma_sync_sg_for_cpu(struct device *dev,
79 struct scatterlist *sg,
80 int nelems, int direction);
81
82extern void debug_dma_sync_sg_for_device(struct device *dev,
83 struct scatterlist *sg,
84 int nelems, int direction);
85
David Woodhouseac26c182009-02-12 16:19:13 +010086extern void debug_dma_dump_mappings(struct device *dev);
87
Joerg Roedel6bf07872009-01-09 12:54:42 +010088#else /* CONFIG_DMA_API_DEBUG */
89
Ingo Molnar84be58d2009-03-18 11:50:29 +010090static inline void dma_debug_add_bus(struct bus_type *bus)
Joerg Roedel41531c82009-03-16 17:32:14 +010091{
92}
93
Joerg Roedel6bf07872009-01-09 12:54:42 +010094static inline void dma_debug_init(u32 num_entries)
95{
96}
97
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +090098static inline int dma_debug_resize_entries(u32 num_entries)
99{
100 return 0;
101}
102
Joerg Roedelf62bc982009-01-09 14:14:49 +0100103static inline void debug_dma_map_page(struct device *dev, struct page *page,
104 size_t offset, size_t size,
105 int direction, dma_addr_t dma_addr,
106 bool map_single)
107{
108}
109
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600110static inline void debug_dma_mapping_error(struct device *dev,
111 dma_addr_t dma_addr)
112{
113}
114
Joerg Roedelf62bc982009-01-09 14:14:49 +0100115static inline void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
116 size_t size, int direction,
117 bool map_single)
118{
119}
120
Joerg Roedel972aa452009-01-09 14:19:54 +0100121static inline void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
122 int nents, int mapped_ents, int direction)
123{
124}
125
126static inline void debug_dma_unmap_sg(struct device *dev,
127 struct scatterlist *sglist,
128 int nelems, int dir)
129{
130}
Joerg Roedelf62bc982009-01-09 14:14:49 +0100131
Joerg Roedel6bfd4492009-01-09 14:38:50 +0100132static inline void debug_dma_alloc_coherent(struct device *dev, size_t size,
133 dma_addr_t dma_addr, void *virt)
134{
135}
136
137static inline void debug_dma_free_coherent(struct device *dev, size_t size,
138 void *virt, dma_addr_t addr)
139{
140}
141
Joerg Roedelb9d23172009-01-09 14:43:04 +0100142static inline void debug_dma_sync_single_for_cpu(struct device *dev,
143 dma_addr_t dma_handle,
144 size_t size, int direction)
145{
146}
147
148static inline void debug_dma_sync_single_for_device(struct device *dev,
149 dma_addr_t dma_handle,
150 size_t size, int direction)
151{
152}
153
Joerg Roedel948408b2009-01-09 14:55:38 +0100154static inline void debug_dma_sync_single_range_for_cpu(struct device *dev,
155 dma_addr_t dma_handle,
156 unsigned long offset,
157 size_t size,
158 int direction)
159{
160}
161
162static inline void debug_dma_sync_single_range_for_device(struct device *dev,
163 dma_addr_t dma_handle,
164 unsigned long offset,
165 size_t size,
166 int direction)
167{
168}
169
Joerg Roedela31fba52009-01-09 15:01:12 +0100170static inline void debug_dma_sync_sg_for_cpu(struct device *dev,
171 struct scatterlist *sg,
172 int nelems, int direction)
173{
174}
175
176static inline void debug_dma_sync_sg_for_device(struct device *dev,
177 struct scatterlist *sg,
178 int nelems, int direction)
179{
180}
181
David Woodhouseac26c182009-02-12 16:19:13 +0100182static inline void debug_dma_dump_mappings(struct device *dev)
183{
184}
185
Joerg Roedel6bf07872009-01-09 12:54:42 +0100186#endif /* CONFIG_DMA_API_DEBUG */
187
Joerg Roedelf2f45e52009-01-09 12:19:52 +0100188#endif /* __DMA_DEBUG_H */