em28xx-core.c 22.0 KB
Newer Older
1
/*
2
   em28xx-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
3

4 5
   Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
		      Markus Rechberger <mrechberger@gmail.com>
6
		      Mauro Carvalho Chehab <mchehab@infradead.org>
7
		      Sascha Sommer <saschasommer@freenet.de>
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/vmalloc.h>

30
#include "em28xx.h"
31 32 33

/* #define ENABLE_DEBUG_ISOC_FRAMES */

34
static unsigned int core_debug;
35 36 37
module_param(core_debug,int,0644);
MODULE_PARM_DESC(core_debug,"enable debug messages [core]");

38
#define em28xx_coredbg(fmt, arg...) do {\
39 40
	if (core_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
41
			 dev->name, __FUNCTION__ , ##arg); } while (0)
42

43
static unsigned int reg_debug;
44 45 46
module_param(reg_debug,int,0644);
MODULE_PARM_DESC(reg_debug,"enable debug messages [URB reg]");

47
#define em28xx_regdbg(fmt, arg...) do {\
48 49
	if (reg_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
50
			 dev->name, __FUNCTION__ , ##arg); } while (0)
51

52
static unsigned int isoc_debug;
53
module_param(isoc_debug,int,0644);
54
MODULE_PARM_DESC(isoc_debug,"enable debug messages [isoc transfers]");
55

56
#define em28xx_isocdbg(fmt, arg...) do {\
57 58
	if (isoc_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
59
			 dev->name, __FUNCTION__ , ##arg); } while (0)
60

61
static int alt = EM28XX_PINOUT;
62 63 64
module_param(alt, int, 0644);
MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");

65

66
/*
67
 * em28xx_request_buffers()
68 69
 * allocate a number of buffers
 */
70
u32 em28xx_request_buffers(struct em28xx *dev, u32 count)
71 72 73 74
{
	const size_t imagesize = PAGE_ALIGN(dev->frame_size);	/*needs to be page aligned cause the buffers can be mapped individually! */
	void *buff = NULL;
	u32 i;
75 76
	em28xx_coredbg("requested %i buffers with size %zi\n",
			count, imagesize);
77 78
	if (count > EM28XX_NUM_FRAMES)
		count = EM28XX_NUM_FRAMES;
79 80 81

	dev->num_frames = count;
	while (dev->num_frames > 0) {
82 83
		if ((buff = vmalloc_32(dev->num_frames * imagesize))) {
			memset(buff, 0, dev->num_frames * imagesize);
84
			break;
85
		}
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
		dev->num_frames--;
	}

	for (i = 0; i < dev->num_frames; i++) {
		dev->frame[i].bufmem = buff + i * imagesize;
		dev->frame[i].buf.index = i;
		dev->frame[i].buf.m.offset = i * imagesize;
		dev->frame[i].buf.length = dev->frame_size;
		dev->frame[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
		dev->frame[i].buf.sequence = 0;
		dev->frame[i].buf.field = V4L2_FIELD_NONE;
		dev->frame[i].buf.memory = V4L2_MEMORY_MMAP;
		dev->frame[i].buf.flags = 0;
	}
	return dev->num_frames;
}

/*
104
 * em28xx_queue_unusedframes()
105 106
 * add all frames that are not currently in use to the inbuffer queue
 */
107
void em28xx_queue_unusedframes(struct em28xx *dev)
108 109 110 111 112 113 114 115 116 117 118 119 120 121
{
	unsigned long lock_flags;
	u32 i;

	for (i = 0; i < dev->num_frames; i++)
		if (dev->frame[i].state == F_UNUSED) {
			dev->frame[i].state = F_QUEUED;
			spin_lock_irqsave(&dev->queue_lock, lock_flags);
			list_add_tail(&dev->frame[i].frame, &dev->inqueue);
			spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
		}
}

/*
122
 * em28xx_release_buffers()
123 124
 * free frame buffers
 */
125
void em28xx_release_buffers(struct em28xx *dev)
126 127
{
	if (dev->num_frames) {
128
		vfree(dev->frame[0].bufmem);
129 130 131 132 133
		dev->num_frames = 0;
	}
}

/*
134
 * em28xx_read_reg_req()
135 136
 * reads data from the usb device specifying bRequest
 */
137
int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
138 139 140 141
				   char *buf, int len)
{
	int ret, byte;

142 143 144
	if (dev->state & DEV_DISCONNECTED)
		return(-ENODEV);

145
	em28xx_regdbg("req=%02x, reg=%02x ", req, reg);
146 147 148 149 150 151 152 153

	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,
			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
			      0x0000, reg, buf, len, HZ);

	if (reg_debug){
		printk(ret < 0 ? " failed!\n" : "%02x values: ", ret);
		for (byte = 0; byte < len; byte++) {
154
			printk(" %02x", (unsigned char)buf[byte]);
155 156 157 158 159 160 161 162
		}
		printk("\n");
	}

	return ret;
}

/*
163
 * em28xx_read_reg_req()
164 165
 * reads data from the usb device specifying bRequest
 */
166
int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg)
167 168 169 170
{
	u8 val;
	int ret;

171 172 173
	if (dev->state & DEV_DISCONNECTED)
		return(-ENODEV);

174
	em28xx_regdbg("req=%02x, reg=%02x:", req, reg);
175 176 177 178 179 180

	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,
			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
			      0x0000, reg, &val, 1, HZ);

	if (reg_debug)
181 182
		printk(ret < 0 ? " failed!\n" :
				 "%02x\n", (unsigned char) val);
183 184 185 186 187 188 189

	if (ret < 0)
		return ret;

	return val;
}

190
int em28xx_read_reg(struct em28xx *dev, u16 reg)
191
{
192
	return em28xx_read_reg_req(dev, USB_REQ_GET_STATUS, reg);
193 194 195
}

/*
196
 * em28xx_write_regs_req()
197 198
 * sends data to the usb device, specifying bRequest
 */
199
int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
200 201 202 203 204
				 int len)
{
	int ret;

	/*usb_control_msg seems to expect a kmalloced buffer */
205 206 207 208 209 210
	unsigned char *bufs;

	if (dev->state & DEV_DISCONNECTED)
		return(-ENODEV);

	bufs = kmalloc(len, GFP_KERNEL);
211

212
	em28xx_regdbg("req=%02x reg=%02x:", req, reg);
213 214 215 216 217 218 219 220 221 222 223 224 225 226

	if (reg_debug) {
		int i;
		for (i = 0; i < len; ++i)
			printk (" %02x", (unsigned char)buf[i]);
		printk ("\n");
	}

	if (!bufs)
		return -ENOMEM;
	memcpy(bufs, buf, len);
	ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), req,
			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
			      0x0000, reg, bufs, len, HZ);
227
	msleep(5);		/* FIXME: magic number */
228 229 230 231
	kfree(bufs);
	return ret;
}

232
int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len)
233
{
234
	return em28xx_write_regs_req(dev, USB_REQ_GET_STATUS, reg, buf, len);
235 236 237
}

/*
238
 * em28xx_write_reg_bits()
239 240 241
 * sets only some bits (specified by bitmask) of a register, by first reading
 * the actual value
 */
242
static int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,
243 244 245 246
				 u8 bitmask)
{
	int oldval;
	u8 newval;
247
	if ((oldval = em28xx_read_reg(dev, reg)) < 0)
248 249
		return oldval;
	newval = (((u8) oldval) & ~bitmask) | (val & bitmask);
250
	return em28xx_write_regs(dev, reg, &newval, 1);
251 252 253
}

/*
254
 * em28xx_write_ac97()
255 256
 * write a 16 bit value to the specified AC97 address (LSB first!)
 */
257
static int em28xx_write_ac97(struct em28xx *dev, u8 reg, u8 *val)
258
{
259
	int ret, i;
260
	u8 addr = reg & 0x7f;
261
	if ((ret = em28xx_write_regs(dev, AC97LSB_REG, val, 2)) < 0)
262
		return ret;
263
	if ((ret = em28xx_write_regs(dev, AC97ADDR_REG, &addr, 1)) < 0)
264
		return ret;
265 266 267 268 269

	/* Wait up to 50 ms for AC97 command to complete */
	for (i = 0; i < 10; i++) {
		if ((ret = em28xx_read_reg(dev, AC97BUSY_REG)) < 0)
			return ret;
270
		if (!(ret & 0x01))
271 272
			return 0;
		msleep(5);
273
	}
274
	em28xx_warn ("AC97 command still being executed: not handled properly!\n");
275 276 277
	return 0;
}

278
static int em28xx_set_audio_source(struct em28xx *dev)
279 280 281 282
{
	static char *enable  = "\x08\x08";
	static char *disable = "\x08\x88";
	char *video = enable, *line = disable;
283
	int ret;
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
	u8 input;

	if (dev->is_em2800) {
		if (dev->ctl_ainput)
			input = EM2800_AUDIO_SRC_LINE;
		else
			input = EM2800_AUDIO_SRC_TUNER;

		ret = em28xx_write_regs(dev, EM2800_AUDIOSRC_REG, &input, 1);
		if (ret < 0)
			return ret;
	}

	if (dev->has_msp34xx)
		input = EM28XX_AUDIO_SRC_TUNER;
	else {
		switch (dev->ctl_ainput) {
		case EM28XX_AMUX_VIDEO:
			input = EM28XX_AUDIO_SRC_TUNER;
			break;
		case EM28XX_AMUX_LINE_IN:
			input = EM28XX_AUDIO_SRC_LINE;
			break;
		case EM28XX_AMUX_AC97_VIDEO:
			input = EM28XX_AUDIO_SRC_LINE;
			break;
		case EM28XX_AMUX_AC97_LINE_IN:
			input = EM28XX_AUDIO_SRC_LINE;
			video = disable;
			line  = enable;
			break;
		}
	}

	ret = em28xx_write_reg_bits(dev, AUDIOSRC_REG, input, 0xc0);
	if (ret < 0)
		return ret;
321
	msleep(5);
322

323 324 325
	/* Sets AC97 mixer registers
	   This is seems to be needed, even for non-ac97 configs
	 */
326 327 328 329 330 331 332 333 334
	ret = em28xx_write_ac97(dev, VIDEO_AC97, video);
	if (ret < 0)
		return ret;

	ret = em28xx_write_ac97(dev, LINE_IN_AC97, line);

	return ret;
}

335
int em28xx_audio_analog_set(struct em28xx *dev)
336
{
337
	int ret;
338
	char s[2] = { 0x00, 0x00 };
339
	u8 xclk = 0x07;
340

341 342
	s[0] |= 0x1f - dev->volume;
	s[1] |= 0x1f - dev->volume;
343

344 345
	/* Mute */
	s[1] |= 0x80;
346
	ret = em28xx_write_ac97(dev, MASTER_AC97, s);
347

348 349 350
	if (ret < 0)
		return ret;

351 352 353 354 355 356 357
	if (dev->has_12mhz_i2s)
		xclk |= 0x20;

	if (!dev->mute)
		xclk |= 0x80;

	ret = em28xx_write_reg_bits(dev, XCLK_REG, xclk, 0xa7);
358 359
	if (ret < 0)
		return ret;
360
	msleep(10);
361 362 363

	/* Selects the proper audio input */
	ret = em28xx_set_audio_source(dev);
364

365 366 367 368 369
	/* Unmute device */
	if (!dev->mute)
		s[1] &= ~0x80;
	ret = em28xx_write_ac97(dev, MASTER_AC97, s);

370 371 372
	return ret;
}
EXPORT_SYMBOL_GPL(em28xx_audio_analog_set);
373

374
int em28xx_colorlevels_set_default(struct em28xx *dev)
375
{
376 377 378 379 380 381 382 383 384 385 386 387 388 389
	em28xx_write_regs(dev, YGAIN_REG, "\x10", 1);	/* contrast */
	em28xx_write_regs(dev, YOFFSET_REG, "\x00", 1);	/* brightness */
	em28xx_write_regs(dev, UVGAIN_REG, "\x10", 1);	/* saturation */
	em28xx_write_regs(dev, UOFFSET_REG, "\x00", 1);
	em28xx_write_regs(dev, VOFFSET_REG, "\x00", 1);
	em28xx_write_regs(dev, SHARPNESS_REG, "\x00", 1);

	em28xx_write_regs(dev, GAMMA_REG, "\x20", 1);
	em28xx_write_regs(dev, RGAIN_REG, "\x20", 1);
	em28xx_write_regs(dev, GGAIN_REG, "\x20", 1);
	em28xx_write_regs(dev, BGAIN_REG, "\x20", 1);
	em28xx_write_regs(dev, ROFFSET_REG, "\x00", 1);
	em28xx_write_regs(dev, GOFFSET_REG, "\x00", 1);
	return em28xx_write_regs(dev, BOFFSET_REG, "\x00", 1);
390 391
}

392
int em28xx_capture_start(struct em28xx *dev, int start)
393 394 395 396
{
	int ret;
	/* FIXME: which is the best order? */
	/* video registers are sampled by VREF */
397
	if ((ret = em28xx_write_reg_bits(dev, USBSUSP_REG, start ? 0x10 : 0x00,
398 399 400
					  0x10)) < 0)
		return ret;
	/* enable video capture */
401
	return em28xx_write_regs(dev, VINENABLE_REG, start ? "\x67" : "\x27", 1);
402 403
}

404
int em28xx_outfmt_set_yuv422(struct em28xx *dev)
405
{
406 407 408
	em28xx_write_regs(dev, OUTFMT_REG, "\x34", 1);
	em28xx_write_regs(dev, VINMODE_REG, "\x10", 1);
	return em28xx_write_regs(dev, VINCTRL_REG, "\x11", 1);
409 410
}

411 412
static int em28xx_accumulator_set(struct em28xx *dev, u8 xmin, u8 xmax,
				  u8 ymin, u8 ymax)
413
{
414
	em28xx_coredbg("em28xx Scale: (%d,%d)-(%d,%d)\n", xmin, ymin, xmax, ymax);
415

416 417 418 419
	em28xx_write_regs(dev, XMIN_REG, &xmin, 1);
	em28xx_write_regs(dev, XMAX_REG, &xmax, 1);
	em28xx_write_regs(dev, YMIN_REG, &ymin, 1);
	return em28xx_write_regs(dev, YMAX_REG, &ymax, 1);
420 421
}

422
static int em28xx_capture_area_set(struct em28xx *dev, u8 hstart, u8 vstart,
423 424 425 426 427 428
				   u16 width, u16 height)
{
	u8 cwidth = width;
	u8 cheight = height;
	u8 overflow = (height >> 7 & 0x02) | (width >> 8 & 0x01);

429
	em28xx_coredbg("em28xx Area Set: (%d,%d)\n", (width | (overflow & 2) << 7),
430 431
			(height | (overflow & 1) << 8));

432 433 434 435 436
	em28xx_write_regs(dev, HSTART_REG, &hstart, 1);
	em28xx_write_regs(dev, VSTART_REG, &vstart, 1);
	em28xx_write_regs(dev, CWIDTH_REG, &cwidth, 1);
	em28xx_write_regs(dev, CHEIGHT_REG, &cheight, 1);
	return em28xx_write_regs(dev, OFLOW_REG, &overflow, 1);
437 438
}

439
static int em28xx_scaler_set(struct em28xx *dev, u16 h, u16 v)
440
{
441 442 443 444 445 446 447 448
	u8 mode;
	/* the em2800 scaler only supports scaling down to 50% */
	if(dev->is_em2800)
		mode = (v ? 0x20 : 0x00) | (h ? 0x10 : 0x00);
	else {
		u8 buf[2];
		buf[0] = h;
		buf[1] = h >> 8;
449
		em28xx_write_regs(dev, HSCALELOW_REG, (char *)buf, 2);
450 451
		buf[0] = v;
		buf[1] = v >> 8;
452
		em28xx_write_regs(dev, VSCALELOW_REG, (char *)buf, 2);
453 454
		/* it seems that both H and V scalers must be active to work correctly */
		mode = (h || v)? 0x30: 0x00;
455
	}
456
	return em28xx_write_reg_bits(dev, COMPR_REG, mode, 0x30);
457 458 459
}

/* FIXME: this only function read values from dev */
460
int em28xx_resolution_set(struct em28xx *dev)
461 462 463 464 465
{
	int width, height;
	width = norm_maxw(dev);
	height = norm_maxh(dev) >> 1;

466 467 468 469
	em28xx_outfmt_set_yuv422(dev);
	em28xx_accumulator_set(dev, 1, (width - 4) >> 2, 1, (height - 4) >> 2);
	em28xx_capture_area_set(dev, 0, 0, width >> 2, height >> 2);
	return em28xx_scaler_set(dev, dev->hscale, dev->vscale);
470 471 472 473 474 475
}


/******************* isoc transfer handling ****************************/

#ifdef ENABLE_DEBUG_ISOC_FRAMES
476
static void em28xx_isoc_dump(struct urb *urb)
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
{
	int len = 0;
	int ntrans = 0;
	int i;

	printk(KERN_DEBUG "isocIrq: sf=%d np=%d ec=%x\n",
	       urb->start_frame, urb->number_of_packets,
	       urb->error_count);
	for (i = 0; i < urb->number_of_packets; i++) {
		unsigned char *buf =
				urb->transfer_buffer +
				urb->iso_frame_desc[i].offset;
		int alen = urb->iso_frame_desc[i].actual_length;
		if (alen > 0) {
			if (buf[0] == 0x88) {
				ntrans++;
				len += alen;
			} else if (buf[0] == 0x22) {
				printk(KERN_DEBUG
						"= l=%d nt=%d bpp=%d\n",
				len - 4 * ntrans, ntrans,
				ntrans == 0 ? 0 : len / ntrans);
				ntrans = 1;
				len = alen;
			} else
				printk(KERN_DEBUG "!\n");
		}
		printk(KERN_DEBUG "   n=%d s=%d al=%d %x\n", i,
		       urb->iso_frame_desc[i].status,
		       urb->iso_frame_desc[i].actual_length,
		       (unsigned int)
				       *((unsigned char *)(urb->transfer_buffer +
				       urb->iso_frame_desc[i].
				       offset)));
	}
}
#endif

515
static inline int em28xx_isoc_video(struct em28xx *dev,struct em28xx_frame_t **f,
516 517 518 519 520 521 522
				    unsigned long *lock_flags, unsigned char buf)
{
	if (!(buf & 0x01)) {
		if ((*f)->state == F_GRABBING) {
			/*previous frame is incomplete */
			if ((*f)->fieldbytesused < dev->field_size) {
				(*f)->state = F_ERROR;
523
				em28xx_isocdbg ("dropping incomplete bottom field (%i missing bytes)",
524 525 526 527 528 529 530 531 532 533 534 535
					 dev->field_size-(*f)->fieldbytesused);
			} else {
				(*f)->state = F_DONE;
				(*f)->buf.bytesused = dev->frame_size;
			}
		}
		if ((*f)->state == F_DONE || (*f)->state == F_ERROR) {
			/* move current frame to outqueue and get next free buffer from inqueue */
			spin_lock_irqsave(&dev-> queue_lock, *lock_flags);
			list_move_tail(&(*f)->frame, &dev->outqueue);
			if (!list_empty(&dev->inqueue))
				(*f) = list_entry(dev-> inqueue.next,
536
			struct em28xx_frame_t,frame);
537 538 539 540 541
			else
				(*f) = NULL;
			spin_unlock_irqrestore(&dev->queue_lock,*lock_flags);
		}
		if (!(*f)) {
542
			em28xx_isocdbg ("new frame but no buffer is free");
543 544 545 546 547 548 549 550 551 552 553 554 555 556
			return -1;
		}
		do_gettimeofday(&(*f)->buf.timestamp);
		(*f)->buf.sequence = ++dev->frame_count;
		(*f)->buf.field = V4L2_FIELD_INTERLACED;
		(*f)->state = F_GRABBING;
		(*f)->buf.bytesused = 0;
		(*f)->top_field = 1;
		(*f)->fieldbytesused = 0;
	} else {
					/* acquiring bottom field */
		if ((*f)->state == F_GRABBING) {
			if (!(*f)->top_field) {
				(*f)->state = F_ERROR;
557
				em28xx_isocdbg ("unexpected begin of bottom field; discarding it");
558 559
			} else if ((*f)-> fieldbytesused < dev->field_size - 172) {
				(*f)->state = F_ERROR;
560
				em28xx_isocdbg ("dropping incomplete top field (%i missing bytes)",
561 562 563 564 565 566 567 568 569 570
					 dev->field_size-(*f)->fieldbytesused);
			} else {
				(*f)->top_field = 0;
				(*f)->fieldbytesused = 0;
			}
		}
	}
	return (0);
}

571 572
static inline void em28xx_isoc_video_copy(struct em28xx *dev,
					  struct em28xx_frame_t **f, unsigned char *buf, int len)
573 574 575 576
{
	void *fieldstart, *startwrite, *startread;
	int linesdone, currlinedone, offset, lencopy,remain;

577
	if(dev->frame_size != (*f)->buf.length){
578
		em28xx_err("frame_size %i and buf.length %i are different!!!\n",dev->frame_size,(*f)->buf.length);
579 580 581
		return;
	}

582 583
	if ((*f)->fieldbytesused + len > dev->field_size)
		len =dev->field_size - (*f)->fieldbytesused;
584 585

	if (buf[0] != 0x88 && buf[0] != 0x22) {
586
		em28xx_isocdbg("frame is not complete\n");
587 588 589 590 591
		startread = buf;
		len+=4;
	} else
		startread = buf + 4;

592
	remain = len;
593

594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
	if ((*f)->top_field)
		fieldstart = (*f)->bufmem;
	else
		fieldstart = (*f)->bufmem + dev->bytesperline;

	linesdone = (*f)->fieldbytesused / dev->bytesperline;
	currlinedone = (*f)->fieldbytesused % dev->bytesperline;
	offset = linesdone * dev->bytesperline * 2 + currlinedone;
	startwrite = fieldstart + offset;
	lencopy = dev->bytesperline - currlinedone;
	lencopy = lencopy > remain ? remain : lencopy;

	memcpy(startwrite, startread, lencopy);
	remain -= lencopy;

	while (remain > 0) {
		startwrite += lencopy + dev->bytesperline;
		startread += lencopy;
		if (dev->bytesperline > remain)
			lencopy = remain;
		else
			lencopy = dev->bytesperline;

		memcpy(startwrite, startread, lencopy);
		remain -= lencopy;
	}

	(*f)->fieldbytesused += len;
}

/*
625
 * em28xx_isoIrq()
626 627
 * handles the incoming isoc urbs and fills the frames from our inqueue
 */
628
static void em28xx_isocIrq(struct urb *urb)
629
{
630
	struct em28xx *dev = urb->context;
631
	int i, status;
632
	struct em28xx_frame_t **f;
633 634 635 636 637 638
	unsigned long lock_flags;

	if (!dev)
		return;
#ifdef ENABLE_DEBUG_ISOC_FRAMES
	if (isoc_debug>1)
639
		em28xx_isoc_dump(urb);
640 641 642 643 644 645 646 647 648 649 650
#endif

	if (urb->status == -ENOENT)
		return;

	f = &dev->frame_current;

	if (dev->stream == STREAM_INTERRUPT) {
		dev->stream = STREAM_OFF;
		if ((*f))
			(*f)->state = F_QUEUED;
651
		em28xx_isocdbg("stream interrupted");
652 653 654 655 656 657 658 659 660
		wake_up_interruptible(&dev->wait_stream);
	}

	if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
		return;

	if (dev->stream == STREAM_ON && !list_empty(&dev->inqueue)) {
		if (!(*f))
			(*f) = list_entry(dev->inqueue.next,
661
		struct em28xx_frame_t, frame);
662 663 664 665 666 667 668

		for (i = 0; i < urb->number_of_packets; i++) {
			unsigned char *buf = urb->transfer_buffer +
					urb->iso_frame_desc[i].offset;
			int len = urb->iso_frame_desc[i].actual_length - 4;

			if (urb->iso_frame_desc[i].status) {
669
				em28xx_isocdbg("data error: [%d] len=%d, status=%d", i,
670 671
					urb->iso_frame_desc[i].actual_length,
					urb->iso_frame_desc[i].status);
672 673
				if (urb->iso_frame_desc[i].status != -EPROTO)
					continue;
674 675
			}
			if (urb->iso_frame_desc[i].actual_length <= 0) {
676
				em28xx_isocdbg("packet %d is empty",i);
677 678 679
				continue;
			}
			if (urb->iso_frame_desc[i].actual_length >
680
			    urb->iso_frame_desc[i].length) {
681
				em28xx_isocdbg("packet bigger than packet size");
682 683 684 685
				continue;
			}
			/*new frame */
			if (buf[0] == 0x22 && buf[1] == 0x5a) {
686
				em28xx_isocdbg("Video frame, length=%i!",len);
687

688
				if (em28xx_isoc_video(dev,f,&lock_flags,buf[2]))
689 690
				break;
			} else if (buf[0]==0x33 && buf[1]==0x95 && buf[2]==0x00) {
691
				em28xx_isocdbg("VBI HEADER!!!");
692 693 694 695
			}

			/* actual copying */
			if ((*f)->state == F_GRABBING) {
696
				em28xx_isoc_video_copy(dev,f,buf, len);
697 698 699 700 701 702 703 704 705 706 707
			}
		}
	}

	for (i = 0; i < urb->number_of_packets; i++) {
		urb->iso_frame_desc[i].status = 0;
		urb->iso_frame_desc[i].actual_length = 0;
	}

	urb->status = 0;
	if ((status = usb_submit_urb(urb, GFP_ATOMIC))) {
708
		em28xx_errdev("resubmit of urb failed (error=%i)\n", status);
709 710 711 712 713 714 715
		dev->state |= DEV_MISCONFIGURED;
	}
	wake_up_interruptible(&dev->wait_frame);
	return;
}

/*
716 717
 * em28xx_uninit_isoc()
 * deallocates the buffers and urbs allocated during em28xx_init_iosc()
718
 */
719
void em28xx_uninit_isoc(struct em28xx *dev)
720 721 722
{
	int i;

723
	for (i = 0; i < EM28XX_NUM_BUFS; i++) {
724 725
		if (dev->urb[i]) {
			usb_kill_urb(dev->urb[i]);
726 727 728 729 730
			if (dev->transfer_buffer[i]) {
				usb_buffer_free(dev->udev,
						dev->urb[i]->transfer_buffer_length,
						dev->transfer_buffer[i],
						dev->urb[i]->transfer_dma);
731
			}
732 733 734 735 736
			usb_free_urb(dev->urb[i]);
		}
		dev->urb[i] = NULL;
		dev->transfer_buffer[i] = NULL;
	}
737
	em28xx_capture_start(dev, 0);
738 739 740
}

/*
741
 * em28xx_init_isoc()
742 743
 * allocates transfer buffers and submits the urbs for isoc transfer
 */
744
int em28xx_init_isoc(struct em28xx *dev)
745
{
746
	/* change interface to 3 which allows the biggest packet sizes */
747
	int i, errCode;
748 749 750 751
	int sb_size;

	em28xx_set_alternate(dev);
	sb_size = EM28XX_NUM_PACKETS * dev->max_pkt_size;
752 753 754 755 756 757

	/* reset streaming vars */
	dev->frame_current = NULL;
	dev->frame_count = 0;

	/* allocate urbs */
758
	for (i = 0; i < EM28XX_NUM_BUFS; i++) {
759
		struct urb *urb;
760
		int j;
761
		/* allocate transfer buffer */
762
		urb = usb_alloc_urb(EM28XX_NUM_PACKETS, GFP_KERNEL);
763
		if (!urb){
764 765
			em28xx_errdev("cannot alloc urb %i\n", i);
			em28xx_uninit_isoc(dev);
766 767
			return -ENOMEM;
		}
768 769 770
		dev->transfer_buffer[i] = usb_buffer_alloc(dev->udev, sb_size,
							   GFP_KERNEL,
							   &urb->transfer_dma);
771
		if (!dev->transfer_buffer[i]) {
772
			em28xx_errdev
773 774
					("unable to allocate %i bytes for transfer buffer %i\n",
					 sb_size, i);
775
			em28xx_uninit_isoc(dev);
776
			usb_free_urb(urb);
777 778 779
			return -ENOMEM;
		}
		memset(dev->transfer_buffer[i], 0, sb_size);
780 781 782
		urb->dev = dev->udev;
		urb->context = dev;
		urb->pipe = usb_rcvisocpipe(dev->udev, 0x82);
783
		urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
784 785
		urb->interval = 1;
		urb->transfer_buffer = dev->transfer_buffer[i];
786 787
		urb->complete = em28xx_isocIrq;
		urb->number_of_packets = EM28XX_NUM_PACKETS;
788
		urb->transfer_buffer_length = sb_size;
789 790 791
		for (j = 0; j < EM28XX_NUM_PACKETS; j++) {
			urb->iso_frame_desc[j].offset = j * dev->max_pkt_size;
			urb->iso_frame_desc[j].length = dev->max_pkt_size;
792
		}
793
		dev->urb[i] = urb;
794 795 796
	}

	/* submit urbs */
797 798
	em28xx_coredbg("Submitting %d urbs of %d packets (%d each)\n",
		       EM28XX_NUM_BUFS, EM28XX_NUM_PACKETS, dev->max_pkt_size);
799
	for (i = 0; i < EM28XX_NUM_BUFS; i++) {
800 801
		errCode = usb_submit_urb(dev->urb[i], GFP_KERNEL);
		if (errCode) {
802
			em28xx_errdev("submit of urb %i failed (error=%i)\n", i,
803
				      errCode);
804
			em28xx_uninit_isoc(dev);
805 806 807 808 809 810 811
			return errCode;
		}
	}

	return 0;
}

812
int em28xx_set_alternate(struct em28xx *dev)
813 814
{
	int errCode, prev_alt = dev->alt;
815 816 817 818 819 820 821 822 823 824 825 826 827 828
	int i;
	unsigned int min_pkt_size = dev->bytesperline+4;

	/* When image size is bigger than a ceirtain value,
	   the frame size should be increased, otherwise, only
	   green screen will be received.
	 */
	if (dev->frame_size > 720*240*2)
		min_pkt_size *= 2;

	for (i = 0; i < dev->num_alt; i++)
		if (dev->alt_max_pkt_size[i] >= min_pkt_size)
			break;
	dev->alt = i;
829 830

	if (dev->alt != prev_alt) {
831 832
		em28xx_coredbg("minimum isoc packet size: %u (alt=%d)\n",
				min_pkt_size, dev->alt);
833
		dev->max_pkt_size = dev->alt_max_pkt_size[dev->alt];
834 835
		em28xx_coredbg("setting alternate %d with wMaxPacketSize=%u\n",
			       dev->alt, dev->max_pkt_size);
836 837
		errCode = usb_set_interface(dev->udev, 0, dev->alt);
		if (errCode < 0) {
838
			em28xx_errdev ("cannot change alternate number to %d (error=%i)\n",
839
					dev->alt, errCode);
840 841 842 843 844
			return errCode;
		}
	}
	return 0;
}