2019-06-03 13:44:53 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-08-03 10:31:33 +08:00
|
|
|
/*
|
|
|
|
* helper functions for vmalloc capture buffers
|
|
|
|
*
|
2008-07-17 08:27:49 +08:00
|
|
|
* The functions expect the hardware being able to scatter gather
|
2007-08-03 10:31:33 +08:00
|
|
|
* (i.e. the buffers are not linear in physical memory, but fragmented
|
|
|
|
* into PAGE_SIZE chunks). They also assume the driver does not need
|
|
|
|
* to touch the video data.
|
|
|
|
*
|
MAINTAINERS & files: Canonize the e-mails I use at files
From now on, I'll start using my @kernel.org as my development e-mail.
As such, let's remove the entries that point to the old
mchehab@s-opensource.com at MAINTAINERS file.
For the files written with a copyright with mchehab@s-opensource,
let's keep Samsung on their names, using mchehab+samsung@kernel.org,
in order to keep pointing to my employer, with sponsors the work.
For the files written before I join Samsung (on July, 4 2013),
let's just use mchehab@kernel.org.
For bug reports, we can simply point to just kernel.org, as
this will reach my mchehab+samsung inbox anyway.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Brian Warner <brian.warner@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-04-25 17:34:48 +08:00
|
|
|
* (c) 2007 Mauro Carvalho Chehab, <mchehab@kernel.org>
|
2007-08-03 10:31:33 +08:00
|
|
|
*/
|
2008-04-14 02:10:00 +08:00
|
|
|
#ifndef _VIDEOBUF_VMALLOC_H
|
|
|
|
#define _VIDEOBUF_VMALLOC_H
|
2007-08-03 10:31:33 +08:00
|
|
|
|
|
|
|
#include <media/videobuf-core.h>
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
|
2010-03-17 15:01:04 +08:00
|
|
|
struct videobuf_vmalloc_memory {
|
2007-08-03 10:31:33 +08:00
|
|
|
u32 magic;
|
|
|
|
|
2010-05-11 21:36:34 +08:00
|
|
|
void *vaddr;
|
2007-08-03 10:31:33 +08:00
|
|
|
|
2010-03-17 15:01:04 +08:00
|
|
|
/* remap_vmalloc_range seems to need to run
|
|
|
|
* after mmap() on some cases */
|
2007-08-03 10:31:33 +08:00
|
|
|
struct vm_area_struct *vma;
|
|
|
|
};
|
|
|
|
|
2010-03-17 15:01:04 +08:00
|
|
|
void videobuf_queue_vmalloc_init(struct videobuf_queue *q,
|
2009-11-18 06:43:41 +08:00
|
|
|
const struct videobuf_queue_ops *ops,
|
2009-11-24 01:29:35 +08:00
|
|
|
struct device *dev,
|
2007-08-03 10:31:33 +08:00
|
|
|
spinlock_t *irqlock,
|
|
|
|
enum v4l2_buf_type type,
|
|
|
|
enum v4l2_field field,
|
|
|
|
unsigned int msize,
|
2010-09-21 04:39:46 +08:00
|
|
|
void *priv,
|
|
|
|
struct mutex *ext_lock);
|
2007-08-03 10:31:33 +08:00
|
|
|
|
2010-03-17 15:01:04 +08:00
|
|
|
void *videobuf_to_vmalloc(struct videobuf_buffer *buf);
|
2007-08-03 10:31:33 +08:00
|
|
|
|
2010-03-17 15:01:04 +08:00
|
|
|
void videobuf_vmalloc_free(struct videobuf_buffer *buf);
|
2008-04-14 02:10:00 +08:00
|
|
|
|
|
|
|
#endif
|