blob: a6ed091b79ce501a183b2fb6cf6051d169f066f7 [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>
Elena Reshetova6c4bb652017-03-06 11:21:00 -030019#include <linux/refcount.h>
Marek Szyprowski004cc372010-12-09 10:20:47 -030020
21/**
Mauro Carvalho Chehabb6836a62015-08-22 09:01:58 -030022 * struct vb2_vmarea_handler - common vma refcount tracking handler
23 *
Marek Szyprowski004cc372010-12-09 10:20:47 -030024 * @refcount: pointer to refcount entry in the buffer
25 * @put: callback to function that decreases buffer refcount
26 * @arg: argument for @put callback
27 */
28struct vb2_vmarea_handler {
Elena Reshetova6c4bb652017-03-06 11:21:00 -030029 refcount_t *refcount;
Marek Szyprowski004cc372010-12-09 10:20:47 -030030 void (*put)(void *arg);
31 void *arg;
32};
33
34extern const struct vm_operations_struct vb2_common_vm_ops;
35
Jan Kara21fb0cb2015-07-13 11:55:46 -030036struct frame_vector *vb2_create_framevec(unsigned long start,
37 unsigned long length,
38 bool write);
39void vb2_destroy_framevec(struct frame_vector *vec);
Marek Szyprowski004cc372010-12-09 10:20:47 -030040
41#endif