2 * Zoran 364xx based USB webcam module version 0.73
4 * Allows you to use your USB webcam with V4L2 applications
5 * This is still in heavy developpement !
7 * Copyright (C) 2004 Antoine Jacquet <royale@zerezo.com>
8 * http://royale.zerezo.com/zr364xx/
10 * Heavily inspired by usb-skeleton.c, vicam.c, cpia.c and spca50x.c drivers
11 * V4L2 version inspired by meye.c driver
13 * Some video buffer code by Lamarque based on s2255drv.c and vivi.c drivers.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/module.h>
32 #include <linux/version.h>
33 #include <linux/init.h>
34 #include <linux/usb.h>
35 #include <linux/vmalloc.h>
36 #include <linux/slab.h>
37 #include <linux/proc_fs.h>
38 #include <linux/highmem.h>
39 #include <media/v4l2-common.h>
40 #include <media/v4l2-ioctl.h>
41 #include <media/videobuf-vmalloc.h>
44 /* Version Information */
45 #define DRIVER_VERSION "v0.73"
46 #define ZR364XX_VERSION_CODE KERNEL_VERSION(0, 7, 3)
47 #define DRIVER_AUTHOR "Antoine Jacquet, http://royale.zerezo.com/"
48 #define DRIVER_DESC "Zoran 364xx"
53 #define MAX_FRAME_SIZE 200000
54 #define BUFFER_SIZE 0x1000
55 #define CTRL_TIMEOUT 500
57 #define ZR364XX_DEF_BUFS 4
58 #define ZR364XX_READ_IDLE 0
59 #define ZR364XX_READ_FRAME 1
62 #define DBG(fmt, args...) \
65 printk(KERN_INFO KBUILD_MODNAME " " fmt, ##args); \
69 /*#define FULL_DEBUG 1*/
73 #define _DBG(fmt, args...)
76 /* Init methods, need to find nicer names for these
77 * the exact names of the chipsets would be the best if someone finds it */
83 /* Module parameters */
88 /* Module parameters interface */
89 module_param(debug
, int, 0644);
90 MODULE_PARM_DESC(debug
, "Debug level");
91 module_param(mode
, int, 0644);
92 MODULE_PARM_DESC(mode
, "0 = 320x240, 1 = 160x120, 2 = 640x480");
95 /* Devices supported by this driver
96 * .driver_info contains the init method used by the camera */
97 static struct usb_device_id device_table
[] = {
98 {USB_DEVICE(0x08ca, 0x0109), .driver_info
= METHOD0
},
99 {USB_DEVICE(0x041e, 0x4024), .driver_info
= METHOD0
},
100 {USB_DEVICE(0x0d64, 0x0108), .driver_info
= METHOD0
},
101 {USB_DEVICE(0x0546, 0x3187), .driver_info
= METHOD0
},
102 {USB_DEVICE(0x0d64, 0x3108), .driver_info
= METHOD0
},
103 {USB_DEVICE(0x0595, 0x4343), .driver_info
= METHOD0
},
104 {USB_DEVICE(0x0bb0, 0x500d), .driver_info
= METHOD0
},
105 {USB_DEVICE(0x0feb, 0x2004), .driver_info
= METHOD0
},
106 {USB_DEVICE(0x055f, 0xb500), .driver_info
= METHOD0
},
107 {USB_DEVICE(0x08ca, 0x2062), .driver_info
= METHOD2
},
108 {USB_DEVICE(0x052b, 0x1a18), .driver_info
= METHOD1
},
109 {USB_DEVICE(0x04c8, 0x0729), .driver_info
= METHOD0
},
110 {USB_DEVICE(0x04f2, 0xa208), .driver_info
= METHOD0
},
111 {USB_DEVICE(0x0784, 0x0040), .driver_info
= METHOD1
},
112 {USB_DEVICE(0x06d6, 0x0034), .driver_info
= METHOD0
},
113 {USB_DEVICE(0x0a17, 0x0062), .driver_info
= METHOD2
},
114 {USB_DEVICE(0x06d6, 0x003b), .driver_info
= METHOD0
},
115 {USB_DEVICE(0x0a17, 0x004e), .driver_info
= METHOD2
},
116 {USB_DEVICE(0x041e, 0x405d), .driver_info
= METHOD2
},
117 {USB_DEVICE(0x08ca, 0x2102), .driver_info
= METHOD2
},
118 {} /* Terminating entry */
121 MODULE_DEVICE_TABLE(usb
, device_table
);
123 struct zr364xx_mode
{
124 u32 color
; /* output video color format */
125 u32 brightness
; /* brightness */
128 /* frame structure */
129 struct zr364xx_framei
{
130 unsigned long ulState
; /* ulState:ZR364XX_READ_IDLE,
131 ZR364XX_READ_FRAME */
132 void *lpvbits
; /* image data */
133 unsigned long cur_size
; /* current data copied to it */
136 /* image buffer structure */
137 struct zr364xx_bufferi
{
138 unsigned long dwFrames
; /* number of frames in buffer */
139 struct zr364xx_framei frame
[FRAMES
]; /* array of FRAME structures */
142 struct zr364xx_dmaqueue
{
143 struct list_head active
;
144 struct zr364xx_camera
*cam
;
147 struct zr364xx_pipeinfo
{
152 void *cam
; /* back pointer to zr364xx_camera struct */
164 static const struct zr364xx_fmt formats
[] = {
167 .fourcc
= V4L2_PIX_FMT_JPEG
,
173 struct zr364xx_camera
{
174 struct usb_device
*udev
; /* save off the usb device pointer */
175 struct usb_interface
*interface
;/* the interface for this device */
176 struct video_device
*vdev
; /* v4l video device */
178 struct zr364xx_bufferi buffer
;
184 struct mutex open_lock
;
188 struct zr364xx_dmaqueue vidq
;
192 unsigned long frame_count
;
194 struct zr364xx_pipeinfo pipe
[1];
198 const struct zr364xx_fmt
*fmt
;
199 struct videobuf_queue vb_vidq
;
200 enum v4l2_buf_type type
;
201 struct zr364xx_mode mode
;
204 /* buffer for one video frame */
205 struct zr364xx_buffer
{
206 /* common v4l buffer stuff -- must be first */
207 struct videobuf_buffer vb
;
208 const struct zr364xx_fmt
*fmt
;
211 /* function used to send initialisation commands to the camera */
212 static int send_control_msg(struct usb_device
*udev
, u8 request
, u16 value
,
213 u16 index
, unsigned char *cp
, u16 size
)
217 unsigned char *transfer_buffer
= kmalloc(size
, GFP_KERNEL
);
218 if (!transfer_buffer
) {
219 dev_err(&udev
->dev
, "kmalloc(%d) failed\n", size
);
223 memcpy(transfer_buffer
, cp
, size
);
225 status
= usb_control_msg(udev
,
226 usb_sndctrlpipe(udev
, 0),
228 USB_DIR_OUT
| USB_TYPE_VENDOR
|
229 USB_RECIP_DEVICE
, value
, index
,
230 transfer_buffer
, size
, CTRL_TIMEOUT
);
232 kfree(transfer_buffer
);
236 "Failed sending control message, error %d.\n", status
);
242 /* Control messages sent to the camera to initialize it
243 * and launch the capture */
247 unsigned char *bytes
;
251 static unsigned char m0d1
[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
252 static unsigned char m0d2
[] = { 0, 0, 0, 0, 0, 0 };
253 static unsigned char m0d3
[] = { 0, 0 };
254 static message m0
[] = {
257 {0x3370, sizeof(m0d1
), m0d1
},
260 {0x2610, sizeof(m0d2
), m0d2
},
265 {0x9a01, sizeof(m0d3
), m0d3
},
270 static unsigned char m1d1
[] = { 0xff, 0xff };
271 static unsigned char m1d2
[] = { 0x00, 0x00 };
272 static message m1
[] = {
280 {0x2502, sizeof(m1d1
), m1d1
},
285 {0x9a01, sizeof(m1d2
), m1d2
},
290 static unsigned char m2d1
[] = { 0xff, 0xff };
291 static message m2
[] = {
298 {0x2502, sizeof(m2d1
), m2d1
},
304 static message
*init
[3] = { m0
, m1
, m2
};
307 /* JPEG static data in header (Huffman table, etc) */
308 static unsigned char header1
[] = {
311 0xFF, 0xE0, 0x00, 0x10, 'J', 'F', 'I', 'F',
312 0x00, 0x01, 0x01, 0x00, 0x33, 0x8A, 0x00, 0x00, 0x33, 0x88,
314 0xFF, 0xDB, 0x00, 0x84
316 static unsigned char header2
[] = {
317 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01,
318 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
319 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
320 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02,
321 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01,
322 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06,
323 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1,
324 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33,
325 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25,
326 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,
327 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54,
328 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67,
329 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A,
330 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94,
331 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6,
332 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8,
333 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA,
334 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2,
335 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3,
336 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0x1F,
337 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
338 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04,
339 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5,
340 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05,
341 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11,
342 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,
343 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1,
344 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16,
345 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27,
346 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44,
347 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57,
348 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A,
349 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84,
350 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96,
351 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8,
352 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA,
353 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3,
354 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5,
355 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,
356 0xF8, 0xF9, 0xFA, 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0xF0, 0x01,
357 0x40, 0x03, 0x01, 0x21, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01,
358 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11,
361 static unsigned char header3
;
363 /* ------------------------------------------------------------------
365 ------------------------------------------------------------------*/
367 static int buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
,
370 struct zr364xx_camera
*cam
= vq
->priv_data
;
372 *size
= cam
->width
* cam
->height
* (cam
->fmt
->depth
>> 3);
375 *count
= ZR364XX_DEF_BUFS
;
377 while (*size
* (*count
) > ZR364XX_DEF_BUFS
* 1024 * 1024)
383 static void free_buffer(struct videobuf_queue
*vq
, struct zr364xx_buffer
*buf
)
385 _DBG("%s\n", __func__
);
390 videobuf_vmalloc_free(&buf
->vb
);
391 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
394 static int buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
395 enum v4l2_field field
)
397 struct zr364xx_camera
*cam
= vq
->priv_data
;
398 struct zr364xx_buffer
*buf
= container_of(vb
, struct zr364xx_buffer
,
402 DBG("%s, field=%d, fmt name = %s\n", __func__
, field
, cam
->fmt
!= NULL
?
403 cam
->fmt
->name
: "");
404 if (cam
->fmt
== NULL
)
407 buf
->vb
.size
= cam
->width
* cam
->height
* (cam
->fmt
->depth
>> 3);
409 if (buf
->vb
.baddr
!= 0 && buf
->vb
.bsize
< buf
->vb
.size
) {
410 DBG("invalid buffer prepare\n");
415 buf
->vb
.width
= cam
->width
;
416 buf
->vb
.height
= cam
->height
;
417 buf
->vb
.field
= field
;
419 if (buf
->vb
.state
== VIDEOBUF_NEEDS_INIT
) {
420 rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
);
425 buf
->vb
.state
= VIDEOBUF_PREPARED
;
428 free_buffer(vq
, buf
);
432 static void buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
434 struct zr364xx_buffer
*buf
= container_of(vb
, struct zr364xx_buffer
,
436 struct zr364xx_camera
*cam
= vq
->priv_data
;
438 _DBG("%s\n", __func__
);
440 buf
->vb
.state
= VIDEOBUF_QUEUED
;
441 list_add_tail(&buf
->vb
.queue
, &cam
->vidq
.active
);
444 static void buffer_release(struct videobuf_queue
*vq
,
445 struct videobuf_buffer
*vb
)
447 struct zr364xx_buffer
*buf
= container_of(vb
, struct zr364xx_buffer
,
450 _DBG("%s\n", __func__
);
451 free_buffer(vq
, buf
);
454 static struct videobuf_queue_ops zr364xx_video_qops
= {
455 .buf_setup
= buffer_setup
,
456 .buf_prepare
= buffer_prepare
,
457 .buf_queue
= buffer_queue
,
458 .buf_release
= buffer_release
,
461 /********************/
462 /* V4L2 integration */
463 /********************/
464 static int zr364xx_vidioc_streamon(struct file
*file
, void *priv
,
465 enum v4l2_buf_type type
);
467 static ssize_t
zr364xx_read(struct file
*file
, char __user
*buf
, size_t count
,
470 struct zr364xx_camera
*cam
= video_drvdata(file
);
472 _DBG("%s\n", __func__
);
480 if (cam
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
&&
481 zr364xx_vidioc_streamon(file
, cam
, cam
->type
) == 0) {
482 DBG("%s: reading %d bytes at pos %d.\n", __func__
, (int) count
,
486 return videobuf_read_one(&cam
->vb_vidq
, buf
, count
, ppos
,
487 file
->f_flags
& O_NONBLOCK
);
493 /* video buffer vmalloc implementation based partly on VIVI driver which is
494 * Copyright (c) 2006 by
495 * Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
496 * Ted Walther <ted--a.t--enumera.com>
497 * John Sokol <sokol--a.t--videotechnology.com>
498 * http://v4l.videotechnology.com/
501 static void zr364xx_fillbuff(struct zr364xx_camera
*cam
,
502 struct zr364xx_buffer
*buf
,
508 char *vbuf
= videobuf_to_vmalloc(&buf
->vb
);
509 unsigned long last_frame
;
510 struct zr364xx_framei
*frm
;
515 last_frame
= cam
->last_frame
;
516 if (last_frame
!= -1) {
517 frm
= &cam
->buffer
.frame
[last_frame
];
518 tmpbuf
= (const char *)cam
->buffer
.frame
[last_frame
].lpvbits
;
519 switch (buf
->fmt
->fourcc
) {
520 case V4L2_PIX_FMT_JPEG
:
521 buf
->vb
.size
= jpgsize
;
522 memcpy(vbuf
, tmpbuf
, buf
->vb
.size
);
525 printk(KERN_DEBUG KBUILD_MODNAME
": unknown format?\n");
527 cam
->last_frame
= -1;
529 printk(KERN_ERR KBUILD_MODNAME
": =======no frame\n");
532 DBG("%s: Buffer 0x%08lx size= %d\n", __func__
,
533 (unsigned long)vbuf
, pos
);
534 /* tell v4l buffer was filled */
536 buf
->vb
.field_count
= cam
->frame_count
* 2;
537 do_gettimeofday(&ts
);
539 buf
->vb
.state
= VIDEOBUF_DONE
;
542 static int zr364xx_got_frame(struct zr364xx_camera
*cam
, int jpgsize
)
544 struct zr364xx_dmaqueue
*dma_q
= &cam
->vidq
;
545 struct zr364xx_buffer
*buf
;
546 unsigned long flags
= 0;
549 DBG("wakeup: %p\n", &dma_q
);
550 spin_lock_irqsave(&cam
->slock
, flags
);
552 if (list_empty(&dma_q
->active
)) {
553 DBG("No active queue to serve\n");
557 buf
= list_entry(dma_q
->active
.next
,
558 struct zr364xx_buffer
, vb
.queue
);
560 if (!waitqueue_active(&buf
->vb
.done
)) {
565 list_del(&buf
->vb
.queue
);
566 do_gettimeofday(&buf
->vb
.ts
);
567 DBG("[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
568 zr364xx_fillbuff(cam
, buf
, jpgsize
);
569 wake_up(&buf
->vb
.done
);
570 DBG("wakeup [buf/i] [%p/%d]\n", buf
, buf
->vb
.i
);
572 spin_unlock_irqrestore(&cam
->slock
, flags
);
576 /* this function moves the usb stream read pipe data
577 * into the system buffers.
578 * returns 0 on success, EAGAIN if more data to process (call this
581 static int zr364xx_read_video_callback(struct zr364xx_camera
*cam
,
582 struct zr364xx_pipeinfo
*pipe_info
,
585 unsigned char *pdest
;
588 struct zr364xx_framei
*frm
;
590 unsigned char *ptr
= NULL
;
592 _DBG("buffer to user\n");
593 idx
= cam
->cur_frame
;
594 frm
= &cam
->buffer
.frame
[idx
];
596 /* swap bytes if camera needs it */
597 if (cam
->method
== METHOD0
) {
598 u16
*buf
= (u16
*)pipe_info
->transfer_buffer
;
599 for (i
= 0; i
< purb
->actual_length
/2; i
++)
603 /* search done. now find out if should be acquiring */
604 if (!cam
->b_acquire
) {
605 /* we found a frame, but this channel is turned off */
606 frm
->ulState
= ZR364XX_READ_IDLE
;
610 psrc
= (u8
*)pipe_info
->transfer_buffer
;
611 ptr
= pdest
= frm
->lpvbits
;
613 if (frm
->ulState
== ZR364XX_READ_IDLE
) {
614 frm
->ulState
= ZR364XX_READ_FRAME
;
617 _DBG("jpeg header, ");
618 memcpy(ptr
, header1
, sizeof(header1
));
619 ptr
+= sizeof(header1
);
621 memcpy(ptr
, &header3
, 1);
623 memcpy(ptr
, psrc
, 64);
626 memcpy(ptr
, &header3
, 1);
628 memcpy(ptr
, psrc
+ 64, 64);
630 memcpy(ptr
, header2
, sizeof(header2
));
631 ptr
+= sizeof(header2
);
632 memcpy(ptr
, psrc
+ 128,
633 purb
->actual_length
- 128);
634 ptr
+= purb
->actual_length
- 128;
635 _DBG("header : %d %d %d %d %d %d %d %d %d\n",
636 psrc
[0], psrc
[1], psrc
[2],
637 psrc
[3], psrc
[4], psrc
[5],
638 psrc
[6], psrc
[7], psrc
[8]);
639 frm
->cur_size
= ptr
- pdest
;
641 if (frm
->cur_size
+ purb
->actual_length
> MAX_FRAME_SIZE
) {
642 dev_info(&cam
->udev
->dev
,
643 "%s: buffer (%d bytes) too small to hold "
644 "frame data. Discarding frame data.\n",
645 __func__
, MAX_FRAME_SIZE
);
647 pdest
+= frm
->cur_size
;
648 memcpy(pdest
, psrc
, purb
->actual_length
);
649 frm
->cur_size
+= purb
->actual_length
;
652 /*_DBG("cur_size %lu urb size %d\n", frm->cur_size,
653 purb->actual_length);*/
655 if (purb
->actual_length
< pipe_info
->transfer_size
) {
656 _DBG("****************Buffer[%d]full*************\n", idx
);
657 cam
->last_frame
= cam
->cur_frame
;
659 /* end of system frame ring buffer, start at zero */
660 if (cam
->cur_frame
== cam
->buffer
.dwFrames
)
664 /* go back to find the JPEG EOI marker */
665 ptr
= pdest
= frm
->lpvbits
;
666 ptr
+= frm
->cur_size
- 2;
667 while (ptr
> pdest
) {
668 if (*ptr
== 0xFF && *(ptr
+ 1) == 0xD9
669 && *(ptr
+ 2) == 0xFF)
674 DBG("No EOI marker\n");
676 /* Sometimes there is junk data in the middle of the picture,
677 * we want to skip this bogus frames */
678 while (ptr
> pdest
) {
679 if (*ptr
== 0xFF && *(ptr
+ 1) == 0xFF
680 && *(ptr
+ 2) == 0xFF)
685 DBG("Bogus frame ? %d\n", ++(cam
->nb
));
686 } else if (cam
->b_acquire
) {
687 /* we skip the 2 first frames which are usually buggy */
691 _DBG("jpeg(%lu): %d %d %d %d %d %d %d %d\n",
693 pdest
[0], pdest
[1], pdest
[2], pdest
[3],
694 pdest
[4], pdest
[5], pdest
[6], pdest
[7]);
696 zr364xx_got_frame(cam
, frm
->cur_size
);
700 frm
->ulState
= ZR364XX_READ_IDLE
;
703 /* done successfully */
707 static int res_get(struct zr364xx_camera
*cam
)
710 mutex_lock(&cam
->lock
);
711 if (cam
->resources
) {
712 /* no, someone else uses it */
713 mutex_unlock(&cam
->lock
);
716 /* it's free, grab it */
719 mutex_unlock(&cam
->lock
);
723 static inline int res_check(struct zr364xx_camera
*cam
)
725 return cam
->resources
;
728 static void res_free(struct zr364xx_camera
*cam
)
730 mutex_lock(&cam
->lock
);
732 mutex_unlock(&cam
->lock
);
736 static int zr364xx_vidioc_querycap(struct file
*file
, void *priv
,
737 struct v4l2_capability
*cap
)
739 struct zr364xx_camera
*cam
= video_drvdata(file
);
741 strlcpy(cap
->driver
, DRIVER_DESC
, sizeof(cap
->driver
));
742 strlcpy(cap
->card
, cam
->udev
->product
, sizeof(cap
->card
));
743 strlcpy(cap
->bus_info
, dev_name(&cam
->udev
->dev
),
744 sizeof(cap
->bus_info
));
745 cap
->version
= ZR364XX_VERSION_CODE
;
746 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
|
753 static int zr364xx_vidioc_enum_input(struct file
*file
, void *priv
,
754 struct v4l2_input
*i
)
758 strcpy(i
->name
, DRIVER_DESC
" Camera");
759 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
763 static int zr364xx_vidioc_g_input(struct file
*file
, void *priv
,
770 static int zr364xx_vidioc_s_input(struct file
*file
, void *priv
,
778 static int zr364xx_vidioc_queryctrl(struct file
*file
, void *priv
,
779 struct v4l2_queryctrl
*c
)
781 struct zr364xx_camera
*cam
;
785 cam
= video_drvdata(file
);
788 case V4L2_CID_BRIGHTNESS
:
789 c
->type
= V4L2_CTRL_TYPE_INTEGER
;
790 strcpy(c
->name
, "Brightness");
794 c
->default_value
= cam
->mode
.brightness
;
803 static int zr364xx_vidioc_s_ctrl(struct file
*file
, void *priv
,
804 struct v4l2_control
*c
)
806 struct zr364xx_camera
*cam
;
811 cam
= video_drvdata(file
);
814 case V4L2_CID_BRIGHTNESS
:
815 cam
->mode
.brightness
= c
->value
;
816 /* hardware brightness */
817 mutex_lock(&cam
->lock
);
818 send_control_msg(cam
->udev
, 1, 0x2001, 0, NULL
, 0);
819 temp
= (0x60 << 8) + 127 - cam
->mode
.brightness
;
820 send_control_msg(cam
->udev
, 1, temp
, 0, NULL
, 0);
821 mutex_unlock(&cam
->lock
);
830 static int zr364xx_vidioc_g_ctrl(struct file
*file
, void *priv
,
831 struct v4l2_control
*c
)
833 struct zr364xx_camera
*cam
;
837 cam
= video_drvdata(file
);
840 case V4L2_CID_BRIGHTNESS
:
841 c
->value
= cam
->mode
.brightness
;
849 static int zr364xx_vidioc_enum_fmt_vid_cap(struct file
*file
,
850 void *priv
, struct v4l2_fmtdesc
*f
)
854 f
->flags
= V4L2_FMT_FLAG_COMPRESSED
;
855 strcpy(f
->description
, formats
[0].name
);
856 f
->pixelformat
= formats
[0].fourcc
;
860 static char *decode_fourcc(__u32 pixelformat
, char *buf
)
862 buf
[0] = pixelformat
& 0xff;
863 buf
[1] = (pixelformat
>> 8) & 0xff;
864 buf
[2] = (pixelformat
>> 16) & 0xff;
865 buf
[3] = (pixelformat
>> 24) & 0xff;
870 static int zr364xx_vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
871 struct v4l2_format
*f
)
873 struct zr364xx_camera
*cam
= video_drvdata(file
);
874 char pixelformat_name
[5];
879 if (f
->fmt
.pix
.pixelformat
!= V4L2_PIX_FMT_JPEG
) {
880 DBG("%s: unsupported pixelformat V4L2_PIX_FMT_%s\n", __func__
,
881 decode_fourcc(f
->fmt
.pix
.pixelformat
, pixelformat_name
));
885 if (!(f
->fmt
.pix
.width
== 160 && f
->fmt
.pix
.height
== 120) &&
886 !(f
->fmt
.pix
.width
== 640 && f
->fmt
.pix
.height
== 480)) {
887 f
->fmt
.pix
.width
= 320;
888 f
->fmt
.pix
.height
= 240;
891 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
892 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* 2;
893 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
894 f
->fmt
.pix
.colorspace
= 0;
896 DBG("%s: V4L2_PIX_FMT_%s (%d) ok!\n", __func__
,
897 decode_fourcc(f
->fmt
.pix
.pixelformat
, pixelformat_name
),
902 static int zr364xx_vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
903 struct v4l2_format
*f
)
905 struct zr364xx_camera
*cam
;
909 cam
= video_drvdata(file
);
911 f
->fmt
.pix
.pixelformat
= formats
[0].fourcc
;
912 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
913 f
->fmt
.pix
.width
= cam
->width
;
914 f
->fmt
.pix
.height
= cam
->height
;
915 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* 2;
916 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
917 f
->fmt
.pix
.colorspace
= 0;
922 static int zr364xx_vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
923 struct v4l2_format
*f
)
925 struct zr364xx_camera
*cam
= video_drvdata(file
);
926 struct videobuf_queue
*q
= &cam
->vb_vidq
;
927 char pixelformat_name
[5];
928 int ret
= zr364xx_vidioc_try_fmt_vid_cap(file
, cam
, f
);
934 mutex_lock(&q
->vb_lock
);
936 if (videobuf_queue_is_busy(&cam
->vb_vidq
)) {
937 DBG("%s queue busy\n", __func__
);
942 if (res_check(cam
)) {
943 DBG("%s can't change format after started\n", __func__
);
948 cam
->width
= f
->fmt
.pix
.width
;
949 cam
->height
= f
->fmt
.pix
.height
;
950 dev_info(&cam
->udev
->dev
, "%s: %dx%d mode selected\n", __func__
,
951 cam
->width
, cam
->height
);
952 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* 2;
953 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
954 f
->fmt
.pix
.colorspace
= 0;
956 cam
->vb_vidq
.field
= f
->fmt
.pix
.field
;
957 cam
->mode
.color
= V4L2_PIX_FMT_JPEG
;
959 if (f
->fmt
.pix
.width
== 160 && f
->fmt
.pix
.height
== 120)
961 else if (f
->fmt
.pix
.width
== 640 && f
->fmt
.pix
.height
== 480)
967 m1
[2].value
= 0xf000 + mode
;
968 m2
[1].value
= 0xf000 + mode
;
969 header2
[437] = cam
->height
/ 256;
970 header2
[438] = cam
->height
% 256;
971 header2
[439] = cam
->width
/ 256;
972 header2
[440] = cam
->width
% 256;
974 for (i
= 0; init
[cam
->method
][i
].size
!= -1; i
++) {
976 send_control_msg(cam
->udev
, 1, init
[cam
->method
][i
].value
,
977 0, init
[cam
->method
][i
].bytes
,
978 init
[cam
->method
][i
].size
);
980 dev_err(&cam
->udev
->dev
,
981 "error during resolution change sequence: %d\n", i
);
986 /* Added some delay here, since opening/closing the camera quickly,
987 * like Ekiga does during its startup, can crash the webcam
994 mutex_unlock(&q
->vb_lock
);
996 DBG("%s: V4L2_PIX_FMT_%s (%d) ok!\n", __func__
,
997 decode_fourcc(f
->fmt
.pix
.pixelformat
, pixelformat_name
),
1002 static int zr364xx_vidioc_reqbufs(struct file
*file
, void *priv
,
1003 struct v4l2_requestbuffers
*p
)
1006 struct zr364xx_camera
*cam
= video_drvdata(file
);
1007 rc
= videobuf_reqbufs(&cam
->vb_vidq
, p
);
1011 static int zr364xx_vidioc_querybuf(struct file
*file
,
1013 struct v4l2_buffer
*p
)
1016 struct zr364xx_camera
*cam
= video_drvdata(file
);
1017 rc
= videobuf_querybuf(&cam
->vb_vidq
, p
);
1021 static int zr364xx_vidioc_qbuf(struct file
*file
,
1023 struct v4l2_buffer
*p
)
1026 struct zr364xx_camera
*cam
= video_drvdata(file
);
1027 _DBG("%s\n", __func__
);
1028 rc
= videobuf_qbuf(&cam
->vb_vidq
, p
);
1032 static int zr364xx_vidioc_dqbuf(struct file
*file
,
1034 struct v4l2_buffer
*p
)
1037 struct zr364xx_camera
*cam
= video_drvdata(file
);
1038 _DBG("%s\n", __func__
);
1039 rc
= videobuf_dqbuf(&cam
->vb_vidq
, p
, file
->f_flags
& O_NONBLOCK
);
1043 static void read_pipe_completion(struct urb
*purb
)
1045 struct zr364xx_pipeinfo
*pipe_info
;
1046 struct zr364xx_camera
*cam
;
1049 pipe_info
= purb
->context
;
1050 _DBG("%s %p, status %d\n", __func__
, purb
, purb
->status
);
1051 if (pipe_info
== NULL
) {
1052 printk(KERN_ERR KBUILD_MODNAME
": no context!\n");
1056 cam
= pipe_info
->cam
;
1058 printk(KERN_ERR KBUILD_MODNAME
": no context!\n");
1062 /* if shutting down, do not resubmit, exit immediately */
1063 if (purb
->status
== -ESHUTDOWN
) {
1064 DBG("%s, err shutdown\n", __func__
);
1065 pipe_info
->err_count
++;
1069 if (pipe_info
->state
== 0) {
1070 DBG("exiting USB pipe\n");
1074 if (purb
->actual_length
< 0 ||
1075 purb
->actual_length
> pipe_info
->transfer_size
) {
1076 dev_err(&cam
->udev
->dev
, "wrong number of bytes\n");
1080 if (purb
->status
== 0)
1081 zr364xx_read_video_callback(cam
, pipe_info
, purb
);
1083 pipe_info
->err_count
++;
1084 DBG("%s: failed URB %d\n", __func__
, purb
->status
);
1087 pipe
= usb_rcvbulkpipe(cam
->udev
, cam
->read_endpoint
);
1090 usb_fill_bulk_urb(pipe_info
->stream_urb
, cam
->udev
,
1092 pipe_info
->transfer_buffer
,
1093 pipe_info
->transfer_size
,
1094 read_pipe_completion
, pipe_info
);
1096 if (pipe_info
->state
!= 0) {
1097 purb
->status
= usb_submit_urb(pipe_info
->stream_urb
,
1101 dev_err(&cam
->udev
->dev
,
1102 "error submitting urb (error=%i)\n",
1105 DBG("read pipe complete state 0\n");
1108 static int zr364xx_start_readpipe(struct zr364xx_camera
*cam
)
1112 struct zr364xx_pipeinfo
*pipe_info
= cam
->pipe
;
1113 pipe
= usb_rcvbulkpipe(cam
->udev
, cam
->read_endpoint
);
1114 DBG("%s: start pipe IN x%x\n", __func__
, cam
->read_endpoint
);
1116 pipe_info
->state
= 1;
1117 pipe_info
->err_count
= 0;
1118 pipe_info
->stream_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1119 if (!pipe_info
->stream_urb
) {
1120 dev_err(&cam
->udev
->dev
, "ReadStream: Unable to alloc URB\n");
1123 /* transfer buffer allocated in board_init */
1124 usb_fill_bulk_urb(pipe_info
->stream_urb
, cam
->udev
,
1126 pipe_info
->transfer_buffer
,
1127 pipe_info
->transfer_size
,
1128 read_pipe_completion
, pipe_info
);
1130 DBG("submitting URB %p\n", pipe_info
->stream_urb
);
1131 retval
= usb_submit_urb(pipe_info
->stream_urb
, GFP_KERNEL
);
1133 printk(KERN_ERR KBUILD_MODNAME
": start read pipe failed\n");
1140 static void zr364xx_stop_readpipe(struct zr364xx_camera
*cam
)
1142 struct zr364xx_pipeinfo
*pipe_info
;
1145 printk(KERN_ERR KBUILD_MODNAME
": invalid device\n");
1148 DBG("stop read pipe\n");
1149 pipe_info
= cam
->pipe
;
1151 if (pipe_info
->state
!= 0)
1152 pipe_info
->state
= 0;
1154 if (pipe_info
->stream_urb
) {
1156 usb_kill_urb(pipe_info
->stream_urb
);
1157 usb_free_urb(pipe_info
->stream_urb
);
1158 pipe_info
->stream_urb
= NULL
;
1164 /* starts acquisition process */
1165 static int zr364xx_start_acquire(struct zr364xx_camera
*cam
)
1169 DBG("start acquire\n");
1171 cam
->last_frame
= -1;
1173 for (j
= 0; j
< FRAMES
; j
++) {
1174 cam
->buffer
.frame
[j
].ulState
= ZR364XX_READ_IDLE
;
1175 cam
->buffer
.frame
[j
].cur_size
= 0;
1181 static inline int zr364xx_stop_acquire(struct zr364xx_camera
*cam
)
1187 static int zr364xx_vidioc_streamon(struct file
*file
, void *priv
,
1188 enum v4l2_buf_type type
)
1190 struct zr364xx_camera
*cam
= video_drvdata(file
);
1194 DBG("%s\n", __func__
);
1196 if (cam
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1197 dev_err(&cam
->udev
->dev
, "invalid fh type0\n");
1200 if (cam
->type
!= type
) {
1201 dev_err(&cam
->udev
->dev
, "invalid fh type1\n");
1205 if (!res_get(cam
)) {
1206 dev_err(&cam
->udev
->dev
, "stream busy\n");
1210 cam
->last_frame
= -1;
1212 cam
->frame_count
= 0;
1213 for (j
= 0; j
< FRAMES
; j
++) {
1214 cam
->buffer
.frame
[j
].ulState
= ZR364XX_READ_IDLE
;
1215 cam
->buffer
.frame
[j
].cur_size
= 0;
1217 res
= videobuf_streamon(&cam
->vb_vidq
);
1219 zr364xx_start_acquire(cam
);
1226 static int zr364xx_vidioc_streamoff(struct file
*file
, void *priv
,
1227 enum v4l2_buf_type type
)
1230 struct zr364xx_camera
*cam
= video_drvdata(file
);
1232 DBG("%s\n", __func__
);
1233 if (cam
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1234 dev_err(&cam
->udev
->dev
, "invalid fh type0\n");
1237 if (cam
->type
!= type
) {
1238 dev_err(&cam
->udev
->dev
, "invalid fh type1\n");
1241 zr364xx_stop_acquire(cam
);
1242 res
= videobuf_streamoff(&cam
->vb_vidq
);
1250 /* open the camera */
1251 static int zr364xx_open(struct file
*file
)
1253 struct video_device
*vdev
= video_devdata(file
);
1254 struct zr364xx_camera
*cam
= video_drvdata(file
);
1255 struct usb_device
*udev
= cam
->udev
;
1258 DBG("%s\n", __func__
);
1260 mutex_lock(&cam
->open_lock
);
1267 for (i
= 0; init
[cam
->method
][i
].size
!= -1; i
++) {
1269 send_control_msg(udev
, 1, init
[cam
->method
][i
].value
,
1270 0, init
[cam
->method
][i
].bytes
,
1271 init
[cam
->method
][i
].size
);
1273 dev_err(&cam
->udev
->dev
,
1274 "error during open sequence: %d\n", i
);
1281 file
->private_data
= vdev
;
1282 cam
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1285 videobuf_queue_vmalloc_init(&cam
->vb_vidq
, &zr364xx_video_qops
,
1289 sizeof(struct zr364xx_buffer
), cam
);
1291 /* Added some delay here, since opening/closing the camera quickly,
1292 * like Ekiga does during its startup, can crash the webcam
1298 mutex_unlock(&cam
->open_lock
);
1299 DBG("%s: %d\n", __func__
, err
);
1303 static void zr364xx_destroy(struct zr364xx_camera
*cam
)
1308 printk(KERN_ERR KBUILD_MODNAME
", %s: no device\n", __func__
);
1311 mutex_lock(&cam
->open_lock
);
1313 video_unregister_device(cam
->vdev
);
1316 /* stops the read pipe if it is running */
1318 zr364xx_stop_acquire(cam
);
1320 zr364xx_stop_readpipe(cam
);
1322 /* release sys buffers */
1323 for (i
= 0; i
< FRAMES
; i
++) {
1324 if (cam
->buffer
.frame
[i
].lpvbits
) {
1325 DBG("vfree %p\n", cam
->buffer
.frame
[i
].lpvbits
);
1326 vfree(cam
->buffer
.frame
[i
].lpvbits
);
1328 cam
->buffer
.frame
[i
].lpvbits
= NULL
;
1331 /* release transfer buffer */
1332 kfree(cam
->pipe
->transfer_buffer
);
1333 cam
->pipe
->transfer_buffer
= NULL
;
1334 mutex_unlock(&cam
->open_lock
);
1339 /* release the camera */
1340 static int zr364xx_release(struct file
*file
)
1342 struct zr364xx_camera
*cam
;
1343 struct usb_device
*udev
;
1346 DBG("%s\n", __func__
);
1347 cam
= video_drvdata(file
);
1352 mutex_lock(&cam
->open_lock
);
1355 /* turn off stream */
1356 if (res_check(cam
)) {
1358 zr364xx_stop_acquire(cam
);
1359 videobuf_streamoff(&cam
->vb_vidq
);
1364 file
->private_data
= NULL
;
1366 for (i
= 0; i
< 2; i
++) {
1368 send_control_msg(udev
, 1, init
[cam
->method
][i
].value
,
1369 0, init
[cam
->method
][i
].bytes
,
1370 init
[cam
->method
][i
].size
);
1372 dev_err(&udev
->dev
, "error during release sequence\n");
1377 /* Added some delay here, since opening/closing the camera quickly,
1378 * like Ekiga does during its startup, can crash the webcam
1384 mutex_unlock(&cam
->open_lock
);
1390 static int zr364xx_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1392 struct zr364xx_camera
*cam
= video_drvdata(file
);
1396 DBG("%s: cam == NULL\n", __func__
);
1399 DBG("mmap called, vma=0x%08lx\n", (unsigned long)vma
);
1401 ret
= videobuf_mmap_mapper(&cam
->vb_vidq
, vma
);
1403 DBG("vma start=0x%08lx, size=%ld, ret=%d\n",
1404 (unsigned long)vma
->vm_start
,
1405 (unsigned long)vma
->vm_end
- (unsigned long)vma
->vm_start
, ret
);
1409 static unsigned int zr364xx_poll(struct file
*file
,
1410 struct poll_table_struct
*wait
)
1412 struct zr364xx_camera
*cam
= video_drvdata(file
);
1413 struct videobuf_queue
*q
= &cam
->vb_vidq
;
1414 _DBG("%s\n", __func__
);
1416 if (cam
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1419 return videobuf_poll_stream(file
, q
, wait
);
1422 static const struct v4l2_file_operations zr364xx_fops
= {
1423 .owner
= THIS_MODULE
,
1424 .open
= zr364xx_open
,
1425 .release
= zr364xx_release
,
1426 .read
= zr364xx_read
,
1427 .mmap
= zr364xx_mmap
,
1428 .ioctl
= video_ioctl2
,
1429 .poll
= zr364xx_poll
,
1432 static const struct v4l2_ioctl_ops zr364xx_ioctl_ops
= {
1433 .vidioc_querycap
= zr364xx_vidioc_querycap
,
1434 .vidioc_enum_fmt_vid_cap
= zr364xx_vidioc_enum_fmt_vid_cap
,
1435 .vidioc_try_fmt_vid_cap
= zr364xx_vidioc_try_fmt_vid_cap
,
1436 .vidioc_s_fmt_vid_cap
= zr364xx_vidioc_s_fmt_vid_cap
,
1437 .vidioc_g_fmt_vid_cap
= zr364xx_vidioc_g_fmt_vid_cap
,
1438 .vidioc_enum_input
= zr364xx_vidioc_enum_input
,
1439 .vidioc_g_input
= zr364xx_vidioc_g_input
,
1440 .vidioc_s_input
= zr364xx_vidioc_s_input
,
1441 .vidioc_streamon
= zr364xx_vidioc_streamon
,
1442 .vidioc_streamoff
= zr364xx_vidioc_streamoff
,
1443 .vidioc_queryctrl
= zr364xx_vidioc_queryctrl
,
1444 .vidioc_g_ctrl
= zr364xx_vidioc_g_ctrl
,
1445 .vidioc_s_ctrl
= zr364xx_vidioc_s_ctrl
,
1446 .vidioc_reqbufs
= zr364xx_vidioc_reqbufs
,
1447 .vidioc_querybuf
= zr364xx_vidioc_querybuf
,
1448 .vidioc_qbuf
= zr364xx_vidioc_qbuf
,
1449 .vidioc_dqbuf
= zr364xx_vidioc_dqbuf
,
1452 static struct video_device zr364xx_template
= {
1453 .name
= DRIVER_DESC
,
1454 .fops
= &zr364xx_fops
,
1455 .ioctl_ops
= &zr364xx_ioctl_ops
,
1456 .release
= video_device_release
,
1462 /*******************/
1463 /* USB integration */
1464 /*******************/
1465 static int zr364xx_board_init(struct zr364xx_camera
*cam
)
1467 struct zr364xx_pipeinfo
*pipe
= cam
->pipe
;
1470 DBG("board init: %p\n", cam
);
1471 memset(pipe
, 0, sizeof(*pipe
));
1473 pipe
->transfer_size
= BUFFER_SIZE
;
1475 pipe
->transfer_buffer
= kzalloc(pipe
->transfer_size
,
1477 if (pipe
->transfer_buffer
== NULL
) {
1478 DBG("out of memory!\n");
1483 cam
->frame_count
= 0;
1485 /*** start create system buffers ***/
1486 for (i
= 0; i
< FRAMES
; i
++) {
1487 /* always allocate maximum size for system buffers */
1488 cam
->buffer
.frame
[i
].lpvbits
= vmalloc(MAX_FRAME_SIZE
);
1490 DBG("valloc %p, idx %lu, pdata %p\n",
1491 &cam
->buffer
.frame
[i
], i
,
1492 cam
->buffer
.frame
[i
].lpvbits
);
1493 if (cam
->buffer
.frame
[i
].lpvbits
== NULL
) {
1494 printk(KERN_INFO KBUILD_MODNAME
": out of memory. "
1495 "Using less frames\n");
1501 printk(KERN_INFO KBUILD_MODNAME
": out of memory. Aborting\n");
1502 kfree(cam
->pipe
->transfer_buffer
);
1503 cam
->pipe
->transfer_buffer
= NULL
;
1506 cam
->buffer
.dwFrames
= i
;
1508 /* make sure internal states are set */
1509 for (i
= 0; i
< FRAMES
; i
++) {
1510 cam
->buffer
.frame
[i
].ulState
= ZR364XX_READ_IDLE
;
1511 cam
->buffer
.frame
[i
].cur_size
= 0;
1515 cam
->last_frame
= -1;
1516 /*** end create system buffers ***/
1518 /* start read pipe */
1519 zr364xx_start_readpipe(cam
);
1520 DBG(": board initialized\n");
1524 static int zr364xx_probe(struct usb_interface
*intf
,
1525 const struct usb_device_id
*id
)
1527 struct usb_device
*udev
= interface_to_usbdev(intf
);
1528 struct zr364xx_camera
*cam
= NULL
;
1529 struct usb_host_interface
*iface_desc
;
1530 struct usb_endpoint_descriptor
*endpoint
;
1534 DBG("probing...\n");
1536 dev_info(&intf
->dev
, DRIVER_DESC
" compatible webcam plugged\n");
1537 dev_info(&intf
->dev
, "model %04x:%04x detected\n",
1538 le16_to_cpu(udev
->descriptor
.idVendor
),
1539 le16_to_cpu(udev
->descriptor
.idProduct
));
1541 cam
= kzalloc(sizeof(struct zr364xx_camera
), GFP_KERNEL
);
1543 dev_err(&udev
->dev
, "cam: out of memory !\n");
1546 /* save the init method used by this camera */
1547 cam
->method
= id
->driver_info
;
1549 cam
->vdev
= video_device_alloc();
1550 if (cam
->vdev
== NULL
) {
1551 dev_err(&udev
->dev
, "cam->vdev: out of memory !\n");
1556 memcpy(cam
->vdev
, &zr364xx_template
, sizeof(zr364xx_template
));
1557 cam
->vdev
->parent
= &intf
->dev
;
1558 video_set_drvdata(cam
->vdev
, cam
);
1560 cam
->vdev
->debug
= V4L2_DEBUG_IOCTL
| V4L2_DEBUG_IOCTL_ARG
;
1566 dev_info(&udev
->dev
, "160x120 mode selected\n");
1571 dev_info(&udev
->dev
, "640x480 mode selected\n");
1576 dev_info(&udev
->dev
, "320x240 mode selected\n");
1583 m1
[2].value
= 0xf000 + mode
;
1584 m2
[1].value
= 0xf000 + mode
;
1585 header2
[437] = cam
->height
/ 256;
1586 header2
[438] = cam
->height
% 256;
1587 header2
[439] = cam
->width
/ 256;
1588 header2
[440] = cam
->width
% 256;
1592 cam
->mode
.brightness
= 64;
1593 mutex_init(&cam
->lock
);
1594 mutex_init(&cam
->open_lock
);
1596 DBG("dev: %p, udev %p interface %p\n", cam
, cam
->udev
, intf
);
1598 /* set up the endpoint information */
1599 iface_desc
= intf
->cur_altsetting
;
1600 DBG("num endpoints %d\n", iface_desc
->desc
.bNumEndpoints
);
1601 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; ++i
) {
1602 endpoint
= &iface_desc
->endpoint
[i
].desc
;
1603 if (!cam
->read_endpoint
&& usb_endpoint_is_bulk_in(endpoint
)) {
1604 /* we found the bulk in endpoint */
1605 cam
->read_endpoint
= endpoint
->bEndpointAddress
;
1609 if (!cam
->read_endpoint
) {
1610 dev_err(&intf
->dev
, "Could not find bulk-in endpoint\n");
1615 INIT_LIST_HEAD(&cam
->vidq
.active
);
1616 cam
->vidq
.cam
= cam
;
1617 err
= video_register_device(cam
->vdev
, VFL_TYPE_GRABBER
, -1);
1619 dev_err(&udev
->dev
, "video_register_device failed\n");
1620 video_device_release(cam
->vdev
);
1626 usb_set_intfdata(intf
, cam
);
1628 /* load zr364xx board specific */
1629 err
= zr364xx_board_init(cam
);
1631 spin_lock_init(&cam
->slock
);
1635 spin_lock_init(&cam
->slock
);
1637 dev_info(&udev
->dev
, DRIVER_DESC
" controlling video device %d\n",
1643 static void zr364xx_disconnect(struct usb_interface
*intf
)
1645 struct zr364xx_camera
*cam
= usb_get_intfdata(intf
);
1646 videobuf_mmap_free(&cam
->vb_vidq
);
1647 usb_set_intfdata(intf
, NULL
);
1648 dev_info(&intf
->dev
, DRIVER_DESC
" webcam unplugged\n");
1649 zr364xx_destroy(cam
);
1654 /**********************/
1655 /* Module integration */
1656 /**********************/
1658 static struct usb_driver zr364xx_driver
= {
1660 .probe
= zr364xx_probe
,
1661 .disconnect
= zr364xx_disconnect
,
1662 .id_table
= device_table
1666 static int __init
zr364xx_init(void)
1669 retval
= usb_register(&zr364xx_driver
);
1671 printk(KERN_ERR KBUILD_MODNAME
": usb_register failed!\n");
1673 printk(KERN_INFO KBUILD_MODNAME
": " DRIVER_DESC
"\n");
1678 static void __exit
zr364xx_exit(void)
1680 printk(KERN_INFO KBUILD_MODNAME
": " DRIVER_DESC
" module unloaded\n");
1681 usb_deregister(&zr364xx_driver
);
1685 module_init(zr364xx_init
);
1686 module_exit(zr364xx_exit
);
1688 MODULE_AUTHOR(DRIVER_AUTHOR
);
1689 MODULE_DESCRIPTION(DRIVER_DESC
);
1690 MODULE_LICENSE("GPL");