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>
34 #include <media/tuner.h>
36 #define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
37 "Markus Rechberger <mrechberger@gmail.com>, " \
38 "Mauro Carvalho Chehab <mchehab@brturbo.com.br>, " \
39 "Sascha Sommer <saschasommer@freenet.de>"
41 #define DRIVER_NAME "em28xx"
42 #define DRIVER_DESC "Empia em28xx based USB video device driver"
43 #define EM28XX_VERSION_CODE KERNEL_VERSION(0, 0, 1)
45 #define em28xx_videodbg(fmt, arg...) do {\
47 printk(KERN_INFO "%s %s :"fmt, \
48 dev->name, __FUNCTION__ , ##arg); } while (0)
50 MODULE_AUTHOR(DRIVER_AUTHOR);
51 MODULE_DESCRIPTION(DRIVER_DESC);
52 MODULE_LICENSE("GPL");
54 static LIST_HEAD(em28xx_devlist);
56 static unsigned int card[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
57 module_param_array(card, int, NULL, 0444);
58 MODULE_PARM_DESC(card,"card type");
60 static int tuner = -1;
61 module_param(tuner, int, 0444);
62 MODULE_PARM_DESC(tuner, "tuner type");
64 static unsigned int video_debug = 0;
65 module_param(video_debug,int,0644);
66 MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
68 /* supported tv norms */
69 static struct em28xx_tvnorm tvnorms[] = {
73 .mode = VIDEO_MODE_PAL,
77 .mode = VIDEO_MODE_NTSC,
81 .mode = VIDEO_MODE_SECAM,
85 .mode = VIDEO_MODE_PAL,
89 static const unsigned char saa7114_i2c_init[] = {
90 0x00,0x00,0x01,0x08,0x02,0xc4,0x03,0x30,0x04,0x90,0x05,0x90,0x06,0xeb,0x07,0xe0,
91 0x08,0x88,0x09,0x40,0x0a,0x80,0x0b,0x44,0x0c,0x40,0x0d,0x00,0x0e,0x81,0x0f,0x2a,
92 0x10,0x06,0x11,0x00,0x12,0xc8,0x13,0x80,0x14,0x00,0x15,0x11,0x16,0x01,0x17,0x42,
93 0x18,0x40,0x19,0x80,0x40,0x00,0x41,0xff,0x42,0xff,0x43,0xff,0x44,0xff,0x45,0xff,
94 0x46,0xff,0x47,0xff,0x48,0xff,0x49,0xff,0x4a,0xff,0x4b,0xff,0x4c,0xff,0x4d,0xff,
95 0x4e,0xff,0x4f,0xff,0x50,0xff,0x51,0xff,0x52,0xff,0x53,0xff,0x54,0x5f,0x55,0xff,
96 0x56,0xff,0x57,0xff,0x58,0x00,0x59,0x47,0x5a,0x03,0x5b,0x03,0x5d,0x3e,0x5e,0x00,
97 0x80,0x1c,0x83,0x01,0x84,0xa5,0x85,0x10,0x86,0x45,0x87,0x41,0x88,0xf0,0x88,0x00,
98 0x88,0xf0,0x90,0x00,0x91,0x08,0x92,0x00,0x93,0x80,0x94,0x08,0x95,0x00,0x96,0xc0,
99 0x97,0x02,0x98,0x13,0x99,0x00,0x9a,0x38,0x9b,0x01,0x9c,0x80,0x9d,0x02,0x9e,0x06,
100 0x9f,0x01,0xa0,0x01,0xa1,0x00,0xa2,0x00,0xa4,0x80,0xa5,0x36,0xa6,0x36,0xa8,0x67,
101 0xa9,0x04,0xaa,0x00,0xac,0x33,0xad,0x02,0xae,0x00,0xb0,0xcd,0xb1,0x04,0xb2,0xcd,
102 0xb3,0x04,0xb4,0x01,0xb8,0x00,0xb9,0x00,0xba,0x00,0xbb,0x00,0xbc,0x00,0xbd,0x00,
106 #define TVNORMS ARRAY_SIZE(tvnorms)
108 /* supported controls */
109 static struct v4l2_queryctrl em28xx_qctrl[] = {
111 .id = V4L2_CID_BRIGHTNESS,
112 .type = V4L2_CTRL_TYPE_INTEGER,
113 .name = "Brightness",
120 .id = V4L2_CID_CONTRAST,
121 .type = V4L2_CTRL_TYPE_INTEGER,
126 .default_value = 0x10,
129 .id = V4L2_CID_SATURATION,
130 .type = V4L2_CTRL_TYPE_INTEGER,
131 .name = "Saturation",
135 .default_value = 0x10,
138 .id = V4L2_CID_AUDIO_VOLUME,
139 .type = V4L2_CTRL_TYPE_INTEGER,
144 .default_value = 0x1f,
147 .id = V4L2_CID_AUDIO_MUTE,
148 .type = V4L2_CTRL_TYPE_BOOLEAN,
156 .id = V4L2_CID_RED_BALANCE,
157 .type = V4L2_CTRL_TYPE_INTEGER,
158 .name = "Red chroma balance",
165 .id = V4L2_CID_BLUE_BALANCE,
166 .type = V4L2_CTRL_TYPE_INTEGER,
167 .name = "Blue chroma balance",
174 .id = V4L2_CID_GAMMA,
175 .type = V4L2_CTRL_TYPE_INTEGER,
180 .default_value = 0x20,
185 static struct usb_driver em28xx_usb_driver;
187 static DECLARE_MUTEX(em28xx_sysfs_lock);
188 static DECLARE_RWSEM(em28xx_disconnect);
190 /********************* v4l2 interface ******************************************/
192 static inline unsigned long kvirt_to_pa(unsigned long adr)
194 unsigned long kva, ret;
196 kva = (unsigned long)page_address(vmalloc_to_page((void *)adr));
197 kva |= adr & (PAGE_SIZE - 1);
204 * inits registers with sane defaults
206 static int em28xx_config(struct em28xx *dev)
209 /* Sets I2C speed to 100 KHz */
210 em28xx_write_regs_req(dev, 0x00, 0x06, "\x40", 1);
212 /* enable vbi capturing */
213 em28xx_audio_usb_mute(dev, 1);
214 dev->mute = 1; /* maybe not the right place... */
216 em28xx_audio_analog_set(dev);
217 em28xx_audio_analog_setup(dev);
218 em28xx_outfmt_set_yuv422(dev);
219 em28xx_colorlevels_set_default(dev);
220 em28xx_compression_disable(dev);
226 * em28xx_config_i2c()
227 * configure i2c attached devices
229 void em28xx_config_i2c(struct em28xx *dev)
231 struct v4l2_frequency f;
232 struct video_decoder_init em28xx_vdi = {.data = NULL };
235 /* configure decoder */
236 if(dev->model == EM2820_BOARD_MSI_VOX_USB_2){
237 em28xx_vdi.data=saa7114_i2c_init;
238 em28xx_vdi.len=sizeof(saa7114_i2c_init);
242 em28xx_i2c_call_clients(dev, DECODER_INIT, &em28xx_vdi);
243 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &dev->ctl_input);
244 /* em28xx_i2c_call_clients(dev,DECODER_SET_PICTURE, &dev->vpic); */
245 /* em28xx_i2c_call_clients(dev,DECODER_SET_NORM,&dev->tvnorm->id); */
246 /* em28xx_i2c_call_clients(dev,DECODER_ENABLE_OUTPUT,&output); */
247 /* em28xx_i2c_call_clients(dev,DECODER_DUMP, NULL); */
249 /* configure tuner */
251 f.type = V4L2_TUNER_ANALOG_TV;
252 f.frequency = 9076; /* FIXME:remove magic number */
253 dev->ctl_freq = f.frequency;
254 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
256 /* configure tda9887 */
259 /* em28xx_i2c_call_clients(dev,VIDIOC_S_STD,&dev->tvnorm->id); */
263 * em28xx_empty_framequeues()
264 * prepare queues for incoming and outgoing frames
266 static void em28xx_empty_framequeues(struct em28xx *dev)
270 INIT_LIST_HEAD(&dev->inqueue);
271 INIT_LIST_HEAD(&dev->outqueue);
273 for (i = 0; i < EM28XX_NUM_FRAMES; i++) {
274 dev->frame[i].state = F_UNUSED;
275 dev->frame[i].buf.bytesused = 0;
279 static void video_mux(struct em28xx *dev, int index)
283 input = INPUT(index)->vmux;
284 dev->ctl_input = index;
285 dev->ctl_ainput = INPUT(index)->amux;
287 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &input);
290 em28xx_videodbg("Setting input index=%d, vmux=%d, amux=%d\n",index,input,dev->ctl_ainput);
292 if (dev->has_msp34xx) {
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 down(&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 up(&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, pos, page;
622 struct em28xx *dev = filp->private_data;
624 if (down_interruptible(&dev->fileop_lock))
627 if (dev->state & DEV_DISCONNECTED) {
628 em28xx_videodbg("mmap: device not present\n");
629 up(&dev->fileop_lock);
633 if (dev->state & DEV_MISCONFIGURED) {
634 em28xx_videodbg ("mmap: Device is misconfigured; close and "
636 up(&dev->fileop_lock);
640 if (dev->io != IO_MMAP || !(vma->vm_flags & VM_WRITE) ||
641 size != PAGE_ALIGN(dev->frame[0].buf.length)) {
642 up(&dev->fileop_lock);
646 for (i = 0; i < dev->num_frames; i++) {
647 if ((dev->frame[i].buf.m.offset >> PAGE_SHIFT) == vma->vm_pgoff)
650 if (i == dev->num_frames) {
651 em28xx_videodbg("mmap: user supplied mapping address is out of range\n");
652 up(&dev->fileop_lock);
656 /* VM_IO is eventually going to replace PageReserved altogether */
657 vma->vm_flags |= VM_IO;
658 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
660 pos = (unsigned long)dev->frame[i].bufmem;
661 while (size > 0) { /* size is page-aligned */
662 page = vmalloc_to_pfn((void *)pos);
663 if (remap_pfn_range(vma, start, page, PAGE_SIZE,
664 vma->vm_page_prot)) {
665 em28xx_videodbg("mmap: rename page map failed\n");
666 up(&dev->fileop_lock);
674 vma->vm_ops = &em28xx_vm_ops;
675 vma->vm_private_data = &dev->frame[i];
678 up(&dev->fileop_lock);
684 * return the current saturation, brightness or contrast, mute state
686 static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
690 case V4L2_CID_AUDIO_MUTE:
691 ctrl->value = dev->mute;
693 case V4L2_CID_AUDIO_VOLUME:
694 ctrl->value = dev->volume;
696 case V4L2_CID_BRIGHTNESS:
697 if ((tmp = em28xx_brightness_get(dev)) < 0)
699 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
701 case V4L2_CID_CONTRAST:
702 if ((ctrl->value = em28xx_contrast_get(dev)) < 0)
705 case V4L2_CID_SATURATION:
706 if ((ctrl->value = em28xx_saturation_get(dev)) < 0)
709 case V4L2_CID_RED_BALANCE:
710 if ((tmp = em28xx_v_balance_get(dev)) < 0)
712 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
714 case V4L2_CID_BLUE_BALANCE:
715 if ((tmp = em28xx_u_balance_get(dev)) < 0)
717 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
720 if ((ctrl->value = em28xx_gamma_get(dev)) < 0)
730 * mute or set new saturation, brightness or contrast
732 static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
735 case V4L2_CID_AUDIO_MUTE:
736 if (ctrl->value != dev->mute) {
737 dev->mute = ctrl->value;
738 em28xx_audio_usb_mute(dev, ctrl->value);
739 return em28xx_audio_analog_set(dev);
742 case V4L2_CID_AUDIO_VOLUME:
743 dev->volume = ctrl->value;
744 return em28xx_audio_analog_set(dev);
745 case V4L2_CID_BRIGHTNESS:
746 return em28xx_brightness_set(dev, ctrl->value);
747 case V4L2_CID_CONTRAST:
748 return em28xx_contrast_set(dev, ctrl->value);
749 case V4L2_CID_SATURATION:
750 return em28xx_saturation_set(dev, ctrl->value);
751 case V4L2_CID_RED_BALANCE:
752 return em28xx_v_balance_set(dev, ctrl->value);
753 case V4L2_CID_BLUE_BALANCE:
754 return em28xx_u_balance_set(dev, ctrl->value);
756 return em28xx_gamma_set(dev, ctrl->value);
763 * em28xx_stream_interrupt()
766 static int em28xx_stream_interrupt(struct em28xx *dev)
770 /* stop reading from the device */
772 dev->stream = STREAM_INTERRUPT;
773 ret = wait_event_timeout(dev->wait_stream,
774 (dev->stream == STREAM_OFF) ||
775 (dev->state & DEV_DISCONNECTED),
777 if (dev->state & DEV_DISCONNECTED)
780 dev->state |= DEV_MISCONFIGURED;
781 em28xx_videodbg("device is misconfigured; close and "
782 "open /dev/video%d again\n", dev->vdev->minor);
789 static int em28xx_set_norm(struct em28xx *dev, int width, int height)
791 unsigned int hscale, vscale;
792 unsigned int maxh, maxw;
794 maxw = norm_maxw(dev);
795 maxh = norm_maxh(dev);
797 /* width must even because of the YUYV format */
798 /* height must be even because of interlacing */
811 if ((hscale = (((unsigned long)maxw) << 12) / width - 4096L) >= 0x4000)
813 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
815 if ((vscale = (((unsigned long)maxh) << 12) / height - 4096L) >= 0x4000)
817 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
819 /* set new image size */
821 dev->height = height;
822 dev->frame_size = dev->width * dev->height * 2;
823 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
824 dev->bytesperline = dev->width * 2;
825 dev->hscale = hscale;
826 dev->vscale = vscale;
828 em28xx_resolution_set(dev);
834 * em28xx_v4l2_do_ioctl()
835 * This function is _not_ called directly, but from
836 * em28xx_v4l2_ioctl. Userspace
837 * copying is done already, arg is a kernel pointer.
839 static int em28xx_do_ioctl(struct inode *inode, struct file *filp,
840 struct em28xx *dev, unsigned int cmd, void *arg,
841 v4l2_kioctl driver_ioctl)
846 /* ---------- tv norms ---------- */
849 struct v4l2_standard *e = arg;
855 ret = v4l2_video_std_construct(e, tvnorms[e->index].id,
856 tvnorms[e->index].name);
864 v4l2_std_id *id = arg;
866 *id = dev->tvnorm->id;
871 v4l2_std_id *id = arg;
874 for (i = 0; i < TVNORMS; i++)
875 if (*id == tvnorms[i].id)
878 for (i = 0; i < TVNORMS; i++)
879 if (*id & tvnorms[i].id)
885 dev->tvnorm = &tvnorms[i];
887 em28xx_set_norm(dev, dev->width, dev->height);
890 dev->width=norm_maxw(dev);
891 dev->height=norm_maxh(dev);
892 dev->frame_size=dev->width*dev->height*2;
893 dev->field_size=dev->frame_size>>1;
894 dev->bytesperline=dev->width*2;
898 em28xx_resolution_set(dev);
901 em28xx_uninit_isoc(dev);
902 em28xx_set_alternate(dev);
903 em28xx_capture_start(dev, 1);
904 em28xx_resolution_set(dev);
905 em28xx_init_isoc(dev);
907 em28xx_i2c_call_clients(dev, DECODER_SET_NORM,
909 em28xx_i2c_call_clients(dev, VIDIOC_S_STD,
917 /* ------ input switching ---------- */
918 case VIDIOC_ENUMINPUT:
920 struct v4l2_input *i = arg;
922 static const char *iname[] = {
923 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
924 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
925 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
926 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
927 [EM28XX_VMUX_SVIDEO] = "S-Video",
928 [EM28XX_VMUX_TELEVISION] = "Television",
929 [EM28XX_VMUX_CABLE] = "Cable TV",
930 [EM28XX_VMUX_DVB] = "DVB",
931 [EM28XX_VMUX_DEBUG] = "for debug only",
935 if (n >= MAX_EM28XX_INPUT)
937 if (0 == INPUT(n)->type)
939 memset(i, 0, sizeof(*i));
941 i->type = V4L2_INPUT_TYPE_CAMERA;
942 strcpy(i->name, iname[INPUT(n)->type]);
943 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
944 (EM28XX_VMUX_CABLE == INPUT(n)->type))
945 i->type = V4L2_INPUT_TYPE_TUNER;
946 for (n = 0; n < ARRAY_SIZE(tvnorms); n++)
947 i->std |= tvnorms[n].id;
963 if (*index >= MAX_EM28XX_INPUT)
965 if (0 == INPUT(*index)->type)
969 video_mux(dev, *index);
977 struct v4l2_audio *a = arg;
978 unsigned int index = a->index;
982 memset(a, 0, sizeof(*a));
983 index = dev->ctl_ainput;
986 strcpy(a->name, "Television");
988 strcpy(a->name, "Line In");
990 a->capability = V4L2_AUDCAP_STEREO;
997 struct v4l2_audio *a = arg;
998 if (a->index != dev->ctl_ainput)
1004 /* --- controls ---------------------------------------------- */
1005 case VIDIOC_QUERYCTRL:
1007 struct v4l2_queryctrl *qc = arg;
1009 n = sizeof(em28xx_qctrl) / sizeof(em28xx_qctrl[0]);
1010 for (i = 0; i < n; i++)
1011 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1012 memcpy(qc, &(em28xx_qctrl[i]),
1022 struct v4l2_control *ctrl = arg;
1025 return em28xx_get_ctrl(dev, ctrl);
1028 case VIDIOC_S_CTRL_OLD: /* ??? */
1031 struct v4l2_control *ctrl = arg;
1035 n = sizeof(em28xx_qctrl) / sizeof(em28xx_qctrl[0]);
1036 for (i = 0; i < n; i++)
1037 if (ctrl->id == em28xx_qctrl[i].id) {
1039 em28xx_qctrl[i].minimum
1041 em28xx_qctrl[i].maximum)
1044 return em28xx_set_ctrl(dev, ctrl);
1049 /* --- tuner ioctls ------------------------------------------ */
1050 case VIDIOC_G_TUNER:
1052 struct v4l2_tuner *t = arg;
1058 memset(t, 0, sizeof(*t));
1059 strcpy(t->name, "Tuner");
1060 t->type = V4L2_TUNER_ANALOG_TV;
1061 t->capability = V4L2_TUNER_CAP_NORM;
1062 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1063 /* t->signal = 0xffff;*/
1064 /* em28xx_i2c_call_clients(dev,VIDIOC_G_TUNER,t);*/
1065 /* No way to get signal strength? */
1067 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1071 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1073 em28xx_videodbg("VIDIO_G_TUNER: signal=%x, afc=%x\n", t->signal,
1077 case VIDIOC_S_TUNER:
1079 struct v4l2_tuner *t = arg;
1084 memset(t, 0, sizeof(*t));
1085 strcpy(t->name, "Tuner");
1086 t->type = V4L2_TUNER_ANALOG_TV;
1087 t->capability = V4L2_TUNER_CAP_NORM;
1088 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1089 /* t->signal = 0xffff; */
1090 /* No way to get signal strength? */
1092 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1096 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1098 em28xx_videodbg("VIDIO_S_TUNER: signal=%x, afc=%x\n",
1102 case VIDIOC_G_FREQUENCY:
1104 struct v4l2_frequency *f = arg;
1106 memset(f, 0, sizeof(*f));
1107 f->type = V4L2_TUNER_ANALOG_TV;
1108 f->frequency = dev->ctl_freq;
1112 case VIDIOC_S_FREQUENCY:
1114 struct v4l2_frequency *f = arg;
1119 if (V4L2_TUNER_ANALOG_TV != f->type)
1123 dev->ctl_freq = f->frequency;
1124 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1129 case VIDIOC_CROPCAP:
1131 struct v4l2_cropcap *cc = arg;
1133 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1135 cc->bounds.left = 0;
1137 cc->bounds.width = dev->width;
1138 cc->bounds.height = dev->height;
1139 cc->defrect = cc->bounds;
1140 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1141 cc->pixelaspect.denominator = 59;
1144 case VIDIOC_STREAMON:
1148 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1149 || dev->io != IO_MMAP)
1152 if (list_empty(&dev->inqueue))
1155 dev->stream = STREAM_ON; /* FIXME: Start video capture here? */
1157 em28xx_videodbg("VIDIOC_STREAMON: starting stream\n");
1161 case VIDIOC_STREAMOFF:
1166 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1167 || dev->io != IO_MMAP)
1170 if (dev->stream == STREAM_ON) {
1171 em28xx_videodbg ("VIDIOC_STREAMOFF: interrupting stream\n");
1172 if ((ret = em28xx_stream_interrupt(dev)))
1175 em28xx_empty_framequeues(dev);
1180 return v4l_compat_translate_ioctl(inode, filp, cmd, arg,
1187 * em28xx_v4l2_do_ioctl()
1188 * This function is _not_ called directly, but from
1189 * em28xx_v4l2_ioctl. Userspace
1190 * copying is done already, arg is a kernel pointer.
1192 static int em28xx_video_do_ioctl(struct inode *inode, struct file *filp,
1193 unsigned int cmd, void *arg)
1195 struct em28xx *dev = filp->private_data;
1200 if (video_debug > 1)
1201 em28xx_print_ioctl(dev->name,cmd);
1205 /* --- capabilities ------------------------------------------ */
1206 case VIDIOC_QUERYCAP:
1208 struct v4l2_capability *cap = arg;
1210 memset(cap, 0, sizeof(*cap));
1211 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1212 strlcpy(cap->card, em28xx_boards[dev->model].name,
1214 strlcpy(cap->bus_info, dev->udev->dev.bus_id,
1215 sizeof(cap->bus_info));
1216 cap->version = EM28XX_VERSION_CODE;
1218 V4L2_CAP_VIDEO_CAPTURE |
1220 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1222 cap->capabilities |= V4L2_CAP_TUNER;
1226 /* --- capture ioctls ---------------------------------------- */
1227 case VIDIOC_ENUM_FMT:
1229 struct v4l2_fmtdesc *fmtd = arg;
1231 if (fmtd->index != 0)
1233 memset(fmtd, 0, sizeof(*fmtd));
1234 fmtd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1235 strcpy(fmtd->description, "Packed YUY2");
1236 fmtd->pixelformat = V4L2_PIX_FMT_YUYV;
1237 memset(fmtd->reserved, 0, sizeof(fmtd->reserved));
1243 struct v4l2_format *format = arg;
1245 em28xx_videodbg("VIDIOC_G_FMT: type=%s\n",
1247 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1248 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1249 V4L2_BUF_TYPE_VBI_CAPTURE ?
1250 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1253 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1256 format->fmt.pix.width = dev->width;
1257 format->fmt.pix.height = dev->height;
1258 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1259 format->fmt.pix.bytesperline = dev->bytesperline;
1260 format->fmt.pix.sizeimage = dev->frame_size;
1261 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1262 format->fmt.pix.field = dev->interlaced ? V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP; /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
1264 em28xx_videodbg("VIDIOC_G_FMT: %dx%d\n", dev->width,
1269 case VIDIOC_TRY_FMT:
1272 struct v4l2_format *format = arg;
1275 int width = format->fmt.pix.width;
1276 int height = format->fmt.pix.height;
1277 unsigned int hscale, vscale;
1278 unsigned int maxh, maxw;
1280 maxw = norm_maxw(dev);
1281 maxh = norm_maxh(dev);
1283 /* int both_fields; */
1285 em28xx_videodbg("%s: type=%s\n",
1287 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1290 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1291 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1292 V4L2_BUF_TYPE_VBI_CAPTURE ?
1293 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1296 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1299 em28xx_videodbg("%s: requested %dx%d\n",
1301 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1302 "VIDIOC_S_FMT", format->fmt.pix.width,
1303 format->fmt.pix.height);
1305 /* FIXME: Move some code away from here */
1306 /* width must even because of the YUYV format */
1307 /* height must be even because of interlacing */
1321 /* the em2800 can only scale down to 50% */
1322 if(height % (maxh / 2))
1324 if(width % (maxw / 2))
1326 /* according to empiatech support */
1327 /* the MaxPacketSize is to small to support */
1328 /* framesizes larger than 640x480 @ 30 fps */
1329 /* or 640x576 @ 25 fps. As this would cut */
1330 /* of a part of the image we prefer */
1331 /* 360x576 or 360x480 for now */
1332 if(width == maxw && height == maxh)
1337 (((unsigned long)maxw) << 12) / width - 4096L) >=
1341 (((unsigned long)maxw) << 12) / (hscale + 4096L);
1344 (((unsigned long)maxh) << 12) / height - 4096L) >=
1348 (((unsigned long)maxh) << 12) / (vscale + 4096L);
1350 format->fmt.pix.width = width;
1351 format->fmt.pix.height = height;
1352 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1353 format->fmt.pix.bytesperline = width * 2;
1354 format->fmt.pix.sizeimage = width * 2 * height;
1355 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1356 format->fmt.pix.field = V4L2_FIELD_INTERLACED;
1358 em28xx_videodbg("%s: returned %dx%d (%d, %d)\n",
1360 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1361 "VIDIOC_S_FMT", format->fmt.pix.width,
1362 format->fmt.pix.height, hscale, vscale);
1364 if (cmd == VIDIOC_TRY_FMT)
1367 for (i = 0; i < dev->num_frames; i++)
1368 if (dev->frame[i].vma_use_count) {
1369 em28xx_videodbg("VIDIOC_S_FMT failed. "
1370 "Unmap the buffers first.\n");
1374 /* stop io in case it is already in progress */
1375 if (dev->stream == STREAM_ON) {
1376 em28xx_videodbg("VIDIOC_SET_FMT: interupting stream\n");
1377 if ((ret = em28xx_stream_interrupt(dev)))
1381 em28xx_release_buffers(dev);
1384 /* set new image size */
1386 dev->height = height;
1387 dev->frame_size = dev->width * dev->height * 2;
1388 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
1389 dev->bytesperline = dev->width * 2;
1390 dev->hscale = hscale;
1391 dev->vscale = vscale;
1392 /* dev->both_fileds = both_fileds; */
1393 em28xx_uninit_isoc(dev);
1394 em28xx_set_alternate(dev);
1395 em28xx_capture_start(dev, 1);
1396 em28xx_resolution_set(dev);
1397 em28xx_init_isoc(dev);
1402 /* --- streaming capture ------------------------------------- */
1403 case VIDIOC_REQBUFS:
1405 struct v4l2_requestbuffers *rb = arg;
1409 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1410 rb->memory != V4L2_MEMORY_MMAP)
1413 if (dev->io == IO_READ) {
1414 em28xx_videodbg ("method is set to read;"
1415 " close and open the device again to"
1416 " choose the mmap I/O method\n");
1420 for (i = 0; i < dev->num_frames; i++)
1421 if (dev->frame[i].vma_use_count) {
1422 em28xx_videodbg ("VIDIOC_REQBUFS failed; previous buffers are still mapped\n");
1426 if (dev->stream == STREAM_ON) {
1427 em28xx_videodbg("VIDIOC_REQBUFS: interrupting stream\n");
1428 if ((ret = em28xx_stream_interrupt(dev)))
1432 em28xx_empty_framequeues(dev);
1434 em28xx_release_buffers(dev);
1437 em28xx_request_buffers(dev, rb->count);
1439 dev->frame_current = NULL;
1441 em28xx_videodbg ("VIDIOC_REQBUFS: setting io method to mmap: num bufs %i\n",
1443 dev->io = rb->count ? IO_MMAP : IO_NONE;
1447 case VIDIOC_QUERYBUF:
1449 struct v4l2_buffer *b = arg;
1451 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1452 b->index >= dev->num_frames || dev->io != IO_MMAP)
1455 memcpy(b, &dev->frame[b->index].buf, sizeof(*b));
1457 if (dev->frame[b->index].vma_use_count) {
1458 b->flags |= V4L2_BUF_FLAG_MAPPED;
1460 if (dev->frame[b->index].state == F_DONE)
1461 b->flags |= V4L2_BUF_FLAG_DONE;
1462 else if (dev->frame[b->index].state != F_UNUSED)
1463 b->flags |= V4L2_BUF_FLAG_QUEUED;
1468 struct v4l2_buffer *b = arg;
1469 unsigned long lock_flags;
1471 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1472 b->index >= dev->num_frames || dev->io != IO_MMAP) {
1476 if (dev->frame[b->index].state != F_UNUSED) {
1479 dev->frame[b->index].state = F_QUEUED;
1481 /* add frame to fifo */
1482 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1483 list_add_tail(&dev->frame[b->index].frame,
1485 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1491 struct v4l2_buffer *b = arg;
1492 struct em28xx_frame_t *f;
1493 unsigned long lock_flags;
1496 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1497 || dev->io != IO_MMAP)
1500 if (list_empty(&dev->outqueue)) {
1501 if (dev->stream == STREAM_OFF)
1503 if (filp->f_flags & O_NONBLOCK)
1505 ret = wait_event_interruptible
1507 (!list_empty(&dev->outqueue)) ||
1508 (dev->state & DEV_DISCONNECTED));
1511 if (dev->state & DEV_DISCONNECTED)
1515 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1516 f = list_entry(dev->outqueue.next,
1517 struct em28xx_frame_t, frame);
1518 list_del(dev->outqueue.next);
1519 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1521 f->state = F_UNUSED;
1522 memcpy(b, &f->buf, sizeof(*b));
1524 if (f->vma_use_count)
1525 b->flags |= V4L2_BUF_FLAG_MAPPED;
1530 return em28xx_do_ioctl(inode, filp, dev, cmd, arg,
1531 em28xx_video_do_ioctl);
1537 * em28xx_v4l2_ioctl()
1538 * handle v4l2 ioctl the main action happens in em28xx_v4l2_do_ioctl()
1540 static int em28xx_v4l2_ioctl(struct inode *inode, struct file *filp,
1541 unsigned int cmd, unsigned long arg)
1544 struct em28xx *dev = filp->private_data;
1546 if (down_interruptible(&dev->fileop_lock))
1547 return -ERESTARTSYS;
1549 if (dev->state & DEV_DISCONNECTED) {
1550 em28xx_errdev("v4l2 ioctl: device not present\n");
1551 up(&dev->fileop_lock);
1555 if (dev->state & DEV_MISCONFIGURED) {
1557 ("v4l2 ioctl: device is misconfigured; close and open it again\n");
1558 up(&dev->fileop_lock);
1562 ret = video_usercopy(inode, filp, cmd, arg, em28xx_video_do_ioctl);
1564 up(&dev->fileop_lock);
1569 static struct file_operations em28xx_v4l_fops = {
1570 .owner = THIS_MODULE,
1571 .open = em28xx_v4l2_open,
1572 .release = em28xx_v4l2_close,
1573 .ioctl = em28xx_v4l2_ioctl,
1574 .read = em28xx_v4l2_read,
1575 .poll = em28xx_v4l2_poll,
1576 .mmap = em28xx_v4l2_mmap,
1577 .llseek = no_llseek,
1580 /******************************** usb interface *****************************************/
1584 * allocates and inits the device structs, registers i2c bus and v4l device
1586 static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev,
1587 int minor, int model)
1589 struct em28xx *dev = *devhandle;
1590 int retval = -ENOMEM;
1592 unsigned int maxh, maxw;
1596 init_MUTEX(&dev->lock);
1597 init_waitqueue_head(&dev->open);
1599 dev->em28xx_write_regs = em28xx_write_regs;
1600 dev->em28xx_read_reg = em28xx_read_reg;
1601 dev->em28xx_read_reg_req_len = em28xx_read_reg_req_len;
1602 dev->em28xx_write_regs_req = em28xx_write_regs_req;
1603 dev->em28xx_read_reg_req = em28xx_read_reg_req;
1604 dev->is_em2800 = em28xx_boards[model].is_em2800;
1605 dev->has_tuner = em28xx_boards[model].has_tuner;
1606 dev->has_msp34xx = em28xx_boards[model].has_msp34xx;
1607 dev->tda9887_conf = em28xx_boards[model].tda9887_conf;
1608 dev->decoder = em28xx_boards[model].decoder;
1611 dev->tuner_type = tuner;
1613 dev->tuner_type = em28xx_boards[model].tuner_type;
1615 dev->video_inputs = em28xx_boards[model].vchannels;
1617 for (i = 0; i < TVNORMS; i++)
1618 if (em28xx_boards[model].norm == tvnorms[i].mode)
1623 dev->tvnorm = &tvnorms[i]; /* set default norm */
1625 em28xx_videodbg("tvnorm=%s\n", dev->tvnorm->name);
1627 maxw = norm_maxw(dev);
1628 maxh = norm_maxh(dev);
1630 /* set default image size */
1633 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
1634 dev->field_size = dev->width * dev->height;
1636 dev->interlaced ? dev->field_size << 1 : dev->field_size;
1637 dev->bytesperline = dev->width * 2;
1642 /* setup video picture settings for saa7113h */
1643 memset(&dev->vpic, 0, sizeof(dev->vpic));
1644 dev->vpic.colour = 128 << 8;
1645 dev->vpic.hue = 128 << 8;
1646 dev->vpic.brightness = 128 << 8;
1647 dev->vpic.contrast = 192 << 8;
1648 dev->vpic.whiteness = 128 << 8; /* This one isn't used */
1649 dev->vpic.depth = 16;
1650 dev->vpic.palette = VIDEO_PALETTE_YUV422;
1652 #ifdef CONFIG_MODULES
1653 /* request some modules */
1654 if (dev->decoder == EM28XX_SAA7113 || dev->decoder == EM28XX_SAA7114)
1655 request_module("saa711x");
1656 if (dev->decoder == EM28XX_TVP5150)
1657 request_module("tvp5150");
1659 request_module("tuner");
1660 if (dev->tda9887_conf)
1661 request_module("tda9887");
1663 errCode = em28xx_config(dev);
1665 em28xx_errdev("error configuring device\n");
1671 /* register i2c bus */
1672 em28xx_i2c_register(dev);
1674 /* Do board specific init and eeprom reading */
1675 em28xx_card_setup(dev);
1677 /* configure the device */
1678 em28xx_config_i2c(dev);
1682 errCode = em28xx_config(dev);
1684 #ifdef CONFIG_MODULES
1685 if (dev->has_msp34xx)
1686 request_module("msp3400");
1688 /* allocate and fill v4l2 device struct */
1689 dev->vdev = video_device_alloc();
1690 if (NULL == dev->vdev) {
1691 em28xx_errdev("cannot allocate video_device.\n");
1696 dev->vdev->type = VID_TYPE_CAPTURE;
1698 dev->vdev->type |= VID_TYPE_TUNER;
1699 dev->vdev->hardware = 0;
1700 dev->vdev->fops = &em28xx_v4l_fops;
1701 dev->vdev->minor = -1;
1702 dev->vdev->dev = &dev->udev->dev;
1703 dev->vdev->release = video_device_release;
1704 snprintf(dev->vdev->name, sizeof(dev->vdev->name), "%s",
1706 list_add_tail(&dev->devlist,&em28xx_devlist);
1708 /* register v4l2 device */
1710 if ((retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER, -1))) {
1711 em28xx_errdev("unable to register video device (error=%i).\n",
1714 list_del(&dev->devlist);
1715 video_device_release(dev->vdev);
1719 if (dev->has_msp34xx) {
1720 /* Send a reset to other chips via gpio */
1721 em28xx_write_regs_req(dev, 0x00, 0x08, "\xf7", 1);
1723 em28xx_write_regs_req(dev, 0x00, 0x08, "\xff", 1);
1731 em28xx_info("V4L2 device registered as /dev/video%d\n",
1738 * em28xx_usb_probe()
1739 * checks for supported devices
1741 static int em28xx_usb_probe(struct usb_interface *interface,
1742 const struct usb_device_id *id)
1744 const struct usb_endpoint_descriptor *endpoint;
1745 struct usb_device *udev;
1746 struct usb_interface *uif;
1747 struct em28xx *dev = NULL;
1748 int retval = -ENODEV;
1749 int model,i,nr,ifnum;
1751 udev = usb_get_dev(interface_to_usbdev(interface));
1752 ifnum = interface->altsetting[0].desc.bInterfaceNumber;
1755 /* Don't register audio interfaces */
1756 if (interface->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
1757 em28xx_err(DRIVER_NAME " audio device (%04x:%04x): interface %i, class %i\n",
1758 udev->descriptor.idVendor,udev->descriptor.idProduct,
1760 interface->altsetting[0].desc.bInterfaceClass);
1764 em28xx_err(DRIVER_NAME " new video device (%04x:%04x): interface %i, class %i\n",
1765 udev->descriptor.idVendor,udev->descriptor.idProduct,
1767 interface->altsetting[0].desc.bInterfaceClass);
1769 endpoint = &interface->cur_altsetting->endpoint[1].desc;
1771 /* check if the the device has the iso in endpoint at the correct place */
1772 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
1773 USB_ENDPOINT_XFER_ISOC) {
1774 em28xx_err(DRIVER_NAME " probing error: endpoint is non-ISO endpoint!\n");
1777 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
1778 em28xx_err(DRIVER_NAME " probing error: endpoint is ISO OUT endpoint!\n");
1782 model=id->driver_info;
1783 nr=interface->minor;
1785 if (nr>EM28XX_MAXBOARDS) {
1786 printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
1790 /* allocate memory for our device state and initialize it */
1791 dev = kmalloc(sizeof(*dev), GFP_KERNEL);
1793 em28xx_err(DRIVER_NAME ": out of memory!\n");
1796 memset(dev, 0, sizeof(*dev));
1798 /* compute alternate max packet sizes */
1799 uif = udev->actconfig->interface[0];
1801 dev->num_alt=uif->num_altsetting;
1802 printk(DRIVER_NAME ": Alternate settings: %i\n",dev->num_alt);
1803 // dev->alt_max_pkt_size = kmalloc(sizeof(*dev->alt_max_pkt_size)*
1804 dev->alt_max_pkt_size = kmalloc(32*
1805 dev->num_alt,GFP_KERNEL);
1806 if (dev->alt_max_pkt_size == NULL) {
1807 em28xx_err(DRIVER_NAME ": out of memory!\n");
1811 for (i = 0; i < dev->num_alt ; i++) {
1812 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1814 dev->alt_max_pkt_size[i] =
1815 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1816 printk(DRIVER_NAME ": Alternate setting %i, max size= %i\n",i,
1817 dev->alt_max_pkt_size[i]);
1820 snprintf(dev->name, 29, "em28xx #%d", nr);
1822 if ((card[nr]>=0)&&(card[nr]<em28xx_bcount))
1825 if ((model==EM2800_BOARD_UNKNOWN)||(model==EM2820_BOARD_UNKNOWN)) {
1826 printk( "%s: Your board has no eeprom inside it and thus can't\n"
1827 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1828 "%s: workaround that. Redirect complaints to the vendor of\n"
1829 "%s: the TV card. Best regards,\n"
1831 dev->name,dev->name,dev->name,dev->name,dev->name);
1832 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
1834 for (i = 0; i < em28xx_bcount; i++) {
1835 printk("%s: card=%d -> %s\n",
1836 dev->name, i, em28xx_boards[i].name);
1840 /* allocate device struct */
1841 retval = em28xx_init_dev(&dev, udev, nr, model);
1845 em28xx_info("Found %s\n", em28xx_boards[model].name);
1847 /* save our data pointer in this interface device */
1848 usb_set_intfdata(interface, dev);
1853 * em28xx_usb_disconnect()
1854 * called when the device gets diconencted
1855 * video device will be unregistered on v4l2_close in case it is still open
1857 static void em28xx_usb_disconnect(struct usb_interface *interface)
1859 struct em28xx *dev = usb_get_intfdata(interface);
1860 usb_set_intfdata(interface, NULL);
1865 down_write(&em28xx_disconnect);
1869 em28xx_info("disconnecting %s\n", dev->vdev->name);
1871 wake_up_interruptible_all(&dev->open);
1875 ("device /dev/video%d is open! Deregistration and memory "
1876 "deallocation are deferred on close.\n", dev->vdev->minor);
1877 dev->state |= DEV_MISCONFIGURED;
1878 em28xx_uninit_isoc(dev);
1879 dev->state |= DEV_DISCONNECTED;
1880 wake_up_interruptible(&dev->wait_frame);
1881 wake_up_interruptible(&dev->wait_stream);
1883 dev->state |= DEV_DISCONNECTED;
1884 em28xx_release_resources(dev);
1890 kfree(dev->alt_max_pkt_size);
1894 up_write(&em28xx_disconnect);
1897 static struct usb_driver em28xx_usb_driver = {
1898 .owner = THIS_MODULE,
1900 .probe = em28xx_usb_probe,
1901 .disconnect = em28xx_usb_disconnect,
1902 .id_table = em28xx_id_table,
1905 static int __init em28xx_module_init(void)
1909 printk(KERN_INFO DRIVER_NAME " v4l2 driver version %d.%d.%d loaded\n",
1910 (EM28XX_VERSION_CODE >> 16) & 0xff,
1911 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
1913 printk(KERN_INFO DRIVER_NAME " snapshot date %04d-%02d-%02d\n",
1914 SNAPSHOT / 10000, (SNAPSHOT / 100) % 100, SNAPSHOT % 100);
1917 /* register this driver with the USB subsystem */
1918 result = usb_register(&em28xx_usb_driver);
1920 em28xx_err(DRIVER_NAME
1921 " usb_register failed. Error number %d.\n", result);
1926 static void __exit em28xx_module_exit(void)
1928 /* deregister this driver with the USB subsystem */
1929 usb_deregister(&em28xx_usb_driver);
1932 module_init(em28xx_module_init);
1933 module_exit(em28xx_module_exit);