Marek Szyprowski | 004cc37 | 2010-12-09 10:20:47 -0300 | [diff] [blame] | 1 | /* |
| 2 | * videobuf2-memops.h - generic memory handling routines for videobuf2 |
| 3 | * |
| 4 | * Copyright (C) 2010 Samsung Electronics |
| 5 | * |
Pawel Osciak | 9507208 | 2011-03-13 15:23:32 -0300 | [diff] [blame] | 6 | * Author: Pawel Osciak <pawel@osciak.com> |
Marek Szyprowski | 004cc37 | 2010-12-09 10:20:47 -0300 | [diff] [blame] | 7 | * 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 Sung | c139990 | 2015-09-22 10:30:29 -0300 | [diff] [blame] | 17 | #include <media/videobuf2-v4l2.h> |
Jan Kara | 21fb0cb | 2015-07-13 11:55:46 -0300 | [diff] [blame] | 18 | #include <linux/mm.h> |
Marek Szyprowski | 004cc37 | 2010-12-09 10:20:47 -0300 | [diff] [blame] | 19 | |
| 20 | /** |
Mauro Carvalho Chehab | b6836a6 | 2015-08-22 09:01:58 -0300 | [diff] [blame] | 21 | * struct vb2_vmarea_handler - common vma refcount tracking handler |
| 22 | * |
Marek Szyprowski | 004cc37 | 2010-12-09 10:20:47 -0300 | [diff] [blame] | 23 | * @refcount: pointer to refcount entry in the buffer |
| 24 | * @put: callback to function that decreases buffer refcount |
| 25 | * @arg: argument for @put callback |
| 26 | */ |
| 27 | struct vb2_vmarea_handler { |
| 28 | atomic_t *refcount; |
| 29 | void (*put)(void *arg); |
| 30 | void *arg; |
| 31 | }; |
| 32 | |
| 33 | extern const struct vm_operations_struct vb2_common_vm_ops; |
| 34 | |
Jan Kara | 21fb0cb | 2015-07-13 11:55:46 -0300 | [diff] [blame] | 35 | struct frame_vector *vb2_create_framevec(unsigned long start, |
| 36 | unsigned long length, |
| 37 | bool write); |
| 38 | void vb2_destroy_framevec(struct frame_vector *vec); |
Marek Szyprowski | 004cc37 | 2010-12-09 10:20:47 -0300 | [diff] [blame] | 39 | |
| 40 | #endif |