2 * videobuf2-dma-sg.c - dma scatter/gather memory allocator for videobuf2
4 * Copyright (C) 2010 Samsung Electronics
6 * Author: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation.
13 #include <linux/module.h>
15 #include <linux/scatterlist.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/vmalloc.h>
20 #include <media/videobuf2-v4l2.h>
21 #include <media/videobuf2-memops.h>
22 #include <media/videobuf2-dma-sg.h>
25 module_param(debug
, int, 0644);
27 #define dprintk(level, fmt, arg...) \
30 printk(KERN_DEBUG "vb2-dma-sg: " fmt, ## arg); \
33 struct vb2_dma_sg_conf
{
37 struct vb2_dma_sg_buf
{
41 struct frame_vector
*vec
;
43 enum dma_data_direction dma_dir
;
44 struct sg_table sg_table
;
46 * This will point to sg_table when used with the MMAP or USERPTR
47 * memory model, and to the dma_buf sglist when used with the
48 * DMABUF memory model.
50 struct sg_table
*dma_sgt
;
52 unsigned int num_pages
;
54 struct vb2_vmarea_handler handler
;
56 struct dma_buf_attachment
*db_attach
;
59 static void vb2_dma_sg_put(void *buf_priv
);
61 static int vb2_dma_sg_alloc_compacted(struct vb2_dma_sg_buf
*buf
,
64 unsigned int last_page
= 0;
72 order
= get_order(size
);
73 /* Dont over allocate*/
74 if ((PAGE_SIZE
<< order
) > size
)
79 pages
= alloc_pages(GFP_KERNEL
| __GFP_ZERO
|
80 __GFP_NOWARN
| gfp_flags
, order
);
86 __free_page(buf
->pages
[last_page
]);
92 split_page(pages
, order
);
93 for (i
= 0; i
< (1 << order
); i
++)
94 buf
->pages
[last_page
++] = &pages
[i
];
96 size
-= PAGE_SIZE
<< order
;
102 static void *vb2_dma_sg_alloc(void *alloc_ctx
, unsigned long size
,
103 enum dma_data_direction dma_dir
, gfp_t gfp_flags
)
105 struct vb2_dma_sg_conf
*conf
= alloc_ctx
;
106 struct vb2_dma_sg_buf
*buf
;
107 struct sg_table
*sgt
;
110 DEFINE_DMA_ATTRS(attrs
);
112 dma_set_attr(DMA_ATTR_SKIP_CPU_SYNC
, &attrs
);
114 if (WARN_ON(alloc_ctx
== NULL
))
116 buf
= kzalloc(sizeof *buf
, GFP_KERNEL
);
121 buf
->dma_dir
= dma_dir
;
124 /* size is already page aligned */
125 buf
->num_pages
= size
>> PAGE_SHIFT
;
126 buf
->dma_sgt
= &buf
->sg_table
;
128 buf
->pages
= kzalloc(buf
->num_pages
* sizeof(struct page
*),
131 goto fail_pages_array_alloc
;
133 ret
= vb2_dma_sg_alloc_compacted(buf
, gfp_flags
);
135 goto fail_pages_alloc
;
137 ret
= sg_alloc_table_from_pages(buf
->dma_sgt
, buf
->pages
,
138 buf
->num_pages
, 0, size
, GFP_KERNEL
);
140 goto fail_table_alloc
;
142 /* Prevent the device from being released while the buffer is used */
143 buf
->dev
= get_device(conf
->dev
);
145 sgt
= &buf
->sg_table
;
147 * No need to sync to the device, this will happen later when the
148 * prepare() memop is called.
150 sgt
->nents
= dma_map_sg_attrs(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
,
151 buf
->dma_dir
, &attrs
);
155 buf
->handler
.refcount
= &buf
->refcount
;
156 buf
->handler
.put
= vb2_dma_sg_put
;
157 buf
->handler
.arg
= buf
;
159 atomic_inc(&buf
->refcount
);
161 dprintk(1, "%s: Allocated buffer of %d pages\n",
162 __func__
, buf
->num_pages
);
166 put_device(buf
->dev
);
167 sg_free_table(buf
->dma_sgt
);
169 num_pages
= buf
->num_pages
;
171 __free_page(buf
->pages
[num_pages
]);
174 fail_pages_array_alloc
:
179 static void vb2_dma_sg_put(void *buf_priv
)
181 struct vb2_dma_sg_buf
*buf
= buf_priv
;
182 struct sg_table
*sgt
= &buf
->sg_table
;
183 int i
= buf
->num_pages
;
185 if (atomic_dec_and_test(&buf
->refcount
)) {
186 DEFINE_DMA_ATTRS(attrs
);
188 dma_set_attr(DMA_ATTR_SKIP_CPU_SYNC
, &attrs
);
189 dprintk(1, "%s: Freeing buffer of %d pages\n", __func__
,
191 dma_unmap_sg_attrs(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
,
192 buf
->dma_dir
, &attrs
);
194 vm_unmap_ram(buf
->vaddr
, buf
->num_pages
);
195 sg_free_table(buf
->dma_sgt
);
197 __free_page(buf
->pages
[i
]);
199 put_device(buf
->dev
);
204 static void vb2_dma_sg_prepare(void *buf_priv
)
206 struct vb2_dma_sg_buf
*buf
= buf_priv
;
207 struct sg_table
*sgt
= buf
->dma_sgt
;
209 /* DMABUF exporter will flush the cache for us */
213 dma_sync_sg_for_device(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
,
217 static void vb2_dma_sg_finish(void *buf_priv
)
219 struct vb2_dma_sg_buf
*buf
= buf_priv
;
220 struct sg_table
*sgt
= buf
->dma_sgt
;
222 /* DMABUF exporter will flush the cache for us */
226 dma_sync_sg_for_cpu(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
, buf
->dma_dir
);
229 static void *vb2_dma_sg_get_userptr(void *alloc_ctx
, unsigned long vaddr
,
231 enum dma_data_direction dma_dir
)
233 struct vb2_dma_sg_conf
*conf
= alloc_ctx
;
234 struct vb2_dma_sg_buf
*buf
;
235 struct sg_table
*sgt
;
236 DEFINE_DMA_ATTRS(attrs
);
237 struct frame_vector
*vec
;
239 dma_set_attr(DMA_ATTR_SKIP_CPU_SYNC
, &attrs
);
240 buf
= kzalloc(sizeof *buf
, GFP_KERNEL
);
245 buf
->dev
= conf
->dev
;
246 buf
->dma_dir
= dma_dir
;
247 buf
->offset
= vaddr
& ~PAGE_MASK
;
249 buf
->dma_sgt
= &buf
->sg_table
;
250 vec
= vb2_create_framevec(vaddr
, size
, buf
->dma_dir
== DMA_FROM_DEVICE
);
252 goto userptr_fail_pfnvec
;
255 buf
->pages
= frame_vector_pages(vec
);
256 if (IS_ERR(buf
->pages
))
257 goto userptr_fail_sgtable
;
258 buf
->num_pages
= frame_vector_count(vec
);
260 if (sg_alloc_table_from_pages(buf
->dma_sgt
, buf
->pages
,
261 buf
->num_pages
, buf
->offset
, size
, 0))
262 goto userptr_fail_sgtable
;
264 sgt
= &buf
->sg_table
;
266 * No need to sync to the device, this will happen later when the
267 * prepare() memop is called.
269 sgt
->nents
= dma_map_sg_attrs(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
,
270 buf
->dma_dir
, &attrs
);
272 goto userptr_fail_map
;
277 sg_free_table(&buf
->sg_table
);
278 userptr_fail_sgtable
:
279 vb2_destroy_framevec(vec
);
286 * @put_userptr: inform the allocator that a USERPTR buffer will no longer
289 static void vb2_dma_sg_put_userptr(void *buf_priv
)
291 struct vb2_dma_sg_buf
*buf
= buf_priv
;
292 struct sg_table
*sgt
= &buf
->sg_table
;
293 int i
= buf
->num_pages
;
294 DEFINE_DMA_ATTRS(attrs
);
296 dma_set_attr(DMA_ATTR_SKIP_CPU_SYNC
, &attrs
);
298 dprintk(1, "%s: Releasing userspace buffer of %d pages\n",
299 __func__
, buf
->num_pages
);
300 dma_unmap_sg_attrs(buf
->dev
, sgt
->sgl
, sgt
->orig_nents
, buf
->dma_dir
,
303 vm_unmap_ram(buf
->vaddr
, buf
->num_pages
);
304 sg_free_table(buf
->dma_sgt
);
306 if (buf
->dma_dir
== DMA_FROM_DEVICE
)
307 set_page_dirty_lock(buf
->pages
[i
]);
309 vb2_destroy_framevec(buf
->vec
);
313 static void *vb2_dma_sg_vaddr(void *buf_priv
)
315 struct vb2_dma_sg_buf
*buf
= buf_priv
;
321 buf
->vaddr
= dma_buf_vmap(buf
->db_attach
->dmabuf
);
323 buf
->vaddr
= vm_map_ram(buf
->pages
,
324 buf
->num_pages
, -1, PAGE_KERNEL
);
327 /* add offset in case userptr is not page-aligned */
328 return buf
->vaddr
? buf
->vaddr
+ buf
->offset
: NULL
;
331 static unsigned int vb2_dma_sg_num_users(void *buf_priv
)
333 struct vb2_dma_sg_buf
*buf
= buf_priv
;
335 return atomic_read(&buf
->refcount
);
338 static int vb2_dma_sg_mmap(void *buf_priv
, struct vm_area_struct
*vma
)
340 struct vb2_dma_sg_buf
*buf
= buf_priv
;
341 unsigned long uaddr
= vma
->vm_start
;
342 unsigned long usize
= vma
->vm_end
- vma
->vm_start
;
346 printk(KERN_ERR
"No memory to map\n");
353 ret
= vm_insert_page(vma
, uaddr
, buf
->pages
[i
++]);
355 printk(KERN_ERR
"Remapping memory, error: %d\n", ret
);
365 * Use common vm_area operations to track buffer refcount.
367 vma
->vm_private_data
= &buf
->handler
;
368 vma
->vm_ops
= &vb2_common_vm_ops
;
370 vma
->vm_ops
->open(vma
);
375 /*********************************************/
376 /* DMABUF ops for exporters */
377 /*********************************************/
379 struct vb2_dma_sg_attachment
{
381 enum dma_data_direction dma_dir
;
384 static int vb2_dma_sg_dmabuf_ops_attach(struct dma_buf
*dbuf
, struct device
*dev
,
385 struct dma_buf_attachment
*dbuf_attach
)
387 struct vb2_dma_sg_attachment
*attach
;
389 struct scatterlist
*rd
, *wr
;
390 struct sg_table
*sgt
;
391 struct vb2_dma_sg_buf
*buf
= dbuf
->priv
;
394 attach
= kzalloc(sizeof(*attach
), GFP_KERNEL
);
399 /* Copy the buf->base_sgt scatter list to the attachment, as we can't
400 * map the same scatter list to multiple attachments at the same time.
402 ret
= sg_alloc_table(sgt
, buf
->dma_sgt
->orig_nents
, GFP_KERNEL
);
408 rd
= buf
->dma_sgt
->sgl
;
410 for (i
= 0; i
< sgt
->orig_nents
; ++i
) {
411 sg_set_page(wr
, sg_page(rd
), rd
->length
, rd
->offset
);
416 attach
->dma_dir
= DMA_NONE
;
417 dbuf_attach
->priv
= attach
;
422 static void vb2_dma_sg_dmabuf_ops_detach(struct dma_buf
*dbuf
,
423 struct dma_buf_attachment
*db_attach
)
425 struct vb2_dma_sg_attachment
*attach
= db_attach
->priv
;
426 struct sg_table
*sgt
;
433 /* release the scatterlist cache */
434 if (attach
->dma_dir
!= DMA_NONE
)
435 dma_unmap_sg(db_attach
->dev
, sgt
->sgl
, sgt
->orig_nents
,
439 db_attach
->priv
= NULL
;
442 static struct sg_table
*vb2_dma_sg_dmabuf_ops_map(
443 struct dma_buf_attachment
*db_attach
, enum dma_data_direction dma_dir
)
445 struct vb2_dma_sg_attachment
*attach
= db_attach
->priv
;
446 /* stealing dmabuf mutex to serialize map/unmap operations */
447 struct mutex
*lock
= &db_attach
->dmabuf
->lock
;
448 struct sg_table
*sgt
;
453 /* return previously mapped sg table */
454 if (attach
->dma_dir
== dma_dir
) {
459 /* release any previous cache */
460 if (attach
->dma_dir
!= DMA_NONE
) {
461 dma_unmap_sg(db_attach
->dev
, sgt
->sgl
, sgt
->orig_nents
,
463 attach
->dma_dir
= DMA_NONE
;
466 /* mapping to the client with new direction */
467 sgt
->nents
= dma_map_sg(db_attach
->dev
, sgt
->sgl
, sgt
->orig_nents
,
470 pr_err("failed to map scatterlist\n");
472 return ERR_PTR(-EIO
);
475 attach
->dma_dir
= dma_dir
;
482 static void vb2_dma_sg_dmabuf_ops_unmap(struct dma_buf_attachment
*db_attach
,
483 struct sg_table
*sgt
, enum dma_data_direction dma_dir
)
485 /* nothing to be done here */
488 static void vb2_dma_sg_dmabuf_ops_release(struct dma_buf
*dbuf
)
490 /* drop reference obtained in vb2_dma_sg_get_dmabuf */
491 vb2_dma_sg_put(dbuf
->priv
);
494 static void *vb2_dma_sg_dmabuf_ops_kmap(struct dma_buf
*dbuf
, unsigned long pgnum
)
496 struct vb2_dma_sg_buf
*buf
= dbuf
->priv
;
498 return buf
->vaddr
? buf
->vaddr
+ pgnum
* PAGE_SIZE
: NULL
;
501 static void *vb2_dma_sg_dmabuf_ops_vmap(struct dma_buf
*dbuf
)
503 struct vb2_dma_sg_buf
*buf
= dbuf
->priv
;
505 return vb2_dma_sg_vaddr(buf
);
508 static int vb2_dma_sg_dmabuf_ops_mmap(struct dma_buf
*dbuf
,
509 struct vm_area_struct
*vma
)
511 return vb2_dma_sg_mmap(dbuf
->priv
, vma
);
514 static struct dma_buf_ops vb2_dma_sg_dmabuf_ops
= {
515 .attach
= vb2_dma_sg_dmabuf_ops_attach
,
516 .detach
= vb2_dma_sg_dmabuf_ops_detach
,
517 .map_dma_buf
= vb2_dma_sg_dmabuf_ops_map
,
518 .unmap_dma_buf
= vb2_dma_sg_dmabuf_ops_unmap
,
519 .kmap
= vb2_dma_sg_dmabuf_ops_kmap
,
520 .kmap_atomic
= vb2_dma_sg_dmabuf_ops_kmap
,
521 .vmap
= vb2_dma_sg_dmabuf_ops_vmap
,
522 .mmap
= vb2_dma_sg_dmabuf_ops_mmap
,
523 .release
= vb2_dma_sg_dmabuf_ops_release
,
526 static struct dma_buf
*vb2_dma_sg_get_dmabuf(void *buf_priv
, unsigned long flags
)
528 struct vb2_dma_sg_buf
*buf
= buf_priv
;
529 struct dma_buf
*dbuf
;
530 DEFINE_DMA_BUF_EXPORT_INFO(exp_info
);
532 exp_info
.ops
= &vb2_dma_sg_dmabuf_ops
;
533 exp_info
.size
= buf
->size
;
534 exp_info
.flags
= flags
;
537 if (WARN_ON(!buf
->dma_sgt
))
540 dbuf
= dma_buf_export(&exp_info
);
544 /* dmabuf keeps reference to vb2 buffer */
545 atomic_inc(&buf
->refcount
);
550 /*********************************************/
551 /* callbacks for DMABUF buffers */
552 /*********************************************/
554 static int vb2_dma_sg_map_dmabuf(void *mem_priv
)
556 struct vb2_dma_sg_buf
*buf
= mem_priv
;
557 struct sg_table
*sgt
;
559 if (WARN_ON(!buf
->db_attach
)) {
560 pr_err("trying to pin a non attached buffer\n");
564 if (WARN_ON(buf
->dma_sgt
)) {
565 pr_err("dmabuf buffer is already pinned\n");
569 /* get the associated scatterlist for this buffer */
570 sgt
= dma_buf_map_attachment(buf
->db_attach
, buf
->dma_dir
);
572 pr_err("Error getting dmabuf scatterlist\n");
582 static void vb2_dma_sg_unmap_dmabuf(void *mem_priv
)
584 struct vb2_dma_sg_buf
*buf
= mem_priv
;
585 struct sg_table
*sgt
= buf
->dma_sgt
;
587 if (WARN_ON(!buf
->db_attach
)) {
588 pr_err("trying to unpin a not attached buffer\n");
593 pr_err("dmabuf buffer is already unpinned\n");
598 dma_buf_vunmap(buf
->db_attach
->dmabuf
, buf
->vaddr
);
601 dma_buf_unmap_attachment(buf
->db_attach
, sgt
, buf
->dma_dir
);
606 static void vb2_dma_sg_detach_dmabuf(void *mem_priv
)
608 struct vb2_dma_sg_buf
*buf
= mem_priv
;
610 /* if vb2 works correctly you should never detach mapped buffer */
611 if (WARN_ON(buf
->dma_sgt
))
612 vb2_dma_sg_unmap_dmabuf(buf
);
614 /* detach this attachment */
615 dma_buf_detach(buf
->db_attach
->dmabuf
, buf
->db_attach
);
619 static void *vb2_dma_sg_attach_dmabuf(void *alloc_ctx
, struct dma_buf
*dbuf
,
620 unsigned long size
, enum dma_data_direction dma_dir
)
622 struct vb2_dma_sg_conf
*conf
= alloc_ctx
;
623 struct vb2_dma_sg_buf
*buf
;
624 struct dma_buf_attachment
*dba
;
626 if (dbuf
->size
< size
)
627 return ERR_PTR(-EFAULT
);
629 buf
= kzalloc(sizeof(*buf
), GFP_KERNEL
);
631 return ERR_PTR(-ENOMEM
);
633 buf
->dev
= conf
->dev
;
634 /* create attachment for the dmabuf with the user device */
635 dba
= dma_buf_attach(dbuf
, buf
->dev
);
637 pr_err("failed to attach dmabuf\n");
642 buf
->dma_dir
= dma_dir
;
644 buf
->db_attach
= dba
;
649 static void *vb2_dma_sg_cookie(void *buf_priv
)
651 struct vb2_dma_sg_buf
*buf
= buf_priv
;
656 const struct vb2_mem_ops vb2_dma_sg_memops
= {
657 .alloc
= vb2_dma_sg_alloc
,
658 .put
= vb2_dma_sg_put
,
659 .get_userptr
= vb2_dma_sg_get_userptr
,
660 .put_userptr
= vb2_dma_sg_put_userptr
,
661 .prepare
= vb2_dma_sg_prepare
,
662 .finish
= vb2_dma_sg_finish
,
663 .vaddr
= vb2_dma_sg_vaddr
,
664 .mmap
= vb2_dma_sg_mmap
,
665 .num_users
= vb2_dma_sg_num_users
,
666 .get_dmabuf
= vb2_dma_sg_get_dmabuf
,
667 .map_dmabuf
= vb2_dma_sg_map_dmabuf
,
668 .unmap_dmabuf
= vb2_dma_sg_unmap_dmabuf
,
669 .attach_dmabuf
= vb2_dma_sg_attach_dmabuf
,
670 .detach_dmabuf
= vb2_dma_sg_detach_dmabuf
,
671 .cookie
= vb2_dma_sg_cookie
,
673 EXPORT_SYMBOL_GPL(vb2_dma_sg_memops
);
675 void *vb2_dma_sg_init_ctx(struct device
*dev
)
677 struct vb2_dma_sg_conf
*conf
;
679 conf
= kzalloc(sizeof(*conf
), GFP_KERNEL
);
681 return ERR_PTR(-ENOMEM
);
687 EXPORT_SYMBOL_GPL(vb2_dma_sg_init_ctx
);
689 void vb2_dma_sg_cleanup_ctx(void *alloc_ctx
)
691 if (!IS_ERR_OR_NULL(alloc_ctx
))
694 EXPORT_SYMBOL_GPL(vb2_dma_sg_cleanup_ctx
);
696 MODULE_DESCRIPTION("dma scatter/gather memory handling routines for videobuf2");
697 MODULE_AUTHOR("Andrzej Pietrasiewicz");
698 MODULE_LICENSE("GPL");