blob: daf2099bbba85874ca74213e23a19a12b836b149 [file] [log] [blame]
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001/*
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03002 * Zoran 364xx based USB webcam module version 0.73
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003 *
4 * Allows you to use your USB webcam with V4L2 applications
5 * This is still in heavy developpement !
6 *
7 * Copyright (C) 2004 Antoine Jacquet <royale@zerezo.com>
8 * http://royale.zerezo.com/zr364xx/
9 *
10 * Heavily inspired by usb-skeleton.c, vicam.c, cpia.c and spca50x.c drivers
11 * V4L2 version inspired by meye.c driver
12 *
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -030013 * Some video buffer code by Lamarque based on s2255drv.c and vivi.c drivers.
14 *
Antoine Jacquetb7eee612007-04-27 12:30:59 -030015 * 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.
19 *
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.
24 *
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
28 */
29
30
Antoine Jacquetb7eee612007-04-27 12:30:59 -030031#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/usb.h>
34#include <linux/vmalloc.h>
35#include <linux/slab.h>
36#include <linux/proc_fs.h>
Antoine Jacquet2575f842007-03-05 06:32:29 -030037#include <linux/highmem.h>
Antoine Jacquetb7eee612007-04-27 12:30:59 -030038#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030039#include <media/v4l2-ioctl.h>
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -030040#include <media/videobuf-vmalloc.h>
Antoine Jacquetb7eee612007-04-27 12:30:59 -030041
42
43/* Version Information */
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030044#define DRIVER_VERSION "0.7.4"
Antoine Jacquetb7eee612007-04-27 12:30:59 -030045#define DRIVER_AUTHOR "Antoine Jacquet, http://royale.zerezo.com/"
46#define DRIVER_DESC "Zoran 364xx"
47
48
49/* Camera */
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -030050#define FRAMES 1
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -030051#define MAX_FRAME_SIZE 200000
Antoine Jacquetb7eee612007-04-27 12:30:59 -030052#define BUFFER_SIZE 0x1000
53#define CTRL_TIMEOUT 500
54
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -030055#define ZR364XX_DEF_BUFS 4
56#define ZR364XX_READ_IDLE 0
57#define ZR364XX_READ_FRAME 1
Antoine Jacquetb7eee612007-04-27 12:30:59 -030058
59/* Debug macro */
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -030060#define DBG(fmt, args...) \
61 do { \
62 if (debug) { \
63 printk(KERN_INFO KBUILD_MODNAME " " fmt, ##args); \
64 } \
65 } while (0)
Antoine Jacquetb7eee612007-04-27 12:30:59 -030066
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -030067/*#define FULL_DEBUG 1*/
68#ifdef FULL_DEBUG
69#define _DBG DBG
70#else
71#define _DBG(fmt, args...)
72#endif
73
Antoine Jacquetb7eee612007-04-27 12:30:59 -030074/* Init methods, need to find nicer names for these
75 * the exact names of the chipsets would be the best if someone finds it */
76#define METHOD0 0
77#define METHOD1 1
78#define METHOD2 2
Antoine Jacquet08135ba2009-12-27 18:22:05 -030079#define METHOD3 3
Antoine Jacquetb7eee612007-04-27 12:30:59 -030080
81
82/* Module parameters */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030083static int debug;
84static int mode;
Antoine Jacquetb7eee612007-04-27 12:30:59 -030085
86
87/* Module parameters interface */
88module_param(debug, int, 0644);
89MODULE_PARM_DESC(debug, "Debug level");
90module_param(mode, int, 0644);
91MODULE_PARM_DESC(mode, "0 = 320x240, 1 = 160x120, 2 = 640x480");
92
93
94/* Devices supported by this driver
95 * .driver_info contains the init method used by the camera */
96static struct usb_device_id device_table[] = {
97 {USB_DEVICE(0x08ca, 0x0109), .driver_info = METHOD0 },
98 {USB_DEVICE(0x041e, 0x4024), .driver_info = METHOD0 },
99 {USB_DEVICE(0x0d64, 0x0108), .driver_info = METHOD0 },
100 {USB_DEVICE(0x0546, 0x3187), .driver_info = METHOD0 },
101 {USB_DEVICE(0x0d64, 0x3108), .driver_info = METHOD0 },
102 {USB_DEVICE(0x0595, 0x4343), .driver_info = METHOD0 },
103 {USB_DEVICE(0x0bb0, 0x500d), .driver_info = METHOD0 },
104 {USB_DEVICE(0x0feb, 0x2004), .driver_info = METHOD0 },
105 {USB_DEVICE(0x055f, 0xb500), .driver_info = METHOD0 },
106 {USB_DEVICE(0x08ca, 0x2062), .driver_info = METHOD2 },
107 {USB_DEVICE(0x052b, 0x1a18), .driver_info = METHOD1 },
108 {USB_DEVICE(0x04c8, 0x0729), .driver_info = METHOD0 },
109 {USB_DEVICE(0x04f2, 0xa208), .driver_info = METHOD0 },
110 {USB_DEVICE(0x0784, 0x0040), .driver_info = METHOD1 },
111 {USB_DEVICE(0x06d6, 0x0034), .driver_info = METHOD0 },
112 {USB_DEVICE(0x0a17, 0x0062), .driver_info = METHOD2 },
Antoine Jacquetbebeaea2007-06-25 16:00:34 -0300113 {USB_DEVICE(0x06d6, 0x003b), .driver_info = METHOD0 },
Antoine Jacquet71c04472008-01-25 22:01:53 -0300114 {USB_DEVICE(0x0a17, 0x004e), .driver_info = METHOD2 },
Antoine Jacquetc0e0aff2008-01-25 22:03:10 -0300115 {USB_DEVICE(0x041e, 0x405d), .driver_info = METHOD2 },
Antoine Jacquet08135ba2009-12-27 18:22:05 -0300116 {USB_DEVICE(0x08ca, 0x2102), .driver_info = METHOD3 },
Antoine Jacquet9018f6c2009-11-19 22:35:38 -0300117 {USB_DEVICE(0x06d6, 0x003d), .driver_info = METHOD0 },
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300118 {} /* Terminating entry */
119};
120
121MODULE_DEVICE_TABLE(usb, device_table);
122
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300123struct zr364xx_mode {
124 u32 color; /* output video color format */
125 u32 brightness; /* brightness */
126};
127
128/* frame structure */
129struct 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 */
134};
135
136/* image buffer structure */
137struct zr364xx_bufferi {
138 unsigned long dwFrames; /* number of frames in buffer */
139 struct zr364xx_framei frame[FRAMES]; /* array of FRAME structures */
140};
141
142struct zr364xx_dmaqueue {
143 struct list_head active;
144 struct zr364xx_camera *cam;
145};
146
147struct zr364xx_pipeinfo {
148 u32 transfer_size;
149 u8 *transfer_buffer;
150 u32 state;
151 void *stream_urb;
152 void *cam; /* back pointer to zr364xx_camera struct */
153 u32 err_count;
154 u32 idx;
155};
156
157struct zr364xx_fmt {
158 char *name;
159 u32 fourcc;
160 int depth;
161};
162
163/* image formats. */
164static const struct zr364xx_fmt formats[] = {
165 {
166 .name = "JPG",
167 .fourcc = V4L2_PIX_FMT_JPEG,
168 .depth = 24
169 }
170};
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300171
172/* Camera stuff */
173struct zr364xx_camera {
174 struct usb_device *udev; /* save off the usb device pointer */
175 struct usb_interface *interface;/* the interface for this device */
Hans Verkuil2b992512012-06-02 06:32:48 -0300176 struct video_device vdev; /* v4l video device */
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300177 int nb;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300178 struct zr364xx_bufferi buffer;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300179 int skip;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300180 int width;
181 int height;
182 int method;
183 struct mutex lock;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300184 struct mutex open_lock;
Antoine Jacquet33d27a42008-08-18 17:14:30 -0300185 int users;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300186
187 spinlock_t slock;
188 struct zr364xx_dmaqueue vidq;
189 int resources;
190 int last_frame;
191 int cur_frame;
192 unsigned long frame_count;
193 int b_acquire;
194 struct zr364xx_pipeinfo pipe[1];
195
196 u8 read_endpoint;
197
198 const struct zr364xx_fmt *fmt;
199 struct videobuf_queue vb_vidq;
200 enum v4l2_buf_type type;
201 struct zr364xx_mode mode;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300202};
203
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300204/* buffer for one video frame */
205struct zr364xx_buffer {
206 /* common v4l buffer stuff -- must be first */
207 struct videobuf_buffer vb;
208 const struct zr364xx_fmt *fmt;
209};
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300210
211/* function used to send initialisation commands to the camera */
212static int send_control_msg(struct usb_device *udev, u8 request, u16 value,
213 u16 index, unsigned char *cp, u16 size)
214{
215 int status;
216
217 unsigned char *transfer_buffer = kmalloc(size, GFP_KERNEL);
218 if (!transfer_buffer) {
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -0300219 dev_err(&udev->dev, "kmalloc(%d) failed\n", size);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300220 return -ENOMEM;
221 }
222
223 memcpy(transfer_buffer, cp, size);
224
225 status = usb_control_msg(udev,
226 usb_sndctrlpipe(udev, 0),
227 request,
228 USB_DIR_OUT | USB_TYPE_VENDOR |
229 USB_RECIP_DEVICE, value, index,
230 transfer_buffer, size, CTRL_TIMEOUT);
231
232 kfree(transfer_buffer);
233
234 if (status < 0)
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -0300235 dev_err(&udev->dev,
236 "Failed sending control message, error %d.\n", status);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300237
238 return status;
239}
240
241
242/* Control messages sent to the camera to initialize it
243 * and launch the capture */
244typedef struct {
245 unsigned int value;
246 unsigned int size;
247 unsigned char *bytes;
248} message;
249
250/* method 0 */
251static unsigned char m0d1[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
252static unsigned char m0d2[] = { 0, 0, 0, 0, 0, 0 };
253static unsigned char m0d3[] = { 0, 0 };
254static message m0[] = {
255 {0x1f30, 0, NULL},
256 {0xd000, 0, NULL},
257 {0x3370, sizeof(m0d1), m0d1},
258 {0x2000, 0, NULL},
259 {0x2f0f, 0, NULL},
260 {0x2610, sizeof(m0d2), m0d2},
261 {0xe107, 0, NULL},
262 {0x2502, 0, NULL},
263 {0x1f70, 0, NULL},
264 {0xd000, 0, NULL},
265 {0x9a01, sizeof(m0d3), m0d3},
266 {-1, -1, NULL}
267};
268
269/* method 1 */
270static unsigned char m1d1[] = { 0xff, 0xff };
271static unsigned char m1d2[] = { 0x00, 0x00 };
272static message m1[] = {
273 {0x1f30, 0, NULL},
274 {0xd000, 0, NULL},
275 {0xf000, 0, NULL},
276 {0x2000, 0, NULL},
277 {0x2f0f, 0, NULL},
278 {0x2650, 0, NULL},
279 {0xe107, 0, NULL},
280 {0x2502, sizeof(m1d1), m1d1},
281 {0x1f70, 0, NULL},
282 {0xd000, 0, NULL},
283 {0xd000, 0, NULL},
284 {0xd000, 0, NULL},
285 {0x9a01, sizeof(m1d2), m1d2},
286 {-1, -1, NULL}
287};
288
289/* method 2 */
290static unsigned char m2d1[] = { 0xff, 0xff };
291static message m2[] = {
292 {0x1f30, 0, NULL},
293 {0xf000, 0, NULL},
294 {0x2000, 0, NULL},
295 {0x2f0f, 0, NULL},
296 {0x2650, 0, NULL},
297 {0xe107, 0, NULL},
298 {0x2502, sizeof(m2d1), m2d1},
299 {0x1f70, 0, NULL},
300 {-1, -1, NULL}
301};
302
303/* init table */
Antoine Jacquet08135ba2009-12-27 18:22:05 -0300304static message *init[4] = { m0, m1, m2, m2 };
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300305
306
307/* JPEG static data in header (Huffman table, etc) */
308static unsigned char header1[] = {
309 0xFF, 0xD8,
310 /*
311 0xFF, 0xE0, 0x00, 0x10, 'J', 'F', 'I', 'F',
312 0x00, 0x01, 0x01, 0x00, 0x33, 0x8A, 0x00, 0x00, 0x33, 0x88,
313 */
314 0xFF, 0xDB, 0x00, 0x84
315};
316static 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,
359 0x00, 0x3F, 0x00
360};
361static unsigned char header3;
362
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300363/* ------------------------------------------------------------------
364 Videobuf operations
365 ------------------------------------------------------------------*/
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300366
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300367static int buffer_setup(struct videobuf_queue *vq, unsigned int *count,
368 unsigned int *size)
369{
370 struct zr364xx_camera *cam = vq->priv_data;
371
372 *size = cam->width * cam->height * (cam->fmt->depth >> 3);
373
374 if (*count == 0)
375 *count = ZR364XX_DEF_BUFS;
376
Andreas Bombedab7e312010-03-21 16:02:45 -0300377 if (*size * *count > ZR364XX_DEF_BUFS * 1024 * 1024)
378 *count = (ZR364XX_DEF_BUFS * 1024 * 1024) / *size;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300379
380 return 0;
381}
382
383static void free_buffer(struct videobuf_queue *vq, struct zr364xx_buffer *buf)
384{
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300385 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300386
387 if (in_interrupt())
388 BUG();
389
390 videobuf_vmalloc_free(&buf->vb);
391 buf->vb.state = VIDEOBUF_NEEDS_INIT;
392}
393
394static int buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
395 enum v4l2_field field)
396{
397 struct zr364xx_camera *cam = vq->priv_data;
398 struct zr364xx_buffer *buf = container_of(vb, struct zr364xx_buffer,
399 vb);
400 int rc;
401
402 DBG("%s, field=%d, fmt name = %s\n", __func__, field, cam->fmt != NULL ?
403 cam->fmt->name : "");
404 if (cam->fmt == NULL)
405 return -EINVAL;
406
407 buf->vb.size = cam->width * cam->height * (cam->fmt->depth >> 3);
408
409 if (buf->vb.baddr != 0 && buf->vb.bsize < buf->vb.size) {
410 DBG("invalid buffer prepare\n");
411 return -EINVAL;
412 }
413
414 buf->fmt = cam->fmt;
415 buf->vb.width = cam->width;
416 buf->vb.height = cam->height;
417 buf->vb.field = field;
418
419 if (buf->vb.state == VIDEOBUF_NEEDS_INIT) {
420 rc = videobuf_iolock(vq, &buf->vb, NULL);
421 if (rc < 0)
422 goto fail;
423 }
424
425 buf->vb.state = VIDEOBUF_PREPARED;
426 return 0;
427fail:
428 free_buffer(vq, buf);
429 return rc;
430}
431
432static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
433{
434 struct zr364xx_buffer *buf = container_of(vb, struct zr364xx_buffer,
435 vb);
436 struct zr364xx_camera *cam = vq->priv_data;
437
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300438 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300439
440 buf->vb.state = VIDEOBUF_QUEUED;
441 list_add_tail(&buf->vb.queue, &cam->vidq.active);
442}
443
444static void buffer_release(struct videobuf_queue *vq,
445 struct videobuf_buffer *vb)
446{
447 struct zr364xx_buffer *buf = container_of(vb, struct zr364xx_buffer,
448 vb);
449
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300450 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300451 free_buffer(vq, buf);
452}
453
454static 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,
459};
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300460
461/********************/
462/* V4L2 integration */
463/********************/
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300464static int zr364xx_vidioc_streamon(struct file *file, void *priv,
465 enum v4l2_buf_type type);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300466
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300467static ssize_t zr364xx_read(struct file *file, char __user *buf, size_t count,
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300468 loff_t * ppos)
469{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300470 struct zr364xx_camera *cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300471
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300472 _DBG("%s\n", __func__);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300473
474 if (!buf)
475 return -EINVAL;
476
477 if (!count)
478 return -EINVAL;
479
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300480 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,
483 (int) *ppos);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300484
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300485 /* NoMan Sux ! */
486 return videobuf_read_one(&cam->vb_vidq, buf, count, ppos,
487 file->f_flags & O_NONBLOCK);
488 }
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300489
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300490 return 0;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300491}
492
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300493/* 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/
499 *
500 */
501static void zr364xx_fillbuff(struct zr364xx_camera *cam,
502 struct zr364xx_buffer *buf,
503 int jpgsize)
504{
505 int pos = 0;
506 struct timeval ts;
507 const char *tmpbuf;
508 char *vbuf = videobuf_to_vmalloc(&buf->vb);
509 unsigned long last_frame;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300510
511 if (!vbuf)
512 return;
513
514 last_frame = cam->last_frame;
515 if (last_frame != -1) {
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300516 tmpbuf = (const char *)cam->buffer.frame[last_frame].lpvbits;
517 switch (buf->fmt->fourcc) {
518 case V4L2_PIX_FMT_JPEG:
519 buf->vb.size = jpgsize;
520 memcpy(vbuf, tmpbuf, buf->vb.size);
521 break;
522 default:
523 printk(KERN_DEBUG KBUILD_MODNAME ": unknown format?\n");
524 }
525 cam->last_frame = -1;
526 } else {
527 printk(KERN_ERR KBUILD_MODNAME ": =======no frame\n");
528 return;
529 }
530 DBG("%s: Buffer 0x%08lx size= %d\n", __func__,
531 (unsigned long)vbuf, pos);
532 /* tell v4l buffer was filled */
533
534 buf->vb.field_count = cam->frame_count * 2;
535 do_gettimeofday(&ts);
536 buf->vb.ts = ts;
537 buf->vb.state = VIDEOBUF_DONE;
538}
539
540static int zr364xx_got_frame(struct zr364xx_camera *cam, int jpgsize)
541{
542 struct zr364xx_dmaqueue *dma_q = &cam->vidq;
543 struct zr364xx_buffer *buf;
544 unsigned long flags = 0;
545 int rc = 0;
546
547 DBG("wakeup: %p\n", &dma_q);
548 spin_lock_irqsave(&cam->slock, flags);
549
550 if (list_empty(&dma_q->active)) {
551 DBG("No active queue to serve\n");
552 rc = -1;
553 goto unlock;
554 }
555 buf = list_entry(dma_q->active.next,
556 struct zr364xx_buffer, vb.queue);
557
558 if (!waitqueue_active(&buf->vb.done)) {
559 /* no one active */
560 rc = -1;
561 goto unlock;
562 }
563 list_del(&buf->vb.queue);
564 do_gettimeofday(&buf->vb.ts);
565 DBG("[%p/%d] wakeup\n", buf, buf->vb.i);
566 zr364xx_fillbuff(cam, buf, jpgsize);
567 wake_up(&buf->vb.done);
568 DBG("wakeup [buf/i] [%p/%d]\n", buf, buf->vb.i);
569unlock:
570 spin_unlock_irqrestore(&cam->slock, flags);
Julia Lawall30538142010-08-16 13:27:47 -0300571 return rc;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300572}
573
574/* this function moves the usb stream read pipe data
575 * into the system buffers.
576 * returns 0 on success, EAGAIN if more data to process (call this
577 * function again).
578 */
579static int zr364xx_read_video_callback(struct zr364xx_camera *cam,
580 struct zr364xx_pipeinfo *pipe_info,
581 struct urb *purb)
582{
583 unsigned char *pdest;
584 unsigned char *psrc;
585 s32 idx = -1;
586 struct zr364xx_framei *frm;
587 int i = 0;
588 unsigned char *ptr = NULL;
589
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300590 _DBG("buffer to user\n");
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300591 idx = cam->cur_frame;
592 frm = &cam->buffer.frame[idx];
593
594 /* swap bytes if camera needs it */
595 if (cam->method == METHOD0) {
596 u16 *buf = (u16 *)pipe_info->transfer_buffer;
597 for (i = 0; i < purb->actual_length/2; i++)
598 swab16s(buf + i);
599 }
600
601 /* search done. now find out if should be acquiring */
602 if (!cam->b_acquire) {
603 /* we found a frame, but this channel is turned off */
604 frm->ulState = ZR364XX_READ_IDLE;
605 return -EINVAL;
606 }
607
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300608 psrc = (u8 *)pipe_info->transfer_buffer;
609 ptr = pdest = frm->lpvbits;
610
611 if (frm->ulState == ZR364XX_READ_IDLE) {
612 frm->ulState = ZR364XX_READ_FRAME;
613 frm->cur_size = 0;
614
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300615 _DBG("jpeg header, ");
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300616 memcpy(ptr, header1, sizeof(header1));
617 ptr += sizeof(header1);
618 header3 = 0;
619 memcpy(ptr, &header3, 1);
620 ptr++;
621 memcpy(ptr, psrc, 64);
622 ptr += 64;
623 header3 = 1;
624 memcpy(ptr, &header3, 1);
625 ptr++;
626 memcpy(ptr, psrc + 64, 64);
627 ptr += 64;
628 memcpy(ptr, header2, sizeof(header2));
629 ptr += sizeof(header2);
630 memcpy(ptr, psrc + 128,
631 purb->actual_length - 128);
632 ptr += purb->actual_length - 128;
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300633 _DBG("header : %d %d %d %d %d %d %d %d %d\n",
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300634 psrc[0], psrc[1], psrc[2],
635 psrc[3], psrc[4], psrc[5],
636 psrc[6], psrc[7], psrc[8]);
637 frm->cur_size = ptr - pdest;
638 } else {
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300639 if (frm->cur_size + purb->actual_length > MAX_FRAME_SIZE) {
640 dev_info(&cam->udev->dev,
641 "%s: buffer (%d bytes) too small to hold "
642 "frame data. Discarding frame data.\n",
643 __func__, MAX_FRAME_SIZE);
644 } else {
645 pdest += frm->cur_size;
646 memcpy(pdest, psrc, purb->actual_length);
647 frm->cur_size += purb->actual_length;
648 }
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300649 }
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300650 /*_DBG("cur_size %lu urb size %d\n", frm->cur_size,
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300651 purb->actual_length);*/
652
653 if (purb->actual_length < pipe_info->transfer_size) {
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300654 _DBG("****************Buffer[%d]full*************\n", idx);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300655 cam->last_frame = cam->cur_frame;
656 cam->cur_frame++;
657 /* end of system frame ring buffer, start at zero */
658 if (cam->cur_frame == cam->buffer.dwFrames)
659 cam->cur_frame = 0;
660
661 /* frame ready */
662 /* go back to find the JPEG EOI marker */
663 ptr = pdest = frm->lpvbits;
664 ptr += frm->cur_size - 2;
665 while (ptr > pdest) {
666 if (*ptr == 0xFF && *(ptr + 1) == 0xD9
667 && *(ptr + 2) == 0xFF)
668 break;
669 ptr--;
670 }
671 if (ptr == pdest)
672 DBG("No EOI marker\n");
673
674 /* Sometimes there is junk data in the middle of the picture,
675 * we want to skip this bogus frames */
676 while (ptr > pdest) {
677 if (*ptr == 0xFF && *(ptr + 1) == 0xFF
678 && *(ptr + 2) == 0xFF)
679 break;
680 ptr--;
681 }
682 if (ptr != pdest) {
683 DBG("Bogus frame ? %d\n", ++(cam->nb));
684 } else if (cam->b_acquire) {
685 /* we skip the 2 first frames which are usually buggy */
686 if (cam->skip)
687 cam->skip--;
688 else {
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300689 _DBG("jpeg(%lu): %d %d %d %d %d %d %d %d\n",
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300690 frm->cur_size,
691 pdest[0], pdest[1], pdest[2], pdest[3],
692 pdest[4], pdest[5], pdest[6], pdest[7]);
693
694 zr364xx_got_frame(cam, frm->cur_size);
695 }
696 }
697 cam->frame_count++;
698 frm->ulState = ZR364XX_READ_IDLE;
699 frm->cur_size = 0;
700 }
701 /* done successfully */
702 return 0;
703}
704
705static int res_get(struct zr364xx_camera *cam)
706{
707 /* is it free? */
708 mutex_lock(&cam->lock);
709 if (cam->resources) {
710 /* no, someone else uses it */
711 mutex_unlock(&cam->lock);
712 return 0;
713 }
714 /* it's free, grab it */
715 cam->resources = 1;
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300716 _DBG("res: get\n");
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300717 mutex_unlock(&cam->lock);
718 return 1;
719}
720
721static inline int res_check(struct zr364xx_camera *cam)
722{
723 return cam->resources;
724}
725
726static void res_free(struct zr364xx_camera *cam)
727{
728 mutex_lock(&cam->lock);
729 cam->resources = 0;
730 mutex_unlock(&cam->lock);
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -0300731 _DBG("res: put\n");
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300732}
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300733
734static int zr364xx_vidioc_querycap(struct file *file, void *priv,
735 struct v4l2_capability *cap)
736{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300737 struct zr364xx_camera *cam = video_drvdata(file);
738
739 strlcpy(cap->driver, DRIVER_DESC, sizeof(cap->driver));
740 strlcpy(cap->card, cam->udev->product, sizeof(cap->card));
741 strlcpy(cap->bus_info, dev_name(&cam->udev->dev),
742 sizeof(cap->bus_info));
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300743 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
744 V4L2_CAP_READWRITE |
745 V4L2_CAP_STREAMING;
746
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300747 return 0;
748}
749
750static int zr364xx_vidioc_enum_input(struct file *file, void *priv,
751 struct v4l2_input *i)
752{
753 if (i->index != 0)
754 return -EINVAL;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300755 strcpy(i->name, DRIVER_DESC " Camera");
756 i->type = V4L2_INPUT_TYPE_CAMERA;
757 return 0;
758}
759
760static int zr364xx_vidioc_g_input(struct file *file, void *priv,
761 unsigned int *i)
762{
763 *i = 0;
764 return 0;
765}
766
767static int zr364xx_vidioc_s_input(struct file *file, void *priv,
768 unsigned int i)
769{
770 if (i != 0)
771 return -EINVAL;
772 return 0;
773}
774
775static int zr364xx_vidioc_queryctrl(struct file *file, void *priv,
776 struct v4l2_queryctrl *c)
777{
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300778 struct zr364xx_camera *cam;
779
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300780 if (file == NULL)
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300781 return -ENODEV;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300782 cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300783
784 switch (c->id) {
785 case V4L2_CID_BRIGHTNESS:
786 c->type = V4L2_CTRL_TYPE_INTEGER;
787 strcpy(c->name, "Brightness");
788 c->minimum = 0;
789 c->maximum = 127;
790 c->step = 1;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300791 c->default_value = cam->mode.brightness;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300792 c->flags = 0;
793 break;
794 default:
795 return -EINVAL;
796 }
797 return 0;
798}
799
800static int zr364xx_vidioc_s_ctrl(struct file *file, void *priv,
801 struct v4l2_control *c)
802{
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300803 struct zr364xx_camera *cam;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300804 int temp;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300805
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300806 if (file == NULL)
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300807 return -ENODEV;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300808 cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300809
810 switch (c->id) {
811 case V4L2_CID_BRIGHTNESS:
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300812 cam->mode.brightness = c->value;
813 /* hardware brightness */
814 mutex_lock(&cam->lock);
815 send_control_msg(cam->udev, 1, 0x2001, 0, NULL, 0);
816 temp = (0x60 << 8) + 127 - cam->mode.brightness;
817 send_control_msg(cam->udev, 1, temp, 0, NULL, 0);
818 mutex_unlock(&cam->lock);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300819 break;
820 default:
821 return -EINVAL;
822 }
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300823
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300824 return 0;
825}
826
827static int zr364xx_vidioc_g_ctrl(struct file *file, void *priv,
828 struct v4l2_control *c)
829{
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300830 struct zr364xx_camera *cam;
831
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300832 if (file == NULL)
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300833 return -ENODEV;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300834 cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300835
836 switch (c->id) {
837 case V4L2_CID_BRIGHTNESS:
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300838 c->value = cam->mode.brightness;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300839 break;
840 default:
841 return -EINVAL;
842 }
843 return 0;
844}
845
Hans Verkuil78b526a2008-05-28 12:16:41 -0300846static int zr364xx_vidioc_enum_fmt_vid_cap(struct file *file,
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300847 void *priv, struct v4l2_fmtdesc *f)
848{
849 if (f->index > 0)
850 return -EINVAL;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300851 f->flags = V4L2_FMT_FLAG_COMPRESSED;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300852 strcpy(f->description, formats[0].name);
853 f->pixelformat = formats[0].fourcc;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300854 return 0;
855}
856
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300857static char *decode_fourcc(__u32 pixelformat, char *buf)
858{
859 buf[0] = pixelformat & 0xff;
860 buf[1] = (pixelformat >> 8) & 0xff;
861 buf[2] = (pixelformat >> 16) & 0xff;
862 buf[3] = (pixelformat >> 24) & 0xff;
863 buf[4] = '\0';
864 return buf;
865}
866
Hans Verkuil78b526a2008-05-28 12:16:41 -0300867static int zr364xx_vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300868 struct v4l2_format *f)
869{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300870 struct zr364xx_camera *cam = video_drvdata(file);
871 char pixelformat_name[5];
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300872
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300873 if (cam == NULL)
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300874 return -ENODEV;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300875
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300876 if (f->fmt.pix.pixelformat != V4L2_PIX_FMT_JPEG) {
877 DBG("%s: unsupported pixelformat V4L2_PIX_FMT_%s\n", __func__,
878 decode_fourcc(f->fmt.pix.pixelformat, pixelformat_name));
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300879 return -EINVAL;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300880 }
881
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -0300882 if (!(f->fmt.pix.width == 160 && f->fmt.pix.height == 120) &&
883 !(f->fmt.pix.width == 640 && f->fmt.pix.height == 480)) {
884 f->fmt.pix.width = 320;
885 f->fmt.pix.height = 240;
886 }
887
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300888 f->fmt.pix.field = V4L2_FIELD_NONE;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300889 f->fmt.pix.bytesperline = f->fmt.pix.width * 2;
890 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
891 f->fmt.pix.colorspace = 0;
892 f->fmt.pix.priv = 0;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300893 DBG("%s: V4L2_PIX_FMT_%s (%d) ok!\n", __func__,
894 decode_fourcc(f->fmt.pix.pixelformat, pixelformat_name),
895 f->fmt.pix.field);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300896 return 0;
897}
898
Hans Verkuil78b526a2008-05-28 12:16:41 -0300899static int zr364xx_vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300900 struct v4l2_format *f)
901{
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300902 struct zr364xx_camera *cam;
903
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300904 if (file == NULL)
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300905 return -ENODEV;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300906 cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300907
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300908 f->fmt.pix.pixelformat = formats[0].fourcc;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300909 f->fmt.pix.field = V4L2_FIELD_NONE;
910 f->fmt.pix.width = cam->width;
911 f->fmt.pix.height = cam->height;
912 f->fmt.pix.bytesperline = f->fmt.pix.width * 2;
913 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
914 f->fmt.pix.colorspace = 0;
915 f->fmt.pix.priv = 0;
916 return 0;
917}
918
Hans Verkuil78b526a2008-05-28 12:16:41 -0300919static int zr364xx_vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300920 struct v4l2_format *f)
921{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300922 struct zr364xx_camera *cam = video_drvdata(file);
923 struct videobuf_queue *q = &cam->vb_vidq;
924 char pixelformat_name[5];
925 int ret = zr364xx_vidioc_try_fmt_vid_cap(file, cam, f);
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -0300926 int i;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300927
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300928 if (ret < 0)
929 return ret;
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300930
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300931 mutex_lock(&q->vb_lock);
932
933 if (videobuf_queue_is_busy(&cam->vb_vidq)) {
934 DBG("%s queue busy\n", __func__);
935 ret = -EBUSY;
936 goto out;
937 }
938
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -0300939 if (res_check(cam)) {
940 DBG("%s can't change format after started\n", __func__);
941 ret = -EBUSY;
942 goto out;
943 }
944
945 cam->width = f->fmt.pix.width;
946 cam->height = f->fmt.pix.height;
947 dev_info(&cam->udev->dev, "%s: %dx%d mode selected\n", __func__,
948 cam->width, cam->height);
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300949 f->fmt.pix.bytesperline = f->fmt.pix.width * 2;
950 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
951 f->fmt.pix.colorspace = 0;
952 f->fmt.pix.priv = 0;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -0300953 cam->vb_vidq.field = f->fmt.pix.field;
954 cam->mode.color = V4L2_PIX_FMT_JPEG;
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -0300955
956 if (f->fmt.pix.width == 160 && f->fmt.pix.height == 120)
957 mode = 1;
958 else if (f->fmt.pix.width == 640 && f->fmt.pix.height == 480)
959 mode = 2;
960 else
961 mode = 0;
962
963 m0d1[0] = mode;
964 m1[2].value = 0xf000 + mode;
965 m2[1].value = 0xf000 + mode;
Antoine Jacquet08135ba2009-12-27 18:22:05 -0300966
967 /* special case for METHOD3, the modes are different */
968 if (cam->method == METHOD3) {
969 switch (mode) {
970 case 1:
971 m2[1].value = 0xf000 + 4;
972 break;
973 case 2:
974 m2[1].value = 0xf000 + 0;
975 break;
976 default:
977 m2[1].value = 0xf000 + 1;
978 break;
979 }
980 }
981
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -0300982 header2[437] = cam->height / 256;
983 header2[438] = cam->height % 256;
984 header2[439] = cam->width / 256;
985 header2[440] = cam->width % 256;
986
987 for (i = 0; init[cam->method][i].size != -1; i++) {
988 ret =
989 send_control_msg(cam->udev, 1, init[cam->method][i].value,
990 0, init[cam->method][i].bytes,
991 init[cam->method][i].size);
992 if (ret < 0) {
993 dev_err(&cam->udev->dev,
994 "error during resolution change sequence: %d\n", i);
995 goto out;
996 }
997 }
998
999 /* Added some delay here, since opening/closing the camera quickly,
1000 * like Ekiga does during its startup, can crash the webcam
1001 */
1002 mdelay(100);
1003 cam->skip = 2;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001004 ret = 0;
1005
1006out:
1007 mutex_unlock(&q->vb_lock);
1008
1009 DBG("%s: V4L2_PIX_FMT_%s (%d) ok!\n", __func__,
1010 decode_fourcc(f->fmt.pix.pixelformat, pixelformat_name),
1011 f->fmt.pix.field);
1012 return ret;
1013}
1014
1015static int zr364xx_vidioc_reqbufs(struct file *file, void *priv,
1016 struct v4l2_requestbuffers *p)
1017{
1018 int rc;
1019 struct zr364xx_camera *cam = video_drvdata(file);
1020 rc = videobuf_reqbufs(&cam->vb_vidq, p);
1021 return rc;
1022}
1023
1024static int zr364xx_vidioc_querybuf(struct file *file,
1025 void *priv,
1026 struct v4l2_buffer *p)
1027{
1028 int rc;
1029 struct zr364xx_camera *cam = video_drvdata(file);
1030 rc = videobuf_querybuf(&cam->vb_vidq, p);
1031 return rc;
1032}
1033
1034static int zr364xx_vidioc_qbuf(struct file *file,
1035 void *priv,
1036 struct v4l2_buffer *p)
1037{
1038 int rc;
1039 struct zr364xx_camera *cam = video_drvdata(file);
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -03001040 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001041 rc = videobuf_qbuf(&cam->vb_vidq, p);
1042 return rc;
1043}
1044
1045static int zr364xx_vidioc_dqbuf(struct file *file,
1046 void *priv,
1047 struct v4l2_buffer *p)
1048{
1049 int rc;
1050 struct zr364xx_camera *cam = video_drvdata(file);
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -03001051 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001052 rc = videobuf_dqbuf(&cam->vb_vidq, p, file->f_flags & O_NONBLOCK);
1053 return rc;
1054}
1055
1056static void read_pipe_completion(struct urb *purb)
1057{
1058 struct zr364xx_pipeinfo *pipe_info;
1059 struct zr364xx_camera *cam;
1060 int pipe;
1061
1062 pipe_info = purb->context;
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -03001063 _DBG("%s %p, status %d\n", __func__, purb, purb->status);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001064 if (pipe_info == NULL) {
1065 printk(KERN_ERR KBUILD_MODNAME ": no context!\n");
1066 return;
1067 }
1068
1069 cam = pipe_info->cam;
1070 if (cam == NULL) {
1071 printk(KERN_ERR KBUILD_MODNAME ": no context!\n");
1072 return;
1073 }
1074
1075 /* if shutting down, do not resubmit, exit immediately */
1076 if (purb->status == -ESHUTDOWN) {
1077 DBG("%s, err shutdown\n", __func__);
1078 pipe_info->err_count++;
1079 return;
1080 }
1081
1082 if (pipe_info->state == 0) {
1083 DBG("exiting USB pipe\n");
1084 return;
1085 }
1086
1087 if (purb->actual_length < 0 ||
1088 purb->actual_length > pipe_info->transfer_size) {
1089 dev_err(&cam->udev->dev, "wrong number of bytes\n");
1090 return;
1091 }
1092
1093 if (purb->status == 0)
1094 zr364xx_read_video_callback(cam, pipe_info, purb);
1095 else {
1096 pipe_info->err_count++;
1097 DBG("%s: failed URB %d\n", __func__, purb->status);
1098 }
1099
1100 pipe = usb_rcvbulkpipe(cam->udev, cam->read_endpoint);
1101
1102 /* reuse urb */
1103 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev,
1104 pipe,
1105 pipe_info->transfer_buffer,
1106 pipe_info->transfer_size,
1107 read_pipe_completion, pipe_info);
1108
1109 if (pipe_info->state != 0) {
1110 purb->status = usb_submit_urb(pipe_info->stream_urb,
1111 GFP_ATOMIC);
1112
1113 if (purb->status)
1114 dev_err(&cam->udev->dev,
1115 "error submitting urb (error=%i)\n",
1116 purb->status);
1117 } else
1118 DBG("read pipe complete state 0\n");
1119}
1120
1121static int zr364xx_start_readpipe(struct zr364xx_camera *cam)
1122{
1123 int pipe;
1124 int retval;
1125 struct zr364xx_pipeinfo *pipe_info = cam->pipe;
1126 pipe = usb_rcvbulkpipe(cam->udev, cam->read_endpoint);
1127 DBG("%s: start pipe IN x%x\n", __func__, cam->read_endpoint);
1128
1129 pipe_info->state = 1;
1130 pipe_info->err_count = 0;
1131 pipe_info->stream_urb = usb_alloc_urb(0, GFP_KERNEL);
1132 if (!pipe_info->stream_urb) {
1133 dev_err(&cam->udev->dev, "ReadStream: Unable to alloc URB\n");
1134 return -ENOMEM;
1135 }
1136 /* transfer buffer allocated in board_init */
1137 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev,
1138 pipe,
1139 pipe_info->transfer_buffer,
1140 pipe_info->transfer_size,
1141 read_pipe_completion, pipe_info);
1142
1143 DBG("submitting URB %p\n", pipe_info->stream_urb);
1144 retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL);
1145 if (retval) {
1146 printk(KERN_ERR KBUILD_MODNAME ": start read pipe failed\n");
1147 return retval;
1148 }
1149
1150 return 0;
1151}
1152
1153static void zr364xx_stop_readpipe(struct zr364xx_camera *cam)
1154{
1155 struct zr364xx_pipeinfo *pipe_info;
1156
1157 if (cam == NULL) {
1158 printk(KERN_ERR KBUILD_MODNAME ": invalid device\n");
1159 return;
1160 }
1161 DBG("stop read pipe\n");
1162 pipe_info = cam->pipe;
1163 if (pipe_info) {
1164 if (pipe_info->state != 0)
1165 pipe_info->state = 0;
1166
1167 if (pipe_info->stream_urb) {
1168 /* cancel urb */
1169 usb_kill_urb(pipe_info->stream_urb);
1170 usb_free_urb(pipe_info->stream_urb);
1171 pipe_info->stream_urb = NULL;
1172 }
1173 }
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001174 return;
1175}
1176
1177/* starts acquisition process */
1178static int zr364xx_start_acquire(struct zr364xx_camera *cam)
1179{
1180 int j;
1181
1182 DBG("start acquire\n");
1183
1184 cam->last_frame = -1;
1185 cam->cur_frame = 0;
1186 for (j = 0; j < FRAMES; j++) {
1187 cam->buffer.frame[j].ulState = ZR364XX_READ_IDLE;
1188 cam->buffer.frame[j].cur_size = 0;
1189 }
Lamarque Vieira Souza8c5f32a2009-07-20 20:46:42 -03001190 cam->b_acquire = 1;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001191 return 0;
1192}
1193
1194static inline int zr364xx_stop_acquire(struct zr364xx_camera *cam)
1195{
1196 cam->b_acquire = 0;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001197 return 0;
1198}
1199
1200static int zr364xx_vidioc_streamon(struct file *file, void *priv,
1201 enum v4l2_buf_type type)
1202{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001203 struct zr364xx_camera *cam = video_drvdata(file);
1204 int j;
1205 int res;
1206
1207 DBG("%s\n", __func__);
1208
1209 if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1210 dev_err(&cam->udev->dev, "invalid fh type0\n");
1211 return -EINVAL;
1212 }
1213 if (cam->type != type) {
1214 dev_err(&cam->udev->dev, "invalid fh type1\n");
1215 return -EINVAL;
1216 }
1217
1218 if (!res_get(cam)) {
1219 dev_err(&cam->udev->dev, "stream busy\n");
1220 return -EBUSY;
1221 }
1222
1223 cam->last_frame = -1;
1224 cam->cur_frame = 0;
1225 cam->frame_count = 0;
1226 for (j = 0; j < FRAMES; j++) {
1227 cam->buffer.frame[j].ulState = ZR364XX_READ_IDLE;
1228 cam->buffer.frame[j].cur_size = 0;
1229 }
1230 res = videobuf_streamon(&cam->vb_vidq);
1231 if (res == 0) {
1232 zr364xx_start_acquire(cam);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001233 } else {
1234 res_free(cam);
1235 }
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001236 return res;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001237}
1238
1239static int zr364xx_vidioc_streamoff(struct file *file, void *priv,
1240 enum v4l2_buf_type type)
1241{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001242 int res;
1243 struct zr364xx_camera *cam = video_drvdata(file);
1244
1245 DBG("%s\n", __func__);
1246 if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1247 dev_err(&cam->udev->dev, "invalid fh type0\n");
1248 return -EINVAL;
1249 }
1250 if (cam->type != type) {
1251 dev_err(&cam->udev->dev, "invalid fh type1\n");
1252 return -EINVAL;
1253 }
1254 zr364xx_stop_acquire(cam);
1255 res = videobuf_streamoff(&cam->vb_vidq);
1256 if (res < 0)
1257 return res;
1258 res_free(cam);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001259 return 0;
1260}
1261
1262
1263/* open the camera */
Hans Verkuilbec43662008-12-30 06:58:20 -03001264static int zr364xx_open(struct file *file)
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001265{
1266 struct video_device *vdev = video_devdata(file);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001267 struct zr364xx_camera *cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001268 struct usb_device *udev = cam->udev;
1269 int i, err;
1270
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001271 DBG("%s\n", __func__);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001272
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001273 mutex_lock(&cam->open_lock);
Antoine Jacquet69025c92008-08-18 17:09:53 -03001274
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001275 if (cam->users) {
1276 err = -EBUSY;
Antoine Jacquet69025c92008-08-18 17:09:53 -03001277 goto out;
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001278 }
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001279
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001280 for (i = 0; init[cam->method][i].size != -1; i++) {
1281 err =
1282 send_control_msg(udev, 1, init[cam->method][i].value,
1283 0, init[cam->method][i].bytes,
1284 init[cam->method][i].size);
1285 if (err < 0) {
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001286 dev_err(&cam->udev->dev,
1287 "error during open sequence: %d\n", i);
Antoine Jacquet69025c92008-08-18 17:09:53 -03001288 goto out;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001289 }
1290 }
1291
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001292 cam->skip = 2;
1293 cam->users++;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001294 file->private_data = vdev;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001295 cam->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1296 cam->fmt = formats;
1297
1298 videobuf_queue_vmalloc_init(&cam->vb_vidq, &zr364xx_video_qops,
1299 NULL, &cam->slock,
1300 cam->type,
1301 V4L2_FIELD_NONE,
Hans Verkuil08bff032010-09-20 17:39:46 -03001302 sizeof(struct zr364xx_buffer), cam, NULL);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001303
1304 /* Added some delay here, since opening/closing the camera quickly,
1305 * like Ekiga does during its startup, can crash the webcam
1306 */
1307 mdelay(100);
Antoine Jacquet69025c92008-08-18 17:09:53 -03001308 err = 0;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001309
Antoine Jacquet69025c92008-08-18 17:09:53 -03001310out:
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001311 mutex_unlock(&cam->open_lock);
1312 DBG("%s: %d\n", __func__, err);
Antoine Jacquet69025c92008-08-18 17:09:53 -03001313 return err;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001314}
1315
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001316static void zr364xx_destroy(struct zr364xx_camera *cam)
1317{
1318 unsigned long i;
1319
1320 if (!cam) {
1321 printk(KERN_ERR KBUILD_MODNAME ", %s: no device\n", __func__);
1322 return;
1323 }
1324 mutex_lock(&cam->open_lock);
Hans Verkuil2b992512012-06-02 06:32:48 -03001325 video_unregister_device(&cam->vdev);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001326
1327 /* stops the read pipe if it is running */
1328 if (cam->b_acquire)
1329 zr364xx_stop_acquire(cam);
1330
1331 zr364xx_stop_readpipe(cam);
1332
1333 /* release sys buffers */
1334 for (i = 0; i < FRAMES; i++) {
1335 if (cam->buffer.frame[i].lpvbits) {
1336 DBG("vfree %p\n", cam->buffer.frame[i].lpvbits);
1337 vfree(cam->buffer.frame[i].lpvbits);
1338 }
1339 cam->buffer.frame[i].lpvbits = NULL;
1340 }
1341
1342 /* release transfer buffer */
1343 kfree(cam->pipe->transfer_buffer);
1344 cam->pipe->transfer_buffer = NULL;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001345 mutex_unlock(&cam->open_lock);
1346 kfree(cam);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001347}
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001348
1349/* release the camera */
Hans Verkuilbec43662008-12-30 06:58:20 -03001350static int zr364xx_release(struct file *file)
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001351{
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001352 struct zr364xx_camera *cam;
1353 struct usb_device *udev;
1354 int i, err;
1355
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001356 DBG("%s\n", __func__);
1357 cam = video_drvdata(file);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001358
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001359 if (!cam)
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001360 return -ENODEV;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001361
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001362 mutex_lock(&cam->open_lock);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001363 udev = cam->udev;
1364
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001365 /* turn off stream */
1366 if (res_check(cam)) {
1367 if (cam->b_acquire)
1368 zr364xx_stop_acquire(cam);
1369 videobuf_streamoff(&cam->vb_vidq);
1370 res_free(cam);
1371 }
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001372
1373 cam->users--;
1374 file->private_data = NULL;
1375
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001376 for (i = 0; i < 2; i++) {
1377 err =
1378 send_control_msg(udev, 1, init[cam->method][i].value,
Roel Kluin7b808922009-08-11 08:10:25 -03001379 0, init[cam->method][i].bytes,
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001380 init[cam->method][i].size);
1381 if (err < 0) {
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001382 dev_err(&udev->dev, "error during release sequence\n");
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001383 goto out;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001384 }
1385 }
1386
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001387 /* Added some delay here, since opening/closing the camera quickly,
1388 * like Ekiga does during its startup, can crash the webcam
1389 */
1390 mdelay(100);
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001391 err = 0;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001392
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001393out:
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001394 mutex_unlock(&cam->open_lock);
1395
Antoine Jacquet33d27a42008-08-18 17:14:30 -03001396 return err;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001397}
1398
1399
1400static int zr364xx_mmap(struct file *file, struct vm_area_struct *vma)
1401{
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001402 struct zr364xx_camera *cam = video_drvdata(file);
1403 int ret;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001404
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001405 if (cam == NULL) {
1406 DBG("%s: cam == NULL\n", __func__);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001407 return -ENODEV;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001408 }
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001409 DBG("mmap called, vma=0x%08lx\n", (unsigned long)vma);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001410
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001411 ret = videobuf_mmap_mapper(&cam->vb_vidq, vma);
1412
1413 DBG("vma start=0x%08lx, size=%ld, ret=%d\n",
1414 (unsigned long)vma->vm_start,
1415 (unsigned long)vma->vm_end - (unsigned long)vma->vm_start, ret);
1416 return ret;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001417}
1418
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001419static unsigned int zr364xx_poll(struct file *file,
1420 struct poll_table_struct *wait)
1421{
1422 struct zr364xx_camera *cam = video_drvdata(file);
1423 struct videobuf_queue *q = &cam->vb_vidq;
Lamarque Vieira Souza76594c52009-07-22 16:54:51 -03001424 _DBG("%s\n", __func__);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001425
1426 if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1427 return POLLERR;
1428
1429 return videobuf_poll_stream(file, q, wait);
1430}
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001431
Hans Verkuilbec43662008-12-30 06:58:20 -03001432static const struct v4l2_file_operations zr364xx_fops = {
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001433 .owner = THIS_MODULE,
1434 .open = zr364xx_open,
1435 .release = zr364xx_release,
1436 .read = zr364xx_read,
1437 .mmap = zr364xx_mmap,
1438 .ioctl = video_ioctl2,
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001439 .poll = zr364xx_poll,
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001440};
1441
Hans Verkuila3998102008-07-21 02:57:38 -03001442static const struct v4l2_ioctl_ops zr364xx_ioctl_ops = {
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001443 .vidioc_querycap = zr364xx_vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001444 .vidioc_enum_fmt_vid_cap = zr364xx_vidioc_enum_fmt_vid_cap,
1445 .vidioc_try_fmt_vid_cap = zr364xx_vidioc_try_fmt_vid_cap,
1446 .vidioc_s_fmt_vid_cap = zr364xx_vidioc_s_fmt_vid_cap,
1447 .vidioc_g_fmt_vid_cap = zr364xx_vidioc_g_fmt_vid_cap,
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001448 .vidioc_enum_input = zr364xx_vidioc_enum_input,
1449 .vidioc_g_input = zr364xx_vidioc_g_input,
1450 .vidioc_s_input = zr364xx_vidioc_s_input,
1451 .vidioc_streamon = zr364xx_vidioc_streamon,
1452 .vidioc_streamoff = zr364xx_vidioc_streamoff,
1453 .vidioc_queryctrl = zr364xx_vidioc_queryctrl,
1454 .vidioc_g_ctrl = zr364xx_vidioc_g_ctrl,
1455 .vidioc_s_ctrl = zr364xx_vidioc_s_ctrl,
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001456 .vidioc_reqbufs = zr364xx_vidioc_reqbufs,
1457 .vidioc_querybuf = zr364xx_vidioc_querybuf,
1458 .vidioc_qbuf = zr364xx_vidioc_qbuf,
1459 .vidioc_dqbuf = zr364xx_vidioc_dqbuf,
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001460};
1461
Hans Verkuila3998102008-07-21 02:57:38 -03001462static struct video_device zr364xx_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001463 .name = DRIVER_DESC,
Hans Verkuila3998102008-07-21 02:57:38 -03001464 .fops = &zr364xx_fops,
1465 .ioctl_ops = &zr364xx_ioctl_ops,
Hans Verkuil2b992512012-06-02 06:32:48 -03001466 .release = video_device_release_empty,
Hans Verkuila3998102008-07-21 02:57:38 -03001467};
1468
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001469
1470
1471/*******************/
1472/* USB integration */
1473/*******************/
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001474static int zr364xx_board_init(struct zr364xx_camera *cam)
1475{
1476 struct zr364xx_pipeinfo *pipe = cam->pipe;
1477 unsigned long i;
1478
1479 DBG("board init: %p\n", cam);
1480 memset(pipe, 0, sizeof(*pipe));
1481 pipe->cam = cam;
1482 pipe->transfer_size = BUFFER_SIZE;
1483
1484 pipe->transfer_buffer = kzalloc(pipe->transfer_size,
1485 GFP_KERNEL);
1486 if (pipe->transfer_buffer == NULL) {
1487 DBG("out of memory!\n");
1488 return -ENOMEM;
1489 }
1490
1491 cam->b_acquire = 0;
1492 cam->frame_count = 0;
1493
1494 /*** start create system buffers ***/
1495 for (i = 0; i < FRAMES; i++) {
1496 /* always allocate maximum size for system buffers */
1497 cam->buffer.frame[i].lpvbits = vmalloc(MAX_FRAME_SIZE);
1498
1499 DBG("valloc %p, idx %lu, pdata %p\n",
1500 &cam->buffer.frame[i], i,
1501 cam->buffer.frame[i].lpvbits);
1502 if (cam->buffer.frame[i].lpvbits == NULL) {
1503 printk(KERN_INFO KBUILD_MODNAME ": out of memory. "
1504 "Using less frames\n");
1505 break;
1506 }
1507 }
1508
1509 if (i == 0) {
1510 printk(KERN_INFO KBUILD_MODNAME ": out of memory. Aborting\n");
1511 kfree(cam->pipe->transfer_buffer);
1512 cam->pipe->transfer_buffer = NULL;
1513 return -ENOMEM;
1514 } else
1515 cam->buffer.dwFrames = i;
1516
1517 /* make sure internal states are set */
1518 for (i = 0; i < FRAMES; i++) {
1519 cam->buffer.frame[i].ulState = ZR364XX_READ_IDLE;
1520 cam->buffer.frame[i].cur_size = 0;
1521 }
1522
1523 cam->cur_frame = 0;
1524 cam->last_frame = -1;
1525 /*** end create system buffers ***/
1526
1527 /* start read pipe */
1528 zr364xx_start_readpipe(cam);
1529 DBG(": board initialized\n");
1530 return 0;
1531}
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001532
1533static int zr364xx_probe(struct usb_interface *intf,
1534 const struct usb_device_id *id)
1535{
1536 struct usb_device *udev = interface_to_usbdev(intf);
1537 struct zr364xx_camera *cam = NULL;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001538 struct usb_host_interface *iface_desc;
1539 struct usb_endpoint_descriptor *endpoint;
Akinobu Mita783aa8f2007-05-20 09:12:10 -03001540 int err;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001541 int i;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001542
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001543 DBG("probing...\n");
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001544
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001545 dev_info(&intf->dev, DRIVER_DESC " compatible webcam plugged\n");
1546 dev_info(&intf->dev, "model %04x:%04x detected\n",
1547 le16_to_cpu(udev->descriptor.idVendor),
1548 le16_to_cpu(udev->descriptor.idProduct));
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001549
Akinobu Mita783aa8f2007-05-20 09:12:10 -03001550 cam = kzalloc(sizeof(struct zr364xx_camera), GFP_KERNEL);
1551 if (cam == NULL) {
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001552 dev_err(&udev->dev, "cam: out of memory !\n");
Akinobu Mita783aa8f2007-05-20 09:12:10 -03001553 return -ENOMEM;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001554 }
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001555 /* save the init method used by this camera */
1556 cam->method = id->driver_info;
Hans Verkuil2b992512012-06-02 06:32:48 -03001557 cam->vdev = zr364xx_template;
1558 cam->vdev.parent = &intf->dev;
1559 video_set_drvdata(&cam->vdev, cam);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001560 if (debug)
Hans Verkuil2b992512012-06-02 06:32:48 -03001561 cam->vdev.debug = V4L2_DEBUG_IOCTL | V4L2_DEBUG_IOCTL_ARG;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001562
1563 cam->udev = udev;
1564
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001565 switch (mode) {
1566 case 1:
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001567 dev_info(&udev->dev, "160x120 mode selected\n");
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001568 cam->width = 160;
1569 cam->height = 120;
1570 break;
1571 case 2:
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001572 dev_info(&udev->dev, "640x480 mode selected\n");
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001573 cam->width = 640;
1574 cam->height = 480;
1575 break;
1576 default:
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001577 dev_info(&udev->dev, "320x240 mode selected\n");
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001578 cam->width = 320;
1579 cam->height = 240;
1580 break;
1581 }
1582
1583 m0d1[0] = mode;
1584 m1[2].value = 0xf000 + mode;
1585 m2[1].value = 0xf000 + mode;
Antoine Jacquet08135ba2009-12-27 18:22:05 -03001586
1587 /* special case for METHOD3, the modes are different */
1588 if (cam->method == METHOD3) {
1589 switch (mode) {
1590 case 1:
1591 m2[1].value = 0xf000 + 4;
1592 break;
1593 case 2:
1594 m2[1].value = 0xf000 + 0;
1595 break;
1596 default:
1597 m2[1].value = 0xf000 + 1;
1598 break;
1599 }
1600 }
1601
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001602 header2[437] = cam->height / 256;
1603 header2[438] = cam->height % 256;
1604 header2[439] = cam->width / 256;
1605 header2[440] = cam->width % 256;
1606
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001607 cam->users = 0;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001608 cam->nb = 0;
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001609 cam->mode.brightness = 64;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001610 mutex_init(&cam->lock);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001611 mutex_init(&cam->open_lock);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001612
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001613 DBG("dev: %p, udev %p interface %p\n", cam, cam->udev, intf);
1614
1615 /* set up the endpoint information */
1616 iface_desc = intf->cur_altsetting;
1617 DBG("num endpoints %d\n", iface_desc->desc.bNumEndpoints);
1618 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
1619 endpoint = &iface_desc->endpoint[i].desc;
1620 if (!cam->read_endpoint && usb_endpoint_is_bulk_in(endpoint)) {
1621 /* we found the bulk in endpoint */
1622 cam->read_endpoint = endpoint->bEndpointAddress;
1623 }
1624 }
1625
1626 if (!cam->read_endpoint) {
1627 dev_err(&intf->dev, "Could not find bulk-in endpoint\n");
Julia Lawall0163b922011-08-12 08:40:08 -03001628 kfree(cam);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001629 return -ENOMEM;
1630 }
1631
1632 /* v4l */
1633 INIT_LIST_HEAD(&cam->vidq.active);
1634 cam->vidq.cam = cam;
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001635
1636 usb_set_intfdata(intf, cam);
1637
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001638 /* load zr364xx board specific */
1639 err = zr364xx_board_init(cam);
1640 if (err) {
Hans Verkuil2b992512012-06-02 06:32:48 -03001641 kfree(cam);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001642 return err;
1643 }
1644
1645 spin_lock_init(&cam->slock);
1646
Hans Verkuil2b992512012-06-02 06:32:48 -03001647 err = video_register_device(&cam->vdev, VFL_TYPE_GRABBER, -1);
1648 if (err) {
1649 dev_err(&udev->dev, "video_register_device failed\n");
1650 kfree(cam);
1651 return err;
1652 }
1653
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001654 dev_info(&udev->dev, DRIVER_DESC " controlling device %s\n",
Hans Verkuil2b992512012-06-02 06:32:48 -03001655 video_device_node_name(&cam->vdev));
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001656 return 0;
1657}
1658
1659
1660static void zr364xx_disconnect(struct usb_interface *intf)
1661{
1662 struct zr364xx_camera *cam = usb_get_intfdata(intf);
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001663 videobuf_mmap_free(&cam->vb_vidq);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001664 usb_set_intfdata(intf, NULL);
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -03001665 dev_info(&intf->dev, DRIVER_DESC " webcam unplugged\n");
Lamarque Vieira Souzaccbf0352009-07-15 20:54:55 -03001666 zr364xx_destroy(cam);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001667}
1668
1669
1670
1671/**********************/
1672/* Module integration */
1673/**********************/
1674
1675static struct usb_driver zr364xx_driver = {
1676 .name = "zr364xx",
1677 .probe = zr364xx_probe,
1678 .disconnect = zr364xx_disconnect,
1679 .id_table = device_table
1680};
1681
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001682module_usb_driver(zr364xx_driver);
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001683
1684MODULE_AUTHOR(DRIVER_AUTHOR);
1685MODULE_DESCRIPTION(DRIVER_DESC);
1686MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001687MODULE_VERSION(DRIVER_VERSION);