Merge remote-tracking branch 'origin/master' into next
[pandora-kernel.git] / include / linux / dma-mapping.h
1 #ifndef _LINUX_DMA_MAPPING_H
2 #define _LINUX_DMA_MAPPING_H
3
4 #include <linux/device.h>
5 #include <linux/err.h>
6 #include <linux/dma-attrs.h>
7 #include <linux/dma-direction.h>
8 #include <linux/scatterlist.h>
9
10 struct dma_map_ops {
11         void* (*alloc_coherent)(struct device *dev, size_t size,
12                                 dma_addr_t *dma_handle, gfp_t gfp);
13         void (*free_coherent)(struct device *dev, size_t size,
14                               void *vaddr, dma_addr_t dma_handle);
15         dma_addr_t (*map_page)(struct device *dev, struct page *page,
16                                unsigned long offset, size_t size,
17                                enum dma_data_direction dir,
18                                struct dma_attrs *attrs);
19         void (*unmap_page)(struct device *dev, dma_addr_t dma_handle,
20                            size_t size, enum dma_data_direction dir,
21                            struct dma_attrs *attrs);
22         int (*map_sg)(struct device *dev, struct scatterlist *sg,
23                       int nents, enum dma_data_direction dir,
24                       struct dma_attrs *attrs);
25         void (*unmap_sg)(struct device *dev,
26                          struct scatterlist *sg, int nents,
27                          enum dma_data_direction dir,
28                          struct dma_attrs *attrs);
29         void (*sync_single_for_cpu)(struct device *dev,
30                                     dma_addr_t dma_handle, size_t size,
31                                     enum dma_data_direction dir);
32         void (*sync_single_for_device)(struct device *dev,
33                                        dma_addr_t dma_handle, size_t size,
34                                        enum dma_data_direction dir);
35         void (*sync_sg_for_cpu)(struct device *dev,
36                                 struct scatterlist *sg, int nents,
37                                 enum dma_data_direction dir);
38         void (*sync_sg_for_device)(struct device *dev,
39                                    struct scatterlist *sg, int nents,
40                                    enum dma_data_direction dir);
41         int (*mapping_error)(struct device *dev, dma_addr_t dma_addr);
42         int (*dma_supported)(struct device *dev, u64 mask);
43         int (*set_dma_mask)(struct device *dev, u64 mask);
44 #ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
45         u64 (*get_required_mask)(struct device *dev);
46 #endif
47         int is_phys;
48 };
49
50 #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
51
52 #define DMA_MASK_NONE   0x0ULL
53
54 static inline int valid_dma_direction(int dma_direction)
55 {
56         return ((dma_direction == DMA_BIDIRECTIONAL) ||
57                 (dma_direction == DMA_TO_DEVICE) ||
58                 (dma_direction == DMA_FROM_DEVICE));
59 }
60
61 static inline int is_device_dma_capable(struct device *dev)
62 {
63         return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
64 }
65
66 #ifdef CONFIG_HAS_DMA
67 #include <asm/dma-mapping.h>
68 #else
69 #include <asm-generic/dma-mapping-broken.h>
70 #endif
71
72 static inline u64 dma_get_mask(struct device *dev)
73 {
74         if (dev && dev->dma_mask && *dev->dma_mask)
75                 return *dev->dma_mask;
76         return DMA_BIT_MASK(32);
77 }
78
79 #ifdef ARCH_HAS_DMA_SET_COHERENT_MASK
80 int dma_set_coherent_mask(struct device *dev, u64 mask);
81 #else
82 static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
83 {
84         if (!dma_supported(dev, mask))
85                 return -EIO;
86         dev->coherent_dma_mask = mask;
87         return 0;
88 }
89 #endif
90
91 extern u64 dma_get_required_mask(struct device *dev);
92
93 static inline unsigned int dma_get_max_seg_size(struct device *dev)
94 {
95         return dev->dma_parms ? dev->dma_parms->max_segment_size : 65536;
96 }
97
98 static inline unsigned int dma_set_max_seg_size(struct device *dev,
99                                                 unsigned int size)
100 {
101         if (dev->dma_parms) {
102                 dev->dma_parms->max_segment_size = size;
103                 return 0;
104         } else
105                 return -EIO;
106 }
107
108 static inline unsigned long dma_get_seg_boundary(struct device *dev)
109 {
110         return dev->dma_parms ?
111                 dev->dma_parms->segment_boundary_mask : 0xffffffff;
112 }
113
114 static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
115 {
116         if (dev->dma_parms) {
117                 dev->dma_parms->segment_boundary_mask = mask;
118                 return 0;
119         } else
120                 return -EIO;
121 }
122
123 #ifdef CONFIG_HAS_DMA
124 static inline int dma_get_cache_alignment(void)
125 {
126 #ifdef ARCH_DMA_MINALIGN
127         return ARCH_DMA_MINALIGN;
128 #endif
129         return 1;
130 }
131 #endif
132
133 /* flags for the coherent memory api */
134 #define DMA_MEMORY_MAP                  0x01
135 #define DMA_MEMORY_IO                   0x02
136 #define DMA_MEMORY_INCLUDES_CHILDREN    0x04
137 #define DMA_MEMORY_EXCLUSIVE            0x08
138
139 #ifndef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
140 static inline int
141 dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
142                             dma_addr_t device_addr, size_t size, int flags)
143 {
144         return 0;
145 }
146
147 static inline void
148 dma_release_declared_memory(struct device *dev)
149 {
150 }
151
152 static inline void *
153 dma_mark_declared_memory_occupied(struct device *dev,
154                                   dma_addr_t device_addr, size_t size)
155 {
156         return ERR_PTR(-EBUSY);
157 }
158 #endif
159
160 /*
161  * Managed DMA API
162  */
163 extern void *dmam_alloc_coherent(struct device *dev, size_t size,
164                                  dma_addr_t *dma_handle, gfp_t gfp);
165 extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
166                                dma_addr_t dma_handle);
167 extern void *dmam_alloc_noncoherent(struct device *dev, size_t size,
168                                     dma_addr_t *dma_handle, gfp_t gfp);
169 extern void dmam_free_noncoherent(struct device *dev, size_t size, void *vaddr,
170                                   dma_addr_t dma_handle);
171 #ifdef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
172 extern int dmam_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
173                                         dma_addr_t device_addr, size_t size,
174                                         int flags);
175 extern void dmam_release_declared_memory(struct device *dev);
176 #else /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
177 static inline int dmam_declare_coherent_memory(struct device *dev,
178                                 dma_addr_t bus_addr, dma_addr_t device_addr,
179                                 size_t size, gfp_t gfp)
180 {
181         return 0;
182 }
183
184 static inline void dmam_release_declared_memory(struct device *dev)
185 {
186 }
187 #endif /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
188
189 #ifndef CONFIG_HAVE_DMA_ATTRS
190 struct dma_attrs;
191
192 #define dma_map_single_attrs(dev, cpu_addr, size, dir, attrs) \
193         dma_map_single(dev, cpu_addr, size, dir)
194
195 #define dma_unmap_single_attrs(dev, dma_addr, size, dir, attrs) \
196         dma_unmap_single(dev, dma_addr, size, dir)
197
198 #define dma_map_sg_attrs(dev, sgl, nents, dir, attrs) \
199         dma_map_sg(dev, sgl, nents, dir)
200
201 #define dma_unmap_sg_attrs(dev, sgl, nents, dir, attrs) \
202         dma_unmap_sg(dev, sgl, nents, dir)
203
204 #endif /* CONFIG_HAVE_DMA_ATTRS */
205
206 #ifdef CONFIG_NEED_DMA_MAP_STATE
207 #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)        dma_addr_t ADDR_NAME
208 #define DEFINE_DMA_UNMAP_LEN(LEN_NAME)          __u32 LEN_NAME
209 #define dma_unmap_addr(PTR, ADDR_NAME)           ((PTR)->ADDR_NAME)
210 #define dma_unmap_addr_set(PTR, ADDR_NAME, VAL)  (((PTR)->ADDR_NAME) = (VAL))
211 #define dma_unmap_len(PTR, LEN_NAME)             ((PTR)->LEN_NAME)
212 #define dma_unmap_len_set(PTR, LEN_NAME, VAL)    (((PTR)->LEN_NAME) = (VAL))
213 #else
214 #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
215 #define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
216 #define dma_unmap_addr(PTR, ADDR_NAME)           (0)
217 #define dma_unmap_addr_set(PTR, ADDR_NAME, VAL)  do { } while (0)
218 #define dma_unmap_len(PTR, LEN_NAME)             (0)
219 #define dma_unmap_len_set(PTR, LEN_NAME, VAL)    do { } while (0)
220 #endif
221
222 #endif