2010-12-09 13:20:47 +00:00
|
|
|
/*
|
|
|
|
* videobuf2-memops.h - generic memory handling routines for videobuf2
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Samsung Electronics
|
|
|
|
*
|
2011-03-13 18:23:32 +00:00
|
|
|
* Author: Pawel Osciak <pawel@osciak.com>
|
2010-12-09 13:20:47 +00:00
|
|
|
* Marek Szyprowski <m.szyprowski@samsung.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MEDIA_VIDEOBUF2_MEMOPS_H
|
|
|
|
#define _MEDIA_VIDEOBUF2_MEMOPS_H
|
|
|
|
|
2015-09-22 13:30:29 +00:00
|
|
|
#include <media/videobuf2-v4l2.h>
|
2015-07-13 14:55:46 +00:00
|
|
|
#include <linux/mm.h>
|
2017-03-06 14:21:00 +00:00
|
|
|
#include <linux/refcount.h>
|
2010-12-09 13:20:47 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-09 09:36:52 +00:00
|
|
|
* struct vb2_vmarea_handler - common vma refcount tracking handler.
|
2015-08-22 12:01:58 +00:00
|
|
|
*
|
2017-10-09 09:36:52 +00:00
|
|
|
* @refcount: pointer to &refcount_t entry in the buffer.
|
|
|
|
* @put: callback to function that decreases buffer refcount.
|
|
|
|
* @arg: argument for @put callback.
|
2010-12-09 13:20:47 +00:00
|
|
|
*/
|
|
|
|
struct vb2_vmarea_handler {
|
2017-03-06 14:21:00 +00:00
|
|
|
refcount_t *refcount;
|
2010-12-09 13:20:47 +00:00
|
|
|
void (*put)(void *arg);
|
|
|
|
void *arg;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct vm_operations_struct vb2_common_vm_ops;
|
|
|
|
|
2015-07-13 14:55:46 +00:00
|
|
|
struct frame_vector *vb2_create_framevec(unsigned long start,
|
|
|
|
unsigned long length,
|
|
|
|
bool write);
|
|
|
|
void vb2_destroy_framevec(struct frame_vector *vec);
|
2010-12-09 13:20:47 +00:00
|
|
|
|
|
|
|
#endif
|