blob: 36565c7acb542b961fcbe38d8b978a6f802f234c [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
Junghak Sungc1399902015-09-22 10:30:29 -030017#include <media/videobuf2-v4l2.h>
Jan Kara21fb0cb2015-07-13 11:55:46 -030018#include <linux/mm.h>
Marek Szyprowski004cc372010-12-09 10:20:47 -030019
20/**
Mauro Carvalho Chehabb6836a62015-08-22 09:01:58 -030021 * struct vb2_vmarea_handler - common vma refcount tracking handler
22 *
Marek Szyprowski004cc372010-12-09 10:20:47 -030023 * @refcount: pointer to refcount entry in the buffer
24 * @put: callback to function that decreases buffer refcount
25 * @arg: argument for @put callback
26 */
27struct vb2_vmarea_handler {
28 atomic_t *refcount;
29 void (*put)(void *arg);
30 void *arg;
31};
32
33extern const struct vm_operations_struct vb2_common_vm_ops;
34
Jan Kara21fb0cb2015-07-13 11:55:46 -030035struct frame_vector *vb2_create_framevec(unsigned long start,
36 unsigned long length,
37 bool write);
38void vb2_destroy_framevec(struct frame_vector *vec);
Marek Szyprowski004cc372010-12-09 10:20:47 -030039
40#endif