Commit 4590c074 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: via-camera: convert to the vb2 framework

Convert the via-camera to the vb2 framework. With this change this
driver passes all 'v4l2-compliance -s' tests on my OLPC 1.5.

Also tested with the Sugar 'Record' application.

All tests were done under the OLPC official 5.0.8 kernel.
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 4e4f3b99
...@@ -16,7 +16,7 @@ source "drivers/media/platform/marvell-ccic/Kconfig" ...@@ -16,7 +16,7 @@ source "drivers/media/platform/marvell-ccic/Kconfig"
config VIDEO_VIA_CAMERA config VIDEO_VIA_CAMERA
tristate "VIAFB camera controller support" tristate "VIAFB camera controller support"
depends on FB_VIA depends on FB_VIA
select VIDEOBUF_DMA_SG select VIDEOBUF2_DMA_SG
select VIDEO_OV7670 select VIDEO_OV7670
help help
Driver support for the integrated camera controller in VIA Driver support for the integrated camera controller in VIA
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include <media/v4l2-event.h> #include <media/v4l2-event.h>
#include <media/v4l2-image-sizes.h> #include <media/v4l2-image-sizes.h>
#include <media/i2c/ov7670.h> #include <media/i2c/ov7670.h>
#include <media/videobuf-dma-sg.h> #include <media/videobuf2-dma-sg.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <linux/pm_qos.h> #include <linux/pm_qos.h>
...@@ -87,14 +87,9 @@ struct via_camera { ...@@ -87,14 +87,9 @@ struct via_camera {
unsigned int cb_offsets[3]; /* offsets into fb mem */ unsigned int cb_offsets[3]; /* offsets into fb mem */
u8 __iomem *cb_addrs[3]; /* Kernel-space addresses */ u8 __iomem *cb_addrs[3]; /* Kernel-space addresses */
int n_cap_bufs; /* How many are we using? */ int n_cap_bufs; /* How many are we using? */
int next_buf; struct vb2_queue vq;
struct videobuf_queue vb_queue; struct list_head buffer_queue;
struct list_head buffer_queue; /* prot. by reg_lock */ u32 sequence;
/*
* User tracking.
*/
int users;
struct file *owner;
/* /*
* Video format information. sensor_format is kept in a form * Video format information. sensor_format is kept in a form
* that we can use to pass to the sensor. We always run the * that we can use to pass to the sensor. We always run the
...@@ -107,6 +102,13 @@ struct via_camera { ...@@ -107,6 +102,13 @@ struct via_camera {
u32 mbus_code; u32 mbus_code;
}; };
/* buffer for one video frame */
struct via_buffer {
/* common v4l buffer stuff -- must be first */
struct vb2_v4l2_buffer vbuf;
struct list_head queue;
};
/* /*
* Yes, this is a hack, but there's only going to be one of these * Yes, this is a hack, but there's only going to be one of these
* on any system we know of. * on any system we know of.
...@@ -323,28 +325,15 @@ static irqreturn_t viacam_quick_irq(int irq, void *data) ...@@ -323,28 +325,15 @@ static irqreturn_t viacam_quick_irq(int irq, void *data)
} }
/* /*
* Find the next videobuf buffer which has somebody waiting on it. * Find the next buffer which has somebody waiting on it.
*/ */
static struct videobuf_buffer *viacam_next_buffer(struct via_camera *cam) static struct via_buffer *viacam_next_buffer(struct via_camera *cam)
{ {
unsigned long flags;
struct videobuf_buffer *buf = NULL;
spin_lock_irqsave(&cam->viadev->reg_lock, flags);
if (cam->opstate != S_RUNNING) if (cam->opstate != S_RUNNING)
goto out; return NULL;
if (list_empty(&cam->buffer_queue)) if (list_empty(&cam->buffer_queue))
goto out; return NULL;
buf = list_entry(cam->buffer_queue.next, struct videobuf_buffer, queue); return list_entry(cam->buffer_queue.next, struct via_buffer, queue);
if (!waitqueue_active(&buf->done)) {/* Nobody waiting */
buf = NULL;
goto out;
}
list_del(&buf->queue);
buf->state = VIDEOBUF_ACTIVE;
out:
spin_unlock_irqrestore(&cam->viadev->reg_lock, flags);
return buf;
} }
/* /*
...@@ -352,11 +341,12 @@ static struct videobuf_buffer *viacam_next_buffer(struct via_camera *cam) ...@@ -352,11 +341,12 @@ static struct videobuf_buffer *viacam_next_buffer(struct via_camera *cam)
*/ */
static irqreturn_t viacam_irq(int irq, void *data) static irqreturn_t viacam_irq(int irq, void *data)
{ {
int bufn;
struct videobuf_buffer *vb;
struct via_camera *cam = data; struct via_camera *cam = data;
struct videobuf_dmabuf *vdma; struct via_buffer *vb;
int bufn;
struct sg_table *sgt;
mutex_lock(&cam->lock);
/* /*
* If there is no place to put the data frame, don't bother * If there is no place to put the data frame, don't bother
* with anything else. * with anything else.
...@@ -374,12 +364,15 @@ static irqreturn_t viacam_irq(int irq, void *data) ...@@ -374,12 +364,15 @@ static irqreturn_t viacam_irq(int irq, void *data)
/* /*
* Copy over the data and let any waiters know. * Copy over the data and let any waiters know.
*/ */
vdma = videobuf_to_dma(vb); sgt = vb2_dma_sg_plane_desc(&vb->vbuf.vb2_buf, 0);
viafb_dma_copy_out_sg(cam->cb_offsets[bufn], vdma->sglist, vdma->sglen); vb->vbuf.vb2_buf.timestamp = ktime_get_ns();
vb->state = VIDEOBUF_DONE; viafb_dma_copy_out_sg(cam->cb_offsets[bufn], sgt->sgl, sgt->nents);
vb->size = cam->user_format.sizeimage; vb->vbuf.sequence = cam->sequence++;
wake_up(&vb->done); vb->vbuf.field = V4L2_FIELD_NONE;
list_del(&vb->queue);
vb2_buffer_done(&vb->vbuf.vb2_buf, VB2_BUF_STATE_DONE);
done: done:
mutex_unlock(&cam->lock);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -555,7 +548,6 @@ static int viacam_config_controller(struct via_camera *cam) ...@@ -555,7 +548,6 @@ static int viacam_config_controller(struct via_camera *cam)
static void viacam_start_engine(struct via_camera *cam) static void viacam_start_engine(struct via_camera *cam)
{ {
spin_lock_irq(&cam->viadev->reg_lock); spin_lock_irq(&cam->viadev->reg_lock);
cam->next_buf = 0;
viacam_write_reg_mask(cam, VCR_CAPINTC, VCR_CI_ENABLE, VCR_CI_ENABLE); viacam_write_reg_mask(cam, VCR_CAPINTC, VCR_CI_ENABLE, VCR_CI_ENABLE);
viacam_int_enable(cam); viacam_int_enable(cam);
(void) viacam_read_reg(cam, VCR_CAPINTC); /* Force post */ (void) viacam_read_reg(cam, VCR_CAPINTC); /* Force post */
...@@ -576,81 +568,117 @@ static void viacam_stop_engine(struct via_camera *cam) ...@@ -576,81 +568,117 @@ static void viacam_stop_engine(struct via_camera *cam)
/* --------------------------------------------------------------------------*/ /* --------------------------------------------------------------------------*/
/* Videobuf callback ops */ /* vb2 callback ops */
/* static struct via_buffer *vb2_to_via_buffer(struct vb2_buffer *vb)
* buffer_setup. The purpose of this one would appear to be to tell
* videobuf how big a single image is. It's also evidently up to us
* to put some sort of limit on the maximum number of buffers allowed.
*/
static int viacam_vb_buf_setup(struct videobuf_queue *q,
unsigned int *count, unsigned int *size)
{ {
struct via_camera *cam = q->priv_data; struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
*size = cam->user_format.sizeimage; return container_of(vbuf, struct via_buffer, vbuf);
if (*count == 0 || *count > 6) /* Arbitrary number */
*count = 6;
return 0;
} }
/* static void viacam_vb2_queue(struct vb2_buffer *vb)
* Prepare a buffer.
*/
static int viacam_vb_buf_prepare(struct videobuf_queue *q,
struct videobuf_buffer *vb, enum v4l2_field field)
{ {
struct via_camera *cam = q->priv_data; struct via_camera *cam = vb2_get_drv_priv(vb->vb2_queue);
struct via_buffer *via = vb2_to_via_buffer(vb);
vb->size = cam->user_format.sizeimage;
vb->width = cam->user_format.width; /* bytesperline???? */ list_add_tail(&via->queue, &cam->buffer_queue);
vb->height = cam->user_format.height; }
vb->field = field;
if (vb->state == VIDEOBUF_NEEDS_INIT) { static int viacam_vb2_prepare(struct vb2_buffer *vb)
int ret = videobuf_iolock(q, vb, NULL); {
if (ret) struct via_camera *cam = vb2_get_drv_priv(vb->vb2_queue);
return ret;
if (vb2_plane_size(vb, 0) < cam->user_format.sizeimage) {
cam_dbg(cam,
"Plane size too small (%lu < %u)\n",
vb2_plane_size(vb, 0),
cam->user_format.sizeimage);
return -EINVAL;
} }
vb->state = VIDEOBUF_PREPARED;
vb2_set_plane_payload(vb, 0, cam->user_format.sizeimage);
return 0; return 0;
} }
/* static int viacam_vb2_queue_setup(struct vb2_queue *vq,
* We've got a buffer to put data into. unsigned int *nbufs,
* unsigned int *num_planes, unsigned int sizes[],
* FIXME: check for a running engine and valid buffers? struct device *alloc_devs[])
*/ {
static void viacam_vb_buf_queue(struct videobuf_queue *q, struct via_camera *cam = vb2_get_drv_priv(vq);
struct videobuf_buffer *vb) int size = cam->user_format.sizeimage;
if (*num_planes)
return sizes[0] < size ? -EINVAL : 0;
*num_planes = 1;
sizes[0] = size;
return 0;
}
static int viacam_vb2_start_streaming(struct vb2_queue *vq, unsigned int count)
{ {
struct via_camera *cam = q->priv_data; struct via_camera *cam = vb2_get_drv_priv(vq);
struct via_buffer *buf, *tmp;
int ret = 0;
if (cam->opstate != S_IDLE) {
ret = -EBUSY;
goto out;
}
/* /*
* Note that videobuf holds the lock when it calls * Configure things if need be.
* us, so we need not (indeed, cannot) take it here. */
if (test_bit(CF_CONFIG_NEEDED, &cam->flags)) {
ret = viacam_configure_sensor(cam);
if (ret)
goto out;
ret = viacam_config_controller(cam);
if (ret)
goto out;
}
cam->sequence = 0;
/*
* If the CPU goes into C3, the DMA transfer gets corrupted and
* users start filing unsightly bug reports. Put in a "latency"
* requirement which will keep the CPU out of the deeper sleep
* states.
*/ */
vb->state = VIDEOBUF_QUEUED; pm_qos_add_request(&cam->qos_request, PM_QOS_CPU_DMA_LATENCY, 50);
list_add_tail(&vb->queue, &cam->buffer_queue); viacam_start_engine(cam);
return 0;
out:
list_for_each_entry_safe(buf, tmp, &cam->buffer_queue, queue) {
list_del(&buf->queue);
vb2_buffer_done(&buf->vbuf.vb2_buf, VB2_BUF_STATE_QUEUED);
}
return ret;
} }
/* static void viacam_vb2_stop_streaming(struct vb2_queue *vq)
* Free a buffer.
*/
static void viacam_vb_buf_release(struct videobuf_queue *q,
struct videobuf_buffer *vb)
{ {
struct via_camera *cam = q->priv_data; struct via_camera *cam = vb2_get_drv_priv(vq);
struct via_buffer *buf, *tmp;
pm_qos_remove_request(&cam->qos_request);
viacam_stop_engine(cam);
videobuf_dma_unmap(&cam->platdev->dev, videobuf_to_dma(vb)); list_for_each_entry_safe(buf, tmp, &cam->buffer_queue, queue) {
videobuf_dma_free(videobuf_to_dma(vb)); list_del(&buf->queue);
vb->state = VIDEOBUF_NEEDS_INIT; vb2_buffer_done(&buf->vbuf.vb2_buf, VB2_BUF_STATE_ERROR);
}
} }
static const struct videobuf_queue_ops viacam_vb_ops = { static const struct vb2_ops viacam_vb2_ops = {
.buf_setup = viacam_vb_buf_setup, .queue_setup = viacam_vb2_queue_setup,
.buf_prepare = viacam_vb_buf_prepare, .buf_queue = viacam_vb2_queue,
.buf_queue = viacam_vb_buf_queue, .buf_prepare = viacam_vb2_prepare,
.buf_release = viacam_vb_buf_release, .start_streaming = viacam_vb2_start_streaming,
.stop_streaming = viacam_vb2_stop_streaming,
.wait_prepare = vb2_ops_wait_prepare,
.wait_finish = vb2_ops_wait_finish,
}; };
/* --------------------------------------------------------------------------*/ /* --------------------------------------------------------------------------*/
...@@ -678,15 +706,7 @@ static int viacam_open(struct file *filp) ...@@ -678,15 +706,7 @@ static int viacam_open(struct file *filp)
} }
via_sensor_power_up(cam); via_sensor_power_up(cam);
set_bit(CF_CONFIG_NEEDED, &cam->flags); set_bit(CF_CONFIG_NEEDED, &cam->flags);
/*
* Hook into videobuf. Evidently this cannot fail.
*/
videobuf_queue_sg_init(&cam->vb_queue, &viacam_vb_ops,
&cam->platdev->dev, &cam->viadev->reg_lock,
V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_NONE,
sizeof(struct videobuf_buffer), cam, NULL);
} }
(cam->users)++;
out: out:
mutex_unlock(&cam->lock); mutex_unlock(&cam->lock);
return ret; return ret;
...@@ -698,107 +718,26 @@ static int viacam_release(struct file *filp) ...@@ -698,107 +718,26 @@ static int viacam_release(struct file *filp)
bool last_open; bool last_open;
mutex_lock(&cam->lock); mutex_lock(&cam->lock);
(cam->users)--;
last_open = v4l2_fh_is_singular_file(filp); last_open = v4l2_fh_is_singular_file(filp);
/* _vb2_fop_release(filp, NULL);
* If the "owner" is closing, shut down any ongoing
* operations.
*/
if (filp == cam->owner) {
videobuf_stop(&cam->vb_queue);
/*
* We don't hold the spinlock here, but, if release()
* is being called by the owner, nobody else will
* be changing the state. And an extra stop would
* not hurt anyway.
*/
if (cam->opstate != S_IDLE)
viacam_stop_engine(cam);
cam->owner = NULL;
}
/* /*
* Last one out needs to turn out the lights. * Last one out needs to turn out the lights.
*/ */
if (last_open) { if (last_open) {
videobuf_mmap_free(&cam->vb_queue);
via_sensor_power_down(cam); via_sensor_power_down(cam);
viafb_release_dma(); viafb_release_dma();
} }
v4l2_fh_release(filp);
mutex_unlock(&cam->lock); mutex_unlock(&cam->lock);
return 0; return 0;
} }
/*
* Read a frame from the device.
*/
static ssize_t viacam_read(struct file *filp, char __user *buffer,
size_t len, loff_t *pos)
{
struct via_camera *cam = video_drvdata(filp);
int ret;
mutex_lock(&cam->lock);
/*
* Enforce the V4l2 "only one owner gets to read data" rule.
*/
if (cam->owner && cam->owner != filp) {
ret = -EBUSY;
goto out_unlock;
}
cam->owner = filp;
/*
* Do we need to configure the hardware?
*/
if (test_bit(CF_CONFIG_NEEDED, &cam->flags)) {
ret = viacam_configure_sensor(cam);
if (!ret)
ret = viacam_config_controller(cam);
if (ret)
goto out_unlock;
}
/*
* Fire up the capture engine, then have videobuf do
* the heavy lifting. Someday it would be good to avoid
* stopping and restarting the engine each time.
*/
INIT_LIST_HEAD(&cam->buffer_queue);
viacam_start_engine(cam);
ret = videobuf_read_stream(&cam->vb_queue, buffer, len, pos, 0,
filp->f_flags & O_NONBLOCK);
viacam_stop_engine(cam);
/* videobuf_stop() ?? */
out_unlock:
mutex_unlock(&cam->lock);
return ret;
}
static __poll_t viacam_poll(struct file *filp, struct poll_table_struct *pt)
{
struct via_camera *cam = video_drvdata(filp);
return v4l2_ctrl_poll(filp, pt) | videobuf_poll_stream(filp, &cam->vb_queue, pt);
}
static int viacam_mmap(struct file *filp, struct vm_area_struct *vma)
{
struct via_camera *cam = video_drvdata(filp);
return videobuf_mmap_mapper(&cam->vb_queue, vma);
}
static const struct v4l2_file_operations viacam_fops = { static const struct v4l2_file_operations viacam_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = viacam_open, .open = viacam_open,
.release = viacam_release, .release = viacam_release,
.read = viacam_read, .read = vb2_fop_read,
.poll = viacam_poll, .poll = vb2_fop_poll,
.mmap = viacam_mmap, .mmap = vb2_fop_mmap,
.unlocked_ioctl = video_ioctl2, .unlocked_ioctl = video_ioctl2,
}; };
...@@ -926,12 +865,8 @@ static int viacam_try_fmt_vid_cap(struct file *filp, void *priv, ...@@ -926,12 +865,8 @@ static int viacam_try_fmt_vid_cap(struct file *filp, void *priv,
{ {
struct via_camera *cam = video_drvdata(filp); struct via_camera *cam = video_drvdata(filp);
struct v4l2_format sfmt; struct v4l2_format sfmt;
int ret;
mutex_lock(&cam->lock); return viacam_do_try_fmt(cam, &fmt->fmt.pix, &sfmt.fmt.pix);
ret = viacam_do_try_fmt(cam, &fmt->fmt.pix, &sfmt.fmt.pix);
mutex_unlock(&cam->lock);
return ret;
} }
...@@ -940,9 +875,7 @@ static int viacam_g_fmt_vid_cap(struct file *filp, void *priv, ...@@ -940,9 +875,7 @@ static int viacam_g_fmt_vid_cap(struct file *filp, void *priv,
{ {
struct via_camera *cam = video_drvdata(filp); struct via_camera *cam = video_drvdata(filp);
mutex_lock(&cam->lock);
fmt->fmt.pix = cam->user_format; fmt->fmt.pix = cam->user_format;
mutex_unlock(&cam->lock);
return 0; return 0;
} }
...@@ -958,18 +891,15 @@ static int viacam_s_fmt_vid_cap(struct file *filp, void *priv, ...@@ -958,18 +891,15 @@ static int viacam_s_fmt_vid_cap(struct file *filp, void *priv,
* Camera must be idle or we can't mess with the * Camera must be idle or we can't mess with the
* video setup. * video setup.
*/ */
mutex_lock(&cam->lock); if (cam->opstate != S_IDLE)
if (cam->opstate != S_IDLE) { return -EBUSY;
ret = -EBUSY;
goto out;
}
/* /*
* Let the sensor code look over and tweak the * Let the sensor code look over and tweak the
* requested formatting. * requested formatting.
*/ */
ret = viacam_do_try_fmt(cam, &fmt->fmt.pix, &sfmt.fmt.pix); ret = viacam_do_try_fmt(cam, &fmt->fmt.pix, &sfmt.fmt.pix);
if (ret) if (ret)
goto out; return ret;
/* /*
* OK, let's commit to the new format. * OK, let's commit to the new format.
*/ */
...@@ -979,8 +909,6 @@ static int viacam_s_fmt_vid_cap(struct file *filp, void *priv, ...@@ -979,8 +909,6 @@ static int viacam_s_fmt_vid_cap(struct file *filp, void *priv,
ret = viacam_configure_sensor(cam); ret = viacam_configure_sensor(cam);
if (!ret) if (!ret)
ret = viacam_config_controller(cam); ret = viacam_config_controller(cam);
out:
mutex_unlock(&cam->lock);
return ret; return ret;
} }
...@@ -993,140 +921,22 @@ static int viacam_querycap(struct file *filp, void *priv, ...@@ -993,140 +921,22 @@ static int viacam_querycap(struct file *filp, void *priv,
return 0; return 0;
} }
/*
* Streaming operations - pure videobuf stuff.
*/
static int viacam_reqbufs(struct file *filp, void *priv,
struct v4l2_requestbuffers *rb)
{
struct via_camera *cam = video_drvdata(filp);
return videobuf_reqbufs(&cam->vb_queue, rb);
}
static int viacam_querybuf(struct file *filp, void *priv,
struct v4l2_buffer *buf)
{
struct via_camera *cam = video_drvdata(filp);
return videobuf_querybuf(&cam->vb_queue, buf);
}
static int viacam_qbuf(struct file *filp, void *priv, struct v4l2_buffer *buf)
{
struct via_camera *cam = video_drvdata(filp);
return videobuf_qbuf(&cam->vb_queue, buf);
}
static int viacam_dqbuf(struct file *filp, void *priv, struct v4l2_buffer *buf)
{
struct via_camera *cam = video_drvdata(filp);
return videobuf_dqbuf(&cam->vb_queue, buf, filp->f_flags & O_NONBLOCK);
}
static int viacam_streamon(struct file *filp, void *priv, enum v4l2_buf_type t)
{
struct via_camera *cam = video_drvdata(filp);
int ret = 0;
if (t != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL;
mutex_lock(&cam->lock);
if (cam->opstate != S_IDLE) {
ret = -EBUSY;
goto out;
}
/*
* Enforce the V4l2 "only one owner gets to read data" rule.
*/
if (cam->owner && cam->owner != filp) {
ret = -EBUSY;
goto out;
}
cam->owner = filp;
/*
* Configure things if need be.
*/
if (test_bit(CF_CONFIG_NEEDED, &cam->flags)) {
ret = viacam_configure_sensor(cam);
if (ret)
goto out;
ret = viacam_config_controller(cam);
if (ret)
goto out;
}
/*
* If the CPU goes into C3, the DMA transfer gets corrupted and
* users start filing unsightly bug reports. Put in a "latency"
* requirement which will keep the CPU out of the deeper sleep
* states.
*/
pm_qos_add_request(&cam->qos_request, PM_QOS_CPU_DMA_LATENCY, 50);
/*
* Fire things up.
*/
INIT_LIST_HEAD(&cam->buffer_queue);
ret = videobuf_streamon(&cam->vb_queue);
if (!ret)
viacam_start_engine(cam);
out:
mutex_unlock(&cam->lock);
return ret;
}
static int viacam_streamoff(struct file *filp, void *priv, enum v4l2_buf_type t)
{
struct via_camera *cam = video_drvdata(filp);
int ret;
if (t != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL;
mutex_lock(&cam->lock);
if (cam->opstate != S_RUNNING) {
ret = -EINVAL;
goto out;
}
pm_qos_remove_request(&cam->qos_request);
viacam_stop_engine(cam);
/*
* Videobuf will recycle all of the outstanding buffers, but
* we should be sure we don't retain any references to
* any of them.
*/
ret = videobuf_streamoff(&cam->vb_queue);
INIT_LIST_HEAD(&cam->buffer_queue);
out:
mutex_unlock(&cam->lock);
return ret;
}
/* G/S_PARM */ /* G/S_PARM */
static int viacam_g_parm(struct file *filp, void *priv, static int viacam_g_parm(struct file *filp, void *priv,
struct v4l2_streamparm *parm) struct v4l2_streamparm *parm)
{ {
struct via_camera *cam = video_drvdata(filp); struct via_camera *cam = video_drvdata(filp);
int ret;
mutex_lock(&cam->lock); return v4l2_g_parm_cap(video_devdata(filp), cam->sensor, parm);
ret = v4l2_g_parm_cap(video_devdata(filp), cam->sensor, parm);
mutex_unlock(&cam->lock);
return ret;
} }
static int viacam_s_parm(struct file *filp, void *priv, static int viacam_s_parm(struct file *filp, void *priv,
struct v4l2_streamparm *parm) struct v4l2_streamparm *parm)
{ {
struct via_camera *cam = video_drvdata(filp); struct via_camera *cam = video_drvdata(filp);
int ret;
mutex_lock(&cam->lock); return v4l2_s_parm_cap(video_devdata(filp), cam->sensor, parm);
ret = v4l2_s_parm_cap(video_devdata(filp), cam->sensor, parm);
mutex_unlock(&cam->lock);
return ret;
} }
static int viacam_enum_framesizes(struct file *filp, void *priv, static int viacam_enum_framesizes(struct file *filp, void *priv,
...@@ -1172,9 +982,7 @@ static int viacam_enum_frameintervals(struct file *filp, void *priv, ...@@ -1172,9 +982,7 @@ static int viacam_enum_frameintervals(struct file *filp, void *priv,
if (interval->width < QCIF_WIDTH || interval->width > VGA_WIDTH || if (interval->width < QCIF_WIDTH || interval->width > VGA_WIDTH ||
interval->height < QCIF_HEIGHT || interval->height > VGA_HEIGHT) interval->height < QCIF_HEIGHT || interval->height > VGA_HEIGHT)
return -EINVAL; return -EINVAL;
mutex_lock(&cam->lock);
ret = sensor_call(cam, pad, enum_frame_interval, NULL, &fie); ret = sensor_call(cam, pad, enum_frame_interval, NULL, &fie);
mutex_unlock(&cam->lock);
if (ret) if (ret)
return ret; return ret;
interval->type = V4L2_FRMIVAL_TYPE_DISCRETE; interval->type = V4L2_FRMIVAL_TYPE_DISCRETE;
...@@ -1182,8 +990,6 @@ static int viacam_enum_frameintervals(struct file *filp, void *priv, ...@@ -1182,8 +990,6 @@ static int viacam_enum_frameintervals(struct file *filp, void *priv,
return 0; return 0;
} }
static const struct v4l2_ioctl_ops viacam_ioctl_ops = { static const struct v4l2_ioctl_ops viacam_ioctl_ops = {
.vidioc_enum_input = viacam_enum_input, .vidioc_enum_input = viacam_enum_input,
.vidioc_g_input = viacam_g_input, .vidioc_g_input = viacam_g_input,
...@@ -1193,12 +999,15 @@ static const struct v4l2_ioctl_ops viacam_ioctl_ops = { ...@@ -1193,12 +999,15 @@ static const struct v4l2_ioctl_ops viacam_ioctl_ops = {
.vidioc_g_fmt_vid_cap = viacam_g_fmt_vid_cap, .vidioc_g_fmt_vid_cap = viacam_g_fmt_vid_cap,
.vidioc_s_fmt_vid_cap = viacam_s_fmt_vid_cap, .vidioc_s_fmt_vid_cap = viacam_s_fmt_vid_cap,
.vidioc_querycap = viacam_querycap, .vidioc_querycap = viacam_querycap,
.vidioc_reqbufs = viacam_reqbufs, .vidioc_reqbufs = vb2_ioctl_reqbufs,
.vidioc_querybuf = viacam_querybuf, .vidioc_create_bufs = vb2_ioctl_create_bufs,
.vidioc_qbuf = viacam_qbuf, .vidioc_querybuf = vb2_ioctl_querybuf,
.vidioc_dqbuf = viacam_dqbuf, .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
.vidioc_streamon = viacam_streamon, .vidioc_qbuf = vb2_ioctl_qbuf,
.vidioc_streamoff = viacam_streamoff, .vidioc_dqbuf = vb2_ioctl_dqbuf,
.vidioc_expbuf = vb2_ioctl_expbuf,
.vidioc_streamon = vb2_ioctl_streamon,
.vidioc_streamoff = vb2_ioctl_streamoff,
.vidioc_g_parm = viacam_g_parm, .vidioc_g_parm = viacam_g_parm,
.vidioc_s_parm = viacam_s_parm, .vidioc_s_parm = viacam_s_parm,
.vidioc_enum_framesizes = viacam_enum_framesizes, .vidioc_enum_framesizes = viacam_enum_framesizes,
...@@ -1242,7 +1051,7 @@ static int viacam_resume(void *priv) ...@@ -1242,7 +1051,7 @@ static int viacam_resume(void *priv)
/* /*
* Make sure the sensor's power state is correct * Make sure the sensor's power state is correct
*/ */
if (cam->users > 0) if (!list_empty(&cam->vdev.fh_list))
via_sensor_power_up(cam); via_sensor_power_up(cam);
else else
via_sensor_power_down(cam); via_sensor_power_down(cam);
...@@ -1327,6 +1136,7 @@ static int viacam_probe(struct platform_device *pdev) ...@@ -1327,6 +1136,7 @@ static int viacam_probe(struct platform_device *pdev)
int ret; int ret;
struct i2c_adapter *sensor_adapter; struct i2c_adapter *sensor_adapter;
struct viafb_dev *viadev = pdev->dev.platform_data; struct viafb_dev *viadev = pdev->dev.platform_data;
struct vb2_queue *vq;
struct i2c_board_info ov7670_info = { struct i2c_board_info ov7670_info = {
.type = "ov7670", .type = "ov7670",
.addr = 0x42 >> 1, .addr = 0x42 >> 1,
...@@ -1370,8 +1180,6 @@ static int viacam_probe(struct platform_device *pdev) ...@@ -1370,8 +1180,6 @@ static int viacam_probe(struct platform_device *pdev)
via_cam_info = cam; via_cam_info = cam;
cam->platdev = pdev; cam->platdev = pdev;
cam->viadev = viadev; cam->viadev = viadev;
cam->users = 0;
cam->owner = NULL;
cam->opstate = S_IDLE; cam->opstate = S_IDLE;
cam->user_format = cam->sensor_format = viacam_def_pix_format; cam->user_format = cam->sensor_format = viacam_def_pix_format;
mutex_init(&cam->lock); mutex_init(&cam->lock);
...@@ -1432,11 +1240,27 @@ static int viacam_probe(struct platform_device *pdev) ...@@ -1432,11 +1240,27 @@ static int viacam_probe(struct platform_device *pdev)
viacam_irq, IRQF_SHARED, "via-camera", cam); viacam_irq, IRQF_SHARED, "via-camera", cam);
if (ret) if (ret)
goto out_power_down; goto out_power_down;
vq = &cam->vq;
vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
vq->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
vq->drv_priv = cam;
vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
vq->buf_struct_size = sizeof(struct via_buffer);
vq->dev = cam->v4l2_dev.dev;
vq->ops = &viacam_vb2_ops;
vq->mem_ops = &vb2_dma_sg_memops;
vq->lock = &cam->lock;
ret = vb2_queue_init(vq);
/* /*
* Tell V4l2 that we exist. * Tell V4l2 that we exist.
*/ */
cam->vdev = viacam_v4l_template; cam->vdev = viacam_v4l_template;
cam->vdev.v4l2_dev = &cam->v4l2_dev; cam->vdev.v4l2_dev = &cam->v4l2_dev;
cam->vdev.lock = &cam->lock;
cam->vdev.queue = vq;
video_set_drvdata(&cam->vdev, cam); video_set_drvdata(&cam->vdev, cam);
ret = video_register_device(&cam->vdev, VFL_TYPE_GRABBER, -1); ret = video_register_device(&cam->vdev, VFL_TYPE_GRABBER, -1);
if (ret) if (ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment