1 /****************************************************************************
3 * Filename: cpia2_v4l.c
5 * Copyright 2001, STMicrolectronics, Inc.
6 * Contact: steve.miller@st.com
7 * Copyright 2001,2005, Scott J. Bertin <scottbertin@yahoo.com>
10 * This is a USB driver for CPia2 based video cameras.
11 * The infrastructure of this driver is based on the cpia usb driver by
12 * Jochen Scharrlach and Johannes Erdfeldt.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 * Stripped of 2.4 stuff ready for main kernel submit by
29 * Alan Cox <alan@redhat.com>
30 ****************************************************************************/
32 #include <linux/version.h>
35 #include <linux/module.h>
36 #include <linux/time.h>
37 #include <linux/sched.h>
38 #include <linux/slab.h>
39 #include <linux/init.h>
45 //#define _CPIA2_DEBUG_
47 #define MAKE_STRING_1(x) #x
48 #define MAKE_STRING(x) MAKE_STRING_1(x)
50 static int video_nr = -1;
51 module_param(video_nr, int, 0);
52 MODULE_PARM_DESC(video_nr,"video device to register (0=/dev/video0, etc)");
54 static int buffer_size = 68*1024;
55 module_param(buffer_size, int, 0);
56 MODULE_PARM_DESC(buffer_size, "Size for each frame buffer in bytes (default 68k)");
58 static int num_buffers = 3;
59 module_param(num_buffers, int, 0);
60 MODULE_PARM_DESC(num_buffers, "Number of frame buffers (1-"
61 MAKE_STRING(VIDEO_MAX_FRAME) ", default 3)");
63 static int alternate = DEFAULT_ALT;
64 module_param(alternate, int, 0);
65 MODULE_PARM_DESC(alternate, "USB Alternate (" MAKE_STRING(USBIF_ISO_1) "-"
66 MAKE_STRING(USBIF_ISO_6) ", default "
67 MAKE_STRING(DEFAULT_ALT) ")");
69 static int flicker_freq = 60;
70 module_param(flicker_freq, int, 0);
71 MODULE_PARM_DESC(flicker_freq, "Flicker frequency (" MAKE_STRING(50) "or"
72 MAKE_STRING(60) ", default "
75 static int flicker_mode = NEVER_FLICKER;
76 module_param(flicker_mode, int, 0);
77 MODULE_PARM_DESC(flicker_mode,
78 "Flicker supression (" MAKE_STRING(NEVER_FLICKER) "or"
79 MAKE_STRING(ANTI_FLICKER_ON) ", default "
80 MAKE_STRING(NEVER_FLICKER) ")");
82 MODULE_AUTHOR("Steve Miller (STMicroelectronics) <steve.miller@st.com>");
83 MODULE_DESCRIPTION("V4L-driver for STMicroelectronics CPiA2 based cameras");
84 MODULE_SUPPORTED_DEVICE("video");
85 MODULE_LICENSE("GPL");
87 #define ABOUT "V4L-Driver for Vision CPiA2 based cameras"
89 struct control_menu_info {
94 static struct control_menu_info framerate_controls[] =
96 { CPIA2_VP_FRAMERATE_6_25, "6.25 fps" },
97 { CPIA2_VP_FRAMERATE_7_5, "7.5 fps" },
98 { CPIA2_VP_FRAMERATE_12_5, "12.5 fps" },
99 { CPIA2_VP_FRAMERATE_15, "15 fps" },
100 { CPIA2_VP_FRAMERATE_25, "25 fps" },
101 { CPIA2_VP_FRAMERATE_30, "30 fps" },
103 #define NUM_FRAMERATE_CONTROLS (ARRAY_SIZE(framerate_controls))
105 static struct control_menu_info flicker_controls[] =
107 { NEVER_FLICKER, "Off" },
108 { FLICKER_50, "50 Hz" },
109 { FLICKER_60, "60 Hz" },
111 #define NUM_FLICKER_CONTROLS (ARRAY_SIZE(flicker_controls))
113 static struct control_menu_info lights_controls[] =
120 #define NUM_LIGHTS_CONTROLS (ARRAY_SIZE(lights_controls))
121 #define GPIO_LIGHTS_MASK 192
123 static struct v4l2_queryctrl controls[] = {
125 .id = V4L2_CID_BRIGHTNESS,
126 .type = V4L2_CTRL_TYPE_INTEGER,
127 .name = "Brightness",
131 .default_value = DEFAULT_BRIGHTNESS,
134 .id = V4L2_CID_CONTRAST,
135 .type = V4L2_CTRL_TYPE_INTEGER,
140 .default_value = DEFAULT_CONTRAST,
143 .id = V4L2_CID_SATURATION,
144 .type = V4L2_CTRL_TYPE_INTEGER,
145 .name = "Saturation",
149 .default_value = DEFAULT_SATURATION,
152 .id = V4L2_CID_HFLIP,
153 .type = V4L2_CTRL_TYPE_BOOLEAN,
154 .name = "Mirror Horizontally",
161 .id = V4L2_CID_VFLIP,
162 .type = V4L2_CTRL_TYPE_BOOLEAN,
163 .name = "Flip Vertically",
170 .id = CPIA2_CID_TARGET_KB,
171 .type = V4L2_CTRL_TYPE_INTEGER,
176 .default_value = DEFAULT_TARGET_KB,
179 .id = CPIA2_CID_GPIO,
180 .type = V4L2_CTRL_TYPE_INTEGER,
188 .id = CPIA2_CID_FLICKER_MODE,
189 .type = V4L2_CTRL_TYPE_MENU,
190 .name = "Flicker Reduction",
192 .maximum = NUM_FLICKER_CONTROLS-1,
197 .id = CPIA2_CID_FRAMERATE,
198 .type = V4L2_CTRL_TYPE_MENU,
201 .maximum = NUM_FRAMERATE_CONTROLS-1,
203 .default_value = NUM_FRAMERATE_CONTROLS-1,
206 .id = CPIA2_CID_USB_ALT,
207 .type = V4L2_CTRL_TYPE_INTEGER,
208 .name = "USB Alternate",
209 .minimum = USBIF_ISO_1,
210 .maximum = USBIF_ISO_6,
212 .default_value = DEFAULT_ALT,
215 .id = CPIA2_CID_LIGHTS,
216 .type = V4L2_CTRL_TYPE_MENU,
219 .maximum = NUM_LIGHTS_CONTROLS-1,
224 .id = CPIA2_CID_RESET_CAMERA,
225 .type = V4L2_CTRL_TYPE_BUTTON,
226 .name = "Reset Camera",
233 #define NUM_CONTROLS (ARRAY_SIZE(controls))
236 /******************************************************************************
240 *****************************************************************************/
241 static int cpia2_open(struct inode *inode, struct file *file)
243 struct video_device *dev = video_devdata(file);
244 struct camera_data *cam = video_get_drvdata(dev);
248 ERR("Internal error, camera_data not found!\n");
252 if(mutex_lock_interruptible(&cam->busy_lock))
260 if (cam->open_count > 0) {
264 if (cpia2_allocate_buffers(cam)) {
269 /* reset the camera */
270 if (cpia2_reset_camera(cam) < 0) {
280 struct cpia2_fh *fh = kmalloc(sizeof(*fh),GFP_KERNEL);
285 file->private_data = fh;
286 fh->prio = V4L2_PRIORITY_UNSET;
287 v4l2_prio_open(&cam->prio, &fh->prio);
293 cpia2_dbg_dump_registers(cam);
296 mutex_unlock(&cam->busy_lock);
300 /******************************************************************************
304 *****************************************************************************/
305 static int cpia2_close(struct inode *inode, struct file *file)
307 struct video_device *dev = video_devdata(file);
308 struct camera_data *cam = video_get_drvdata(dev);
309 struct cpia2_fh *fh = file->private_data;
311 mutex_lock(&cam->busy_lock);
314 (cam->open_count == 1
315 || fh->prio == V4L2_PRIORITY_RECORD
317 cpia2_usb_stream_stop(cam);
319 if(cam->open_count == 1) {
320 /* save camera state for later open */
321 cpia2_save_camera_state(cam);
323 cpia2_set_low_power(cam);
324 cpia2_free_buffers(cam);
331 v4l2_prio_close(&cam->prio,&fh->prio);
332 file->private_data = NULL;
336 if (--cam->open_count == 0) {
337 cpia2_free_buffers(cam);
339 video_unregister_device(dev);
340 mutex_unlock(&cam->busy_lock);
346 mutex_unlock(&cam->busy_lock);
351 /******************************************************************************
355 *****************************************************************************/
356 static ssize_t cpia2_v4l_read(struct file *file, char __user *buf, size_t count,
359 struct video_device *dev = video_devdata(file);
360 struct camera_data *cam = video_get_drvdata(dev);
361 int noblock = file->f_flags&O_NONBLOCK;
363 struct cpia2_fh *fh = file->private_data;
369 if(fh->prio != V4L2_PRIORITY_RECORD) {
373 return cpia2_read(cam, buf, count, noblock);
377 /******************************************************************************
381 *****************************************************************************/
382 static unsigned int cpia2_v4l_poll(struct file *filp, struct poll_table_struct *wait)
384 struct video_device *dev = video_devdata(filp);
385 struct camera_data *cam = video_get_drvdata(dev);
387 struct cpia2_fh *fh = filp->private_data;
393 if(fh->prio != V4L2_PRIORITY_RECORD) {
397 return cpia2_poll(cam, filp, wait);
401 /******************************************************************************
405 *****************************************************************************/
406 static int ioctl_cap_query(void *arg, struct camera_data *cam)
408 struct video_capability *vc;
412 if (cam->params.pnp_id.product == 0x151)
413 strcpy(vc->name, "QX5 Microscope");
415 strcpy(vc->name, "CPiA2 Camera");
417 vc->type = VID_TYPE_CAPTURE | VID_TYPE_MJPEG_ENCODER;
420 vc->minwidth = 176; /* VIDEOSIZE_QCIF */
422 switch (cam->params.version.sensor_flags) {
423 case CPIA2_VP_SENSOR_FLAGS_500:
424 vc->maxwidth = STV_IMAGE_VGA_COLS;
425 vc->maxheight = STV_IMAGE_VGA_ROWS;
427 case CPIA2_VP_SENSOR_FLAGS_410:
428 vc->maxwidth = STV_IMAGE_CIF_COLS;
429 vc->maxheight = STV_IMAGE_CIF_ROWS;
438 /******************************************************************************
442 *****************************************************************************/
443 static int ioctl_get_channel(void *arg)
446 struct video_channel *v;
453 strcpy(v->name, "Camera");
456 v->type = VIDEO_TYPE_CAMERA;
462 /******************************************************************************
466 *****************************************************************************/
467 static int ioctl_set_channel(void *arg)
469 struct video_channel *v;
473 if (retval == 0 && v->channel != 0)
479 /******************************************************************************
481 * ioctl_set_image_prop
483 *****************************************************************************/
484 static int ioctl_set_image_prop(void *arg, struct camera_data *cam)
486 struct video_picture *vp;
490 /* brightness, color, contrast need no check 0-65535 */
491 memcpy(&cam->vp, vp, sizeof(*vp));
493 /* update cam->params.colorParams */
494 cam->params.color_params.brightness = vp->brightness / 256;
495 cam->params.color_params.saturation = vp->colour / 256;
496 cam->params.color_params.contrast = vp->contrast / 256;
498 DBG("Requested params: bright 0x%X, sat 0x%X, contrast 0x%X\n",
499 cam->params.color_params.brightness,
500 cam->params.color_params.saturation,
501 cam->params.color_params.contrast);
503 cpia2_set_color_params(cam);
508 static int sync(struct camera_data *cam, int frame_nr)
510 struct framebuf *frame = &cam->buffers[frame_nr];
513 if (frame->status == FRAME_READY)
516 if (!cam->streaming) {
517 frame->status = FRAME_READY;
522 mutex_unlock(&cam->busy_lock);
523 wait_event_interruptible(cam->wq_stream,
525 frame->status == FRAME_READY);
526 mutex_lock(&cam->busy_lock);
527 if (signal_pending(current))
534 /******************************************************************************
536 * ioctl_set_window_size
538 *****************************************************************************/
539 static int ioctl_set_window_size(void *arg, struct camera_data *cam,
542 /* copy_from_user, check validity, copy to internal structure */
543 struct video_window *vw;
547 if (vw->clipcount != 0) /* clipping not supported */
550 if (vw->clips != NULL) /* clipping not supported */
553 /* Ensure that only this process can change the format. */
554 err = v4l2_prio_change(&cam->prio, &fh->prio, V4L2_PRIORITY_RECORD);
558 cam->pixelformat = V4L2_PIX_FMT_JPEG;
560 /* Be sure to supply the Huffman tables, this isn't MJPEG */
561 cam->params.compression.inhibit_htables = 0;
563 /* we set the video window to something smaller or equal to what
564 * is requested by the user???
566 DBG("Requested width = %d, height = %d\n", vw->width, vw->height);
567 if (vw->width != cam->vw.width || vw->height != cam->vw.height) {
568 cam->vw.width = vw->width;
569 cam->vw.height = vw->height;
570 cam->params.roi.width = vw->width;
571 cam->params.roi.height = vw->height;
572 cpia2_set_format(cam);
575 for (frame = 0; frame < cam->num_frames; ++frame) {
576 if (cam->buffers[frame].status == FRAME_READING)
577 if ((err = sync(cam, frame)) < 0)
580 cam->buffers[frame].status = FRAME_EMPTY;
586 /******************************************************************************
590 *****************************************************************************/
591 static int ioctl_get_mbuf(void *arg, struct camera_data *cam)
593 struct video_mbuf *vm;
597 memset(vm, 0, sizeof(*vm));
598 vm->size = cam->frame_size*cam->num_frames;
599 vm->frames = cam->num_frames;
600 for (i = 0; i < cam->num_frames; i++)
601 vm->offsets[i] = cam->frame_size * i;
606 /******************************************************************************
610 *****************************************************************************/
611 static int ioctl_mcapture(void *arg, struct camera_data *cam,
614 struct video_mmap *vm;
618 if (vm->frame < 0 || vm->frame >= cam->num_frames)
622 video_size = cpia2_match_video_size(vm->width, vm->height);
623 if (cam->video_size < 0) {
627 /* Ensure that only this process can change the format. */
628 err = v4l2_prio_change(&cam->prio, &fh->prio, V4L2_PRIORITY_RECORD);
632 if (video_size != cam->video_size) {
633 cam->video_size = video_size;
634 cam->params.roi.width = vm->width;
635 cam->params.roi.height = vm->height;
636 cpia2_set_format(cam);
639 if (cam->buffers[vm->frame].status == FRAME_READING)
640 if ((err=sync(cam, vm->frame)) < 0)
643 cam->buffers[vm->frame].status = FRAME_EMPTY;
645 return cpia2_usb_stream_start(cam,cam->params.camera_state.stream_mode);
648 /******************************************************************************
652 *****************************************************************************/
653 static int ioctl_sync(void *arg, struct camera_data *cam)
659 if (frame < 0 || frame >= cam->num_frames)
662 return sync(cam, frame);
666 /******************************************************************************
670 *****************************************************************************/
672 static int ioctl_set_gpio(void *arg, struct camera_data *cam)
676 gpio_val = *(__u32*) arg;
678 if (gpio_val &~ 0xFFU)
681 return cpia2_set_gpio(cam, (unsigned char)gpio_val);
684 /******************************************************************************
688 * V4L2 device capabilities
690 *****************************************************************************/
692 static int ioctl_querycap(void *arg, struct camera_data *cam)
694 struct v4l2_capability *vc = arg;
696 memset(vc, 0, sizeof(*vc));
697 strcpy(vc->driver, "cpia2");
699 if (cam->params.pnp_id.product == 0x151)
700 strcpy(vc->card, "QX5 Microscope");
702 strcpy(vc->card, "CPiA2 Camera");
703 switch (cam->params.pnp_id.device_type) {
705 strcat(vc->card, " (672/");
708 strcat(vc->card, " (676/");
711 strcat(vc->card, " (???/");
714 switch (cam->params.version.sensor_flags) {
715 case CPIA2_VP_SENSOR_FLAGS_404:
716 strcat(vc->card, "404)");
718 case CPIA2_VP_SENSOR_FLAGS_407:
719 strcat(vc->card, "407)");
721 case CPIA2_VP_SENSOR_FLAGS_409:
722 strcat(vc->card, "409)");
724 case CPIA2_VP_SENSOR_FLAGS_410:
725 strcat(vc->card, "410)");
727 case CPIA2_VP_SENSOR_FLAGS_500:
728 strcat(vc->card, "500)");
731 strcat(vc->card, "???)");
735 if (usb_make_path(cam->dev, vc->bus_info, sizeof(vc->bus_info)) <0)
736 memset(vc->bus_info,0, sizeof(vc->bus_info));
738 vc->version = KERNEL_VERSION(CPIA2_MAJ_VER, CPIA2_MIN_VER,
741 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
748 /******************************************************************************
752 * V4L2 input get/set/enumerate
754 *****************************************************************************/
756 static int ioctl_input(unsigned int ioclt_nr,void *arg,struct camera_data *cam)
758 struct v4l2_input *i = arg;
760 if(ioclt_nr != VIDIOC_G_INPUT) {
765 memset(i, 0, sizeof(*i));
766 strcpy(i->name, "Camera");
767 i->type = V4L2_INPUT_TYPE_CAMERA;
772 /******************************************************************************
776 * V4L2 format enumerate
778 *****************************************************************************/
780 static int ioctl_enum_fmt(void *arg,struct camera_data *cam)
782 struct v4l2_fmtdesc *f = arg;
783 int index = f->index;
785 if (index < 0 || index > 1)
788 memset(f, 0, sizeof(*f));
790 f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
791 f->flags = V4L2_FMT_FLAG_COMPRESSED;
794 strcpy(f->description, "MJPEG");
795 f->pixelformat = V4L2_PIX_FMT_MJPEG;
798 strcpy(f->description, "JPEG");
799 f->pixelformat = V4L2_PIX_FMT_JPEG;
808 /******************************************************************************
814 *****************************************************************************/
816 static int ioctl_try_fmt(void *arg,struct camera_data *cam)
818 struct v4l2_format *f = arg;
820 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
823 if (f->fmt.pix.pixelformat != V4L2_PIX_FMT_MJPEG &&
824 f->fmt.pix.pixelformat != V4L2_PIX_FMT_JPEG)
827 f->fmt.pix.field = V4L2_FIELD_NONE;
828 f->fmt.pix.bytesperline = 0;
829 f->fmt.pix.sizeimage = cam->frame_size;
830 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
833 switch (cpia2_match_video_size(f->fmt.pix.width, f->fmt.pix.height)) {
835 f->fmt.pix.width = 640;
836 f->fmt.pix.height = 480;
839 f->fmt.pix.width = 352;
840 f->fmt.pix.height = 288;
843 f->fmt.pix.width = 320;
844 f->fmt.pix.height = 240;
846 case VIDEOSIZE_288_216:
847 f->fmt.pix.width = 288;
848 f->fmt.pix.height = 216;
850 case VIDEOSIZE_256_192:
851 f->fmt.pix.width = 256;
852 f->fmt.pix.height = 192;
854 case VIDEOSIZE_224_168:
855 f->fmt.pix.width = 224;
856 f->fmt.pix.height = 168;
858 case VIDEOSIZE_192_144:
859 f->fmt.pix.width = 192;
860 f->fmt.pix.height = 144;
864 f->fmt.pix.width = 176;
865 f->fmt.pix.height = 144;
872 /******************************************************************************
878 *****************************************************************************/
880 static int ioctl_set_fmt(void *arg,struct camera_data *cam, struct cpia2_fh *fh)
882 struct v4l2_format *f = arg;
885 err = ioctl_try_fmt(arg, cam);
889 /* Ensure that only this process can change the format. */
890 err = v4l2_prio_change(&cam->prio, &fh->prio, V4L2_PRIORITY_RECORD);
895 cam->pixelformat = f->fmt.pix.pixelformat;
897 /* NOTE: This should be set to 1 for MJPEG, but some apps don't handle
898 * the missing Huffman table properly. */
899 cam->params.compression.inhibit_htables = 0;
900 /*f->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG;*/
902 /* we set the video window to something smaller or equal to what
903 * is requested by the user???
905 DBG("Requested width = %d, height = %d\n",
906 f->fmt.pix.width, f->fmt.pix.height);
907 if (f->fmt.pix.width != cam->vw.width ||
908 f->fmt.pix.height != cam->vw.height) {
909 cam->vw.width = f->fmt.pix.width;
910 cam->vw.height = f->fmt.pix.height;
911 cam->params.roi.width = f->fmt.pix.width;
912 cam->params.roi.height = f->fmt.pix.height;
913 cpia2_set_format(cam);
916 for (frame = 0; frame < cam->num_frames; ++frame) {
917 if (cam->buffers[frame].status == FRAME_READING)
918 if ((err = sync(cam, frame)) < 0)
921 cam->buffers[frame].status = FRAME_EMPTY;
927 /******************************************************************************
933 *****************************************************************************/
935 static int ioctl_get_fmt(void *arg,struct camera_data *cam)
937 struct v4l2_format *f = arg;
939 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
942 f->fmt.pix.width = cam->vw.width;
943 f->fmt.pix.height = cam->vw.height;
944 f->fmt.pix.pixelformat = cam->pixelformat;
945 f->fmt.pix.field = V4L2_FIELD_NONE;
946 f->fmt.pix.bytesperline = 0;
947 f->fmt.pix.sizeimage = cam->frame_size;
948 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
954 /******************************************************************************
958 * V4L2 query cropping capabilities
959 * NOTE: cropping is currently disabled
961 *****************************************************************************/
963 static int ioctl_cropcap(void *arg,struct camera_data *cam)
965 struct v4l2_cropcap *c = arg;
967 if (c->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
972 c->bounds.width = cam->vw.width;
973 c->bounds.height = cam->vw.height;
976 c->defrect.width = cam->vw.width;
977 c->defrect.height = cam->vw.height;
978 c->pixelaspect.numerator = 1;
979 c->pixelaspect.denominator = 1;
984 /******************************************************************************
988 * V4L2 query possible control variables
990 *****************************************************************************/
992 static int ioctl_queryctrl(void *arg,struct camera_data *cam)
994 struct v4l2_queryctrl *c = arg;
997 for(i=0; i<NUM_CONTROLS; ++i) {
998 if(c->id == controls[i].id) {
999 memcpy(c, controls+i, sizeof(*c));
1004 if(i == NUM_CONTROLS)
1007 /* Some devices have additional limitations */
1009 case V4L2_CID_BRIGHTNESS:
1011 * Don't let the register be set to zero - bug in VP4
1012 * flash of full brightness
1014 if (cam->params.pnp_id.device_type == DEVICE_STV_672)
1017 case V4L2_CID_VFLIP:
1019 if(cam->params.pnp_id.device_type == DEVICE_STV_672)
1020 c->flags |= V4L2_CTRL_FLAG_DISABLED;
1022 case CPIA2_CID_FRAMERATE:
1023 if(cam->params.pnp_id.device_type == DEVICE_STV_672 &&
1024 cam->params.version.sensor_flags==CPIA2_VP_SENSOR_FLAGS_500){
1027 for(i=0; i<c->maximum; ++i) {
1028 if(framerate_controls[i].value ==
1029 CPIA2_VP_FRAMERATE_15) {
1031 c->default_value = i;
1036 case CPIA2_CID_FLICKER_MODE:
1037 // Flicker control only valid for 672.
1038 if(cam->params.pnp_id.device_type != DEVICE_STV_672)
1039 c->flags |= V4L2_CTRL_FLAG_DISABLED;
1041 case CPIA2_CID_LIGHTS:
1042 // Light control only valid for the QX5 Microscope.
1043 if(cam->params.pnp_id.product != 0x151)
1044 c->flags |= V4L2_CTRL_FLAG_DISABLED;
1053 /******************************************************************************
1057 * V4L2 query possible control variables
1059 *****************************************************************************/
1061 static int ioctl_querymenu(void *arg,struct camera_data *cam)
1063 struct v4l2_querymenu *m = arg;
1065 memset(m->name, 0, sizeof(m->name));
1069 case CPIA2_CID_FLICKER_MODE:
1070 if(m->index < 0 || m->index >= NUM_FLICKER_CONTROLS)
1073 strcpy(m->name, flicker_controls[m->index].name);
1075 case CPIA2_CID_FRAMERATE:
1077 int maximum = NUM_FRAMERATE_CONTROLS - 1;
1078 if(cam->params.pnp_id.device_type == DEVICE_STV_672 &&
1079 cam->params.version.sensor_flags==CPIA2_VP_SENSOR_FLAGS_500){
1082 for(i=0; i<maximum; ++i) {
1083 if(framerate_controls[i].value ==
1084 CPIA2_VP_FRAMERATE_15)
1088 if(m->index < 0 || m->index > maximum)
1091 strcpy(m->name, framerate_controls[m->index].name);
1094 case CPIA2_CID_LIGHTS:
1095 if(m->index < 0 || m->index >= NUM_LIGHTS_CONTROLS)
1098 strcpy(m->name, lights_controls[m->index].name);
1107 /******************************************************************************
1111 * V4L2 get the value of a control variable
1113 *****************************************************************************/
1115 static int ioctl_g_ctrl(void *arg,struct camera_data *cam)
1117 struct v4l2_control *c = arg;
1120 case V4L2_CID_BRIGHTNESS:
1121 cpia2_do_command(cam, CPIA2_CMD_GET_VP_BRIGHTNESS,
1123 c->value = cam->params.color_params.brightness;
1125 case V4L2_CID_CONTRAST:
1126 cpia2_do_command(cam, CPIA2_CMD_GET_CONTRAST,
1128 c->value = cam->params.color_params.contrast;
1130 case V4L2_CID_SATURATION:
1131 cpia2_do_command(cam, CPIA2_CMD_GET_VP_SATURATION,
1133 c->value = cam->params.color_params.saturation;
1135 case V4L2_CID_HFLIP:
1136 cpia2_do_command(cam, CPIA2_CMD_GET_USER_EFFECTS,
1138 c->value = (cam->params.vp_params.user_effects &
1139 CPIA2_VP_USER_EFFECTS_MIRROR) != 0;
1141 case V4L2_CID_VFLIP:
1142 cpia2_do_command(cam, CPIA2_CMD_GET_USER_EFFECTS,
1144 c->value = (cam->params.vp_params.user_effects &
1145 CPIA2_VP_USER_EFFECTS_FLIP) != 0;
1147 case CPIA2_CID_TARGET_KB:
1148 c->value = cam->params.vc_params.target_kb;
1150 case CPIA2_CID_GPIO:
1151 cpia2_do_command(cam, CPIA2_CMD_GET_VP_GPIO_DATA,
1153 c->value = cam->params.vp_params.gpio_data;
1155 case CPIA2_CID_FLICKER_MODE:
1158 cpia2_do_command(cam, CPIA2_CMD_GET_FLICKER_MODES,
1160 if(cam->params.flicker_control.cam_register &
1161 CPIA2_VP_FLICKER_MODES_NEVER_FLICKER) {
1162 mode = NEVER_FLICKER;
1164 if(cam->params.flicker_control.cam_register &
1165 CPIA2_VP_FLICKER_MODES_50HZ) {
1171 for(i=0; i<NUM_FLICKER_CONTROLS; i++) {
1172 if(flicker_controls[i].value == mode) {
1177 if(i == NUM_FLICKER_CONTROLS)
1181 case CPIA2_CID_FRAMERATE:
1183 int maximum = NUM_FRAMERATE_CONTROLS - 1;
1185 for(i=0; i<= maximum; i++) {
1186 if(cam->params.vp_params.frame_rate ==
1187 framerate_controls[i].value)
1195 case CPIA2_CID_USB_ALT:
1196 c->value = cam->params.camera_state.stream_mode;
1198 case CPIA2_CID_LIGHTS:
1201 cpia2_do_command(cam, CPIA2_CMD_GET_VP_GPIO_DATA,
1203 for(i=0; i<NUM_LIGHTS_CONTROLS; i++) {
1204 if((cam->params.vp_params.gpio_data&GPIO_LIGHTS_MASK) ==
1205 lights_controls[i].value) {
1209 if(i == NUM_LIGHTS_CONTROLS)
1214 case CPIA2_CID_RESET_CAMERA:
1220 DBG("Get control id:%d, value:%d\n", c->id, c->value);
1225 /******************************************************************************
1229 * V4L2 set the value of a control variable
1231 *****************************************************************************/
1233 static int ioctl_s_ctrl(void *arg,struct camera_data *cam)
1235 struct v4l2_control *c = arg;
1239 DBG("Set control id:%d, value:%d\n", c->id, c->value);
1241 /* Check that the value is in range */
1242 for(i=0; i<NUM_CONTROLS; i++) {
1243 if(c->id == controls[i].id) {
1244 if(c->value < controls[i].minimum ||
1245 c->value > controls[i].maximum) {
1251 if(i == NUM_CONTROLS)
1255 case V4L2_CID_BRIGHTNESS:
1256 cpia2_set_brightness(cam, c->value);
1258 case V4L2_CID_CONTRAST:
1259 cpia2_set_contrast(cam, c->value);
1261 case V4L2_CID_SATURATION:
1262 cpia2_set_saturation(cam, c->value);
1264 case V4L2_CID_HFLIP:
1265 cpia2_set_property_mirror(cam, c->value);
1267 case V4L2_CID_VFLIP:
1268 cpia2_set_property_flip(cam, c->value);
1270 case CPIA2_CID_TARGET_KB:
1271 retval = cpia2_set_target_kb(cam, c->value);
1273 case CPIA2_CID_GPIO:
1274 retval = cpia2_set_gpio(cam, c->value);
1276 case CPIA2_CID_FLICKER_MODE:
1277 retval = cpia2_set_flicker_mode(cam,
1278 flicker_controls[c->value].value);
1280 case CPIA2_CID_FRAMERATE:
1281 retval = cpia2_set_fps(cam, framerate_controls[c->value].value);
1283 case CPIA2_CID_USB_ALT:
1284 retval = cpia2_usb_change_streaming_alternate(cam, c->value);
1286 case CPIA2_CID_LIGHTS:
1287 retval = cpia2_set_gpio(cam, lights_controls[c->value].value);
1289 case CPIA2_CID_RESET_CAMERA:
1290 cpia2_usb_stream_pause(cam);
1291 cpia2_reset_camera(cam);
1292 cpia2_usb_stream_resume(cam);
1301 /******************************************************************************
1305 * V4L2 get the JPEG compression parameters
1307 *****************************************************************************/
1309 static int ioctl_g_jpegcomp(void *arg,struct camera_data *cam)
1311 struct v4l2_jpegcompression *parms = arg;
1313 memset(parms, 0, sizeof(*parms));
1315 parms->quality = 80; // TODO: Can this be made meaningful?
1317 parms->jpeg_markers = V4L2_JPEG_MARKER_DQT | V4L2_JPEG_MARKER_DRI;
1318 if(!cam->params.compression.inhibit_htables) {
1319 parms->jpeg_markers |= V4L2_JPEG_MARKER_DHT;
1322 parms->APPn = cam->APPn;
1323 parms->APP_len = cam->APP_len;
1324 if(cam->APP_len > 0) {
1325 memcpy(parms->APP_data, cam->APP_data, cam->APP_len);
1326 parms->jpeg_markers |= V4L2_JPEG_MARKER_APP;
1329 parms->COM_len = cam->COM_len;
1330 if(cam->COM_len > 0) {
1331 memcpy(parms->COM_data, cam->COM_data, cam->COM_len);
1332 parms->jpeg_markers |= JPEG_MARKER_COM;
1335 DBG("G_JPEGCOMP APP_len:%d COM_len:%d\n",
1336 parms->APP_len, parms->COM_len);
1341 /******************************************************************************
1345 * V4L2 set the JPEG compression parameters
1346 * NOTE: quality and some jpeg_markers are ignored.
1348 *****************************************************************************/
1350 static int ioctl_s_jpegcomp(void *arg,struct camera_data *cam)
1352 struct v4l2_jpegcompression *parms = arg;
1354 DBG("S_JPEGCOMP APP_len:%d COM_len:%d\n",
1355 parms->APP_len, parms->COM_len);
1357 cam->params.compression.inhibit_htables =
1358 !(parms->jpeg_markers & V4L2_JPEG_MARKER_DHT);
1360 if(parms->APP_len != 0) {
1361 if(parms->APP_len > 0 &&
1362 parms->APP_len <= sizeof(cam->APP_data) &&
1363 parms->APPn >= 0 && parms->APPn <= 15) {
1364 cam->APPn = parms->APPn;
1365 cam->APP_len = parms->APP_len;
1366 memcpy(cam->APP_data, parms->APP_data, parms->APP_len);
1368 LOG("Bad APPn Params n=%d len=%d\n",
1369 parms->APPn, parms->APP_len);
1376 if(parms->COM_len != 0) {
1377 if(parms->COM_len > 0 &&
1378 parms->COM_len <= sizeof(cam->COM_data)) {
1379 cam->COM_len = parms->COM_len;
1380 memcpy(cam->COM_data, parms->COM_data, parms->COM_len);
1382 LOG("Bad COM_len=%d\n", parms->COM_len);
1390 /******************************************************************************
1394 * V4L2 Initiate memory mapping.
1395 * NOTE: The user's request is ignored. For now the buffers are fixed.
1397 *****************************************************************************/
1399 static int ioctl_reqbufs(void *arg,struct camera_data *cam)
1401 struct v4l2_requestbuffers *req = arg;
1403 if(req->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1404 req->memory != V4L2_MEMORY_MMAP)
1407 DBG("REQBUFS requested:%d returning:%d\n", req->count, cam->num_frames);
1408 req->count = cam->num_frames;
1409 memset(&req->reserved, 0, sizeof(req->reserved));
1414 /******************************************************************************
1418 * V4L2 Query memory buffer status.
1420 *****************************************************************************/
1422 static int ioctl_querybuf(void *arg,struct camera_data *cam)
1424 struct v4l2_buffer *buf = arg;
1426 if(buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1427 buf->index > cam->num_frames)
1430 buf->m.offset = cam->buffers[buf->index].data - cam->frame_buffer;
1431 buf->length = cam->frame_size;
1433 buf->memory = V4L2_MEMORY_MMAP;
1436 buf->flags = V4L2_BUF_FLAG_MAPPED;
1440 switch (cam->buffers[buf->index].status) {
1445 buf->flags = V4L2_BUF_FLAG_QUEUED;
1448 buf->bytesused = cam->buffers[buf->index].length;
1449 buf->timestamp = cam->buffers[buf->index].timestamp;
1450 buf->sequence = cam->buffers[buf->index].seq;
1451 buf->flags = V4L2_BUF_FLAG_DONE;
1455 DBG("QUERYBUF index:%d offset:%d flags:%d seq:%d bytesused:%d\n",
1456 buf->index, buf->m.offset, buf->flags, buf->sequence,
1462 /******************************************************************************
1466 * V4L2 User is freeing buffer
1468 *****************************************************************************/
1470 static int ioctl_qbuf(void *arg,struct camera_data *cam)
1472 struct v4l2_buffer *buf = arg;
1474 if(buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1475 buf->memory != V4L2_MEMORY_MMAP ||
1476 buf->index > cam->num_frames)
1479 DBG("QBUF #%d\n", buf->index);
1481 if(cam->buffers[buf->index].status == FRAME_READY)
1482 cam->buffers[buf->index].status = FRAME_EMPTY;
1487 /******************************************************************************
1489 * find_earliest_filled_buffer
1491 * Helper for ioctl_dqbuf. Find the next ready buffer.
1493 *****************************************************************************/
1495 static int find_earliest_filled_buffer(struct camera_data *cam)
1499 for (i=0; i<cam->num_frames; i++) {
1500 if(cam->buffers[i].status == FRAME_READY) {
1504 /* find which buffer is earlier */
1505 struct timeval *tv1, *tv2;
1506 tv1 = &cam->buffers[i].timestamp;
1507 tv2 = &cam->buffers[found].timestamp;
1508 if(tv1->tv_sec < tv2->tv_sec ||
1509 (tv1->tv_sec == tv2->tv_sec &&
1510 tv1->tv_usec < tv2->tv_usec))
1518 /******************************************************************************
1522 * V4L2 User is asking for a filled buffer.
1524 *****************************************************************************/
1526 static int ioctl_dqbuf(void *arg,struct camera_data *cam, struct file *file)
1528 struct v4l2_buffer *buf = arg;
1531 if(buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1532 buf->memory != V4L2_MEMORY_MMAP)
1535 frame = find_earliest_filled_buffer(cam);
1537 if(frame < 0 && file->f_flags&O_NONBLOCK)
1541 /* Wait for a frame to become available */
1542 struct framebuf *cb=cam->curbuff;
1543 mutex_unlock(&cam->busy_lock);
1544 wait_event_interruptible(cam->wq_stream,
1546 (cb=cam->curbuff)->status == FRAME_READY);
1547 mutex_lock(&cam->busy_lock);
1548 if (signal_pending(current))
1549 return -ERESTARTSYS;
1557 buf->bytesused = cam->buffers[buf->index].length;
1558 buf->flags = V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_DONE;
1559 buf->field = V4L2_FIELD_NONE;
1560 buf->timestamp = cam->buffers[buf->index].timestamp;
1561 buf->sequence = cam->buffers[buf->index].seq;
1562 buf->m.offset = cam->buffers[buf->index].data - cam->frame_buffer;
1563 buf->length = cam->frame_size;
1566 memset(&buf->timecode, 0, sizeof(buf->timecode));
1568 DBG("DQBUF #%d status:%d seq:%d length:%d\n", buf->index,
1569 cam->buffers[buf->index].status, buf->sequence, buf->bytesused);
1574 /******************************************************************************
1578 *****************************************************************************/
1579 static int cpia2_do_ioctl(struct inode *inode, struct file *file,
1580 unsigned int ioctl_nr, void *arg)
1582 struct video_device *dev = video_devdata(file);
1583 struct camera_data *cam = video_get_drvdata(dev);
1589 /* make this _really_ smp-safe */
1590 if (mutex_lock_interruptible(&cam->busy_lock))
1591 return -ERESTARTSYS;
1593 if (!cam->present) {
1594 mutex_unlock(&cam->busy_lock);
1598 /* Priority check */
1601 case VIDIOCMCAPTURE:
1604 struct cpia2_fh *fh = file->private_data;
1605 retval = v4l2_prio_check(&cam->prio, &fh->prio);
1607 mutex_unlock(&cam->busy_lock);
1615 struct cpia2_fh *fh = file->private_data;
1616 if(fh->prio != V4L2_PRIORITY_RECORD) {
1617 mutex_unlock(&cam->busy_lock);
1627 case VIDIOCGCAP: /* query capabilities */
1628 retval = ioctl_cap_query(arg, cam);
1631 case VIDIOCGCHAN: /* get video source - we are a camera, nothing else */
1632 retval = ioctl_get_channel(arg);
1634 case VIDIOCSCHAN: /* set video source - we are a camera, nothing else */
1635 retval = ioctl_set_channel(arg);
1637 case VIDIOCGPICT: /* image properties */
1638 memcpy(arg, &cam->vp, sizeof(struct video_picture));
1641 retval = ioctl_set_image_prop(arg, cam);
1643 case VIDIOCGWIN: /* get/set capture window */
1644 memcpy(arg, &cam->vw, sizeof(struct video_window));
1647 retval = ioctl_set_window_size(arg, cam, file->private_data);
1649 case VIDIOCGMBUF: /* mmap interface */
1650 retval = ioctl_get_mbuf(arg, cam);
1652 case VIDIOCMCAPTURE:
1653 retval = ioctl_mcapture(arg, cam, file->private_data);
1656 retval = ioctl_sync(arg, cam);
1658 /* pointless to implement overlay with this camera */
1666 /* tuner interface - we have none */
1674 /* audio interface - we have none */
1680 /* CPIA2 extension to Video4Linux API */
1681 case CPIA2_IOC_SET_GPIO:
1682 retval = ioctl_set_gpio(arg, cam);
1684 case VIDIOC_QUERYCAP:
1685 retval = ioctl_querycap(arg,cam);
1688 case VIDIOC_ENUMINPUT:
1689 case VIDIOC_G_INPUT:
1690 case VIDIOC_S_INPUT:
1691 retval = ioctl_input(ioctl_nr, arg,cam);
1694 case VIDIOC_ENUM_FMT:
1695 retval = ioctl_enum_fmt(arg,cam);
1697 case VIDIOC_TRY_FMT:
1698 retval = ioctl_try_fmt(arg,cam);
1701 retval = ioctl_get_fmt(arg,cam);
1704 retval = ioctl_set_fmt(arg,cam,file->private_data);
1707 case VIDIOC_CROPCAP:
1708 retval = ioctl_cropcap(arg,cam);
1712 // TODO: I think cropping can be implemented - SJB
1716 case VIDIOC_QUERYCTRL:
1717 retval = ioctl_queryctrl(arg,cam);
1719 case VIDIOC_QUERYMENU:
1720 retval = ioctl_querymenu(arg,cam);
1723 retval = ioctl_g_ctrl(arg,cam);
1726 retval = ioctl_s_ctrl(arg,cam);
1729 case VIDIOC_G_JPEGCOMP:
1730 retval = ioctl_g_jpegcomp(arg,cam);
1732 case VIDIOC_S_JPEGCOMP:
1733 retval = ioctl_s_jpegcomp(arg,cam);
1736 case VIDIOC_G_PRIORITY:
1738 struct cpia2_fh *fh = file->private_data;
1739 *(enum v4l2_priority*)arg = fh->prio;
1742 case VIDIOC_S_PRIORITY:
1744 struct cpia2_fh *fh = file->private_data;
1745 enum v4l2_priority prio;
1746 prio = *(enum v4l2_priority*)arg;
1747 if(cam->streaming &&
1749 fh->prio == V4L2_PRIORITY_RECORD) {
1750 /* Can't drop record priority while streaming */
1752 } else if(prio == V4L2_PRIORITY_RECORD &&
1754 v4l2_prio_max(&cam->prio) == V4L2_PRIORITY_RECORD) {
1755 /* Only one program can record at a time */
1758 retval = v4l2_prio_change(&cam->prio, &fh->prio, prio);
1763 case VIDIOC_REQBUFS:
1764 retval = ioctl_reqbufs(arg,cam);
1766 case VIDIOC_QUERYBUF:
1767 retval = ioctl_querybuf(arg,cam);
1770 retval = ioctl_qbuf(arg,cam);
1773 retval = ioctl_dqbuf(arg,cam,file);
1775 case VIDIOC_STREAMON:
1778 DBG("VIDIOC_STREAMON, streaming=%d\n", cam->streaming);
1780 if(!cam->mmapped || type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1783 if(!cam->streaming) {
1784 retval = cpia2_usb_stream_start(cam,
1785 cam->params.camera_state.stream_mode);
1792 case VIDIOC_STREAMOFF:
1795 DBG("VIDIOC_STREAMOFF, streaming=%d\n", cam->streaming);
1797 if(!cam->mmapped || type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1800 if(cam->streaming) {
1801 retval = cpia2_usb_stream_stop(cam);
1809 case VIDIOC_ENUMOUTPUT:
1810 case VIDIOC_G_OUTPUT:
1811 case VIDIOC_S_OUTPUT:
1812 case VIDIOC_G_MODULATOR:
1813 case VIDIOC_S_MODULATOR:
1815 case VIDIOC_ENUMAUDIO:
1816 case VIDIOC_G_AUDIO:
1817 case VIDIOC_S_AUDIO:
1819 case VIDIOC_ENUMAUDOUT:
1820 case VIDIOC_G_AUDOUT:
1821 case VIDIOC_S_AUDOUT:
1823 case VIDIOC_ENUMSTD:
1824 case VIDIOC_QUERYSTD:
1828 case VIDIOC_G_TUNER:
1829 case VIDIOC_S_TUNER:
1830 case VIDIOC_G_FREQUENCY:
1831 case VIDIOC_S_FREQUENCY:
1833 case VIDIOC_OVERLAY:
1842 retval = -ENOIOCTLCMD;
1846 mutex_unlock(&cam->busy_lock);
1850 static int cpia2_ioctl(struct inode *inode, struct file *file,
1851 unsigned int ioctl_nr, unsigned long iarg)
1853 return video_usercopy(inode, file, ioctl_nr, iarg, cpia2_do_ioctl);
1856 /******************************************************************************
1860 *****************************************************************************/
1861 static int cpia2_mmap(struct file *file, struct vm_area_struct *area)
1864 struct video_device *dev = video_devdata(file);
1865 struct camera_data *cam = video_get_drvdata(dev);
1867 /* Priority check */
1868 struct cpia2_fh *fh = file->private_data;
1869 if(fh->prio != V4L2_PRIORITY_RECORD) {
1873 retval = cpia2_remap_buffer(cam, area);
1880 /******************************************************************************
1882 * reset_camera_struct_v4l
1884 * Sets all values to the defaults
1885 *****************************************************************************/
1886 static void reset_camera_struct_v4l(struct camera_data *cam)
1889 * Fill in the v4l structures. video_cap is filled in inside the VIDIOCCAP
1890 * Ioctl. Here, just do the window and picture stucts.
1892 cam->vp.palette = (u16) VIDEO_PALETTE_RGB24; /* Is this right? */
1893 cam->vp.brightness = (u16) cam->params.color_params.brightness * 256;
1894 cam->vp.colour = (u16) cam->params.color_params.saturation * 256;
1895 cam->vp.contrast = (u16) cam->params.color_params.contrast * 256;
1899 cam->vw.width = cam->params.roi.width;
1900 cam->vw.height = cam->params.roi.height;
1902 cam->vw.clipcount = 0;
1904 cam->frame_size = buffer_size;
1905 cam->num_frames = num_buffers;
1908 cam->params.flicker_control.flicker_mode_req = flicker_mode;
1909 cam->params.flicker_control.mains_frequency = flicker_freq;
1912 cam->params.camera_state.stream_mode = alternate;
1914 cam->pixelformat = V4L2_PIX_FMT_JPEG;
1915 v4l2_prio_init(&cam->prio);
1920 * The v4l video device structure initialized for this device
1922 static const struct file_operations fops_template = {
1923 .owner = THIS_MODULE,
1925 .release = cpia2_close,
1926 .read = cpia2_v4l_read,
1927 .poll = cpia2_v4l_poll,
1928 .ioctl = cpia2_ioctl,
1929 .llseek = no_llseek,
1930 .compat_ioctl = v4l_compat_ioctl32,
1934 static struct video_device cpia2_template = {
1935 /* I could not find any place for the old .initialize initializer?? */
1936 .owner= THIS_MODULE,
1937 .name= "CPiA2 Camera",
1938 .type= VID_TYPE_CAPTURE,
1939 .type2 = V4L2_CAP_VIDEO_CAPTURE |
1942 .fops= &fops_template,
1943 .release= video_device_release,
1946 /******************************************************************************
1948 * cpia2_register_camera
1950 *****************************************************************************/
1951 int cpia2_register_camera(struct camera_data *cam)
1953 cam->vdev = video_device_alloc();
1957 memcpy(cam->vdev, &cpia2_template, sizeof(cpia2_template));
1958 video_set_drvdata(cam->vdev, cam);
1960 reset_camera_struct_v4l(cam);
1962 /* register v4l device */
1963 if (video_register_device
1964 (cam->vdev, VFL_TYPE_GRABBER, video_nr) == -1) {
1965 ERR("video_register_device failed\n");
1966 video_device_release(cam->vdev);
1973 /******************************************************************************
1975 * cpia2_unregister_camera
1977 *****************************************************************************/
1978 void cpia2_unregister_camera(struct camera_data *cam)
1980 if (!cam->open_count) {
1981 video_unregister_device(cam->vdev);
1983 LOG("/dev/video%d removed while open, "
1984 "deferring video_unregister_device\n",
1989 /******************************************************************************
1993 * Make sure that all user-supplied parameters are sensible
1994 *****************************************************************************/
1995 static void __init check_parameters(void)
1997 if(buffer_size < PAGE_SIZE) {
1998 buffer_size = PAGE_SIZE;
1999 LOG("buffer_size too small, setting to %d\n", buffer_size);
2000 } else if(buffer_size > 1024*1024) {
2001 /* arbitrary upper limiit */
2002 buffer_size = 1024*1024;
2003 LOG("buffer_size ridiculously large, setting to %d\n",
2006 buffer_size += PAGE_SIZE-1;
2007 buffer_size &= ~(PAGE_SIZE-1);
2010 if(num_buffers < 1) {
2012 LOG("num_buffers too small, setting to %d\n", num_buffers);
2013 } else if(num_buffers > VIDEO_MAX_FRAME) {
2014 num_buffers = VIDEO_MAX_FRAME;
2015 LOG("num_buffers too large, setting to %d\n", num_buffers);
2018 if(alternate < USBIF_ISO_1 || alternate > USBIF_ISO_6) {
2019 alternate = DEFAULT_ALT;
2020 LOG("alternate specified is invalid, using %d\n", alternate);
2023 if (flicker_mode != NEVER_FLICKER && flicker_mode != ANTI_FLICKER_ON) {
2024 flicker_mode = NEVER_FLICKER;
2025 LOG("Flicker mode specified is invalid, using %d\n",
2029 if (flicker_freq != FLICKER_50 && flicker_freq != FLICKER_60) {
2030 flicker_freq = FLICKER_60;
2031 LOG("Flicker mode specified is invalid, using %d\n",
2035 if(video_nr < -1 || video_nr > 64) {
2037 LOG("invalid video_nr specified, must be -1 to 64\n");
2040 DBG("Using %d buffers, each %d bytes, alternate=%d\n",
2041 num_buffers, buffer_size, alternate);
2044 /************ Module Stuff ***************/
2047 /******************************************************************************
2049 * cpia2_init/module_init
2051 *****************************************************************************/
2052 static int __init cpia2_init(void)
2054 LOG("%s v%d.%d.%d\n",
2055 ABOUT, CPIA2_MAJ_VER, CPIA2_MIN_VER, CPIA2_PATCH_VER);
2062 /******************************************************************************
2064 * cpia2_exit/module_exit
2066 *****************************************************************************/
2067 static void __exit cpia2_exit(void)
2069 cpia2_usb_cleanup();
2070 schedule_timeout(2 * HZ);
2073 module_init(cpia2_init);
2074 module_exit(cpia2_exit);