linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [REVIEW] Driver for SQ-905 based cameras
@ 2009-01-01  0:33 Adam Baker
  2009-01-01  6:11 ` Alexey Klimov
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Adam Baker @ 2009-01-01  0:33 UTC (permalink / raw)
  To: video4linux-list; +Cc: kilgota, sqcam-devel

Theodore Kilgore and I now have a driver for cameras based on the 
SQ 905 chipset that is capable of producing images. It is based on gspca
and uses libv4l. Issues so far are

1) With the cameras used so far for testing the image is always upside down.
It is known that there are cameras that have different sensor layouts but without
a mechanism to communicate that layout to libv4l we can't do much more.
(Yes I have read Hans de Geode's posts about this but wanted to have a real 
driver to use as a basis before discussing further).

2) The code is all using the gspca PDEBUG macros not dev_err / dev_warn 
etc. As the rest of gspca seems to do the same I thought consistency was the 
best option but will change this on request.

3) There seem to be a limited selection of apps that work well with it even using 
the LD_PRELOAD tricks in libv4l but those that don't seem to misbehave similarly 
with a pac207 camera so I'm assumming the problem isn't with the sq905 
sub-driver (e.g. xawtv is always giving a green image).

4) Only a single resolution is supported. All sq905 cameras should support a
 lower resolution and some also support a higher resolution but I see support for
 that as something to worry about once the basic driver is accepted.

5) The patch below doesn't have a signed off by line attached, partly because 
I'm not sure the correct order to list signed-off-by for a patch with multiple authors 
but also because I'm expecting some comments back before it gets accepted.

6) I've fixed all the errors thrown up by make checkpatch but I haven't yet 
tried to run sparse on it.

The patch is against yesterday's gspca tree, changeset: 10164:6f3948c174c1

---

diff -r 6f3948c174c1 linux/drivers/media/video/gspca/Kconfig
--- a/linux/drivers/media/video/gspca/Kconfig	Wed Dec 31 18:33:53 2008 +0100
+++ b/linux/drivers/media/video/gspca/Kconfig	Thu Jan 01 00:16:28 2009 +0000
@@ -167,6 +167,15 @@ config USB_GSPCA_SPCA561
 	  To compile this driver as a module, choose M here: the
 	  module will be called gspca_spca561.
 
+config USB_GSPCA_SQ905
+	tristate "SQ Technologies SQ905 based USB Camera Driver"
+	depends on VIDEO_V4L2 && USB_GSPCA
+	help
+	  Say Y here if you want support for cameras based on the SQ905 chip.
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called gspca_sq905.
+
 config USB_GSPCA_STK014
 	tristate "Syntek DV4000 (STK014) USB Camera Driver"
 	depends on VIDEO_V4L2 && USB_GSPCA
diff -r 6f3948c174c1 linux/drivers/media/video/gspca/Makefile
--- a/linux/drivers/media/video/gspca/Makefile	Wed Dec 31 18:33:53 2008 +0100
+++ b/linux/drivers/media/video/gspca/Makefile	Thu Jan 01 00:16:28 2009 +0000
@@ -16,6 +16,7 @@ obj-$(CONFIG_USB_GSPCA_SPCA508) += gspca
 obj-$(CONFIG_USB_GSPCA_SPCA508) += gspca_spca508.o
 obj-$(CONFIG_USB_GSPCA_SPCA561) += gspca_spca561.o
 obj-$(CONFIG_USB_GSPCA_SUNPLUS) += gspca_sunplus.o
+obj-$(CONFIG_USB_GSPCA_SQ905)	+= gspca_sq905.o
 obj-$(CONFIG_USB_GSPCA_STK014)	+= gspca_stk014.o
 obj-$(CONFIG_USB_GSPCA_T613)	+= gspca_t613.o
 obj-$(CONFIG_USB_GSPCA_TV8532)	+= gspca_tv8532.o
@@ -39,6 +40,7 @@ gspca_spca506-objs		:= spca506.o
 gspca_spca506-objs		:= spca506.o
 gspca_spca508-objs		:= spca508.o
 gspca_spca561-objs		:= spca561.o
+gspca_sq905-objs		:= sq905.o
 gspca_stk014-objs		:= stk014.o
 gspca_sunplus-objs		:= sunplus.o
 gspca_t613-objs			:= t613.o
diff -r 6f3948c174c1 linux/drivers/media/video/gspca/sq905.c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/linux/drivers/media/video/gspca/sq905.c	Thu Jan 01 00:16:28 2009 +0000
@@ -0,0 +1,381 @@
+/*
+ * SQ905 subdriver
+ *
+ * Copyright (C) 2008 Adam Baker and Theodore Kilgore
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * 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, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/*
+ * History and Acknowledgments
+ *
+ * The original Linux driver for SQ905 based cameras was written by
+ * Marcell Lengyel and furter developed by many other contributers
+ * and is available from http://sourceforge.net/projects/sqcam/
+ *
+ * This driver takes advantage of the reverse engineering work done for
+ * that driver and for libgphoto2 but shares no code with them.
+ *
+ * This driver has used as a base the finepix driver and other gspca
+ * based drivers and may still contain code fragments taken from those
+ * drivers.
+ */
+
+#define MODULE_NAME "sq905"
+
+#include "gspca.h"
+
+MODULE_AUTHOR("Adam Baker <linux@baker-net.org.uk>, "
+		"Theodore Kilgore <kilgota@auburn.edu>");
+MODULE_DESCRIPTION("GSPCA/SQ905 USB Camera Driver");
+MODULE_LICENSE("GPL");
+
+/* Default timeout, in ms */
+#define SQ905_TIMEOUT (HZ / 10)
+
+/* Maximum transfer size to use. The windows driver reads by chunks of
+ * 0x8000 bytes, so do the same. Note: reading more seems to work
+ * too. */
+#define SQ905_MAX_TRANSFER 0x8000
+#define FRAME_HEADER_LEN 64
+
+/* The known modes, or registers. These go in the "value" slot. */
+
+/* 00 is "none" obviously */
+
+#define SQ905_BULK_READ	0x03	/* precedes any bulk read */
+#define SQ905_COMMAND	0x06	/* precedes the command codes below */
+#define SQ905_PING	0x07	/* when reading an "idling" command */
+#define SQ905_READ_DONE 0xc0    /* ack bulk read completed */
+
+/* Some command codes. These go in the "index" slot. */
+
+#define SQ905_ID      0xf0	/* asks for model string */
+#define SQ905_CONFIG  0x20	/* gets photo alloc. table, not used here */
+#define SQ905_DATA    0x30	/* accesses photo data, not used here */
+#define SQ905_CLEAR   0xa0	/* clear everything */
+#define SQ905_CAPTURE_LOW 0x60	/* Starts capture at 160x120 */
+#define SQ905_CAPTURE_MED 0x61	/* Starts capture at 320x240 */
+/* note that the capture command also controls the output dimensions */
+/* 0x60 -> 160x120, 0x61 -> 320x240 0x62 -> 640x480 depends on camera */
+/* 0x62 is not correct, at least for some cams. Should be 0x63 ? */
+
+
+
+/* Structure to hold all of our device specific stuff */
+struct sd {
+	struct gspca_dev gspca_dev;	/* !! must be the first item */
+
+	enum {
+		SQ905_MODEL_DEFAULT,
+		SQ905_MODEL_POCK_CAM,
+		SQ905_MODEL_MAGPIX
+	} cam_model;
+
+	/*
+	 * Driver stuff
+	 */
+	__u8 *buffer;
+	struct delayed_work wqe;
+	struct completion can_close;
+	int streaming;
+};
+
+/* These cameras only support 320x200. Actually not true but good for a start*/
+static struct v4l2_pix_format sq905_mode[1] = {
+	{ 320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
+		.bytesperline = 320,
+		.sizeimage = 320 * 240,
+		.colorspace = V4L2_COLORSPACE_SRGB,
+		.priv = 0}
+};
+
+static int sq905_command(struct usb_device *dev, __u16 index)
+{
+	__u8 status;
+	int ret;
+	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
+			      USB_REQ_SYNCH_FRAME,                /* request */
+			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
+			      SQ905_COMMAND, index, "\x0", 1, 500);
+	if (ret != 1) {
+		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed (%d)",
+			ret);
+		return -EIO;
+	}
+
+	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
+			      USB_REQ_SYNCH_FRAME,                /* request */
+			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
+			      SQ905_PING, 0, &status, 1, 500);
+	if (ret != 1) {
+		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed 2 (%d)",
+			ret);
+		return -EIO;
+	}
+
+	return 0;
+}
+
+static int sq905_ack_frame(struct usb_device *dev)
+{
+	int ret;
+	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
+			      USB_REQ_SYNCH_FRAME,                /* request */
+			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
+			      SQ905_READ_DONE, 0, "\x0", 1, 500);
+	if (ret != 1) {
+		PDEBUG(D_ERR, "sq905_ack_frame: usb_ctrl_msg failed (%d)", ret);
+		return -EIO;
+	}
+
+	return 0;
+}
+
+static int
+sq905_read_data(struct gspca_dev *gspca_dev, __u8 *data, int size)
+{
+	int ret;
+	int act_len;
+
+	if (!data) {
+		PDEBUG(D_ERR, "sq905_read_data: data pointer was NULL\n");
+		return -EINVAL;
+	}
+
+	ret = usb_control_msg(gspca_dev->dev,
+			      usb_sndctrlpipe(gspca_dev->dev, 0),
+			      USB_REQ_SYNCH_FRAME,                /* request */
+			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
+			      SQ905_BULK_READ, size, "\x0", 1, 500);
+	if (ret != 1) {
+		PDEBUG(D_ERR, "sq905_read_data: usb_ctrl_msg failed (%d)", ret);
+		return -EIO;
+	}
+	ret = usb_bulk_msg(gspca_dev->dev,
+			   usb_rcvbulkpipe(gspca_dev->dev, 0x81),
+			   data, size, &act_len, 500);
+	/* successful, it returns 0, otherwise  negative */
+	if ((ret != 0) || (act_len != size)) {
+		PDEBUG(D_ERR, "sq905_read_data: bulk read fail (%d) len %d/%d",
+			ret, act_len, size);
+		return -EIO;
+	}
+	return 0;
+}
+
+/* This function is called as a workqueue function and runs whenever the camera
+ * is streaming data. Because it is a workqueue function it is allowed to sleep
+ * so we can use synchronous USB calls. There appears to be no reason to
+ * terminate before we stop streaming.
+ */
+static void sq905_dostream(struct work_struct *work)
+{
+	struct sd *dev = container_of(work, struct sd, wqe.work);
+	struct gspca_frame *frame;
+	int bytes_left; /* bytes remaining in current frame. */
+	int data_len;   /* size to use for the next read. */
+	int header_read; /* true if we have already read the frame header. */
+	int discarding; /* true if we failed to get space for frame. */
+	int packet_type;
+	__u8 *data;
+
+	while ((dev->gspca_dev.present) && (dev->streaming)) {
+		/* request some data and then read it until we have
+		 * a complete frame. */
+		bytes_left = sq905_mode[0].sizeimage + FRAME_HEADER_LEN;
+		header_read = 0;
+		discarding = 0;
+
+		while (bytes_left > 0) {
+			data_len = bytes_left > SQ905_MAX_TRANSFER  ?
+				SQ905_MAX_TRANSFER : bytes_left;
+			if (sq905_read_data(&dev->gspca_dev, dev->buffer,
+					 data_len) == 0) {
+				PDEBUG(D_STREAM,
+					"Got %d bytes out of %d for frame",
+					data_len, bytes_left);
+				bytes_left -= data_len;
+				data = dev->buffer;
+				if (!header_read) {
+					packet_type = FIRST_PACKET;
+					/* The first 64 bytes of each frame are
+					 * a header of unknown format */
+					data += FRAME_HEADER_LEN;
+					data_len -= FRAME_HEADER_LEN;
+					header_read = 1;
+				} else if (bytes_left == 0) {
+					packet_type = LAST_PACKET;
+				} else {
+					packet_type = INTER_PACKET;
+				}
+				frame = gspca_get_i_frame(&dev->gspca_dev);
+				if (frame &&  !discarding)
+					gspca_frame_add(&dev->gspca_dev,
+						packet_type, frame,
+						data, data_len);
+				else
+					discarding = 1;
+			} else {
+				/* shut down if we got a USB error. */
+				dev->streaming = 0;
+			}
+		}
+		/* acknowledge the frame */
+		sq905_ack_frame(dev->gspca_dev.dev);
+	}
+	complete(&dev->can_close);
+}
+
+/* this function is called at probe time */
+static int sd_config(struct gspca_dev *gspca_dev,
+		const struct usb_device_id *id)
+{
+	struct cam *cam = &gspca_dev->cam;
+
+	cam->cam_mode = sq905_mode;
+	cam->nmodes = 1;
+	cam->bulk_size = SQ905_MAX_TRANSFER; /* Mention here, use everywhere! */
+	/* Gives the number of altsettings. There is only one. */
+	gspca_dev->nbalt = 1;	/* use bulk transfer */
+	return 0;
+}
+
+/* Stop streaming and free the resources allocated by sd_start. */
+static void sd_stopN(struct gspca_dev *gspca_dev)
+{
+	struct sd *dev = (struct sd *) gspca_dev;
+
+	dev->streaming = 0;
+
+	/* wait for the work queue to terminate */
+	wait_for_completion(&dev->can_close);
+}
+
+/* called on streamoff with alt 0 and disconnect */
+static void sd_stop0(struct gspca_dev *gspca_dev)
+{
+	struct sd *dev = (struct sd *) gspca_dev;
+	sq905_command(gspca_dev->dev, SQ905_CLEAR);
+	kfree(dev->buffer);
+}
+
+/* this function is called at probe and resume time */
+static int sd_init(struct gspca_dev *gspca_dev)
+{
+	struct sd *dev = (struct sd *) gspca_dev;
+	INIT_DELAYED_WORK(&dev->wqe, sq905_dostream);
+
+	/* connect to the camera and read
+	 * the model ID and process that and put it away.
+	 */
+	sq905_command(gspca_dev->dev, SQ905_CLEAR);
+	sq905_command(gspca_dev->dev, SQ905_ID);
+	sq905_read_data(gspca_dev, gspca_dev->usb_buf, 4);
+	sq905_command(gspca_dev->dev, SQ905_CLEAR);
+	if (!memcmp(gspca_dev->usb_buf, "\x09\x05\x01\x19", 4)) {
+		dev->cam_model = SQ905_MODEL_POCK_CAM;
+		PDEBUG(D_CONF, "Model is SQ905_MODEL_POCK_CAM");
+	} else if (!memcmp(gspca_dev->usb_buf, "\x09\x05\x01\x32", 4)) {
+		dev->cam_model = SQ905_MODEL_MAGPIX;
+		PDEBUG(D_CONF, "Model is SQ905_MODEL_MAGPIX");
+	} else {
+		dev->cam_model = SQ905_MODEL_DEFAULT;
+		PDEBUG(D_CONF, "Model is SQ905_MODEL_DEFAULT");
+	}
+	return 0;
+}
+
+/* Set up for getting frames. */
+static int sd_start(struct gspca_dev *gspca_dev)
+{
+	struct sd *dev = (struct sd *) gspca_dev;
+
+	/* Various initializations. */
+	dev->buffer = kmalloc(SQ905_MAX_TRANSFER, GFP_KERNEL | GFP_DMA);
+	if (!dev->buffer) {
+		PDEBUG(D_ERR, "Couldn't allocate USB buffer\n");
+		return -ENOMEM;
+	}
+	init_completion(&dev->can_close);
+	dev->streaming = 1;
+
+	/* "Open the shutter" and set size, to start capture */
+	if (sq905_command(gspca_dev->dev, SQ905_CAPTURE_MED)) {
+		PDEBUG(D_ERR, "Start streaming command failed\n");
+		dev->streaming = 0;
+		return -EIO;
+	}
+	/* Start the workqueue function to do the streaming */
+	schedule_delayed_work(&dev->wqe, 1);
+
+	return 0;
+}
+
+/* Table of supported USB devices */
+static const __devinitdata struct usb_device_id device_table[] = {
+	{USB_DEVICE(0x2770, 0x9120)},
+	{}
+};
+
+MODULE_DEVICE_TABLE(usb, device_table);
+
+/* sub-driver description */
+static const struct sd_desc sd_desc = {
+	.name = MODULE_NAME,
+	.config = sd_config,
+	.init = sd_init,
+	.start = sd_start,
+	.stopN = sd_stopN,
+	.stop0 = sd_stop0,
+};
+
+/* -- device connect -- */
+static int sd_probe(struct usb_interface *intf,
+		const struct usb_device_id *id)
+{
+	return gspca_dev_probe(intf, id,
+			&sd_desc,
+			sizeof(struct sd),
+			THIS_MODULE);
+}
+
+static struct usb_driver sd_driver = {
+	.name = MODULE_NAME,
+	.id_table = device_table,
+	.probe = sd_probe,
+	.disconnect = gspca_disconnect,
+#ifdef CONFIG_PM
+	.suspend = gspca_suspend,
+	.resume = gspca_resume,
+#endif
+};
+
+/* -- module insert / remove -- */
+static int __init sd_mod_init(void)
+{
+	if (usb_register(&sd_driver) < 0)
+		return -1;
+	PDEBUG(D_PROBE, "registered");
+	return 0;
+}
+static void __exit sd_mod_exit(void)
+{
+	usb_deregister(&sd_driver);
+	PDEBUG(D_PROBE, "deregistered");
+}
+
+module_init(sd_mod_init);
+module_exit(sd_mod_exit);

--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [REVIEW] Driver for SQ-905 based cameras
  2009-01-01  0:33 [REVIEW] Driver for SQ-905 based cameras Adam Baker
@ 2009-01-01  6:11 ` Alexey Klimov
  2009-01-01 12:28 ` Hans de Goede
  2009-01-01 17:38 ` Jean-Francois Moine
  2 siblings, 0 replies; 7+ messages in thread
From: Alexey Klimov @ 2009-01-01  6:11 UTC (permalink / raw)
  To: Adam Baker; +Cc: video4linux-list, sqcam-devel, kilgota

Hi, Adam

May i tell small suggestion here ?

On Thu, 2009-01-01 at 00:33 +0000, Adam Baker wrote:
> Theodore Kilgore and I now have a driver for cameras based on the 
> SQ 905 chipset that is capable of producing images. It is based on gspca
> and uses libv4l. Issues so far are
> 
> 1) With the cameras used so far for testing the image is always upside down.
> It is known that there are cameras that have different sensor layouts but without
> a mechanism to communicate that layout to libv4l we can't do much more.
> (Yes I have read Hans de Geode's posts about this but wanted to have a real 
> driver to use as a basis before discussing further).
> 
> 2) The code is all using the gspca PDEBUG macros not dev_err / dev_warn 
> etc. As the rest of gspca seems to do the same I thought consistency was the 
> best option but will change this on request.
> 
> 3) There seem to be a limited selection of apps that work well with it even using 
> the LD_PRELOAD tricks in libv4l but those that don't seem to misbehave similarly 
> with a pac207 camera so I'm assumming the problem isn't with the sq905 
> sub-driver (e.g. xawtv is always giving a green image).
> 
> 4) Only a single resolution is supported. All sq905 cameras should support a
>  lower resolution and some also support a higher resolution but I see support for
>  that as something to worry about once the basic driver is accepted.
> 
> 5) The patch below doesn't have a signed off by line attached, partly because 
> I'm not sure the correct order to list signed-off-by for a patch with multiple authors 
> but also because I'm expecting some comments back before it gets accepted.

Well, just send Signed-off-by from all authors of patch with their valid
e-mails. I suppose number of authors is 2 ?

> 6) I've fixed all the errors thrown up by make checkpatch but I haven't yet 
> tried to run sparse on it.
> 
> The patch is against yesterday's gspca tree, changeset: 10164:6f3948c174c1
> 
> ---
> 
> diff -r 6f3948c174c1 linux/drivers/media/video/gspca/Kconfig
> --- a/linux/drivers/media/video/gspca/Kconfig	Wed Dec 31 18:33:53 2008 +0100
> +++ b/linux/drivers/media/video/gspca/Kconfig	Thu Jan 01 00:16:28 2009 +0000
> @@ -167,6 +167,15 @@ config USB_GSPCA_SPCA561
>  	  To compile this driver as a module, choose M here: the
>  	  module will be called gspca_spca561.
>  
> +config USB_GSPCA_SQ905
> +	tristate "SQ Technologies SQ905 based USB Camera Driver"
> +	depends on VIDEO_V4L2 && USB_GSPCA
> +	help
> +	  Say Y here if you want support for cameras based on the SQ905 chip.
> +
> +	  To compile this driver as a module, choose M here: the
> +	  module will be called gspca_sq905.
> +
>  config USB_GSPCA_STK014
>  	tristate "Syntek DV4000 (STK014) USB Camera Driver"
>  	depends on VIDEO_V4L2 && USB_GSPCA
> diff -r 6f3948c174c1 linux/drivers/media/video/gspca/Makefile
> --- a/linux/drivers/media/video/gspca/Makefile	Wed Dec 31 18:33:53 2008 +0100
> +++ b/linux/drivers/media/video/gspca/Makefile	Thu Jan 01 00:16:28 2009 +0000
> @@ -16,6 +16,7 @@ obj-$(CONFIG_USB_GSPCA_SPCA508) += gspca
>  obj-$(CONFIG_USB_GSPCA_SPCA508) += gspca_spca508.o
>  obj-$(CONFIG_USB_GSPCA_SPCA561) += gspca_spca561.o
>  obj-$(CONFIG_USB_GSPCA_SUNPLUS) += gspca_sunplus.o
> +obj-$(CONFIG_USB_GSPCA_SQ905)	+= gspca_sq905.o
>  obj-$(CONFIG_USB_GSPCA_STK014)	+= gspca_stk014.o
>  obj-$(CONFIG_USB_GSPCA_T613)	+= gspca_t613.o
>  obj-$(CONFIG_USB_GSPCA_TV8532)	+= gspca_tv8532.o
> @@ -39,6 +40,7 @@ gspca_spca506-objs		:= spca506.o
>  gspca_spca506-objs		:= spca506.o
>  gspca_spca508-objs		:= spca508.o
>  gspca_spca561-objs		:= spca561.o
> +gspca_sq905-objs		:= sq905.o
>  gspca_stk014-objs		:= stk014.o
>  gspca_sunplus-objs		:= sunplus.o
>  gspca_t613-objs			:= t613.o
> diff -r 6f3948c174c1 linux/drivers/media/video/gspca/sq905.c
> --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
> +++ b/linux/drivers/media/video/gspca/sq905.c	Thu Jan 01 00:16:28 2009 +0000
> @@ -0,0 +1,381 @@
> +/*
> + * SQ905 subdriver
> + *
> + * Copyright (C) 2008 Adam Baker and Theodore Kilgore
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * any later version.
> + *
> + * 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, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
> + */
> +
> +/*
> + * History and Acknowledgments
> + *
> + * The original Linux driver for SQ905 based cameras was written by
> + * Marcell Lengyel and furter developed by many other contributers
> + * and is available from http://sourceforge.net/projects/sqcam/
> + *
> + * This driver takes advantage of the reverse engineering work done for
> + * that driver and for libgphoto2 but shares no code with them.
> + *
> + * This driver has used as a base the finepix driver and other gspca
> + * based drivers and may still contain code fragments taken from those
> + * drivers.
> + */
> +
> +#define MODULE_NAME "sq905"

Looks like gspca wants this MODULE_NAME. As i know it's better when such
thing is unique..

> +
> +#include "gspca.h"
> +
> +MODULE_AUTHOR("Adam Baker <linux@baker-net.org.uk>, "
> +		"Theodore Kilgore <kilgota@auburn.edu>");
> +MODULE_DESCRIPTION("GSPCA/SQ905 USB Camera Driver");
> +MODULE_LICENSE("GPL");
> +
> +/* Default timeout, in ms */
> +#define SQ905_TIMEOUT (HZ / 10)

May be this question is stupid but do you really use SQ905_TIMEOUT ?
I can't find it.

> +
> +/* Maximum transfer size to use. The windows driver reads by chunks of
> + * 0x8000 bytes, so do the same. Note: reading more seems to work
> + * too. */
> +#define SQ905_MAX_TRANSFER 0x8000
> +#define FRAME_HEADER_LEN 64
> +
> +/* The known modes, or registers. These go in the "value" slot. */
> +
> +/* 00 is "none" obviously */
> +
> +#define SQ905_BULK_READ	0x03	/* precedes any bulk read */
> +#define SQ905_COMMAND	0x06	/* precedes the command codes below */
> +#define SQ905_PING	0x07	/* when reading an "idling" command */
> +#define SQ905_READ_DONE 0xc0    /* ack bulk read completed */
> +
> +/* Some command codes. These go in the "index" slot. */
> +
> +#define SQ905_ID      0xf0	/* asks for model string */
> +#define SQ905_CONFIG  0x20	/* gets photo alloc. table, not used here */
> +#define SQ905_DATA    0x30	/* accesses photo data, not used here */
> +#define SQ905_CLEAR   0xa0	/* clear everything */
> +#define SQ905_CAPTURE_LOW 0x60	/* Starts capture at 160x120 */
> +#define SQ905_CAPTURE_MED 0x61	/* Starts capture at 320x240 */
> +/* note that the capture command also controls the output dimensions */
> +/* 0x60 -> 160x120, 0x61 -> 320x240 0x62 -> 640x480 depends on camera */
> +/* 0x62 is not correct, at least for some cams. Should be 0x63 ? */
> +
> +
> +
> +/* Structure to hold all of our device specific stuff */
> +struct sd {
> +	struct gspca_dev gspca_dev;	/* !! must be the first item */
> +
> +	enum {
> +		SQ905_MODEL_DEFAULT,
> +		SQ905_MODEL_POCK_CAM,
> +		SQ905_MODEL_MAGPIX
> +	} cam_model;
> +
> +	/*
> +	 * Driver stuff
> +	 */
> +	__u8 *buffer;
> +	struct delayed_work wqe;
> +	struct completion can_close;
> +	int streaming;
> +};
> +
> +/* These cameras only support 320x200. Actually not true but good for a start*/
> +static struct v4l2_pix_format sq905_mode[1] = {
> +	{ 320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
> +		.bytesperline = 320,
> +		.sizeimage = 320 * 240,
> +		.colorspace = V4L2_COLORSPACE_SRGB,
> +		.priv = 0}
> +};
> +
> +static int sq905_command(struct usb_device *dev, __u16 index)
> +{
> +	__u8 status;
> +	int ret;
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_COMMAND, index, "\x0", 1, 500);
> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed (%d)",
> +			ret);

Why don't you use this:
		PDEBUG(D_ERR, "%s: usb_control_msg failed (%d)",
			__func__, ret);
?

> +		return -EIO;
> +	}
> +
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_PING, 0, &status, 1, 500);
> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed 2 (%d)",
> +			ret);
> +		return -EIO;
> +	}
> +
> +	return 0;
> +}
> +
> +static int sq905_ack_frame(struct usb_device *dev)
> +{
> +	int ret;
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_READ_DONE, 0, "\x0", 1, 500);
> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_ack_frame: usb_ctrl_msg failed (%d)", ret);

I believe it's better to write full name here: "usb_control_msg" instead
of "usb_ctrl_msg".

> +		return -EIO;
> +	}
> +
> +	return 0;
> +}
> +
> +static int
> +sq905_read_data(struct gspca_dev *gspca_dev, __u8 *data, int size)
> +{
> +	int ret;
> +	int act_len;
> +
> +	if (!data) {
> +		PDEBUG(D_ERR, "sq905_read_data: data pointer was NULL\n");
> +		return -EINVAL;
> +	}
> +
> +	ret = usb_control_msg(gspca_dev->dev,
> +			      usb_sndctrlpipe(gspca_dev->dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_BULK_READ, size, "\x0", 1, 500);
> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_read_data: usb_ctrl_msg failed (%d)", ret);

The same thing here.

> +		return -EIO;
> +	}
> +	ret = usb_bulk_msg(gspca_dev->dev,
> +			   usb_rcvbulkpipe(gspca_dev->dev, 0x81),
> +			   data, size, &act_len, 500);
> +	/* successful, it returns 0, otherwise  negative */
> +	if ((ret != 0) || (act_len != size)) {
> +		PDEBUG(D_ERR, "sq905_read_data: bulk read fail (%d) len %d/%d",
> +			ret, act_len, size);
> +		return -EIO;
> +	}
> +	return 0;
> +}
> +
> +/* This function is called as a workqueue function and runs whenever the camera
> + * is streaming data. Because it is a workqueue function it is allowed to sleep
> + * so we can use synchronous USB calls. There appears to be no reason to
> + * terminate before we stop streaming.
> + */
> +static void sq905_dostream(struct work_struct *work)
> +{
> +	struct sd *dev = container_of(work, struct sd, wqe.work);
> +	struct gspca_frame *frame;
> +	int bytes_left; /* bytes remaining in current frame. */
> +	int data_len;   /* size to use for the next read. */
> +	int header_read; /* true if we have already read the frame header. */
> +	int discarding; /* true if we failed to get space for frame. */
> +	int packet_type;
> +	__u8 *data;
> +
> +	while ((dev->gspca_dev.present) && (dev->streaming)) {
> +		/* request some data and then read it until we have
> +		 * a complete frame. */
> +		bytes_left = sq905_mode[0].sizeimage + FRAME_HEADER_LEN;
> +		header_read = 0;
> +		discarding = 0;
> +
> +		while (bytes_left > 0) {
> +			data_len = bytes_left > SQ905_MAX_TRANSFER  ?
> +				SQ905_MAX_TRANSFER : bytes_left;
> +			if (sq905_read_data(&dev->gspca_dev, dev->buffer,
> +					 data_len) == 0) {
> +				PDEBUG(D_STREAM,
> +					"Got %d bytes out of %d for frame",
> +					data_len, bytes_left);
> +				bytes_left -= data_len;
> +				data = dev->buffer;
> +				if (!header_read) {
> +					packet_type = FIRST_PACKET;
> +					/* The first 64 bytes of each frame are
> +					 * a header of unknown format */
> +					data += FRAME_HEADER_LEN;
> +					data_len -= FRAME_HEADER_LEN;
> +					header_read = 1;
> +				} else if (bytes_left == 0) {
> +					packet_type = LAST_PACKET;
> +				} else {
> +					packet_type = INTER_PACKET;
> +				}
> +				frame = gspca_get_i_frame(&dev->gspca_dev);
> +				if (frame &&  !discarding)
> +					gspca_frame_add(&dev->gspca_dev,
> +						packet_type, frame,
> +						data, data_len);
> +				else
> +					discarding = 1;
> +			} else {
> +				/* shut down if we got a USB error. */
> +				dev->streaming = 0;
> +			}
> +		}
> +		/* acknowledge the frame */
> +		sq905_ack_frame(dev->gspca_dev.dev);
> +	}
> +	complete(&dev->can_close);
> +}
> +
> +/* this function is called at probe time */
> +static int sd_config(struct gspca_dev *gspca_dev,
> +		const struct usb_device_id *id)
> +{
> +	struct cam *cam = &gspca_dev->cam;
> +
> +	cam->cam_mode = sq905_mode;
> +	cam->nmodes = 1;
> +	cam->bulk_size = SQ905_MAX_TRANSFER; /* Mention here, use everywhere! */
> +	/* Gives the number of altsettings. There is only one. */
> +	gspca_dev->nbalt = 1;	/* use bulk transfer */
> +	return 0;
> +}
> +
> +/* Stop streaming and free the resources allocated by sd_start. */
> +static void sd_stopN(struct gspca_dev *gspca_dev)
> +{
> +	struct sd *dev = (struct sd *) gspca_dev;
> +
> +	dev->streaming = 0;
> +
> +	/* wait for the work queue to terminate */
> +	wait_for_completion(&dev->can_close);
> +}
> +
> +/* called on streamoff with alt 0 and disconnect */
> +static void sd_stop0(struct gspca_dev *gspca_dev)
> +{
> +	struct sd *dev = (struct sd *) gspca_dev;
> +	sq905_command(gspca_dev->dev, SQ905_CLEAR);
> +	kfree(dev->buffer);
> +}
> +
> +/* this function is called at probe and resume time */
> +static int sd_init(struct gspca_dev *gspca_dev)
> +{
> +	struct sd *dev = (struct sd *) gspca_dev;
> +	INIT_DELAYED_WORK(&dev->wqe, sq905_dostream);
> +
> +	/* connect to the camera and read
> +	 * the model ID and process that and put it away.
> +	 */
> +	sq905_command(gspca_dev->dev, SQ905_CLEAR);
> +	sq905_command(gspca_dev->dev, SQ905_ID);
> +	sq905_read_data(gspca_dev, gspca_dev->usb_buf, 4);
> +	sq905_command(gspca_dev->dev, SQ905_CLEAR);
> +	if (!memcmp(gspca_dev->usb_buf, "\x09\x05\x01\x19", 4)) {
> +		dev->cam_model = SQ905_MODEL_POCK_CAM;
> +		PDEBUG(D_CONF, "Model is SQ905_MODEL_POCK_CAM");
> +	} else if (!memcmp(gspca_dev->usb_buf, "\x09\x05\x01\x32", 4)) {
> +		dev->cam_model = SQ905_MODEL_MAGPIX;
> +		PDEBUG(D_CONF, "Model is SQ905_MODEL_MAGPIX");
> +	} else {
> +		dev->cam_model = SQ905_MODEL_DEFAULT;
> +		PDEBUG(D_CONF, "Model is SQ905_MODEL_DEFAULT");

Why don't you make model name in PDEBUG being argument
(dev->cam_model) ?

> +	}
> +	return 0;
> +}
> +
> +/* Set up for getting frames. */
> +static int sd_start(struct gspca_dev *gspca_dev)
> +{
> +	struct sd *dev = (struct sd *) gspca_dev;
> +
> +	/* Various initializations. */
> +	dev->buffer = kmalloc(SQ905_MAX_TRANSFER, GFP_KERNEL | GFP_DMA);
> +	if (!dev->buffer) {
> +		PDEBUG(D_ERR, "Couldn't allocate USB buffer\n");
> +		return -ENOMEM;
> +	}
> +	init_completion(&dev->can_close);
> +	dev->streaming = 1;
> +
> +	/* "Open the shutter" and set size, to start capture */
> +	if (sq905_command(gspca_dev->dev, SQ905_CAPTURE_MED)) {
> +		PDEBUG(D_ERR, "Start streaming command failed\n");
> +		dev->streaming = 0;
> +		return -EIO;
> +	}
> +	/* Start the workqueue function to do the streaming */
> +	schedule_delayed_work(&dev->wqe, 1);
> +
> +	return 0;
> +}
> +
> +/* Table of supported USB devices */
> +static const __devinitdata struct usb_device_id device_table[] = {
> +	{USB_DEVICE(0x2770, 0x9120)},
> +	{}
> +};
> +
> +MODULE_DEVICE_TABLE(usb, device_table);
> +
> +/* sub-driver description */
> +static const struct sd_desc sd_desc = {
> +	.name = MODULE_NAME,
> +	.config = sd_config,
> +	.init = sd_init,
> +	.start = sd_start,
> +	.stopN = sd_stopN,
> +	.stop0 = sd_stop0,
> +};

It on you decision, but you can make it looks nicer,
for example like this:

.name	= MODULE_NAME,
.config = sd_config,
.init	= sd_init,
.start	= sd_start,
.stopN	= sd_stopN,
.stop0	= sd_stop0,


> +/* -- device connect -- */
> +static int sd_probe(struct usb_interface *intf,
> +		const struct usb_device_id *id)
> +{
> +	return gspca_dev_probe(intf, id,
> +			&sd_desc,
> +			sizeof(struct sd),
> +			THIS_MODULE);
> +}
> +
> +static struct usb_driver sd_driver = {
> +	.name = MODULE_NAME,
> +	.id_table = device_table,
> +	.probe = sd_probe,
> +	.disconnect = gspca_disconnect,
> +#ifdef CONFIG_PM
> +	.suspend = gspca_suspend,
> +	.resume = gspca_resume,
> +#endif
> +};

And here the same.

> +/* -- module insert / remove -- */
> +static int __init sd_mod_init(void)
> +{
> +	if (usb_register(&sd_driver) < 0)
> +		return -1;
> +	PDEBUG(D_PROBE, "registered");
> +	return 0;
> +}

Well, i'm not sure, but may be it's better to make:

int ret;
ret = usb_register();
if (ret < 0)
	return ret;

PDEBUG();
return ret;

What do you think, Adam ?
I didn't see any locks but i beleive that gspca framework handles it
correctly.

> +static void __exit sd_mod_exit(void)
> +{
> +	usb_deregister(&sd_driver);
> +	PDEBUG(D_PROBE, "deregistered");
> +}
> +
> +module_init(sd_mod_init);
> +module_exit(sd_mod_exit);
> 
> --
> video4linux-list mailing list
> Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
> https://www.redhat.com/mailman/listinfo/video4linux-list
-- 
Best regards, Klimov Alexey

--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [REVIEW] Driver for SQ-905 based cameras
  2009-01-01  0:33 [REVIEW] Driver for SQ-905 based cameras Adam Baker
  2009-01-01  6:11 ` Alexey Klimov
@ 2009-01-01 12:28 ` Hans de Goede
  2009-01-01 21:19   ` [sqcam-devel] " Adam Baker
  2009-01-01 17:38 ` Jean-Francois Moine
  2 siblings, 1 reply; 7+ messages in thread
From: Hans de Goede @ 2009-01-01 12:28 UTC (permalink / raw)
  To: Adam Baker; +Cc: video4linux-list, sqcam-devel, kilgota

Adam Baker wrote:
> Theodore Kilgore and I now have a driver for cameras based on the 
> SQ 905 chipset that is capable of producing images. It is based on gspca
> and uses libv4l. Issues so far are
> 
> 1) With the cameras used so far for testing the image is always upside down.
> It is known that there are cameras that have different sensor layouts but without
> a mechanism to communicate that layout to libv4l we can't do much more.
> (Yes I have read Hans de Geode's posts about this but wanted to have a real 
> driver to use as a basis before discussing further).
> 

So now that we have a real driver, any feedback on my proposal?

> 2) The code is all using the gspca PDEBUG macros not dev_err / dev_warn 
> etc. As the rest of gspca seems to do the same I thought consistency was the 
> best option but will change this on request.
> 
> 3) There seem to be a limited selection of apps that work well with it even using 
> the LD_PRELOAD tricks in libv4l but those that don't seem to misbehave similarly 
> with a pac207 camera so I'm assumming the problem isn't with the sq905 
> sub-driver (e.g. xawtv is always giving a green image).
> 

Some apps indeed are buggy, libv4l implements the v4lX API as documented. To 
stay with your example here is a fix for xawtv, which makes it work with libv4l:
http://cvs.fedoraproject.org/viewvc/devel/xawtv/xawtv-3.95-fixes.patch?revision=1.1

> 4) Only a single resolution is supported. All sq905 cameras should support a
>  lower resolution and some also support a higher resolution but I see support for
>  that as something to worry about once the basic driver is accepted.
> 

Ack.

<snip>

> +/* These cameras only support 320x200. Actually not true but good for a start*/
> +static struct v4l2_pix_format sq905_mode[1] = {
> +	{ 320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
> +		.bytesperline = 320,
> +		.sizeimage = 320 * 240,
> +		.colorspace = V4L2_COLORSPACE_SRGB,
> +		.priv = 0}
> +};
> +

The comment says 320x200, the code 320x240.

> +static int sq905_command(struct usb_device *dev, __u16 index)
> +{
> +	__u8 status;
> +	int ret;
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_COMMAND, index, "\x0", 1, 500);

"\x0" will point to const memory, this is not allowed as a buffer passed to 
usb_control_msg, instead you should use a r/w buffer suitable for DMA. We've 
got gspca_dev->usb_buf for this.

> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed (%d)",
> +			ret);
> +		return -EIO;
> +	}
> +
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_PING, 0, &status, 1, 500);

status is on the stack, this is not necessarily dma-able, use 
gspca_dev->usb_buf instead. Shouldn't the resulting status be checked?

> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed 2 (%d)",
> +			ret);
> +		return -EIO;
> +	}
> +
> +	return 0;
> +}
> +
> +static int sq905_ack_frame(struct usb_device *dev)
> +{
> +	int ret;
> +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_READ_DONE, 0, "\x0", 1, 500);

"\x0" will point to const memory, this is not allowed as a buffer passed to 
usb_control_msg, instead you should use a r/w buffer suitable for DMA. We've 
got gspca_dev->usb_buf for this.

As the above function is called from a workqueue you will need to take the 
gspca_dev->usb_lock while doing the usb_control_msg (and while using 
gspca_dev->usb_buf) as this might race with for example v4l2 controls code also 
using the controlpipe.

> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_ack_frame: usb_ctrl_msg failed (%d)", ret);
> +		return -EIO;
> +	}
> +
> +	return 0;
> +}
> +
> +static int
> +sq905_read_data(struct gspca_dev *gspca_dev, __u8 *data, int size)
> +{
> +	int ret;
> +	int act_len;
> +
> +	if (!data) {
> +		PDEBUG(D_ERR, "sq905_read_data: data pointer was NULL\n");
> +		return -EINVAL;
> +	}
> +
> +	ret = usb_control_msg(gspca_dev->dev,
> +			      usb_sndctrlpipe(gspca_dev->dev, 0),
> +			      USB_REQ_SYNCH_FRAME,                /* request */
> +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> +			      SQ905_BULK_READ, size, "\x0", 1, 500);

"\x0" will point to const memory, this is not allowed as a buffer passed to 
usb_control_msg, instead you should use a r/w buffer suitable for DMA. We've 
got gspca_dev->usb_buf for this.

As the above function is called from a workqueue you will need to take the 
gspca_dev->usb_lock while doing the usb_control_msg (and while using 
gspca_dev->usb_buf) as this might race with for example v4l2 controls code also 
using the controlpipe.

> +	if (ret != 1) {
> +		PDEBUG(D_ERR, "sq905_read_data: usb_ctrl_msg failed (%d)", ret);
> +		return -EIO;
> +	}
> +	ret = usb_bulk_msg(gspca_dev->dev,
> +			   usb_rcvbulkpipe(gspca_dev->dev, 0x81),
> +			   data, size, &act_len, 500);
> +	/* successful, it returns 0, otherwise  negative */
> +	if ((ret != 0) || (act_len != size)) {
> +		PDEBUG(D_ERR, "sq905_read_data: bulk read fail (%d) len %d/%d",
> +			ret, act_len, size);
> +		return -EIO;
> +	}
> +	return 0;
> +}
> +

<snip>

Thats all,

Regards,

Hans

--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [REVIEW] Driver for SQ-905 based cameras
  2009-01-01  0:33 [REVIEW] Driver for SQ-905 based cameras Adam Baker
  2009-01-01  6:11 ` Alexey Klimov
  2009-01-01 12:28 ` Hans de Goede
@ 2009-01-01 17:38 ` Jean-Francois Moine
       [not found]   ` <Pine.LNX.4.64.0901011220230.18838@banach.math.auburn.edu>
  2 siblings, 1 reply; 7+ messages in thread
From: Jean-Francois Moine @ 2009-01-01 17:38 UTC (permalink / raw)
  To: Adam Baker; +Cc: video4linux-list, sqcam-devel, kilgota

On Thu, 2009-01-01 at 00:33 +0000, Adam Baker wrote:
> Theodore Kilgore and I now have a driver for cameras based on the 
> SQ 905 chipset that is capable of producing images. It is based on gspca
	[snip]

Fine, but...

+ * This driver has used as a base the finepix driver and other gspca
+ * based drivers and may still contain code fragments taken from those
+ * drivers.

You did not look carefully at the finepix subdriver. Its webcams work
quite the same as yours, i.e. they ask for a control message to start
the bulk image transfer and an other control message to ack the
reception of the image. For that, the finepix implements a state machine
running at interrupt level or in the system work queue. All USB
exchanges are asynchronous, so that the system thread is not blocked.
Instead, you do a loop in this thread: then, this one cannot be used for
any other purpose!

I see only one alternative to do the image transfer:
- either implement a state machine as it is done in finepix,
- or have a specific work queue to handle the USB exchanges.

Best regards.

-- 
Ken ar c'hentañ |             ** Breizh ha Linux atav! **
Jef             |               http://moinejf.free.fr/


--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [REVIEW] Driver for SQ-905 based cameras
       [not found]   ` <Pine.LNX.4.64.0901011220230.18838@banach.math.auburn.edu>
@ 2009-01-01 20:48     ` Adam Baker
  0 siblings, 0 replies; 7+ messages in thread
From: Adam Baker @ 2009-01-01 20:48 UTC (permalink / raw)
  To: kilgota; +Cc: video4linux-list, sqcam-devel

On Thursday 01 January 2009, kilgota@banach.math.auburn.edu wrote:
> On Thu, 1 Jan 2009, Jean-Francois Moine wrote:

> > You did not look carefully at the finepix subdriver.
>
> Actually, I think that both of us did. There are certain diferences which
> are rather crucial and which led to the choice of doing things
> differently. If there are problems with our approach, then I am certainly
> open to suggestions, and I would think that Adam is, too. But perhaps it
> is good to recognize those differences, first.
>

Theodore and I did discuss for a while whether we needed to implement a 
finepix like state machine but thought the workqueue based design was 
simpler. It is certainly possible and I'd got a reasonable way through doing 
it before thinking that just looping in the workqueue would be easier.

> Its webcams work
>
> > quite the same as yours,
>
> No, they do not. That is the underlying problem.
>
> i.e. they ask for a control message to start
>
> > the bulk image transfer and an other control message to ack the
> > reception of the image.
>
> The problem is, this is not exactly the case. What really happens is the
> following, which you could perhaps help us to reconcile with the finepix.c
> way of doing things:
>
> To start, it seems the sensor is turned on. Then, to get each frame the
> sequence is the following:
>
> 1. By means of a control command, request data, up to max size of 0x8000,
> or whatever remains of te data for the given frame, whichever is less.
>
> 2. read the requested data (exact size of which has previously been
> specified).
>
> Repeat steps 1 and 2 until the frame is completely downloaded. In
> particular, in step (1) it is necessary to calculate and to request
> precisely the amount of data which can be obtained, and in step (2) the
> quantity of data which gets read is precisely that amount which has been
> requested in step (1). The Finepix cameras AFAICT permit one just to go
> ahead and request the max amount of data each time, and permit a short
> read. The SQ905 cameras will not let you do that. They will not.
>
> Then, finally, when the frame is completely downloaded one sends an ACK
> command which presumably lets the camera to refresh its memory with a new
> image.
>
> > For that, the finepix implements a state machine
> > running at interrupt level or in the system work queue. All USB
> > exchanges are asynchronous, so that the system thread is not blocked.
> > Instead, you do a loop in this thread: then, this one cannot be used for
> > any other purpose!
> >
> > I see only one alternative to do the image transfer:
> > - either implement a state machine as it is done in finepix,
>
> That would be much more complicated here than it is in the finepix driver,
> because of the need to keep at all times a running tally of the size
> remaining. Also because of the fact that here each individual read must be
> preceded by a command specifying the exact size of the coming read.
>

It isn't actually that much more complicated to keep track of the length - I 
had some code that had almost done it but the way data is requested does lead 
to more states hence a more complex driver.

> > - or have a specific work queue to handle the USB exchanges.
>
> Perhaps that is a better idea. Essentially, that is what was being
> attempted and you say it has not been correctly carried out. Suggestions
> as to how to rearrange things so as to do this are welcome.
>

I can't see what could be using this workqueue other than the USB exchanges - 
it is private to the sub driver and there is a per device instance of it in 
struct sd. What other than the call to schedule_delayed_work at the end of 
sd_start could try to use it?

Adam Baker


--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [sqcam-devel] [REVIEW] Driver for SQ-905 based cameras
  2009-01-01 12:28 ` Hans de Goede
@ 2009-01-01 21:19   ` Adam Baker
       [not found]     ` <Pine.LNX.4.64.0901011539120.19217@banach.math.auburn.edu>
  0 siblings, 1 reply; 7+ messages in thread
From: Adam Baker @ 2009-01-01 21:19 UTC (permalink / raw)
  To: sqcam-devel; +Cc: video4linux-list, kilgota

On Thursday 01 January 2009, Hans de Goede wrote:
> Adam Baker wrote:
> > Theodore Kilgore and I now have a driver for cameras based on the
> > SQ 905 chipset that is capable of producing images. It is based on gspca
> > and uses libv4l. Issues so far are
> >
> > 1) With the cameras used so far for testing the image is always upside
> > down. It is known that there are cameras that have different sensor
> > layouts but without a mechanism to communicate that layout to libv4l we
> > can't do much more. (Yes I have read Hans de Geode's posts about this but
> > wanted to have a real driver to use as a basis before discussing
> > further).
>
> So now that we have a real driver, any feedback on my proposal?

I'll re-read it and comment more fully later but I'm currently wondering if 
the driver could provide the required shared memory making it available to 
libv4l via an mmap call to ensure the memory lifetime matches the driver 
lifetime.

<snip>
>
> > +/* These cameras only support 320x200. Actually not true but good for a
> > start*/ +static struct v4l2_pix_format sq905_mode[1] = {
> > +	{ 320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
> > +		.bytesperline = 320,
> > +		.sizeimage = 320 * 240,
> > +		.colorspace = V4L2_COLORSPACE_SRGB,
> > +		.priv = 0}
> > +};
> > +
>
> The comment says 320x200, the code 320x240.

I'll fix the comment

>
> > +static int sq905_command(struct usb_device *dev, __u16 index)
> > +{
> > +	__u8 status;
> > +	int ret;
> > +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> > +			      USB_REQ_SYNCH_FRAME,                /* request */
> > +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> > +			      SQ905_COMMAND, index, "\x0", 1, 500);
>
> "\x0" will point to const memory, this is not allowed as a buffer passed to
> usb_control_msg, instead you should use a r/w buffer suitable for DMA.
> We've got gspca_dev->usb_buf for this.
>

Good point - I'll fix it

> > +	if (ret != 1) {
> > +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed (%d)",
> > +			ret);
> > +		return -EIO;
> > +	}
> > +
> > +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> > +			      USB_REQ_SYNCH_FRAME,                /* request */
> > +			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> > +			      SQ905_PING, 0, &status, 1, 500);
>
> status is on the stack, this is not necessarily dma-able, use
> gspca_dev->usb_buf instead. Shouldn't the resulting status be checked?

Good point re DMA. The meaning of status is unknown - maybe there should be a 
comment to that effect.

>
> > +	if (ret != 1) {
> > +		PDEBUG(D_ERR, "sq905_command: usb_control_msg failed 2 (%d)",
> > +			ret);
> > +		return -EIO;
> > +	}
> > +
> > +	return 0;
> > +}
> > +
> > +static int sq905_ack_frame(struct usb_device *dev)
> > +{
> > +	int ret;
> > +	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
> > +			      USB_REQ_SYNCH_FRAME,                /* request */
> > +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> > +			      SQ905_READ_DONE, 0, "\x0", 1, 500);
>
> "\x0" will point to const memory, this is not allowed as a buffer passed to
> usb_control_msg, instead you should use a r/w buffer suitable for DMA.
> We've got gspca_dev->usb_buf for this.

Ack

>
> As the above function is called from a workqueue you will need to take the
> gspca_dev->usb_lock while doing the usb_control_msg (and while using
> gspca_dev->usb_buf) as this might race with for example v4l2 controls code
> also using the controlpipe.

It might if the camera had any controls. Maybe a comment to that effect is 
appropriate.

>
> > +	if (ret != 1) {
> > +		PDEBUG(D_ERR, "sq905_ack_frame: usb_ctrl_msg failed (%d)", ret);
> > +		return -EIO;
> > +	}
> > +
> > +	return 0;
> > +}
> > +
> > +static int
> > +sq905_read_data(struct gspca_dev *gspca_dev, __u8 *data, int size)
> > +{
> > +	int ret;
> > +	int act_len;
> > +
> > +	if (!data) {
> > +		PDEBUG(D_ERR, "sq905_read_data: data pointer was NULL\n");
> > +		return -EINVAL;
> > +	}
> > +
> > +	ret = usb_control_msg(gspca_dev->dev,
> > +			      usb_sndctrlpipe(gspca_dev->dev, 0),
> > +			      USB_REQ_SYNCH_FRAME,                /* request */
> > +			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
> > +			      SQ905_BULK_READ, size, "\x0", 1, 500);
>
> "\x0" will point to const memory, this is not allowed as a buffer passed to
> usb_control_msg, instead you should use a r/w buffer suitable for DMA.
> We've got gspca_dev->usb_buf for this.

Ack

>
> As the above function is called from a workqueue you will need to take the
> gspca_dev->usb_lock while doing the usb_control_msg (and while using
> gspca_dev->usb_buf) as this might race with for example v4l2 controls code
> also using the controlpipe.

As above

>
> > +	if (ret != 1) {
> > +		PDEBUG(D_ERR, "sq905_read_data: usb_ctrl_msg failed (%d)", ret);
> > +		return -EIO;
> > +	}
> > +	ret = usb_bulk_msg(gspca_dev->dev,
> > +			   usb_rcvbulkpipe(gspca_dev->dev, 0x81),
> > +			   data, size, &act_len, 500);
> > +	/* successful, it returns 0, otherwise  negative */
> > +	if ((ret != 0) || (act_len != size)) {
> > +		PDEBUG(D_ERR, "sq905_read_data: bulk read fail (%d) len %d/%d",
> > +			ret, act_len, size);
> > +		return -EIO;
> > +	}
> > +	return 0;
> > +}
> > +
>
> <snip>
>
> Thats all,

Thanks.

Adam.



--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

* Re: [sqcam-devel] [REVIEW] Driver for SQ-905 based cameras
       [not found]     ` <Pine.LNX.4.64.0901011539120.19217@banach.math.auburn.edu>
@ 2009-01-02  7:55       ` Hans de Goede
  0 siblings, 0 replies; 7+ messages in thread
From: Hans de Goede @ 2009-01-02  7:55 UTC (permalink / raw)
  To: kilgota; +Cc: video4linux-list, sqcam-devel

kilgota@banach.math.auburn.edu wrote:
> 
> 
> On Thu, 1 Jan 2009, Adam Baker wrote:
> 
>> On Thursday 01 January 2009, Hans de Goede wrote:
> 
>>>
>>> "\x0" will point to const memory, this is not allowed as a buffer 
>>> passed to
>>> usb_control_msg, instead you should use a r/w buffer suitable for DMA.
>>> We've got gspca_dev->usb_buf for this.
> 
> Perhaps my ignorance is showing here. If one actually specifies a value 
> to put into that slot, then why does it "point to const memory" and if 
> so why is that a sin? Sorry if you think this is a dumb question, but I 
> am a bit new to doing this kind of device support at the kernel level. 
> In userspace stuff like libgphoto2 such things are obviously of much 
> less significance.
> 

Well for one const memory is read only and usb_control_msg might try to write 
to it. Another problem is that usb_control_msg() needs a dma-able buffer. In 
kernelspace not all memory is equal. In this case the memory needs to match 
certain alignment criteria and might need to be in a certain physical address 
range (ISA for example can not do dma to physical addresses above 16 megabyte, 
32 bit PCI devices cannot do dma above 4 Gigabyte, etc.).

Regards,

Hans

--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list

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

end of thread, other threads:[~2009-01-02  7:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-01  0:33 [REVIEW] Driver for SQ-905 based cameras Adam Baker
2009-01-01  6:11 ` Alexey Klimov
2009-01-01 12:28 ` Hans de Goede
2009-01-01 21:19   ` [sqcam-devel] " Adam Baker
     [not found]     ` <Pine.LNX.4.64.0901011539120.19217@banach.math.auburn.edu>
2009-01-02  7:55       ` Hans de Goede
2009-01-01 17:38 ` Jean-Francois Moine
     [not found]   ` <Pine.LNX.4.64.0901011220230.18838@banach.math.auburn.edu>
2009-01-01 20:48     ` Adam Baker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).