2 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
4 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
5 Markus Rechberger <mrechberger@gmail.com>
6 Mauro Carvalho Chehab <mchehab@brturbo.com.br>
7 Sascha Sommer <saschasommer@freenet.de>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/init.h>
25 #include <linux/list.h>
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/usb.h>
29 #include <linux/i2c.h>
30 #include <linux/version.h>
31 #include <linux/video_decoder.h>
32 #include <linux/mutex.h>
35 #include <media/tuner.h>
36 #include <media/v4l2-common.h>
38 #define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
39 "Markus Rechberger <mrechberger@gmail.com>, " \
40 "Mauro Carvalho Chehab <mchehab@brturbo.com.br>, " \
41 "Sascha Sommer <saschasommer@freenet.de>"
43 #define DRIVER_NAME "em28xx"
44 #define DRIVER_DESC "Empia em28xx based USB video device driver"
45 #define EM28XX_VERSION_CODE KERNEL_VERSION(0, 0, 1)
47 #define em28xx_videodbg(fmt, arg...) do {\
49 printk(KERN_INFO "%s %s :"fmt, \
50 dev->name, __FUNCTION__ , ##arg); } while (0)
52 MODULE_AUTHOR(DRIVER_AUTHOR);
53 MODULE_DESCRIPTION(DRIVER_DESC);
54 MODULE_LICENSE("GPL");
56 static LIST_HEAD(em28xx_devlist);
58 static unsigned int card[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
59 module_param_array(card, int, NULL, 0444);
60 MODULE_PARM_DESC(card,"card type");
62 static int tuner = -1;
63 module_param(tuner, int, 0444);
64 MODULE_PARM_DESC(tuner, "tuner type");
66 static unsigned int video_debug = 0;
67 module_param(video_debug,int,0644);
68 MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
70 /* supported tv norms */
71 static struct em28xx_tvnorm tvnorms[] = {
75 .mode = VIDEO_MODE_PAL,
79 .mode = VIDEO_MODE_NTSC,
83 .mode = VIDEO_MODE_SECAM,
87 .mode = VIDEO_MODE_PAL,
91 static const unsigned char saa7114_i2c_init[] = {
92 0x00,0x00,0x01,0x08,0x02,0xc4,0x03,0x30,0x04,0x90,0x05,0x90,0x06,0xeb,0x07,0xe0,
93 0x08,0x88,0x09,0x40,0x0a,0x80,0x0b,0x44,0x0c,0x40,0x0d,0x00,0x0e,0x81,0x0f,0x2a,
94 0x10,0x06,0x11,0x00,0x12,0xc8,0x13,0x80,0x14,0x00,0x15,0x11,0x16,0x01,0x17,0x42,
95 0x18,0x40,0x19,0x80,0x40,0x00,0x41,0xff,0x42,0xff,0x43,0xff,0x44,0xff,0x45,0xff,
96 0x46,0xff,0x47,0xff,0x48,0xff,0x49,0xff,0x4a,0xff,0x4b,0xff,0x4c,0xff,0x4d,0xff,
97 0x4e,0xff,0x4f,0xff,0x50,0xff,0x51,0xff,0x52,0xff,0x53,0xff,0x54,0x5f,0x55,0xff,
98 0x56,0xff,0x57,0xff,0x58,0x00,0x59,0x47,0x5a,0x03,0x5b,0x03,0x5d,0x3e,0x5e,0x00,
99 0x80,0x1c,0x83,0x01,0x84,0xa5,0x85,0x10,0x86,0x45,0x87,0x41,0x88,0xf0,0x88,0x00,
100 0x88,0xf0,0x90,0x00,0x91,0x08,0x92,0x00,0x93,0x80,0x94,0x08,0x95,0x00,0x96,0xc0,
101 0x97,0x02,0x98,0x13,0x99,0x00,0x9a,0x38,0x9b,0x01,0x9c,0x80,0x9d,0x02,0x9e,0x06,
102 0x9f,0x01,0xa0,0x01,0xa1,0x00,0xa2,0x00,0xa4,0x80,0xa5,0x36,0xa6,0x36,0xa8,0x67,
103 0xa9,0x04,0xaa,0x00,0xac,0x33,0xad,0x02,0xae,0x00,0xb0,0xcd,0xb1,0x04,0xb2,0xcd,
104 0xb3,0x04,0xb4,0x01,0xb8,0x00,0xb9,0x00,0xba,0x00,0xbb,0x00,0xbc,0x00,0xbd,0x00,
108 #define TVNORMS ARRAY_SIZE(tvnorms)
110 /* supported controls */
111 /* Common to all boards */
112 static struct v4l2_queryctrl em28xx_qctrl[] = {
114 .id = V4L2_CID_AUDIO_VOLUME,
115 .type = V4L2_CTRL_TYPE_INTEGER,
120 .default_value = 0x1f,
123 .id = V4L2_CID_AUDIO_MUTE,
124 .type = V4L2_CTRL_TYPE_BOOLEAN,
134 /* FIXME: These are specific to saa711x - should be moved to its code */
135 static struct v4l2_queryctrl saa711x_qctrl[] = {
137 .id = V4L2_CID_BRIGHTNESS,
138 .type = V4L2_CTRL_TYPE_INTEGER,
139 .name = "Brightness",
146 .id = V4L2_CID_CONTRAST,
147 .type = V4L2_CTRL_TYPE_INTEGER,
152 .default_value = 0x10,
155 .id = V4L2_CID_SATURATION,
156 .type = V4L2_CTRL_TYPE_INTEGER,
157 .name = "Saturation",
161 .default_value = 0x10,
164 .id = V4L2_CID_RED_BALANCE,
165 .type = V4L2_CTRL_TYPE_INTEGER,
166 .name = "Red chroma balance",
173 .id = V4L2_CID_BLUE_BALANCE,
174 .type = V4L2_CTRL_TYPE_INTEGER,
175 .name = "Blue chroma balance",
182 .id = V4L2_CID_GAMMA,
183 .type = V4L2_CTRL_TYPE_INTEGER,
188 .default_value = 0x20,
193 static struct usb_driver em28xx_usb_driver;
195 static DEFINE_MUTEX(em28xx_sysfs_lock);
196 static DECLARE_RWSEM(em28xx_disconnect);
198 /********************* v4l2 interface ******************************************/
202 * inits registers with sane defaults
204 static int em28xx_config(struct em28xx *dev)
207 /* Sets I2C speed to 100 KHz */
208 em28xx_write_regs_req(dev, 0x00, 0x06, "\x40", 1);
210 /* enable vbi capturing */
211 em28xx_audio_usb_mute(dev, 1);
212 dev->mute = 1; /* maybe not the right place... */
214 em28xx_audio_analog_set(dev);
215 em28xx_audio_analog_setup(dev);
216 em28xx_outfmt_set_yuv422(dev);
217 em28xx_colorlevels_set_default(dev);
218 em28xx_compression_disable(dev);
224 * em28xx_config_i2c()
225 * configure i2c attached devices
227 static void em28xx_config_i2c(struct em28xx *dev)
229 struct v4l2_frequency f;
230 struct video_decoder_init em28xx_vdi = {.data = NULL };
233 /* configure decoder */
234 if(dev->model == EM2820_BOARD_MSI_VOX_USB_2){
235 em28xx_vdi.data=saa7114_i2c_init;
236 em28xx_vdi.len=sizeof(saa7114_i2c_init);
240 em28xx_i2c_call_clients(dev, DECODER_INIT, &em28xx_vdi);
241 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &dev->ctl_input);
242 /* em28xx_i2c_call_clients(dev,DECODER_SET_PICTURE, &dev->vpic); */
243 /* em28xx_i2c_call_clients(dev,DECODER_SET_NORM,&dev->tvnorm->id); */
244 /* em28xx_i2c_call_clients(dev,DECODER_ENABLE_OUTPUT,&output); */
245 /* em28xx_i2c_call_clients(dev,DECODER_DUMP, NULL); */
247 /* configure tuner */
249 f.type = V4L2_TUNER_ANALOG_TV;
250 f.frequency = 9076; /* FIXME:remove magic number */
251 dev->ctl_freq = f.frequency;
252 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
254 /* configure tda9887 */
257 /* em28xx_i2c_call_clients(dev,VIDIOC_S_STD,&dev->tvnorm->id); */
261 * em28xx_empty_framequeues()
262 * prepare queues for incoming and outgoing frames
264 static void em28xx_empty_framequeues(struct em28xx *dev)
268 INIT_LIST_HEAD(&dev->inqueue);
269 INIT_LIST_HEAD(&dev->outqueue);
271 for (i = 0; i < EM28XX_NUM_FRAMES; i++) {
272 dev->frame[i].state = F_UNUSED;
273 dev->frame[i].buf.bytesused = 0;
277 static void video_mux(struct em28xx *dev, int index)
281 input = INPUT(index)->vmux;
282 dev->ctl_input = index;
283 dev->ctl_ainput = INPUT(index)->amux;
285 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &input);
288 em28xx_videodbg("Setting input index=%d, vmux=%d, amux=%d\n",index,input,dev->ctl_ainput);
290 if (dev->has_msp34xx) {
292 em28xx_i2c_call_clients(dev, VIDIOC_INT_I2S_CLOCK_FREQ, &dev->i2s_speed);
293 em28xx_i2c_call_clients(dev, VIDIOC_S_AUDIO, &dev->ctl_ainput);
294 ainput = EM28XX_AUDIO_SRC_TUNER;
295 em28xx_audio_source(dev, ainput);
297 switch (dev->ctl_ainput) {
299 ainput = EM28XX_AUDIO_SRC_TUNER;
302 ainput = EM28XX_AUDIO_SRC_LINE;
304 em28xx_audio_source(dev, ainput);
310 * inits the device and starts isoc transfer
312 static int em28xx_v4l2_open(struct inode *inode, struct file *filp)
314 int minor = iminor(inode);
316 struct em28xx *h,*dev = NULL;
317 struct list_head *list;
319 list_for_each(list,&em28xx_devlist) {
320 h = list_entry(list, struct em28xx, devlist);
321 if (h->vdev->minor == minor) {
326 filp->private_data=dev;
329 em28xx_videodbg("users=%d\n", dev->users);
331 if (!down_read_trylock(&em28xx_disconnect))
335 em28xx_warn("this driver can be opened only once\n");
336 up_read(&em28xx_disconnect);
340 /* if(dev->vbi_dev->minor == minor){
341 dev->type=V4L2_BUF_TYPE_VBI_CAPTURE;
343 if (dev->vdev->minor == minor) {
344 dev->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
347 init_MUTEX(&dev->fileop_lock); /* to 1 == available */
348 spin_lock_init(&dev->queue_lock);
349 init_waitqueue_head(&dev->wait_frame);
350 init_waitqueue_head(&dev->wait_stream);
354 em28xx_set_alternate(dev);
356 dev->width = norm_maxw(dev);
357 dev->height = norm_maxh(dev);
358 dev->frame_size = dev->width * dev->height * 2;
359 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
360 dev->bytesperline = dev->width * 2;
364 em28xx_capture_start(dev, 1);
365 em28xx_resolution_set(dev);
367 /* start the transfer */
368 errCode = em28xx_init_isoc(dev);
373 filp->private_data = dev;
375 dev->stream = STREAM_OFF;
379 em28xx_empty_framequeues(dev);
381 dev->state |= DEV_INITIALIZED;
387 up_read(&em28xx_disconnect);
392 * em28xx_realease_resources()
393 * unregisters the v4l2,i2c and usb devices
394 * called when the device gets disconected or at module unload
396 static void em28xx_release_resources(struct em28xx *dev)
398 mutex_lock(&em28xx_sysfs_lock);
400 em28xx_info("V4L2 device /dev/video%d deregistered\n",
402 list_del(&dev->devlist);
403 video_unregister_device(dev->vdev);
404 /* video_unregister_device(dev->vbi_dev); */
405 em28xx_i2c_unregister(dev);
406 usb_put_dev(dev->udev);
407 mutex_unlock(&em28xx_sysfs_lock);
411 * em28xx_v4l2_close()
412 * stops streaming and deallocates all resources allocated by the v4l2 calls and ioctls
414 static int em28xx_v4l2_close(struct inode *inode, struct file *filp)
417 struct em28xx *dev=filp->private_data;
419 em28xx_videodbg("users=%d\n", dev->users);
423 em28xx_uninit_isoc(dev);
425 em28xx_release_buffers(dev);
427 /* the device is already disconnect, free the remaining resources */
428 if (dev->state & DEV_DISCONNECTED) {
429 em28xx_release_resources(dev);
435 /* set alternate 0 */
437 em28xx_videodbg("setting alternate 0\n");
438 errCode = usb_set_interface(dev->udev, 0, 0);
440 em28xx_errdev ("cannot change alternate number to 0 (error=%i)\n",
445 wake_up_interruptible_nr(&dev->open, 1);
452 * will allocate buffers when called for the first time
455 em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
458 struct em28xx_frame_t *f, *i;
459 unsigned long lock_flags;
461 struct em28xx *dev = filp->private_data;
463 if (down_interruptible(&dev->fileop_lock))
466 if (dev->state & DEV_DISCONNECTED) {
467 em28xx_videodbg("device not present\n");
468 up(&dev->fileop_lock);
472 if (dev->state & DEV_MISCONFIGURED) {
473 em28xx_videodbg("device misconfigured; close and open it again\n");
474 up(&dev->fileop_lock);
478 if (dev->io == IO_MMAP) {
479 em28xx_videodbg ("IO method is set to mmap; close and open"
480 " the device again to choose the read method\n");
481 up(&dev->fileop_lock);
485 if (dev->io == IO_NONE) {
486 if (!em28xx_request_buffers(dev, EM28XX_NUM_READ_FRAMES)) {
487 em28xx_errdev("read failed, not enough memory\n");
488 up(&dev->fileop_lock);
492 dev->stream = STREAM_ON;
493 em28xx_queue_unusedframes(dev);
497 up(&dev->fileop_lock);
501 if (list_empty(&dev->outqueue)) {
502 if (filp->f_flags & O_NONBLOCK) {
503 up(&dev->fileop_lock);
506 ret = wait_event_interruptible
508 (!list_empty(&dev->outqueue)) ||
509 (dev->state & DEV_DISCONNECTED));
511 up(&dev->fileop_lock);
514 if (dev->state & DEV_DISCONNECTED) {
515 up(&dev->fileop_lock);
520 f = list_entry(dev->outqueue.prev, struct em28xx_frame_t, frame);
522 spin_lock_irqsave(&dev->queue_lock, lock_flags);
523 list_for_each_entry(i, &dev->outqueue, frame)
525 INIT_LIST_HEAD(&dev->outqueue);
526 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
528 em28xx_queue_unusedframes(dev);
530 if (count > f->buf.length)
531 count = f->buf.length;
533 if (copy_to_user(buf, f->bufmem, count)) {
534 up(&dev->fileop_lock);
539 up(&dev->fileop_lock);
546 * will allocate buffers when called for the first time
548 static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table * wait)
550 unsigned int mask = 0;
551 struct em28xx *dev = filp->private_data;
553 if (down_interruptible(&dev->fileop_lock))
556 if (dev->state & DEV_DISCONNECTED) {
557 em28xx_videodbg("device not present\n");
558 } else if (dev->state & DEV_MISCONFIGURED) {
559 em28xx_videodbg("device is misconfigured; close and open it again\n");
561 if (dev->io == IO_NONE) {
562 if (!em28xx_request_buffers
563 (dev, EM28XX_NUM_READ_FRAMES)) {
565 ("poll() failed, not enough memory\n");
568 dev->stream = STREAM_ON;
572 if (dev->io == IO_READ) {
573 em28xx_queue_unusedframes(dev);
574 poll_wait(filp, &dev->wait_frame, wait);
576 if (!list_empty(&dev->outqueue))
577 mask |= POLLIN | POLLRDNORM;
579 up(&dev->fileop_lock);
585 up(&dev->fileop_lock);
592 static void em28xx_vm_open(struct vm_area_struct *vma)
594 struct em28xx_frame_t *f = vma->vm_private_data;
601 static void em28xx_vm_close(struct vm_area_struct *vma)
603 /* NOTE: buffers are not freed here */
604 struct em28xx_frame_t *f = vma->vm_private_data;
608 static struct vm_operations_struct em28xx_vm_ops = {
609 .open = em28xx_vm_open,
610 .close = em28xx_vm_close,
616 static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
618 unsigned long size = vma->vm_end - vma->vm_start,
619 start = vma->vm_start;
623 struct em28xx *dev = filp->private_data;
625 if (down_interruptible(&dev->fileop_lock))
628 if (dev->state & DEV_DISCONNECTED) {
629 em28xx_videodbg("mmap: device not present\n");
630 up(&dev->fileop_lock);
634 if (dev->state & DEV_MISCONFIGURED) {
635 em28xx_videodbg ("mmap: Device is misconfigured; close and "
637 up(&dev->fileop_lock);
641 if (dev->io != IO_MMAP || !(vma->vm_flags & VM_WRITE) ||
642 size != PAGE_ALIGN(dev->frame[0].buf.length)) {
643 up(&dev->fileop_lock);
647 for (i = 0; i < dev->num_frames; i++) {
648 if ((dev->frame[i].buf.m.offset >> PAGE_SHIFT) == vma->vm_pgoff)
651 if (i == dev->num_frames) {
652 em28xx_videodbg("mmap: user supplied mapping address is out of range\n");
653 up(&dev->fileop_lock);
657 /* VM_IO is eventually going to replace PageReserved altogether */
658 vma->vm_flags |= VM_IO;
659 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
661 pos = dev->frame[i].bufmem;
662 while (size > 0) { /* size is page-aligned */
663 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
664 em28xx_videodbg("mmap: vm_insert_page failed\n");
665 up(&dev->fileop_lock);
673 vma->vm_ops = &em28xx_vm_ops;
674 vma->vm_private_data = &dev->frame[i];
677 up(&dev->fileop_lock);
683 * return the current saturation, brightness or contrast, mute state
685 static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
688 case V4L2_CID_AUDIO_MUTE:
689 ctrl->value = dev->mute;
691 case V4L2_CID_AUDIO_VOLUME:
692 ctrl->value = dev->volume;
699 /*FIXME: should be moved to saa711x */
700 static int saa711x_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
704 case V4L2_CID_BRIGHTNESS:
705 if ((tmp = em28xx_brightness_get(dev)) < 0)
707 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
709 case V4L2_CID_CONTRAST:
710 if ((ctrl->value = em28xx_contrast_get(dev)) < 0)
713 case V4L2_CID_SATURATION:
714 if ((ctrl->value = em28xx_saturation_get(dev)) < 0)
717 case V4L2_CID_RED_BALANCE:
718 if ((tmp = em28xx_v_balance_get(dev)) < 0)
720 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
722 case V4L2_CID_BLUE_BALANCE:
723 if ((tmp = em28xx_u_balance_get(dev)) < 0)
725 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
728 if ((ctrl->value = em28xx_gamma_get(dev)) < 0)
738 * mute or set new saturation, brightness or contrast
740 static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
743 case V4L2_CID_AUDIO_MUTE:
744 if (ctrl->value != dev->mute) {
745 dev->mute = ctrl->value;
746 em28xx_audio_usb_mute(dev, ctrl->value);
747 return em28xx_audio_analog_set(dev);
750 case V4L2_CID_AUDIO_VOLUME:
751 dev->volume = ctrl->value;
752 return em28xx_audio_analog_set(dev);
758 /*FIXME: should be moved to saa711x */
759 static int saa711x_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
762 case V4L2_CID_BRIGHTNESS:
763 return em28xx_brightness_set(dev, ctrl->value);
764 case V4L2_CID_CONTRAST:
765 return em28xx_contrast_set(dev, ctrl->value);
766 case V4L2_CID_SATURATION:
767 return em28xx_saturation_set(dev, ctrl->value);
768 case V4L2_CID_RED_BALANCE:
769 return em28xx_v_balance_set(dev, ctrl->value);
770 case V4L2_CID_BLUE_BALANCE:
771 return em28xx_u_balance_set(dev, ctrl->value);
773 return em28xx_gamma_set(dev, ctrl->value);
780 * em28xx_stream_interrupt()
783 static int em28xx_stream_interrupt(struct em28xx *dev)
787 /* stop reading from the device */
789 dev->stream = STREAM_INTERRUPT;
790 ret = wait_event_timeout(dev->wait_stream,
791 (dev->stream == STREAM_OFF) ||
792 (dev->state & DEV_DISCONNECTED),
794 if (dev->state & DEV_DISCONNECTED)
797 dev->state |= DEV_MISCONFIGURED;
798 em28xx_videodbg("device is misconfigured; close and "
799 "open /dev/video%d again\n", dev->vdev->minor);
806 static int em28xx_set_norm(struct em28xx *dev, int width, int height)
808 unsigned int hscale, vscale;
809 unsigned int maxh, maxw;
811 maxw = norm_maxw(dev);
812 maxh = norm_maxh(dev);
814 /* width must even because of the YUYV format */
815 /* height must be even because of interlacing */
828 if ((hscale = (((unsigned long)maxw) << 12) / width - 4096L) >= 0x4000)
830 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
832 if ((vscale = (((unsigned long)maxh) << 12) / height - 4096L) >= 0x4000)
834 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
836 /* set new image size */
838 dev->height = height;
839 dev->frame_size = dev->width * dev->height * 2;
840 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
841 dev->bytesperline = dev->width * 2;
842 dev->hscale = hscale;
843 dev->vscale = vscale;
845 em28xx_resolution_set(dev);
851 * em28xx_v4l2_do_ioctl()
852 * This function is _not_ called directly, but from
853 * em28xx_v4l2_ioctl. Userspace
854 * copying is done already, arg is a kernel pointer.
856 static int em28xx_do_ioctl(struct inode *inode, struct file *filp,
857 struct em28xx *dev, unsigned int cmd, void *arg,
858 v4l2_kioctl driver_ioctl)
863 /* ---------- tv norms ---------- */
866 struct v4l2_standard *e = arg;
872 ret = v4l2_video_std_construct(e, tvnorms[e->index].id,
873 tvnorms[e->index].name);
881 v4l2_std_id *id = arg;
883 *id = dev->tvnorm->id;
888 v4l2_std_id *id = arg;
891 for (i = 0; i < TVNORMS; i++)
892 if (*id == tvnorms[i].id)
895 for (i = 0; i < TVNORMS; i++)
896 if (*id & tvnorms[i].id)
902 dev->tvnorm = &tvnorms[i];
904 em28xx_set_norm(dev, dev->width, dev->height);
907 dev->width=norm_maxw(dev);
908 dev->height=norm_maxh(dev);
909 dev->frame_size=dev->width*dev->height*2;
910 dev->field_size=dev->frame_size>>1;
911 dev->bytesperline=dev->width*2;
915 em28xx_resolution_set(dev);
918 em28xx_uninit_isoc(dev);
919 em28xx_set_alternate(dev);
920 em28xx_capture_start(dev, 1);
921 em28xx_resolution_set(dev);
922 em28xx_init_isoc(dev);
924 em28xx_i2c_call_clients(dev, DECODER_SET_NORM,
926 em28xx_i2c_call_clients(dev, VIDIOC_S_STD,
934 /* ------ input switching ---------- */
935 case VIDIOC_ENUMINPUT:
937 struct v4l2_input *i = arg;
939 static const char *iname[] = {
940 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
941 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
942 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
943 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
944 [EM28XX_VMUX_SVIDEO] = "S-Video",
945 [EM28XX_VMUX_TELEVISION] = "Television",
946 [EM28XX_VMUX_CABLE] = "Cable TV",
947 [EM28XX_VMUX_DVB] = "DVB",
948 [EM28XX_VMUX_DEBUG] = "for debug only",
952 if (n >= MAX_EM28XX_INPUT)
954 if (0 == INPUT(n)->type)
956 memset(i, 0, sizeof(*i));
958 i->type = V4L2_INPUT_TYPE_CAMERA;
959 strcpy(i->name, iname[INPUT(n)->type]);
960 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
961 (EM28XX_VMUX_CABLE == INPUT(n)->type))
962 i->type = V4L2_INPUT_TYPE_TUNER;
963 for (n = 0; n < ARRAY_SIZE(tvnorms); n++)
964 i->std |= tvnorms[n].id;
980 if (*index >= MAX_EM28XX_INPUT)
982 if (0 == INPUT(*index)->type)
986 video_mux(dev, *index);
994 struct v4l2_audio *a = arg;
995 unsigned int index = a->index;
999 memset(a, 0, sizeof(*a));
1000 index = dev->ctl_ainput;
1003 strcpy(a->name, "Television");
1005 strcpy(a->name, "Line In");
1007 a->capability = V4L2_AUDCAP_STEREO;
1012 case VIDIOC_S_AUDIO:
1014 struct v4l2_audio *a = arg;
1015 if (a->index != dev->ctl_ainput)
1021 /* --- controls ---------------------------------------------- */
1022 case VIDIOC_QUERYCTRL:
1024 struct v4l2_queryctrl *qc = arg;
1027 memset(qc,0,sizeof(*qc));
1030 if (!dev->has_msp34xx) {
1031 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1032 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1033 memcpy(qc, &(em28xx_qctrl[i]),
1039 if (dev->decoder == EM28XX_TVP5150) {
1040 em28xx_i2c_call_clients(dev,cmd,qc);
1046 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1047 if (qc->id && qc->id == saa711x_qctrl[i].id) {
1048 memcpy(qc, &(saa711x_qctrl[i]),
1059 struct v4l2_control *ctrl = arg;
1062 if (!dev->has_msp34xx)
1063 retval=em28xx_get_ctrl(dev, ctrl);
1064 if (retval==-EINVAL) {
1065 if (dev->decoder == EM28XX_TVP5150) {
1066 em28xx_i2c_call_clients(dev,cmd,arg);
1070 return saa711x_get_ctrl(dev, ctrl);
1071 } else return retval;
1076 struct v4l2_control *ctrl = arg;
1079 if (!dev->has_msp34xx){
1080 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1081 if (ctrl->id == em28xx_qctrl[i].id) {
1083 em28xx_qctrl[i].minimum
1085 em28xx_qctrl[i].maximum)
1087 return em28xx_set_ctrl(dev, ctrl);
1092 if (dev->decoder == EM28XX_TVP5150) {
1093 em28xx_i2c_call_clients(dev,cmd,arg);
1095 } else if (!dev->has_msp34xx) {
1096 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1097 if (ctrl->id == em28xx_qctrl[i].id) {
1099 em28xx_qctrl[i].minimum
1101 em28xx_qctrl[i].maximum)
1103 return em28xx_set_ctrl(dev, ctrl);
1106 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1107 if (ctrl->id == saa711x_qctrl[i].id) {
1109 saa711x_qctrl[i].minimum
1111 saa711x_qctrl[i].maximum)
1113 return saa711x_set_ctrl(dev, ctrl);
1121 /* --- tuner ioctls ------------------------------------------ */
1122 case VIDIOC_G_TUNER:
1124 struct v4l2_tuner *t = arg;
1130 memset(t, 0, sizeof(*t));
1131 strcpy(t->name, "Tuner");
1132 t->type = V4L2_TUNER_ANALOG_TV;
1133 t->capability = V4L2_TUNER_CAP_NORM;
1134 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1135 /* t->signal = 0xffff;*/
1136 /* em28xx_i2c_call_clients(dev,VIDIOC_G_TUNER,t);*/
1137 /* No way to get signal strength? */
1139 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1143 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1145 em28xx_videodbg("VIDIO_G_TUNER: signal=%x, afc=%x\n", t->signal,
1149 case VIDIOC_S_TUNER:
1151 struct v4l2_tuner *t = arg;
1156 memset(t, 0, sizeof(*t));
1157 strcpy(t->name, "Tuner");
1158 t->type = V4L2_TUNER_ANALOG_TV;
1159 t->capability = V4L2_TUNER_CAP_NORM;
1160 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1161 /* t->signal = 0xffff; */
1162 /* No way to get signal strength? */
1164 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1168 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1170 em28xx_videodbg("VIDIO_S_TUNER: signal=%x, afc=%x\n",
1174 case VIDIOC_G_FREQUENCY:
1176 struct v4l2_frequency *f = arg;
1178 memset(f, 0, sizeof(*f));
1179 f->type = V4L2_TUNER_ANALOG_TV;
1180 f->frequency = dev->ctl_freq;
1184 case VIDIOC_S_FREQUENCY:
1186 struct v4l2_frequency *f = arg;
1191 if (V4L2_TUNER_ANALOG_TV != f->type)
1195 dev->ctl_freq = f->frequency;
1196 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1201 case VIDIOC_CROPCAP:
1203 struct v4l2_cropcap *cc = arg;
1205 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1207 cc->bounds.left = 0;
1209 cc->bounds.width = dev->width;
1210 cc->bounds.height = dev->height;
1211 cc->defrect = cc->bounds;
1212 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1213 cc->pixelaspect.denominator = 59;
1216 case VIDIOC_STREAMON:
1220 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1221 || dev->io != IO_MMAP)
1224 if (list_empty(&dev->inqueue))
1227 dev->stream = STREAM_ON; /* FIXME: Start video capture here? */
1229 em28xx_videodbg("VIDIOC_STREAMON: starting stream\n");
1233 case VIDIOC_STREAMOFF:
1238 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1239 || dev->io != IO_MMAP)
1242 if (dev->stream == STREAM_ON) {
1243 em28xx_videodbg ("VIDIOC_STREAMOFF: interrupting stream\n");
1244 if ((ret = em28xx_stream_interrupt(dev)))
1247 em28xx_empty_framequeues(dev);
1252 return v4l_compat_translate_ioctl(inode, filp, cmd, arg,
1259 * em28xx_v4l2_do_ioctl()
1260 * This function is _not_ called directly, but from
1261 * em28xx_v4l2_ioctl. Userspace
1262 * copying is done already, arg is a kernel pointer.
1264 static int em28xx_video_do_ioctl(struct inode *inode, struct file *filp,
1265 unsigned int cmd, void *arg)
1267 struct em28xx *dev = filp->private_data;
1272 if (video_debug > 1)
1273 v4l_print_ioctl(dev->name,cmd);
1277 /* --- capabilities ------------------------------------------ */
1278 case VIDIOC_QUERYCAP:
1280 struct v4l2_capability *cap = arg;
1282 memset(cap, 0, sizeof(*cap));
1283 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1284 strlcpy(cap->card, em28xx_boards[dev->model].name,
1286 strlcpy(cap->bus_info, dev->udev->dev.bus_id,
1287 sizeof(cap->bus_info));
1288 cap->version = EM28XX_VERSION_CODE;
1290 V4L2_CAP_VIDEO_CAPTURE |
1292 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1294 cap->capabilities |= V4L2_CAP_TUNER;
1298 /* --- capture ioctls ---------------------------------------- */
1299 case VIDIOC_ENUM_FMT:
1301 struct v4l2_fmtdesc *fmtd = arg;
1303 if (fmtd->index != 0)
1305 memset(fmtd, 0, sizeof(*fmtd));
1306 fmtd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1307 strcpy(fmtd->description, "Packed YUY2");
1308 fmtd->pixelformat = V4L2_PIX_FMT_YUYV;
1309 memset(fmtd->reserved, 0, sizeof(fmtd->reserved));
1315 struct v4l2_format *format = arg;
1317 em28xx_videodbg("VIDIOC_G_FMT: type=%s\n",
1319 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1320 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1321 V4L2_BUF_TYPE_VBI_CAPTURE ?
1322 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1325 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1328 format->fmt.pix.width = dev->width;
1329 format->fmt.pix.height = dev->height;
1330 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1331 format->fmt.pix.bytesperline = dev->bytesperline;
1332 format->fmt.pix.sizeimage = dev->frame_size;
1333 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1334 format->fmt.pix.field = dev->interlaced ? V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP; /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
1336 em28xx_videodbg("VIDIOC_G_FMT: %dx%d\n", dev->width,
1341 case VIDIOC_TRY_FMT:
1344 struct v4l2_format *format = arg;
1347 int width = format->fmt.pix.width;
1348 int height = format->fmt.pix.height;
1349 unsigned int hscale, vscale;
1350 unsigned int maxh, maxw;
1352 maxw = norm_maxw(dev);
1353 maxh = norm_maxh(dev);
1355 /* int both_fields; */
1357 em28xx_videodbg("%s: type=%s\n",
1359 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1362 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1363 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1364 V4L2_BUF_TYPE_VBI_CAPTURE ?
1365 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1368 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1371 em28xx_videodbg("%s: requested %dx%d\n",
1373 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1374 "VIDIOC_S_FMT", format->fmt.pix.width,
1375 format->fmt.pix.height);
1377 /* FIXME: Move some code away from here */
1378 /* width must even because of the YUYV format */
1379 /* height must be even because of interlacing */
1393 /* the em2800 can only scale down to 50% */
1394 if(height % (maxh / 2))
1396 if(width % (maxw / 2))
1398 /* according to empiatech support */
1399 /* the MaxPacketSize is to small to support */
1400 /* framesizes larger than 640x480 @ 30 fps */
1401 /* or 640x576 @ 25 fps. As this would cut */
1402 /* of a part of the image we prefer */
1403 /* 360x576 or 360x480 for now */
1404 if(width == maxw && height == maxh)
1409 (((unsigned long)maxw) << 12) / width - 4096L) >=
1413 (((unsigned long)maxw) << 12) / (hscale + 4096L);
1416 (((unsigned long)maxh) << 12) / height - 4096L) >=
1420 (((unsigned long)maxh) << 12) / (vscale + 4096L);
1422 format->fmt.pix.width = width;
1423 format->fmt.pix.height = height;
1424 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1425 format->fmt.pix.bytesperline = width * 2;
1426 format->fmt.pix.sizeimage = width * 2 * height;
1427 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1428 format->fmt.pix.field = V4L2_FIELD_INTERLACED;
1430 em28xx_videodbg("%s: returned %dx%d (%d, %d)\n",
1432 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1433 "VIDIOC_S_FMT", format->fmt.pix.width,
1434 format->fmt.pix.height, hscale, vscale);
1436 if (cmd == VIDIOC_TRY_FMT)
1439 for (i = 0; i < dev->num_frames; i++)
1440 if (dev->frame[i].vma_use_count) {
1441 em28xx_videodbg("VIDIOC_S_FMT failed. "
1442 "Unmap the buffers first.\n");
1446 /* stop io in case it is already in progress */
1447 if (dev->stream == STREAM_ON) {
1448 em28xx_videodbg("VIDIOC_SET_FMT: interupting stream\n");
1449 if ((ret = em28xx_stream_interrupt(dev)))
1453 em28xx_release_buffers(dev);
1456 /* set new image size */
1458 dev->height = height;
1459 dev->frame_size = dev->width * dev->height * 2;
1460 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
1461 dev->bytesperline = dev->width * 2;
1462 dev->hscale = hscale;
1463 dev->vscale = vscale;
1464 /* dev->both_fileds = both_fileds; */
1465 em28xx_uninit_isoc(dev);
1466 em28xx_set_alternate(dev);
1467 em28xx_capture_start(dev, 1);
1468 em28xx_resolution_set(dev);
1469 em28xx_init_isoc(dev);
1474 /* --- streaming capture ------------------------------------- */
1475 case VIDIOC_REQBUFS:
1477 struct v4l2_requestbuffers *rb = arg;
1481 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1482 rb->memory != V4L2_MEMORY_MMAP)
1485 if (dev->io == IO_READ) {
1486 em28xx_videodbg ("method is set to read;"
1487 " close and open the device again to"
1488 " choose the mmap I/O method\n");
1492 for (i = 0; i < dev->num_frames; i++)
1493 if (dev->frame[i].vma_use_count) {
1494 em28xx_videodbg ("VIDIOC_REQBUFS failed; previous buffers are still mapped\n");
1498 if (dev->stream == STREAM_ON) {
1499 em28xx_videodbg("VIDIOC_REQBUFS: interrupting stream\n");
1500 if ((ret = em28xx_stream_interrupt(dev)))
1504 em28xx_empty_framequeues(dev);
1506 em28xx_release_buffers(dev);
1509 em28xx_request_buffers(dev, rb->count);
1511 dev->frame_current = NULL;
1513 em28xx_videodbg ("VIDIOC_REQBUFS: setting io method to mmap: num bufs %i\n",
1515 dev->io = rb->count ? IO_MMAP : IO_NONE;
1519 case VIDIOC_QUERYBUF:
1521 struct v4l2_buffer *b = arg;
1523 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1524 b->index >= dev->num_frames || dev->io != IO_MMAP)
1527 memcpy(b, &dev->frame[b->index].buf, sizeof(*b));
1529 if (dev->frame[b->index].vma_use_count) {
1530 b->flags |= V4L2_BUF_FLAG_MAPPED;
1532 if (dev->frame[b->index].state == F_DONE)
1533 b->flags |= V4L2_BUF_FLAG_DONE;
1534 else if (dev->frame[b->index].state != F_UNUSED)
1535 b->flags |= V4L2_BUF_FLAG_QUEUED;
1540 struct v4l2_buffer *b = arg;
1541 unsigned long lock_flags;
1543 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1544 b->index >= dev->num_frames || dev->io != IO_MMAP) {
1548 if (dev->frame[b->index].state != F_UNUSED) {
1551 dev->frame[b->index].state = F_QUEUED;
1553 /* add frame to fifo */
1554 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1555 list_add_tail(&dev->frame[b->index].frame,
1557 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1563 struct v4l2_buffer *b = arg;
1564 struct em28xx_frame_t *f;
1565 unsigned long lock_flags;
1568 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1569 || dev->io != IO_MMAP)
1572 if (list_empty(&dev->outqueue)) {
1573 if (dev->stream == STREAM_OFF)
1575 if (filp->f_flags & O_NONBLOCK)
1577 ret = wait_event_interruptible
1579 (!list_empty(&dev->outqueue)) ||
1580 (dev->state & DEV_DISCONNECTED));
1583 if (dev->state & DEV_DISCONNECTED)
1587 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1588 f = list_entry(dev->outqueue.next,
1589 struct em28xx_frame_t, frame);
1590 list_del(dev->outqueue.next);
1591 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1593 f->state = F_UNUSED;
1594 memcpy(b, &f->buf, sizeof(*b));
1596 if (f->vma_use_count)
1597 b->flags |= V4L2_BUF_FLAG_MAPPED;
1602 return em28xx_do_ioctl(inode, filp, dev, cmd, arg,
1603 em28xx_video_do_ioctl);
1609 * em28xx_v4l2_ioctl()
1610 * handle v4l2 ioctl the main action happens in em28xx_v4l2_do_ioctl()
1612 static int em28xx_v4l2_ioctl(struct inode *inode, struct file *filp,
1613 unsigned int cmd, unsigned long arg)
1616 struct em28xx *dev = filp->private_data;
1618 if (down_interruptible(&dev->fileop_lock))
1619 return -ERESTARTSYS;
1621 if (dev->state & DEV_DISCONNECTED) {
1622 em28xx_errdev("v4l2 ioctl: device not present\n");
1623 up(&dev->fileop_lock);
1627 if (dev->state & DEV_MISCONFIGURED) {
1629 ("v4l2 ioctl: device is misconfigured; close and open it again\n");
1630 up(&dev->fileop_lock);
1634 ret = video_usercopy(inode, filp, cmd, arg, em28xx_video_do_ioctl);
1636 up(&dev->fileop_lock);
1641 static struct file_operations em28xx_v4l_fops = {
1642 .owner = THIS_MODULE,
1643 .open = em28xx_v4l2_open,
1644 .release = em28xx_v4l2_close,
1645 .ioctl = em28xx_v4l2_ioctl,
1646 .read = em28xx_v4l2_read,
1647 .poll = em28xx_v4l2_poll,
1648 .mmap = em28xx_v4l2_mmap,
1649 .llseek = no_llseek,
1650 .compat_ioctl = v4l_compat_ioctl32,
1654 /******************************** usb interface *****************************************/
1658 * allocates and inits the device structs, registers i2c bus and v4l device
1660 static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev,
1661 int minor, int model)
1663 struct em28xx *dev = *devhandle;
1664 int retval = -ENOMEM;
1666 unsigned int maxh, maxw;
1670 init_MUTEX(&dev->lock);
1671 init_waitqueue_head(&dev->open);
1673 dev->em28xx_write_regs = em28xx_write_regs;
1674 dev->em28xx_read_reg = em28xx_read_reg;
1675 dev->em28xx_read_reg_req_len = em28xx_read_reg_req_len;
1676 dev->em28xx_write_regs_req = em28xx_write_regs_req;
1677 dev->em28xx_read_reg_req = em28xx_read_reg_req;
1678 dev->is_em2800 = em28xx_boards[model].is_em2800;
1679 dev->has_tuner = em28xx_boards[model].has_tuner;
1680 dev->has_msp34xx = em28xx_boards[model].has_msp34xx;
1681 dev->tda9887_conf = em28xx_boards[model].tda9887_conf;
1682 dev->decoder = em28xx_boards[model].decoder;
1685 dev->tuner_type = tuner;
1687 dev->tuner_type = em28xx_boards[model].tuner_type;
1689 dev->video_inputs = em28xx_boards[model].vchannels;
1691 for (i = 0; i < TVNORMS; i++)
1692 if (em28xx_boards[model].norm == tvnorms[i].mode)
1697 dev->tvnorm = &tvnorms[i]; /* set default norm */
1699 em28xx_videodbg("tvnorm=%s\n", dev->tvnorm->name);
1701 maxw = norm_maxw(dev);
1702 maxh = norm_maxh(dev);
1704 /* set default image size */
1707 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
1708 dev->field_size = dev->width * dev->height;
1710 dev->interlaced ? dev->field_size << 1 : dev->field_size;
1711 dev->bytesperline = dev->width * 2;
1716 /* setup video picture settings for saa7113h */
1717 memset(&dev->vpic, 0, sizeof(dev->vpic));
1718 dev->vpic.colour = 128 << 8;
1719 dev->vpic.hue = 128 << 8;
1720 dev->vpic.brightness = 128 << 8;
1721 dev->vpic.contrast = 192 << 8;
1722 dev->vpic.whiteness = 128 << 8; /* This one isn't used */
1723 dev->vpic.depth = 16;
1724 dev->vpic.palette = VIDEO_PALETTE_YUV422;
1726 #ifdef CONFIG_MODULES
1727 /* request some modules */
1728 if (dev->decoder == EM28XX_SAA7113 || dev->decoder == EM28XX_SAA7114)
1729 request_module("saa711x");
1730 if (dev->decoder == EM28XX_TVP5150)
1731 request_module("tvp5150");
1733 request_module("tuner");
1734 if (dev->tda9887_conf)
1735 request_module("tda9887");
1737 errCode = em28xx_config(dev);
1739 em28xx_errdev("error configuring device\n");
1745 /* register i2c bus */
1746 em28xx_i2c_register(dev);
1748 /* Do board specific init and eeprom reading */
1749 em28xx_card_setup(dev);
1751 /* configure the device */
1752 em28xx_config_i2c(dev);
1756 errCode = em28xx_config(dev);
1758 #ifdef CONFIG_MODULES
1759 if (dev->has_msp34xx)
1760 request_module("msp3400");
1762 /* allocate and fill v4l2 device struct */
1763 dev->vdev = video_device_alloc();
1764 if (NULL == dev->vdev) {
1765 em28xx_errdev("cannot allocate video_device.\n");
1770 dev->vdev->type = VID_TYPE_CAPTURE;
1772 dev->vdev->type |= VID_TYPE_TUNER;
1773 dev->vdev->hardware = 0;
1774 dev->vdev->fops = &em28xx_v4l_fops;
1775 dev->vdev->minor = -1;
1776 dev->vdev->dev = &dev->udev->dev;
1777 dev->vdev->release = video_device_release;
1778 snprintf(dev->vdev->name, sizeof(dev->vdev->name), "%s",
1780 list_add_tail(&dev->devlist,&em28xx_devlist);
1782 /* register v4l2 device */
1784 if ((retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER, -1))) {
1785 em28xx_errdev("unable to register video device (error=%i).\n",
1788 list_del(&dev->devlist);
1789 video_device_release(dev->vdev);
1793 if (dev->has_msp34xx) {
1794 /* Send a reset to other chips via gpio */
1795 em28xx_write_regs_req(dev, 0x00, 0x08, "\xf7", 1);
1797 em28xx_write_regs_req(dev, 0x00, 0x08, "\xff", 1);
1805 em28xx_info("V4L2 device registered as /dev/video%d\n",
1812 * em28xx_usb_probe()
1813 * checks for supported devices
1815 static int em28xx_usb_probe(struct usb_interface *interface,
1816 const struct usb_device_id *id)
1818 const struct usb_endpoint_descriptor *endpoint;
1819 struct usb_device *udev;
1820 struct usb_interface *uif;
1821 struct em28xx *dev = NULL;
1822 int retval = -ENODEV;
1823 int model,i,nr,ifnum;
1825 udev = usb_get_dev(interface_to_usbdev(interface));
1826 ifnum = interface->altsetting[0].desc.bInterfaceNumber;
1829 /* Don't register audio interfaces */
1830 if (interface->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
1831 em28xx_err(DRIVER_NAME " audio device (%04x:%04x): interface %i, class %i\n",
1832 udev->descriptor.idVendor,udev->descriptor.idProduct,
1834 interface->altsetting[0].desc.bInterfaceClass);
1838 em28xx_err(DRIVER_NAME " new video device (%04x:%04x): interface %i, class %i\n",
1839 udev->descriptor.idVendor,udev->descriptor.idProduct,
1841 interface->altsetting[0].desc.bInterfaceClass);
1843 endpoint = &interface->cur_altsetting->endpoint[1].desc;
1845 /* check if the the device has the iso in endpoint at the correct place */
1846 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
1847 USB_ENDPOINT_XFER_ISOC) {
1848 em28xx_err(DRIVER_NAME " probing error: endpoint is non-ISO endpoint!\n");
1851 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
1852 em28xx_err(DRIVER_NAME " probing error: endpoint is ISO OUT endpoint!\n");
1856 model=id->driver_info;
1857 nr=interface->minor;
1859 if (nr>EM28XX_MAXBOARDS) {
1860 printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
1864 /* allocate memory for our device state and initialize it */
1865 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1867 em28xx_err(DRIVER_NAME ": out of memory!\n");
1871 /* compute alternate max packet sizes */
1872 uif = udev->actconfig->interface[0];
1874 dev->num_alt=uif->num_altsetting;
1875 printk(DRIVER_NAME ": Alternate settings: %i\n",dev->num_alt);
1876 // dev->alt_max_pkt_size = kmalloc(sizeof(*dev->alt_max_pkt_size)*
1877 dev->alt_max_pkt_size = kmalloc(32*
1878 dev->num_alt,GFP_KERNEL);
1879 if (dev->alt_max_pkt_size == NULL) {
1880 em28xx_err(DRIVER_NAME ": out of memory!\n");
1884 for (i = 0; i < dev->num_alt ; i++) {
1885 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1887 dev->alt_max_pkt_size[i] =
1888 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1889 printk(DRIVER_NAME ": Alternate setting %i, max size= %i\n",i,
1890 dev->alt_max_pkt_size[i]);
1893 snprintf(dev->name, 29, "em28xx #%d", nr);
1895 if ((card[nr]>=0)&&(card[nr]<em28xx_bcount))
1898 if ((model==EM2800_BOARD_UNKNOWN)||(model==EM2820_BOARD_UNKNOWN)) {
1899 printk( "%s: Your board has no eeprom inside it and thus can't\n"
1900 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1901 "%s: workaround that. Redirect complaints to the vendor of\n"
1902 "%s: the TV card. Best regards,\n"
1904 dev->name,dev->name,dev->name,dev->name,dev->name);
1905 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
1907 for (i = 0; i < em28xx_bcount; i++) {
1908 printk("%s: card=%d -> %s\n",
1909 dev->name, i, em28xx_boards[i].name);
1913 /* allocate device struct */
1914 retval = em28xx_init_dev(&dev, udev, nr, model);
1918 em28xx_info("Found %s\n", em28xx_boards[model].name);
1920 /* save our data pointer in this interface device */
1921 usb_set_intfdata(interface, dev);
1926 * em28xx_usb_disconnect()
1927 * called when the device gets diconencted
1928 * video device will be unregistered on v4l2_close in case it is still open
1930 static void em28xx_usb_disconnect(struct usb_interface *interface)
1932 struct em28xx *dev = usb_get_intfdata(interface);
1933 usb_set_intfdata(interface, NULL);
1935 /*FIXME: IR should be disconnected */
1941 down_write(&em28xx_disconnect);
1945 em28xx_info("disconnecting %s\n", dev->vdev->name);
1947 wake_up_interruptible_all(&dev->open);
1951 ("device /dev/video%d is open! Deregistration and memory "
1952 "deallocation are deferred on close.\n", dev->vdev->minor);
1953 dev->state |= DEV_MISCONFIGURED;
1954 em28xx_uninit_isoc(dev);
1955 dev->state |= DEV_DISCONNECTED;
1956 wake_up_interruptible(&dev->wait_frame);
1957 wake_up_interruptible(&dev->wait_stream);
1959 dev->state |= DEV_DISCONNECTED;
1960 em28xx_release_resources(dev);
1966 kfree(dev->alt_max_pkt_size);
1970 up_write(&em28xx_disconnect);
1973 static struct usb_driver em28xx_usb_driver = {
1975 .probe = em28xx_usb_probe,
1976 .disconnect = em28xx_usb_disconnect,
1977 .id_table = em28xx_id_table,
1980 static int __init em28xx_module_init(void)
1984 printk(KERN_INFO DRIVER_NAME " v4l2 driver version %d.%d.%d loaded\n",
1985 (EM28XX_VERSION_CODE >> 16) & 0xff,
1986 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
1988 printk(KERN_INFO DRIVER_NAME " snapshot date %04d-%02d-%02d\n",
1989 SNAPSHOT / 10000, (SNAPSHOT / 100) % 100, SNAPSHOT % 100);
1992 /* register this driver with the USB subsystem */
1993 result = usb_register(&em28xx_usb_driver);
1995 em28xx_err(DRIVER_NAME
1996 " usb_register failed. Error number %d.\n", result);
2001 static void __exit em28xx_module_exit(void)
2003 /* deregister this driver with the USB subsystem */
2004 usb_deregister(&em28xx_usb_driver);
2007 module_init(em28xx_module_init);
2008 module_exit(em28xx_module_exit);