960272d3c9241819ec18f7e6753cf5158c7a155b
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / media / usb / usbvision / usbvision-video.c
1 /*
2 * USB USBVISION Video device driver 0.9.10
3 *
4 *
5 *
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
7 *
8 * This module is part of usbvision driver project.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * Let's call the version 0.... until compression decoding is completely
21 * implemented.
22 *
23 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
24 * It was based on USB CPiA driver written by Peter Pregler,
25 * Scott J. Bertin and Johannes Erdfelt
26 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
27 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
28 * Updates to driver completed by Dwaine P. Garden
29 *
30 *
31 * TODO:
32 * - use submit_urb for all setup packets
33 * - Fix memory settings for nt1004. It is 4 times as big as the
34 * nt1003 memory.
35 * - Add audio on endpoint 3 for nt1004 chip.
36 * Seems impossible, needs a codec interface. Which one?
37 * - Clean up the driver.
38 * - optimization for performance.
39 * - Add Videotext capability (VBI). Working on it.....
40 * - Check audio for other devices
41 *
42 */
43
44 #include <linux/kernel.h>
45 #include <linux/list.h>
46 #include <linux/timer.h>
47 #include <linux/slab.h>
48 #include <linux/mm.h>
49 #include <linux/highmem.h>
50 #include <linux/vmalloc.h>
51 #include <linux/module.h>
52 #include <linux/init.h>
53 #include <linux/spinlock.h>
54 #include <linux/io.h>
55 #include <linux/videodev2.h>
56 #include <linux/i2c.h>
57
58 #include <media/i2c/saa7115.h>
59 #include <media/v4l2-common.h>
60 #include <media/v4l2-ioctl.h>
61 #include <media/v4l2-event.h>
62 #include <media/tuner.h>
63
64 #include <linux/workqueue.h>
65
66 #include "usbvision.h"
67 #include "usbvision-cards.h"
68
69 #define DRIVER_AUTHOR \
70 "Joerg Heckenbach <joerg@heckenbach-aw.de>, " \
71 "Dwaine Garden <DwaineGarden@rogers.com>"
72 #define DRIVER_NAME "usbvision"
73 #define DRIVER_ALIAS "USBVision"
74 #define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
75 #define DRIVER_LICENSE "GPL"
76 #define USBVISION_VERSION_STRING "0.9.11"
77
78 #define ENABLE_HEXDUMP 0 /* Enable if you need it */
79
80
81 #ifdef USBVISION_DEBUG
82 #define PDEBUG(level, fmt, args...) { \
83 if (video_debug & (level)) \
84 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
85 __func__, __LINE__ , ## args); \
86 }
87 #else
88 #define PDEBUG(level, fmt, args...) do {} while (0)
89 #endif
90
91 #define DBG_IO (1 << 1)
92 #define DBG_PROBE (1 << 2)
93 #define DBG_MMAP (1 << 3)
94
95 /* String operations */
96 #define rmspace(str) while (*str == ' ') str++;
97 #define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
98
99
100 /* sequential number of usbvision device */
101 static int usbvision_nr;
102
103 static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
104 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
105 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
106 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
107 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
108 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
109 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
110 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, /* 1.5 ! */
111 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
112 };
113
114 /* Function prototypes */
115 static void usbvision_release(struct usb_usbvision *usbvision);
116
117 /* Default initialization of device driver parameters */
118 /* Set the default format for ISOC endpoint */
119 static int isoc_mode = ISOC_MODE_COMPRESS;
120 /* Set the default Debug Mode of the device driver */
121 static int video_debug;
122 /* Sequential Number of Video Device */
123 static int video_nr = -1;
124 /* Sequential Number of Radio Device */
125 static int radio_nr = -1;
126
127 /* Grab parameters for the device driver */
128
129 /* Showing parameters under SYSFS */
130 module_param(isoc_mode, int, 0444);
131 module_param(video_debug, int, 0444);
132 module_param(video_nr, int, 0444);
133 module_param(radio_nr, int, 0444);
134
135 MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
136 MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
137 MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
138 MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
139
140
141 /* Misc stuff */
142 MODULE_AUTHOR(DRIVER_AUTHOR);
143 MODULE_DESCRIPTION(DRIVER_DESC);
144 MODULE_LICENSE(DRIVER_LICENSE);
145 MODULE_VERSION(USBVISION_VERSION_STRING);
146 MODULE_ALIAS(DRIVER_ALIAS);
147
148
149 /*****************************************************************************/
150 /* SYSFS Code - Copied from the stv680.c usb module. */
151 /* Device information is located at /sys/class/video4linux/video0 */
152 /* Device parameters information is located at /sys/module/usbvision */
153 /* Device USB Information is located at */
154 /* /sys/bus/usb/drivers/USBVision Video Grabber */
155 /*****************************************************************************/
156
157 #define YES_NO(x) ((x) ? "Yes" : "No")
158
159 static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
160 {
161 struct video_device *vdev = to_video_device(cd);
162 return video_get_drvdata(vdev);
163 }
164
165 static ssize_t show_version(struct device *cd,
166 struct device_attribute *attr, char *buf)
167 {
168 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
169 }
170 static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
171
172 static ssize_t show_model(struct device *cd,
173 struct device_attribute *attr, char *buf)
174 {
175 struct video_device *vdev = to_video_device(cd);
176 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
177 return sprintf(buf, "%s\n",
178 usbvision_device_data[usbvision->dev_model].model_string);
179 }
180 static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
181
182 static ssize_t show_hue(struct device *cd,
183 struct device_attribute *attr, char *buf)
184 {
185 struct video_device *vdev = to_video_device(cd);
186 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
187 s32 val = v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision->hdl,
188 V4L2_CID_HUE));
189
190 return sprintf(buf, "%d\n", val);
191 }
192 static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
193
194 static ssize_t show_contrast(struct device *cd,
195 struct device_attribute *attr, char *buf)
196 {
197 struct video_device *vdev = to_video_device(cd);
198 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
199 s32 val = v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision->hdl,
200 V4L2_CID_CONTRAST));
201
202 return sprintf(buf, "%d\n", val);
203 }
204 static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
205
206 static ssize_t show_brightness(struct device *cd,
207 struct device_attribute *attr, char *buf)
208 {
209 struct video_device *vdev = to_video_device(cd);
210 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
211 s32 val = v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision->hdl,
212 V4L2_CID_BRIGHTNESS));
213
214 return sprintf(buf, "%d\n", val);
215 }
216 static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
217
218 static ssize_t show_saturation(struct device *cd,
219 struct device_attribute *attr, char *buf)
220 {
221 struct video_device *vdev = to_video_device(cd);
222 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
223 s32 val = v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision->hdl,
224 V4L2_CID_SATURATION));
225
226 return sprintf(buf, "%d\n", val);
227 }
228 static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
229
230 static ssize_t show_streaming(struct device *cd,
231 struct device_attribute *attr, char *buf)
232 {
233 struct video_device *vdev = to_video_device(cd);
234 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
235 return sprintf(buf, "%s\n",
236 YES_NO(usbvision->streaming == stream_on ? 1 : 0));
237 }
238 static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
239
240 static ssize_t show_compression(struct device *cd,
241 struct device_attribute *attr, char *buf)
242 {
243 struct video_device *vdev = to_video_device(cd);
244 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
245 return sprintf(buf, "%s\n",
246 YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
247 }
248 static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
249
250 static ssize_t show_device_bridge(struct device *cd,
251 struct device_attribute *attr, char *buf)
252 {
253 struct video_device *vdev = to_video_device(cd);
254 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
255 return sprintf(buf, "%d\n", usbvision->bridge_type);
256 }
257 static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
258
259 static void usbvision_create_sysfs(struct video_device *vdev)
260 {
261 int res;
262
263 if (!vdev)
264 return;
265 do {
266 res = device_create_file(&vdev->dev, &dev_attr_version);
267 if (res < 0)
268 break;
269 res = device_create_file(&vdev->dev, &dev_attr_model);
270 if (res < 0)
271 break;
272 res = device_create_file(&vdev->dev, &dev_attr_hue);
273 if (res < 0)
274 break;
275 res = device_create_file(&vdev->dev, &dev_attr_contrast);
276 if (res < 0)
277 break;
278 res = device_create_file(&vdev->dev, &dev_attr_brightness);
279 if (res < 0)
280 break;
281 res = device_create_file(&vdev->dev, &dev_attr_saturation);
282 if (res < 0)
283 break;
284 res = device_create_file(&vdev->dev, &dev_attr_streaming);
285 if (res < 0)
286 break;
287 res = device_create_file(&vdev->dev, &dev_attr_compression);
288 if (res < 0)
289 break;
290 res = device_create_file(&vdev->dev, &dev_attr_bridge);
291 if (res >= 0)
292 return;
293 } while (0);
294
295 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
296 }
297
298 static void usbvision_remove_sysfs(struct video_device *vdev)
299 {
300 if (vdev) {
301 device_remove_file(&vdev->dev, &dev_attr_version);
302 device_remove_file(&vdev->dev, &dev_attr_model);
303 device_remove_file(&vdev->dev, &dev_attr_hue);
304 device_remove_file(&vdev->dev, &dev_attr_contrast);
305 device_remove_file(&vdev->dev, &dev_attr_brightness);
306 device_remove_file(&vdev->dev, &dev_attr_saturation);
307 device_remove_file(&vdev->dev, &dev_attr_streaming);
308 device_remove_file(&vdev->dev, &dev_attr_compression);
309 device_remove_file(&vdev->dev, &dev_attr_bridge);
310 }
311 }
312
313 /*
314 * usbvision_open()
315 *
316 * This is part of Video 4 Linux API. The driver can be opened by one
317 * client only (checks internal counter 'usbvision->user'). The procedure
318 * then allocates buffers needed for video processing.
319 *
320 */
321 static int usbvision_v4l2_open(struct file *file)
322 {
323 struct usb_usbvision *usbvision = video_drvdata(file);
324 int err_code = 0;
325
326 PDEBUG(DBG_IO, "open");
327
328 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
329 return -ERESTARTSYS;
330
331 if (usbvision->user) {
332 err_code = -EBUSY;
333 } else {
334 err_code = v4l2_fh_open(file);
335 if (err_code)
336 goto unlock;
337
338 /* Allocate memory for the scratch ring buffer */
339 err_code = usbvision_scratch_alloc(usbvision);
340 if (isoc_mode == ISOC_MODE_COMPRESS) {
341 /* Allocate intermediate decompression buffers
342 only if needed */
343 err_code = usbvision_decompress_alloc(usbvision);
344 }
345 if (err_code) {
346 /* Deallocate all buffers if trouble */
347 usbvision_scratch_free(usbvision);
348 usbvision_decompress_free(usbvision);
349 }
350 }
351
352 /* If so far no errors then we shall start the camera */
353 if (!err_code) {
354 /* Send init sequence only once, it's large! */
355 if (!usbvision->initialized) {
356 int setup_ok = 0;
357 setup_ok = usbvision_setup(usbvision, isoc_mode);
358 if (setup_ok)
359 usbvision->initialized = 1;
360 else
361 err_code = -EBUSY;
362 }
363
364 if (!err_code) {
365 usbvision_begin_streaming(usbvision);
366 err_code = usbvision_init_isoc(usbvision);
367 /* device must be initialized before isoc transfer */
368 usbvision_muxsel(usbvision, 0);
369
370 /* prepare queues */
371 usbvision_empty_framequeues(usbvision);
372 usbvision->user++;
373 }
374 }
375
376 unlock:
377 mutex_unlock(&usbvision->v4l2_lock);
378
379 PDEBUG(DBG_IO, "success");
380 return err_code;
381 }
382
383 /*
384 * usbvision_v4l2_close()
385 *
386 * This is part of Video 4 Linux API. The procedure
387 * stops streaming and deallocates all buffers that were earlier
388 * allocated in usbvision_v4l2_open().
389 *
390 */
391 static int usbvision_v4l2_close(struct file *file)
392 {
393 struct usb_usbvision *usbvision = video_drvdata(file);
394
395 PDEBUG(DBG_IO, "close");
396
397 mutex_lock(&usbvision->v4l2_lock);
398 usbvision_audio_off(usbvision);
399 usbvision_restart_isoc(usbvision);
400 usbvision_stop_isoc(usbvision);
401
402 usbvision_decompress_free(usbvision);
403 usbvision_frames_free(usbvision);
404 usbvision_empty_framequeues(usbvision);
405 usbvision_scratch_free(usbvision);
406
407 usbvision->user--;
408 mutex_unlock(&usbvision->v4l2_lock);
409
410 if (usbvision->remove_pending) {
411 printk(KERN_INFO "%s: Final disconnect\n", __func__);
412 usbvision_release(usbvision);
413 return 0;
414 }
415
416 PDEBUG(DBG_IO, "success");
417 return v4l2_fh_release(file);
418 }
419
420
421 /*
422 * usbvision_ioctl()
423 *
424 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
425 *
426 */
427 #ifdef CONFIG_VIDEO_ADV_DEBUG
428 static int vidioc_g_register(struct file *file, void *priv,
429 struct v4l2_dbg_register *reg)
430 {
431 struct usb_usbvision *usbvision = video_drvdata(file);
432 int err_code;
433
434 /* NT100x has a 8-bit register space */
435 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
436 if (err_code < 0) {
437 dev_err(&usbvision->vdev.dev,
438 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
439 __func__, err_code);
440 return err_code;
441 }
442 reg->val = err_code;
443 reg->size = 1;
444 return 0;
445 }
446
447 static int vidioc_s_register(struct file *file, void *priv,
448 const struct v4l2_dbg_register *reg)
449 {
450 struct usb_usbvision *usbvision = video_drvdata(file);
451 int err_code;
452
453 /* NT100x has a 8-bit register space */
454 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
455 if (err_code < 0) {
456 dev_err(&usbvision->vdev.dev,
457 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
458 __func__, err_code);
459 return err_code;
460 }
461 return 0;
462 }
463 #endif
464
465 static int vidioc_querycap(struct file *file, void *priv,
466 struct v4l2_capability *vc)
467 {
468 struct usb_usbvision *usbvision = video_drvdata(file);
469 struct video_device *vdev = video_devdata(file);
470
471 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
472 strlcpy(vc->card,
473 usbvision_device_data[usbvision->dev_model].model_string,
474 sizeof(vc->card));
475 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
476 vc->device_caps = usbvision->have_tuner ? V4L2_CAP_TUNER : 0;
477 if (vdev->vfl_type == VFL_TYPE_GRABBER)
478 vc->device_caps |= V4L2_CAP_VIDEO_CAPTURE |
479 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
480 else
481 vc->device_caps |= V4L2_CAP_RADIO;
482
483 vc->capabilities = vc->device_caps | V4L2_CAP_VIDEO_CAPTURE |
484 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING | V4L2_CAP_DEVICE_CAPS;
485 if (usbvision_device_data[usbvision->dev_model].radio)
486 vc->capabilities |= V4L2_CAP_RADIO;
487 return 0;
488 }
489
490 static int vidioc_enum_input(struct file *file, void *priv,
491 struct v4l2_input *vi)
492 {
493 struct usb_usbvision *usbvision = video_drvdata(file);
494 int chan;
495
496 if (vi->index >= usbvision->video_inputs)
497 return -EINVAL;
498 if (usbvision->have_tuner)
499 chan = vi->index;
500 else
501 chan = vi->index + 1; /* skip Television string*/
502
503 /* Determine the requested input characteristics
504 specific for each usbvision card model */
505 switch (chan) {
506 case 0:
507 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
508 strcpy(vi->name, "White Video Input");
509 } else {
510 strcpy(vi->name, "Television");
511 vi->type = V4L2_INPUT_TYPE_TUNER;
512 vi->tuner = chan;
513 vi->std = USBVISION_NORMS;
514 }
515 break;
516 case 1:
517 vi->type = V4L2_INPUT_TYPE_CAMERA;
518 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
519 strcpy(vi->name, "Green Video Input");
520 else
521 strcpy(vi->name, "Composite Video Input");
522 vi->std = USBVISION_NORMS;
523 break;
524 case 2:
525 vi->type = V4L2_INPUT_TYPE_CAMERA;
526 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
527 strcpy(vi->name, "Yellow Video Input");
528 else
529 strcpy(vi->name, "S-Video Input");
530 vi->std = USBVISION_NORMS;
531 break;
532 case 3:
533 vi->type = V4L2_INPUT_TYPE_CAMERA;
534 strcpy(vi->name, "Red Video Input");
535 vi->std = USBVISION_NORMS;
536 break;
537 }
538 return 0;
539 }
540
541 static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
542 {
543 struct usb_usbvision *usbvision = video_drvdata(file);
544
545 *input = usbvision->ctl_input;
546 return 0;
547 }
548
549 static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
550 {
551 struct usb_usbvision *usbvision = video_drvdata(file);
552
553 if (input >= usbvision->video_inputs)
554 return -EINVAL;
555
556 usbvision_muxsel(usbvision, input);
557 usbvision_set_input(usbvision);
558 usbvision_set_output(usbvision,
559 usbvision->curwidth,
560 usbvision->curheight);
561 return 0;
562 }
563
564 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id id)
565 {
566 struct usb_usbvision *usbvision = video_drvdata(file);
567
568 usbvision->tvnorm_id = id;
569
570 call_all(usbvision, video, s_std, usbvision->tvnorm_id);
571 /* propagate the change to the decoder */
572 usbvision_muxsel(usbvision, usbvision->ctl_input);
573
574 return 0;
575 }
576
577 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
578 {
579 struct usb_usbvision *usbvision = video_drvdata(file);
580
581 *id = usbvision->tvnorm_id;
582 return 0;
583 }
584
585 static int vidioc_g_tuner(struct file *file, void *priv,
586 struct v4l2_tuner *vt)
587 {
588 struct usb_usbvision *usbvision = video_drvdata(file);
589
590 if (vt->index) /* Only tuner 0 */
591 return -EINVAL;
592 if (vt->type == V4L2_TUNER_RADIO)
593 strcpy(vt->name, "Radio");
594 else
595 strcpy(vt->name, "Television");
596
597 /* Let clients fill in the remainder of this struct */
598 call_all(usbvision, tuner, g_tuner, vt);
599
600 return 0;
601 }
602
603 static int vidioc_s_tuner(struct file *file, void *priv,
604 const struct v4l2_tuner *vt)
605 {
606 struct usb_usbvision *usbvision = video_drvdata(file);
607
608 /* Only one tuner for now */
609 if (vt->index)
610 return -EINVAL;
611 /* let clients handle this */
612 call_all(usbvision, tuner, s_tuner, vt);
613
614 return 0;
615 }
616
617 static int vidioc_g_frequency(struct file *file, void *priv,
618 struct v4l2_frequency *freq)
619 {
620 struct usb_usbvision *usbvision = video_drvdata(file);
621
622 /* Only one tuner */
623 if (freq->tuner)
624 return -EINVAL;
625 if (freq->type == V4L2_TUNER_RADIO)
626 freq->frequency = usbvision->radio_freq;
627 else
628 freq->frequency = usbvision->tv_freq;
629
630 return 0;
631 }
632
633 static int vidioc_s_frequency(struct file *file, void *priv,
634 const struct v4l2_frequency *freq)
635 {
636 struct usb_usbvision *usbvision = video_drvdata(file);
637 struct v4l2_frequency new_freq = *freq;
638
639 /* Only one tuner for now */
640 if (freq->tuner)
641 return -EINVAL;
642
643 call_all(usbvision, tuner, s_frequency, freq);
644 call_all(usbvision, tuner, g_frequency, &new_freq);
645 if (freq->type == V4L2_TUNER_RADIO)
646 usbvision->radio_freq = new_freq.frequency;
647 else
648 usbvision->tv_freq = new_freq.frequency;
649
650 return 0;
651 }
652
653 static int vidioc_reqbufs(struct file *file,
654 void *priv, struct v4l2_requestbuffers *vr)
655 {
656 struct usb_usbvision *usbvision = video_drvdata(file);
657 int ret;
658
659 RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
660
661 /* Check input validity:
662 the user must do a VIDEO CAPTURE and MMAP method. */
663 if (vr->memory != V4L2_MEMORY_MMAP)
664 return -EINVAL;
665
666 if (usbvision->streaming == stream_on) {
667 ret = usbvision_stream_interrupt(usbvision);
668 if (ret)
669 return ret;
670 }
671
672 usbvision_frames_free(usbvision);
673 usbvision_empty_framequeues(usbvision);
674 vr->count = usbvision_frames_alloc(usbvision, vr->count);
675
676 usbvision->cur_frame = NULL;
677
678 return 0;
679 }
680
681 static int vidioc_querybuf(struct file *file,
682 void *priv, struct v4l2_buffer *vb)
683 {
684 struct usb_usbvision *usbvision = video_drvdata(file);
685 struct usbvision_frame *frame;
686
687 /* FIXME : must control
688 that buffers are mapped (VIDIOC_REQBUFS has been called) */
689 if (vb->index >= usbvision->num_frames)
690 return -EINVAL;
691 /* Updating the corresponding frame state */
692 vb->flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
693 frame = &usbvision->frame[vb->index];
694 if (frame->grabstate >= frame_state_ready)
695 vb->flags |= V4L2_BUF_FLAG_QUEUED;
696 if (frame->grabstate >= frame_state_done)
697 vb->flags |= V4L2_BUF_FLAG_DONE;
698 if (frame->grabstate == frame_state_unused)
699 vb->flags |= V4L2_BUF_FLAG_MAPPED;
700 vb->memory = V4L2_MEMORY_MMAP;
701
702 vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
703
704 vb->memory = V4L2_MEMORY_MMAP;
705 vb->field = V4L2_FIELD_NONE;
706 vb->length = usbvision->curwidth *
707 usbvision->curheight *
708 usbvision->palette.bytes_per_pixel;
709 vb->timestamp = usbvision->frame[vb->index].timestamp;
710 vb->sequence = usbvision->frame[vb->index].sequence;
711 return 0;
712 }
713
714 static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
715 {
716 struct usb_usbvision *usbvision = video_drvdata(file);
717 struct usbvision_frame *frame;
718 unsigned long lock_flags;
719
720 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
721 if (vb->index >= usbvision->num_frames)
722 return -EINVAL;
723
724 frame = &usbvision->frame[vb->index];
725
726 if (frame->grabstate != frame_state_unused)
727 return -EAGAIN;
728
729 /* Mark it as ready and enqueue frame */
730 frame->grabstate = frame_state_ready;
731 frame->scanstate = scan_state_scanning;
732 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
733
734 vb->flags &= ~V4L2_BUF_FLAG_DONE;
735
736 /* set v4l2_format index */
737 frame->v4l2_format = usbvision->palette;
738
739 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
740 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
741 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
742
743 return 0;
744 }
745
746 static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
747 {
748 struct usb_usbvision *usbvision = video_drvdata(file);
749 int ret;
750 struct usbvision_frame *f;
751 unsigned long lock_flags;
752
753 if (list_empty(&(usbvision->outqueue))) {
754 if (usbvision->streaming == stream_idle)
755 return -EINVAL;
756 ret = wait_event_interruptible
757 (usbvision->wait_frame,
758 !list_empty(&(usbvision->outqueue)));
759 if (ret)
760 return ret;
761 }
762
763 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
764 f = list_entry(usbvision->outqueue.next,
765 struct usbvision_frame, frame);
766 list_del(usbvision->outqueue.next);
767 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
768
769 f->grabstate = frame_state_unused;
770
771 vb->memory = V4L2_MEMORY_MMAP;
772 vb->flags = V4L2_BUF_FLAG_MAPPED |
773 V4L2_BUF_FLAG_QUEUED |
774 V4L2_BUF_FLAG_DONE |
775 V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
776 vb->index = f->index;
777 vb->sequence = f->sequence;
778 vb->timestamp = f->timestamp;
779 vb->field = V4L2_FIELD_NONE;
780 vb->bytesused = f->scanlength;
781
782 return 0;
783 }
784
785 static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
786 {
787 struct usb_usbvision *usbvision = video_drvdata(file);
788
789 usbvision->streaming = stream_on;
790 call_all(usbvision, video, s_stream, 1);
791
792 return 0;
793 }
794
795 static int vidioc_streamoff(struct file *file,
796 void *priv, enum v4l2_buf_type type)
797 {
798 struct usb_usbvision *usbvision = video_drvdata(file);
799
800 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
801 return -EINVAL;
802
803 if (usbvision->streaming == stream_on) {
804 usbvision_stream_interrupt(usbvision);
805 /* Stop all video streamings */
806 call_all(usbvision, video, s_stream, 0);
807 }
808 usbvision_empty_framequeues(usbvision);
809
810 return 0;
811 }
812
813 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
814 struct v4l2_fmtdesc *vfd)
815 {
816 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
817 return -EINVAL;
818 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
819 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
820 return 0;
821 }
822
823 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
824 struct v4l2_format *vf)
825 {
826 struct usb_usbvision *usbvision = video_drvdata(file);
827 vf->fmt.pix.width = usbvision->curwidth;
828 vf->fmt.pix.height = usbvision->curheight;
829 vf->fmt.pix.pixelformat = usbvision->palette.format;
830 vf->fmt.pix.bytesperline =
831 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
832 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
833 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
834 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
835
836 return 0;
837 }
838
839 static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
840 struct v4l2_format *vf)
841 {
842 struct usb_usbvision *usbvision = video_drvdata(file);
843 int format_idx;
844
845 /* Find requested format in available ones */
846 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
847 if (vf->fmt.pix.pixelformat ==
848 usbvision_v4l2_format[format_idx].format) {
849 usbvision->palette = usbvision_v4l2_format[format_idx];
850 break;
851 }
852 }
853 /* robustness */
854 if (format_idx == USBVISION_SUPPORTED_PALETTES)
855 return -EINVAL;
856 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
857 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
858
859 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
860 usbvision->palette.bytes_per_pixel;
861 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
862 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
863 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
864
865 return 0;
866 }
867
868 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
869 struct v4l2_format *vf)
870 {
871 struct usb_usbvision *usbvision = video_drvdata(file);
872 int ret;
873
874 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
875 if (ret)
876 return ret;
877
878 /* stop io in case it is already in progress */
879 if (usbvision->streaming == stream_on) {
880 ret = usbvision_stream_interrupt(usbvision);
881 if (ret)
882 return ret;
883 }
884 usbvision_frames_free(usbvision);
885 usbvision_empty_framequeues(usbvision);
886
887 usbvision->cur_frame = NULL;
888
889 /* by now we are committed to the new data... */
890 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
891
892 return 0;
893 }
894
895 static ssize_t usbvision_read(struct file *file, char __user *buf,
896 size_t count, loff_t *ppos)
897 {
898 struct usb_usbvision *usbvision = video_drvdata(file);
899 int noblock = file->f_flags & O_NONBLOCK;
900 unsigned long lock_flags;
901 int ret, i;
902 struct usbvision_frame *frame;
903
904 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
905 (unsigned long)count, noblock);
906
907 if (!USBVISION_IS_OPERATIONAL(usbvision) || !buf)
908 return -EFAULT;
909
910 /* This entry point is compatible with the mmap routines
911 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
912 to get frames or call read on the device. */
913 if (!usbvision->num_frames) {
914 /* First, allocate some frames to work with
915 if this has not been done with VIDIOC_REQBUF */
916 usbvision_frames_free(usbvision);
917 usbvision_empty_framequeues(usbvision);
918 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
919 }
920
921 if (usbvision->streaming != stream_on) {
922 /* no stream is running, make it running ! */
923 usbvision->streaming = stream_on;
924 call_all(usbvision, video, s_stream, 1);
925 }
926
927 /* Then, enqueue as many frames as possible
928 (like a user of VIDIOC_QBUF would do) */
929 for (i = 0; i < usbvision->num_frames; i++) {
930 frame = &usbvision->frame[i];
931 if (frame->grabstate == frame_state_unused) {
932 /* Mark it as ready and enqueue frame */
933 frame->grabstate = frame_state_ready;
934 frame->scanstate = scan_state_scanning;
935 /* Accumulated in usbvision_parse_data() */
936 frame->scanlength = 0;
937
938 /* set v4l2_format index */
939 frame->v4l2_format = usbvision->palette;
940
941 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
942 list_add_tail(&frame->frame, &usbvision->inqueue);
943 spin_unlock_irqrestore(&usbvision->queue_lock,
944 lock_flags);
945 }
946 }
947
948 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
949 if (list_empty(&(usbvision->outqueue))) {
950 if (noblock)
951 return -EAGAIN;
952
953 ret = wait_event_interruptible
954 (usbvision->wait_frame,
955 !list_empty(&(usbvision->outqueue)));
956 if (ret)
957 return ret;
958 }
959
960 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
961 frame = list_entry(usbvision->outqueue.next,
962 struct usbvision_frame, frame);
963 list_del(usbvision->outqueue.next);
964 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
965
966 /* An error returns an empty frame */
967 if (frame->grabstate == frame_state_error) {
968 frame->bytes_read = 0;
969 return 0;
970 }
971
972 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
973 __func__,
974 frame->index, frame->bytes_read, frame->scanlength);
975
976 /* copy bytes to user space; we allow for partials reads */
977 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
978 count = frame->scanlength - frame->bytes_read;
979
980 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
981 return -EFAULT;
982
983 frame->bytes_read += count;
984 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
985 __func__,
986 (unsigned long)count, frame->bytes_read);
987
988 #if 1
989 /*
990 * FIXME:
991 * For now, forget the frame if it has not been read in one shot.
992 */
993 frame->bytes_read = 0;
994
995 /* Mark it as available to be used again. */
996 frame->grabstate = frame_state_unused;
997 #else
998 if (frame->bytes_read >= frame->scanlength) {
999 /* All data has been read */
1000 frame->bytes_read = 0;
1001
1002 /* Mark it as available to be used again. */
1003 frame->grabstate = frame_state_unused;
1004 }
1005 #endif
1006
1007 return count;
1008 }
1009
1010 static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
1011 size_t count, loff_t *ppos)
1012 {
1013 struct usb_usbvision *usbvision = video_drvdata(file);
1014 int res;
1015
1016 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1017 return -ERESTARTSYS;
1018 res = usbvision_read(file, buf, count, ppos);
1019 mutex_unlock(&usbvision->v4l2_lock);
1020 return res;
1021 }
1022
1023 static int usbvision_mmap(struct file *file, struct vm_area_struct *vma)
1024 {
1025 unsigned long size = vma->vm_end - vma->vm_start,
1026 start = vma->vm_start;
1027 void *pos;
1028 u32 i;
1029 struct usb_usbvision *usbvision = video_drvdata(file);
1030
1031 PDEBUG(DBG_MMAP, "mmap");
1032
1033 if (!USBVISION_IS_OPERATIONAL(usbvision))
1034 return -EFAULT;
1035
1036 if (!(vma->vm_flags & VM_WRITE) ||
1037 size != PAGE_ALIGN(usbvision->max_frame_size)) {
1038 return -EINVAL;
1039 }
1040
1041 for (i = 0; i < usbvision->num_frames; i++) {
1042 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1043 vma->vm_pgoff)
1044 break;
1045 }
1046 if (i == usbvision->num_frames) {
1047 PDEBUG(DBG_MMAP,
1048 "mmap: user supplied mapping address is out of range");
1049 return -EINVAL;
1050 }
1051
1052 /* VM_IO is eventually going to replace PageReserved altogether */
1053 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
1054
1055 pos = usbvision->frame[i].data;
1056 while (size > 0) {
1057 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1058 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
1059 return -EAGAIN;
1060 }
1061 start += PAGE_SIZE;
1062 pos += PAGE_SIZE;
1063 size -= PAGE_SIZE;
1064 }
1065
1066 return 0;
1067 }
1068
1069 static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1070 {
1071 struct usb_usbvision *usbvision = video_drvdata(file);
1072 int res;
1073
1074 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1075 return -ERESTARTSYS;
1076 res = usbvision_mmap(file, vma);
1077 mutex_unlock(&usbvision->v4l2_lock);
1078 return res;
1079 }
1080
1081 /*
1082 * Here comes the stuff for radio on usbvision based devices
1083 *
1084 */
1085 static int usbvision_radio_open(struct file *file)
1086 {
1087 struct usb_usbvision *usbvision = video_drvdata(file);
1088 int err_code = 0;
1089
1090 PDEBUG(DBG_IO, "%s:", __func__);
1091
1092 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1093 return -ERESTARTSYS;
1094 err_code = v4l2_fh_open(file);
1095 if (err_code)
1096 goto out;
1097 if (usbvision->user) {
1098 dev_err(&usbvision->rdev.dev,
1099 "%s: Someone tried to open an already opened USBVision Radio!\n",
1100 __func__);
1101 err_code = -EBUSY;
1102 } else {
1103 /* Alternate interface 1 is is the biggest frame size */
1104 err_code = usbvision_set_alternate(usbvision);
1105 if (err_code < 0) {
1106 usbvision->last_error = err_code;
1107 err_code = -EBUSY;
1108 goto out;
1109 }
1110
1111 /* If so far no errors then we shall start the radio */
1112 usbvision->radio = 1;
1113 call_all(usbvision, tuner, s_radio);
1114 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1115 usbvision->user++;
1116 }
1117 out:
1118 mutex_unlock(&usbvision->v4l2_lock);
1119 return err_code;
1120 }
1121
1122
1123 static int usbvision_radio_close(struct file *file)
1124 {
1125 struct usb_usbvision *usbvision = video_drvdata(file);
1126
1127 PDEBUG(DBG_IO, "");
1128
1129 mutex_lock(&usbvision->v4l2_lock);
1130 /* Set packet size to 0 */
1131 usbvision->iface_alt = 0;
1132 usb_set_interface(usbvision->dev, usbvision->iface,
1133 usbvision->iface_alt);
1134
1135 usbvision_audio_off(usbvision);
1136 usbvision->radio = 0;
1137 usbvision->user--;
1138 mutex_unlock(&usbvision->v4l2_lock);
1139
1140 if (usbvision->remove_pending) {
1141 printk(KERN_INFO "%s: Final disconnect\n", __func__);
1142 v4l2_fh_release(file);
1143 usbvision_release(usbvision);
1144 return 0;
1145 }
1146
1147 PDEBUG(DBG_IO, "success");
1148 return v4l2_fh_release(file);
1149 }
1150
1151 /* Video registration stuff */
1152
1153 /* Video template */
1154 static const struct v4l2_file_operations usbvision_fops = {
1155 .owner = THIS_MODULE,
1156 .open = usbvision_v4l2_open,
1157 .release = usbvision_v4l2_close,
1158 .read = usbvision_v4l2_read,
1159 .mmap = usbvision_v4l2_mmap,
1160 .unlocked_ioctl = video_ioctl2,
1161 };
1162
1163 static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
1164 .vidioc_querycap = vidioc_querycap,
1165 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1166 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1167 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1168 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1169 .vidioc_reqbufs = vidioc_reqbufs,
1170 .vidioc_querybuf = vidioc_querybuf,
1171 .vidioc_qbuf = vidioc_qbuf,
1172 .vidioc_dqbuf = vidioc_dqbuf,
1173 .vidioc_s_std = vidioc_s_std,
1174 .vidioc_g_std = vidioc_g_std,
1175 .vidioc_enum_input = vidioc_enum_input,
1176 .vidioc_g_input = vidioc_g_input,
1177 .vidioc_s_input = vidioc_s_input,
1178 .vidioc_streamon = vidioc_streamon,
1179 .vidioc_streamoff = vidioc_streamoff,
1180 .vidioc_g_tuner = vidioc_g_tuner,
1181 .vidioc_s_tuner = vidioc_s_tuner,
1182 .vidioc_g_frequency = vidioc_g_frequency,
1183 .vidioc_s_frequency = vidioc_s_frequency,
1184 .vidioc_log_status = v4l2_ctrl_log_status,
1185 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1186 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1187 #ifdef CONFIG_VIDEO_ADV_DEBUG
1188 .vidioc_g_register = vidioc_g_register,
1189 .vidioc_s_register = vidioc_s_register,
1190 #endif
1191 };
1192
1193 static struct video_device usbvision_video_template = {
1194 .fops = &usbvision_fops,
1195 .ioctl_ops = &usbvision_ioctl_ops,
1196 .name = "usbvision-video",
1197 .release = video_device_release_empty,
1198 .tvnorms = USBVISION_NORMS,
1199 };
1200
1201
1202 /* Radio template */
1203 static const struct v4l2_file_operations usbvision_radio_fops = {
1204 .owner = THIS_MODULE,
1205 .open = usbvision_radio_open,
1206 .release = usbvision_radio_close,
1207 .poll = v4l2_ctrl_poll,
1208 .unlocked_ioctl = video_ioctl2,
1209 };
1210
1211 static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
1212 .vidioc_querycap = vidioc_querycap,
1213 .vidioc_g_tuner = vidioc_g_tuner,
1214 .vidioc_s_tuner = vidioc_s_tuner,
1215 .vidioc_g_frequency = vidioc_g_frequency,
1216 .vidioc_s_frequency = vidioc_s_frequency,
1217 .vidioc_log_status = v4l2_ctrl_log_status,
1218 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1219 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1220 };
1221
1222 static struct video_device usbvision_radio_template = {
1223 .fops = &usbvision_radio_fops,
1224 .name = "usbvision-radio",
1225 .release = video_device_release_empty,
1226 .ioctl_ops = &usbvision_radio_ioctl_ops,
1227 };
1228
1229
1230 static void usbvision_vdev_init(struct usb_usbvision *usbvision,
1231 struct video_device *vdev,
1232 const struct video_device *vdev_template,
1233 const char *name)
1234 {
1235 struct usb_device *usb_dev = usbvision->dev;
1236
1237 if (!usb_dev) {
1238 dev_err(&usbvision->dev->dev,
1239 "%s: usbvision->dev is not set\n", __func__);
1240 return;
1241 }
1242
1243 *vdev = *vdev_template;
1244 vdev->lock = &usbvision->v4l2_lock;
1245 vdev->v4l2_dev = &usbvision->v4l2_dev;
1246 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1247 video_set_drvdata(vdev, usbvision);
1248 }
1249
1250 /* unregister video4linux devices */
1251 static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1252 {
1253 /* Radio Device: */
1254 if (video_is_registered(&usbvision->rdev)) {
1255 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1256 video_device_node_name(&usbvision->rdev));
1257 video_unregister_device(&usbvision->rdev);
1258 }
1259
1260 /* Video Device: */
1261 if (video_is_registered(&usbvision->vdev)) {
1262 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1263 video_device_node_name(&usbvision->vdev));
1264 video_unregister_device(&usbvision->vdev);
1265 }
1266 }
1267
1268 /* register video4linux devices */
1269 static int usbvision_register_video(struct usb_usbvision *usbvision)
1270 {
1271 int res = -ENOMEM;
1272
1273 /* Video Device: */
1274 usbvision_vdev_init(usbvision, &usbvision->vdev,
1275 &usbvision_video_template, "USBVision Video");
1276 if (!usbvision->have_tuner) {
1277 v4l2_disable_ioctl(&usbvision->vdev, VIDIOC_G_FREQUENCY);
1278 v4l2_disable_ioctl(&usbvision->vdev, VIDIOC_S_TUNER);
1279 v4l2_disable_ioctl(&usbvision->vdev, VIDIOC_G_FREQUENCY);
1280 v4l2_disable_ioctl(&usbvision->vdev, VIDIOC_S_TUNER);
1281 }
1282 if (video_register_device(&usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
1283 goto err_exit;
1284 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1285 usbvision->nr, video_device_node_name(&usbvision->vdev));
1286
1287 /* Radio Device: */
1288 if (usbvision_device_data[usbvision->dev_model].radio) {
1289 /* usbvision has radio */
1290 usbvision_vdev_init(usbvision, &usbvision->rdev,
1291 &usbvision_radio_template, "USBVision Radio");
1292 if (video_register_device(&usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
1293 goto err_exit;
1294 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1295 usbvision->nr, video_device_node_name(&usbvision->rdev));
1296 }
1297 /* all done */
1298 return 0;
1299
1300 err_exit:
1301 dev_err(&usbvision->dev->dev,
1302 "USBVision[%d]: video_register_device() failed\n",
1303 usbvision->nr);
1304 usbvision_unregister_video(usbvision);
1305 return res;
1306 }
1307
1308 /*
1309 * usbvision_alloc()
1310 *
1311 * This code allocates the struct usb_usbvision.
1312 * It is filled with default values.
1313 *
1314 * Returns NULL on error, a pointer to usb_usbvision else.
1315 *
1316 */
1317 static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1318 struct usb_interface *intf)
1319 {
1320 struct usb_usbvision *usbvision;
1321
1322 usbvision = kzalloc(sizeof(*usbvision), GFP_KERNEL);
1323 if (!usbvision)
1324 return NULL;
1325
1326 usbvision->dev = dev;
1327 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
1328 goto err_free;
1329
1330 if (v4l2_ctrl_handler_init(&usbvision->hdl, 4))
1331 goto err_unreg;
1332 usbvision->v4l2_dev.ctrl_handler = &usbvision->hdl;
1333 mutex_init(&usbvision->v4l2_lock);
1334
1335 /* prepare control urb for control messages during interrupts */
1336 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1337 if (!usbvision->ctrl_urb)
1338 goto err_unreg;
1339
1340 return usbvision;
1341
1342 err_unreg:
1343 v4l2_ctrl_handler_free(&usbvision->hdl);
1344 v4l2_device_unregister(&usbvision->v4l2_dev);
1345 err_free:
1346 kfree(usbvision);
1347 return NULL;
1348 }
1349
1350 /*
1351 * usbvision_release()
1352 *
1353 * This code does final release of struct usb_usbvision. This happens
1354 * after the device is disconnected -and- all clients closed their files.
1355 *
1356 */
1357 static void usbvision_release(struct usb_usbvision *usbvision)
1358 {
1359 PDEBUG(DBG_PROBE, "");
1360
1361 usbvision->initialized = 0;
1362
1363 usbvision_remove_sysfs(&usbvision->vdev);
1364 usbvision_unregister_video(usbvision);
1365 kfree(usbvision->alt_max_pkt_size);
1366
1367 usb_free_urb(usbvision->ctrl_urb);
1368
1369 v4l2_ctrl_handler_free(&usbvision->hdl);
1370 v4l2_device_unregister(&usbvision->v4l2_dev);
1371 kfree(usbvision);
1372
1373 PDEBUG(DBG_PROBE, "success");
1374 }
1375
1376
1377 /*********************** usb interface **********************************/
1378
1379 static void usbvision_configure_video(struct usb_usbvision *usbvision)
1380 {
1381 int model;
1382
1383 if (!usbvision)
1384 return;
1385
1386 model = usbvision->dev_model;
1387 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
1388
1389 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1390 usbvision->vin_reg2_preset =
1391 usbvision_device_data[usbvision->dev_model].vin_reg2;
1392 } else {
1393 usbvision->vin_reg2_preset = 0;
1394 }
1395
1396 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
1397 usbvision->video_inputs = usbvision_device_data[model].video_channels;
1398 usbvision->ctl_input = 0;
1399 usbvision->radio_freq = 87.5 * 16000;
1400 usbvision->tv_freq = 400 * 16;
1401
1402 /* This should be here to make i2c clients to be able to register */
1403 /* first switch off audio */
1404 if (usbvision_device_data[model].audio_channels > 0)
1405 usbvision_audio_off(usbvision);
1406 /* and then power up the tuner */
1407 usbvision_power_on(usbvision);
1408 usbvision_i2c_register(usbvision);
1409 }
1410
1411 /*
1412 * usbvision_probe()
1413 *
1414 * This procedure queries device descriptor and accepts the interface
1415 * if it looks like USBVISION video device
1416 *
1417 */
1418 static int usbvision_probe(struct usb_interface *intf,
1419 const struct usb_device_id *devid)
1420 {
1421 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1422 struct usb_interface *uif;
1423 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1424 const struct usb_host_interface *interface;
1425 struct usb_usbvision *usbvision = NULL;
1426 const struct usb_endpoint_descriptor *endpoint;
1427 int model, i, ret;
1428
1429 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
1430 le16_to_cpu(dev->descriptor.idVendor),
1431 le16_to_cpu(dev->descriptor.idProduct), ifnum);
1432
1433 model = devid->driver_info;
1434 if (model < 0 || model >= usbvision_device_data_size) {
1435 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
1436 ret = -ENODEV;
1437 goto err_usb;
1438 }
1439 printk(KERN_INFO "%s: %s found\n", __func__,
1440 usbvision_device_data[model].model_string);
1441
1442 if (usbvision_device_data[model].interface >= 0)
1443 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
1444 else if (ifnum < dev->actconfig->desc.bNumInterfaces)
1445 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1446 else {
1447 dev_err(&intf->dev, "interface %d is invalid, max is %d\n",
1448 ifnum, dev->actconfig->desc.bNumInterfaces - 1);
1449 ret = -ENODEV;
1450 goto err_usb;
1451 }
1452
1453 if (interface->desc.bNumEndpoints < 2) {
1454 dev_err(&intf->dev, "interface %d has %d endpoints, but must have minimum 2\n",
1455 ifnum, interface->desc.bNumEndpoints);
1456 ret = -ENODEV;
1457 goto err_usb;
1458 }
1459 endpoint = &interface->endpoint[1].desc;
1460
1461 if (!usb_endpoint_xfer_isoc(endpoint)) {
1462 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
1463 __func__, ifnum);
1464 dev_err(&intf->dev, "%s: Endpoint attributes %d",
1465 __func__, endpoint->bmAttributes);
1466 ret = -ENODEV;
1467 goto err_usb;
1468 }
1469 if (usb_endpoint_dir_out(endpoint)) {
1470 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
1471 __func__, ifnum);
1472 ret = -ENODEV;
1473 goto err_usb;
1474 }
1475
1476 usbvision = usbvision_alloc(dev, intf);
1477 if (!usbvision) {
1478 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
1479 ret = -ENOMEM;
1480 goto err_usb;
1481 }
1482
1483 if (dev->descriptor.bNumConfigurations > 1)
1484 usbvision->bridge_type = BRIDGE_NT1004;
1485 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
1486 usbvision->bridge_type = BRIDGE_NT1005;
1487 else
1488 usbvision->bridge_type = BRIDGE_NT1003;
1489 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
1490
1491 /* compute alternate max packet sizes */
1492 uif = dev->actconfig->interface[0];
1493
1494 usbvision->num_alt = uif->num_altsetting;
1495 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1496 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
1497 if (!usbvision->alt_max_pkt_size) {
1498 ret = -ENOMEM;
1499 goto err_pkt;
1500 }
1501
1502 for (i = 0; i < usbvision->num_alt; i++) {
1503 u16 tmp;
1504
1505 if (uif->altsetting[i].desc.bNumEndpoints < 2) {
1506 ret = -ENODEV;
1507 goto err_pkt;
1508 }
1509
1510 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1511 wMaxPacketSize);
1512 usbvision->alt_max_pkt_size[i] =
1513 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1514 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
1515 usbvision->alt_max_pkt_size[i]);
1516 }
1517
1518
1519 usbvision->nr = usbvision_nr++;
1520
1521 spin_lock_init(&usbvision->queue_lock);
1522 init_waitqueue_head(&usbvision->wait_frame);
1523 init_waitqueue_head(&usbvision->wait_stream);
1524
1525 usbvision->have_tuner = usbvision_device_data[model].tuner;
1526 if (usbvision->have_tuner)
1527 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
1528
1529 usbvision->dev_model = model;
1530 usbvision->remove_pending = 0;
1531 usbvision->iface = ifnum;
1532 usbvision->iface_alt = 0;
1533 usbvision->video_endp = endpoint->bEndpointAddress;
1534 usbvision->isoc_packet_size = 0;
1535 usbvision->usb_bandwidth = 0;
1536 usbvision->user = 0;
1537 usbvision->streaming = stream_off;
1538 usbvision_configure_video(usbvision);
1539 usbvision_register_video(usbvision);
1540
1541 usbvision_create_sysfs(&usbvision->vdev);
1542
1543 PDEBUG(DBG_PROBE, "success");
1544 return 0;
1545
1546 err_pkt:
1547 usbvision_release(usbvision);
1548 err_usb:
1549 usb_put_dev(dev);
1550 return ret;
1551 }
1552
1553
1554 /*
1555 * usbvision_disconnect()
1556 *
1557 * This procedure stops all driver activity, deallocates interface-private
1558 * structure (pointed by 'ptr') and after that driver should be removable
1559 * with no ill consequences.
1560 *
1561 */
1562 static void usbvision_disconnect(struct usb_interface *intf)
1563 {
1564 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
1565
1566 PDEBUG(DBG_PROBE, "");
1567
1568 if (!usbvision) {
1569 pr_err("%s: usb_get_intfdata() failed\n", __func__);
1570 return;
1571 }
1572
1573 mutex_lock(&usbvision->v4l2_lock);
1574
1575 /* At this time we ask to cancel outstanding URBs */
1576 usbvision_stop_isoc(usbvision);
1577
1578 v4l2_device_disconnect(&usbvision->v4l2_dev);
1579 usbvision_i2c_unregister(usbvision);
1580 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
1581
1582 usb_put_dev(usbvision->dev);
1583 usbvision->dev = NULL; /* USB device is no more */
1584
1585 mutex_unlock(&usbvision->v4l2_lock);
1586
1587 if (usbvision->user) {
1588 printk(KERN_INFO "%s: In use, disconnect pending\n",
1589 __func__);
1590 wake_up_interruptible(&usbvision->wait_frame);
1591 wake_up_interruptible(&usbvision->wait_stream);
1592 } else {
1593 usbvision_release(usbvision);
1594 }
1595
1596 PDEBUG(DBG_PROBE, "success");
1597 }
1598
1599 static struct usb_driver usbvision_driver = {
1600 .name = "usbvision",
1601 .id_table = usbvision_table,
1602 .probe = usbvision_probe,
1603 .disconnect = usbvision_disconnect,
1604 };
1605
1606 /*
1607 * usbvision_init()
1608 *
1609 * This code is run to initialize the driver.
1610 *
1611 */
1612 static int __init usbvision_init(void)
1613 {
1614 int err_code;
1615
1616 PDEBUG(DBG_PROBE, "");
1617
1618 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1619 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
1620 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
1621
1622 /* disable planar mode support unless compression enabled */
1623 if (isoc_mode != ISOC_MODE_COMPRESS) {
1624 /* FIXME : not the right way to set supported flag */
1625 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1626 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
1627 }
1628
1629 err_code = usb_register(&usbvision_driver);
1630
1631 if (err_code == 0) {
1632 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
1633 PDEBUG(DBG_PROBE, "success");
1634 }
1635 return err_code;
1636 }
1637
1638 static void __exit usbvision_exit(void)
1639 {
1640 PDEBUG(DBG_PROBE, "");
1641
1642 usb_deregister(&usbvision_driver);
1643 PDEBUG(DBG_PROBE, "success");
1644 }
1645
1646 module_init(usbvision_init);
1647 module_exit(usbvision_exit);