em28xx-core.c 23.6 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, __func__ , ##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, __func__ , ##arg); } while (0)
51

52
static int alt = EM28XX_PINOUT;
53 54 55
module_param(alt, int, 0644);
MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");

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

62
/*
63
 * em28xx_read_reg_req()
64 65
 * reads data from the usb device specifying bRequest
 */
66
int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
67 68
				   char *buf, int len)
{
69 70
	int ret;
	int pipe = usb_rcvctrlpipe(dev->udev, 0);
71

72
	if (dev->state & DEV_DISCONNECTED)
73 74 75 76
		return -ENODEV;

	if (len > URB_MAX_CTRL_SIZE)
		return -EINVAL;
77

78 79 80 81 82 83 84 85 86
	if (reg_debug) {
		printk( KERN_DEBUG "(pipe 0x%08x): "
			"IN:  %02x %02x %02x %02x %02x %02x %02x %02x ",
			pipe,
			USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
			req, 0, 0,
			reg & 0xff, reg >> 8,
			len & 0xff, len >> 8);
	}
87

88
	mutex_lock(&dev->ctrl_urb_lock);
89
	ret = usb_control_msg(dev->udev, pipe, req,
90
			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
91 92 93 94
			      0x0000, reg, dev->urb_buf, len, HZ);
	if (ret < 0) {
		if (reg_debug)
			printk(" failed!\n");
95
		mutex_unlock(&dev->ctrl_urb_lock);
96 97 98 99 100
		return ret;
	}

	if (len)
		memcpy(buf, dev->urb_buf, len);
101

102 103
	mutex_unlock(&dev->ctrl_urb_lock);

104
	if (reg_debug) {
105 106 107
		int byte;

		printk("<<<");
108
		for (byte = 0; byte < len; byte++)
109 110
			printk(" %02x", (unsigned char)buf[byte]);
		printk("\n");
111 112 113 114 115 116
	}

	return ret;
}

/*
117
 * em28xx_read_reg_req()
118 119
 * reads data from the usb device specifying bRequest
 */
120
int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg)
121 122
{
	int ret;
123
	u8 val;
124

125 126
	ret = em28xx_read_reg_req_len(dev, req, reg, &val, 1);
	if (ret < 0)
127
		return ret;
128 129 130 131

	return val;
}

132
int em28xx_read_reg(struct em28xx *dev, u16 reg)
133
{
134
	return em28xx_read_reg_req(dev, USB_REQ_GET_STATUS, reg);
135 136 137
}

/*
138
 * em28xx_write_regs_req()
139 140
 * sends data to the usb device, specifying bRequest
 */
141
int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
142 143 144
				 int len)
{
	int ret;
145
	int pipe = usb_sndctrlpipe(dev->udev, 0);
146

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

150
	if ((len < 1) || (len > URB_MAX_CTRL_SIZE))
151
		return -EINVAL;
152

153
	if (reg_debug) {
154 155 156 157 158 159 160 161 162 163 164 165
		int byte;

		printk( KERN_DEBUG "(pipe 0x%08x): "
			"OUT: %02x %02x %02x %02x %02x %02x %02x %02x >>>",
			pipe,
			USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
			req, 0, 0,
			reg & 0xff, reg >> 8,
			len & 0xff, len >> 8);

		for (byte = 0; byte < len; byte++)
			printk(" %02x", (unsigned char)buf[byte]);
166
		printk("\n");
167 168
	}

169
	mutex_lock(&dev->ctrl_urb_lock);
170
	memcpy(dev->urb_buf, buf, len);
171
	ret = usb_control_msg(dev->udev, pipe, req,
172
			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
173
			      0x0000, reg, dev->urb_buf, len, HZ);
174
	mutex_unlock(&dev->ctrl_urb_lock);
175

176 177 178
	if (dev->wait_after_write)
		msleep(dev->wait_after_write);

179 180 181
	return ret;
}

182
int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len)
183
{
184 185 186 187 188 189 190 191 192 193
	int rc;

	rc = em28xx_write_regs_req(dev, USB_REQ_GET_STATUS, reg, buf, len);

	/* Stores GPO/GPIO values at the cache, if changed
	   Only write values should be stored, since input on a GPIO
	   register will return the input bits.
	   Not sure what happens on reading GPO register.
	 */
	if (rc >= 0) {
194
		if (reg == dev->reg_gpo_num)
195
			dev->reg_gpo = buf[0];
196
		else if (reg == dev->reg_gpio_num)
197 198 199 200
			dev->reg_gpio = buf[0];
	}

	return rc;
201 202
}

203 204 205 206 207 208
/* Write a single register */
int em28xx_write_reg(struct em28xx *dev, u16 reg, u8 val)
{
	return em28xx_write_regs(dev, reg, &val, 1);
}

209
/*
210
 * em28xx_write_reg_bits()
211 212 213
 * sets only some bits (specified by bitmask) of a register, by first reading
 * the actual value
 */
214
static int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,
215 216 217 218
				 u8 bitmask)
{
	int oldval;
	u8 newval;
219

220
	/* Uses cache for gpo/gpio registers */
221
	if (reg == dev->reg_gpo_num)
222
		oldval = dev->reg_gpo;
223
	else if (reg == dev->reg_gpio_num)
224 225 226
		oldval = dev->reg_gpio;
	else
		oldval = em28xx_read_reg(dev, reg);
227 228

	if (oldval < 0)
229
		return oldval;
230

231
	newval = (((u8) oldval) & ~bitmask) | (val & bitmask);
232

233
	return em28xx_write_regs(dev, reg, &newval, 1);
234 235
}

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
/*
 * em28xx_is_ac97_ready()
 * Checks if ac97 is ready
 */
static int em28xx_is_ac97_ready(struct em28xx *dev)
{
	int ret, i;

	/* Wait up to 50 ms for AC97 command to complete */
	for (i = 0; i < 10; i++, msleep(5)) {
		ret = em28xx_read_reg(dev, EM28XX_R43_AC97BUSY);
		if (ret < 0)
			return ret;

		if (!(ret & 0x01))
			return 0;
	}

	em28xx_warn("AC97 command still being executed: not handled properly!\n");
	return -EBUSY;
}

/*
 * em28xx_read_ac97()
 * write a 16 bit value to the specified AC97 address (LSB first!)
 */
static int em28xx_read_ac97(struct em28xx *dev, u8 reg)
{
	int ret;
	u8 addr = (reg & 0x7f) | 0x80;
	u16 val;

	ret = em28xx_is_ac97_ready(dev);
	if (ret < 0)
		return ret;

	ret = em28xx_write_regs(dev, EM28XX_R42_AC97ADDR, &addr, 1);
	if (ret < 0)
		return ret;

	ret = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R40_AC97LSB,
					   (u8 *)&val, sizeof(val));

	if (ret < 0)
		return ret;
	return le16_to_cpu(val);
}

284
/*
285
 * em28xx_write_ac97()
286 287
 * write a 16 bit value to the specified AC97 address (LSB first!)
 */
288
static int em28xx_write_ac97(struct em28xx *dev, u8 reg, u16 val)
289
{
290
	int ret;
291
	u8 addr = reg & 0x7f;
292 293 294 295 296 297 298
	__le16 value;

	value = cpu_to_le16(val);

	ret = em28xx_is_ac97_ready(dev);
	if (ret < 0)
		return ret;
299

300
	ret = em28xx_write_regs(dev, EM28XX_R40_AC97LSB, (u8 *) &value, 2);
301
	if (ret < 0)
302
		return ret;
303

304
	ret = em28xx_write_regs(dev, EM28XX_R42_AC97ADDR, &addr, 1);
305
	if (ret < 0)
306
		return ret;
307

308 309
	return 0;
}
310

311 312
struct em28xx_vol_table {
	enum em28xx_amux mux;
313 314 315
	u8		 reg;
};

316
static struct em28xx_vol_table inputs[] = {
317 318 319 320 321 322 323 324 325 326
	{ EM28XX_AMUX_VIDEO, 	AC97_VIDEO_VOL   },
	{ EM28XX_AMUX_LINE_IN,	AC97_LINEIN_VOL  },
	{ EM28XX_AMUX_PHONE,	AC97_PHONE_VOL   },
	{ EM28XX_AMUX_MIC,	AC97_MIC_VOL     },
	{ EM28XX_AMUX_CD,	AC97_CD_VOL      },
	{ EM28XX_AMUX_AUX,	AC97_AUX_VOL     },
	{ EM28XX_AMUX_PCM_OUT,	AC97_PCM_OUT_VOL },
};

static int set_ac97_input(struct em28xx *dev)
327
{
328 329
	int ret, i;
	enum em28xx_amux amux = dev->ctl_ainput;
330

331 332 333 334
	/* EM28XX_AMUX_VIDEO2 is a special case used to indicate that
	   em28xx should point to LINE IN, while AC97 should use VIDEO
	 */
	if (amux == EM28XX_AMUX_VIDEO2)
335
		amux = EM28XX_AMUX_VIDEO;
336

337 338
	/* Mute all entres but the one that were selected */
	for (i = 0; i < ARRAY_SIZE(inputs); i++) {
339
		if (amux == inputs[i].mux)
340 341 342
			ret = em28xx_write_ac97(dev, inputs[i].reg, 0x0808);
		else
			ret = em28xx_write_ac97(dev, inputs[i].reg, 0x8000);
343

344 345 346 347 348
		if (ret < 0)
			em28xx_warn("couldn't setup AC97 register %d\n",
				     inputs[i].reg);
	}
	return 0;
349 350
}

351
static int em28xx_set_audio_source(struct em28xx *dev)
352
{
353
	int ret;
354 355
	u8 input;

356
	if (dev->board.is_em2800) {
357
		if (dev->ctl_ainput == EM28XX_AMUX_VIDEO)
358
			input = EM2800_AUDIO_SRC_TUNER;
359 360
		else
			input = EM2800_AUDIO_SRC_LINE;
361

362
		ret = em28xx_write_regs(dev, EM2800_R08_AUDIOSRC, &input, 1);
363 364 365 366
		if (ret < 0)
			return ret;
	}

367
	if (dev->board.has_msp34xx)
368 369 370 371 372 373
		input = EM28XX_AUDIO_SRC_TUNER;
	else {
		switch (dev->ctl_ainput) {
		case EM28XX_AMUX_VIDEO:
			input = EM28XX_AUDIO_SRC_TUNER;
			break;
374
		default:
375 376 377 378 379
			input = EM28XX_AUDIO_SRC_LINE;
			break;
		}
	}

380
	ret = em28xx_write_reg_bits(dev, EM28XX_R0E_AUDIOSRC, input, 0xc0);
381 382
	if (ret < 0)
		return ret;
383
	msleep(5);
384

385 386 387
	switch (dev->audio_mode.ac97) {
	case EM28XX_NO_AC97:
		break;
388 389
	default:
		ret = set_ac97_input(dev);
390
	}
391

392
	return ret;
393 394
}

395 396 397 398 399 400
struct em28xx_vol_table outputs[] = {
	{ EM28XX_AOUT_MASTER, AC97_MASTER_VOL      },
	{ EM28XX_AOUT_LINE,   AC97_LINE_LEVEL_VOL  },
	{ EM28XX_AOUT_MONO,   AC97_MASTER_MONO_VOL },
	{ EM28XX_AOUT_LFE,    AC97_LFE_MASTER_VOL  },
	{ EM28XX_AOUT_SURR,   AC97_SURR_MASTER_VOL },
401 402
};

403
int em28xx_audio_analog_set(struct em28xx *dev)
404
{
405
	int ret, i;
406
	u8 xclk;
407

408 409
	if (!dev->audio_mode.has_audio)
		return 0;
410

411 412 413
	/* It is assumed that all devices use master volume for output.
	   It would be possible to use also line output.
	 */
414
	if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
415 416
		/* Mute all outputs */
		for (i = 0; i < ARRAY_SIZE(outputs); i++) {
417
			ret = em28xx_write_ac97(dev, outputs[i].reg, 0x8000);
418 419
			if (ret < 0)
				em28xx_warn("couldn't setup AC97 register %d\n",
420
				     outputs[i].reg);
421
		}
422
	}
423

424
	xclk = dev->board.xclk & 0x7f;
425 426 427
	if (!dev->mute)
		xclk |= 0x80;

428
	ret = em28xx_write_reg(dev, EM28XX_R0F_XCLK, xclk);
429 430
	if (ret < 0)
		return ret;
431
	msleep(10);
432 433 434

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

436 437 438 439 440 441 442 443 444 445 446 447
	/* Sets volume */
	if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
		int vol;

		/* LSB: left channel - both channels with the same level */
		vol = (0x1f - dev->volume) | ((0x1f - dev->volume) << 8);

		/* Mute device, if needed */
		if (dev->mute)
			vol |= 0x8000;

		/* Sets volume */
448 449 450 451 452 453 454 455
		for (i = 0; i < ARRAY_SIZE(outputs); i++) {
			if (dev->ctl_aoutput & outputs[i].mux)
				ret = em28xx_write_ac97(dev, outputs[i].reg,
							vol);
			if (ret < 0)
				em28xx_warn("couldn't setup AC97 register %d\n",
				     outputs[i].reg);
		}
456
	}
457

458 459 460
	return ret;
}
EXPORT_SYMBOL_GPL(em28xx_audio_analog_set);
461

462 463 464
int em28xx_audio_setup(struct em28xx *dev)
{
	int vid1, vid2, feat, cfg;
465
	u32 vid;
466 467 468 469 470 471 472 473 474 475 476 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 515 516

	if (dev->chip_id == CHIP_ID_EM2874) {
		/* Digital only device - don't load any alsa module */
		dev->audio_mode.has_audio = 0;
		dev->has_audio_class = 0;
		dev->has_alsa_audio = 0;
		return 0;
	}

	/* If device doesn't support Usb Audio Class, use vendor class */
	if (!dev->has_audio_class)
		dev->has_alsa_audio = 1;

	dev->audio_mode.has_audio = 1;

	/* See how this device is configured */
	cfg = em28xx_read_reg(dev, EM28XX_R00_CHIPCFG);
	if (cfg < 0)
		cfg = EM28XX_CHIPCFG_AC97; /* Be conservative */
	else
		em28xx_info("Config register raw data: 0x%02x\n", cfg);

	if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) ==
		    EM28XX_CHIPCFG_I2S_3_SAMPRATES) {
		em28xx_info("I2S Audio (3 sample rates)\n");
		dev->audio_mode.i2s_3rates = 1;
	}
	if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) ==
		    EM28XX_CHIPCFG_I2S_5_SAMPRATES) {
		em28xx_info("I2S Audio (5 sample rates)\n");
		dev->audio_mode.i2s_5rates = 1;
	}

	if (!(cfg & EM28XX_CHIPCFG_AC97)) {
		dev->audio_mode.ac97 = EM28XX_NO_AC97;
		goto init_audio;
	}

	dev->audio_mode.ac97 = EM28XX_AC97_OTHER;

	vid1 = em28xx_read_ac97(dev, AC97_VENDOR_ID1);
	if (vid1 < 0) {
		/* Device likely doesn't support AC97 */
		em28xx_warn("AC97 chip type couldn't be determined\n");
		goto init_audio;
	}

	vid2 = em28xx_read_ac97(dev, AC97_VENDOR_ID2);
	if (vid2 < 0)
		goto init_audio;

517 518 519 520
	vid = vid1 << 16 | vid2;

	dev->audio_mode.ac97_vendor_id = vid;
	em28xx_warn("AC97 vendor ID = 0x%08x\n", vid);
521 522 523 524 525 526 527 528

	feat = em28xx_read_ac97(dev, AC97_RESET);
	if (feat < 0)
		goto init_audio;

	dev->audio_mode.ac97_feat = feat;
	em28xx_warn("AC97 features = 0x%04x\n", feat);

529 530
	/* Try to identify what audio processor we have */
	if ((vid == 0xffffffff) && (feat == 0x6a90))
531
		dev->audio_mode.ac97 = EM28XX_AC97_EM202;
532 533
	else if ((vid >> 8) == 0x838476)
		dev->audio_mode.ac97 = EM28XX_AC97_SIGMATEL;
534 535 536 537 538 539 540 541 542 543

init_audio:
	/* Reports detected AC97 processor */
	switch (dev->audio_mode.ac97) {
	case EM28XX_NO_AC97:
		em28xx_info("No AC97 audio processor\n");
		break;
	case EM28XX_AC97_EM202:
		em28xx_info("Empia 202 AC97 audio processor detected\n");
		break;
544 545 546 547
	case EM28XX_AC97_SIGMATEL:
		em28xx_info("Sigmatel audio processor detected(stac 97%02x)\n",
			    dev->audio_mode.ac97_vendor_id & 0xff);
		break;
548 549 550 551 552 553 554 555 556 557 558
	case EM28XX_AC97_OTHER:
		em28xx_warn("Unknown AC97 audio processor detected!\n");
		break;
	default:
		break;
	}

	return em28xx_audio_analog_set(dev);
}
EXPORT_SYMBOL_GPL(em28xx_audio_setup);

559
int em28xx_colorlevels_set_default(struct em28xx *dev)
560
{
561 562 563 564 565 566 567 568 569 570 571 572 573 574
	em28xx_write_reg(dev, EM28XX_R20_YGAIN, 0x10);	/* contrast */
	em28xx_write_reg(dev, EM28XX_R21_YOFFSET, 0x00);	/* brightness */
	em28xx_write_reg(dev, EM28XX_R22_UVGAIN, 0x10);	/* saturation */
	em28xx_write_reg(dev, EM28XX_R23_UOFFSET, 0x00);
	em28xx_write_reg(dev, EM28XX_R24_VOFFSET, 0x00);
	em28xx_write_reg(dev, EM28XX_R25_SHARPNESS, 0x00);

	em28xx_write_reg(dev, EM28XX_R14_GAMMA, 0x20);
	em28xx_write_reg(dev, EM28XX_R15_RGAIN, 0x20);
	em28xx_write_reg(dev, EM28XX_R16_GGAIN, 0x20);
	em28xx_write_reg(dev, EM28XX_R17_BGAIN, 0x20);
	em28xx_write_reg(dev, EM28XX_R18_ROFFSET, 0x00);
	em28xx_write_reg(dev, EM28XX_R19_GOFFSET, 0x00);
	return em28xx_write_reg(dev, EM28XX_R1A_BOFFSET, 0x00);
575 576
}

577
int em28xx_capture_start(struct em28xx *dev, int start)
578
{
579
	int rc;
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597

	if (dev->chip_id == CHIP_ID_EM2874) {
		/* The Transport Stream Enable Register moved in em2874 */
		if (!start) {
			rc = em28xx_write_reg_bits(dev, EM2874_R5F_TS_ENABLE,
						   0x00,
						   EM2874_TS1_CAPTURE_ENABLE);
			return rc;
		}

		/* Enable Transport Stream */
		rc = em28xx_write_reg_bits(dev, EM2874_R5F_TS_ENABLE,
					   EM2874_TS1_CAPTURE_ENABLE,
					   EM2874_TS1_CAPTURE_ENABLE);
		return rc;
	}


598 599
	/* FIXME: which is the best order? */
	/* video registers are sampled by VREF */
600
	rc = em28xx_write_reg_bits(dev, EM28XX_R0C_USBSUSP,
601 602 603 604 605 606
				   start ? 0x10 : 0x00, 0x10);
	if (rc < 0)
		return rc;

	if (!start) {
		/* disable video capture */
607
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x27);
608
		return rc;
609 610
	}

611
	/* enable video capture */
612
	rc = em28xx_write_reg(dev, 0x48, 0x00);
613

614
	if (dev->mode == EM28XX_ANALOG_MODE)
615
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x67);
616
	else
617
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x37);
618

619
	msleep(6);
620 621

	return rc;
622 623
}

624
int em28xx_outfmt_set_yuv422(struct em28xx *dev)
625
{
626 627 628
	em28xx_write_reg(dev, EM28XX_R27_OUTFMT, 0x34);
	em28xx_write_reg(dev, EM28XX_R10_VINMODE, 0x10);
	return em28xx_write_reg(dev, EM28XX_R11_VINCTRL, 0x11);
629 630
}

631 632
static int em28xx_accumulator_set(struct em28xx *dev, u8 xmin, u8 xmax,
				  u8 ymin, u8 ymax)
633
{
634 635
	em28xx_coredbg("em28xx Scale: (%d,%d)-(%d,%d)\n",
			xmin, ymin, xmax, ymax);
636

637 638 639 640
	em28xx_write_regs(dev, EM28XX_R28_XMIN, &xmin, 1);
	em28xx_write_regs(dev, EM28XX_R29_XMAX, &xmax, 1);
	em28xx_write_regs(dev, EM28XX_R2A_YMIN, &ymin, 1);
	return em28xx_write_regs(dev, EM28XX_R2B_YMAX, &ymax, 1);
641 642
}

643
static int em28xx_capture_area_set(struct em28xx *dev, u8 hstart, u8 vstart,
644 645 646 647 648 649
				   u16 width, u16 height)
{
	u8 cwidth = width;
	u8 cheight = height;
	u8 overflow = (height >> 7 & 0x02) | (width >> 8 & 0x01);

650 651
	em28xx_coredbg("em28xx Area Set: (%d,%d)\n",
			(width | (overflow & 2) << 7),
652 653
			(height | (overflow & 1) << 8));

654 655 656 657 658
	em28xx_write_regs(dev, EM28XX_R1C_HSTART, &hstart, 1);
	em28xx_write_regs(dev, EM28XX_R1D_VSTART, &vstart, 1);
	em28xx_write_regs(dev, EM28XX_R1E_CWIDTH, &cwidth, 1);
	em28xx_write_regs(dev, EM28XX_R1F_CHEIGHT, &cheight, 1);
	return em28xx_write_regs(dev, EM28XX_R1B_OFLOW, &overflow, 1);
659 660
}

661
static int em28xx_scaler_set(struct em28xx *dev, u16 h, u16 v)
662
{
663 664
	u8 mode;
	/* the em2800 scaler only supports scaling down to 50% */
665
	if (dev->board.is_em2800)
666 667 668 669 670
		mode = (v ? 0x20 : 0x00) | (h ? 0x10 : 0x00);
	else {
		u8 buf[2];
		buf[0] = h;
		buf[1] = h >> 8;
671
		em28xx_write_regs(dev, EM28XX_R30_HSCALELOW, (char *)buf, 2);
672 673
		buf[0] = v;
		buf[1] = v >> 8;
674
		em28xx_write_regs(dev, EM28XX_R32_VSCALELOW, (char *)buf, 2);
675 676
		/* it seems that both H and V scalers must be active
		   to work correctly */
677
		mode = (h || v)? 0x30: 0x00;
678
	}
679
	return em28xx_write_reg_bits(dev, EM28XX_R26_COMPR, mode, 0x30);
680 681 682
}

/* FIXME: this only function read values from dev */
683
int em28xx_resolution_set(struct em28xx *dev)
684 685 686 687 688
{
	int width, height;
	width = norm_maxw(dev);
	height = norm_maxh(dev) >> 1;

689 690 691 692
	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);
693 694
}

695
int em28xx_set_alternate(struct em28xx *dev)
696 697
{
	int errCode, prev_alt = dev->alt;
698
	int i;
699
	unsigned int min_pkt_size = dev->width * 2 + 4;
700

701
	/* When image size is bigger than a certain value,
702 703 704
	   the frame size should be increased, otherwise, only
	   green screen will be received.
	 */
705
	if (dev->width * 2 * dev->height > 720 * 240 * 2)
706 707
		min_pkt_size *= 2;

708 709 710 711
	for (i = 0; i < dev->num_alt; i++) {
		/* stop when the selected alt setting offers enough bandwidth */
		if (dev->alt_max_pkt_size[i] >= min_pkt_size) {
			dev->alt = i;
712
			break;
713 714 715 716 717 718 719
		/* otherwise make sure that we end up with the maximum bandwidth
		   because the min_pkt_size equation might be wrong...
		*/
		} else if (dev->alt_max_pkt_size[i] >
			   dev->alt_max_pkt_size[dev->alt])
			dev->alt = i;
	}
720 721

	if (dev->alt != prev_alt) {
722 723
		em28xx_coredbg("minimum isoc packet size: %u (alt=%d)\n",
				min_pkt_size, dev->alt);
724
		dev->max_pkt_size = dev->alt_max_pkt_size[dev->alt];
725 726
		em28xx_coredbg("setting alternate %d with wMaxPacketSize=%u\n",
			       dev->alt, dev->max_pkt_size);
727 728
		errCode = usb_set_interface(dev->udev, 0, dev->alt);
		if (errCode < 0) {
729
			em28xx_errdev("cannot change alternate number to %d (error=%i)\n",
730
					dev->alt, errCode);
731 732 733 734 735
			return errCode;
		}
	}
	return 0;
}
736

737 738 739 740 741 742 743
int em28xx_gpio_set(struct em28xx *dev, struct em28xx_reg_seq *gpio)
{
	int rc = 0;

	if (!gpio)
		return rc;

744 745 746 747 748 749 750 751
	if (dev->mode != EM28XX_SUSPEND) {
		em28xx_write_reg(dev, 0x48, 0x00);
		if (dev->mode == EM28XX_ANALOG_MODE)
			em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x67);
		else
			em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x37);
		msleep(6);
	}
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775

	/* Send GPIO reset sequences specified at board entry */
	while (gpio->sleep >= 0) {
		if (gpio->reg >= 0) {
			rc = em28xx_write_reg_bits(dev,
						   gpio->reg,
						   gpio->val,
						   gpio->mask);
			if (rc < 0)
				return rc;
		}
		if (gpio->sleep > 0)
			msleep(gpio->sleep);

		gpio++;
	}
	return rc;
}

int em28xx_set_mode(struct em28xx *dev, enum em28xx_mode set_mode)
{
	if (dev->mode == set_mode)
		return 0;

776
	if (set_mode == EM28XX_SUSPEND) {
777
		dev->mode = set_mode;
778 779 780 781

		/* FIXME: add suspend support for ac97 */

		return em28xx_gpio_set(dev, dev->board.suspend_gpio);
782 783 784 785 786
	}

	dev->mode = set_mode;

	if (dev->mode == EM28XX_DIGITAL_MODE)
787
		return em28xx_gpio_set(dev, dev->board.dvb_gpio);
788
	else
789
		return em28xx_gpio_set(dev, INPUT(dev->ctl_input)->gpio);
790 791 792
}
EXPORT_SYMBOL_GPL(em28xx_set_mode);

793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
/* ------------------------------------------------------------------
	URB control
   ------------------------------------------------------------------*/

/*
 * IRQ callback, called by URB callback
 */
static void em28xx_irq_callback(struct urb *urb)
{
	struct em28xx_dmaqueue  *dma_q = urb->context;
	struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
	int rc, i;

	/* Copy data from URB */
	spin_lock(&dev->slock);
	rc = dev->isoc_ctl.isoc_copy(dev, urb);
	spin_unlock(&dev->slock);

	/* Reset urb buffers */
	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;

	urb->status = usb_submit_urb(urb, GFP_ATOMIC);
	if (urb->status) {
820 821
		em28xx_isocdbg("urb resubmit failed (error=%i)\n",
			       urb->status);
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
	}
}

/*
 * Stop and Deallocate URBs
 */
void em28xx_uninit_isoc(struct em28xx *dev)
{
	struct urb *urb;
	int i;

	em28xx_isocdbg("em28xx: called em28xx_uninit_isoc\n");

	dev->isoc_ctl.nfields = -1;
	for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
		urb = dev->isoc_ctl.urb[i];
		if (urb) {
			usb_kill_urb(urb);
			usb_unlink_urb(urb);
			if (dev->isoc_ctl.transfer_buffer[i]) {
				usb_buffer_free(dev->udev,
843 844 845
					urb->transfer_buffer_length,
					dev->isoc_ctl.transfer_buffer[i],
					urb->transfer_dma);
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
			}
			usb_free_urb(urb);
			dev->isoc_ctl.urb[i] = NULL;
		}
		dev->isoc_ctl.transfer_buffer[i] = NULL;
	}

	kfree(dev->isoc_ctl.urb);
	kfree(dev->isoc_ctl.transfer_buffer);

	dev->isoc_ctl.urb = NULL;
	dev->isoc_ctl.transfer_buffer = NULL;
	dev->isoc_ctl.num_bufs = 0;

	em28xx_capture_start(dev, 0);
}
EXPORT_SYMBOL_GPL(em28xx_uninit_isoc);

/*
 * Allocate URBs and start IRQ
 */
int em28xx_init_isoc(struct em28xx *dev, int max_packets,
		     int num_bufs, int max_pkt_size,
869
		     int (*isoc_copy) (struct em28xx *dev, struct urb *urb))
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
{
	struct em28xx_dmaqueue *dma_q = &dev->vidq;
	int i;
	int sb_size, pipe;
	struct urb *urb;
	int j, k;
	int rc;

	em28xx_isocdbg("em28xx: called em28xx_prepare_isoc\n");

	/* De-allocates all pending stuff */
	em28xx_uninit_isoc(dev);

	dev->isoc_ctl.isoc_copy = isoc_copy;
	dev->isoc_ctl.num_bufs = num_bufs;

	dev->isoc_ctl.urb = kzalloc(sizeof(void *)*num_bufs,  GFP_KERNEL);
	if (!dev->isoc_ctl.urb) {
		em28xx_errdev("cannot alloc memory for usb buffers\n");
		return -ENOMEM;
	}

	dev->isoc_ctl.transfer_buffer = kzalloc(sizeof(void *)*num_bufs,
					      GFP_KERNEL);
894
	if (!dev->isoc_ctl.transfer_buffer) {
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
		em28xx_errdev("cannot allocate memory for usbtransfer\n");
		kfree(dev->isoc_ctl.urb);
		return -ENOMEM;
	}

	dev->isoc_ctl.max_pkt_size = max_pkt_size;
	dev->isoc_ctl.buf = NULL;

	sb_size = max_packets * dev->isoc_ctl.max_pkt_size;

	/* allocate urbs and transfer buffers */
	for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
		urb = usb_alloc_urb(max_packets, GFP_KERNEL);
		if (!urb) {
			em28xx_err("cannot alloc isoc_ctl.urb %i\n", i);
			em28xx_uninit_isoc(dev);
			return -ENOMEM;
		}
		dev->isoc_ctl.urb[i] = urb;

		dev->isoc_ctl.transfer_buffer[i] = usb_buffer_alloc(dev->udev,
			sb_size, GFP_KERNEL, &urb->transfer_dma);
		if (!dev->isoc_ctl.transfer_buffer[i]) {
			em28xx_err("unable to allocate %i bytes for transfer"
					" buffer %i%s\n",
					sb_size, i,
					in_interrupt()?" while in int":"");
			em28xx_uninit_isoc(dev);
			return -ENOMEM;
		}
		memset(dev->isoc_ctl.transfer_buffer[i], 0, sb_size);

		/* FIXME: this is a hack - should be
			'desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK'
			should also be using 'desc.bInterval'
		 */
931
		pipe = usb_rcvisocpipe(dev->udev,
932
			dev->mode == EM28XX_ANALOG_MODE ? 0x82 : 0x84);
933

934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951
		usb_fill_int_urb(urb, dev->udev, pipe,
				 dev->isoc_ctl.transfer_buffer[i], sb_size,
				 em28xx_irq_callback, dma_q, 1);

		urb->number_of_packets = max_packets;
		urb->transfer_flags = URB_ISO_ASAP;

		k = 0;
		for (j = 0; j < max_packets; j++) {
			urb->iso_frame_desc[j].offset = k;
			urb->iso_frame_desc[j].length =
						dev->isoc_ctl.max_pkt_size;
			k += dev->isoc_ctl.max_pkt_size;
		}
	}

	init_waitqueue_head(&dma_q->wq);

952
	em28xx_capture_start(dev, 1);
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967

	/* submit urbs and enables IRQ */
	for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
		rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
		if (rc) {
			em28xx_err("submit of urb %i failed (error=%i)\n", i,
				   rc);
			em28xx_uninit_isoc(dev);
			return rc;
		}
	}

	return 0;
}
EXPORT_SYMBOL_GPL(em28xx_init_isoc);