2 * usbvision-core.c - driver for NT100x USB video capture devices
5 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
6 * Dwaine Garden <dwainegarden@rogers.com>
8 * This module is part of usbvision driver project.
9 * Updates to driver completed by Dwaine P. Garden
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <linux/kernel.h>
27 #include <linux/list.h>
28 #include <linux/timer.h>
29 #include <linux/slab.h>
31 #include <linux/utsname.h>
32 #include <linux/highmem.h>
33 #include <linux/vmalloc.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/spinlock.h>
38 #include <linux/videodev2.h>
39 #include <linux/i2c.h>
41 #include <media/saa7115.h>
42 #include <media/v4l2-common.h>
43 #include <media/tuner.h>
45 #include <linux/workqueue.h>
47 #include "usbvision.h"
49 static unsigned int core_debug;
50 module_param(core_debug,int,0644);
51 MODULE_PARM_DESC(core_debug,"enable debug messages [core]");
53 static unsigned int force_testpattern;
54 module_param(force_testpattern,int,0644);
55 MODULE_PARM_DESC(force_testpattern,"enable test pattern display [core]");
57 static int adjustCompression = 1; /* Set the compression to be adaptive */
58 module_param(adjustCompression, int, 0444);
59 MODULE_PARM_DESC(adjustCompression, " Set the ADPCM compression for the device. Default: 1 (On)");
61 /* To help people with Black and White output with using s-video input.
62 * Some cables and input device are wired differently. */
63 static int SwitchSVideoInput;
64 module_param(SwitchSVideoInput, int, 0444);
65 MODULE_PARM_DESC(SwitchSVideoInput, " Set the S-Video input. Some cables and input device are wired differently. Default: 0 (Off)");
67 static unsigned int adjust_X_Offset = -1;
68 module_param(adjust_X_Offset, int, 0644);
69 MODULE_PARM_DESC(adjust_X_Offset, "adjust X offset display [core]");
71 static unsigned int adjust_Y_Offset = -1;
72 module_param(adjust_Y_Offset, int, 0644);
73 MODULE_PARM_DESC(adjust_Y_Offset, "adjust Y offset display [core]");
76 #define ENABLE_HEXDUMP 0 /* Enable if you need it */
79 #ifdef USBVISION_DEBUG
80 #define PDEBUG(level, fmt, args...) { \
81 if (core_debug & (level)) \
82 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
83 __func__, __LINE__ , ## args); \
86 #define PDEBUG(level, fmt, args...) do {} while(0)
89 #define DBG_HEADER 1<<0
92 #define DBG_PARSE 1<<3
93 #define DBG_SCRATCH 1<<4
96 static const int max_imgwidth = MAX_FRAME_WIDTH;
97 static const int max_imgheight = MAX_FRAME_HEIGHT;
98 static const int min_imgwidth = MIN_FRAME_WIDTH;
99 static const int min_imgheight = MIN_FRAME_HEIGHT;
101 /* The value of 'scratch_buf_size' affects quality of the picture
102 * in many ways. Shorter buffers may cause loss of data when client
103 * is too slow. Larger buffers are memory-consuming and take longer
104 * to work with. This setting can be adjusted, but the default value
105 * should be OK for most desktop users.
107 #define DEFAULT_SCRATCH_BUF_SIZE (0x20000) // 128kB memory scratch buffer
108 static const int scratch_buf_size = DEFAULT_SCRATCH_BUF_SIZE;
110 // Function prototypes
111 static int usbvision_request_intra (struct usb_usbvision *usbvision);
112 static int usbvision_unrequest_intra (struct usb_usbvision *usbvision);
113 static int usbvision_adjust_compression (struct usb_usbvision *usbvision);
114 static int usbvision_measure_bandwidth (struct usb_usbvision *usbvision);
116 /*******************************/
117 /* Memory management functions */
118 /*******************************/
121 * Here we want the physical address of the memory.
122 * This is used when initializing the contents of the area.
125 static void *usbvision_rvmalloc(unsigned long size)
130 size = PAGE_ALIGN(size);
131 mem = vmalloc_32(size);
135 memset(mem, 0, size); /* Clear the ram out, no junk to the user */
136 adr = (unsigned long) mem;
138 SetPageReserved(vmalloc_to_page((void *)adr));
146 static void usbvision_rvfree(void *mem, unsigned long size)
153 size = PAGE_ALIGN(size);
155 adr = (unsigned long) mem;
156 while ((long) size > 0) {
157 ClearPageReserved(vmalloc_to_page((void *)adr));
167 static void usbvision_hexdump(const unsigned char *data, int len)
172 for (i = k = 0; len > 0; i++, len--) {
173 if (i > 0 && (i % 16 == 0)) {
177 k += sprintf(&tmp[k], "%02x ", data[i]);
184 /********************************
185 * scratch ring buffer handling
186 ********************************/
187 static int scratch_len(struct usb_usbvision *usbvision) /*This returns the amount of data actually in the buffer */
189 int len = usbvision->scratch_write_ptr - usbvision->scratch_read_ptr;
191 len += scratch_buf_size;
193 PDEBUG(DBG_SCRATCH, "scratch_len() = %d\n", len);
199 /* This returns the free space left in the buffer */
200 static int scratch_free(struct usb_usbvision *usbvision)
202 int free = usbvision->scratch_read_ptr - usbvision->scratch_write_ptr;
204 free += scratch_buf_size;
207 free -= 1; /* at least one byte in the buffer must */
208 /* left blank, otherwise there is no chance to differ between full and empty */
210 PDEBUG(DBG_SCRATCH, "return %d\n", free);
216 /* This puts data into the buffer */
217 static int scratch_put(struct usb_usbvision *usbvision, unsigned char *data,
222 if (usbvision->scratch_write_ptr + len < scratch_buf_size) {
223 memcpy(usbvision->scratch + usbvision->scratch_write_ptr, data, len);
224 usbvision->scratch_write_ptr += len;
227 len_part = scratch_buf_size - usbvision->scratch_write_ptr;
228 memcpy(usbvision->scratch + usbvision->scratch_write_ptr, data, len_part);
229 if (len == len_part) {
230 usbvision->scratch_write_ptr = 0; /* just set write_ptr to zero */
233 memcpy(usbvision->scratch, data + len_part, len - len_part);
234 usbvision->scratch_write_ptr = len - len_part;
238 PDEBUG(DBG_SCRATCH, "len=%d, new write_ptr=%d\n", len, usbvision->scratch_write_ptr);
243 /* This marks the write_ptr as position of new frame header */
244 static void scratch_mark_header(struct usb_usbvision *usbvision)
246 PDEBUG(DBG_SCRATCH, "header at write_ptr=%d\n", usbvision->scratch_headermarker_write_ptr);
248 usbvision->scratch_headermarker[usbvision->scratch_headermarker_write_ptr] =
249 usbvision->scratch_write_ptr;
250 usbvision->scratch_headermarker_write_ptr += 1;
251 usbvision->scratch_headermarker_write_ptr %= USBVISION_NUM_HEADERMARKER;
254 /* This gets data from the buffer at the given "ptr" position */
255 static int scratch_get_extra(struct usb_usbvision *usbvision,
256 unsigned char *data, int *ptr, int len)
259 if (*ptr + len < scratch_buf_size) {
260 memcpy(data, usbvision->scratch + *ptr, len);
264 len_part = scratch_buf_size - *ptr;
265 memcpy(data, usbvision->scratch + *ptr, len_part);
266 if (len == len_part) {
267 *ptr = 0; /* just set the y_ptr to zero */
270 memcpy(data + len_part, usbvision->scratch, len - len_part);
271 *ptr = len - len_part;
275 PDEBUG(DBG_SCRATCH, "len=%d, new ptr=%d\n", len, *ptr);
281 /* This sets the scratch extra read pointer */
282 static void scratch_set_extra_ptr(struct usb_usbvision *usbvision, int *ptr,
285 *ptr = (usbvision->scratch_read_ptr + len)%scratch_buf_size;
287 PDEBUG(DBG_SCRATCH, "ptr=%d\n", *ptr);
291 /*This increments the scratch extra read pointer */
292 static void scratch_inc_extra_ptr(int *ptr, int len)
294 *ptr = (*ptr + len) % scratch_buf_size;
296 PDEBUG(DBG_SCRATCH, "ptr=%d\n", *ptr);
300 /* This gets data from the buffer */
301 static int scratch_get(struct usb_usbvision *usbvision, unsigned char *data,
305 if (usbvision->scratch_read_ptr + len < scratch_buf_size) {
306 memcpy(data, usbvision->scratch + usbvision->scratch_read_ptr, len);
307 usbvision->scratch_read_ptr += len;
310 len_part = scratch_buf_size - usbvision->scratch_read_ptr;
311 memcpy(data, usbvision->scratch + usbvision->scratch_read_ptr, len_part);
312 if (len == len_part) {
313 usbvision->scratch_read_ptr = 0; /* just set the read_ptr to zero */
316 memcpy(data + len_part, usbvision->scratch, len - len_part);
317 usbvision->scratch_read_ptr = len - len_part;
321 PDEBUG(DBG_SCRATCH, "len=%d, new read_ptr=%d\n", len, usbvision->scratch_read_ptr);
327 /* This sets read pointer to next header and returns it */
328 static int scratch_get_header(struct usb_usbvision *usbvision,
329 struct usbvision_frame_header *header)
333 PDEBUG(DBG_SCRATCH, "from read_ptr=%d", usbvision->scratch_headermarker_read_ptr);
335 while (usbvision->scratch_headermarker_write_ptr -
336 usbvision->scratch_headermarker_read_ptr != 0) {
337 usbvision->scratch_read_ptr =
338 usbvision->scratch_headermarker[usbvision->scratch_headermarker_read_ptr];
339 usbvision->scratch_headermarker_read_ptr += 1;
340 usbvision->scratch_headermarker_read_ptr %= USBVISION_NUM_HEADERMARKER;
341 scratch_get(usbvision, (unsigned char *)header, USBVISION_HEADER_LENGTH);
342 if ((header->magic_1 == USBVISION_MAGIC_1)
343 && (header->magic_2 == USBVISION_MAGIC_2)
344 && (header->headerLength == USBVISION_HEADER_LENGTH)) {
345 errCode = USBVISION_HEADER_LENGTH;
346 header->frameWidth = header->frameWidthLo + (header->frameWidthHi << 8);
347 header->frameHeight = header->frameHeightLo + (header->frameHeightHi << 8);
356 /*This removes len bytes of old data from the buffer */
357 static void scratch_rm_old(struct usb_usbvision *usbvision, int len)
360 usbvision->scratch_read_ptr += len;
361 usbvision->scratch_read_ptr %= scratch_buf_size;
362 PDEBUG(DBG_SCRATCH, "read_ptr is now %d\n", usbvision->scratch_read_ptr);
366 /*This resets the buffer - kills all data in it too */
367 static void scratch_reset(struct usb_usbvision *usbvision)
369 PDEBUG(DBG_SCRATCH, "\n");
371 usbvision->scratch_read_ptr = 0;
372 usbvision->scratch_write_ptr = 0;
373 usbvision->scratch_headermarker_read_ptr = 0;
374 usbvision->scratch_headermarker_write_ptr = 0;
375 usbvision->isocstate = IsocState_NoFrame;
378 int usbvision_scratch_alloc(struct usb_usbvision *usbvision)
380 usbvision->scratch = vmalloc_32(scratch_buf_size);
381 scratch_reset(usbvision);
382 if(usbvision->scratch == NULL) {
383 dev_err(&usbvision->dev->dev,
384 "%s: unable to allocate %d bytes for scratch\n",
385 __func__, scratch_buf_size);
391 void usbvision_scratch_free(struct usb_usbvision *usbvision)
393 if (usbvision->scratch != NULL) {
394 vfree(usbvision->scratch);
395 usbvision->scratch = NULL;
400 * usbvision_testpattern()
402 * Procedure forms a test pattern (yellow grid on blue background).
405 * fullframe: if TRUE then entire frame is filled, otherwise the procedure
406 * continues from the current scanline.
407 * pmode 0: fill the frame with solid blue color (like on VCR or TV)
408 * 1: Draw a colored grid
411 static void usbvision_testpattern(struct usb_usbvision *usbvision,
412 int fullframe, int pmode)
414 static const char proc[] = "usbvision_testpattern";
415 struct usbvision_frame *frame;
421 if (usbvision == NULL) {
422 printk(KERN_ERR "%s: usbvision == NULL\n", proc);
425 if (usbvision->curFrame == NULL) {
426 printk(KERN_ERR "%s: usbvision->curFrame is NULL.\n", proc);
430 /* Grab the current frame */
431 frame = usbvision->curFrame;
433 /* Optionally start at the beginning */
436 frame->scanlength = 0;
439 /* Form every scan line */
440 for (; frame->curline < frame->frmheight; frame->curline++) {
443 f = frame->data + (usbvision->curwidth * 3 * frame->curline);
444 for (i = 0; i < usbvision->curwidth; i++) {
445 unsigned char cb = 0x80;
446 unsigned char cg = 0;
447 unsigned char cr = 0;
450 if (frame->curline % 32 == 0)
451 cb = 0, cg = cr = 0xFF;
452 else if (i % 32 == 0) {
453 if (frame->curline % 32 == 1)
455 cb = 0, cg = cr = 0xFF;
462 num_pass * 2) & 0xFF;
465 num_pass * 3) & 0xFF;
468 /* Just the blue screen */
478 frame->grabstate = FrameState_Done;
479 frame->scanlength += scan_length;
485 * usbvision_decompress_alloc()
487 * allocates intermediate buffer for decompression
489 int usbvision_decompress_alloc(struct usb_usbvision *usbvision)
491 int IFB_size = MAX_FRAME_WIDTH * MAX_FRAME_HEIGHT * 3 / 2;
492 usbvision->IntraFrameBuffer = vmalloc_32(IFB_size);
493 if (usbvision->IntraFrameBuffer == NULL) {
494 dev_err(&usbvision->dev->dev,
495 "%s: unable to allocate %d for compr. frame buffer\n",
503 * usbvision_decompress_free()
505 * frees intermediate buffer for decompression
507 void usbvision_decompress_free(struct usb_usbvision *usbvision)
509 if (usbvision->IntraFrameBuffer != NULL) {
510 vfree(usbvision->IntraFrameBuffer);
511 usbvision->IntraFrameBuffer = NULL;
515 /************************************************************
516 * Here comes the data parsing stuff that is run as interrupt
517 ************************************************************/
519 * usbvision_find_header()
521 * Locate one of supported header markers in the scratch buffer.
523 static enum ParseState usbvision_find_header(struct usb_usbvision *usbvision)
525 struct usbvision_frame *frame;
528 frame = usbvision->curFrame;
530 while (scratch_get_header(usbvision, &frame->isocHeader) == USBVISION_HEADER_LENGTH) {
531 // found header in scratch
532 PDEBUG(DBG_HEADER, "found header: 0x%02x%02x %d %d %d %d %#x 0x%02x %u %u",
533 frame->isocHeader.magic_2,
534 frame->isocHeader.magic_1,
535 frame->isocHeader.headerLength,
536 frame->isocHeader.frameNum,
537 frame->isocHeader.framePhase,
538 frame->isocHeader.frameLatency,
539 frame->isocHeader.dataFormat,
540 frame->isocHeader.formatParam,
541 frame->isocHeader.frameWidth,
542 frame->isocHeader.frameHeight);
544 if (usbvision->requestIntra) {
545 if (frame->isocHeader.formatParam & 0x80) {
547 usbvision->lastIsocFrameNum = -1; // do not check for lost frames this time
548 usbvision_unrequest_intra(usbvision);
559 frame->frmwidth = frame->isocHeader.frameWidth * usbvision->stretch_width;
560 frame->frmheight = frame->isocHeader.frameHeight * usbvision->stretch_height;
561 frame->v4l2_linesize = (frame->frmwidth * frame->v4l2_format.depth)>> 3;
563 else { // no header found
564 PDEBUG(DBG_HEADER, "skipping scratch data, no header");
565 scratch_reset(usbvision);
566 return ParseState_EndParse;
570 if (frame->isocHeader.dataFormat==ISOC_MODE_COMPRESS) {
571 //check isocHeader.frameNum for lost frames
572 if (usbvision->lastIsocFrameNum >= 0) {
573 if (((usbvision->lastIsocFrameNum + 1) % 32) != frame->isocHeader.frameNum) {
574 // unexpected frame drop: need to request new intra frame
575 PDEBUG(DBG_HEADER, "Lost frame before %d on USB", frame->isocHeader.frameNum);
576 usbvision_request_intra(usbvision);
577 return ParseState_NextFrame;
580 usbvision->lastIsocFrameNum = frame->isocHeader.frameNum;
582 usbvision->header_count++;
583 frame->scanstate = ScanState_Lines;
586 if (force_testpattern) {
587 usbvision_testpattern(usbvision, 1, 1);
588 return ParseState_NextFrame;
590 return ParseState_Continue;
593 static enum ParseState usbvision_parse_lines_422(struct usb_usbvision *usbvision,
596 volatile struct usbvision_frame *frame;
600 unsigned char yuyv[4]={180, 128, 10, 128}; // YUV components
601 unsigned char rv, gv, bv; // RGB components
602 int clipmask_index, bytes_per_pixel;
603 int stretch_bytes, clipmask_add;
605 frame = usbvision->curFrame;
606 f = frame->data + (frame->v4l2_linesize * frame->curline);
608 /* Make sure there's enough data for the entire line */
609 len = (frame->isocHeader.frameWidth * 2)+5;
610 if (scratch_len(usbvision) < len) {
611 PDEBUG(DBG_PARSE, "out of data in line %d, need %u.\n", frame->curline, len);
612 return ParseState_Out;
615 if ((frame->curline + 1) >= frame->frmheight) {
616 return ParseState_NextFrame;
619 bytes_per_pixel = frame->v4l2_format.bytes_per_pixel;
620 stretch_bytes = (usbvision->stretch_width - 1) * bytes_per_pixel;
621 clipmask_index = frame->curline * MAX_FRAME_WIDTH;
622 clipmask_add = usbvision->stretch_width;
624 for (i = 0; i < frame->frmwidth; i+=(2 * usbvision->stretch_width)) {
626 scratch_get(usbvision, &yuyv[0], 4);
628 if (frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
634 YUV_TO_RGB_BY_THE_BOOK(yuyv[0], yuyv[1], yuyv[3], rv, gv, bv);
635 switch (frame->v4l2_format.format) {
636 case V4L2_PIX_FMT_RGB565:
639 *f++ = (0x07 & (gv >> 3)) |
642 case V4L2_PIX_FMT_RGB24:
647 case V4L2_PIX_FMT_RGB32:
653 case V4L2_PIX_FMT_RGB555:
656 *f++ = (0x03 & (gv >> 3)) |
661 clipmask_index += clipmask_add;
664 if (frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
670 YUV_TO_RGB_BY_THE_BOOK(yuyv[2], yuyv[1], yuyv[3], rv, gv, bv);
671 switch (frame->v4l2_format.format) {
672 case V4L2_PIX_FMT_RGB565:
675 *f++ = (0x07 & (gv >> 3)) |
678 case V4L2_PIX_FMT_RGB24:
683 case V4L2_PIX_FMT_RGB32:
689 case V4L2_PIX_FMT_RGB555:
692 *f++ = (0x03 & (gv >> 3)) |
697 clipmask_index += clipmask_add;
701 frame->curline += usbvision->stretch_height;
702 *pcopylen += frame->v4l2_linesize * usbvision->stretch_height;
704 if (frame->curline >= frame->frmheight) {
705 return ParseState_NextFrame;
708 return ParseState_Continue;
712 /* The decompression routine */
713 static int usbvision_decompress(struct usb_usbvision *usbvision,unsigned char *Compressed,
714 unsigned char *Decompressed, int *StartPos,
715 int *BlockTypeStartPos, int Len)
717 int RestPixel, Idx, MaxPos, Pos, ExtraPos, BlockLen, BlockTypePos, BlockTypeLen;
718 unsigned char BlockByte, BlockCode, BlockType, BlockTypeByte, Integrator;
722 BlockTypePos = *BlockTypeStartPos;
723 MaxPos = 396; //Pos + Len;
733 for (Idx = 0; Idx < Len; Idx++) {
736 if (BlockTypeLen==0) {
737 BlockTypeByte = Compressed[BlockTypePos];
741 BlockType = (BlockTypeByte & 0xC0) >> 6;
744 usbvision->ComprBlockTypes[BlockType]++;
747 if (BlockType == 0) {
748 if(RestPixel >= 24) {
751 Integrator = Decompressed[Idx];
753 Idx += RestPixel - 1;
757 BlockCode = Compressed[Pos];
759 if (RestPixel >= 24) {
762 BlockLen = RestPixel;
764 RestPixel -= BlockLen;
765 ExtraPos = Pos + (BlockLen / 4);
771 if ((BlockLen%4) == 0) {
772 BlockByte = Compressed[Pos];
775 if (BlockType == 1) { //inter Block
776 Integrator = Decompressed[Idx];
778 switch (BlockByte & 0xC0) {
780 Integrator += Compressed[ExtraPos];
784 Integrator += BlockCode;
787 Integrator -= BlockCode;
790 Decompressed[Idx] = Integrator;
795 *StartPos = ExtraPos;
796 *BlockTypeStartPos = BlockTypePos;
802 * usbvision_parse_compress()
804 * Parse compressed frame from the scratch buffer, put
805 * decoded RGB value into the current frame buffer and add the written
806 * number of bytes (RGB) to the *pcopylen.
809 static enum ParseState usbvision_parse_compress(struct usb_usbvision *usbvision,
812 #define USBVISION_STRIP_MAGIC 0x5A
813 #define USBVISION_STRIP_LEN_MAX 400
814 #define USBVISION_STRIP_HEADER_LEN 3
816 struct usbvision_frame *frame;
817 unsigned char *f,*u = NULL ,*v = NULL;
818 unsigned char StripData[USBVISION_STRIP_LEN_MAX];
819 unsigned char StripHeader[USBVISION_STRIP_HEADER_LEN];
820 int Idx, IdxEnd, StripLen, StripPtr, StartBlockPos, BlockPos, BlockTypePos;
821 int clipmask_index, bytes_per_pixel, rc;
823 unsigned char rv, gv, bv;
824 static unsigned char *Y, *U, *V;
826 frame = usbvision->curFrame;
827 imageSize = frame->frmwidth * frame->frmheight;
828 if ( (frame->v4l2_format.format == V4L2_PIX_FMT_YUV422P) ||
829 (frame->v4l2_format.format == V4L2_PIX_FMT_YVU420) ) { // this is a planar format
830 //... v4l2_linesize not used here.
831 f = frame->data + (frame->width * frame->curline);
833 f = frame->data + (frame->v4l2_linesize * frame->curline);
835 if (frame->v4l2_format.format == V4L2_PIX_FMT_YUYV){ //initialise u and v pointers
836 // get base of u and b planes add halfoffset
840 + (frame->frmwidth >>1) * frame->curline ;
841 v = u + (imageSize >>1 );
843 } else if (frame->v4l2_format.format == V4L2_PIX_FMT_YVU420){
845 v = frame->data + imageSize + ((frame->curline* (frame->width))>>2) ;
846 u = v + (imageSize >>2) ;
849 if (frame->curline == 0) {
850 usbvision_adjust_compression(usbvision);
853 if (scratch_len(usbvision) < USBVISION_STRIP_HEADER_LEN) {
854 return ParseState_Out;
857 //get strip header without changing the scratch_read_ptr
858 scratch_set_extra_ptr(usbvision, &StripPtr, 0);
859 scratch_get_extra(usbvision, &StripHeader[0], &StripPtr,
860 USBVISION_STRIP_HEADER_LEN);
862 if (StripHeader[0] != USBVISION_STRIP_MAGIC) {
864 usbvision->stripMagicErrors++;
865 return ParseState_NextFrame;
868 if (frame->curline != (int)StripHeader[2]) {
869 //line number missmatch error
870 usbvision->stripLineNumberErrors++;
873 StripLen = 2 * (unsigned int)StripHeader[1];
874 if (StripLen > USBVISION_STRIP_LEN_MAX) {
876 // I think this never happens
877 usbvision_request_intra(usbvision);
880 if (scratch_len(usbvision) < StripLen) {
881 //there is not enough data for the strip
882 return ParseState_Out;
885 if (usbvision->IntraFrameBuffer) {
886 Y = usbvision->IntraFrameBuffer + frame->frmwidth * frame->curline;
887 U = usbvision->IntraFrameBuffer + imageSize + (frame->frmwidth / 2) * (frame->curline / 2);
888 V = usbvision->IntraFrameBuffer + imageSize / 4 * 5 + (frame->frmwidth / 2) * (frame->curline / 2);
891 return ParseState_NextFrame;
894 bytes_per_pixel = frame->v4l2_format.bytes_per_pixel;
895 clipmask_index = frame->curline * MAX_FRAME_WIDTH;
897 scratch_get(usbvision, StripData, StripLen);
899 IdxEnd = frame->frmwidth;
900 BlockTypePos = USBVISION_STRIP_HEADER_LEN;
901 StartBlockPos = BlockTypePos + (IdxEnd - 1) / 96 + (IdxEnd / 2 - 1) / 96 + 2;
902 BlockPos = StartBlockPos;
904 usbvision->BlockPos = BlockPos;
906 if ((rc = usbvision_decompress(usbvision, StripData, Y, &BlockPos, &BlockTypePos, IdxEnd)) != IdxEnd) {
907 //return ParseState_Continue;
909 if (StripLen > usbvision->maxStripLen) {
910 usbvision->maxStripLen = StripLen;
913 if (frame->curline%2) {
914 if ((rc = usbvision_decompress(usbvision, StripData, V, &BlockPos, &BlockTypePos, IdxEnd/2)) != IdxEnd/2) {
915 //return ParseState_Continue;
919 if ((rc = usbvision_decompress(usbvision, StripData, U, &BlockPos, &BlockTypePos, IdxEnd/2)) != IdxEnd/2) {
920 //return ParseState_Continue;
924 if (BlockPos > usbvision->comprBlockPos) {
925 usbvision->comprBlockPos = BlockPos;
927 if (BlockPos > StripLen) {
928 usbvision->stripLenErrors++;
931 for (Idx = 0; Idx < IdxEnd; Idx++) {
932 if(frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
934 *f++ = Idx & 0x01 ? U[Idx/2] : V[Idx/2];
936 else if(frame->v4l2_format.format == V4L2_PIX_FMT_YUV422P) {
943 else if (frame->v4l2_format.format == V4L2_PIX_FMT_YVU420) {
945 if ( !(( Idx & 0x01 ) | ( frame->curline & 0x01 )) ){
947 /* only need do this for 1 in 4 pixels */
948 /* intraframe buffer is YUV420 format */
956 YUV_TO_RGB_BY_THE_BOOK(Y[Idx], U[Idx/2], V[Idx/2], rv, gv, bv);
957 switch (frame->v4l2_format.format) {
958 case V4L2_PIX_FMT_GREY:
961 case V4L2_PIX_FMT_RGB555:
964 *f++ = (0x03 & (gv >> 3)) |
967 case V4L2_PIX_FMT_RGB565:
970 *f++ = (0x07 & (gv >> 3)) |
973 case V4L2_PIX_FMT_RGB24:
978 case V4L2_PIX_FMT_RGB32:
988 /* Deal with non-integer no. of bytes for YUV420P */
989 if (frame->v4l2_format.format != V4L2_PIX_FMT_YVU420 )
990 *pcopylen += frame->v4l2_linesize;
992 *pcopylen += frame->curline & 0x01 ? frame->v4l2_linesize : frame->v4l2_linesize << 1;
996 if (frame->curline >= frame->frmheight) {
997 return ParseState_NextFrame;
1000 return ParseState_Continue;
1007 * usbvision_parse_lines_420()
1009 * Parse two lines from the scratch buffer, put
1010 * decoded RGB value into the current frame buffer and add the written
1011 * number of bytes (RGB) to the *pcopylen.
1014 static enum ParseState usbvision_parse_lines_420(struct usb_usbvision *usbvision,
1017 struct usbvision_frame *frame;
1018 unsigned char *f_even = NULL, *f_odd = NULL;
1019 unsigned int pixel_per_line, block;
1020 int pixel, block_split;
1021 int y_ptr, u_ptr, v_ptr, y_odd_offset;
1022 const int y_block_size = 128;
1023 const int uv_block_size = 64;
1024 const int sub_block_size = 32;
1025 const int y_step[] = { 0, 0, 0, 2 }, y_step_size = 4;
1026 const int uv_step[]= { 0, 0, 0, 4 }, uv_step_size = 4;
1027 unsigned char y[2], u, v; /* YUV components */
1028 int y_, u_, v_, vb, uvg, ur;
1029 int r_, g_, b_; /* RGB components */
1031 int clipmask_even_index, clipmask_odd_index, bytes_per_pixel;
1032 int clipmask_add, stretch_bytes;
1034 frame = usbvision->curFrame;
1035 f_even = frame->data + (frame->v4l2_linesize * frame->curline);
1036 f_odd = f_even + frame->v4l2_linesize * usbvision->stretch_height;
1038 /* Make sure there's enough data for the entire line */
1039 /* In this mode usbvision transfer 3 bytes for every 2 pixels */
1040 /* I need two lines to decode the color */
1041 bytes_per_pixel = frame->v4l2_format.bytes_per_pixel;
1042 stretch_bytes = (usbvision->stretch_width - 1) * bytes_per_pixel;
1043 clipmask_even_index = frame->curline * MAX_FRAME_WIDTH;
1044 clipmask_odd_index = clipmask_even_index + MAX_FRAME_WIDTH;
1045 clipmask_add = usbvision->stretch_width;
1046 pixel_per_line = frame->isocHeader.frameWidth;
1048 if (scratch_len(usbvision) < (int)pixel_per_line * 3) {
1049 //printk(KERN_DEBUG "out of data, need %d\n", len);
1050 return ParseState_Out;
1053 if ((frame->curline + 1) >= frame->frmheight) {
1054 return ParseState_NextFrame;
1057 block_split = (pixel_per_line%y_block_size) ? 1 : 0; //are some blocks splitted into different lines?
1059 y_odd_offset = (pixel_per_line / y_block_size) * (y_block_size + uv_block_size)
1060 + block_split * uv_block_size;
1062 scratch_set_extra_ptr(usbvision, &y_ptr, y_odd_offset);
1063 scratch_set_extra_ptr(usbvision, &u_ptr, y_block_size);
1064 scratch_set_extra_ptr(usbvision, &v_ptr, y_odd_offset
1065 + (4 - block_split) * sub_block_size);
1067 for (block = 0; block < (pixel_per_line / sub_block_size);
1071 for (pixel = 0; pixel < sub_block_size; pixel +=2) {
1072 scratch_get(usbvision, &y[0], 2);
1073 scratch_get_extra(usbvision, &u, &u_ptr, 1);
1074 scratch_get_extra(usbvision, &v, &v_ptr, 1);
1076 //I don't use the YUV_TO_RGB macro for better performance
1080 uvg= -53281 * u_ - 25625 * v_;
1083 if(frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
1088 y_ = 76284 * (y[0] - 16);
1090 b_ = (y_ + vb) >> 16;
1091 g_ = (y_ + uvg)>> 16;
1092 r_ = (y_ + ur) >> 16;
1094 switch (frame->v4l2_format.format) {
1095 case V4L2_PIX_FMT_RGB565:
1098 (0x1F & LIMIT_RGB(r_)) |
1102 (0xF8 & LIMIT_RGB(b_));
1104 case V4L2_PIX_FMT_RGB24:
1105 *f_even++ = LIMIT_RGB(r_);
1106 *f_even++ = LIMIT_RGB(g_);
1107 *f_even++ = LIMIT_RGB(b_);
1109 case V4L2_PIX_FMT_RGB32:
1110 *f_even++ = LIMIT_RGB(r_);
1111 *f_even++ = LIMIT_RGB(g_);
1112 *f_even++ = LIMIT_RGB(b_);
1115 case V4L2_PIX_FMT_RGB555:
1117 *f_even++ = (0x1F & LIMIT_RGB(r_)) |
1119 *f_even++ = (0x03 & (g >> 3)) |
1120 (0x7C & (LIMIT_RGB(b_) << 2));
1124 clipmask_even_index += clipmask_add;
1125 f_even += stretch_bytes;
1127 if(frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
1132 y_ = 76284 * (y[1] - 16);
1134 b_ = (y_ + vb) >> 16;
1135 g_ = (y_ + uvg)>> 16;
1136 r_ = (y_ + ur) >> 16;
1138 switch (frame->v4l2_format.format) {
1139 case V4L2_PIX_FMT_RGB565:
1142 (0x1F & LIMIT_RGB(r_)) |
1146 (0xF8 & LIMIT_RGB(b_));
1148 case V4L2_PIX_FMT_RGB24:
1149 *f_even++ = LIMIT_RGB(r_);
1150 *f_even++ = LIMIT_RGB(g_);
1151 *f_even++ = LIMIT_RGB(b_);
1153 case V4L2_PIX_FMT_RGB32:
1154 *f_even++ = LIMIT_RGB(r_);
1155 *f_even++ = LIMIT_RGB(g_);
1156 *f_even++ = LIMIT_RGB(b_);
1159 case V4L2_PIX_FMT_RGB555:
1161 *f_even++ = (0x1F & LIMIT_RGB(r_)) |
1163 *f_even++ = (0x03 & (g >> 3)) |
1164 (0x7C & (LIMIT_RGB(b_) << 2));
1168 clipmask_even_index += clipmask_add;
1169 f_even += stretch_bytes;
1171 scratch_get_extra(usbvision, &y[0], &y_ptr, 2);
1173 if(frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
1178 y_ = 76284 * (y[0] - 16);
1180 b_ = (y_ + vb) >> 16;
1181 g_ = (y_ + uvg)>> 16;
1182 r_ = (y_ + ur) >> 16;
1184 switch (frame->v4l2_format.format) {
1185 case V4L2_PIX_FMT_RGB565:
1188 (0x1F & LIMIT_RGB(r_)) |
1192 (0xF8 & LIMIT_RGB(b_));
1194 case V4L2_PIX_FMT_RGB24:
1195 *f_odd++ = LIMIT_RGB(r_);
1196 *f_odd++ = LIMIT_RGB(g_);
1197 *f_odd++ = LIMIT_RGB(b_);
1199 case V4L2_PIX_FMT_RGB32:
1200 *f_odd++ = LIMIT_RGB(r_);
1201 *f_odd++ = LIMIT_RGB(g_);
1202 *f_odd++ = LIMIT_RGB(b_);
1205 case V4L2_PIX_FMT_RGB555:
1207 *f_odd++ = (0x1F & LIMIT_RGB(r_)) |
1209 *f_odd++ = (0x03 & (g >> 3)) |
1210 (0x7C & (LIMIT_RGB(b_) << 2));
1214 clipmask_odd_index += clipmask_add;
1215 f_odd += stretch_bytes;
1217 if(frame->v4l2_format.format == V4L2_PIX_FMT_YUYV) {
1222 y_ = 76284 * (y[1] - 16);
1224 b_ = (y_ + vb) >> 16;
1225 g_ = (y_ + uvg)>> 16;
1226 r_ = (y_ + ur) >> 16;
1228 switch (frame->v4l2_format.format) {
1229 case V4L2_PIX_FMT_RGB565:
1232 (0x1F & LIMIT_RGB(r_)) |
1236 (0xF8 & LIMIT_RGB(b_));
1238 case V4L2_PIX_FMT_RGB24:
1239 *f_odd++ = LIMIT_RGB(r_);
1240 *f_odd++ = LIMIT_RGB(g_);
1241 *f_odd++ = LIMIT_RGB(b_);
1243 case V4L2_PIX_FMT_RGB32:
1244 *f_odd++ = LIMIT_RGB(r_);
1245 *f_odd++ = LIMIT_RGB(g_);
1246 *f_odd++ = LIMIT_RGB(b_);
1249 case V4L2_PIX_FMT_RGB555:
1251 *f_odd++ = (0x1F & LIMIT_RGB(r_)) |
1253 *f_odd++ = (0x03 & (g >> 3)) |
1254 (0x7C & (LIMIT_RGB(b_) << 2));
1258 clipmask_odd_index += clipmask_add;
1259 f_odd += stretch_bytes;
1262 scratch_rm_old(usbvision,y_step[block % y_step_size] * sub_block_size);
1263 scratch_inc_extra_ptr(&y_ptr, y_step[(block + 2 * block_split) % y_step_size]
1265 scratch_inc_extra_ptr(&u_ptr, uv_step[block % uv_step_size]
1267 scratch_inc_extra_ptr(&v_ptr, uv_step[(block + 2 * block_split) % uv_step_size]
1271 scratch_rm_old(usbvision, pixel_per_line * 3 / 2
1272 + block_split * sub_block_size);
1274 frame->curline += 2 * usbvision->stretch_height;
1275 *pcopylen += frame->v4l2_linesize * 2 * usbvision->stretch_height;
1277 if (frame->curline >= frame->frmheight)
1278 return ParseState_NextFrame;
1280 return ParseState_Continue;
1284 * usbvision_parse_data()
1286 * Generic routine to parse the scratch buffer. It employs either
1287 * usbvision_find_header() or usbvision_parse_lines() to do most
1291 static void usbvision_parse_data(struct usb_usbvision *usbvision)
1293 struct usbvision_frame *frame;
1294 enum ParseState newstate;
1296 unsigned long lock_flags;
1298 frame = usbvision->curFrame;
1300 PDEBUG(DBG_PARSE, "parsing len=%d\n", scratch_len(usbvision));
1304 newstate = ParseState_Out;
1305 if (scratch_len(usbvision)) {
1306 if (frame->scanstate == ScanState_Scanning) {
1307 newstate = usbvision_find_header(usbvision);
1309 else if (frame->scanstate == ScanState_Lines) {
1310 if (usbvision->isocMode == ISOC_MODE_YUV420) {
1311 newstate = usbvision_parse_lines_420(usbvision, ©len);
1313 else if (usbvision->isocMode == ISOC_MODE_YUV422) {
1314 newstate = usbvision_parse_lines_422(usbvision, ©len);
1316 else if (usbvision->isocMode == ISOC_MODE_COMPRESS) {
1317 newstate = usbvision_parse_compress(usbvision, ©len);
1322 if (newstate == ParseState_Continue) {
1325 else if ((newstate == ParseState_NextFrame) || (newstate == ParseState_Out)) {
1329 return; /* ParseState_EndParse */
1333 if (newstate == ParseState_NextFrame) {
1334 frame->grabstate = FrameState_Done;
1335 do_gettimeofday(&(frame->timestamp));
1336 frame->sequence = usbvision->frame_num;
1338 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1339 list_move_tail(&(frame->frame), &usbvision->outqueue);
1340 usbvision->curFrame = NULL;
1341 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1343 usbvision->frame_num++;
1345 /* This will cause the process to request another frame. */
1346 if (waitqueue_active(&usbvision->wait_frame)) {
1347 PDEBUG(DBG_PARSE, "Wake up !");
1348 wake_up_interruptible(&usbvision->wait_frame);
1352 frame->grabstate = FrameState_Grabbing;
1355 /* Update the frame's uncompressed length. */
1356 frame->scanlength += copylen;
1361 * Make all of the blocks of data contiguous
1363 static int usbvision_compress_isochronous(struct usb_usbvision *usbvision,
1366 unsigned char *packet_data;
1369 for (i = 0; i < urb->number_of_packets; i++) {
1370 int packet_len = urb->iso_frame_desc[i].actual_length;
1371 int packet_stat = urb->iso_frame_desc[i].status;
1373 packet_data = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
1375 /* Detect and ignore errored packets */
1376 if (packet_stat) { // packet_stat != 0 ?????????????
1377 PDEBUG(DBG_ISOC, "data error: [%d] len=%d, status=%X", i, packet_len, packet_stat);
1378 usbvision->isocErrCount++;
1382 /* Detect and ignore empty packets */
1383 if (packet_len < 0) {
1384 PDEBUG(DBG_ISOC, "error packet [%d]", i);
1385 usbvision->isocSkipCount++;
1388 else if (packet_len == 0) { /* Frame end ????? */
1389 PDEBUG(DBG_ISOC, "null packet [%d]", i);
1390 usbvision->isocstate=IsocState_NoFrame;
1391 usbvision->isocSkipCount++;
1394 else if (packet_len > usbvision->isocPacketSize) {
1395 PDEBUG(DBG_ISOC, "packet[%d] > isocPacketSize", i);
1396 usbvision->isocSkipCount++;
1400 PDEBUG(DBG_ISOC, "packet ok [%d] len=%d", i, packet_len);
1402 if (usbvision->isocstate==IsocState_NoFrame) { //new frame begins
1403 usbvision->isocstate=IsocState_InFrame;
1404 scratch_mark_header(usbvision);
1405 usbvision_measure_bandwidth(usbvision);
1406 PDEBUG(DBG_ISOC, "packet with header");
1410 * If usbvision continues to feed us with data but there is no
1411 * consumption (if, for example, V4L client fell asleep) we
1412 * may overflow the buffer. We have to move old data over to
1413 * free room for new data. This is bad for old data. If we
1414 * just drop new data then it's bad for new data... choose
1415 * your favorite evil here.
1417 if (scratch_free(usbvision) < packet_len) {
1419 usbvision->scratch_ovf_count++;
1420 PDEBUG(DBG_ISOC, "scratch buf overflow! scr_len: %d, n: %d",
1421 scratch_len(usbvision), packet_len);
1422 scratch_rm_old(usbvision, packet_len - scratch_free(usbvision));
1425 /* Now we know that there is enough room in scratch buffer */
1426 scratch_put(usbvision, packet_data, packet_len);
1427 totlen += packet_len;
1428 usbvision->isocDataCount += packet_len;
1429 usbvision->isocPacketCount++;
1435 printk(KERN_DEBUG "+%d.\n", usbvision->scratchlen);
1436 usbvision_hexdump(data0, (totlen > 64) ? 64 : totlen);
1444 static void usbvision_isocIrq(struct urb *urb)
1448 struct usb_usbvision *usbvision = urb->context;
1450 unsigned long startTime = jiffies;
1451 struct usbvision_frame **f;
1453 /* We don't want to do anything if we are about to be removed! */
1454 if (!USBVISION_IS_OPERATIONAL(usbvision))
1457 /* any urb with wrong status is ignored without acknowledgement */
1458 if (urb->status == -ENOENT) {
1462 f = &usbvision->curFrame;
1464 /* Manage streaming interruption */
1465 if (usbvision->streaming == Stream_Interrupt) {
1466 usbvision->streaming = Stream_Idle;
1468 (*f)->grabstate = FrameState_Ready;
1469 (*f)->scanstate = ScanState_Scanning;
1471 PDEBUG(DBG_IRQ, "stream interrupted");
1472 wake_up_interruptible(&usbvision->wait_stream);
1475 /* Copy the data received into our scratch buffer */
1476 len = usbvision_compress_isochronous(usbvision, urb);
1478 usbvision->isocUrbCount++;
1479 usbvision->urb_length = len;
1481 if (usbvision->streaming == Stream_On) {
1483 /* If we collected enough data let's parse! */
1484 if ((scratch_len(usbvision) > USBVISION_HEADER_LENGTH) &&
1485 (!list_empty(&(usbvision->inqueue))) ) {
1487 (*f) = list_entry(usbvision->inqueue.next,
1488 struct usbvision_frame,
1491 usbvision_parse_data(usbvision);
1494 /*If we don't have a frame
1495 we're current working on, complain */
1497 "received data, but no one needs it");
1498 scratch_reset(usbvision);
1502 PDEBUG(DBG_IRQ, "received data, but no one needs it");
1503 scratch_reset(usbvision);
1506 usbvision->timeInIrq += jiffies - startTime;
1508 for (i = 0; i < USBVISION_URB_FRAMES; i++) {
1509 urb->iso_frame_desc[i].status = 0;
1510 urb->iso_frame_desc[i].actual_length = 0;
1514 urb->dev = usbvision->dev;
1515 errCode = usb_submit_urb (urb, GFP_ATOMIC);
1518 dev_err(&usbvision->dev->dev,
1519 "%s: usb_submit_urb failed: error %d\n",
1526 /*************************************/
1527 /* Low level usbvision access functions */
1528 /*************************************/
1531 * usbvision_read_reg()
1533 * return < 0 -> Error
1537 int usbvision_read_reg(struct usb_usbvision *usbvision, unsigned char reg)
1540 unsigned char buffer[1];
1542 if (!USBVISION_IS_OPERATIONAL(usbvision))
1545 errCode = usb_control_msg(usbvision->dev, usb_rcvctrlpipe(usbvision->dev, 1),
1547 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT,
1548 0, (__u16) reg, buffer, 1, HZ);
1551 dev_err(&usbvision->dev->dev,
1552 "%s: failed: error %d\n", __func__, errCode);
1559 * usbvision_write_reg()
1561 * return 1 -> Reg written
1562 * 0 -> usbvision is not yet ready
1563 * -1 -> Something went wrong
1566 int usbvision_write_reg(struct usb_usbvision *usbvision, unsigned char reg,
1567 unsigned char value)
1571 if (!USBVISION_IS_OPERATIONAL(usbvision))
1574 errCode = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
1576 USB_DIR_OUT | USB_TYPE_VENDOR |
1577 USB_RECIP_ENDPOINT, 0, (__u16) reg, &value, 1, HZ);
1580 dev_err(&usbvision->dev->dev,
1581 "%s: failed: error %d\n", __func__, errCode);
1587 static void usbvision_ctrlUrb_complete(struct urb *urb)
1589 struct usb_usbvision *usbvision = (struct usb_usbvision *)urb->context;
1591 PDEBUG(DBG_IRQ, "");
1592 usbvision->ctrlUrbBusy = 0;
1593 if (waitqueue_active(&usbvision->ctrlUrb_wq)) {
1594 wake_up_interruptible(&usbvision->ctrlUrb_wq);
1599 static int usbvision_write_reg_irq(struct usb_usbvision *usbvision,int address,
1600 unsigned char *data, int len)
1604 PDEBUG(DBG_IRQ, "");
1608 if (usbvision->ctrlUrbBusy) {
1611 usbvision->ctrlUrbBusy = 1;
1613 usbvision->ctrlUrbSetup.bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT;
1614 usbvision->ctrlUrbSetup.bRequest = USBVISION_OP_CODE;
1615 usbvision->ctrlUrbSetup.wValue = 0;
1616 usbvision->ctrlUrbSetup.wIndex = cpu_to_le16(address);
1617 usbvision->ctrlUrbSetup.wLength = cpu_to_le16(len);
1618 usb_fill_control_urb (usbvision->ctrlUrb, usbvision->dev,
1619 usb_sndctrlpipe(usbvision->dev, 1),
1620 (unsigned char *)&usbvision->ctrlUrbSetup,
1621 (void *)usbvision->ctrlUrbBuffer, len,
1622 usbvision_ctrlUrb_complete,
1625 memcpy(usbvision->ctrlUrbBuffer, data, len);
1627 errCode = usb_submit_urb(usbvision->ctrlUrb, GFP_ATOMIC);
1629 // error in usb_submit_urb()
1630 usbvision->ctrlUrbBusy = 0;
1632 PDEBUG(DBG_IRQ, "submit %d byte: error %d", len, errCode);
1637 static int usbvision_init_compression(struct usb_usbvision *usbvision)
1641 usbvision->lastIsocFrameNum = -1;
1642 usbvision->isocDataCount = 0;
1643 usbvision->isocPacketCount = 0;
1644 usbvision->isocSkipCount = 0;
1645 usbvision->comprLevel = 50;
1646 usbvision->lastComprLevel = -1;
1647 usbvision->isocUrbCount = 0;
1648 usbvision->requestIntra = 1;
1649 usbvision->isocMeasureBandwidthCount = 0;
1654 /* this function measures the used bandwidth since last call
1655 * return: 0 : no error
1656 * sets usedBandwidth to 1-100 : 1-100% of full bandwidth resp. to isocPacketSize
1658 static int usbvision_measure_bandwidth (struct usb_usbvision *usbvision)
1662 if (usbvision->isocMeasureBandwidthCount < 2) { // this gives an average bandwidth of 3 frames
1663 usbvision->isocMeasureBandwidthCount++;
1666 if ((usbvision->isocPacketSize > 0) && (usbvision->isocPacketCount > 0)) {
1667 usbvision->usedBandwidth = usbvision->isocDataCount /
1668 (usbvision->isocPacketCount + usbvision->isocSkipCount) *
1669 100 / usbvision->isocPacketSize;
1671 usbvision->isocMeasureBandwidthCount = 0;
1672 usbvision->isocDataCount = 0;
1673 usbvision->isocPacketCount = 0;
1674 usbvision->isocSkipCount = 0;
1678 static int usbvision_adjust_compression (struct usb_usbvision *usbvision)
1681 unsigned char buffer[6];
1683 PDEBUG(DBG_IRQ, "");
1684 if ((adjustCompression) && (usbvision->usedBandwidth > 0)) {
1685 usbvision->comprLevel += (usbvision->usedBandwidth - 90) / 2;
1686 RESTRICT_TO_RANGE(usbvision->comprLevel, 0, 100);
1687 if (usbvision->comprLevel != usbvision->lastComprLevel) {
1689 if (usbvision->bridgeType == BRIDGE_NT1004 || usbvision->bridgeType == BRIDGE_NT1005) {
1690 buffer[0] = (unsigned char)(4 + 16 * usbvision->comprLevel / 100); // PCM Threshold 1
1691 buffer[1] = (unsigned char)(4 + 8 * usbvision->comprLevel / 100); // PCM Threshold 2
1692 distorsion = 7 + 248 * usbvision->comprLevel / 100;
1693 buffer[2] = (unsigned char)(distorsion & 0xFF); // Average distorsion Threshold (inter)
1694 buffer[3] = (unsigned char)(distorsion & 0xFF); // Average distorsion Threshold (intra)
1695 distorsion = 1 + 42 * usbvision->comprLevel / 100;
1696 buffer[4] = (unsigned char)(distorsion & 0xFF); // Maximum distorsion Threshold (inter)
1697 buffer[5] = (unsigned char)(distorsion & 0xFF); // Maximum distorsion Threshold (intra)
1699 else { //BRIDGE_NT1003
1700 buffer[0] = (unsigned char)(4 + 16 * usbvision->comprLevel / 100); // PCM threshold 1
1701 buffer[1] = (unsigned char)(4 + 8 * usbvision->comprLevel / 100); // PCM threshold 2
1702 distorsion = 2 + 253 * usbvision->comprLevel / 100;
1703 buffer[2] = (unsigned char)(distorsion & 0xFF); // distorsion threshold bit0-7
1704 buffer[3] = 0; //(unsigned char)((distorsion >> 8) & 0x0F); // distorsion threshold bit 8-11
1705 distorsion = 0 + 43 * usbvision->comprLevel / 100;
1706 buffer[4] = (unsigned char)(distorsion & 0xFF); // maximum distorsion bit0-7
1707 buffer[5] = 0; //(unsigned char)((distorsion >> 8) & 0x01); // maximum distorsion bit 8
1709 errCode = usbvision_write_reg_irq(usbvision, USBVISION_PCM_THR1, buffer, 6);
1711 PDEBUG(DBG_IRQ, "new compr params %#02x %#02x %#02x %#02x %#02x %#02x", buffer[0],
1712 buffer[1], buffer[2], buffer[3], buffer[4], buffer[5]);
1713 usbvision->lastComprLevel = usbvision->comprLevel;
1720 static int usbvision_request_intra (struct usb_usbvision *usbvision)
1723 unsigned char buffer[1];
1725 PDEBUG(DBG_IRQ, "");
1726 usbvision->requestIntra = 1;
1728 usbvision_write_reg_irq(usbvision, USBVISION_FORCE_INTRA, buffer, 1);
1732 static int usbvision_unrequest_intra (struct usb_usbvision *usbvision)
1735 unsigned char buffer[1];
1737 PDEBUG(DBG_IRQ, "");
1738 usbvision->requestIntra = 0;
1740 usbvision_write_reg_irq(usbvision, USBVISION_FORCE_INTRA, buffer, 1);
1744 /*******************************
1745 * usbvision utility functions
1746 *******************************/
1748 int usbvision_power_off(struct usb_usbvision *usbvision)
1752 PDEBUG(DBG_FUNC, "");
1754 errCode = usbvision_write_reg(usbvision, USBVISION_PWR_REG, USBVISION_SSPND_EN);
1756 usbvision->power = 0;
1758 PDEBUG(DBG_FUNC, "%s: errCode %d", (errCode!=1)?"ERROR":"power is off", errCode);
1763 * usbvision_set_video_format()
1766 static int usbvision_set_video_format(struct usb_usbvision *usbvision, int format)
1768 static const char proc[] = "usbvision_set_video_format";
1770 unsigned char value[2];
1772 if (!USBVISION_IS_OPERATIONAL(usbvision))
1775 PDEBUG(DBG_FUNC, "isocMode %#02x", format);
1777 if ((format != ISOC_MODE_YUV422)
1778 && (format != ISOC_MODE_YUV420)
1779 && (format != ISOC_MODE_COMPRESS)) {
1780 printk(KERN_ERR "usbvision: unknown video format %02x, using default YUV420",
1782 format = ISOC_MODE_YUV420;
1784 value[0] = 0x0A; //TODO: See the effect of the filter
1785 value[1] = format; // Sets the VO_MODE register which follows FILT_CONT
1786 rc = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
1788 USB_DIR_OUT | USB_TYPE_VENDOR |
1789 USB_RECIP_ENDPOINT, 0,
1790 (__u16) USBVISION_FILT_CONT, value, 2, HZ);
1793 printk(KERN_ERR "%s: ERROR=%d. USBVISION stopped - "
1794 "reconnect or reload driver.\n", proc, rc);
1796 usbvision->isocMode = format;
1801 * usbvision_set_output()
1805 int usbvision_set_output(struct usb_usbvision *usbvision, int width,
1809 int UsbWidth, UsbHeight;
1810 unsigned int frameRate=0, frameDrop=0;
1811 unsigned char value[4];
1813 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
1817 if (width > MAX_USB_WIDTH) {
1818 UsbWidth = width / 2;
1819 usbvision->stretch_width = 2;
1823 usbvision->stretch_width = 1;
1826 if (height > MAX_USB_HEIGHT) {
1827 UsbHeight = height / 2;
1828 usbvision->stretch_height = 2;
1832 usbvision->stretch_height = 1;
1835 RESTRICT_TO_RANGE(UsbWidth, MIN_FRAME_WIDTH, MAX_USB_WIDTH);
1836 UsbWidth &= ~(MIN_FRAME_WIDTH-1);
1837 RESTRICT_TO_RANGE(UsbHeight, MIN_FRAME_HEIGHT, MAX_USB_HEIGHT);
1840 PDEBUG(DBG_FUNC, "usb %dx%d; screen %dx%d; stretch %dx%d",
1841 UsbWidth, UsbHeight, width, height,
1842 usbvision->stretch_width, usbvision->stretch_height);
1844 /* I'll not rewrite the same values */
1845 if ((UsbWidth != usbvision->curwidth) || (UsbHeight != usbvision->curheight)) {
1846 value[0] = UsbWidth & 0xff; //LSB
1847 value[1] = (UsbWidth >> 8) & 0x03; //MSB
1848 value[2] = UsbHeight & 0xff; //LSB
1849 value[3] = (UsbHeight >> 8) & 0x03; //MSB
1851 errCode = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
1853 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT,
1854 0, (__u16) USBVISION_LXSIZE_O, value, 4, HZ);
1857 dev_err(&usbvision->dev->dev,
1858 "%s failed: error %d\n", __func__, errCode);
1861 usbvision->curwidth = usbvision->stretch_width * UsbWidth;
1862 usbvision->curheight = usbvision->stretch_height * UsbHeight;
1865 if (usbvision->isocMode == ISOC_MODE_YUV422) {
1866 frameRate = (usbvision->isocPacketSize * 1000) / (UsbWidth * UsbHeight * 2);
1868 else if (usbvision->isocMode == ISOC_MODE_YUV420) {
1869 frameRate = (usbvision->isocPacketSize * 1000) / ((UsbWidth * UsbHeight * 12) / 8);
1872 frameRate = FRAMERATE_MAX;
1875 if (usbvision->tvnormId & V4L2_STD_625_50) {
1876 frameDrop = frameRate * 32 / 25 - 1;
1878 else if (usbvision->tvnormId & V4L2_STD_525_60) {
1879 frameDrop = frameRate * 32 / 30 - 1;
1882 RESTRICT_TO_RANGE(frameDrop, FRAMERATE_MIN, FRAMERATE_MAX);
1884 PDEBUG(DBG_FUNC, "frameRate %d fps, frameDrop %d", frameRate, frameDrop);
1886 frameDrop = FRAMERATE_MAX; // We can allow the maximum here, because dropping is controlled
1888 /* frameDrop = 7; => framePhase = 1, 5, 9, 13, 17, 21, 25, 0, 4, 8, ...
1890 => frameRate = (7 + 1) * 25 / 32 = 200 / 32 = 6.25;
1892 frameDrop = 9; => framePhase = 1, 5, 8, 11, 14, 17, 21, 24, 27, 1, 4, 8, ...
1893 => frameSkip = 4, 3, 3, 3, 3, 4, 3, 3, 3, 3, 4, ...
1894 => frameRate = (9 + 1) * 25 / 32 = 250 / 32 = 7.8125;
1896 errCode = usbvision_write_reg(usbvision, USBVISION_FRM_RATE, frameDrop);
1902 * usbvision_frames_alloc
1903 * allocate the required frames
1905 int usbvision_frames_alloc(struct usb_usbvision *usbvision, int number_of_frames)
1909 /*needs to be page aligned cause the buffers can be mapped individually! */
1910 usbvision->max_frame_size = PAGE_ALIGN(usbvision->curwidth *
1911 usbvision->curheight *
1912 usbvision->palette.bytes_per_pixel);
1914 /* Try to do my best to allocate the frames the user want in the remaining memory */
1915 usbvision->num_frames = number_of_frames;
1916 while (usbvision->num_frames > 0) {
1917 usbvision->fbuf_size = usbvision->num_frames * usbvision->max_frame_size;
1918 if((usbvision->fbuf = usbvision_rvmalloc(usbvision->fbuf_size))) {
1921 usbvision->num_frames--;
1924 spin_lock_init(&usbvision->queue_lock);
1925 init_waitqueue_head(&usbvision->wait_frame);
1926 init_waitqueue_head(&usbvision->wait_stream);
1928 /* Allocate all buffers */
1929 for (i = 0; i < usbvision->num_frames; i++) {
1930 usbvision->frame[i].index = i;
1931 usbvision->frame[i].grabstate = FrameState_Unused;
1932 usbvision->frame[i].data = usbvision->fbuf +
1933 i * usbvision->max_frame_size;
1935 * Set default sizes for read operation.
1937 usbvision->stretch_width = 1;
1938 usbvision->stretch_height = 1;
1939 usbvision->frame[i].width = usbvision->curwidth;
1940 usbvision->frame[i].height = usbvision->curheight;
1941 usbvision->frame[i].bytes_read = 0;
1943 PDEBUG(DBG_FUNC, "allocated %d frames (%d bytes per frame)",usbvision->num_frames,usbvision->max_frame_size);
1944 return usbvision->num_frames;
1948 * usbvision_frames_free
1949 * frees memory allocated for the frames
1951 void usbvision_frames_free(struct usb_usbvision *usbvision)
1953 /* Have to free all that memory */
1954 PDEBUG(DBG_FUNC, "free %d frames",usbvision->num_frames);
1956 if (usbvision->fbuf != NULL) {
1957 usbvision_rvfree(usbvision->fbuf, usbvision->fbuf_size);
1958 usbvision->fbuf = NULL;
1960 usbvision->num_frames = 0;
1964 * usbvision_empty_framequeues()
1965 * prepare queues for incoming and outgoing frames
1967 void usbvision_empty_framequeues(struct usb_usbvision *usbvision)
1971 INIT_LIST_HEAD(&(usbvision->inqueue));
1972 INIT_LIST_HEAD(&(usbvision->outqueue));
1974 for (i = 0; i < USBVISION_NUMFRAMES; i++) {
1975 usbvision->frame[i].grabstate = FrameState_Unused;
1976 usbvision->frame[i].bytes_read = 0;
1981 * usbvision_stream_interrupt()
1984 int usbvision_stream_interrupt(struct usb_usbvision *usbvision)
1988 /* stop reading from the device */
1990 usbvision->streaming = Stream_Interrupt;
1991 ret = wait_event_timeout(usbvision->wait_stream,
1992 (usbvision->streaming == Stream_Idle),
1993 msecs_to_jiffies(USBVISION_NUMSBUF*USBVISION_URB_FRAMES));
1998 * usbvision_set_compress_params()
2002 static int usbvision_set_compress_params(struct usb_usbvision *usbvision)
2004 static const char proc[] = "usbvision_set_compresion_params: ";
2006 unsigned char value[6];
2008 value[0] = 0x0F; // Intra-Compression cycle
2009 value[1] = 0x01; // Reg.45 one line per strip
2010 value[2] = 0x00; // Reg.46 Force intra mode on all new frames
2011 value[3] = 0x00; // Reg.47 FORCE_UP <- 0 normal operation (not force)
2012 value[4] = 0xA2; // Reg.48 BUF_THR I'm not sure if this does something in not compressed mode.
2013 value[5] = 0x00; // Reg.49 DVI_YUV This has nothing to do with compression
2015 //catched values for NT1004
2016 // value[0] = 0xFF; // Never apply intra mode automatically
2017 // value[1] = 0xF1; // Use full frame height for virtual strip width; One line per strip
2018 // value[2] = 0x01; // Force intra mode on all new frames
2019 // value[3] = 0x00; // Strip size 400 Bytes; do not force up
2020 // value[4] = 0xA2; //
2021 if (!USBVISION_IS_OPERATIONAL(usbvision))
2024 rc = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
2026 USB_DIR_OUT | USB_TYPE_VENDOR |
2027 USB_RECIP_ENDPOINT, 0,
2028 (__u16) USBVISION_INTRA_CYC, value, 5, HZ);
2031 printk(KERN_ERR "%sERROR=%d. USBVISION stopped - "
2032 "reconnect or reload driver.\n", proc, rc);
2036 if (usbvision->bridgeType == BRIDGE_NT1004) {
2037 value[0] = 20; // PCM Threshold 1
2038 value[1] = 12; // PCM Threshold 2
2039 value[2] = 255; // Distorsion Threshold inter
2040 value[3] = 255; // Distorsion Threshold intra
2041 value[4] = 43; // Max Distorsion inter
2042 value[5] = 43; // Max Distorsion intra
2045 value[0] = 20; // PCM Threshold 1
2046 value[1] = 12; // PCM Threshold 2
2047 value[2] = 255; // Distorsion Threshold d7-d0
2048 value[3] = 0; // Distorsion Threshold d11-d8
2049 value[4] = 43; // Max Distorsion d7-d0
2050 value[5] = 0; // Max Distorsion d8
2053 if (!USBVISION_IS_OPERATIONAL(usbvision))
2056 rc = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
2058 USB_DIR_OUT | USB_TYPE_VENDOR |
2059 USB_RECIP_ENDPOINT, 0,
2060 (__u16) USBVISION_PCM_THR1, value, 6, HZ);
2063 printk(KERN_ERR "%sERROR=%d. USBVISION stopped - "
2064 "reconnect or reload driver.\n", proc, rc);
2074 * usbvision_set_input()
2076 * Set the input (saa711x, ...) size x y and other misc input params
2077 * I've no idea if this parameters are right
2080 int usbvision_set_input(struct usb_usbvision *usbvision)
2082 static const char proc[] = "usbvision_set_input: ";
2084 unsigned char value[8];
2085 unsigned char dvi_yuv_value;
2087 if (!USBVISION_IS_OPERATIONAL(usbvision))
2090 /* Set input format expected from decoder*/
2091 if (usbvision_device_data[usbvision->DevModel].Vin_Reg1_override) {
2092 value[0] = usbvision_device_data[usbvision->DevModel].Vin_Reg1;
2093 } else if(usbvision_device_data[usbvision->DevModel].Codec == CODEC_SAA7113) {
2094 /* SAA7113 uses 8 bit output */
2095 value[0] = USBVISION_8_422_SYNC;
2097 /* I'm sure only about d2-d0 [010] 16 bit 4:2:2 usin sync pulses
2098 * as that is how saa7111 is configured */
2099 value[0] = USBVISION_16_422_SYNC;
2100 /* | USBVISION_VSNC_POL | USBVISION_VCLK_POL);*/
2103 rc = usbvision_write_reg(usbvision, USBVISION_VIN_REG1, value[0]);
2105 printk(KERN_ERR "%sERROR=%d. USBVISION stopped - "
2106 "reconnect or reload driver.\n", proc, rc);
2111 if (usbvision->tvnormId & V4L2_STD_PAL) {
2113 value[1] = 0x02; //0x02C0 -> 704 Input video line length
2115 value[3] = 0x01; //0x0120 -> 288 Input video n. of lines
2117 value[5] = 0x00; //0x0060 -> 96 Input video h offset
2119 value[7] = 0x00; //0x0016 -> 22 Input video v offset
2120 } else if (usbvision->tvnormId & V4L2_STD_SECAM) {
2122 value[1] = 0x02; //0x02C0 -> 704 Input video line length
2124 value[3] = 0x01; //0x0120 -> 288 Input video n. of lines
2126 value[5] = 0x00; //0x0001 -> 01 Input video h offset
2128 value[7] = 0x00; //0x0001 -> 01 Input video v offset
2129 } else { /* V4L2_STD_NTSC */
2131 value[1] = 0x02; //0x02D0 -> 720 Input video line length
2133 value[3] = 0x00; //0x00F0 -> 240 Input video number of lines
2135 value[5] = 0x00; //0x0050 -> 80 Input video h offset
2137 value[7] = 0x00; //0x0010 -> 16 Input video v offset
2140 if (usbvision_device_data[usbvision->DevModel].X_Offset >= 0) {
2141 value[4]=usbvision_device_data[usbvision->DevModel].X_Offset & 0xff;
2142 value[5]=(usbvision_device_data[usbvision->DevModel].X_Offset & 0x0300) >> 8;
2145 if (adjust_X_Offset != -1) {
2146 value[4] = adjust_X_Offset & 0xff;
2147 value[5] = (adjust_X_Offset & 0x0300) >> 8;
2150 if (usbvision_device_data[usbvision->DevModel].Y_Offset >= 0) {
2151 value[6]=usbvision_device_data[usbvision->DevModel].Y_Offset & 0xff;
2152 value[7]=(usbvision_device_data[usbvision->DevModel].Y_Offset & 0x0300) >> 8;
2155 if (adjust_Y_Offset != -1) {
2156 value[6] = adjust_Y_Offset & 0xff;
2157 value[7] = (adjust_Y_Offset & 0x0300) >> 8;
2160 rc = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
2161 USBVISION_OP_CODE, /* USBVISION specific code */
2162 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT, 0,
2163 (__u16) USBVISION_LXSIZE_I, value, 8, HZ);
2165 printk(KERN_ERR "%sERROR=%d. USBVISION stopped - "
2166 "reconnect or reload driver.\n", proc, rc);
2171 dvi_yuv_value = 0x00; /* U comes after V, Ya comes after U/V, Yb comes after Yb */
2173 if(usbvision_device_data[usbvision->DevModel].Dvi_yuv_override){
2174 dvi_yuv_value = usbvision_device_data[usbvision->DevModel].Dvi_yuv;
2176 else if(usbvision_device_data[usbvision->DevModel].Codec == CODEC_SAA7113) {
2177 /* This changes as the fine sync control changes. Further investigation necessary */
2178 dvi_yuv_value = 0x06;
2181 return (usbvision_write_reg(usbvision, USBVISION_DVI_YUV, dvi_yuv_value));
2186 * usbvision_set_dram_settings()
2188 * Set the buffer address needed by the usbvision dram to operate
2189 * This values has been taken with usbsnoop.
2193 static int usbvision_set_dram_settings(struct usb_usbvision *usbvision)
2196 unsigned char value[8];
2198 if (usbvision->isocMode == ISOC_MODE_COMPRESS) {
2207 // UR: 0x0E200-0x3FFFF = 204288 Words (1 Word = 2 Byte)
2208 // FDL: 0x00000-0x0E099 = 57498 Words
2209 // VDW: 0x0E3FF-0x3FFFF
2221 /* These are the values of the address of the video buffer,
2222 * they have to be loaded into the USBVISION_DRM_PRM1-8
2224 * Start address of video output buffer for read: drm_prm1-2 -> 0x00000
2225 * End address of video output buffer for read: drm_prm1-3 -> 0x1ffff
2226 * Start address of video frame delay buffer: drm_prm1-4 -> 0x20000
2227 * Only used in compressed mode
2228 * End address of video frame delay buffer: drm_prm1-5-6 -> 0x3ffff
2229 * Only used in compressed mode
2230 * Start address of video output buffer for write: drm_prm1-7 -> 0x00000
2231 * End address of video output buffer for write: drm_prm1-8 -> 0x1ffff
2234 if (!USBVISION_IS_OPERATIONAL(usbvision))
2237 rc = usb_control_msg(usbvision->dev, usb_sndctrlpipe(usbvision->dev, 1),
2238 USBVISION_OP_CODE, /* USBVISION specific code */
2239 USB_DIR_OUT | USB_TYPE_VENDOR |
2240 USB_RECIP_ENDPOINT, 0,
2241 (__u16) USBVISION_DRM_PRM1, value, 8, HZ);
2244 dev_err(&usbvision->dev->dev, "%sERROR=%d\n", __func__, rc);
2248 /* Restart the video buffer logic */
2249 if ((rc = usbvision_write_reg(usbvision, USBVISION_DRM_CONT, USBVISION_RES_UR |
2250 USBVISION_RES_FDL | USBVISION_RES_VDW)) < 0)
2252 rc = usbvision_write_reg(usbvision, USBVISION_DRM_CONT, 0x00);
2260 * Power on the device, enables suspend-resume logic
2261 * & reset the isoc End-Point
2265 int usbvision_power_on(struct usb_usbvision *usbvision)
2269 PDEBUG(DBG_FUNC, "");
2271 usbvision_write_reg(usbvision, USBVISION_PWR_REG, USBVISION_SSPND_EN);
2272 usbvision_write_reg(usbvision, USBVISION_PWR_REG,
2273 USBVISION_SSPND_EN | USBVISION_RES2);
2275 usbvision_write_reg(usbvision, USBVISION_PWR_REG,
2276 USBVISION_SSPND_EN | USBVISION_PWR_VID);
2277 errCode = usbvision_write_reg(usbvision, USBVISION_PWR_REG,
2278 USBVISION_SSPND_EN | USBVISION_PWR_VID | USBVISION_RES2);
2280 usbvision->power = 1;
2282 PDEBUG(DBG_FUNC, "%s: errCode %d", (errCode<0)?"ERROR":"power is on", errCode);
2288 * usbvision timer stuff
2291 // to call usbvision_power_off from task queue
2292 static void call_usbvision_power_off(struct work_struct *work)
2294 struct usb_usbvision *usbvision = container_of(work, struct usb_usbvision, powerOffWork);
2296 PDEBUG(DBG_FUNC, "");
2297 if(mutex_lock_interruptible(&usbvision->lock)) {
2302 if(usbvision->user == 0) {
2303 usbvision_i2c_unregister(usbvision);
2305 usbvision_power_off(usbvision);
2306 usbvision->initialized = 0;
2308 mutex_unlock(&usbvision->lock);
2311 static void usbvision_powerOffTimer(unsigned long data)
2313 struct usb_usbvision *usbvision = (void *) data;
2315 PDEBUG(DBG_FUNC, "");
2316 del_timer(&usbvision->powerOffTimer);
2317 INIT_WORK(&usbvision->powerOffWork, call_usbvision_power_off);
2318 (void) schedule_work(&usbvision->powerOffWork);
2321 void usbvision_init_powerOffTimer(struct usb_usbvision *usbvision)
2323 init_timer(&usbvision->powerOffTimer);
2324 usbvision->powerOffTimer.data = (long) usbvision;
2325 usbvision->powerOffTimer.function = usbvision_powerOffTimer;
2328 void usbvision_set_powerOffTimer(struct usb_usbvision *usbvision)
2330 mod_timer(&usbvision->powerOffTimer, jiffies + USBVISION_POWEROFF_TIME);
2333 void usbvision_reset_powerOffTimer(struct usb_usbvision *usbvision)
2335 if (timer_pending(&usbvision->powerOffTimer)) {
2336 del_timer(&usbvision->powerOffTimer);
2341 * usbvision_begin_streaming()
2342 * Sure you have to put bit 7 to 0, if not incoming frames are droped, but no
2343 * idea about the rest
2345 int usbvision_begin_streaming(struct usb_usbvision *usbvision)
2349 if (usbvision->isocMode == ISOC_MODE_COMPRESS) {
2350 usbvision_init_compression(usbvision);
2352 errCode = usbvision_write_reg(usbvision, USBVISION_VIN_REG2, USBVISION_NOHVALID |
2353 usbvision->Vin_Reg2_Preset);
2358 * usbvision_restart_isoc()
2359 * Not sure yet if touching here PWR_REG make loose the config
2362 int usbvision_restart_isoc(struct usb_usbvision *usbvision)
2368 usbvision_write_reg(usbvision, USBVISION_PWR_REG,
2369 USBVISION_SSPND_EN | USBVISION_PWR_VID)) < 0)
2373 usbvision_write_reg(usbvision, USBVISION_PWR_REG,
2374 USBVISION_SSPND_EN | USBVISION_PWR_VID |
2375 USBVISION_RES2)) < 0)
2379 usbvision_write_reg(usbvision, USBVISION_VIN_REG2,
2380 USBVISION_KEEP_BLANK | USBVISION_NOHVALID |
2381 usbvision->Vin_Reg2_Preset)) < 0) return ret;
2383 /* TODO: schedule timeout */
2384 while ((usbvision_read_reg(usbvision, USBVISION_STATUS_REG) & 0x01) != 1);
2389 int usbvision_audio_off(struct usb_usbvision *usbvision)
2391 if (usbvision_write_reg(usbvision, USBVISION_IOPIN_REG, USBVISION_AUDIO_MUTE) < 0) {
2392 printk(KERN_ERR "usbvision_audio_off: can't wirte reg\n");
2395 usbvision->AudioMute = 0;
2396 usbvision->AudioChannel = USBVISION_AUDIO_MUTE;
2400 int usbvision_set_audio(struct usb_usbvision *usbvision, int AudioChannel)
2402 if (!usbvision->AudioMute) {
2403 if (usbvision_write_reg(usbvision, USBVISION_IOPIN_REG, AudioChannel) < 0) {
2404 printk(KERN_ERR "usbvision_set_audio: can't write iopin register for audio switching\n");
2408 usbvision->AudioChannel = AudioChannel;
2412 int usbvision_setup(struct usb_usbvision *usbvision,int format)
2414 usbvision_set_video_format(usbvision, format);
2415 usbvision_set_dram_settings(usbvision);
2416 usbvision_set_compress_params(usbvision);
2417 usbvision_set_input(usbvision);
2418 usbvision_set_output(usbvision, MAX_USB_WIDTH, MAX_USB_HEIGHT);
2419 usbvision_restart_isoc(usbvision);
2422 return USBVISION_IS_OPERATIONAL(usbvision);
2425 int usbvision_set_alternate(struct usb_usbvision *dev)
2427 int errCode, prev_alt = dev->ifaceAlt;
2431 for(i=0;i< dev->num_alt; i++)
2432 if(dev->alt_max_pkt_size[i]>dev->alt_max_pkt_size[dev->ifaceAlt])
2435 if (dev->ifaceAlt != prev_alt) {
2436 dev->isocPacketSize = dev->alt_max_pkt_size[dev->ifaceAlt];
2437 PDEBUG(DBG_FUNC,"setting alternate %d with wMaxPacketSize=%u", dev->ifaceAlt,dev->isocPacketSize);
2438 errCode = usb_set_interface(dev->dev, dev->iface, dev->ifaceAlt);
2440 dev_err(&dev->dev->dev,
2441 "cannot change alternate number to %d (error=%i)\n",
2442 dev->ifaceAlt, errCode);
2447 PDEBUG(DBG_ISOC, "ISO Packet Length:%d", dev->isocPacketSize);
2453 * usbvision_init_isoc()
2456 int usbvision_init_isoc(struct usb_usbvision *usbvision)
2458 struct usb_device *dev = usbvision->dev;
2459 int bufIdx, errCode, regValue;
2462 if (!USBVISION_IS_OPERATIONAL(usbvision))
2465 usbvision->curFrame = NULL;
2466 scratch_reset(usbvision);
2468 /* Alternate interface 1 is is the biggest frame size */
2469 errCode = usbvision_set_alternate(usbvision);
2471 usbvision->last_error = errCode;
2474 sb_size = USBVISION_URB_FRAMES * usbvision->isocPacketSize;
2476 regValue = (16 - usbvision_read_reg(usbvision,
2477 USBVISION_ALTER_REG)) & 0x0F;
2479 usbvision->usb_bandwidth = regValue >> 1;
2480 PDEBUG(DBG_ISOC, "USB Bandwidth Usage: %dMbit/Sec",
2481 usbvision->usb_bandwidth);
2485 /* We double buffer the Iso lists */
2487 for (bufIdx = 0; bufIdx < USBVISION_NUMSBUF; bufIdx++) {
2491 urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
2493 dev_err(&usbvision->dev->dev,
2494 "%s: usb_alloc_urb() failed\n", __func__);
2497 usbvision->sbuf[bufIdx].urb = urb;
2498 usbvision->sbuf[bufIdx].data =
2499 usb_buffer_alloc(usbvision->dev,
2502 &urb->transfer_dma);
2504 urb->context = usbvision;
2505 urb->pipe = usb_rcvisocpipe(dev, usbvision->video_endp);
2506 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
2508 urb->transfer_buffer = usbvision->sbuf[bufIdx].data;
2509 urb->complete = usbvision_isocIrq;
2510 urb->number_of_packets = USBVISION_URB_FRAMES;
2511 urb->transfer_buffer_length =
2512 usbvision->isocPacketSize * USBVISION_URB_FRAMES;
2513 for (j = k = 0; j < USBVISION_URB_FRAMES; j++,
2514 k += usbvision->isocPacketSize) {
2515 urb->iso_frame_desc[j].offset = k;
2516 urb->iso_frame_desc[j].length =
2517 usbvision->isocPacketSize;
2521 /* Submit all URBs */
2522 for (bufIdx = 0; bufIdx < USBVISION_NUMSBUF; bufIdx++) {
2523 errCode = usb_submit_urb(usbvision->sbuf[bufIdx].urb,
2526 dev_err(&usbvision->dev->dev,
2527 "%s: usb_submit_urb(%d) failed: error %d\n",
2528 __func__, bufIdx, errCode);
2532 usbvision->streaming = Stream_Idle;
2533 PDEBUG(DBG_ISOC, "%s: streaming=1 usbvision->video_endp=$%02x",
2535 usbvision->video_endp);
2540 * usbvision_stop_isoc()
2542 * This procedure stops streaming and deallocates URBs. Then it
2543 * activates zero-bandwidth alt. setting of the video interface.
2546 void usbvision_stop_isoc(struct usb_usbvision *usbvision)
2548 int bufIdx, errCode, regValue;
2549 int sb_size = USBVISION_URB_FRAMES * usbvision->isocPacketSize;
2551 if ((usbvision->streaming == Stream_Off) || (usbvision->dev == NULL))
2554 /* Unschedule all of the iso td's */
2555 for (bufIdx = 0; bufIdx < USBVISION_NUMSBUF; bufIdx++) {
2556 usb_kill_urb(usbvision->sbuf[bufIdx].urb);
2557 if (usbvision->sbuf[bufIdx].data){
2558 usb_buffer_free(usbvision->dev,
2560 usbvision->sbuf[bufIdx].data,
2561 usbvision->sbuf[bufIdx].urb->transfer_dma);
2563 usb_free_urb(usbvision->sbuf[bufIdx].urb);
2564 usbvision->sbuf[bufIdx].urb = NULL;
2567 PDEBUG(DBG_ISOC, "%s: streaming=Stream_Off\n", __func__);
2568 usbvision->streaming = Stream_Off;
2570 if (!usbvision->remove_pending) {
2572 /* Set packet size to 0 */
2573 usbvision->ifaceAlt=0;
2574 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
2575 usbvision->ifaceAlt);
2577 dev_err(&usbvision->dev->dev,
2578 "%s: usb_set_interface() failed: error %d\n",
2580 usbvision->last_error = errCode;
2582 regValue = (16-usbvision_read_reg(usbvision, USBVISION_ALTER_REG)) & 0x0F;
2583 usbvision->isocPacketSize =
2584 (regValue == 0) ? 0 : (regValue * 64) - 1;
2585 PDEBUG(DBG_ISOC, "ISO Packet Length:%d",
2586 usbvision->isocPacketSize);
2588 usbvision->usb_bandwidth = regValue >> 1;
2589 PDEBUG(DBG_ISOC, "USB Bandwidth Usage: %dMbit/Sec",
2590 usbvision->usb_bandwidth);
2594 int usbvision_muxsel(struct usb_usbvision *usbvision, int channel)
2596 /* inputs #0 and #3 are constant for every SAA711x. */
2597 /* inputs #1 and #2 are variable for SAA7111 and SAA7113 */
2598 int mode[4]= {SAA7115_COMPOSITE0, 0, 0, SAA7115_COMPOSITE3};
2599 int audio[]= {1, 0, 0, 0};
2600 //channel 0 is TV with audiochannel 1 (tuner mono)
2601 //channel 1 is Composite with audio channel 0 (line in)
2602 //channel 2 is S-Video with audio channel 0 (line in)
2603 //channel 3 is additional video inputs to the device with audio channel 0 (line in)
2605 RESTRICT_TO_RANGE(channel, 0, usbvision->video_inputs);
2606 usbvision->ctl_input = channel;
2608 // set the new channel
2609 // Regular USB TV Tuners -> channel: 0 = Television, 1 = Composite, 2 = S-Video
2610 // Four video input devices -> channel: 0 = Chan White, 1 = Chan Green, 2 = Chan Yellow, 3 = Chan Red
2612 switch (usbvision_device_data[usbvision->DevModel].Codec) {
2614 mode[1] = SAA7115_COMPOSITE2;
2615 if (SwitchSVideoInput) {
2616 /* To handle problems with S-Video Input for
2617 * some devices. Use SwitchSVideoInput
2618 * parameter when loading the module.*/
2619 mode[2] = SAA7115_COMPOSITE1;
2622 mode[2] = SAA7115_SVIDEO1;
2627 /* modes for saa7111 */
2628 mode[1] = SAA7115_COMPOSITE1;
2629 mode[2] = SAA7115_SVIDEO1;
2632 call_all(usbvision, video, s_routing, mode[channel], 0, 0);
2633 usbvision_set_audio(usbvision, audio[channel]);
2638 * Overrides for Emacs so that we follow Linus's tabbing style.
2639 * ---------------------------------------------------------------------------