All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
@ 2018-03-08 18:21 Matt Ranostay
  2018-03-08 18:21 ` [PATCH v5 1/2] media: dt-bindings: Add bindings for panasonic,amg88xx Matt Ranostay
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Matt Ranostay @ 2018-03-08 18:21 UTC (permalink / raw)
  To: linux-media; +Cc: Matt Ranostay

Add support for video-i2c polling driver

Changes from v1:
* Switch to SPDX tags versus GPLv2 license text
* Remove unneeded zeroing of data structures
* Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function

Changes from v2:
* Add missing linux/kthread.h include that broke x86_64 build

Changes from v3:
* Add devicetree binding documents
* snprintf check added
* switched to per chip support based on devicetree or i2c client id
* add VB2_DMABUF to io_modes
* added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id

Changes from v4:
* convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning

Matt Ranostay (2):
  media: dt-bindings: Add bindings for panasonic,amg88xx
  media: video-i2c: add video-i2c driver

 .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
 MAINTAINERS                                        |   6 +
 drivers/media/i2c/Kconfig                          |   9 +
 drivers/media/i2c/Makefile                         |   1 +
 drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
 5 files changed, 593 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
 create mode 100644 drivers/media/i2c/video-i2c.c

-- 
2.14.1

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v5 1/2] media: dt-bindings: Add bindings for panasonic,amg88xx
  2018-03-08 18:21 [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Matt Ranostay
@ 2018-03-08 18:21 ` Matt Ranostay
  2018-03-08 18:21 ` [PATCH v5 2/2] media: video-i2c: add video-i2c driver Matt Ranostay
  2018-03-09 12:45 ` [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Hans Verkuil
  2 siblings, 0 replies; 10+ messages in thread
From: Matt Ranostay @ 2018-03-08 18:21 UTC (permalink / raw)
  To: linux-media; +Cc: Matt Ranostay, devicetree

Define the device tree bindings for the panasonic,amg88xx i2c
video driver.

Cc: devicetree@vger.kernel.org
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
---
 .../bindings/media/i2c/panasonic,amg88xx.txt          | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt

diff --git a/Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt b/Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
new file mode 100644
index 000000000000..4a3181a3dd7e
--- /dev/null
+++ b/Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
@@ -0,0 +1,19 @@
+* Panasonic AMG88xx
+
+The Panasonic family of AMG88xx Grid-Eye sensors allow recording
+8x8 10Hz video which consists of thermal datapoints
+
+Required Properties:
+ - compatible : Must be "panasonic,amg88xx"
+ - reg : i2c address of the device
+
+Example:
+
+	i2c0@1c22000 {
+		...
+		amg88xx@69 {
+			compatible = "panasonic,amg88xx";
+			reg = <0x69>;
+		};
+		...
+	};
-- 
2.14.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v5 2/2] media: video-i2c: add video-i2c driver
  2018-03-08 18:21 [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Matt Ranostay
  2018-03-08 18:21 ` [PATCH v5 1/2] media: dt-bindings: Add bindings for panasonic,amg88xx Matt Ranostay
@ 2018-03-08 18:21 ` Matt Ranostay
  2018-03-09 12:45 ` [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Hans Verkuil
  2 siblings, 0 replies; 10+ messages in thread
From: Matt Ranostay @ 2018-03-08 18:21 UTC (permalink / raw)
  To: linux-media; +Cc: Matt Ranostay

There are several thermal sensors that only have a low-speed bus
interface but output valid video data. This patchset enables support
for the AMG88xx "Grid-Eye" sensor family.

Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
---
 MAINTAINERS                   |   6 +
 drivers/media/i2c/Kconfig     |   9 +
 drivers/media/i2c/Makefile    |   1 +
 drivers/media/i2c/video-i2c.c | 558 ++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 574 insertions(+)
 create mode 100644 drivers/media/i2c/video-i2c.c

diff --git a/MAINTAINERS b/MAINTAINERS
index e03a130902cd..4d794e78a5ce 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -14876,6 +14876,12 @@ L:	linux-media@vger.kernel.org
 S:	Maintained
 F:	drivers/media/platform/video-mux.c
 
+VIDEO I2C POLLING DRIVER
+M:	Matt Ranostay <matt.ranostay@konsulko.com>
+L:	linux-media@vger.kernel.org
+S:	Maintained
+F:	drivers/media/i2c/video-i2c.c
+
 VIDEOBUF2 FRAMEWORK
 M:	Pawel Osciak <pawel@osciak.com>
 M:	Marek Szyprowski <m.szyprowski@samsung.com>
diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig
index d7bba0e3f30e..22f7c1e40c4e 100644
--- a/drivers/media/i2c/Kconfig
+++ b/drivers/media/i2c/Kconfig
@@ -963,6 +963,15 @@ config VIDEO_M52790
 
 	 To compile this driver as a module, choose M here: the
 	 module will be called m52790.
+
+config VIDEO_I2C
+	tristate "I2C transport video support"
+	depends on VIDEO_V4L2 && I2C
+	select VIDEOBUF2_VMALLOC
+	---help---
+	  Enable the I2C transport video support which supports the
+	  following:
+	   * Panasonic AMG88xx Grid-Eye Sensors
 endmenu
 
 menu "Sensors used on soc_camera driver"
diff --git a/drivers/media/i2c/Makefile b/drivers/media/i2c/Makefile
index cc30178e3347..6cc5f0f7e4fc 100644
--- a/drivers/media/i2c/Makefile
+++ b/drivers/media/i2c/Makefile
@@ -95,6 +95,7 @@ obj-$(CONFIG_VIDEO_LM3646)	+= lm3646.o
 obj-$(CONFIG_VIDEO_SMIAPP_PLL)	+= smiapp-pll.o
 obj-$(CONFIG_VIDEO_AK881X)		+= ak881x.o
 obj-$(CONFIG_VIDEO_IR_I2C)  += ir-kbd-i2c.o
+obj-$(CONFIG_VIDEO_I2C)		+= video-i2c.o
 obj-$(CONFIG_VIDEO_ML86V7667)	+= ml86v7667.o
 obj-$(CONFIG_VIDEO_OV2659)	+= ov2659.o
 obj-$(CONFIG_VIDEO_TC358743)	+= tc358743.o
diff --git a/drivers/media/i2c/video-i2c.c b/drivers/media/i2c/video-i2c.c
new file mode 100644
index 000000000000..a30f758f506b
--- /dev/null
+++ b/drivers/media/i2c/video-i2c.c
@@ -0,0 +1,558 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * video-i2c.c - Support for I2C transport video devices
+ *
+ * Copyright (C) 2018 Matt Ranostay <matt.ranostay@konsulko.com>
+ *
+ * Supported:
+ * - Panasonic AMG88xx Grid-Eye Sensors
+ */
+
+#include <linux/delay.h>
+#include <linux/freezer.h>
+#include <linux/kthread.h>
+#include <linux/i2c.h>
+#include <linux/list.h>
+#include <linux/module.h>
+#include <linux/mutex.h>
+#include <linux/of_device.h>
+#include <linux/sched.h>
+#include <linux/slab.h>
+#include <linux/videodev2.h>
+#include <media/v4l2-common.h>
+#include <media/v4l2-device.h>
+#include <media/v4l2-event.h>
+#include <media/v4l2-fh.h>
+#include <media/v4l2-ioctl.h>
+#include <media/videobuf2-v4l2.h>
+#include <media/videobuf2-vmalloc.h>
+
+#define VIDEO_I2C_DRIVER	"video-i2c"
+#define MAX_BUFFER_SIZE		128
+
+struct video_i2c_chip;
+
+struct video_i2c_buffer {
+	struct vb2_v4l2_buffer vb;
+	struct list_head list;
+};
+
+struct video_i2c_data {
+	struct i2c_client *client;
+	const struct video_i2c_chip *chip;
+	struct mutex lock;
+	spinlock_t slock;
+	struct mutex queue_lock;
+
+	struct v4l2_device v4l2_dev;
+	struct video_device vdev;
+	struct vb2_queue vb_vidq;
+
+	struct task_struct *kthread_vid_cap;
+	struct list_head vid_cap_active;
+};
+
+static struct v4l2_fmtdesc amg88xx_format = {
+	.pixelformat = V4L2_PIX_FMT_Y12,
+};
+
+static struct v4l2_frmsize_discrete amg88xx_size = {
+	.width = 8,
+	.height = 8,
+};
+
+struct video_i2c_chip {
+	/* video dimensions */
+	const struct v4l2_fmtdesc *format;
+	const struct v4l2_frmsize_discrete *size;
+
+	/* max frames per second */
+	unsigned int max_fps;
+
+	/* pixel buffer size */
+	unsigned int buffer_size;
+
+	/* pixel size in bits */
+	unsigned int bpp;
+
+	/* xfer function */
+	int (*xfer)(struct video_i2c_data *data, char *buf);
+};
+
+static int amg88xx_xfer(struct video_i2c_data *data, char *buf)
+{
+	struct i2c_client *client = data->client;
+	struct i2c_msg msg[2];
+	u8 reg = 0x80;
+	int ret;
+
+	msg[0].addr = client->addr;
+	msg[0].flags = 0;
+	msg[0].len = 1;
+	msg[0].buf  = (char *) &reg;
+
+	msg[1].addr = client->addr;
+	msg[1].flags = I2C_M_RD;
+	msg[1].len = data->chip->buffer_size;
+	msg[1].buf = (char *) buf;
+
+	ret = i2c_transfer(client->adapter, msg, 2);
+
+	return (ret == 2) ? 0 : -EIO;
+}
+
+#define AMG88XX		0
+
+static const struct video_i2c_chip video_i2c_chip[] = {
+	[AMG88XX] = {
+		.size		= &amg88xx_size,
+		.format		= &amg88xx_format,
+		.max_fps	= 10,
+		.buffer_size	= 128,
+		.bpp		= 16,
+		.xfer		= &amg88xx_xfer,
+	},
+};
+
+static const struct v4l2_file_operations video_i2c_fops = {
+	.owner		= THIS_MODULE,
+	.open		= v4l2_fh_open,
+	.release	= vb2_fop_release,
+	.poll		= vb2_fop_poll,
+	.read		= vb2_fop_read,
+	.mmap		= vb2_fop_mmap,
+	.unlocked_ioctl = video_ioctl2,
+};
+
+static int queue_setup(struct vb2_queue *vq,
+		       unsigned int *nbuffers, unsigned int *nplanes,
+		       unsigned int sizes[], struct device *alloc_devs[])
+{
+	struct video_i2c_data *data = vb2_get_drv_priv(vq);
+	unsigned int size = data->chip->buffer_size;
+
+	if (vq->num_buffers + *nbuffers < 2)
+		*nbuffers = 2;
+
+	if (*nplanes)
+		return sizes[0] < size ? -EINVAL : 0;
+
+	*nplanes = 1;
+	sizes[0] = size;
+
+	return 0;
+}
+
+static int buffer_prepare(struct vb2_buffer *vb)
+{
+	struct video_i2c_data *data = vb2_get_drv_priv(vb->vb2_queue);
+	unsigned int size = data->chip->buffer_size;
+
+	if (vb2_plane_size(vb, 0) < size)
+		return -EINVAL;
+
+	vb2_set_plane_payload(vb, 0, size);
+
+	return 0;
+}
+
+static void buffer_queue(struct vb2_buffer *vb)
+{
+	struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
+	struct video_i2c_data *data = vb2_get_drv_priv(vb->vb2_queue);
+	struct video_i2c_buffer *buf =
+			container_of(vbuf, struct video_i2c_buffer, vb);
+
+	spin_lock(&data->slock);
+	list_add_tail(&buf->list, &data->vid_cap_active);
+	spin_unlock(&data->slock);
+}
+
+static int video_i2c_thread_vid_cap(void *priv)
+{
+	struct video_i2c_data *data = priv;
+
+	set_freezable();
+
+	do {
+		unsigned long start_jiffies = jiffies;
+		unsigned int delay = msecs_to_jiffies(1000 / data->chip->max_fps);
+		struct video_i2c_buffer *vid_cap_buf = NULL;
+		int schedule_delay;
+
+		try_to_freeze();
+
+		spin_lock(&data->slock);
+
+		if (!list_empty(&data->vid_cap_active)) {
+			vid_cap_buf = list_entry(data->vid_cap_active.next,
+						 struct video_i2c_buffer, list);
+			list_del(&vid_cap_buf->list);
+		}
+
+		spin_unlock(&data->slock);
+
+		if (vid_cap_buf) {
+			struct vb2_buffer *vb2_buf = &vid_cap_buf->vb.vb2_buf;
+			void *vbuf = vb2_plane_vaddr(vb2_buf, 0);
+			int ret = data->chip->xfer(data, vbuf);
+
+			vb2_buf->timestamp = ktime_get_ns();
+			vb2_buffer_done(vb2_buf, ret ?
+					VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
+		}
+
+		schedule_delay = delay - (jiffies - start_jiffies);
+
+		if (time_after(jiffies, start_jiffies + delay))
+			schedule_delay = delay;
+
+		schedule_timeout_interruptible(schedule_delay);
+	} while (!kthread_should_stop());
+
+	return 0;
+}
+
+static int start_streaming(struct vb2_queue *vq, unsigned int count)
+{
+	struct video_i2c_data *data = vb2_get_drv_priv(vq);
+	struct video_i2c_buffer *buf, *tmp;
+
+	if (data->kthread_vid_cap)
+		return 0;
+
+	data->kthread_vid_cap = kthread_run(video_i2c_thread_vid_cap, data,
+					    "%s-vid-cap", data->v4l2_dev.name);
+	if (!IS_ERR(data->kthread_vid_cap))
+		return 0;
+
+	spin_lock(&data->slock);
+
+	list_for_each_entry_safe(buf, tmp, &data->vid_cap_active, list) {
+		list_del(&buf->list);
+		vb2_buffer_done(&buf->vb.vb2_buf,
+				VB2_BUF_STATE_QUEUED);
+	}
+
+	spin_unlock(&data->slock);
+
+	return PTR_ERR(data->kthread_vid_cap);
+}
+
+static void stop_streaming(struct vb2_queue *vq)
+{
+	struct video_i2c_data *data = vb2_get_drv_priv(vq);
+
+	if (data->kthread_vid_cap == NULL)
+		return;
+
+	kthread_stop(data->kthread_vid_cap);
+
+	spin_lock(&data->slock);
+
+	while (!list_empty(&data->vid_cap_active)) {
+		struct video_i2c_buffer *buf;
+
+		buf = list_entry(data->vid_cap_active.next,
+				 struct video_i2c_buffer, list);
+		list_del(&buf->list);
+		vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
+	}
+	spin_unlock(&data->slock);
+
+	data->kthread_vid_cap = NULL;
+}
+
+static struct vb2_ops video_i2c_video_qops = {
+	.queue_setup		= queue_setup,
+	.buf_prepare		= buffer_prepare,
+	.buf_queue		= buffer_queue,
+	.start_streaming	= start_streaming,
+	.stop_streaming		= stop_streaming,
+	.wait_prepare		= vb2_ops_wait_prepare,
+	.wait_finish		= vb2_ops_wait_finish,
+};
+
+static int video_i2c_querycap(struct file *file, void  *priv,
+				struct v4l2_capability *vcap)
+{
+	struct video_i2c_data *data = video_drvdata(file);
+	struct i2c_client *client = data->client;
+
+	strlcpy(vcap->driver, data->v4l2_dev.name, sizeof(vcap->driver));
+	sprintf(vcap->card, "I2C %d-%d Transport Video",
+					     client->adapter->nr, client->addr);
+
+	sprintf(vcap->bus_info, "I2C:%d-%d", client->adapter->nr, client->addr);
+	return 0;
+}
+
+static int video_i2c_g_input(struct file *file, void *fh, unsigned int *inp)
+{
+	*inp = 0;
+
+	return 0;
+}
+
+static int video_i2c_s_input(struct file *file, void *fh, unsigned int inp)
+{
+	return (inp > 0) ? -EINVAL : 0;
+}
+
+static int video_i2c_enum_input(struct file *file, void *fh,
+				  struct v4l2_input *vin)
+{
+	if (vin->index > 0)
+		return -EINVAL;
+
+	strlcpy(vin->name, "Camera", sizeof(vin->name));
+
+	vin->type = V4L2_INPUT_TYPE_CAMERA;
+
+	return 0;
+}
+
+static int video_i2c_enum_fmt_vid_cap(struct file *file, void *fh,
+					struct v4l2_fmtdesc *fmt)
+{
+	struct video_i2c_data *data = video_drvdata(file);
+	enum v4l2_buf_type type = fmt->type;
+
+	if (fmt->index > 0)
+		return -EINVAL;
+
+	*fmt = *data->chip->format;
+	fmt->type = type;
+
+	return 0;
+}
+
+static int video_i2c_enum_framesizes(struct file *file, void *fh,
+				       struct v4l2_frmsizeenum *fsize)
+{
+	const struct video_i2c_data *data = video_drvdata(file);
+	const struct v4l2_frmsize_discrete *size = data->chip->size;
+
+	/* currently only one frame size is allowed */
+	if (fsize->index > 0)
+		return -EINVAL;
+
+	if (fsize->pixel_format != data->chip->format->pixelformat)
+		return -EINVAL;
+
+	fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE;
+	fsize->discrete.width = size->width;
+	fsize->discrete.height = size->height;
+
+	return 0;
+}
+
+static int video_i2c_enum_frameintervals(struct file *file, void *priv,
+					   struct v4l2_frmivalenum *fe)
+{
+	const struct video_i2c_data *data = video_drvdata(file);
+	const struct v4l2_frmsize_discrete *size = data->chip->size;
+
+	if (fe->index > 0)
+		return -EINVAL;
+
+	if (fe->width != size->width || fe->height != size->height)
+		return -EINVAL;
+
+	fe->type = V4L2_FRMIVAL_TYPE_DISCRETE;
+	fe->discrete.numerator = 1;
+	fe->discrete.denominator = data->chip->max_fps;
+
+	return 0;
+}
+
+static int video_i2c_try_fmt_vid_cap(struct file *file, void *fh,
+				       struct v4l2_format *fmt)
+{
+	const struct video_i2c_data *data = video_drvdata(file);
+	const struct v4l2_frmsize_discrete *size = data->chip->size;
+	struct v4l2_pix_format *pix = &fmt->fmt.pix;
+	unsigned int bpp = data->chip->bpp / 8;
+
+	pix->width = size->width;
+	pix->height = size->height;
+	pix->pixelformat = data->chip->format->pixelformat;
+	pix->field = V4L2_FIELD_NONE;
+	pix->bytesperline = pix->width * bpp;
+	pix->sizeimage = pix->width * pix->height * bpp;
+	pix->colorspace = V4L2_COLORSPACE_RAW;
+
+	return 0;
+}
+
+static int video_i2c_s_fmt_vid_cap(struct file *file, void *fh,
+				     struct v4l2_format *fmt)
+{
+	struct video_i2c_data *data = video_drvdata(file);
+
+	if (vb2_is_busy(&data->vb_vidq))
+		return -EBUSY;
+
+	return video_i2c_try_fmt_vid_cap(file, fh, fmt);
+}
+
+static int video_i2c_g_parm(struct file *filp, void *priv,
+			      struct v4l2_streamparm *parm)
+{
+	struct video_i2c_data *data = video_drvdata(filp);
+
+	if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
+		return -EINVAL;
+
+	parm->parm.capture.readbuffers = 1;
+	parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
+	parm->parm.capture.timeperframe.numerator = 1;
+	parm->parm.capture.timeperframe.denominator = data->chip->max_fps;
+
+	return 0;
+}
+
+static const struct v4l2_ioctl_ops video_i2c_ioctl_ops = {
+	.vidioc_querycap		= video_i2c_querycap,
+	.vidioc_g_input			= video_i2c_g_input,
+	.vidioc_s_input			= video_i2c_s_input,
+	.vidioc_enum_input		= video_i2c_enum_input,
+	.vidioc_enum_fmt_vid_cap	= video_i2c_enum_fmt_vid_cap,
+	.vidioc_enum_framesizes		= video_i2c_enum_framesizes,
+	.vidioc_enum_frameintervals	= video_i2c_enum_frameintervals,
+	.vidioc_g_fmt_vid_cap		= video_i2c_try_fmt_vid_cap,
+	.vidioc_s_fmt_vid_cap		= video_i2c_s_fmt_vid_cap,
+	.vidioc_g_parm			= video_i2c_g_parm,
+	.vidioc_s_parm			= video_i2c_g_parm,
+	.vidioc_try_fmt_vid_cap		= video_i2c_try_fmt_vid_cap,
+	.vidioc_reqbufs			= vb2_ioctl_reqbufs,
+	.vidioc_create_bufs		= vb2_ioctl_create_bufs,
+	.vidioc_prepare_buf		= vb2_ioctl_prepare_buf,
+	.vidioc_querybuf		= vb2_ioctl_querybuf,
+	.vidioc_qbuf			= vb2_ioctl_qbuf,
+	.vidioc_dqbuf			= vb2_ioctl_dqbuf,
+	.vidioc_streamon		= vb2_ioctl_streamon,
+	.vidioc_streamoff		= vb2_ioctl_streamoff,
+};
+
+static void video_i2c_release(struct video_device *vdev)
+{
+	kfree(video_get_drvdata(vdev));
+}
+
+static int video_i2c_probe(struct i2c_client *client,
+			     const struct i2c_device_id *id)
+{
+	struct video_i2c_data *data;
+	struct v4l2_device *v4l2_dev;
+	struct vb2_queue *queue;
+	int chip_id, ret;
+
+	data = kzalloc(sizeof(*data), GFP_KERNEL);
+	if (!data)
+		return -ENOMEM;
+
+	if (client->dev.of_node)
+		chip_id = (long) of_device_get_match_data(&client->dev);
+	else
+		chip_id = id->driver_data;
+
+	data->chip = &video_i2c_chip[chip_id];
+	data->client = client;
+	v4l2_dev = &data->v4l2_dev;
+	strlcpy(v4l2_dev->name, VIDEO_I2C_DRIVER, sizeof(v4l2_dev->name));
+
+	ret = v4l2_device_register(&client->dev, v4l2_dev);
+	if (ret < 0)
+		goto error_free_device;
+
+	mutex_init(&data->lock);
+	mutex_init(&data->queue_lock);
+
+	queue = &data->vb_vidq;
+	queue->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
+	queue->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR | VB2_READ;
+	queue->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
+	queue->drv_priv = data;
+	queue->buf_struct_size = sizeof(struct video_i2c_buffer);
+	queue->min_buffers_needed = 1;
+	queue->ops = &video_i2c_video_qops;
+	queue->mem_ops = &vb2_vmalloc_memops;
+
+	ret = vb2_queue_init(queue);
+	if (ret < 0)
+		goto error_unregister_device;
+
+	data->vdev.queue = queue;
+	data->vdev.queue->lock = &data->queue_lock;
+
+	snprintf(data->vdev.name, sizeof(data->vdev.name),
+				 "I2C %d-%d Transport Video",
+				 client->adapter->nr, client->addr);
+
+	data->vdev.v4l2_dev = v4l2_dev;
+	data->vdev.fops = &video_i2c_fops;
+	data->vdev.lock = &data->lock;
+	data->vdev.ioctl_ops = &video_i2c_ioctl_ops;
+	data->vdev.release = video_i2c_release;
+	data->vdev.device_caps = V4L2_CAP_VIDEO_CAPTURE |
+				 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
+
+	spin_lock_init(&data->slock);
+	INIT_LIST_HEAD(&data->vid_cap_active);
+
+	video_set_drvdata(&data->vdev, data);
+	i2c_set_clientdata(client, data);
+
+	ret = video_register_device(&data->vdev, VFL_TYPE_GRABBER, -1);
+	if (ret < 0)
+		goto error_unregister_device;
+
+	return 0;
+
+error_unregister_device:
+	v4l2_device_unregister(v4l2_dev);
+
+error_free_device:
+	kfree(data);
+
+	return ret;
+}
+
+static int video_i2c_remove(struct i2c_client *client)
+{
+	struct video_i2c_data *data = i2c_get_clientdata(client);
+
+	video_unregister_device(&data->vdev);
+	v4l2_device_unregister(&data->v4l2_dev);
+
+	return 0;
+}
+
+static const struct i2c_device_id video_i2c_id_table[] = {
+	{ "amg88xx", AMG88XX },
+	{}
+};
+MODULE_DEVICE_TABLE(i2c, video_i2c_id_table);
+
+static const struct of_device_id video_i2c_of_match[] = {
+	{ .compatible = "panasonic,amg88xx", .data = (void *) AMG88XX },
+	{}
+};
+MODULE_DEVICE_TABLE(of, video_i2c_of_match);
+
+static struct i2c_driver video_i2c_driver = {
+	.driver = {
+		.name	= VIDEO_I2C_DRIVER,
+		.of_match_table = of_match_ptr(video_i2c_of_match),
+	},
+	.probe		= video_i2c_probe,
+	.remove		= video_i2c_remove,
+	.id_table	= video_i2c_id_table,
+};
+
+module_i2c_driver(video_i2c_driver);
+
+MODULE_AUTHOR("Matt Ranostay <matt.ranostay@konsulko.com>");
+MODULE_DESCRIPTION("I2C transport video support");
+MODULE_LICENSE("GPL");
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-08 18:21 [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Matt Ranostay
  2018-03-08 18:21 ` [PATCH v5 1/2] media: dt-bindings: Add bindings for panasonic,amg88xx Matt Ranostay
  2018-03-08 18:21 ` [PATCH v5 2/2] media: video-i2c: add video-i2c driver Matt Ranostay
@ 2018-03-09 12:45 ` Hans Verkuil
  2018-03-09 18:26   ` Matt Ranostay
  2 siblings, 1 reply; 10+ messages in thread
From: Hans Verkuil @ 2018-03-09 12:45 UTC (permalink / raw)
  To: Matt Ranostay, linux-media

Hi Matt,

This is looking good. One request before I merge: please run the
'v4l2-compliance -s -f' utility and post the result here.

I don't think I've asked you to do that before (or if I did, I couldn't
find it in my mail archive).

It should run without failures.

Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/

./bootstrap.sh; ./configure; make; sudo make install

Thanks!

	Hans

On 08/03/18 19:21, Matt Ranostay wrote:
> Add support for video-i2c polling driver
> 
> Changes from v1:
> * Switch to SPDX tags versus GPLv2 license text
> * Remove unneeded zeroing of data structures
> * Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function
> 
> Changes from v2:
> * Add missing linux/kthread.h include that broke x86_64 build
> 
> Changes from v3:
> * Add devicetree binding documents
> * snprintf check added
> * switched to per chip support based on devicetree or i2c client id
> * add VB2_DMABUF to io_modes
> * added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id
> 
> Changes from v4:
> * convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning
> 
> Matt Ranostay (2):
>   media: dt-bindings: Add bindings for panasonic,amg88xx
>   media: video-i2c: add video-i2c driver
> 
>  .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
>  MAINTAINERS                                        |   6 +
>  drivers/media/i2c/Kconfig                          |   9 +
>  drivers/media/i2c/Makefile                         |   1 +
>  drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
>  5 files changed, 593 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
>  create mode 100644 drivers/media/i2c/video-i2c.c
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-09 12:45 ` [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Hans Verkuil
@ 2018-03-09 18:26   ` Matt Ranostay
  2018-03-16  2:47     ` Matt Ranostay
  0 siblings, 1 reply; 10+ messages in thread
From: Matt Ranostay @ 2018-03-09 18:26 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: linux-media

On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
> Hi Matt,
>
> This is looking good. One request before I merge: please run the
> 'v4l2-compliance -s -f' utility and post the result here.
>
> I don't think I've asked you to do that before (or if I did, I couldn't
> find it in my mail archive).
>
> It should run without failures.
>
> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>
> ./bootstrap.sh; ./configure; make; sudo make install

Heh so not exactly no failures. Suspect a lot of these are due to the
weird small 8x8 pixel input, and the fact it doesn't
support modes a typical video capture device would.

v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c

Compliance test for device /dev/video0:

Driver Info:
Driver name      : video-i2c
Card type        : I2C 2-105 Transport Video
Bus info         : I2C:2-105
Driver version   : 4.14.11
Capabilities     : 0x85200001
Video Capture
Read/Write
Streaming
Extended Pix Format
Device Capabilities
Device Caps      : 0x05200001
Video Capture
Read/Write
Streaming
Extended Pix Format

Required ioctls:
test VIDIOC_QUERYCAP: OK

Allow for multiple opens:
test second /dev/video0 open: OK
test VIDIOC_QUERYCAP: OK
test VIDIOC_G/S_PRIORITY: OK
test for unlimited opens: OK

Debug ioctls:
test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
test VIDIOC_LOG_STATUS: OK (Not Supported)

Input ioctls:
test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
test VIDIOC_ENUMAUDIO: OK (Not Supported)
test VIDIOC_G/S/ENUMINPUT: OK
test VIDIOC_G/S_AUDIO: OK (Not Supported)
Inputs: 1 Audio Inputs: 0 Tuners: 0

Output ioctls:
test VIDIOC_G/S_MODULATOR: OK (Not Supported)
test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
test VIDIOC_ENUMAUDOUT: OK (Not Supported)
test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
test VIDIOC_G/S_AUDOUT: OK (Not Supported)
Outputs: 0 Audio Outputs: 0 Modulators: 0

Input/Output configuration ioctls:
test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
test VIDIOC_G/S_EDID: OK (Not Supported)

Control ioctls (Input 0):
test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
test VIDIOC_QUERYCTRL: OK (Not Supported)
test VIDIOC_G/S_CTRL: OK (Not Supported)
test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
Standard Controls: 0 Private Controls: 0

Format ioctls (Input 0):
test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
test VIDIOC_G/S_PARM: OK
test VIDIOC_G_FBUF: OK (Not Supported)
test VIDIOC_G_FMT: OK
test VIDIOC_TRY_FMT: OK
test VIDIOC_S_FMT: OK
test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
test Cropping: OK (Not Supported)
test Composing: OK (Not Supported)
test Scaling: OK (Not Supported)

Codec ioctls (Input 0):
test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
test VIDIOC_G_ENC_INDEX: OK (Not Supported)
test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)

Buffer ioctls (Input 0):
test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
test VIDIOC_EXPBUF: OK (Not Supported)

Test input 0:

Streaming ioctls:
test read/write: OK
fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY
fail: v4l2-test-buffers.cpp(658): buf.check(q, last_seq)
fail: v4l2-test-buffers.cpp(928): captureBufs(node, q, m2m_q,
frame_count, false)
test MMAP: FAIL
fail: v4l2-test-buffers.cpp(1028): can_stream && ret != EINVAL
test USERPTR: FAIL
test DMABUF: Cannot test, specify --expbuf-device

Stream using all formats:
test MMAP for Format Y12 , Frame Size 8x8@10.00 Hz:
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field None: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Top: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Bottom: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Interlaced: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Sequential Top-Bottom: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Sequential Bottom-Top: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Alternating: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Interlaced Top-Bottom: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 0, Field Interlaced Bottom-Top: FAIL
fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
Stride 80, Field None: FAIL
Total: 64, Succeeded: 44, Failed: 20, Warnings: 0


>
> Thanks!
>
>         Hans
>
> On 08/03/18 19:21, Matt Ranostay wrote:
>> Add support for video-i2c polling driver
>>
>> Changes from v1:
>> * Switch to SPDX tags versus GPLv2 license text
>> * Remove unneeded zeroing of data structures
>> * Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function
>>
>> Changes from v2:
>> * Add missing linux/kthread.h include that broke x86_64 build
>>
>> Changes from v3:
>> * Add devicetree binding documents
>> * snprintf check added
>> * switched to per chip support based on devicetree or i2c client id
>> * add VB2_DMABUF to io_modes
>> * added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id
>>
>> Changes from v4:
>> * convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning
>>
>> Matt Ranostay (2):
>>   media: dt-bindings: Add bindings for panasonic,amg88xx
>>   media: video-i2c: add video-i2c driver
>>
>>  .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
>>  MAINTAINERS                                        |   6 +
>>  drivers/media/i2c/Kconfig                          |   9 +
>>  drivers/media/i2c/Makefile                         |   1 +
>>  drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
>>  5 files changed, 593 insertions(+)
>>  create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
>>  create mode 100644 drivers/media/i2c/video-i2c.c
>>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-09 18:26   ` Matt Ranostay
@ 2018-03-16  2:47     ` Matt Ranostay
  2018-03-19  9:31       ` Hans Verkuil
  0 siblings, 1 reply; 10+ messages in thread
From: Matt Ranostay @ 2018-03-16  2:47 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: linux-media

On Fri, Mar 9, 2018 at 10:26 AM, Matt Ranostay
<matt.ranostay@konsulko.com> wrote:
> On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>> Hi Matt,
>>
>> This is looking good. One request before I merge: please run the
>> 'v4l2-compliance -s -f' utility and post the result here.
>>
>> I don't think I've asked you to do that before (or if I did, I couldn't
>> find it in my mail archive).
>>
>> It should run without failures.
>>
>> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>>
>> ./bootstrap.sh; ./configure; make; sudo make install
>
> Heh so not exactly no failures. Suspect a lot of these are due to the
> weird small 8x8 pixel input, and the fact it doesn't
> support modes a typical video capture device would.
>
> v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c
>
> Compliance test for device /dev/video0:
>
> Driver Info:
> Driver name      : video-i2c
> Card type        : I2C 2-105 Transport Video
> Bus info         : I2C:2-105
> Driver version   : 4.14.11
> Capabilities     : 0x85200001
> Video Capture
> Read/Write
> Streaming
> Extended Pix Format
> Device Capabilities
> Device Caps      : 0x05200001
> Video Capture
> Read/Write
> Streaming
> Extended Pix Format
>
> Required ioctls:
> test VIDIOC_QUERYCAP: OK
>
> Allow for multiple opens:
> test second /dev/video0 open: OK
> test VIDIOC_QUERYCAP: OK
> test VIDIOC_G/S_PRIORITY: OK
> test for unlimited opens: OK
>
> Debug ioctls:
> test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
> test VIDIOC_LOG_STATUS: OK (Not Supported)
>
> Input ioctls:
> test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
> test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
> test VIDIOC_ENUMAUDIO: OK (Not Supported)
> test VIDIOC_G/S/ENUMINPUT: OK
> test VIDIOC_G/S_AUDIO: OK (Not Supported)
> Inputs: 1 Audio Inputs: 0 Tuners: 0
>
> Output ioctls:
> test VIDIOC_G/S_MODULATOR: OK (Not Supported)
> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
> test VIDIOC_ENUMAUDOUT: OK (Not Supported)
> test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
> test VIDIOC_G/S_AUDOUT: OK (Not Supported)
> Outputs: 0 Audio Outputs: 0 Modulators: 0
>
> Input/Output configuration ioctls:
> test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
> test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
> test VIDIOC_G/S_EDID: OK (Not Supported)
>
> Control ioctls (Input 0):
> test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
> test VIDIOC_QUERYCTRL: OK (Not Supported)
> test VIDIOC_G/S_CTRL: OK (Not Supported)
> test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
> test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
> test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
> Standard Controls: 0 Private Controls: 0
>
> Format ioctls (Input 0):
> test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
> test VIDIOC_G/S_PARM: OK
> test VIDIOC_G_FBUF: OK (Not Supported)
> test VIDIOC_G_FMT: OK
> test VIDIOC_TRY_FMT: OK
> test VIDIOC_S_FMT: OK
> test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
> test Cropping: OK (Not Supported)
> test Composing: OK (Not Supported)
> test Scaling: OK (Not Supported)
>
> Codec ioctls (Input 0):
> test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
> test VIDIOC_G_ENC_INDEX: OK (Not Supported)
> test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)
>
> Buffer ioctls (Input 0):
> test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
> test VIDIOC_EXPBUF: OK (Not Supported)
>
> Test input 0:
>
> Streaming ioctls:
> test read/write: OK
> fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY

Noticed this seems to be the most worrying of the failures.  Any
suggestions where could be requested and still be 0 == V4L2_FIELD_ANY?

> fail: v4l2-test-buffers.cpp(658): buf.check(q, last_seq)
> fail: v4l2-test-buffers.cpp(928): captureBufs(node, q, m2m_q,
> frame_count, false)
> test MMAP: FAIL
> fail: v4l2-test-buffers.cpp(1028): can_stream && ret != EINVAL
> test USERPTR: FAIL
> test DMABUF: Cannot test, specify --expbuf-device
>
> Stream using all formats:
> test MMAP for Format Y12 , Frame Size 8x8@10.00 Hz:
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Top: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Bottom: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Interlaced: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Sequential Top-Bottom: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Sequential Bottom-Top: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Alternating: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Interlaced Top-Bottom: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 0, Field Interlaced Bottom-Top: FAIL
> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
> Stride 80, Field None: FAIL
> Total: 64, Succeeded: 44, Failed: 20, Warnings: 0
>
>
>>
>> Thanks!
>>
>>         Hans
>>
>> On 08/03/18 19:21, Matt Ranostay wrote:
>>> Add support for video-i2c polling driver
>>>
>>> Changes from v1:
>>> * Switch to SPDX tags versus GPLv2 license text
>>> * Remove unneeded zeroing of data structures
>>> * Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function
>>>
>>> Changes from v2:
>>> * Add missing linux/kthread.h include that broke x86_64 build
>>>
>>> Changes from v3:
>>> * Add devicetree binding documents
>>> * snprintf check added
>>> * switched to per chip support based on devicetree or i2c client id
>>> * add VB2_DMABUF to io_modes
>>> * added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id
>>>
>>> Changes from v4:
>>> * convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning
>>>
>>> Matt Ranostay (2):
>>>   media: dt-bindings: Add bindings for panasonic,amg88xx
>>>   media: video-i2c: add video-i2c driver
>>>
>>>  .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
>>>  MAINTAINERS                                        |   6 +
>>>  drivers/media/i2c/Kconfig                          |   9 +
>>>  drivers/media/i2c/Makefile                         |   1 +
>>>  drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
>>>  5 files changed, 593 insertions(+)
>>>  create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
>>>  create mode 100644 drivers/media/i2c/video-i2c.c
>>>
>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-16  2:47     ` Matt Ranostay
@ 2018-03-19  9:31       ` Hans Verkuil
  2018-03-22  5:46         ` Matt Ranostay
  0 siblings, 1 reply; 10+ messages in thread
From: Hans Verkuil @ 2018-03-19  9:31 UTC (permalink / raw)
  To: Matt Ranostay; +Cc: linux-media

On 03/16/2018 03:47 AM, Matt Ranostay wrote:
> On Fri, Mar 9, 2018 at 10:26 AM, Matt Ranostay
> <matt.ranostay@konsulko.com> wrote:
>> On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>> Hi Matt,
>>>
>>> This is looking good. One request before I merge: please run the
>>> 'v4l2-compliance -s -f' utility and post the result here.
>>>
>>> I don't think I've asked you to do that before (or if I did, I couldn't
>>> find it in my mail archive).
>>>
>>> It should run without failures.
>>>
>>> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>>>
>>> ./bootstrap.sh; ./configure; make; sudo make install
>>
>> Heh so not exactly no failures. Suspect a lot of these are due to the
>> weird small 8x8 pixel input, and the fact it doesn't
>> support modes a typical video capture device would.
>>
>> v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c
>>
>> Compliance test for device /dev/video0:
>>
>> Driver Info:
>> Driver name      : video-i2c
>> Card type        : I2C 2-105 Transport Video
>> Bus info         : I2C:2-105
>> Driver version   : 4.14.11
>> Capabilities     : 0x85200001
>> Video Capture
>> Read/Write
>> Streaming
>> Extended Pix Format
>> Device Capabilities
>> Device Caps      : 0x05200001
>> Video Capture
>> Read/Write
>> Streaming
>> Extended Pix Format
>>
>> Required ioctls:
>> test VIDIOC_QUERYCAP: OK
>>
>> Allow for multiple opens:
>> test second /dev/video0 open: OK
>> test VIDIOC_QUERYCAP: OK
>> test VIDIOC_G/S_PRIORITY: OK
>> test for unlimited opens: OK
>>
>> Debug ioctls:
>> test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
>> test VIDIOC_LOG_STATUS: OK (Not Supported)
>>
>> Input ioctls:
>> test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>> test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
>> test VIDIOC_ENUMAUDIO: OK (Not Supported)
>> test VIDIOC_G/S/ENUMINPUT: OK
>> test VIDIOC_G/S_AUDIO: OK (Not Supported)
>> Inputs: 1 Audio Inputs: 0 Tuners: 0
>>
>> Output ioctls:
>> test VIDIOC_G/S_MODULATOR: OK (Not Supported)
>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>> test VIDIOC_ENUMAUDOUT: OK (Not Supported)
>> test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
>> test VIDIOC_G/S_AUDOUT: OK (Not Supported)
>> Outputs: 0 Audio Outputs: 0 Modulators: 0
>>
>> Input/Output configuration ioctls:
>> test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
>> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
>> test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
>> test VIDIOC_G/S_EDID: OK (Not Supported)
>>
>> Control ioctls (Input 0):
>> test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
>> test VIDIOC_QUERYCTRL: OK (Not Supported)
>> test VIDIOC_G/S_CTRL: OK (Not Supported)
>> test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
>> test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
>> test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
>> Standard Controls: 0 Private Controls: 0
>>
>> Format ioctls (Input 0):
>> test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
>> test VIDIOC_G/S_PARM: OK
>> test VIDIOC_G_FBUF: OK (Not Supported)
>> test VIDIOC_G_FMT: OK
>> test VIDIOC_TRY_FMT: OK
>> test VIDIOC_S_FMT: OK
>> test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
>> test Cropping: OK (Not Supported)
>> test Composing: OK (Not Supported)
>> test Scaling: OK (Not Supported)
>>
>> Codec ioctls (Input 0):
>> test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
>> test VIDIOC_G_ENC_INDEX: OK (Not Supported)
>> test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)
>>
>> Buffer ioctls (Input 0):
>> test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
>> test VIDIOC_EXPBUF: OK (Not Supported)
>>
>> Test input 0:
>>
>> Streaming ioctls:
>> test read/write: OK
>> fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY
> 
> Noticed this seems to be the most worrying of the failures.  Any
> suggestions where could be requested and still be 0 == V4L2_FIELD_ANY?

struct v4l2_buffers should never return FIELD_ANY. For this driver
the frames are always progressive, not interlaced, so just set this
to FIELD_NONE in the driver.

Basically the driver must never give FIELD_ANY back to userspace.
Userspace can pass in FIELD_ANY when it calls TRY/S_FMT, but it should
always be replaced with a non-zero field value. In this case FIELD_NONE.

Regards,

	Hans

> 
>> fail: v4l2-test-buffers.cpp(658): buf.check(q, last_seq)
>> fail: v4l2-test-buffers.cpp(928): captureBufs(node, q, m2m_q,
>> frame_count, false)
>> test MMAP: FAIL
>> fail: v4l2-test-buffers.cpp(1028): can_stream && ret != EINVAL
>> test USERPTR: FAIL
>> test DMABUF: Cannot test, specify --expbuf-device
>>
>> Stream using all formats:
>> test MMAP for Format Y12 , Frame Size 8x8@10.00 Hz:
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Top: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Bottom: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Interlaced: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Sequential Top-Bottom: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Sequential Bottom-Top: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Alternating: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Interlaced Top-Bottom: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 0, Field Interlaced Bottom-Top: FAIL
>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>> Stride 80, Field None: FAIL
>> Total: 64, Succeeded: 44, Failed: 20, Warnings: 0
>>
>>
>>>
>>> Thanks!
>>>
>>>         Hans
>>>
>>> On 08/03/18 19:21, Matt Ranostay wrote:
>>>> Add support for video-i2c polling driver
>>>>
>>>> Changes from v1:
>>>> * Switch to SPDX tags versus GPLv2 license text
>>>> * Remove unneeded zeroing of data structures
>>>> * Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function
>>>>
>>>> Changes from v2:
>>>> * Add missing linux/kthread.h include that broke x86_64 build
>>>>
>>>> Changes from v3:
>>>> * Add devicetree binding documents
>>>> * snprintf check added
>>>> * switched to per chip support based on devicetree or i2c client id
>>>> * add VB2_DMABUF to io_modes
>>>> * added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id
>>>>
>>>> Changes from v4:
>>>> * convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning
>>>>
>>>> Matt Ranostay (2):
>>>>   media: dt-bindings: Add bindings for panasonic,amg88xx
>>>>   media: video-i2c: add video-i2c driver
>>>>
>>>>  .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
>>>>  MAINTAINERS                                        |   6 +
>>>>  drivers/media/i2c/Kconfig                          |   9 +
>>>>  drivers/media/i2c/Makefile                         |   1 +
>>>>  drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
>>>>  5 files changed, 593 insertions(+)
>>>>  create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
>>>>  create mode 100644 drivers/media/i2c/video-i2c.c
>>>>
>>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-19  9:31       ` Hans Verkuil
@ 2018-03-22  5:46         ` Matt Ranostay
  2018-03-22  7:28           ` Hans Verkuil
  0 siblings, 1 reply; 10+ messages in thread
From: Matt Ranostay @ 2018-03-22  5:46 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: linux-media

On Mon, Mar 19, 2018 at 5:31 PM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
> On 03/16/2018 03:47 AM, Matt Ranostay wrote:
>> On Fri, Mar 9, 2018 at 10:26 AM, Matt Ranostay
>> <matt.ranostay@konsulko.com> wrote:
>>> On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>>> Hi Matt,
>>>>
>>>> This is looking good. One request before I merge: please run the
>>>> 'v4l2-compliance -s -f' utility and post the result here.
>>>>
>>>> I don't think I've asked you to do that before (or if I did, I couldn't
>>>> find it in my mail archive).
>>>>
>>>> It should run without failures.
>>>>
>>>> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>>>>
>>>> ./bootstrap.sh; ./configure; make; sudo make install
>>>
>>> Heh so not exactly no failures. Suspect a lot of these are due to the
>>> weird small 8x8 pixel input, and the fact it doesn't
>>> support modes a typical video capture device would.
>>>
>>> v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c
>>>
>>> Compliance test for device /dev/video0:
>>>
>>> Driver Info:
>>> Driver name      : video-i2c
>>> Card type        : I2C 2-105 Transport Video
>>> Bus info         : I2C:2-105
>>> Driver version   : 4.14.11
>>> Capabilities     : 0x85200001
>>> Video Capture
>>> Read/Write
>>> Streaming
>>> Extended Pix Format
>>> Device Capabilities
>>> Device Caps      : 0x05200001
>>> Video Capture
>>> Read/Write
>>> Streaming
>>> Extended Pix Format
>>>
>>> Required ioctls:
>>> test VIDIOC_QUERYCAP: OK
>>>
>>> Allow for multiple opens:
>>> test second /dev/video0 open: OK
>>> test VIDIOC_QUERYCAP: OK
>>> test VIDIOC_G/S_PRIORITY: OK
>>> test for unlimited opens: OK
>>>
>>> Debug ioctls:
>>> test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
>>> test VIDIOC_LOG_STATUS: OK (Not Supported)
>>>
>>> Input ioctls:
>>> test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>> test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
>>> test VIDIOC_ENUMAUDIO: OK (Not Supported)
>>> test VIDIOC_G/S/ENUMINPUT: OK
>>> test VIDIOC_G/S_AUDIO: OK (Not Supported)
>>> Inputs: 1 Audio Inputs: 0 Tuners: 0
>>>
>>> Output ioctls:
>>> test VIDIOC_G/S_MODULATOR: OK (Not Supported)
>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>> test VIDIOC_ENUMAUDOUT: OK (Not Supported)
>>> test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
>>> test VIDIOC_G/S_AUDOUT: OK (Not Supported)
>>> Outputs: 0 Audio Outputs: 0 Modulators: 0
>>>
>>> Input/Output configuration ioctls:
>>> test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
>>> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
>>> test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
>>> test VIDIOC_G/S_EDID: OK (Not Supported)
>>>
>>> Control ioctls (Input 0):
>>> test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
>>> test VIDIOC_QUERYCTRL: OK (Not Supported)
>>> test VIDIOC_G/S_CTRL: OK (Not Supported)
>>> test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
>>> test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
>>> test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
>>> Standard Controls: 0 Private Controls: 0
>>>
>>> Format ioctls (Input 0):
>>> test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
>>> test VIDIOC_G/S_PARM: OK
>>> test VIDIOC_G_FBUF: OK (Not Supported)
>>> test VIDIOC_G_FMT: OK
>>> test VIDIOC_TRY_FMT: OK
>>> test VIDIOC_S_FMT: OK
>>> test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
>>> test Cropping: OK (Not Supported)
>>> test Composing: OK (Not Supported)
>>> test Scaling: OK (Not Supported)
>>>
>>> Codec ioctls (Input 0):
>>> test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
>>> test VIDIOC_G_ENC_INDEX: OK (Not Supported)
>>> test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)
>>>
>>> Buffer ioctls (Input 0):
>>> test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
>>> test VIDIOC_EXPBUF: OK (Not Supported)
>>>
>>> Test input 0:
>>>
>>> Streaming ioctls:
>>> test read/write: OK
>>> fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY
>>
>> Noticed this seems to be the most worrying of the failures.  Any
>> suggestions where could be requested and still be 0 == V4L2_FIELD_ANY?
>
> struct v4l2_buffers should never return FIELD_ANY. For this driver
> the frames are always progressive, not interlaced, so just set this
> to FIELD_NONE in the driver.
>
> Basically the driver must never give FIELD_ANY back to userspace.
> Userspace can pass in FIELD_ANY when it calls TRY/S_FMT, but it should
> always be replaced with a non-zero field value. In this case FIELD_NONE.


Which callback would that be in? Because currently the driver is only
handling the v4l2_pix_format settings, and not
vb2_v4l2_buffer settings.

- Matt

>
> Regards,
>
>         Hans
>
>>
>>> fail: v4l2-test-buffers.cpp(658): buf.check(q, last_seq)
>>> fail: v4l2-test-buffers.cpp(928): captureBufs(node, q, m2m_q,
>>> frame_count, false)
>>> test MMAP: FAIL
>>> fail: v4l2-test-buffers.cpp(1028): can_stream && ret != EINVAL
>>> test USERPTR: FAIL
>>> test DMABUF: Cannot test, specify --expbuf-device
>>>
>>> Stream using all formats:
>>> test MMAP for Format Y12 , Frame Size 8x8@10.00 Hz:
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Top: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Bottom: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Interlaced: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Sequential Top-Bottom: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Sequential Bottom-Top: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Alternating: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Interlaced Top-Bottom: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 0, Field Interlaced Bottom-Top: FAIL
>>> fail: v4l2-test-buffers.cpp(1472): fmt.g_sizeimage() <= size
>>> fail: v4l2-test-buffers.cpp(1268): q.reqbufs(node, 3)
>>> Stride 80, Field None: FAIL
>>> Total: 64, Succeeded: 44, Failed: 20, Warnings: 0
>>>
>>>
>>>>
>>>> Thanks!
>>>>
>>>>         Hans
>>>>
>>>> On 08/03/18 19:21, Matt Ranostay wrote:
>>>>> Add support for video-i2c polling driver
>>>>>
>>>>> Changes from v1:
>>>>> * Switch to SPDX tags versus GPLv2 license text
>>>>> * Remove unneeded zeroing of data structures
>>>>> * Add video_i2c_try_fmt_vid_cap call in video_i2c_s_fmt_vid_cap function
>>>>>
>>>>> Changes from v2:
>>>>> * Add missing linux/kthread.h include that broke x86_64 build
>>>>>
>>>>> Changes from v3:
>>>>> * Add devicetree binding documents
>>>>> * snprintf check added
>>>>> * switched to per chip support based on devicetree or i2c client id
>>>>> * add VB2_DMABUF to io_modes
>>>>> * added entry to MAINTAINERS file switched to per chip support based on devicetree or i2c client id
>>>>>
>>>>> Changes from v4:
>>>>> * convert pointer from of_device_get_match_data() to long instead of int to avoid compiler warning
>>>>>
>>>>> Matt Ranostay (2):
>>>>>   media: dt-bindings: Add bindings for panasonic,amg88xx
>>>>>   media: video-i2c: add video-i2c driver
>>>>>
>>>>>  .../bindings/media/i2c/panasonic,amg88xx.txt       |  19 +
>>>>>  MAINTAINERS                                        |   6 +
>>>>>  drivers/media/i2c/Kconfig                          |   9 +
>>>>>  drivers/media/i2c/Makefile                         |   1 +
>>>>>  drivers/media/i2c/video-i2c.c                      | 558 +++++++++++++++++++++
>>>>>  5 files changed, 593 insertions(+)
>>>>>  create mode 100644 Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
>>>>>  create mode 100644 drivers/media/i2c/video-i2c.c
>>>>>
>>>>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-22  5:46         ` Matt Ranostay
@ 2018-03-22  7:28           ` Hans Verkuil
  2018-03-22  7:58             ` Matt Ranostay
  0 siblings, 1 reply; 10+ messages in thread
From: Hans Verkuil @ 2018-03-22  7:28 UTC (permalink / raw)
  To: Matt Ranostay; +Cc: linux-media

On 03/22/2018 06:46 AM, Matt Ranostay wrote:
> On Mon, Mar 19, 2018 at 5:31 PM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>> On 03/16/2018 03:47 AM, Matt Ranostay wrote:
>>> On Fri, Mar 9, 2018 at 10:26 AM, Matt Ranostay
>>> <matt.ranostay@konsulko.com> wrote:
>>>> On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>>>> Hi Matt,
>>>>>
>>>>> This is looking good. One request before I merge: please run the
>>>>> 'v4l2-compliance -s -f' utility and post the result here.
>>>>>
>>>>> I don't think I've asked you to do that before (or if I did, I couldn't
>>>>> find it in my mail archive).
>>>>>
>>>>> It should run without failures.
>>>>>
>>>>> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>>>>>
>>>>> ./bootstrap.sh; ./configure; make; sudo make install
>>>>
>>>> Heh so not exactly no failures. Suspect a lot of these are due to the
>>>> weird small 8x8 pixel input, and the fact it doesn't
>>>> support modes a typical video capture device would.
>>>>
>>>> v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c
>>>>
>>>> Compliance test for device /dev/video0:
>>>>
>>>> Driver Info:
>>>> Driver name      : video-i2c
>>>> Card type        : I2C 2-105 Transport Video
>>>> Bus info         : I2C:2-105
>>>> Driver version   : 4.14.11
>>>> Capabilities     : 0x85200001
>>>> Video Capture
>>>> Read/Write
>>>> Streaming
>>>> Extended Pix Format
>>>> Device Capabilities
>>>> Device Caps      : 0x05200001
>>>> Video Capture
>>>> Read/Write
>>>> Streaming
>>>> Extended Pix Format
>>>>
>>>> Required ioctls:
>>>> test VIDIOC_QUERYCAP: OK
>>>>
>>>> Allow for multiple opens:
>>>> test second /dev/video0 open: OK
>>>> test VIDIOC_QUERYCAP: OK
>>>> test VIDIOC_G/S_PRIORITY: OK
>>>> test for unlimited opens: OK
>>>>
>>>> Debug ioctls:
>>>> test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
>>>> test VIDIOC_LOG_STATUS: OK (Not Supported)
>>>>
>>>> Input ioctls:
>>>> test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
>>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>>> test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
>>>> test VIDIOC_ENUMAUDIO: OK (Not Supported)
>>>> test VIDIOC_G/S/ENUMINPUT: OK
>>>> test VIDIOC_G/S_AUDIO: OK (Not Supported)
>>>> Inputs: 1 Audio Inputs: 0 Tuners: 0
>>>>
>>>> Output ioctls:
>>>> test VIDIOC_G/S_MODULATOR: OK (Not Supported)
>>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>>> test VIDIOC_ENUMAUDOUT: OK (Not Supported)
>>>> test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
>>>> test VIDIOC_G/S_AUDOUT: OK (Not Supported)
>>>> Outputs: 0 Audio Outputs: 0 Modulators: 0
>>>>
>>>> Input/Output configuration ioctls:
>>>> test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
>>>> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
>>>> test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
>>>> test VIDIOC_G/S_EDID: OK (Not Supported)
>>>>
>>>> Control ioctls (Input 0):
>>>> test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
>>>> test VIDIOC_QUERYCTRL: OK (Not Supported)
>>>> test VIDIOC_G/S_CTRL: OK (Not Supported)
>>>> test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
>>>> test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
>>>> test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
>>>> Standard Controls: 0 Private Controls: 0
>>>>
>>>> Format ioctls (Input 0):
>>>> test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
>>>> test VIDIOC_G/S_PARM: OK
>>>> test VIDIOC_G_FBUF: OK (Not Supported)
>>>> test VIDIOC_G_FMT: OK
>>>> test VIDIOC_TRY_FMT: OK
>>>> test VIDIOC_S_FMT: OK
>>>> test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
>>>> test Cropping: OK (Not Supported)
>>>> test Composing: OK (Not Supported)
>>>> test Scaling: OK (Not Supported)
>>>>
>>>> Codec ioctls (Input 0):
>>>> test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
>>>> test VIDIOC_G_ENC_INDEX: OK (Not Supported)
>>>> test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)
>>>>
>>>> Buffer ioctls (Input 0):
>>>> test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
>>>> test VIDIOC_EXPBUF: OK (Not Supported)
>>>>
>>>> Test input 0:
>>>>
>>>> Streaming ioctls:
>>>> test read/write: OK
>>>> fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY
>>>
>>> Noticed this seems to be the most worrying of the failures.  Any
>>> suggestions where could be requested and still be 0 == V4L2_FIELD_ANY?
>>
>> struct v4l2_buffers should never return FIELD_ANY. For this driver
>> the frames are always progressive, not interlaced, so just set this
>> to FIELD_NONE in the driver.
>>
>> Basically the driver must never give FIELD_ANY back to userspace.
>> Userspace can pass in FIELD_ANY when it calls TRY/S_FMT, but it should
>> always be replaced with a non-zero field value. In this case FIELD_NONE.
> 
> 
> Which callback would that be in? Because currently the driver is only
> handling the v4l2_pix_format settings, and not
> vb2_v4l2_buffer settings.

You typically do that in buffer_prepare(). BTW, I noticed that you do not
set the sequence counter in v4l2_buffer! You set that just before calling
vb2_buffer_done().

Regards,

	Hans

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v5 0/2] media: video-i2c: add video-i2c driver support
  2018-03-22  7:28           ` Hans Verkuil
@ 2018-03-22  7:58             ` Matt Ranostay
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Ranostay @ 2018-03-22  7:58 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: linux-media

On Thu, Mar 22, 2018 at 3:28 PM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
> On 03/22/2018 06:46 AM, Matt Ranostay wrote:
>> On Mon, Mar 19, 2018 at 5:31 PM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>> On 03/16/2018 03:47 AM, Matt Ranostay wrote:
>>>> On Fri, Mar 9, 2018 at 10:26 AM, Matt Ranostay
>>>> <matt.ranostay@konsulko.com> wrote:
>>>>> On Fri, Mar 9, 2018 at 4:45 AM, Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>>>>> Hi Matt,
>>>>>>
>>>>>> This is looking good. One request before I merge: please run the
>>>>>> 'v4l2-compliance -s -f' utility and post the result here.
>>>>>>
>>>>>> I don't think I've asked you to do that before (or if I did, I couldn't
>>>>>> find it in my mail archive).
>>>>>>
>>>>>> It should run without failures.
>>>>>>
>>>>>> Use the latest version from the git repo: https://git.linuxtv.org/v4l-utils.git/
>>>>>>
>>>>>> ./bootstrap.sh; ./configure; make; sudo make install
>>>>>
>>>>> Heh so not exactly no failures. Suspect a lot of these are due to the
>>>>> weird small 8x8 pixel input, and the fact it doesn't
>>>>> support modes a typical video capture device would.
>>>>>
>>>>> v4l2-compliance SHA   : 14ce03c18ef67aa7a3d5781f015be855fd43839c
>>>>>
>>>>> Compliance test for device /dev/video0:
>>>>>
>>>>> Driver Info:
>>>>> Driver name      : video-i2c
>>>>> Card type        : I2C 2-105 Transport Video
>>>>> Bus info         : I2C:2-105
>>>>> Driver version   : 4.14.11
>>>>> Capabilities     : 0x85200001
>>>>> Video Capture
>>>>> Read/Write
>>>>> Streaming
>>>>> Extended Pix Format
>>>>> Device Capabilities
>>>>> Device Caps      : 0x05200001
>>>>> Video Capture
>>>>> Read/Write
>>>>> Streaming
>>>>> Extended Pix Format
>>>>>
>>>>> Required ioctls:
>>>>> test VIDIOC_QUERYCAP: OK
>>>>>
>>>>> Allow for multiple opens:
>>>>> test second /dev/video0 open: OK
>>>>> test VIDIOC_QUERYCAP: OK
>>>>> test VIDIOC_G/S_PRIORITY: OK
>>>>> test for unlimited opens: OK
>>>>>
>>>>> Debug ioctls:
>>>>> test VIDIOC_DBG_G/S_REGISTER: OK (Not Supported)
>>>>> test VIDIOC_LOG_STATUS: OK (Not Supported)
>>>>>
>>>>> Input ioctls:
>>>>> test VIDIOC_G/S_TUNER/ENUM_FREQ_BANDS: OK (Not Supported)
>>>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>>>> test VIDIOC_S_HW_FREQ_SEEK: OK (Not Supported)
>>>>> test VIDIOC_ENUMAUDIO: OK (Not Supported)
>>>>> test VIDIOC_G/S/ENUMINPUT: OK
>>>>> test VIDIOC_G/S_AUDIO: OK (Not Supported)
>>>>> Inputs: 1 Audio Inputs: 0 Tuners: 0
>>>>>
>>>>> Output ioctls:
>>>>> test VIDIOC_G/S_MODULATOR: OK (Not Supported)
>>>>> test VIDIOC_G/S_FREQUENCY: OK (Not Supported)
>>>>> test VIDIOC_ENUMAUDOUT: OK (Not Supported)
>>>>> test VIDIOC_G/S/ENUMOUTPUT: OK (Not Supported)
>>>>> test VIDIOC_G/S_AUDOUT: OK (Not Supported)
>>>>> Outputs: 0 Audio Outputs: 0 Modulators: 0
>>>>>
>>>>> Input/Output configuration ioctls:
>>>>> test VIDIOC_ENUM/G/S/QUERY_STD: OK (Not Supported)
>>>>> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: OK (Not Supported)
>>>>> test VIDIOC_DV_TIMINGS_CAP: OK (Not Supported)
>>>>> test VIDIOC_G/S_EDID: OK (Not Supported)
>>>>>
>>>>> Control ioctls (Input 0):
>>>>> test VIDIOC_QUERY_EXT_CTRL/QUERYMENU: OK (Not Supported)
>>>>> test VIDIOC_QUERYCTRL: OK (Not Supported)
>>>>> test VIDIOC_G/S_CTRL: OK (Not Supported)
>>>>> test VIDIOC_G/S/TRY_EXT_CTRLS: OK (Not Supported)
>>>>> test VIDIOC_(UN)SUBSCRIBE_EVENT/DQEVENT: OK (Not Supported)
>>>>> test VIDIOC_G/S_JPEGCOMP: OK (Not Supported)
>>>>> Standard Controls: 0 Private Controls: 0
>>>>>
>>>>> Format ioctls (Input 0):
>>>>> test VIDIOC_ENUM_FMT/FRAMESIZES/FRAMEINTERVALS: OK
>>>>> test VIDIOC_G/S_PARM: OK
>>>>> test VIDIOC_G_FBUF: OK (Not Supported)
>>>>> test VIDIOC_G_FMT: OK
>>>>> test VIDIOC_TRY_FMT: OK
>>>>> test VIDIOC_S_FMT: OK
>>>>> test VIDIOC_G_SLICED_VBI_CAP: OK (Not Supported)
>>>>> test Cropping: OK (Not Supported)
>>>>> test Composing: OK (Not Supported)
>>>>> test Scaling: OK (Not Supported)
>>>>>
>>>>> Codec ioctls (Input 0):
>>>>> test VIDIOC_(TRY_)ENCODER_CMD: OK (Not Supported)
>>>>> test VIDIOC_G_ENC_INDEX: OK (Not Supported)
>>>>> test VIDIOC_(TRY_)DECODER_CMD: OK (Not Supported)
>>>>>
>>>>> Buffer ioctls (Input 0):
>>>>> test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
>>>>> test VIDIOC_EXPBUF: OK (Not Supported)
>>>>>
>>>>> Test input 0:
>>>>>
>>>>> Streaming ioctls:
>>>>> test read/write: OK
>>>>> fail: v4l2-test-buffers.cpp(248): g_field() == V4L2_FIELD_ANY
>>>>
>>>> Noticed this seems to be the most worrying of the failures.  Any
>>>> suggestions where could be requested and still be 0 == V4L2_FIELD_ANY?
>>>
>>> struct v4l2_buffers should never return FIELD_ANY. For this driver
>>> the frames are always progressive, not interlaced, so just set this
>>> to FIELD_NONE in the driver.
>>>
>>> Basically the driver must never give FIELD_ANY back to userspace.
>>> Userspace can pass in FIELD_ANY when it calls TRY/S_FMT, but it should
>>> always be replaced with a non-zero field value. In this case FIELD_NONE.
>>
>>
>> Which callback would that be in? Because currently the driver is only
>> handling the v4l2_pix_format settings, and not
>> vb2_v4l2_buffer settings.
>
> You typically do that in buffer_prepare(). BTW, I noticed that you do not
> set the sequence counter in v4l2_buffer! You set that just before calling
> vb2_buffer_done().
>

Ah explains another compliance failure I see now :)

Thanks,

Matt

> Regards,
>
>         Hans

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-03-22  7:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-08 18:21 [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Matt Ranostay
2018-03-08 18:21 ` [PATCH v5 1/2] media: dt-bindings: Add bindings for panasonic,amg88xx Matt Ranostay
2018-03-08 18:21 ` [PATCH v5 2/2] media: video-i2c: add video-i2c driver Matt Ranostay
2018-03-09 12:45 ` [PATCH v5 0/2] media: video-i2c: add video-i2c driver support Hans Verkuil
2018-03-09 18:26   ` Matt Ranostay
2018-03-16  2:47     ` Matt Ranostay
2018-03-19  9:31       ` Hans Verkuil
2018-03-22  5:46         ` Matt Ranostay
2018-03-22  7:28           ` Hans Verkuil
2018-03-22  7:58             ` Matt Ranostay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.