mirror of
https://github.com/patjak/facetimehd.git
synced 2026-04-09 11:02:31 +02:00
662 lines
19 KiB
C
662 lines
19 KiB
C
/*
|
|
* Broadcom PCIe 1570 webcam driver
|
|
*
|
|
* Copyright (C) 2015 Sven Schnelle <svens@stackframe.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/videodev2.h>
|
|
#include <media/v4l2-dev.h>
|
|
#include <media/v4l2-ioctl.h>
|
|
#include <media/videobuf2-dma-sg.h>
|
|
#include "fthd_drv.h"
|
|
#include "fthd_hw.h"
|
|
#include "fthd_isp.h"
|
|
#include "fthd_ringbuf.h"
|
|
#include "fthd_buffer.h"
|
|
|
|
#define FTHD_FMT(_desc, _x, _y, _sizeimage, _planes, _pixfmt) \
|
|
{ \
|
|
.fmt.width = (_x), \
|
|
.fmt.height = (_y), \
|
|
.fmt.sizeimage = (_sizeimage), \
|
|
.fmt.pixelformat = (_pixfmt), \
|
|
.planes = (_planes), \
|
|
.desc = (_desc), \
|
|
}
|
|
|
|
static struct fthd_fmt fthd_formats[] = {
|
|
FTHD_FMT("1280x720 YUYV (4:2:2)", 1280, 720, 1280 * 720 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("1280x720 YVYU (4:2:2)", 1280, 720, 1280 * 720 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("1280x720 NV16", 1280, 720, 1280 * 720, 2, V4L2_PIX_FMT_NV16),
|
|
|
|
FTHD_FMT("1024x576 YUYV (4:2:2)", 1024, 576, 1024 * 576 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("1024x576 YVYU (4:2:2)", 1024, 576, 1024 * 576 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("1024x576 NV16", 1024, 576, 1024 * 576, 2, V4L2_PIX_FMT_NV16),
|
|
|
|
FTHD_FMT("1024x720 YUYV (4:2:2)", 1024, 720, 1024 * 720 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("1024x720 YVYU (4:2:2)", 1024, 720, 1024 * 720 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("1024x720 NV16", 1024, 720, 1024 * 720, 2, V4L2_PIX_FMT_NV16),
|
|
|
|
FTHD_FMT("640x480 YUYV (4:2:2)", 640, 480, 640 * 480 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("640x480 YVYU (4:2:2)", 640, 480, 640 * 480 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("640x480 NV16", 640, 480, 640 * 480, 2, V4L2_PIX_FMT_NV16),
|
|
|
|
FTHD_FMT("320x240 YUYV (4:2:2)", 320, 240, 320 * 240 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("320x240 YVYU (4:2:2)", 320, 240, 320 * 240 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("320x240 NV16", 320, 240, 320 * 240, 2, V4L2_PIX_FMT_NV16),
|
|
|
|
FTHD_FMT("384x288 YUYV (4:2:2)", 384, 288, 384 * 288 * 2, 1, V4L2_PIX_FMT_YUYV),
|
|
FTHD_FMT("384x288 YVYU (4:2:2)", 384, 288, 384 * 288 * 2, 1, V4L2_PIX_FMT_YVYU),
|
|
FTHD_FMT("384x288 NV16", 384, 288, 384 * 288, 2, V4L2_PIX_FMT_NV16),
|
|
};
|
|
|
|
static int fthd_buffer_queue_setup(struct vb2_queue *vq,
|
|
const struct v4l2_format *fmt,
|
|
unsigned int *nbuffers, unsigned int *nplanes,
|
|
unsigned int sizes[], void *alloc_ctxs[])
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vq);
|
|
int i, total_size = 0;
|
|
|
|
*nplanes = dev_priv->fmt.planes;
|
|
|
|
if (!*nplanes)
|
|
return -EINVAL;
|
|
|
|
for(i = 0; i < *nplanes; i++) {
|
|
sizes[i] = dev_priv->fmt.fmt.sizeimage;
|
|
alloc_ctxs[i] = dev_priv->alloc_ctx;
|
|
total_size += sizes[i];
|
|
}
|
|
|
|
*nbuffers = (4096 * 4096) / total_size;
|
|
if (*nbuffers > 4)
|
|
*nbuffers = 4;
|
|
if (*nbuffers <= 1)
|
|
return -ENOMEM;
|
|
pr_debug("using %d buffers\n", *nbuffers);
|
|
return 0;
|
|
}
|
|
|
|
static void fthd_buffer_cleanup(struct vb2_buffer *vb)
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vb->vb2_queue);
|
|
struct h2t_buf_ctx *ctx = NULL;
|
|
int i;
|
|
|
|
pr_debug("%p\n", vb);
|
|
for(i = 0; i < FTHD_BUFFERS; i++) {
|
|
if (dev_priv->h2t_bufs[i].vb == vb) {
|
|
ctx = dev_priv->h2t_bufs + i;
|
|
break;
|
|
};
|
|
}
|
|
if (!ctx || ctx->state == BUF_FREE)
|
|
return;
|
|
|
|
ctx->state = BUF_FREE;
|
|
ctx->vb = NULL;
|
|
isp_mem_destroy(ctx->dma_desc_obj);
|
|
for(i = 0; i < dev_priv->fmt.planes; i++) {
|
|
iommu_free(dev_priv, ctx->plane[i]);
|
|
ctx->plane[i] = NULL;
|
|
}
|
|
ctx->dma_desc_obj = NULL;
|
|
}
|
|
|
|
static int fthd_send_h2t_buffer(struct fthd_private *dev_priv, struct h2t_buf_ctx *ctx)
|
|
{
|
|
u32 entry;
|
|
|
|
pr_debug("sending buffer %p size %ld, ctx %p\n", ctx->vb, sizeof(ctx->dma_desc_list), ctx);
|
|
FTHD_S2_MEMCPY_TOIO(ctx->dma_desc_obj->offset, &ctx->dma_desc_list, sizeof(ctx->dma_desc_list));
|
|
entry = fthd_channel_ringbuf_send(dev_priv, dev_priv->channel_buf_h2t,
|
|
ctx->dma_desc_obj->offset, 0x180, 0x30000000);
|
|
|
|
if (entry == (u32)-1) {
|
|
pr_debug("send failed\n");
|
|
return -EIO;
|
|
}
|
|
|
|
if (wait_event_interruptible_timeout(ctx->wq, ctx->done, HZ) <= 0) {
|
|
dev_err(&dev_priv->pdev->dev, "timeout wait for buffer %p\n", ctx->vb);
|
|
return -ETIMEDOUT;
|
|
}
|
|
ctx->done = 0;
|
|
return 0;
|
|
}
|
|
|
|
void fthd_buffer_queued_handler(struct fthd_private *dev_priv, u32 offset)
|
|
{
|
|
|
|
struct dma_descriptor_list list;
|
|
struct h2t_buf_ctx *ctx;
|
|
|
|
|
|
FTHD_S2_MEMCPY_FROMIO(&list, offset, sizeof(list));
|
|
|
|
ctx = (struct h2t_buf_ctx *)list.desc[0].tag;
|
|
pr_debug("vb %p, ctx = %p\n", ctx->vb, ctx);
|
|
memcpy(&ctx->dma_desc_list, &list, sizeof(ctx->dma_desc_list));
|
|
ctx->done = 1;
|
|
wake_up_interruptible(&ctx->wq);
|
|
}
|
|
|
|
static void fthd_buffer_queue(struct vb2_buffer *vb)
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vb->vb2_queue);
|
|
struct dma_descriptor_list *list;
|
|
struct h2t_buf_ctx *ctx = NULL;
|
|
|
|
int i;
|
|
pr_debug("vb = %p\n", vb);
|
|
for(i = 0; i < FTHD_BUFFERS; i++) {
|
|
if (dev_priv->h2t_bufs[i].vb == vb) {
|
|
ctx = dev_priv->h2t_bufs + i;
|
|
break;
|
|
};
|
|
}
|
|
|
|
if (!ctx)
|
|
return;
|
|
|
|
if (ctx->state != BUF_ALLOC)
|
|
return;
|
|
|
|
if (!vb->vb2_queue->streaming) {
|
|
ctx->state = BUF_DRV_QUEUED;
|
|
} else {
|
|
list = &ctx->dma_desc_list;
|
|
list->field0 = 1;
|
|
ctx->state = BUF_HW_QUEUED;
|
|
wmb();
|
|
pr_debug("%d: field0: %d, count %d, pool %d, addr0 0x%08x, addr1 0x%08x tag 0x%08llx vb = %p\n", i, list->field0,
|
|
list->desc[i].count, list->desc[i].pool, list->desc[i].addr0, list->desc[i].addr1, list->desc[i].tag, ctx->vb);
|
|
|
|
if (fthd_send_h2t_buffer(dev_priv, ctx)) {
|
|
vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
|
|
ctx->state = BUF_ALLOC;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
static int fthd_buffer_prepare(struct vb2_buffer *vb)
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vb->vb2_queue);
|
|
struct sg_table *sgtable;
|
|
struct h2t_buf_ctx *ctx = NULL;
|
|
struct dma_descriptor_list *dma_list;
|
|
int i;
|
|
|
|
pr_debug("%p\n", vb);
|
|
for(i = 0; i < FTHD_BUFFERS; i++) {
|
|
if (dev_priv->h2t_bufs[i].state == BUF_FREE ||
|
|
(dev_priv->h2t_bufs[i].state == BUF_ALLOC && dev_priv->h2t_bufs[i].vb == vb)) {
|
|
ctx = dev_priv->h2t_bufs + i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!ctx)
|
|
return -ENOBUFS;
|
|
|
|
if (ctx->state == BUF_FREE) {
|
|
pr_debug("allocating new entry\n");
|
|
ctx->dma_desc_obj = isp_mem_create(dev_priv, FTHD_MEM_BUFFER, 0x180);
|
|
if (!ctx->dma_desc_obj)
|
|
return -ENOMEM;
|
|
|
|
ctx->vb = vb;
|
|
ctx->state = BUF_ALLOC;
|
|
|
|
for(i = 0; i < dev_priv->fmt.planes; i++) {
|
|
sgtable = vb2_dma_sg_plane_desc(vb, i);
|
|
ctx->plane[i] = iommu_allocate_sgtable(dev_priv, sgtable);
|
|
if(!ctx->plane[i])
|
|
return -ENOMEM;
|
|
}
|
|
}
|
|
|
|
vb2_set_plane_payload(vb, 0, dev_priv->fmt.fmt.sizeimage);
|
|
|
|
dma_list = &ctx->dma_desc_list;
|
|
memset(dma_list, 0, 0x180);
|
|
|
|
dma_list->field0 = 1;
|
|
dma_list->count = 1;
|
|
dma_list->desc[0].count = 1;
|
|
dma_list->desc[0].pool = 0x02;
|
|
dma_list->desc[0].addr0 = (ctx->plane[0]->offset << 12) | 0xc0000000;
|
|
|
|
if (dev_priv->fmt.planes >= 2)
|
|
dma_list->desc[0].addr1 = (ctx->plane[1]->offset << 12) | 0xc0000000;
|
|
if (dev_priv->fmt.planes >= 3)
|
|
dma_list->desc[0].addr2 = (ctx->plane[2]->offset << 12) | 0xc0000000;
|
|
|
|
dma_list->desc[0].tag = (u64)ctx;
|
|
init_waitqueue_head(&ctx->wq);
|
|
return 0;
|
|
}
|
|
|
|
void fthd_buffer_return_handler(struct fthd_private *dev_priv, u32 offset, int size)
|
|
{
|
|
struct dma_descriptor_list list;
|
|
struct h2t_buf_ctx *ctx;
|
|
int i;
|
|
|
|
FTHD_S2_MEMCPY_FROMIO(&list, offset, sizeof(list));
|
|
|
|
for(i = 0; i < list.count; i++) {
|
|
ctx = (struct h2t_buf_ctx *)list.desc[i].tag;
|
|
pr_debug("%d: field0: %d, count %d, pool %d, addr0 0x%08x, addr1 0x%08x tag 0x%08llx vb = %p, ctx = %p\n", i, list.field0,
|
|
list.desc[i].count, list.desc[i].pool, list.desc[i].addr0, list.desc[i].addr1, list.desc[i].tag, ctx->vb, ctx);
|
|
|
|
if (ctx->state == BUF_HW_QUEUED || ctx->state == BUF_DRV_QUEUED) {
|
|
ctx->state = BUF_ALLOC;
|
|
vb2_buffer_done(ctx->vb, VB2_BUF_STATE_DONE);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
static int fthd_start_streaming(struct vb2_queue *vq, unsigned int count)
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vq);
|
|
struct h2t_buf_ctx *ctx;
|
|
int i, ret;
|
|
|
|
pr_debug("count = %d\n", count);
|
|
ret = fthd_start_channel(dev_priv, 0);
|
|
if (ret)
|
|
return ret;
|
|
|
|
for(i = 0; i < FTHD_BUFFERS && count; i++, count--) {
|
|
ctx = dev_priv->h2t_bufs + i;
|
|
if (ctx->state != BUF_DRV_QUEUED)
|
|
continue;
|
|
|
|
if (fthd_send_h2t_buffer(dev_priv, ctx)) {
|
|
vb2_buffer_done(ctx->vb, VB2_BUF_STATE_ERROR);
|
|
ctx->state = BUF_ALLOC;
|
|
}
|
|
ctx->state = BUF_HW_QUEUED;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void fthd_stop_streaming(struct vb2_queue *vq)
|
|
{
|
|
struct fthd_private *dev_priv = vb2_get_drv_priv(vq);
|
|
struct h2t_buf_ctx *ctx;
|
|
int ret, i;
|
|
|
|
ret = fthd_stop_channel(dev_priv, 0);
|
|
if (!ret) {
|
|
pr_debug("waiting for buffers...\n");
|
|
vb2_wait_for_all_buffers(vq);
|
|
pr_debug("done\n");
|
|
} else {
|
|
/* Firmware doesn't respond. */
|
|
for(i = 0; i < FTHD_BUFFERS;i++) {
|
|
ctx = dev_priv->h2t_bufs + i;
|
|
if (ctx->state == BUF_DRV_QUEUED || ctx->state == BUF_HW_QUEUED) {
|
|
vb2_buffer_done(ctx->vb, VB2_BUF_STATE_DONE);
|
|
ctx->vb = NULL;
|
|
ctx->state = BUF_ALLOC;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static struct vb2_ops vb2_queue_ops = {
|
|
.queue_setup = fthd_buffer_queue_setup,
|
|
.buf_prepare = fthd_buffer_prepare,
|
|
.buf_cleanup = fthd_buffer_cleanup,
|
|
.start_streaming = fthd_start_streaming,
|
|
.stop_streaming = fthd_stop_streaming,
|
|
.buf_queue = fthd_buffer_queue,
|
|
.wait_prepare = vb2_ops_wait_prepare,
|
|
.wait_finish = vb2_ops_wait_finish,
|
|
};
|
|
|
|
static struct v4l2_file_operations fthd_vdev_fops = {
|
|
.owner = THIS_MODULE,
|
|
.open = v4l2_fh_open,
|
|
|
|
.release = vb2_fop_release,
|
|
.poll = vb2_fop_poll,
|
|
.mmap = vb2_fop_mmap,
|
|
.unlocked_ioctl = video_ioctl2
|
|
};
|
|
|
|
static int fthd_v4l2_ioctl_enum_input(struct file *filp, void *priv,
|
|
struct v4l2_input *input)
|
|
{
|
|
if (input->index != 0)
|
|
return -EINVAL;
|
|
|
|
input->type = V4L2_INPUT_TYPE_CAMERA;
|
|
input->std = V4L2_STD_ALL;
|
|
strcpy(input->name, "Apple Facetime HD");
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_g_input(struct file *filp, void *priv, unsigned int *i)
|
|
{
|
|
*i = 0;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_s_input(struct file *filp, void *priv, unsigned int i)
|
|
{
|
|
if (i != 0)
|
|
return -EINVAL;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_s_std(struct file *filp, void *priv, v4l2_std_id std)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_g_std(struct file *filp, void *priv, v4l2_std_id *std)
|
|
{
|
|
*std = V4L2_STD_NTSC_M;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_querycap(struct file *filp, void *priv,
|
|
struct v4l2_capability *cap)
|
|
{
|
|
strcpy(cap->driver, "bcwc");
|
|
strcpy(cap->card, "Apple Facetime HD");
|
|
cap->device_caps = V4L2_CAP_VIDEO_CAPTURE |
|
|
V4L2_CAP_READWRITE | V4L2_CAP_STREAMING | V4L2_CAP_TIMEPERFRAME;
|
|
cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_enum_fmt_vid_cap(struct file *filp, void *priv,
|
|
struct v4l2_fmtdesc *fmt)
|
|
{
|
|
if (fmt->index >= ARRAY_SIZE(fthd_formats))
|
|
return -EINVAL;
|
|
strlcpy(fmt->description, fthd_formats[fmt->index].desc,
|
|
sizeof(fmt->description));
|
|
fmt->pixelformat = fthd_formats[fmt->index].fmt.pixelformat;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_try_fmt_vid_cap(struct file *filp, void *_priv,
|
|
struct v4l2_format *fmt)
|
|
{
|
|
struct fthd_private *dev_priv = video_drvdata(filp);
|
|
|
|
|
|
pr_info("%s: %dx%d\n", __FUNCTION__, fmt->fmt.pix.width, fmt->fmt.pix.height);
|
|
|
|
dev_priv->fmt.fmt = fmt->fmt.pix;
|
|
|
|
switch(fmt->fmt.pix.pixelformat) {
|
|
case V4L2_PIX_FMT_YUYV:
|
|
case V4L2_PIX_FMT_YVYU:
|
|
dev_priv->fmt.fmt.sizeimage = fmt->fmt.pix.width * fmt->fmt.pix.height * 2;
|
|
dev_priv->fmt.fmt.bytesperline = fmt->fmt.pix.width * 2;
|
|
dev_priv->fmt.planes = 1;
|
|
break;
|
|
case V4L2_PIX_FMT_NV16:
|
|
dev_priv->fmt.fmt.sizeimage = fmt->fmt.pix.width * fmt->fmt.pix.height;
|
|
dev_priv->fmt.fmt.bytesperline = fmt->fmt.pix.width;
|
|
dev_priv->fmt.planes = 2;
|
|
break;
|
|
default:
|
|
pr_err("unknown pixelformat %c%c%c%c\n",
|
|
fmt->fmt.pix.pixelformat,
|
|
fmt->fmt.pix.pixelformat >> 8,
|
|
fmt->fmt.pix.pixelformat >> 16,
|
|
fmt->fmt.pix.pixelformat >> 24);
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_g_fmt_vid_cap(struct file *filp, void *priv,
|
|
struct v4l2_format *fmt)
|
|
{
|
|
struct fthd_private *dev_priv = video_drvdata(filp);
|
|
pr_debug("%s\n", __FUNCTION__);
|
|
fmt->fmt.pix = dev_priv->fmt.fmt;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_s_fmt_vid_cap(struct file *filp, void *priv,
|
|
struct v4l2_format *fmt)
|
|
{
|
|
struct fthd_private *dev_priv = video_drvdata(filp);
|
|
|
|
if (fmt->fmt.pix.width < 320 ||
|
|
fmt->fmt.pix.height < 240 ||
|
|
(fmt->fmt.pix.pixelformat != V4L2_PIX_FMT_YUYV &&
|
|
fmt->fmt.pix.pixelformat != V4L2_PIX_FMT_YVYU &&
|
|
fmt->fmt.pix.pixelformat != V4L2_PIX_FMT_NV16)) {
|
|
fmt->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
|
|
fmt->fmt.pix.height = 720;
|
|
fmt->fmt.pix.width = 1280;
|
|
return 0;
|
|
}
|
|
|
|
fmt->fmt.pix.width &= ~7;
|
|
pr_debug("%c%c%c%c\n", fmt->fmt.pix.pixelformat, fmt->fmt.pix.pixelformat >> 8,
|
|
fmt->fmt.pix.pixelformat >> 16, fmt->fmt.pix.pixelformat >> 24);
|
|
switch(fmt->fmt.pix.pixelformat) {
|
|
case V4L2_PIX_FMT_NV16:
|
|
dev_priv->fmt.fmt = fmt->fmt.pix;
|
|
dev_priv->fmt.fmt.sizeimage = fmt->fmt.pix.width * fmt->fmt.pix.height;
|
|
dev_priv->fmt.planes = 2;
|
|
break;
|
|
case V4L2_PIX_FMT_YVYU:
|
|
case V4L2_PIX_FMT_YUYV:
|
|
dev_priv->fmt.fmt = fmt->fmt.pix;
|
|
dev_priv->fmt.fmt.sizeimage = fmt->fmt.pix.width * fmt->fmt.pix.height * 2;
|
|
dev_priv->fmt.planes = 1;
|
|
break;
|
|
case 0:
|
|
fmt->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int fthd_v4l2_ioctl_g_parm(struct file *filp, void *priv,
|
|
struct v4l2_streamparm *parm)
|
|
{
|
|
struct fthd_private *priv_dev = video_drvdata(filp);
|
|
struct v4l2_fract timeperframe = {
|
|
.numerator = priv_dev->frametime,
|
|
.denominator = 1000,
|
|
};
|
|
|
|
if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
|
|
return -EINVAL;
|
|
|
|
parm->parm.capture.readbuffers = 2;
|
|
parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
|
|
parm->parm.capture.timeperframe = timeperframe;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_s_parm(struct file *filp, void *priv,
|
|
struct v4l2_streamparm *parm)
|
|
{
|
|
|
|
struct fthd_private *dev_priv = video_drvdata(filp);
|
|
struct v4l2_fract *timeperframe;
|
|
|
|
if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
|
|
return -EINVAL;
|
|
|
|
timeperframe = &parm->parm.capture.timeperframe;
|
|
|
|
if(timeperframe->denominator == 0) {
|
|
timeperframe->numerator = 20;
|
|
timeperframe->denominator = 1000;
|
|
}
|
|
|
|
dev_priv->frametime = clamp_t(unsigned int, timeperframe->numerator * 1000 /
|
|
timeperframe->denominator, 20, 500);
|
|
|
|
return fthd_v4l2_ioctl_g_parm(filp, priv, parm);
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_enum_framesizes(struct file *filp, void *priv,
|
|
struct v4l2_frmsizeenum *sizes)
|
|
{
|
|
sizes->type = V4L2_FRMSIZE_TYPE_CONTINUOUS;
|
|
sizes->stepwise.min_width = 320;
|
|
sizes->stepwise.max_width = 2560;
|
|
sizes->stepwise.min_height = 240;
|
|
sizes->stepwise.max_height = 1600;
|
|
sizes->stepwise.step_width = 8;
|
|
sizes->stepwise.step_height = 1;
|
|
return 0;
|
|
}
|
|
|
|
static int fthd_v4l2_ioctl_enum_frameintervals(struct file *filp, void *priv,
|
|
struct v4l2_frmivalenum *interval)
|
|
{
|
|
pr_debug("%s\n", __FUNCTION__);
|
|
|
|
if (interval->pixel_format != V4L2_PIX_FMT_YUYV &&
|
|
interval->pixel_format != V4L2_PIX_FMT_YVYU &&
|
|
interval->pixel_format != V4L2_PIX_FMT_NV16)
|
|
return -EINVAL;
|
|
|
|
interval->type = V4L2_FRMIVAL_TYPE_STEPWISE;
|
|
interval->stepwise.min.numerator = 33;
|
|
interval->stepwise.min.denominator = 1000;
|
|
interval->stepwise.max.numerator = 500;
|
|
interval->stepwise.max.denominator = 1000;
|
|
|
|
return -ENODEV;
|
|
}
|
|
|
|
static struct v4l2_ioctl_ops fthd_ioctl_ops = {
|
|
.vidioc_enum_input = fthd_v4l2_ioctl_enum_input,
|
|
.vidioc_g_input = fthd_v4l2_ioctl_g_input,
|
|
.vidioc_s_input = fthd_v4l2_ioctl_s_input,
|
|
.vidioc_s_std = fthd_v4l2_ioctl_s_std,
|
|
.vidioc_g_std = fthd_v4l2_ioctl_g_std,
|
|
.vidioc_enum_fmt_vid_cap = fthd_v4l2_ioctl_enum_fmt_vid_cap,
|
|
.vidioc_try_fmt_vid_cap = fthd_v4l2_ioctl_try_fmt_vid_cap,
|
|
|
|
.vidioc_g_fmt_vid_cap = fthd_v4l2_ioctl_g_fmt_vid_cap,
|
|
.vidioc_s_fmt_vid_cap = fthd_v4l2_ioctl_s_fmt_vid_cap,
|
|
.vidioc_querycap = fthd_v4l2_ioctl_querycap,
|
|
|
|
|
|
.vidioc_reqbufs = vb2_ioctl_reqbufs,
|
|
.vidioc_create_bufs = vb2_ioctl_create_bufs,
|
|
.vidioc_querybuf = vb2_ioctl_querybuf,
|
|
.vidioc_qbuf = vb2_ioctl_qbuf,
|
|
.vidioc_dqbuf = vb2_ioctl_dqbuf,
|
|
.vidioc_expbuf = vb2_ioctl_expbuf,
|
|
.vidioc_streamon = vb2_ioctl_streamon,
|
|
.vidioc_streamoff = vb2_ioctl_streamoff,
|
|
|
|
.vidioc_g_parm = fthd_v4l2_ioctl_g_parm,
|
|
.vidioc_s_parm = fthd_v4l2_ioctl_s_parm,
|
|
.vidioc_enum_framesizes = fthd_v4l2_ioctl_enum_framesizes,
|
|
.vidioc_enum_frameintervals = fthd_v4l2_ioctl_enum_frameintervals,
|
|
};
|
|
|
|
int fthd_v4l2_register(struct fthd_private *dev_priv)
|
|
{
|
|
struct v4l2_device *v4l2_dev = &dev_priv->v4l2_dev;
|
|
struct video_device *vdev;
|
|
struct vb2_queue *q;
|
|
int ret;
|
|
|
|
ret = v4l2_device_register(&dev_priv->pdev->dev, v4l2_dev);
|
|
if (ret) {
|
|
pr_err("v4l2_device_register: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
vdev = video_device_alloc();
|
|
if (!vdev) {
|
|
ret = -ENOMEM;
|
|
goto fail;
|
|
}
|
|
dev_priv->videodev = vdev;
|
|
|
|
q = &dev_priv->vb2_queue;
|
|
q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
|
q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
|
|
q->drv_priv = dev_priv;
|
|
q->ops = &vb2_queue_ops;
|
|
q->mem_ops = &vb2_dma_sg_memops;
|
|
q->buf_struct_size = 0;//sizeof(struct vpif_cap_buffer);
|
|
q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
|
|
q->min_buffers_needed = 1;
|
|
q->lock = &dev_priv->vb2_queue_lock;
|
|
|
|
ret = vb2_queue_init(q);
|
|
if (ret)
|
|
goto fail;
|
|
|
|
dev_priv->alloc_ctx = vb2_dma_sg_init_ctx(&dev_priv->pdev->dev);
|
|
vdev->v4l2_dev = v4l2_dev;
|
|
strcpy(vdev->name, "Apple Facetime HD"); // XXX: Length?
|
|
vdev->vfl_dir = VFL_DIR_RX;
|
|
vdev->fops = &fthd_vdev_fops;
|
|
vdev->ioctl_ops = &fthd_ioctl_ops;
|
|
vdev->queue = q;
|
|
vdev->release = video_device_release;
|
|
|
|
video_set_drvdata(vdev, dev_priv);
|
|
ret = video_register_device(vdev, VFL_TYPE_GRABBER, -1);
|
|
if (ret) {
|
|
video_device_release(vdev);
|
|
goto fail;
|
|
}
|
|
dev_priv->fmt.fmt.sizeimage = 1280 * 720 * 2;
|
|
dev_priv->fmt.fmt.pixelformat = V4L2_PIX_FMT_YUYV;
|
|
dev_priv->fmt.fmt.width = 1280;
|
|
dev_priv->fmt.fmt.height = 720;
|
|
|
|
return 0;
|
|
fail:
|
|
v4l2_device_unregister(&dev_priv->v4l2_dev);
|
|
return ret;
|
|
}
|
|
|
|
void fthd_v4l2_unregister(struct fthd_private *dev_priv)
|
|
{
|
|
|
|
vb2_dma_sg_cleanup_ctx(dev_priv->alloc_ctx);
|
|
video_unregister_device(dev_priv->videodev);
|
|
v4l2_device_unregister(&dev_priv->v4l2_dev);
|
|
}
|