1 /***************************************************************************
2 * V4L2 driver for ET61X[12]51 PC Camera Controllers *
4 * Copyright (C) 2006-2007 by Luca Risolia <luca.risolia@studio.unibo.it> *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
19 ***************************************************************************/
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/kernel.h>
24 #include <linux/param.h>
25 #include <linux/errno.h>
26 #include <linux/slab.h>
27 #include <linux/device.h>
29 #include <linux/delay.h>
30 #include <linux/compiler.h>
31 #include <linux/ioctl.h>
32 #include <linux/poll.h>
33 #include <linux/stat.h>
35 #include <linux/vmalloc.h>
36 #include <linux/page-flags.h>
37 #include <linux/byteorder/generic.h>
39 #include <asm/uaccess.h>
43 /*****************************************************************************/
45 #define ET61X251_MODULE_NAME "V4L2 driver for ET61X[12]51 " \
46 "PC Camera Controllers"
47 #define ET61X251_MODULE_AUTHOR "(C) 2006-2007 Luca Risolia"
48 #define ET61X251_AUTHOR_EMAIL "<luca.risolia@studio.unibo.it>"
49 #define ET61X251_MODULE_LICENSE "GPL"
50 #define ET61X251_MODULE_VERSION "1:1.09"
51 #define ET61X251_MODULE_VERSION_CODE KERNEL_VERSION(1, 1, 9)
53 /*****************************************************************************/
55 MODULE_DEVICE_TABLE(usb, et61x251_id_table);
57 MODULE_AUTHOR(ET61X251_MODULE_AUTHOR " " ET61X251_AUTHOR_EMAIL);
58 MODULE_DESCRIPTION(ET61X251_MODULE_NAME);
59 MODULE_VERSION(ET61X251_MODULE_VERSION);
60 MODULE_LICENSE(ET61X251_MODULE_LICENSE);
62 static short video_nr[] = {[0 ... ET61X251_MAX_DEVICES-1] = -1};
63 module_param_array(video_nr, short, NULL, 0444);
64 MODULE_PARM_DESC(video_nr,
65 "\n<-1|n[,...]> Specify V4L2 minor mode number."
66 "\n -1 = use next available (default)"
67 "\n n = use minor number n (integer >= 0)"
68 "\nYou can specify up to "
69 __MODULE_STRING(ET61X251_MAX_DEVICES) " cameras this way."
71 "\nvideo_nr=-1,2,-1 would assign minor number 2 to"
72 "\nthe second registered camera and use auto for the first"
73 "\none and for every other camera."
76 static short force_munmap[] = {[0 ... ET61X251_MAX_DEVICES-1] =
77 ET61X251_FORCE_MUNMAP};
78 module_param_array(force_munmap, bool, NULL, 0444);
79 MODULE_PARM_DESC(force_munmap,
80 "\n<0|1[,...]> Force the application to unmap previously"
81 "\nmapped buffer memory before calling any VIDIOC_S_CROP or"
82 "\nVIDIOC_S_FMT ioctl's. Not all the applications support"
83 "\nthis feature. This parameter is specific for each"
85 "\n 0 = do not force memory unmapping"
86 "\n 1 = force memory unmapping (save memory)"
87 "\nDefault value is "__MODULE_STRING(ET61X251_FORCE_MUNMAP)"."
90 static unsigned int frame_timeout[] = {[0 ... ET61X251_MAX_DEVICES-1] =
91 ET61X251_FRAME_TIMEOUT};
92 module_param_array(frame_timeout, uint, NULL, 0644);
93 MODULE_PARM_DESC(frame_timeout,
94 "\n<n[,...]> Timeout for a video frame in seconds."
95 "\nThis parameter is specific for each detected camera."
97 __MODULE_STRING(ET61X251_FRAME_TIMEOUT)"."
100 #ifdef ET61X251_DEBUG
101 static unsigned short debug = ET61X251_DEBUG_LEVEL;
102 module_param(debug, ushort, 0644);
103 MODULE_PARM_DESC(debug,
104 "\n<n> Debugging information level, from 0 to 3:"
105 "\n0 = none (use carefully)"
106 "\n1 = critical errors"
107 "\n2 = significant informations"
108 "\n3 = more verbose messages"
109 "\nLevel 3 is useful for testing only, when only "
110 "one device is used."
111 "\nDefault value is "__MODULE_STRING(ET61X251_DEBUG_LEVEL)"."
115 /*****************************************************************************/
118 et61x251_request_buffers(struct et61x251_device* cam, u32 count,
119 enum et61x251_io_method io)
121 struct v4l2_pix_format* p = &(cam->sensor.pix_format);
122 struct v4l2_rect* r = &(cam->sensor.cropcap.bounds);
123 const size_t imagesize = cam->module_param.force_munmap ||
125 (p->width * p->height * p->priv) / 8 :
126 (r->width * r->height * p->priv) / 8;
130 if (count > ET61X251_MAX_FRAMES)
131 count = ET61X251_MAX_FRAMES;
133 cam->nbuffers = count;
134 while (cam->nbuffers > 0) {
135 if ((buff = vmalloc_32_user(cam->nbuffers *
136 PAGE_ALIGN(imagesize))))
141 for (i = 0; i < cam->nbuffers; i++) {
142 cam->frame[i].bufmem = buff + i*PAGE_ALIGN(imagesize);
143 cam->frame[i].buf.index = i;
144 cam->frame[i].buf.m.offset = i*PAGE_ALIGN(imagesize);
145 cam->frame[i].buf.length = imagesize;
146 cam->frame[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
147 cam->frame[i].buf.sequence = 0;
148 cam->frame[i].buf.field = V4L2_FIELD_NONE;
149 cam->frame[i].buf.memory = V4L2_MEMORY_MMAP;
150 cam->frame[i].buf.flags = 0;
153 return cam->nbuffers;
157 static void et61x251_release_buffers(struct et61x251_device* cam)
160 vfree(cam->frame[0].bufmem);
163 cam->frame_current = NULL;
167 static void et61x251_empty_framequeues(struct et61x251_device* cam)
171 INIT_LIST_HEAD(&cam->inqueue);
172 INIT_LIST_HEAD(&cam->outqueue);
174 for (i = 0; i < ET61X251_MAX_FRAMES; i++) {
175 cam->frame[i].state = F_UNUSED;
176 cam->frame[i].buf.bytesused = 0;
181 static void et61x251_requeue_outqueue(struct et61x251_device* cam)
183 struct et61x251_frame_t *i;
185 list_for_each_entry(i, &cam->outqueue, frame) {
187 list_add(&i->frame, &cam->inqueue);
190 INIT_LIST_HEAD(&cam->outqueue);
194 static void et61x251_queue_unusedframes(struct et61x251_device* cam)
196 unsigned long lock_flags;
199 for (i = 0; i < cam->nbuffers; i++)
200 if (cam->frame[i].state == F_UNUSED) {
201 cam->frame[i].state = F_QUEUED;
202 spin_lock_irqsave(&cam->queue_lock, lock_flags);
203 list_add_tail(&cam->frame[i].frame, &cam->inqueue);
204 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
208 /*****************************************************************************/
210 int et61x251_write_reg(struct et61x251_device* cam, u8 value, u16 index)
212 struct usb_device* udev = cam->usbdev;
213 u8* buff = cam->control_buffer;
218 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
219 0, index, buff, 1, ET61X251_CTRL_TIMEOUT);
221 DBG(3, "Failed to write a register (value 0x%02X, index "
222 "0x%02X, error %d)", value, index, res);
230 int et61x251_read_reg(struct et61x251_device* cam, u16 index)
232 struct usb_device* udev = cam->usbdev;
233 u8* buff = cam->control_buffer;
236 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x00, 0xc1,
237 0, index, buff, 1, ET61X251_CTRL_TIMEOUT);
239 DBG(3, "Failed to read a register (index 0x%02X, error %d)",
242 return (res >= 0) ? (int)(*buff) : -1;
247 et61x251_i2c_wait(struct et61x251_device* cam,
248 const struct et61x251_sensor* sensor)
252 for (i = 1; i <= 8; i++) {
253 if (sensor->interface == ET61X251_I2C_3WIRES) {
254 r = et61x251_read_reg(cam, 0x8e);
255 if (!(r & 0x02) && (r >= 0))
258 r = et61x251_read_reg(cam, 0x8b);
259 if (!(r & 0x01) && (r >= 0))
264 udelay(8*8); /* minimum for sensors at 400kHz */
272 et61x251_i2c_try_read(struct et61x251_device* cam,
273 const struct et61x251_sensor* sensor, u8 address)
275 struct usb_device* udev = cam->usbdev;
276 u8* data = cam->control_buffer;
280 data[1] = cam->sensor.i2c_slave_id;
281 data[2] = cam->sensor.rsta | 0x10;
282 data[3] = !(et61x251_read_reg(cam, 0x8b) & 0x02);
283 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
284 0, 0x88, data, 4, ET61X251_CTRL_TIMEOUT);
288 err += et61x251_i2c_wait(cam, sensor);
290 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x00, 0xc1,
291 0, 0x80, data, 8, ET61X251_CTRL_TIMEOUT);
296 DBG(3, "I2C read failed for %s image sensor", sensor->name);
298 PDBGG("I2C read: address 0x%02X, value: 0x%02X", address, data[0]);
300 return err ? -1 : (int)data[0];
305 et61x251_i2c_try_write(struct et61x251_device* cam,
306 const struct et61x251_sensor* sensor, u8 address,
309 struct usb_device* udev = cam->usbdev;
310 u8* data = cam->control_buffer;
314 data[1] = cam->sensor.i2c_slave_id;
315 data[2] = cam->sensor.rsta | 0x12;
316 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
317 0, 0x88, data, 3, ET61X251_CTRL_TIMEOUT);
322 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
323 0, 0x80, data, 1, ET61X251_CTRL_TIMEOUT);
327 err += et61x251_i2c_wait(cam, sensor);
330 DBG(3, "I2C write failed for %s image sensor", sensor->name);
332 PDBGG("I2C write: address 0x%02X, value: 0x%02X", address, value);
339 et61x251_i2c_raw_write(struct et61x251_device* cam, u8 n, u8 data1, u8 data2,
340 u8 data3, u8 data4, u8 data5, u8 data6, u8 data7,
341 u8 data8, u8 address)
343 struct usb_device* udev = cam->usbdev;
344 u8* data = cam->control_buffer;
354 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
355 0, 0x81, data, n-1, ET61X251_CTRL_TIMEOUT);
360 data[1] = cam->sensor.i2c_slave_id;
361 data[2] = cam->sensor.rsta | 0x02 | (n << 4);
362 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
363 0, 0x88, data, 3, ET61X251_CTRL_TIMEOUT);
367 /* Start writing through the serial interface */
369 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
370 0, 0x80, data, 1, ET61X251_CTRL_TIMEOUT);
374 err += et61x251_i2c_wait(cam, &cam->sensor);
377 DBG(3, "I2C raw write failed for %s image sensor",
380 PDBGG("I2C raw write: %u bytes, address = 0x%02X, data1 = 0x%02X, "
381 "data2 = 0x%02X, data3 = 0x%02X, data4 = 0x%02X, data5 = 0x%02X,"
382 " data6 = 0x%02X, data7 = 0x%02X, data8 = 0x%02X", n, address,
383 data1, data2, data3, data4, data5, data6, data7, data8);
390 int et61x251_i2c_read(struct et61x251_device* cam, u8 address)
392 return et61x251_i2c_try_read(cam, &cam->sensor, address);
396 int et61x251_i2c_write(struct et61x251_device* cam, u8 address, u8 value)
398 return et61x251_i2c_try_write(cam, &cam->sensor, address, value);
401 /*****************************************************************************/
403 static void et61x251_urb_complete(struct urb *urb)
405 struct et61x251_device* cam = urb->context;
406 struct et61x251_frame_t** f;
411 if (urb->status == -ENOENT)
414 f = &cam->frame_current;
416 if (cam->stream == STREAM_INTERRUPT) {
417 cam->stream = STREAM_OFF;
419 (*f)->state = F_QUEUED;
420 DBG(3, "Stream interrupted");
421 wake_up(&cam->wait_stream);
424 if (cam->state & DEV_DISCONNECTED)
427 if (cam->state & DEV_MISCONFIGURED) {
428 wake_up_interruptible(&cam->wait_frame);
432 if (cam->stream == STREAM_OFF || list_empty(&cam->inqueue))
436 (*f) = list_entry(cam->inqueue.next, struct et61x251_frame_t,
439 imagesize = (cam->sensor.pix_format.width *
440 cam->sensor.pix_format.height *
441 cam->sensor.pix_format.priv) / 8;
443 for (i = 0; i < urb->number_of_packets; i++) {
444 unsigned int len, status;
447 const u8 VOID_BYTES = 6;
450 len = urb->iso_frame_desc[i].actual_length;
451 status = urb->iso_frame_desc[i].status;
452 pos = urb->iso_frame_desc[i].offset + urb->transfer_buffer;
455 DBG(3, "Error in isochronous frame");
456 (*f)->state = F_ERROR;
462 sof = ((*b1 & 0x3f) == 63);
463 imglen = ((*b1 & 0xc0) << 2) | *b2;
465 PDBGG("Isochrnous frame: length %u, #%u i, image length %zu",
468 if ((*f)->state == F_QUEUED || (*f)->state == F_ERROR)
471 (*f)->state = F_GRABBING;
472 (*f)->buf.bytesused = 0;
473 do_gettimeofday(&(*f)->buf.timestamp);
475 DBG(3, "SOF detected: new video frame");
478 if ((*f)->state == F_GRABBING) {
479 if (sof && (*f)->buf.bytesused) {
480 if (cam->sensor.pix_format.pixelformat ==
481 V4L2_PIX_FMT_ET61X251)
484 DBG(3, "Not expected SOF detected "
486 (unsigned long)(*f)->buf.bytesused);
487 (*f)->state = F_ERROR;
492 if ((*f)->buf.bytesused + imglen > imagesize) {
493 DBG(3, "Video frame size exceeded");
494 (*f)->state = F_ERROR;
500 memcpy((*f)->bufmem+(*f)->buf.bytesused, pos, imglen);
501 (*f)->buf.bytesused += imglen;
503 if ((*f)->buf.bytesused == imagesize) {
506 b = (*f)->buf.bytesused;
507 (*f)->state = F_DONE;
508 (*f)->buf.sequence= ++cam->frame_count;
509 spin_lock(&cam->queue_lock);
510 list_move_tail(&(*f)->frame, &cam->outqueue);
511 if (!list_empty(&cam->inqueue))
512 (*f) = list_entry(cam->inqueue.next,
513 struct et61x251_frame_t,
517 spin_unlock(&cam->queue_lock);
518 DBG(3, "Video frame captured: : %lu bytes",
525 cam->sensor.pix_format.pixelformat ==
526 V4L2_PIX_FMT_ET61X251)
533 urb->dev = cam->usbdev;
534 err = usb_submit_urb(urb, GFP_ATOMIC);
535 if (err < 0 && err != -EPERM) {
536 cam->state |= DEV_MISCONFIGURED;
537 DBG(1, "usb_submit_urb() failed");
540 wake_up_interruptible(&cam->wait_frame);
544 static int et61x251_start_transfer(struct et61x251_device* cam)
546 struct usb_device *udev = cam->usbdev;
548 struct usb_host_interface* altsetting = usb_altnum_to_altsetting(
549 usb_ifnum_to_if(udev, 0),
550 ET61X251_ALTERNATE_SETTING);
551 const unsigned int psz = le16_to_cpu(altsetting->
552 endpoint[0].desc.wMaxPacketSize);
556 for (i = 0; i < ET61X251_URBS; i++) {
557 cam->transfer_buffer[i] = kzalloc(ET61X251_ISO_PACKETS * psz,
559 if (!cam->transfer_buffer[i]) {
561 DBG(1, "Not enough memory");
566 for (i = 0; i < ET61X251_URBS; i++) {
567 urb = usb_alloc_urb(ET61X251_ISO_PACKETS, GFP_KERNEL);
571 DBG(1, "usb_alloc_urb() failed");
576 urb->pipe = usb_rcvisocpipe(udev, 1);
577 urb->transfer_flags = URB_ISO_ASAP;
578 urb->number_of_packets = ET61X251_ISO_PACKETS;
579 urb->complete = et61x251_urb_complete;
580 urb->transfer_buffer = cam->transfer_buffer[i];
581 urb->transfer_buffer_length = psz * ET61X251_ISO_PACKETS;
583 for (j = 0; j < ET61X251_ISO_PACKETS; j++) {
584 urb->iso_frame_desc[j].offset = psz * j;
585 urb->iso_frame_desc[j].length = psz;
589 err = et61x251_write_reg(cam, 0x01, 0x03);
590 err = et61x251_write_reg(cam, 0x00, 0x03);
591 err = et61x251_write_reg(cam, 0x08, 0x03);
594 DBG(1, "I/O hardware error");
598 err = usb_set_interface(udev, 0, ET61X251_ALTERNATE_SETTING);
600 DBG(1, "usb_set_interface() failed");
604 cam->frame_current = NULL;
606 for (i = 0; i < ET61X251_URBS; i++) {
607 err = usb_submit_urb(cam->urb[i], GFP_KERNEL);
609 for (j = i-1; j >= 0; j--)
610 usb_kill_urb(cam->urb[j]);
611 DBG(1, "usb_submit_urb() failed, error %d", err);
619 for (i = 0; (i < ET61X251_URBS) && cam->urb[i]; i++)
620 usb_free_urb(cam->urb[i]);
623 for (i = 0; (i < ET61X251_URBS) && cam->transfer_buffer[i]; i++)
624 kfree(cam->transfer_buffer[i]);
630 static int et61x251_stop_transfer(struct et61x251_device* cam)
632 struct usb_device *udev = cam->usbdev;
636 if (cam->state & DEV_DISCONNECTED)
639 for (i = ET61X251_URBS-1; i >= 0; i--) {
640 usb_kill_urb(cam->urb[i]);
641 usb_free_urb(cam->urb[i]);
642 kfree(cam->transfer_buffer[i]);
645 err = usb_set_interface(udev, 0, 0); /* 0 Mb/s */
647 DBG(3, "usb_set_interface() failed");
653 static int et61x251_stream_interrupt(struct et61x251_device* cam)
657 cam->stream = STREAM_INTERRUPT;
658 timeout = wait_event_timeout(cam->wait_stream,
659 (cam->stream == STREAM_OFF) ||
660 (cam->state & DEV_DISCONNECTED),
661 ET61X251_URB_TIMEOUT);
662 if (cam->state & DEV_DISCONNECTED)
664 else if (cam->stream != STREAM_OFF) {
665 cam->state |= DEV_MISCONFIGURED;
666 DBG(1, "URB timeout reached. The camera is misconfigured. To "
667 "use it, close and open /dev/video%d again.",
675 /*****************************************************************************/
677 #ifdef CONFIG_VIDEO_ADV_DEBUG
678 static u8 et61x251_strtou8(const char* buff, size_t len, ssize_t* count)
685 strncpy(str, buff, len);
688 strncpy(str, buff, 4);
692 val = simple_strtoul(str, &endp, 0);
696 *count = (ssize_t)(endp - str);
697 if ((*count) && (len == *count+1) && (buff[*count] == '\n'))
704 NOTE 1: being inside one of the following methods implies that the v4l
705 device exists for sure (see kobjects and reference counters)
706 NOTE 2: buffers are PAGE_SIZE long
709 static ssize_t et61x251_show_reg(struct device* cd,
710 struct device_attribute *attr, char* buf)
712 struct et61x251_device* cam;
715 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
718 cam = video_get_drvdata(to_video_device(cd));
720 mutex_unlock(&et61x251_sysfs_lock);
724 count = sprintf(buf, "%u\n", cam->sysfs.reg);
726 mutex_unlock(&et61x251_sysfs_lock);
733 et61x251_store_reg(struct device* cd,
734 struct device_attribute *attr, const char* buf, size_t len)
736 struct et61x251_device* cam;
740 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
743 cam = video_get_drvdata(to_video_device(cd));
745 mutex_unlock(&et61x251_sysfs_lock);
749 index = et61x251_strtou8(buf, len, &count);
750 if (index > 0x8e || !count) {
751 mutex_unlock(&et61x251_sysfs_lock);
755 cam->sysfs.reg = index;
757 DBG(2, "Moved ET61X[12]51 register index to 0x%02X", cam->sysfs.reg);
758 DBG(3, "Written bytes: %zd", count);
760 mutex_unlock(&et61x251_sysfs_lock);
766 static ssize_t et61x251_show_val(struct device* cd,
767 struct device_attribute *attr, char* buf)
769 struct et61x251_device* cam;
773 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
776 cam = video_get_drvdata(to_video_device(cd));
778 mutex_unlock(&et61x251_sysfs_lock);
782 if ((val = et61x251_read_reg(cam, cam->sysfs.reg)) < 0) {
783 mutex_unlock(&et61x251_sysfs_lock);
787 count = sprintf(buf, "%d\n", val);
789 DBG(3, "Read bytes: %zd", count);
791 mutex_unlock(&et61x251_sysfs_lock);
798 et61x251_store_val(struct device* cd, struct device_attribute *attr,
799 const char* buf, size_t len)
801 struct et61x251_device* cam;
806 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
809 cam = video_get_drvdata(to_video_device(cd));
811 mutex_unlock(&et61x251_sysfs_lock);
815 value = et61x251_strtou8(buf, len, &count);
817 mutex_unlock(&et61x251_sysfs_lock);
821 err = et61x251_write_reg(cam, value, cam->sysfs.reg);
823 mutex_unlock(&et61x251_sysfs_lock);
827 DBG(2, "Written ET61X[12]51 reg. 0x%02X, val. 0x%02X",
828 cam->sysfs.reg, value);
829 DBG(3, "Written bytes: %zd", count);
831 mutex_unlock(&et61x251_sysfs_lock);
837 static ssize_t et61x251_show_i2c_reg(struct device* cd,
838 struct device_attribute *attr, char* buf)
840 struct et61x251_device* cam;
843 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
846 cam = video_get_drvdata(to_video_device(cd));
848 mutex_unlock(&et61x251_sysfs_lock);
852 count = sprintf(buf, "%u\n", cam->sysfs.i2c_reg);
854 DBG(3, "Read bytes: %zd", count);
856 mutex_unlock(&et61x251_sysfs_lock);
863 et61x251_store_i2c_reg(struct device* cd, struct device_attribute *attr,
864 const char* buf, size_t len)
866 struct et61x251_device* cam;
870 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
873 cam = video_get_drvdata(to_video_device(cd));
875 mutex_unlock(&et61x251_sysfs_lock);
879 index = et61x251_strtou8(buf, len, &count);
881 mutex_unlock(&et61x251_sysfs_lock);
885 cam->sysfs.i2c_reg = index;
887 DBG(2, "Moved sensor register index to 0x%02X", cam->sysfs.i2c_reg);
888 DBG(3, "Written bytes: %zd", count);
890 mutex_unlock(&et61x251_sysfs_lock);
896 static ssize_t et61x251_show_i2c_val(struct device* cd,
897 struct device_attribute *attr, char* buf)
899 struct et61x251_device* cam;
903 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
906 cam = video_get_drvdata(to_video_device(cd));
908 mutex_unlock(&et61x251_sysfs_lock);
912 if (!(cam->sensor.sysfs_ops & ET61X251_I2C_READ)) {
913 mutex_unlock(&et61x251_sysfs_lock);
917 if ((val = et61x251_i2c_read(cam, cam->sysfs.i2c_reg)) < 0) {
918 mutex_unlock(&et61x251_sysfs_lock);
922 count = sprintf(buf, "%d\n", val);
924 DBG(3, "Read bytes: %zd", count);
926 mutex_unlock(&et61x251_sysfs_lock);
933 et61x251_store_i2c_val(struct device* cd, struct device_attribute *attr,
934 const char* buf, size_t len)
936 struct et61x251_device* cam;
941 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
944 cam = video_get_drvdata(to_video_device(cd));
946 mutex_unlock(&et61x251_sysfs_lock);
950 if (!(cam->sensor.sysfs_ops & ET61X251_I2C_READ)) {
951 mutex_unlock(&et61x251_sysfs_lock);
955 value = et61x251_strtou8(buf, len, &count);
957 mutex_unlock(&et61x251_sysfs_lock);
961 err = et61x251_i2c_write(cam, cam->sysfs.i2c_reg, value);
963 mutex_unlock(&et61x251_sysfs_lock);
967 DBG(2, "Written sensor reg. 0x%02X, val. 0x%02X",
968 cam->sysfs.i2c_reg, value);
969 DBG(3, "Written bytes: %zd", count);
971 mutex_unlock(&et61x251_sysfs_lock);
977 static DEVICE_ATTR(reg, S_IRUGO | S_IWUSR,
978 et61x251_show_reg, et61x251_store_reg);
979 static DEVICE_ATTR(val, S_IRUGO | S_IWUSR,
980 et61x251_show_val, et61x251_store_val);
981 static DEVICE_ATTR(i2c_reg, S_IRUGO | S_IWUSR,
982 et61x251_show_i2c_reg, et61x251_store_i2c_reg);
983 static DEVICE_ATTR(i2c_val, S_IRUGO | S_IWUSR,
984 et61x251_show_i2c_val, et61x251_store_i2c_val);
987 static int et61x251_create_sysfs(struct et61x251_device* cam)
989 struct device *classdev = &(cam->v4ldev->class_dev);
992 if ((err = device_create_file(classdev, &dev_attr_reg)))
994 if ((err = device_create_file(classdev, &dev_attr_val)))
997 if (cam->sensor.sysfs_ops) {
998 if ((err = device_create_file(classdev, &dev_attr_i2c_reg)))
1000 if ((err = device_create_file(classdev, &dev_attr_i2c_val)))
1005 if (cam->sensor.sysfs_ops)
1006 device_remove_file(classdev, &dev_attr_i2c_reg);
1008 device_remove_file(classdev, &dev_attr_val);
1010 device_remove_file(classdev, &dev_attr_reg);
1014 #endif /* CONFIG_VIDEO_ADV_DEBUG */
1016 /*****************************************************************************/
1019 et61x251_set_pix_format(struct et61x251_device* cam,
1020 struct v4l2_pix_format* pix)
1024 if ((r = et61x251_read_reg(cam, 0x12)) < 0)
1026 if (pix->pixelformat == V4L2_PIX_FMT_ET61X251)
1027 err += et61x251_write_reg(cam, r & 0xfd, 0x12);
1029 err += et61x251_write_reg(cam, r | 0x02, 0x12);
1031 return err ? -EIO : 0;
1036 et61x251_set_compression(struct et61x251_device* cam,
1037 struct v4l2_jpegcompression* compression)
1041 if ((r = et61x251_read_reg(cam, 0x12)) < 0)
1043 if (compression->quality == 0)
1044 err += et61x251_write_reg(cam, r & 0xfb, 0x12);
1046 err += et61x251_write_reg(cam, r | 0x04, 0x12);
1048 return err ? -EIO : 0;
1052 static int et61x251_set_scale(struct et61x251_device* cam, u8 scale)
1056 r = et61x251_read_reg(cam, 0x12);
1061 err += et61x251_write_reg(cam, r & ~0x01, 0x12);
1062 else if (scale == 2)
1063 err += et61x251_write_reg(cam, r | 0x01, 0x12);
1068 PDBGG("Scaling factor: %u", scale);
1075 et61x251_set_crop(struct et61x251_device* cam, struct v4l2_rect* rect)
1077 struct et61x251_sensor* s = &cam->sensor;
1078 u16 fmw_sx = (u16)(rect->left - s->cropcap.bounds.left +
1079 s->active_pixel.left),
1080 fmw_sy = (u16)(rect->top - s->cropcap.bounds.top +
1081 s->active_pixel.top),
1082 fmw_length = (u16)(rect->width),
1083 fmw_height = (u16)(rect->height);
1086 err += et61x251_write_reg(cam, fmw_sx & 0xff, 0x69);
1087 err += et61x251_write_reg(cam, fmw_sy & 0xff, 0x6a);
1088 err += et61x251_write_reg(cam, fmw_length & 0xff, 0x6b);
1089 err += et61x251_write_reg(cam, fmw_height & 0xff, 0x6c);
1090 err += et61x251_write_reg(cam, (fmw_sx >> 8) | ((fmw_sy & 0x300) >> 6)
1091 | ((fmw_length & 0x300) >> 4)
1092 | ((fmw_height & 0x300) >> 2), 0x6d);
1096 PDBGG("fmw_sx, fmw_sy, fmw_length, fmw_height: %u %u %u %u",
1097 fmw_sx, fmw_sy, fmw_length, fmw_height);
1103 static int et61x251_init(struct et61x251_device* cam)
1105 struct et61x251_sensor* s = &cam->sensor;
1106 struct v4l2_control ctrl;
1107 struct v4l2_queryctrl *qctrl;
1108 struct v4l2_rect* rect;
1112 if (!(cam->state & DEV_INITIALIZED)) {
1113 mutex_init(&cam->open_mutex);
1114 init_waitqueue_head(&cam->wait_open);
1116 rect = &(s->cropcap.defrect);
1117 cam->compression.quality = ET61X251_COMPRESSION_QUALITY;
1118 } else { /* use current values */
1123 err += et61x251_set_scale(cam, rect->width / s->pix_format.width);
1124 err += et61x251_set_crop(cam, rect);
1131 DBG(3, "Sensor initialization failed");
1136 err += et61x251_set_compression(cam, &cam->compression);
1137 err += et61x251_set_pix_format(cam, &s->pix_format);
1138 if (s->set_pix_format)
1139 err += s->set_pix_format(cam, &s->pix_format);
1143 if (s->pix_format.pixelformat == V4L2_PIX_FMT_ET61X251)
1144 DBG(3, "Compressed video format is active, quality %d",
1145 cam->compression.quality);
1147 DBG(3, "Uncompressed video format is active");
1150 if ((err = s->set_crop(cam, rect))) {
1151 DBG(3, "set_crop() failed");
1156 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1157 if (s->qctrl[i].id != 0 &&
1158 !(s->qctrl[i].flags & V4L2_CTRL_FLAG_DISABLED)) {
1159 ctrl.id = s->qctrl[i].id;
1160 ctrl.value = qctrl[i].default_value;
1161 err = s->set_ctrl(cam, &ctrl);
1163 DBG(3, "Set %s control failed",
1167 DBG(3, "Image sensor supports '%s' control",
1172 if (!(cam->state & DEV_INITIALIZED)) {
1173 mutex_init(&cam->fileop_mutex);
1174 spin_lock_init(&cam->queue_lock);
1175 init_waitqueue_head(&cam->wait_frame);
1176 init_waitqueue_head(&cam->wait_stream);
1177 cam->nreadbuffers = 2;
1178 memcpy(s->_qctrl, s->qctrl, sizeof(s->qctrl));
1179 memcpy(&(s->_rect), &(s->cropcap.defrect),
1180 sizeof(struct v4l2_rect));
1181 cam->state |= DEV_INITIALIZED;
1184 DBG(2, "Initialization succeeded");
1188 /*****************************************************************************/
1190 static void et61x251_release_resources(struct kref *kref)
1192 struct et61x251_device *cam;
1194 mutex_lock(&et61x251_sysfs_lock);
1196 cam = container_of(kref, struct et61x251_device, kref);
1198 DBG(2, "V4L2 device /dev/video%d deregistered", cam->v4ldev->minor);
1199 video_set_drvdata(cam->v4ldev, NULL);
1200 video_unregister_device(cam->v4ldev);
1201 usb_put_dev(cam->usbdev);
1202 kfree(cam->control_buffer);
1205 mutex_unlock(&et61x251_sysfs_lock);
1209 static int et61x251_open(struct inode* inode, struct file* filp)
1211 struct et61x251_device* cam;
1214 if (!down_read_trylock(&et61x251_dev_lock))
1215 return -ERESTARTSYS;
1217 cam = video_get_drvdata(video_devdata(filp));
1219 if (wait_for_completion_interruptible(&cam->probe)) {
1220 up_read(&et61x251_dev_lock);
1221 return -ERESTARTSYS;
1224 kref_get(&cam->kref);
1226 if (mutex_lock_interruptible(&cam->open_mutex)) {
1227 kref_put(&cam->kref, et61x251_release_resources);
1228 up_read(&et61x251_dev_lock);
1229 return -ERESTARTSYS;
1232 if (cam->state & DEV_DISCONNECTED) {
1233 DBG(1, "Device not present");
1239 DBG(2, "Device /dev/video%d is already in use",
1240 cam->v4ldev->minor);
1241 DBG(3, "Simultaneous opens are not supported");
1242 if ((filp->f_flags & O_NONBLOCK) ||
1243 (filp->f_flags & O_NDELAY)) {
1247 DBG(2, "A blocking open() has been requested. Wait for the "
1248 "device to be released...");
1249 up_read(&et61x251_dev_lock);
1250 err = wait_event_interruptible_exclusive(cam->wait_open,
1251 (cam->state & DEV_DISCONNECTED)
1253 down_read(&et61x251_dev_lock);
1256 if (cam->state & DEV_DISCONNECTED) {
1262 if (cam->state & DEV_MISCONFIGURED) {
1263 err = et61x251_init(cam);
1265 DBG(1, "Initialization failed again. "
1266 "I will retry on next open().");
1269 cam->state &= ~DEV_MISCONFIGURED;
1272 if ((err = et61x251_start_transfer(cam)))
1275 filp->private_data = cam;
1278 cam->stream = STREAM_OFF;
1280 cam->frame_count = 0;
1281 et61x251_empty_framequeues(cam);
1283 DBG(3, "Video device /dev/video%d is open", cam->v4ldev->minor);
1286 mutex_unlock(&cam->open_mutex);
1288 kref_put(&cam->kref, et61x251_release_resources);
1289 up_read(&et61x251_dev_lock);
1294 static int et61x251_release(struct inode* inode, struct file* filp)
1296 struct et61x251_device* cam;
1298 down_write(&et61x251_dev_lock);
1300 cam = video_get_drvdata(video_devdata(filp));
1302 et61x251_stop_transfer(cam);
1303 et61x251_release_buffers(cam);
1305 wake_up_interruptible_nr(&cam->wait_open, 1);
1307 DBG(3, "Video device /dev/video%d closed", cam->v4ldev->minor);
1309 kref_put(&cam->kref, et61x251_release_resources);
1311 up_write(&et61x251_dev_lock);
1318 et61x251_read(struct file* filp, char __user * buf,
1319 size_t count, loff_t* f_pos)
1321 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1322 struct et61x251_frame_t* f, * i;
1323 unsigned long lock_flags;
1327 if (mutex_lock_interruptible(&cam->fileop_mutex))
1328 return -ERESTARTSYS;
1330 if (cam->state & DEV_DISCONNECTED) {
1331 DBG(1, "Device not present");
1332 mutex_unlock(&cam->fileop_mutex);
1336 if (cam->state & DEV_MISCONFIGURED) {
1337 DBG(1, "The camera is misconfigured. Close and open it "
1339 mutex_unlock(&cam->fileop_mutex);
1343 if (cam->io == IO_MMAP) {
1344 DBG(3, "Close and open the device again to choose the read "
1346 mutex_unlock(&cam->fileop_mutex);
1350 if (cam->io == IO_NONE) {
1351 if (!et61x251_request_buffers(cam, cam->nreadbuffers,
1353 DBG(1, "read() failed, not enough memory");
1354 mutex_unlock(&cam->fileop_mutex);
1358 cam->stream = STREAM_ON;
1361 if (list_empty(&cam->inqueue)) {
1362 if (!list_empty(&cam->outqueue))
1363 et61x251_empty_framequeues(cam);
1364 et61x251_queue_unusedframes(cam);
1368 mutex_unlock(&cam->fileop_mutex);
1372 if (list_empty(&cam->outqueue)) {
1373 if (filp->f_flags & O_NONBLOCK) {
1374 mutex_unlock(&cam->fileop_mutex);
1377 timeout = wait_event_interruptible_timeout
1379 (!list_empty(&cam->outqueue)) ||
1380 (cam->state & DEV_DISCONNECTED) ||
1381 (cam->state & DEV_MISCONFIGURED),
1382 cam->module_param.frame_timeout *
1383 1000 * msecs_to_jiffies(1) );
1385 mutex_unlock(&cam->fileop_mutex);
1388 if (cam->state & DEV_DISCONNECTED) {
1389 mutex_unlock(&cam->fileop_mutex);
1392 if (!timeout || (cam->state & DEV_MISCONFIGURED)) {
1393 mutex_unlock(&cam->fileop_mutex);
1398 f = list_entry(cam->outqueue.prev, struct et61x251_frame_t, frame);
1400 if (count > f->buf.bytesused)
1401 count = f->buf.bytesused;
1403 if (copy_to_user(buf, f->bufmem, count)) {
1410 spin_lock_irqsave(&cam->queue_lock, lock_flags);
1411 list_for_each_entry(i, &cam->outqueue, frame)
1412 i->state = F_UNUSED;
1413 INIT_LIST_HEAD(&cam->outqueue);
1414 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
1416 et61x251_queue_unusedframes(cam);
1418 PDBGG("Frame #%lu, bytes read: %zu",
1419 (unsigned long)f->buf.index, count);
1421 mutex_unlock(&cam->fileop_mutex);
1423 return err ? err : count;
1427 static unsigned int et61x251_poll(struct file *filp, poll_table *wait)
1429 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1430 struct et61x251_frame_t* f;
1431 unsigned long lock_flags;
1432 unsigned int mask = 0;
1434 if (mutex_lock_interruptible(&cam->fileop_mutex))
1437 if (cam->state & DEV_DISCONNECTED) {
1438 DBG(1, "Device not present");
1442 if (cam->state & DEV_MISCONFIGURED) {
1443 DBG(1, "The camera is misconfigured. Close and open it "
1448 if (cam->io == IO_NONE) {
1449 if (!et61x251_request_buffers(cam, cam->nreadbuffers,
1451 DBG(1, "poll() failed, not enough memory");
1455 cam->stream = STREAM_ON;
1458 if (cam->io == IO_READ) {
1459 spin_lock_irqsave(&cam->queue_lock, lock_flags);
1460 list_for_each_entry(f, &cam->outqueue, frame)
1461 f->state = F_UNUSED;
1462 INIT_LIST_HEAD(&cam->outqueue);
1463 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
1464 et61x251_queue_unusedframes(cam);
1467 poll_wait(filp, &cam->wait_frame, wait);
1469 if (!list_empty(&cam->outqueue))
1470 mask |= POLLIN | POLLRDNORM;
1472 mutex_unlock(&cam->fileop_mutex);
1477 mutex_unlock(&cam->fileop_mutex);
1482 static void et61x251_vm_open(struct vm_area_struct* vma)
1484 struct et61x251_frame_t* f = vma->vm_private_data;
1489 static void et61x251_vm_close(struct vm_area_struct* vma)
1491 /* NOTE: buffers are not freed here */
1492 struct et61x251_frame_t* f = vma->vm_private_data;
1497 static struct vm_operations_struct et61x251_vm_ops = {
1498 .open = et61x251_vm_open,
1499 .close = et61x251_vm_close,
1503 static int et61x251_mmap(struct file* filp, struct vm_area_struct *vma)
1505 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1506 unsigned long size = vma->vm_end - vma->vm_start,
1507 start = vma->vm_start;
1511 if (mutex_lock_interruptible(&cam->fileop_mutex))
1512 return -ERESTARTSYS;
1514 if (cam->state & DEV_DISCONNECTED) {
1515 DBG(1, "Device not present");
1516 mutex_unlock(&cam->fileop_mutex);
1520 if (cam->state & DEV_MISCONFIGURED) {
1521 DBG(1, "The camera is misconfigured. Close and open it "
1523 mutex_unlock(&cam->fileop_mutex);
1527 if (!(vma->vm_flags & (VM_WRITE | VM_READ))) {
1528 mutex_unlock(&cam->fileop_mutex);
1532 if (cam->io != IO_MMAP ||
1533 size != PAGE_ALIGN(cam->frame[0].buf.length)) {
1534 mutex_unlock(&cam->fileop_mutex);
1538 for (i = 0; i < cam->nbuffers; i++) {
1539 if ((cam->frame[i].buf.m.offset>>PAGE_SHIFT) == vma->vm_pgoff)
1542 if (i == cam->nbuffers) {
1543 mutex_unlock(&cam->fileop_mutex);
1547 vma->vm_flags |= VM_IO;
1548 vma->vm_flags |= VM_RESERVED;
1550 pos = cam->frame[i].bufmem;
1551 while (size > 0) { /* size is page-aligned */
1552 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1553 mutex_unlock(&cam->fileop_mutex);
1561 vma->vm_ops = &et61x251_vm_ops;
1562 vma->vm_private_data = &cam->frame[i];
1563 et61x251_vm_open(vma);
1565 mutex_unlock(&cam->fileop_mutex);
1570 /*****************************************************************************/
1573 et61x251_vidioc_querycap(struct et61x251_device* cam, void __user * arg)
1575 struct v4l2_capability cap = {
1576 .driver = "et61x251",
1577 .version = ET61X251_MODULE_VERSION_CODE,
1578 .capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE |
1582 strlcpy(cap.card, cam->v4ldev->name, sizeof(cap.card));
1583 if (usb_make_path(cam->usbdev, cap.bus_info, sizeof(cap.bus_info)) < 0)
1584 strlcpy(cap.bus_info, cam->usbdev->dev.bus_id,
1585 sizeof(cap.bus_info));
1587 if (copy_to_user(arg, &cap, sizeof(cap)))
1595 et61x251_vidioc_enuminput(struct et61x251_device* cam, void __user * arg)
1597 struct v4l2_input i;
1599 if (copy_from_user(&i, arg, sizeof(i)))
1605 memset(&i, 0, sizeof(i));
1606 strcpy(i.name, "Camera");
1607 i.type = V4L2_INPUT_TYPE_CAMERA;
1609 if (copy_to_user(arg, &i, sizeof(i)))
1617 et61x251_vidioc_g_input(struct et61x251_device* cam, void __user * arg)
1621 if (copy_to_user(arg, &index, sizeof(index)))
1629 et61x251_vidioc_s_input(struct et61x251_device* cam, void __user * arg)
1633 if (copy_from_user(&index, arg, sizeof(index)))
1644 et61x251_vidioc_query_ctrl(struct et61x251_device* cam, void __user * arg)
1646 struct et61x251_sensor* s = &cam->sensor;
1647 struct v4l2_queryctrl qc;
1650 if (copy_from_user(&qc, arg, sizeof(qc)))
1653 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1654 if (qc.id && qc.id == s->qctrl[i].id) {
1655 memcpy(&qc, &(s->qctrl[i]), sizeof(qc));
1656 if (copy_to_user(arg, &qc, sizeof(qc)))
1666 et61x251_vidioc_g_ctrl(struct et61x251_device* cam, void __user * arg)
1668 struct et61x251_sensor* s = &cam->sensor;
1669 struct v4l2_control ctrl;
1673 if (!s->get_ctrl && !s->set_ctrl)
1676 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1680 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1681 if (ctrl.id == s->qctrl[i].id) {
1682 ctrl.value = s->_qctrl[i].default_value;
1687 err = s->get_ctrl(cam, &ctrl);
1690 if (copy_to_user(arg, &ctrl, sizeof(ctrl)))
1698 et61x251_vidioc_s_ctrl(struct et61x251_device* cam, void __user * arg)
1700 struct et61x251_sensor* s = &cam->sensor;
1701 struct v4l2_control ctrl;
1708 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1711 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1712 if (ctrl.id == s->qctrl[i].id) {
1713 if (s->qctrl[i].flags & V4L2_CTRL_FLAG_DISABLED)
1715 if (ctrl.value < s->qctrl[i].minimum ||
1716 ctrl.value > s->qctrl[i].maximum)
1718 ctrl.value -= ctrl.value % s->qctrl[i].step;
1722 if ((err = s->set_ctrl(cam, &ctrl)))
1725 s->_qctrl[i].default_value = ctrl.value;
1732 et61x251_vidioc_cropcap(struct et61x251_device* cam, void __user * arg)
1734 struct v4l2_cropcap* cc = &(cam->sensor.cropcap);
1736 cc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1737 cc->pixelaspect.numerator = 1;
1738 cc->pixelaspect.denominator = 1;
1740 if (copy_to_user(arg, cc, sizeof(*cc)))
1748 et61x251_vidioc_g_crop(struct et61x251_device* cam, void __user * arg)
1750 struct et61x251_sensor* s = &cam->sensor;
1751 struct v4l2_crop crop = {
1752 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
1755 memcpy(&(crop.c), &(s->_rect), sizeof(struct v4l2_rect));
1757 if (copy_to_user(arg, &crop, sizeof(crop)))
1765 et61x251_vidioc_s_crop(struct et61x251_device* cam, void __user * arg)
1767 struct et61x251_sensor* s = &cam->sensor;
1768 struct v4l2_crop crop;
1769 struct v4l2_rect* rect;
1770 struct v4l2_rect* bounds = &(s->cropcap.bounds);
1771 struct v4l2_pix_format* pix_format = &(s->pix_format);
1773 const enum et61x251_stream_state stream = cam->stream;
1774 const u32 nbuffers = cam->nbuffers;
1778 if (copy_from_user(&crop, arg, sizeof(crop)))
1783 if (crop.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1786 if (cam->module_param.force_munmap)
1787 for (i = 0; i < cam->nbuffers; i++)
1788 if (cam->frame[i].vma_use_count) {
1789 DBG(3, "VIDIOC_S_CROP failed. "
1790 "Unmap the buffers first.");
1794 /* Preserve R,G or B origin */
1795 rect->left = (s->_rect.left & 1L) ? rect->left | 1L : rect->left & ~1L;
1796 rect->top = (s->_rect.top & 1L) ? rect->top | 1L : rect->top & ~1L;
1798 if (rect->width < 16)
1800 if (rect->height < 16)
1802 if (rect->width > bounds->width)
1803 rect->width = bounds->width;
1804 if (rect->height > bounds->height)
1805 rect->height = bounds->height;
1806 if (rect->left < bounds->left)
1807 rect->left = bounds->left;
1808 if (rect->top < bounds->top)
1809 rect->top = bounds->top;
1810 if (rect->left + rect->width > bounds->left + bounds->width)
1811 rect->left = bounds->left+bounds->width - rect->width;
1812 if (rect->top + rect->height > bounds->top + bounds->height)
1813 rect->top = bounds->top+bounds->height - rect->height;
1815 rect->width &= ~15L;
1816 rect->height &= ~15L;
1818 if (ET61X251_PRESERVE_IMGSCALE) {
1819 /* Calculate the actual scaling factor */
1821 a = rect->width * rect->height;
1822 b = pix_format->width * pix_format->height;
1823 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
1827 if (cam->stream == STREAM_ON)
1828 if ((err = et61x251_stream_interrupt(cam)))
1831 if (copy_to_user(arg, &crop, sizeof(crop))) {
1832 cam->stream = stream;
1836 if (cam->module_param.force_munmap || cam->io == IO_READ)
1837 et61x251_release_buffers(cam);
1839 err = et61x251_set_crop(cam, rect);
1841 err += s->set_crop(cam, rect);
1842 err += et61x251_set_scale(cam, scale);
1844 if (err) { /* atomic, no rollback in ioctl() */
1845 cam->state |= DEV_MISCONFIGURED;
1846 DBG(1, "VIDIOC_S_CROP failed because of hardware problems. To "
1847 "use the camera, close and open /dev/video%d again.",
1848 cam->v4ldev->minor);
1852 s->pix_format.width = rect->width/scale;
1853 s->pix_format.height = rect->height/scale;
1854 memcpy(&(s->_rect), rect, sizeof(*rect));
1856 if ((cam->module_param.force_munmap || cam->io == IO_READ) &&
1857 nbuffers != et61x251_request_buffers(cam, nbuffers, cam->io)) {
1858 cam->state |= DEV_MISCONFIGURED;
1859 DBG(1, "VIDIOC_S_CROP failed because of not enough memory. To "
1860 "use the camera, close and open /dev/video%d again.",
1861 cam->v4ldev->minor);
1865 if (cam->io == IO_READ)
1866 et61x251_empty_framequeues(cam);
1867 else if (cam->module_param.force_munmap)
1868 et61x251_requeue_outqueue(cam);
1870 cam->stream = stream;
1877 et61x251_vidioc_enum_framesizes(struct et61x251_device* cam, void __user * arg)
1879 struct v4l2_frmsizeenum frmsize;
1881 if (copy_from_user(&frmsize, arg, sizeof(frmsize)))
1884 if (frmsize.index != 0)
1887 if (frmsize.pixel_format != V4L2_PIX_FMT_ET61X251 &&
1888 frmsize.pixel_format != V4L2_PIX_FMT_SBGGR8)
1891 frmsize.type = V4L2_FRMSIZE_TYPE_STEPWISE;
1892 frmsize.stepwise.min_width = frmsize.stepwise.step_width = 16;
1893 frmsize.stepwise.min_height = frmsize.stepwise.step_height = 16;
1894 frmsize.stepwise.max_width = cam->sensor.cropcap.bounds.width;
1895 frmsize.stepwise.max_height = cam->sensor.cropcap.bounds.height;
1896 memset(&frmsize.reserved, 0, sizeof(frmsize.reserved));
1898 if (copy_to_user(arg, &frmsize, sizeof(frmsize)))
1906 et61x251_vidioc_enum_fmt(struct et61x251_device* cam, void __user * arg)
1908 struct v4l2_fmtdesc fmtd;
1910 if (copy_from_user(&fmtd, arg, sizeof(fmtd)))
1913 if (fmtd.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1916 if (fmtd.index == 0) {
1917 strcpy(fmtd.description, "bayer rgb");
1918 fmtd.pixelformat = V4L2_PIX_FMT_SBGGR8;
1919 } else if (fmtd.index == 1) {
1920 strcpy(fmtd.description, "compressed");
1921 fmtd.pixelformat = V4L2_PIX_FMT_ET61X251;
1922 fmtd.flags = V4L2_FMT_FLAG_COMPRESSED;
1926 fmtd.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1927 memset(&fmtd.reserved, 0, sizeof(fmtd.reserved));
1929 if (copy_to_user(arg, &fmtd, sizeof(fmtd)))
1937 et61x251_vidioc_g_fmt(struct et61x251_device* cam, void __user * arg)
1939 struct v4l2_format format;
1940 struct v4l2_pix_format* pfmt = &(cam->sensor.pix_format);
1942 if (copy_from_user(&format, arg, sizeof(format)))
1945 if (format.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1948 pfmt->colorspace = (pfmt->pixelformat == V4L2_PIX_FMT_ET61X251) ?
1949 0 : V4L2_COLORSPACE_SRGB;
1950 pfmt->bytesperline = (pfmt->pixelformat==V4L2_PIX_FMT_ET61X251)
1951 ? 0 : (pfmt->width * pfmt->priv) / 8;
1952 pfmt->sizeimage = pfmt->height * ((pfmt->width*pfmt->priv)/8);
1953 pfmt->field = V4L2_FIELD_NONE;
1954 memcpy(&(format.fmt.pix), pfmt, sizeof(*pfmt));
1956 if (copy_to_user(arg, &format, sizeof(format)))
1964 et61x251_vidioc_try_s_fmt(struct et61x251_device* cam, unsigned int cmd,
1967 struct et61x251_sensor* s = &cam->sensor;
1968 struct v4l2_format format;
1969 struct v4l2_pix_format* pix;
1970 struct v4l2_pix_format* pfmt = &(s->pix_format);
1971 struct v4l2_rect* bounds = &(s->cropcap.bounds);
1972 struct v4l2_rect rect;
1974 const enum et61x251_stream_state stream = cam->stream;
1975 const u32 nbuffers = cam->nbuffers;
1979 if (copy_from_user(&format, arg, sizeof(format)))
1982 pix = &(format.fmt.pix);
1984 if (format.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1987 memcpy(&rect, &(s->_rect), sizeof(rect));
1989 { /* calculate the actual scaling factor */
1991 a = rect.width * rect.height;
1992 b = pix->width * pix->height;
1993 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
1996 rect.width = scale * pix->width;
1997 rect.height = scale * pix->height;
1999 if (rect.width < 16)
2001 if (rect.height < 16)
2003 if (rect.width > bounds->left + bounds->width - rect.left)
2004 rect.width = bounds->left + bounds->width - rect.left;
2005 if (rect.height > bounds->top + bounds->height - rect.top)
2006 rect.height = bounds->top + bounds->height - rect.top;
2009 rect.height &= ~15L;
2011 { /* adjust the scaling factor */
2013 a = rect.width * rect.height;
2014 b = pix->width * pix->height;
2015 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
2018 pix->width = rect.width / scale;
2019 pix->height = rect.height / scale;
2021 if (pix->pixelformat != V4L2_PIX_FMT_ET61X251 &&
2022 pix->pixelformat != V4L2_PIX_FMT_SBGGR8)
2023 pix->pixelformat = pfmt->pixelformat;
2024 pix->priv = pfmt->priv; /* bpp */
2025 pix->colorspace = (pix->pixelformat == V4L2_PIX_FMT_ET61X251) ?
2026 0 : V4L2_COLORSPACE_SRGB;
2027 pix->colorspace = pfmt->colorspace;
2028 pix->bytesperline = (pix->pixelformat == V4L2_PIX_FMT_ET61X251)
2029 ? 0 : (pix->width * pix->priv) / 8;
2030 pix->sizeimage = pix->height * ((pix->width * pix->priv) / 8);
2031 pix->field = V4L2_FIELD_NONE;
2033 if (cmd == VIDIOC_TRY_FMT) {
2034 if (copy_to_user(arg, &format, sizeof(format)))
2039 if (cam->module_param.force_munmap)
2040 for (i = 0; i < cam->nbuffers; i++)
2041 if (cam->frame[i].vma_use_count) {
2042 DBG(3, "VIDIOC_S_FMT failed. "
2043 "Unmap the buffers first.");
2047 if (cam->stream == STREAM_ON)
2048 if ((err = et61x251_stream_interrupt(cam)))
2051 if (copy_to_user(arg, &format, sizeof(format))) {
2052 cam->stream = stream;
2056 if (cam->module_param.force_munmap || cam->io == IO_READ)
2057 et61x251_release_buffers(cam);
2059 err += et61x251_set_pix_format(cam, pix);
2060 err += et61x251_set_crop(cam, &rect);
2061 if (s->set_pix_format)
2062 err += s->set_pix_format(cam, pix);
2064 err += s->set_crop(cam, &rect);
2065 err += et61x251_set_scale(cam, scale);
2067 if (err) { /* atomic, no rollback in ioctl() */
2068 cam->state |= DEV_MISCONFIGURED;
2069 DBG(1, "VIDIOC_S_FMT failed because of hardware problems. To "
2070 "use the camera, close and open /dev/video%d again.",
2071 cam->v4ldev->minor);
2075 memcpy(pfmt, pix, sizeof(*pix));
2076 memcpy(&(s->_rect), &rect, sizeof(rect));
2078 if ((cam->module_param.force_munmap || cam->io == IO_READ) &&
2079 nbuffers != et61x251_request_buffers(cam, nbuffers, cam->io)) {
2080 cam->state |= DEV_MISCONFIGURED;
2081 DBG(1, "VIDIOC_S_FMT failed because of not enough memory. To "
2082 "use the camera, close and open /dev/video%d again.",
2083 cam->v4ldev->minor);
2087 if (cam->io == IO_READ)
2088 et61x251_empty_framequeues(cam);
2089 else if (cam->module_param.force_munmap)
2090 et61x251_requeue_outqueue(cam);
2092 cam->stream = stream;
2099 et61x251_vidioc_g_jpegcomp(struct et61x251_device* cam, void __user * arg)
2101 if (copy_to_user(arg, &cam->compression,
2102 sizeof(cam->compression)))
2110 et61x251_vidioc_s_jpegcomp(struct et61x251_device* cam, void __user * arg)
2112 struct v4l2_jpegcompression jc;
2113 const enum et61x251_stream_state stream = cam->stream;
2116 if (copy_from_user(&jc, arg, sizeof(jc)))
2119 if (jc.quality != 0 && jc.quality != 1)
2122 if (cam->stream == STREAM_ON)
2123 if ((err = et61x251_stream_interrupt(cam)))
2126 err += et61x251_set_compression(cam, &jc);
2127 if (err) { /* atomic, no rollback in ioctl() */
2128 cam->state |= DEV_MISCONFIGURED;
2129 DBG(1, "VIDIOC_S_JPEGCOMP failed because of hardware "
2130 "problems. To use the camera, close and open "
2131 "/dev/video%d again.", cam->v4ldev->minor);
2135 cam->compression.quality = jc.quality;
2137 cam->stream = stream;
2144 et61x251_vidioc_reqbufs(struct et61x251_device* cam, void __user * arg)
2146 struct v4l2_requestbuffers rb;
2150 if (copy_from_user(&rb, arg, sizeof(rb)))
2153 if (rb.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2154 rb.memory != V4L2_MEMORY_MMAP)
2157 if (cam->io == IO_READ) {
2158 DBG(3, "Close and open the device again to choose the mmap "
2163 for (i = 0; i < cam->nbuffers; i++)
2164 if (cam->frame[i].vma_use_count) {
2165 DBG(3, "VIDIOC_REQBUFS failed. "
2166 "Previous buffers are still mapped.");
2170 if (cam->stream == STREAM_ON)
2171 if ((err = et61x251_stream_interrupt(cam)))
2174 et61x251_empty_framequeues(cam);
2176 et61x251_release_buffers(cam);
2178 rb.count = et61x251_request_buffers(cam, rb.count, IO_MMAP);
2180 if (copy_to_user(arg, &rb, sizeof(rb))) {
2181 et61x251_release_buffers(cam);
2186 cam->io = rb.count ? IO_MMAP : IO_NONE;
2193 et61x251_vidioc_querybuf(struct et61x251_device* cam, void __user * arg)
2195 struct v4l2_buffer b;
2197 if (copy_from_user(&b, arg, sizeof(b)))
2200 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2201 b.index >= cam->nbuffers || cam->io != IO_MMAP)
2204 memcpy(&b, &cam->frame[b.index].buf, sizeof(b));
2206 if (cam->frame[b.index].vma_use_count)
2207 b.flags |= V4L2_BUF_FLAG_MAPPED;
2209 if (cam->frame[b.index].state == F_DONE)
2210 b.flags |= V4L2_BUF_FLAG_DONE;
2211 else if (cam->frame[b.index].state != F_UNUSED)
2212 b.flags |= V4L2_BUF_FLAG_QUEUED;
2214 if (copy_to_user(arg, &b, sizeof(b)))
2222 et61x251_vidioc_qbuf(struct et61x251_device* cam, void __user * arg)
2224 struct v4l2_buffer b;
2225 unsigned long lock_flags;
2227 if (copy_from_user(&b, arg, sizeof(b)))
2230 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2231 b.index >= cam->nbuffers || cam->io != IO_MMAP)
2234 if (cam->frame[b.index].state != F_UNUSED)
2237 cam->frame[b.index].state = F_QUEUED;
2239 spin_lock_irqsave(&cam->queue_lock, lock_flags);
2240 list_add_tail(&cam->frame[b.index].frame, &cam->inqueue);
2241 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
2243 PDBGG("Frame #%lu queued", (unsigned long)b.index);
2250 et61x251_vidioc_dqbuf(struct et61x251_device* cam, struct file* filp,
2253 struct v4l2_buffer b;
2254 struct et61x251_frame_t *f;
2255 unsigned long lock_flags;
2258 if (copy_from_user(&b, arg, sizeof(b)))
2261 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io!= IO_MMAP)
2264 if (list_empty(&cam->outqueue)) {
2265 if (cam->stream == STREAM_OFF)
2267 if (filp->f_flags & O_NONBLOCK)
2269 timeout = wait_event_interruptible_timeout
2271 (!list_empty(&cam->outqueue)) ||
2272 (cam->state & DEV_DISCONNECTED) ||
2273 (cam->state & DEV_MISCONFIGURED),
2274 cam->module_param.frame_timeout *
2275 1000 * msecs_to_jiffies(1) );
2278 if (cam->state & DEV_DISCONNECTED)
2280 if (!timeout || (cam->state & DEV_MISCONFIGURED))
2284 spin_lock_irqsave(&cam->queue_lock, lock_flags);
2285 f = list_entry(cam->outqueue.next, struct et61x251_frame_t, frame);
2286 list_del(cam->outqueue.next);
2287 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
2289 f->state = F_UNUSED;
2291 memcpy(&b, &f->buf, sizeof(b));
2292 if (f->vma_use_count)
2293 b.flags |= V4L2_BUF_FLAG_MAPPED;
2295 if (copy_to_user(arg, &b, sizeof(b)))
2298 PDBGG("Frame #%lu dequeued", (unsigned long)f->buf.index);
2305 et61x251_vidioc_streamon(struct et61x251_device* cam, void __user * arg)
2309 if (copy_from_user(&type, arg, sizeof(type)))
2312 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io != IO_MMAP)
2315 cam->stream = STREAM_ON;
2317 DBG(3, "Stream on");
2324 et61x251_vidioc_streamoff(struct et61x251_device* cam, void __user * arg)
2328 if (copy_from_user(&type, arg, sizeof(type)))
2331 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io != IO_MMAP)
2334 if (cam->stream == STREAM_ON)
2335 if ((err = et61x251_stream_interrupt(cam)))
2338 et61x251_empty_framequeues(cam);
2340 DBG(3, "Stream off");
2347 et61x251_vidioc_g_parm(struct et61x251_device* cam, void __user * arg)
2349 struct v4l2_streamparm sp;
2351 if (copy_from_user(&sp, arg, sizeof(sp)))
2354 if (sp.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2357 sp.parm.capture.extendedmode = 0;
2358 sp.parm.capture.readbuffers = cam->nreadbuffers;
2360 if (copy_to_user(arg, &sp, sizeof(sp)))
2368 et61x251_vidioc_s_parm(struct et61x251_device* cam, void __user * arg)
2370 struct v4l2_streamparm sp;
2372 if (copy_from_user(&sp, arg, sizeof(sp)))
2375 if (sp.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2378 sp.parm.capture.extendedmode = 0;
2380 if (sp.parm.capture.readbuffers == 0)
2381 sp.parm.capture.readbuffers = cam->nreadbuffers;
2383 if (sp.parm.capture.readbuffers > ET61X251_MAX_FRAMES)
2384 sp.parm.capture.readbuffers = ET61X251_MAX_FRAMES;
2386 if (copy_to_user(arg, &sp, sizeof(sp)))
2389 cam->nreadbuffers = sp.parm.capture.readbuffers;
2395 static int et61x251_ioctl_v4l2(struct inode* inode, struct file* filp,
2396 unsigned int cmd, void __user * arg)
2398 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
2402 case VIDIOC_QUERYCAP:
2403 return et61x251_vidioc_querycap(cam, arg);
2405 case VIDIOC_ENUMINPUT:
2406 return et61x251_vidioc_enuminput(cam, arg);
2408 case VIDIOC_G_INPUT:
2409 return et61x251_vidioc_g_input(cam, arg);
2411 case VIDIOC_S_INPUT:
2412 return et61x251_vidioc_s_input(cam, arg);
2414 case VIDIOC_QUERYCTRL:
2415 return et61x251_vidioc_query_ctrl(cam, arg);
2418 return et61x251_vidioc_g_ctrl(cam, arg);
2421 return et61x251_vidioc_s_ctrl(cam, arg);
2423 case VIDIOC_CROPCAP:
2424 return et61x251_vidioc_cropcap(cam, arg);
2427 return et61x251_vidioc_g_crop(cam, arg);
2430 return et61x251_vidioc_s_crop(cam, arg);
2432 case VIDIOC_ENUM_FMT:
2433 return et61x251_vidioc_enum_fmt(cam, arg);
2436 return et61x251_vidioc_g_fmt(cam, arg);
2438 case VIDIOC_TRY_FMT:
2440 return et61x251_vidioc_try_s_fmt(cam, cmd, arg);
2442 case VIDIOC_ENUM_FRAMESIZES:
2443 return et61x251_vidioc_enum_framesizes(cam, arg);
2445 case VIDIOC_G_JPEGCOMP:
2446 return et61x251_vidioc_g_jpegcomp(cam, arg);
2448 case VIDIOC_S_JPEGCOMP:
2449 return et61x251_vidioc_s_jpegcomp(cam, arg);
2451 case VIDIOC_REQBUFS:
2452 return et61x251_vidioc_reqbufs(cam, arg);
2454 case VIDIOC_QUERYBUF:
2455 return et61x251_vidioc_querybuf(cam, arg);
2458 return et61x251_vidioc_qbuf(cam, arg);
2461 return et61x251_vidioc_dqbuf(cam, filp, arg);
2463 case VIDIOC_STREAMON:
2464 return et61x251_vidioc_streamon(cam, arg);
2466 case VIDIOC_STREAMOFF:
2467 return et61x251_vidioc_streamoff(cam, arg);
2470 return et61x251_vidioc_g_parm(cam, arg);
2473 return et61x251_vidioc_s_parm(cam, arg);
2477 case VIDIOC_QUERYSTD:
2478 case VIDIOC_ENUMSTD:
2479 case VIDIOC_QUERYMENU:
2480 case VIDIOC_ENUM_FRAMEINTERVALS:
2490 static int et61x251_ioctl(struct inode* inode, struct file* filp,
2491 unsigned int cmd, unsigned long arg)
2493 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
2496 if (mutex_lock_interruptible(&cam->fileop_mutex))
2497 return -ERESTARTSYS;
2499 if (cam->state & DEV_DISCONNECTED) {
2500 DBG(1, "Device not present");
2501 mutex_unlock(&cam->fileop_mutex);
2505 if (cam->state & DEV_MISCONFIGURED) {
2506 DBG(1, "The camera is misconfigured. Close and open it "
2508 mutex_unlock(&cam->fileop_mutex);
2512 V4LDBG(3, "et61x251", cmd);
2514 err = et61x251_ioctl_v4l2(inode, filp, cmd, (void __user *)arg);
2516 mutex_unlock(&cam->fileop_mutex);
2522 static const struct file_operations et61x251_fops = {
2523 .owner = THIS_MODULE,
2524 .open = et61x251_open,
2525 .release = et61x251_release,
2526 .ioctl = et61x251_ioctl,
2527 .compat_ioctl = v4l_compat_ioctl32,
2528 .read = et61x251_read,
2529 .poll = et61x251_poll,
2530 .mmap = et61x251_mmap,
2531 .llseek = no_llseek,
2534 /*****************************************************************************/
2536 /* It exists a single interface only. We do not need to validate anything. */
2538 et61x251_usb_probe(struct usb_interface* intf, const struct usb_device_id* id)
2540 struct usb_device *udev = interface_to_usbdev(intf);
2541 struct et61x251_device* cam;
2542 static unsigned int dev_nr = 0;
2546 if (!(cam = kzalloc(sizeof(struct et61x251_device), GFP_KERNEL)))
2551 if (!(cam->control_buffer = kzalloc(8, GFP_KERNEL))) {
2552 DBG(1, "kmalloc() failed");
2557 if (!(cam->v4ldev = video_device_alloc())) {
2558 DBG(1, "video_device_alloc() failed");
2563 DBG(2, "ET61X[12]51 PC Camera Controller detected "
2564 "(vid/pid 0x%04X:0x%04X)",id->idVendor, id->idProduct);
2566 for (i = 0; et61x251_sensor_table[i]; i++) {
2567 err = et61x251_sensor_table[i](cam);
2573 DBG(2, "%s image sensor detected", cam->sensor.name);
2575 DBG(1, "No supported image sensor detected");
2580 if (et61x251_init(cam)) {
2581 DBG(1, "Initialization failed. I will retry on open().");
2582 cam->state |= DEV_MISCONFIGURED;
2585 strcpy(cam->v4ldev->name, "ET61X[12]51 PC Camera");
2586 cam->v4ldev->owner = THIS_MODULE;
2587 cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES;
2588 cam->v4ldev->fops = &et61x251_fops;
2589 cam->v4ldev->minor = video_nr[dev_nr];
2590 cam->v4ldev->release = video_device_release;
2591 video_set_drvdata(cam->v4ldev, cam);
2593 init_completion(&cam->probe);
2595 err = video_register_device(cam->v4ldev, VFL_TYPE_GRABBER,
2598 DBG(1, "V4L2 device registration failed");
2599 if (err == -ENFILE && video_nr[dev_nr] == -1)
2600 DBG(1, "Free /dev/videoX node not found");
2601 video_nr[dev_nr] = -1;
2602 dev_nr = (dev_nr < ET61X251_MAX_DEVICES-1) ? dev_nr+1 : 0;
2603 complete_all(&cam->probe);
2607 DBG(2, "V4L2 device registered as /dev/video%d", cam->v4ldev->minor);
2609 cam->module_param.force_munmap = force_munmap[dev_nr];
2610 cam->module_param.frame_timeout = frame_timeout[dev_nr];
2612 dev_nr = (dev_nr < ET61X251_MAX_DEVICES-1) ? dev_nr+1 : 0;
2614 #ifdef CONFIG_VIDEO_ADV_DEBUG
2615 err = et61x251_create_sysfs(cam);
2617 DBG(2, "Optional device control through 'sysfs' "
2620 DBG(2, "Failed to create 'sysfs' interface for optional "
2621 "device controlling. Error #%d", err);
2623 DBG(2, "Optional device control through 'sysfs' interface disabled");
2624 DBG(3, "Compile the kernel with the 'CONFIG_VIDEO_ADV_DEBUG' "
2625 "configuration option to enable it.");
2628 usb_set_intfdata(intf, cam);
2629 kref_init(&cam->kref);
2630 usb_get_dev(cam->usbdev);
2632 complete_all(&cam->probe);
2638 kfree(cam->control_buffer);
2640 video_device_release(cam->v4ldev);
2647 static void et61x251_usb_disconnect(struct usb_interface* intf)
2649 struct et61x251_device* cam;
2651 down_write(&et61x251_dev_lock);
2653 cam = usb_get_intfdata(intf);
2655 DBG(2, "Disconnecting %s...", cam->v4ldev->name);
2658 DBG(2, "Device /dev/video%d is open! Deregistration and "
2659 "memory deallocation are deferred.",
2660 cam->v4ldev->minor);
2661 cam->state |= DEV_MISCONFIGURED;
2662 et61x251_stop_transfer(cam);
2663 cam->state |= DEV_DISCONNECTED;
2664 wake_up_interruptible(&cam->wait_frame);
2665 wake_up(&cam->wait_stream);
2667 cam->state |= DEV_DISCONNECTED;
2669 wake_up_interruptible_all(&cam->wait_open);
2671 kref_put(&cam->kref, et61x251_release_resources);
2673 up_write(&et61x251_dev_lock);
2677 static struct usb_driver et61x251_usb_driver = {
2679 .id_table = et61x251_id_table,
2680 .probe = et61x251_usb_probe,
2681 .disconnect = et61x251_usb_disconnect,
2684 /*****************************************************************************/
2686 static int __init et61x251_module_init(void)
2690 KDBG(2, ET61X251_MODULE_NAME " v" ET61X251_MODULE_VERSION);
2691 KDBG(3, ET61X251_MODULE_AUTHOR);
2693 if ((err = usb_register(&et61x251_usb_driver)))
2694 KDBG(1, "usb_register() failed");
2700 static void __exit et61x251_module_exit(void)
2702 usb_deregister(&et61x251_usb_driver);
2706 module_init(et61x251_module_init);
2707 module_exit(et61x251_module_exit);