From: kfx Date: Mon, 14 Feb 2011 00:52:01 +0000 (+0800) Subject: add rk29xx v4l2 output X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa72cd8a7c1bdda36ec1980037f7483f47e74e92;p=firefly-linux-kernel-4.4.55.git add rk29xx v4l2 output --- diff --git a/arch/arm/mach-rk29/board-rk29sdk.c b/arch/arm/mach-rk29/board-rk29sdk.c index 69d4aa4a59cc..8a5313a26e11 100755 --- a/arch/arm/mach-rk29/board-rk29sdk.c +++ b/arch/arm/mach-rk29/board-rk29sdk.c @@ -286,6 +286,9 @@ static struct platform_device rk29_vpu_mem_device = { }, }; +static struct platform_device rk29_v4l2_output_devce = { + .name = "rk29_vout", +}; /*HANNSTAR_P1003 touch*/ #if defined (CONFIG_HANNSTAR_P1003) @@ -1480,6 +1483,9 @@ static struct platform_device *devices[] __initdata = { #ifdef CONFIG_RK29_IPP &rk29_device_ipp, #endif +#ifdef CONFIG_VIDEO_RK29XX_VOUT + &rk29_v4l2_output_devce, +#endif }; /***************************************************************************************** diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 4a75ab972dd4..5db9758ae2d9 100755 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig @@ -53,6 +53,7 @@ config VIDEO_TUNER # Multimedia Video device configuration # +source "drivers/media/video/rk29xx/Kconfig" menuconfig VIDEO_CAPTURE_DRIVERS bool "Video capture adapters" depends on VIDEO_V4L2 diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile index b226fe79451f..14fa995de69e 100755 --- a/drivers/media/video/Makefile +++ b/drivers/media/video/Makefile @@ -176,7 +176,7 @@ obj-$(CONFIG_VIDEO_SAA7164) += saa7164/ obj-$(CONFIG_VIDEO_IR_I2C) += ir-kbd-i2c.o obj-$(CONFIG_ARCH_DAVINCI) += davinci/ - +obj-$(CONFIG_VIDEO_RK29XX_VOUT) += rk29xx/ EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core EXTRA_CFLAGS += -Idrivers/media/dvb/frontends EXTRA_CFLAGS += -Idrivers/media/common/tuners diff --git a/drivers/media/video/rk29xx/Kconfig b/drivers/media/video/rk29xx/Kconfig new file mode 100644 index 000000000000..b7def547c535 --- /dev/null +++ b/drivers/media/video/rk29xx/Kconfig @@ -0,0 +1,6 @@ +config VIDEO_RK29XX_VOUT + tristate "RK29XX V4L2-Display driver" + depends on ARCH_RK29 + default n + ---help--- + V4L2 Display driver support for RK29XX based boards. diff --git a/drivers/media/video/rk29xx/Makefile b/drivers/media/video/rk29xx/Makefile new file mode 100644 index 000000000000..974e62d690e5 --- /dev/null +++ b/drivers/media/video/rk29xx/Makefile @@ -0,0 +1,7 @@ +# +# Makefile for the rk29xx video device drivers. +# + +# RK29XX Display driver +rk29vout-objs := rk29_vout.o +obj-$(CONFIG_VIDEO_RK29XX_VOUT) += rk29vout.o diff --git a/drivers/media/video/rk29xx/rk29_vout.c b/drivers/media/video/rk29xx/rk29_vout.c new file mode 100755 index 000000000000..f8d56f7d0a00 --- /dev/null +++ b/drivers/media/video/rk29xx/rk29_vout.c @@ -0,0 +1,629 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the BSD Licence, GNU General Public License + * as published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#define VOUT_NR 1 +#define VOUT_NAME "rk29_vout" + +#define VOUT_WIDTH 1024 +#define VOUT_HEIGHT 768 + +#define norm_maxw() 1920 +#define norm_maxh() 1080 + + +static int dev_nr = 1; +static int debug = 1; + +static unsigned int vid_limit = 16; //16M + + +struct rk29_vbuf { + dma_addr_t base[2]; + size_t len[2]; +}; +struct rk29_vid_device { + struct rk29_vout_device *vouts[VOUT_NR]; + struct v4l2_device v4l2_dev; + + struct list_head devlist; +}; +struct rk29_vout_device { + int vid; + int opened; + + struct rk29_vid_device *vid_dev; + enum v4l2_buf_type type; + enum v4l2_memory memory; + struct v4l2_pix_format pix; + struct v4l2_rect crop; + struct v4l2_control ctrl; + struct rk29_vbuf vbuf; + + struct video_device *vfd; + struct videobuf_queue vbq; + + spinlock_t lock; + struct mutex mutex; +}; +struct rk29_fmt { + char *name; + u32 fourcc; /* v4l2 format id */ + int depth; +}; + +static struct rk29_fmt formats[] = { + { + .name = "4:2:0, Y/CbCr", + .fourcc = V4L2_PIX_FMT_NV12, + .depth = 12, + }, +}; + +static struct rk29_fmt *get_format(struct v4l2_format *f) +{ + struct rk29_fmt *fmt; + unsigned int k; + + for (k = 0; k < ARRAY_SIZE(formats); k++) { + fmt = &formats[k]; + if (fmt->fourcc == f->fmt.pix.pixelformat) + break; + } + + if (k == ARRAY_SIZE(formats)) + return NULL; + + return &formats[k]; +} +/* open lcd controler */ +static int lcd_controler_open(struct rk29_vout_device *vout) +{ + return 0; +} +/* close lcd_controler */ +static int lcd_controler_close(struct rk29_vout_device *vout) +{ + return 0; +} +static int lcd_set_img_addr(struct rk29_vbuf vbuf) +{ + return 0; +} +/**********************/ + + + +static int vidioc_g_fmt_vid_out(struct file *file, void *priv, + struct v4l2_format *f) +{ + struct rk29_vout_device *vout = priv; + + f->fmt.pix = vout->pix; + + return 0; +} +static int vidioc_try_fmt_vid_out(struct file *file, void *priv, + struct v4l2_format *f) +{ + struct rk29_vout_device *vout = priv; + struct rk29_fmt *fmt; + unsigned int maxw, maxh; + + fmt = get_format(f); + if (!fmt) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "Fourcc format (0x%08x) invalid.\n", + f->fmt.pix.pixelformat); + return -EINVAL; + } + + maxw = norm_maxw(); + maxh = norm_maxh(); + + v4l_bound_align_image(&f->fmt.pix.width, 48, maxw, 2, + &f->fmt.pix.height, 32, maxh, 0, 0); + f->fmt.pix.bytesperline = + (f->fmt.pix.width * fmt->depth) >> 3; + f->fmt.pix.sizeimage = + f->fmt.pix.height * f->fmt.pix.bytesperline; + + return 0; +} +static int vidioc_s_fmt_vid_out(struct file *file, void *priv, + struct v4l2_format *f) +{ + struct rk29_vout_device *vout = priv; + + int ret = vidioc_try_fmt_vid_out(file, vout, f); + if (ret < 0) + return ret; + + mutex_lock(&vout->mutex); + + if (videobuf_queue_is_busy(&vout->vbq)) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "%s queue busy\n", __func__); + ret = -EBUSY; + goto out; + } + + vout->pix = f->fmt.pix; + vout->vbq.field = f->fmt.pix.field; + vout->type = f->type; + + ret = 0; +out: + mutex_unlock(&vout->mutex); + + return ret; +} +static int vidioc_reqbufs(struct file *file, void *priv, + struct v4l2_requestbuffers *p) +{ + struct rk29_vout_device *vout = priv; + + if ((p->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) || (p->count < 0)) + return -EINVAL; + + if (V4L2_MEMORY_USERPTR != p->memory) + return -EINVAL; + + + return videobuf_reqbufs(&vout->vbq, p); +} +static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p) +{ + struct rk29_vout_device *vout = priv; + + if (p->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) + return -EINVAL; + if (V4L2_MEMORY_USERPTR != p->memory) + return -EINVAL; + + vout->vbuf = *((struct rk29_vbuf *)p->m.userptr); + + return (videobuf_qbuf(&vout->vbq, p)); +} + +static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p) +{ + struct rk29_vout_device *vout = priv; + + return (videobuf_dqbuf(&vout->vbq, p, file->f_flags & O_NONBLOCK)); +} + +static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) +{ + struct rk29_vout_device *vout = priv; + + if (vout->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) + return -EINVAL; + if (i != vout->type) + return -EINVAL; + + if(lcd_controler_open(vout) < 0) + return -EINVAL; + + return videobuf_streamon(&vout->vbq); +} + +static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) +{ + struct rk29_vout_device *vout = priv; + + if (vout->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) + return -EINVAL; + if (i != vout->type) + return -EINVAL; + + if(lcd_controler_close(vout) < 0) + return -EINVAL; + return videobuf_streamoff(&vout->vbq); +} +static int vidioc_g_ctrl(struct file *file, void *priv, + struct v4l2_control *ctrl) +{ + struct rk29_vout_device *vout = priv; + + *ctrl = vout->ctrl; + + return 0; +} +static int vidioc_s_ctrl(struct file *file, void *priv, + struct v4l2_control *ctrl) +{ + struct rk29_vout_device *vout = priv; + + vout->ctrl = *ctrl; + + return 0; +} +static int vidioc_g_crop(struct file *file, void *priv, + struct v4l2_crop *crop) +{ + struct rk29_vout_device *vout = priv; + + if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) + return -EINVAL; + crop->c = vout->crop; + + return 0; +} +static int vidioc_s_crop(struct file *file, void *priv, + struct v4l2_crop *crop) +{ + struct rk29_vout_device *vout = priv; + + if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) + return -EINVAL; + + if (vout->vbq.streaming) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "vedio is running\n"); + return -EBUSY; + } + if ((crop->c.width < 0) || (crop->c.height < 0)) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop rect must be bigger than 0\n"); + return -EINVAL; + } + + if ((crop->c.width > norm_maxw()) || (crop->c.height > norm_maxh())) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop width/height must be smaller than " + "%d and %d\n", norm_maxw(), norm_maxh()); + return -EINVAL; + } + + if ((crop->c.left < 0) || (crop->c.top < 0)) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop left, top must be bigger than 0\n"); + return -EINVAL; + } + + if ((crop->c.left > norm_maxw()) || (crop->c.top > norm_maxh())) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop left, top must be smaller than %d, %d\n", + norm_maxw(), norm_maxh()); + return -EINVAL; + } + + if ((crop->c.left + crop->c.width) > norm_maxw()) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop rect must be in bound rect\n"); + return -EINVAL; + } + + if ((crop->c.top + crop->c.height) > norm_maxh()) { + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, + "The crop rect must be in bound rect\n"); + return -EINVAL; + } + + vout->crop = crop->c; + return 0; +} + +static int buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size) +{ + //struct rk29_vout_device *vout = vq->priv_data; + + *size = norm_maxw() * norm_maxh() * 2; + + if (0 == *count) + *count = 32; + + while (*size * *count > vid_limit * 1024 * 1024) + (*count)--; + + return 0; +} + +static void free_buffer(struct videobuf_queue *vq, struct videobuf_buffer *vb) +{ + //struct rk29_vout_device *vout = vq->priv_data; + + if (in_interrupt()) + BUG(); + + videobuf_dma_contig_free(vq, vb); + vb->state = VIDEOBUF_NEEDS_INIT; +} + +static int buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb, + enum v4l2_field field) +{ + struct rk29_vout_device *vout = vq->priv_data; + int rc; + + if (vout->pix.width < 48 || vout->pix.width > norm_maxw() || + vout->pix.height < 32 || vout->pix.height > norm_maxh()) + return -EINVAL; + + vb->size = vout->pix.width * vout->pix.height * 2; + if (vb->bsize < vb->size) + return -EINVAL; + + vb->width = vout->pix.width; + vb->height = vout->pix.height; + vb->field = field; + + if (VIDEOBUF_NEEDS_INIT == vb->state) { + rc = videobuf_iolock(vq, vb, NULL); + if (rc < 0) + goto fail; + } + + vb->state = VIDEOBUF_PREPARED; + + return 0; + +fail: + free_buffer(vq, vb); + return rc; +} +static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb) +{ + struct rk29_vout_device *vout = vq->priv_data; + + lcd_set_img_addr(vout->vbuf); + + vb->state = VIDEOBUF_QUEUED; +} + +static void buffer_release(struct videobuf_queue *vq, + struct videobuf_buffer *vb) +{ + free_buffer(vq, vb); +} + +static struct videobuf_queue_ops rk29_video_qops = { + .buf_setup = buffer_setup, + .buf_prepare = buffer_prepare, + .buf_queue = buffer_queue, + .buf_release = buffer_release, +}; + +static int rk29_vout_open(struct file *file) +{ + struct rk29_vout_device *vout = video_drvdata(file); + + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "Entering %s\n", __func__); + + if (vout == NULL) + return -ENODEV; + + mutex_lock(&vout->mutex); + if (vout->opened) { + mutex_unlock(&vout->mutex); + return -EBUSY; + } + vout->opened += 1; + mutex_unlock(&vout->mutex); + + file->private_data = vout; + + vout->type = V4L2_BUF_TYPE_VIDEO_OUTPUT; + + spin_lock_init(&vout->lock); + + videobuf_queue_dma_contig_init(&vout->vbq, &rk29_video_qops, + vout->vbq.dev, &vout->lock, vout->type, V4L2_FIELD_NONE, + sizeof(struct videobuf_buffer), vout); + + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "Exiting %s\n", __func__); + + return 0; +} +static int rk29_vout_release(struct file *file) +{ + struct videobuf_queue *q; + struct rk29_vout_device *vout = file->private_data; + + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "Entering %s\n", __func__); + + if (!vout) + return 0; + + q = &vout->vbq; + videobuf_stop(q); + + mutex_lock(&vout->mutex); + vout->opened -= 1; + mutex_unlock(&vout->mutex); + file->private_data = NULL; + v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev, "Exiting %s\n", __func__); + + return 0; +} + +static const struct v4l2_file_operations rk29_vout_fops = { + .owner = THIS_MODULE, + .open = rk29_vout_open, + .release = rk29_vout_release, + .ioctl = video_ioctl2, +}; + +static const struct v4l2_ioctl_ops rk29_ioctl_ops = { + .vidioc_g_fmt_vid_out = vidioc_g_fmt_vid_out, + .vidioc_try_fmt_vid_out = vidioc_try_fmt_vid_out, + .vidioc_s_fmt_vid_out = vidioc_s_fmt_vid_out, + .vidioc_reqbufs = vidioc_reqbufs, + .vidioc_qbuf = vidioc_qbuf, + .vidioc_dqbuf = vidioc_dqbuf, + .vidioc_g_ctrl = vidioc_g_ctrl, + .vidioc_s_ctrl = vidioc_s_ctrl, + .vidioc_g_crop = vidioc_g_crop, + .vidioc_s_crop = vidioc_s_crop, + .vidioc_streamon = vidioc_streamon, + .vidioc_streamoff = vidioc_streamoff, +}; + +static int rk29_vout_create_video_devices(struct platform_device *pdev) +{ + int ret = 0, k; + struct rk29_vout_device *vout; + struct video_device *vfd = NULL; + struct v4l2_device *v4l2_dev = platform_get_drvdata(pdev); + struct rk29_vid_device *vid_dev = container_of(v4l2_dev, + struct rk29_vid_device, v4l2_dev); + + for (k = 0; k < VOUT_NR; k++) { + + vout = kzalloc(sizeof(struct rk29_vout_device), GFP_KERNEL); + if (!vout) { + dev_err(&pdev->dev, ": could not allocate memory\n"); + return -ENOMEM; + } + + vout->vid = k; + vid_dev->vouts[k] = vout; + vout->vid_dev = vid_dev; + + vout->pix.width = VOUT_WIDTH; + vout->pix.height = VOUT_HEIGHT; + + vout->pix.pixelformat = formats[0].fourcc; + vout->pix.field = V4L2_FIELD_NONE; + vout->pix.bytesperline = (vout->pix.width * formats[0].depth) >> 3; + vout->pix.sizeimage = vout->pix.height * vout->pix.bytesperline; + vout->pix.colorspace = V4L2_COLORSPACE_JPEG; + vout->pix.priv = 0; + + vfd = vout->vfd = video_device_alloc(); + if (!vfd){ + dev_err(&pdev->dev, "could not allocate video device struct\n"); + ret = -ENOMEM; + goto error0; + } + vfd->release = video_device_release; + vfd->ioctl_ops = &rk29_ioctl_ops; + strlcpy(vfd->name, VOUT_NAME, sizeof(vfd->name)); + vfd->fops = &rk29_vout_fops; + vfd->v4l2_dev = &vout->vid_dev->v4l2_dev; + vfd->minor = -1; + mutex_init(&vout->mutex); + + if (video_register_device(vfd, VFL_TYPE_GRABBER, k + 1) < 0) { + dev_err(&pdev->dev, ": Could not register " + "Video for Linux device\n"); + vfd->minor = -1; + ret = -ENODEV; + goto error1; + } + video_set_drvdata(vfd, vout); + goto success; +error1: + video_device_release(vfd); +error0: + kfree(vout); + return ret; + +success: + dev_info(&pdev->dev, ": registered and initialized" + " video device %d\n", vfd->minor); + } + + return 0; +} + +static int __init rk29_vout_probe(struct platform_device *pdev) +{ + struct rk29_vid_device *vid_dev = NULL; + int ret = 0; + + vid_dev = kzalloc(sizeof(struct rk29_vid_device), GFP_KERNEL); + if (!vid_dev) + return -ENOMEM; + + if ((ret = v4l2_device_register(&pdev->dev, &vid_dev->v4l2_dev)) < 0){ + dev_err(&pdev->dev, "v4l2_device_register failed\n"); + goto probe_err0; + } + + if((ret = rk29_vout_create_video_devices(pdev)) < 0) + goto probe_err1; + + return 0; + +probe_err1: + v4l2_device_unregister(&vid_dev->v4l2_dev); +probe_err0: + kfree(vid_dev); + return ret; +} +static int rk29_vout_remove(struct platform_device *pdev) +{ + int k; + struct video_device *vfd = NULL; + struct rk29_vout_device *vout; + struct v4l2_device *v4l2_dev = platform_get_drvdata(pdev); + struct rk29_vid_device *vid_dev = container_of(v4l2_dev, struct + rk29_vid_device, v4l2_dev); + + v4l2_device_unregister(v4l2_dev); + for (k = 0; k < VOUT_NR; k++) { + vout = vid_dev->vouts[k]; + if (!vout) + break; + vfd = vout->vfd; + if (vfd) + video_device_release(vfd); + } + + kfree(vid_dev); + + return 0; +} + +static struct platform_driver rk29_vout_driver = { + .driver = { + .name = VOUT_NAME, + }, + .probe = rk29_vout_probe, + .remove = rk29_vout_remove, +}; + +static int __init rk29_vout_init(void) +{ + if (platform_driver_register(&rk29_vout_driver) != 0) { + printk(KERN_ERR VOUT_NAME ":Could not register Video driver\n"); + return -EINVAL; + } + return 0; +} + +static void rk29_vout_exit(void) +{ + platform_driver_unregister(&rk29_vout_driver); +} + +module_init(rk29_vout_init); +module_exit(rk29_vout_exit); +