blob: 2f0564ff5f313a19208a3a6f580521f12901d5b6 [file] [log] [blame]
Marek Szyprowski004cc372010-12-09 10:20:47 -03001/*
2 * videobuf2-memops.h - generic memory handling routines for videobuf2
3 *
4 * Copyright (C) 2010 Samsung Electronics
5 *
Pawel Osciak95072082011-03-13 15:23:32 -03006 * Author: Pawel Osciak <pawel@osciak.com>
Marek Szyprowski004cc372010-12-09 10:20:47 -03007 * Marek Szyprowski <m.szyprowski@samsung.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
12 */
13
14#ifndef _MEDIA_VIDEOBUF2_MEMOPS_H
15#define _MEDIA_VIDEOBUF2_MEMOPS_H
16
17#include <media/videobuf2-core.h>
Jan Kara21fb0cb2015-07-13 11:55:46 -030018#include <linux/mm.h>
Marek Szyprowski004cc372010-12-09 10:20:47 -030019
20/**
21 * vb2_vmarea_handler - common vma refcount tracking handler
22 * @refcount: pointer to refcount entry in the buffer
23 * @put: callback to function that decreases buffer refcount
24 * @arg: argument for @put callback
25 */
26struct vb2_vmarea_handler {
27 atomic_t *refcount;
28 void (*put)(void *arg);
29 void *arg;
30};
31
32extern const struct vm_operations_struct vb2_common_vm_ops;
33
34int vb2_get_contig_userptr(unsigned long vaddr, unsigned long size,
35 struct vm_area_struct **res_vma, dma_addr_t *res_pa);
36
Marek Szyprowski004cc372010-12-09 10:20:47 -030037struct vm_area_struct *vb2_get_vma(struct vm_area_struct *vma);
38void vb2_put_vma(struct vm_area_struct *vma);
39
Jan Kara21fb0cb2015-07-13 11:55:46 -030040struct frame_vector *vb2_create_framevec(unsigned long start,
41 unsigned long length,
42 bool write);
43void vb2_destroy_framevec(struct frame_vector *vec);
Marek Szyprowski004cc372010-12-09 10:20:47 -030044
45#endif