dma-buf: implement vmap refcounting in the interface logic
[deliverable/linux.git] / drivers / base / dma-buf.c
CommitLineData
d15bd7ee
SS
1/*
2 * Framework for buffer objects that can be shared across devices/subsystems.
3 *
4 * Copyright(C) 2011 Linaro Limited. All rights reserved.
5 * Author: Sumit Semwal <sumit.semwal@ti.com>
6 *
7 * Many thanks to linaro-mm-sig list, and specially
8 * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and
9 * Daniel Vetter <daniel@ffwll.ch> for their support in creation and
10 * refining of this idea.
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License version 2 as published by
14 * the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program. If not, see <http://www.gnu.org/licenses/>.
23 */
24
25#include <linux/fs.h>
26#include <linux/slab.h>
27#include <linux/dma-buf.h>
28#include <linux/anon_inodes.h>
29#include <linux/export.h>
30
31static inline int is_dma_buf_file(struct file *);
32
33static int dma_buf_release(struct inode *inode, struct file *file)
34{
35 struct dma_buf *dmabuf;
36
37 if (!is_dma_buf_file(file))
38 return -EINVAL;
39
40 dmabuf = file->private_data;
41
f00b4dad
DV
42 BUG_ON(dmabuf->vmapping_counter);
43
d15bd7ee
SS
44 dmabuf->ops->release(dmabuf);
45 kfree(dmabuf);
46 return 0;
47}
48
4c78513e
DV
49static int dma_buf_mmap_internal(struct file *file, struct vm_area_struct *vma)
50{
51 struct dma_buf *dmabuf;
52
53 if (!is_dma_buf_file(file))
54 return -EINVAL;
55
56 dmabuf = file->private_data;
57
58 /* check for overflowing the buffer's size */
59 if (vma->vm_pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) >
60 dmabuf->size >> PAGE_SHIFT)
61 return -EINVAL;
62
63 return dmabuf->ops->mmap(dmabuf, vma);
64}
65
d15bd7ee
SS
66static const struct file_operations dma_buf_fops = {
67 .release = dma_buf_release,
4c78513e 68 .mmap = dma_buf_mmap_internal,
d15bd7ee
SS
69};
70
71/*
72 * is_dma_buf_file - Check if struct file* is associated with dma_buf
73 */
74static inline int is_dma_buf_file(struct file *file)
75{
76 return file->f_op == &dma_buf_fops;
77}
78
79/**
80 * dma_buf_export - Creates a new dma_buf, and associates an anon file
81 * with this buffer, so it can be exported.
82 * Also connect the allocator specific data and ops to the buffer.
83 *
84 * @priv: [in] Attach private data of allocator to this buffer
85 * @ops: [in] Attach allocator-defined dma buf ops to the new buffer.
86 * @size: [in] Size of the buffer
87 * @flags: [in] mode flags for the file.
88 *
89 * Returns, on success, a newly created dma_buf object, which wraps the
90 * supplied private data and operations for dma_buf_ops. On either missing
91 * ops, or error in allocating struct dma_buf, will return negative error.
92 *
93 */
5375764f 94struct dma_buf *dma_buf_export(void *priv, const struct dma_buf_ops *ops,
d15bd7ee
SS
95 size_t size, int flags)
96{
97 struct dma_buf *dmabuf;
98 struct file *file;
99
100 if (WARN_ON(!priv || !ops
101 || !ops->map_dma_buf
102 || !ops->unmap_dma_buf
fc13020e
DV
103 || !ops->release
104 || !ops->kmap_atomic
4c78513e
DV
105 || !ops->kmap
106 || !ops->mmap)) {
d15bd7ee
SS
107 return ERR_PTR(-EINVAL);
108 }
109
110 dmabuf = kzalloc(sizeof(struct dma_buf), GFP_KERNEL);
111 if (dmabuf == NULL)
112 return ERR_PTR(-ENOMEM);
113
114 dmabuf->priv = priv;
115 dmabuf->ops = ops;
116 dmabuf->size = size;
117
118 file = anon_inode_getfile("dmabuf", &dma_buf_fops, dmabuf, flags);
119
120 dmabuf->file = file;
121
122 mutex_init(&dmabuf->lock);
123 INIT_LIST_HEAD(&dmabuf->attachments);
124
125 return dmabuf;
126}
127EXPORT_SYMBOL_GPL(dma_buf_export);
128
129
130/**
131 * dma_buf_fd - returns a file descriptor for the given dma_buf
132 * @dmabuf: [in] pointer to dma_buf for which fd is required.
55c1c4ca 133 * @flags: [in] flags to give to fd
d15bd7ee
SS
134 *
135 * On success, returns an associated 'fd'. Else, returns error.
136 */
55c1c4ca 137int dma_buf_fd(struct dma_buf *dmabuf, int flags)
d15bd7ee 138{
f5e097f0 139 int fd;
d15bd7ee
SS
140
141 if (!dmabuf || !dmabuf->file)
142 return -EINVAL;
143
f5e097f0
BP
144 fd = get_unused_fd_flags(flags);
145 if (fd < 0)
146 return fd;
d15bd7ee
SS
147
148 fd_install(fd, dmabuf->file);
149
150 return fd;
151}
152EXPORT_SYMBOL_GPL(dma_buf_fd);
153
154/**
155 * dma_buf_get - returns the dma_buf structure related to an fd
156 * @fd: [in] fd associated with the dma_buf to be returned
157 *
158 * On success, returns the dma_buf structure associated with an fd; uses
159 * file's refcounting done by fget to increase refcount. returns ERR_PTR
160 * otherwise.
161 */
162struct dma_buf *dma_buf_get(int fd)
163{
164 struct file *file;
165
166 file = fget(fd);
167
168 if (!file)
169 return ERR_PTR(-EBADF);
170
171 if (!is_dma_buf_file(file)) {
172 fput(file);
173 return ERR_PTR(-EINVAL);
174 }
175
176 return file->private_data;
177}
178EXPORT_SYMBOL_GPL(dma_buf_get);
179
180/**
181 * dma_buf_put - decreases refcount of the buffer
182 * @dmabuf: [in] buffer to reduce refcount of
183 *
184 * Uses file's refcounting done implicitly by fput()
185 */
186void dma_buf_put(struct dma_buf *dmabuf)
187{
188 if (WARN_ON(!dmabuf || !dmabuf->file))
189 return;
190
191 fput(dmabuf->file);
192}
193EXPORT_SYMBOL_GPL(dma_buf_put);
194
195/**
196 * dma_buf_attach - Add the device to dma_buf's attachments list; optionally,
197 * calls attach() of dma_buf_ops to allow device-specific attach functionality
198 * @dmabuf: [in] buffer to attach device to.
199 * @dev: [in] device to be attached.
200 *
201 * Returns struct dma_buf_attachment * for this attachment; may return negative
202 * error codes.
203 *
204 */
205struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
206 struct device *dev)
207{
208 struct dma_buf_attachment *attach;
209 int ret;
210
d1aa06a1 211 if (WARN_ON(!dmabuf || !dev))
d15bd7ee
SS
212 return ERR_PTR(-EINVAL);
213
214 attach = kzalloc(sizeof(struct dma_buf_attachment), GFP_KERNEL);
215 if (attach == NULL)
a9fbc3b7 216 return ERR_PTR(-ENOMEM);
d15bd7ee 217
d15bd7ee
SS
218 attach->dev = dev;
219 attach->dmabuf = dmabuf;
2ed9201b
LP
220
221 mutex_lock(&dmabuf->lock);
222
d15bd7ee
SS
223 if (dmabuf->ops->attach) {
224 ret = dmabuf->ops->attach(dmabuf, dev, attach);
225 if (ret)
226 goto err_attach;
227 }
228 list_add(&attach->node, &dmabuf->attachments);
229
230 mutex_unlock(&dmabuf->lock);
231 return attach;
232
d15bd7ee
SS
233err_attach:
234 kfree(attach);
235 mutex_unlock(&dmabuf->lock);
236 return ERR_PTR(ret);
237}
238EXPORT_SYMBOL_GPL(dma_buf_attach);
239
240/**
241 * dma_buf_detach - Remove the given attachment from dmabuf's attachments list;
242 * optionally calls detach() of dma_buf_ops for device-specific detach
243 * @dmabuf: [in] buffer to detach from.
244 * @attach: [in] attachment to be detached; is free'd after this call.
245 *
246 */
247void dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach)
248{
d1aa06a1 249 if (WARN_ON(!dmabuf || !attach))
d15bd7ee
SS
250 return;
251
252 mutex_lock(&dmabuf->lock);
253 list_del(&attach->node);
254 if (dmabuf->ops->detach)
255 dmabuf->ops->detach(dmabuf, attach);
256
257 mutex_unlock(&dmabuf->lock);
258 kfree(attach);
259}
260EXPORT_SYMBOL_GPL(dma_buf_detach);
261
262/**
263 * dma_buf_map_attachment - Returns the scatterlist table of the attachment;
264 * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the
265 * dma_buf_ops.
266 * @attach: [in] attachment whose scatterlist is to be returned
267 * @direction: [in] direction of DMA transfer
268 *
269 * Returns sg_table containing the scatterlist to be returned; may return NULL
270 * or ERR_PTR.
271 *
272 */
273struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *attach,
274 enum dma_data_direction direction)
275{
276 struct sg_table *sg_table = ERR_PTR(-EINVAL);
277
278 might_sleep();
279
d1aa06a1 280 if (WARN_ON(!attach || !attach->dmabuf))
d15bd7ee
SS
281 return ERR_PTR(-EINVAL);
282
d1aa06a1 283 sg_table = attach->dmabuf->ops->map_dma_buf(attach, direction);
d15bd7ee
SS
284
285 return sg_table;
286}
287EXPORT_SYMBOL_GPL(dma_buf_map_attachment);
288
289/**
290 * dma_buf_unmap_attachment - unmaps and decreases usecount of the buffer;might
291 * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of
292 * dma_buf_ops.
293 * @attach: [in] attachment to unmap buffer from
294 * @sg_table: [in] scatterlist info of the buffer to unmap
33ea2dcb 295 * @direction: [in] direction of DMA transfer
d15bd7ee
SS
296 *
297 */
298void dma_buf_unmap_attachment(struct dma_buf_attachment *attach,
33ea2dcb
SS
299 struct sg_table *sg_table,
300 enum dma_data_direction direction)
d15bd7ee 301{
b6fa0cd6
RC
302 might_sleep();
303
d1aa06a1 304 if (WARN_ON(!attach || !attach->dmabuf || !sg_table))
d15bd7ee
SS
305 return;
306
33ea2dcb
SS
307 attach->dmabuf->ops->unmap_dma_buf(attach, sg_table,
308 direction);
d15bd7ee
SS
309}
310EXPORT_SYMBOL_GPL(dma_buf_unmap_attachment);
fc13020e
DV
311
312
313/**
314 * dma_buf_begin_cpu_access - Must be called before accessing a dma_buf from the
315 * cpu in the kernel context. Calls begin_cpu_access to allow exporter-specific
316 * preparations. Coherency is only guaranteed in the specified range for the
317 * specified access direction.
efb4df82 318 * @dmabuf: [in] buffer to prepare cpu access for.
fc13020e
DV
319 * @start: [in] start of range for cpu access.
320 * @len: [in] length of range for cpu access.
321 * @direction: [in] length of range for cpu access.
322 *
323 * Can return negative error values, returns 0 on success.
324 */
325int dma_buf_begin_cpu_access(struct dma_buf *dmabuf, size_t start, size_t len,
326 enum dma_data_direction direction)
327{
328 int ret = 0;
329
330 if (WARN_ON(!dmabuf))
331 return -EINVAL;
332
333 if (dmabuf->ops->begin_cpu_access)
334 ret = dmabuf->ops->begin_cpu_access(dmabuf, start, len, direction);
335
336 return ret;
337}
338EXPORT_SYMBOL_GPL(dma_buf_begin_cpu_access);
339
340/**
341 * dma_buf_end_cpu_access - Must be called after accessing a dma_buf from the
342 * cpu in the kernel context. Calls end_cpu_access to allow exporter-specific
343 * actions. Coherency is only guaranteed in the specified range for the
344 * specified access direction.
efb4df82 345 * @dmabuf: [in] buffer to complete cpu access for.
fc13020e
DV
346 * @start: [in] start of range for cpu access.
347 * @len: [in] length of range for cpu access.
348 * @direction: [in] length of range for cpu access.
349 *
350 * This call must always succeed.
351 */
352void dma_buf_end_cpu_access(struct dma_buf *dmabuf, size_t start, size_t len,
353 enum dma_data_direction direction)
354{
355 WARN_ON(!dmabuf);
356
357 if (dmabuf->ops->end_cpu_access)
358 dmabuf->ops->end_cpu_access(dmabuf, start, len, direction);
359}
360EXPORT_SYMBOL_GPL(dma_buf_end_cpu_access);
361
362/**
363 * dma_buf_kmap_atomic - Map a page of the buffer object into kernel address
364 * space. The same restrictions as for kmap_atomic and friends apply.
efb4df82 365 * @dmabuf: [in] buffer to map page from.
fc13020e
DV
366 * @page_num: [in] page in PAGE_SIZE units to map.
367 *
368 * This call must always succeed, any necessary preparations that might fail
369 * need to be done in begin_cpu_access.
370 */
371void *dma_buf_kmap_atomic(struct dma_buf *dmabuf, unsigned long page_num)
372{
373 WARN_ON(!dmabuf);
374
375 return dmabuf->ops->kmap_atomic(dmabuf, page_num);
376}
377EXPORT_SYMBOL_GPL(dma_buf_kmap_atomic);
378
379/**
380 * dma_buf_kunmap_atomic - Unmap a page obtained by dma_buf_kmap_atomic.
efb4df82 381 * @dmabuf: [in] buffer to unmap page from.
fc13020e
DV
382 * @page_num: [in] page in PAGE_SIZE units to unmap.
383 * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap_atomic.
384 *
385 * This call must always succeed.
386 */
387void dma_buf_kunmap_atomic(struct dma_buf *dmabuf, unsigned long page_num,
388 void *vaddr)
389{
390 WARN_ON(!dmabuf);
391
392 if (dmabuf->ops->kunmap_atomic)
393 dmabuf->ops->kunmap_atomic(dmabuf, page_num, vaddr);
394}
395EXPORT_SYMBOL_GPL(dma_buf_kunmap_atomic);
396
397/**
398 * dma_buf_kmap - Map a page of the buffer object into kernel address space. The
399 * same restrictions as for kmap and friends apply.
efb4df82 400 * @dmabuf: [in] buffer to map page from.
fc13020e
DV
401 * @page_num: [in] page in PAGE_SIZE units to map.
402 *
403 * This call must always succeed, any necessary preparations that might fail
404 * need to be done in begin_cpu_access.
405 */
406void *dma_buf_kmap(struct dma_buf *dmabuf, unsigned long page_num)
407{
408 WARN_ON(!dmabuf);
409
410 return dmabuf->ops->kmap(dmabuf, page_num);
411}
412EXPORT_SYMBOL_GPL(dma_buf_kmap);
413
414/**
415 * dma_buf_kunmap - Unmap a page obtained by dma_buf_kmap.
efb4df82 416 * @dmabuf: [in] buffer to unmap page from.
fc13020e
DV
417 * @page_num: [in] page in PAGE_SIZE units to unmap.
418 * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap.
419 *
420 * This call must always succeed.
421 */
422void dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long page_num,
423 void *vaddr)
424{
425 WARN_ON(!dmabuf);
426
427 if (dmabuf->ops->kunmap)
428 dmabuf->ops->kunmap(dmabuf, page_num, vaddr);
429}
430EXPORT_SYMBOL_GPL(dma_buf_kunmap);
4c78513e
DV
431
432
433/**
434 * dma_buf_mmap - Setup up a userspace mmap with the given vma
12c4727e 435 * @dmabuf: [in] buffer that should back the vma
4c78513e
DV
436 * @vma: [in] vma for the mmap
437 * @pgoff: [in] offset in pages where this mmap should start within the
438 * dma-buf buffer.
439 *
440 * This function adjusts the passed in vma so that it points at the file of the
441 * dma_buf operation. It alsog adjusts the starting pgoff and does bounds
442 * checking on the size of the vma. Then it calls the exporters mmap function to
443 * set up the mapping.
444 *
445 * Can return negative error values, returns 0 on success.
446 */
447int dma_buf_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma,
448 unsigned long pgoff)
449{
450 if (WARN_ON(!dmabuf || !vma))
451 return -EINVAL;
452
453 /* check for offset overflow */
454 if (pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) < pgoff)
455 return -EOVERFLOW;
456
457 /* check for overflowing the buffer's size */
458 if (pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) >
459 dmabuf->size >> PAGE_SHIFT)
460 return -EINVAL;
461
462 /* readjust the vma */
463 if (vma->vm_file)
464 fput(vma->vm_file);
465
cb0942b8 466 vma->vm_file = get_file(dmabuf->file);
4c78513e
DV
467
468 vma->vm_pgoff = pgoff;
469
470 return dmabuf->ops->mmap(dmabuf, vma);
471}
472EXPORT_SYMBOL_GPL(dma_buf_mmap);
98f86c9e
DA
473
474/**
12c4727e
SS
475 * dma_buf_vmap - Create virtual mapping for the buffer object into kernel
476 * address space. Same restrictions as for vmap and friends apply.
477 * @dmabuf: [in] buffer to vmap
98f86c9e
DA
478 *
479 * This call may fail due to lack of virtual mapping address space.
480 * These calls are optional in drivers. The intended use for them
481 * is for mapping objects linear in kernel space for high use objects.
482 * Please attempt to use kmap/kunmap before thinking about these interfaces.
483 */
484void *dma_buf_vmap(struct dma_buf *dmabuf)
485{
f00b4dad
DV
486 void *ptr;
487
98f86c9e
DA
488 if (WARN_ON(!dmabuf))
489 return NULL;
490
f00b4dad
DV
491 if (!dmabuf->ops->vmap)
492 return NULL;
493
494 mutex_lock(&dmabuf->lock);
495 if (dmabuf->vmapping_counter) {
496 dmabuf->vmapping_counter++;
497 BUG_ON(!dmabuf->vmap_ptr);
498 ptr = dmabuf->vmap_ptr;
499 goto out_unlock;
500 }
501
502 BUG_ON(dmabuf->vmap_ptr);
503
504 ptr = dmabuf->ops->vmap(dmabuf);
505 if (IS_ERR_OR_NULL(ptr))
506 goto out_unlock;
507
508 dmabuf->vmap_ptr = ptr;
509 dmabuf->vmapping_counter = 1;
510
511out_unlock:
512 mutex_unlock(&dmabuf->lock);
513 return ptr;
98f86c9e
DA
514}
515EXPORT_SYMBOL_GPL(dma_buf_vmap);
516
517/**
518 * dma_buf_vunmap - Unmap a vmap obtained by dma_buf_vmap.
12c4727e 519 * @dmabuf: [in] buffer to vunmap
6e7b4a59 520 * @vaddr: [in] vmap to vunmap
98f86c9e
DA
521 */
522void dma_buf_vunmap(struct dma_buf *dmabuf, void *vaddr)
523{
524 if (WARN_ON(!dmabuf))
525 return;
526
f00b4dad
DV
527 BUG_ON(!dmabuf->vmap_ptr);
528 BUG_ON(dmabuf->vmapping_counter == 0);
529 BUG_ON(dmabuf->vmap_ptr != vaddr);
530
531 mutex_lock(&dmabuf->lock);
532 if (--dmabuf->vmapping_counter == 0) {
533 if (dmabuf->ops->vunmap)
534 dmabuf->ops->vunmap(dmabuf, vaddr);
535 dmabuf->vmap_ptr = NULL;
536 }
537 mutex_unlock(&dmabuf->lock);
98f86c9e
DA
538}
539EXPORT_SYMBOL_GPL(dma_buf_vunmap);
This page took 0.093139 seconds and 5 git commands to generate.