em28xx-core.c 30.8 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

   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>
27
#include <linux/slab.h>
28 29
#include <linux/usb.h>
#include <linux/vmalloc.h>
30
#include <media/v4l2-common.h>
31

32
#include "em28xx.h"
33 34 35

/* #define ENABLE_DEBUG_ISOC_FRAMES */

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

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

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

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

54
static int alt;
55 56 57
module_param(alt, int, 0644);
MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");

58 59 60 61
static unsigned int disable_vbi;
module_param(disable_vbi, int, 0644);
MODULE_PARM_DESC(disable_vbi, "disable vbi support");

62 63 64 65 66 67
/* FIXME */
#define em28xx_isocdbg(fmt, arg...) do {\
	if (core_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
			 dev->name, __func__ , ##arg); } while (0)

68
/*
69
 * em28xx_read_reg_req()
70 71
 * reads data from the usb device specifying bRequest
 */
72
int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
73 74
				   char *buf, int len)
{
75 76
	int ret;
	int pipe = usb_rcvctrlpipe(dev->udev, 0);
77

78
	if (dev->state & DEV_DISCONNECTED)
79 80 81 82
		return -ENODEV;

	if (len > URB_MAX_CTRL_SIZE)
		return -EINVAL;
83

84
	if (reg_debug) {
85
		printk(KERN_DEBUG "(pipe 0x%08x): "
86 87 88 89 90 91 92
			"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);
	}
93

94
	mutex_lock(&dev->ctrl_urb_lock);
95
	ret = usb_control_msg(dev->udev, pipe, req,
96
			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
97 98 99 100
			      0x0000, reg, dev->urb_buf, len, HZ);
	if (ret < 0) {
		if (reg_debug)
			printk(" failed!\n");
101
		mutex_unlock(&dev->ctrl_urb_lock);
102 103 104 105 106
		return ret;
	}

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

108 109
	mutex_unlock(&dev->ctrl_urb_lock);

110
	if (reg_debug) {
111 112 113
		int byte;

		printk("<<<");
114
		for (byte = 0; byte < len; byte++)
115 116
			printk(" %02x", (unsigned char)buf[byte]);
		printk("\n");
117 118 119 120 121 122
	}

	return ret;
}

/*
123
 * em28xx_read_reg_req()
124 125
 * reads data from the usb device specifying bRequest
 */
126
int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg)
127 128
{
	int ret;
129
	u8 val;
130

131 132
	ret = em28xx_read_reg_req_len(dev, req, reg, &val, 1);
	if (ret < 0)
133
		return ret;
134 135 136 137

	return val;
}

138
int em28xx_read_reg(struct em28xx *dev, u16 reg)
139
{
140
	return em28xx_read_reg_req(dev, USB_REQ_GET_STATUS, reg);
141 142 143
}

/*
144
 * em28xx_write_regs_req()
145 146
 * sends data to the usb device, specifying bRequest
 */
147
int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
148 149 150
				 int len)
{
	int ret;
151
	int pipe = usb_sndctrlpipe(dev->udev, 0);
152

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

156
	if ((len < 1) || (len > URB_MAX_CTRL_SIZE))
157
		return -EINVAL;
158

159
	if (reg_debug) {
160 161
		int byte;

162
		printk(KERN_DEBUG "(pipe 0x%08x): "
163 164 165 166 167 168 169 170 171
			"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]);
172
		printk("\n");
173 174
	}

175
	mutex_lock(&dev->ctrl_urb_lock);
176
	memcpy(dev->urb_buf, buf, len);
177
	ret = usb_control_msg(dev->udev, pipe, req,
178
			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
179
			      0x0000, reg, dev->urb_buf, len, HZ);
180
	mutex_unlock(&dev->ctrl_urb_lock);
181

182 183 184
	if (dev->wait_after_write)
		msleep(dev->wait_after_write);

185 186 187
	return ret;
}

188
int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len)
189
{
190 191 192 193 194 195 196 197 198 199
	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) {
200
		if (reg == dev->reg_gpo_num)
201
			dev->reg_gpo = buf[0];
202
		else if (reg == dev->reg_gpio_num)
203 204 205 206
			dev->reg_gpio = buf[0];
	}

	return rc;
207 208
}

209 210 211 212 213 214
/* Write a single register */
int em28xx_write_reg(struct em28xx *dev, u16 reg, u8 val)
{
	return em28xx_write_regs(dev, reg, &val, 1);
}

215
/*
216
 * em28xx_write_reg_bits()
217 218 219
 * sets only some bits (specified by bitmask) of a register, by first reading
 * the actual value
 */
220
int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,
221 222 223 224
				 u8 bitmask)
{
	int oldval;
	u8 newval;
225

226
	/* Uses cache for gpo/gpio registers */
227
	if (reg == dev->reg_gpo_num)
228
		oldval = dev->reg_gpo;
229
	else if (reg == dev->reg_gpio_num)
230 231 232
		oldval = dev->reg_gpio;
	else
		oldval = em28xx_read_reg(dev, reg);
233 234

	if (oldval < 0)
235
		return oldval;
236

237
	newval = (((u8) oldval) & ~bitmask) | (val & bitmask);
238

239
	return em28xx_write_regs(dev, reg, &newval, 1);
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
/*
 * 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!)
 */
268
int em28xx_read_ac97(struct em28xx *dev, u8 reg)
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
{
	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);
}

290
/*
291
 * em28xx_write_ac97()
292 293
 * write a 16 bit value to the specified AC97 address (LSB first!)
 */
294
int em28xx_write_ac97(struct em28xx *dev, u8 reg, u16 val)
295
{
296
	int ret;
297
	u8 addr = reg & 0x7f;
298 299 300 301 302 303 304
	__le16 value;

	value = cpu_to_le16(val);

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

306
	ret = em28xx_write_regs(dev, EM28XX_R40_AC97LSB, (u8 *) &value, 2);
307
	if (ret < 0)
308
		return ret;
309

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

314 315
	return 0;
}
316

317 318
struct em28xx_vol_table {
	enum em28xx_amux mux;
319 320 321
	u8		 reg;
};

322
static struct em28xx_vol_table inputs[] = {
323 324 325 326 327 328 329 330 331 332
	{ 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)
333
{
334 335
	int ret, i;
	enum em28xx_amux amux = dev->ctl_ainput;
336

337 338 339 340
	/* 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)
341
		amux = EM28XX_AMUX_VIDEO;
342

343 344
	/* Mute all entres but the one that were selected */
	for (i = 0; i < ARRAY_SIZE(inputs); i++) {
345
		if (amux == inputs[i].mux)
346 347 348
			ret = em28xx_write_ac97(dev, inputs[i].reg, 0x0808);
		else
			ret = em28xx_write_ac97(dev, inputs[i].reg, 0x8000);
349

350 351 352 353 354
		if (ret < 0)
			em28xx_warn("couldn't setup AC97 register %d\n",
				     inputs[i].reg);
	}
	return 0;
355 356
}

357
static int em28xx_set_audio_source(struct em28xx *dev)
358
{
359
	int ret;
360 361
	u8 input;

362
	if (dev->board.is_em2800) {
363
		if (dev->ctl_ainput == EM28XX_AMUX_VIDEO)
364
			input = EM2800_AUDIO_SRC_TUNER;
365 366
		else
			input = EM2800_AUDIO_SRC_LINE;
367

368
		ret = em28xx_write_regs(dev, EM2800_R08_AUDIOSRC, &input, 1);
369 370 371 372
		if (ret < 0)
			return ret;
	}

373
	if (dev->board.has_msp34xx)
374 375 376 377 378 379
		input = EM28XX_AUDIO_SRC_TUNER;
	else {
		switch (dev->ctl_ainput) {
		case EM28XX_AMUX_VIDEO:
			input = EM28XX_AUDIO_SRC_TUNER;
			break;
380
		default:
381 382 383 384 385
			input = EM28XX_AUDIO_SRC_LINE;
			break;
		}
	}

386 387 388 389 390
	if (dev->board.mute_gpio && dev->mute)
		em28xx_gpio_set(dev, dev->board.mute_gpio);
	else
		em28xx_gpio_set(dev, INPUT(dev->ctl_input)->gpio);

391
	ret = em28xx_write_reg_bits(dev, EM28XX_R0E_AUDIOSRC, input, 0xc0);
392 393
	if (ret < 0)
		return ret;
394
	msleep(5);
395

396 397 398
	switch (dev->audio_mode.ac97) {
	case EM28XX_NO_AC97:
		break;
399 400
	default:
		ret = set_ac97_input(dev);
401
	}
402

403
	return ret;
404 405
}

406
static const struct em28xx_vol_table outputs[] = {
407 408 409 410 411
	{ 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 },
412 413
};

414
int em28xx_audio_analog_set(struct em28xx *dev)
415
{
416
	int ret, i;
417
	u8 xclk;
418

419 420
	if (!dev->audio_mode.has_audio)
		return 0;
421

422 423 424
	/* It is assumed that all devices use master volume for output.
	   It would be possible to use also line output.
	 */
425
	if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
426 427
		/* Mute all outputs */
		for (i = 0; i < ARRAY_SIZE(outputs); i++) {
428
			ret = em28xx_write_ac97(dev, outputs[i].reg, 0x8000);
429 430
			if (ret < 0)
				em28xx_warn("couldn't setup AC97 register %d\n",
431
				     outputs[i].reg);
432
		}
433
	}
434

435
	xclk = dev->board.xclk & 0x7f;
436
	if (!dev->mute)
437
		xclk |= EM28XX_XCLK_AUDIO_UNMUTE;
438

439
	ret = em28xx_write_reg(dev, EM28XX_R0F_XCLK, xclk);
440 441
	if (ret < 0)
		return ret;
442
	msleep(10);
443 444 445

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

447 448 449 450
	/* Sets volume */
	if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
		int vol;

451 452 453 454
		em28xx_write_ac97(dev, AC97_POWER_DOWN_CTRL, 0x4200);
		em28xx_write_ac97(dev, AC97_EXT_AUD_CTRL, 0x0031);
		em28xx_write_ac97(dev, AC97_PCM_IN_SRATE, 0xbb80);

455 456 457 458 459 460 461 462
		/* 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 */
463 464 465 466 467 468 469 470
		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);
		}
471 472 473 474

		if (dev->ctl_aoutput & EM28XX_AOUT_PCM_IN) {
			int sel = ac97_return_record_select(dev->ctl_aoutput);

475 476
			/* Use the same input for both left and right
			   channels */
477 478 479 480
			sel |= (sel << 8);

			em28xx_write_ac97(dev, AC97_RECORD_SELECT, sel);
		}
481
	}
482

483 484 485
	return ret;
}
EXPORT_SYMBOL_GPL(em28xx_audio_analog_set);
486

487 488 489
int em28xx_audio_setup(struct em28xx *dev)
{
	int vid1, vid2, feat, cfg;
490
	u32 vid;
491

492 493
	if (dev->chip_id == CHIP_ID_EM2870 || dev->chip_id == CHIP_ID_EM2874
		|| dev->chip_id == CHIP_ID_EM28174) {
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
		/* 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);
509 510 511
	em28xx_info("Config register raw data: 0x%02x\n", cfg);
	if (cfg < 0) {
		/* Register read error?  */
512
		cfg = EM28XX_CHIPCFG_AC97; /* Be conservative */
513 514 515 516 517 518 519
	} else if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) == 0x00) {
		/* The device doesn't have vendor audio at all */
		dev->has_alsa_audio = 0;
		dev->audio_mode.has_audio = 0;
		return 0;
	} else if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) ==
		   EM28XX_CHIPCFG_I2S_3_SAMPRATES) {
520 521
		em28xx_info("I2S Audio (3 sample rates)\n");
		dev->audio_mode.i2s_3rates = 1;
522 523
	} else if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) ==
		   EM28XX_CHIPCFG_I2S_5_SAMPRATES) {
524 525 526 527
		em28xx_info("I2S Audio (5 sample rates)\n");
		dev->audio_mode.i2s_5rates = 1;
	}

528 529
	if ((cfg & EM28XX_CHIPCFG_AUDIOMASK) != EM28XX_CHIPCFG_AC97) {
		/* Skip the code that does AC97 vendor detection */
530 531 532 533 534 535 536 537
		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) {
538 539 540 541 542
		/*
		 * Device likely doesn't support AC97
		 * Note: (some) em2800 devices without eeprom reports 0x91 on
		 *	 CHIPCFG register, even not having an AC97 chip
		 */
543
		em28xx_warn("AC97 chip type couldn't be determined\n");
544 545 546
		dev->audio_mode.ac97 = EM28XX_NO_AC97;
		dev->has_alsa_audio = 0;
		dev->audio_mode.has_audio = 0;
547 548 549 550 551 552 553
		goto init_audio;
	}

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

554 555 556 557
	vid = vid1 << 16 | vid2;

	dev->audio_mode.ac97_vendor_id = vid;
	em28xx_warn("AC97 vendor ID = 0x%08x\n", vid);
558 559 560 561 562 563 564 565

	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);

566 567
	/* Try to identify what audio processor we have */
	if ((vid == 0xffffffff) && (feat == 0x6a90))
568
		dev->audio_mode.ac97 = EM28XX_AC97_EM202;
569 570
	else if ((vid >> 8) == 0x838476)
		dev->audio_mode.ac97 = EM28XX_AC97_SIGMATEL;
571 572 573 574 575 576 577 578 579 580

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;
581 582 583 584
	case EM28XX_AC97_SIGMATEL:
		em28xx_info("Sigmatel audio processor detected(stac 97%02x)\n",
			    dev->audio_mode.ac97_vendor_id & 0xff);
		break;
585 586 587 588 589 590 591 592 593 594 595
	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);

596
int em28xx_colorlevels_set_default(struct em28xx *dev)
597
{
598 599 600 601 602 603 604 605 606 607 608 609 610 611
	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);
612 613
}

614
int em28xx_capture_start(struct em28xx *dev, int start)
615
{
616
	int rc;
617

618
	if (dev->chip_id == CHIP_ID_EM2874 || dev->chip_id == CHIP_ID_EM28174) {
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
		/* 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;
	}


635 636
	/* FIXME: which is the best order? */
	/* video registers are sampled by VREF */
637
	rc = em28xx_write_reg_bits(dev, EM28XX_R0C_USBSUSP,
638 639 640 641 642 643
				   start ? 0x10 : 0x00, 0x10);
	if (rc < 0)
		return rc;

	if (!start) {
		/* disable video capture */
644
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x27);
645
		return rc;
646 647
	}

648 649 650
	if (dev->board.is_webcam)
		rc = em28xx_write_reg(dev, 0x13, 0x0c);

651
	/* enable video capture */
652
	rc = em28xx_write_reg(dev, 0x48, 0x00);
653

654
	if (dev->mode == EM28XX_ANALOG_MODE)
655
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x67);
656
	else
657
		rc = em28xx_write_reg(dev, EM28XX_R12_VINENABLE, 0x37);
658

659
	msleep(6);
660 661

	return rc;
662 663
}

664 665 666 667 668 669 670 671 672 673 674 675 676 677
int em28xx_vbi_supported(struct em28xx *dev)
{
	/* Modprobe option to manually disable */
	if (disable_vbi == 1)
		return 0;

	if (dev->chip_id == CHIP_ID_EM2860 ||
	    dev->chip_id == CHIP_ID_EM2883)
		return 1;

	/* Version of em28xx that does not support VBI */
	return 0;
}

678
int em28xx_set_outfmt(struct em28xx *dev)
679
{
680
	int ret;
681
	u8 vinctrl;
682 683

	ret = em28xx_write_reg_bits(dev, EM28XX_R27_OUTFMT,
684
				dev->format->reg | 0x20, 0xff);
685
	if (ret < 0)
686
			return ret;
687

688
	ret = em28xx_write_reg(dev, EM28XX_R10_VINMODE, dev->vinmode);
689 690 691
	if (ret < 0)
		return ret;

692 693 694 695
	vinctrl = dev->vinctl;
	if (em28xx_vbi_supported(dev) == 1) {
		vinctrl |= EM28XX_VINCTRL_VBI_RAW;
		em28xx_write_reg(dev, EM28XX_R34_VBI_START_H, 0x00);
696 697 698 699 700 701 702 703 704
		em28xx_write_reg(dev, EM28XX_R36_VBI_WIDTH, dev->vbi_width/4);
		em28xx_write_reg(dev, EM28XX_R37_VBI_HEIGHT, dev->vbi_height);
		if (dev->norm & V4L2_STD_525_60) {
			/* NTSC */
			em28xx_write_reg(dev, EM28XX_R35_VBI_START_V, 0x09);
		} else if (dev->norm & V4L2_STD_625_50) {
			/* PAL */
			em28xx_write_reg(dev, EM28XX_R35_VBI_START_V, 0x07);
		}
705 706 707
	}

	return em28xx_write_reg(dev, EM28XX_R11_VINCTRL, vinctrl);
708 709
}

710 711
static int em28xx_accumulator_set(struct em28xx *dev, u8 xmin, u8 xmax,
				  u8 ymin, u8 ymax)
712
{
713 714
	em28xx_coredbg("em28xx Scale: (%d,%d)-(%d,%d)\n",
			xmin, ymin, xmax, ymax);
715

716 717 718 719
	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);
720 721
}

722
static int em28xx_capture_area_set(struct em28xx *dev, u8 hstart, u8 vstart,
723 724 725 726 727 728
				   u16 width, u16 height)
{
	u8 cwidth = width;
	u8 cheight = height;
	u8 overflow = (height >> 7 & 0x02) | (width >> 8 & 0x01);

729 730
	em28xx_coredbg("em28xx Area Set: (%d,%d)\n",
			(width | (overflow & 2) << 7),
731 732
			(height | (overflow & 1) << 8));

733 734 735 736 737
	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);
738 739
}

740
static int em28xx_scaler_set(struct em28xx *dev, u16 h, u16 v)
741
{
742 743
	u8 mode;
	/* the em2800 scaler only supports scaling down to 50% */
744

745
	if (dev->board.is_em2800) {
746
		mode = (v ? 0x20 : 0x00) | (h ? 0x10 : 0x00);
747
	} else {
748
		u8 buf[2];
749

750 751
		buf[0] = h;
		buf[1] = h >> 8;
752
		em28xx_write_regs(dev, EM28XX_R30_HSCALELOW, (char *)buf, 2);
753

754 755
		buf[0] = v;
		buf[1] = v >> 8;
756
		em28xx_write_regs(dev, EM28XX_R32_VSCALELOW, (char *)buf, 2);
757 758
		/* it seems that both H and V scalers must be active
		   to work correctly */
759
		mode = (h || v) ? 0x30 : 0x00;
760
	}
761
	return em28xx_write_reg_bits(dev, EM28XX_R26_COMPR, mode, 0x30);
762 763 764
}

/* FIXME: this only function read values from dev */
765
int em28xx_resolution_set(struct em28xx *dev)
766 767 768
{
	int width, height;
	width = norm_maxw(dev);
769 770
	height = norm_maxh(dev);

771 772 773 774 775 776 777
	/* Properly setup VBI */
	dev->vbi_width = 720;
	if (dev->norm & V4L2_STD_525_60)
		dev->vbi_height = 12;
	else
		dev->vbi_height = 18;

778 779
	if (!dev->progressive)
		height >>= norm_maxh(dev);
780

781
	em28xx_set_outfmt(dev);
782 783


784
	em28xx_accumulator_set(dev, 1, (width - 4) >> 2, 1, (height - 4) >> 2);
785

786 787 788 789 790 791 792
	/* If we don't set the start position to 2 in VBI mode, we end up
	   with line 20/21 being YUYV encoded instead of being in 8-bit
	   greyscale.  The core of the issue is that line 21 (and line 23 for
	   PAL WSS) are inside of active video region, and as a result they
	   get the pixelformatting associated with that area.  So by cropping
	   it out, we end up with the same format as the rest of the VBI
	   region */
793
	if (em28xx_vbi_supported(dev) == 1)
794
		em28xx_capture_area_set(dev, 0, 2, width >> 2, height >> 2);
795 796
	else
		em28xx_capture_area_set(dev, 0, 0, width >> 2, height >> 2);
797

798
	return em28xx_scaler_set(dev, dev->hscale, dev->vscale);
799 800
}

801
int em28xx_set_alternate(struct em28xx *dev)
802 803
{
	int errCode, prev_alt = dev->alt;
804
	int i;
805
	unsigned int min_pkt_size = dev->width * 2 + 4;
806

807 808 809 810 811 812 813 814 815 816
	/*
	 * alt = 0 is used only for control messages, so, only values
	 * greater than 0 can be used for streaming.
	 */
	if (alt && alt < dev->num_alt) {
		em28xx_coredbg("alternate forced to %d\n", dev->alt);
		dev->alt = alt;
		goto set_alt;
	}

817
	/* When image size is bigger than a certain value,
818 819 820
	   the frame size should be increased, otherwise, only
	   green screen will be received.
	 */
821
	if (dev->width * 2 * dev->height > 720 * 240 * 2)
822 823
		min_pkt_size *= 2;

824 825 826 827
	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;
828
			break;
829 830 831 832 833 834 835
		/* 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;
	}
836

837
set_alt:
838
	if (dev->alt != prev_alt) {
839 840
		em28xx_coredbg("minimum isoc packet size: %u (alt=%d)\n",
				min_pkt_size, dev->alt);
841
		dev->max_pkt_size = dev->alt_max_pkt_size[dev->alt];
842 843
		em28xx_coredbg("setting alternate %d with wMaxPacketSize=%u\n",
			       dev->alt, dev->max_pkt_size);
844 845
		errCode = usb_set_interface(dev->udev, 0, dev->alt);
		if (errCode < 0) {
846
			em28xx_errdev("cannot change alternate number to %d (error=%i)\n",
847
					dev->alt, errCode);
848 849 850 851 852
			return errCode;
		}
	}
	return 0;
}
853

854 855 856 857 858 859 860
int em28xx_gpio_set(struct em28xx *dev, struct em28xx_reg_seq *gpio)
{
	int rc = 0;

	if (!gpio)
		return rc;

861 862 863 864 865 866 867 868
	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);
	}
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892

	/* 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;

893
	if (set_mode == EM28XX_SUSPEND) {
894
		dev->mode = set_mode;
895 896 897 898

		/* FIXME: add suspend support for ac97 */

		return em28xx_gpio_set(dev, dev->board.suspend_gpio);
899 900 901 902 903
	}

	dev->mode = set_mode;

	if (dev->mode == EM28XX_DIGITAL_MODE)
904
		return em28xx_gpio_set(dev, dev->board.dvb_gpio);
905
	else
906
		return em28xx_gpio_set(dev, INPUT(dev->ctl_input)->gpio);
907 908 909
}
EXPORT_SYMBOL_GPL(em28xx_set_mode);

910 911 912 913 914 915 916 917 918
/* ------------------------------------------------------------------
	URB control
   ------------------------------------------------------------------*/

/*
 * IRQ callback, called by URB callback
 */
static void em28xx_irq_callback(struct urb *urb)
{
919
	struct em28xx *dev = urb->context;
920 921
	int rc, i;

922 923 924 925 926 927 928 929 930 931 932 933 934
	switch (urb->status) {
	case 0:             /* success */
	case -ETIMEDOUT:    /* NAK */
		break;
	case -ECONNRESET:   /* kill */
	case -ENOENT:
	case -ESHUTDOWN:
		return;
	default:            /* error */
		em28xx_isocdbg("urb completition error %d.\n", urb->status);
		break;
	}

935 936 937 938 939 940 941 942 943 944 945 946 947 948
	/* 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) {
949 950
		em28xx_isocdbg("urb resubmit failed (error=%i)\n",
			       urb->status);
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
	}
}

/*
 * 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) {
968 969 970 971 972
			if (!irqs_disabled())
				usb_kill_urb(urb);
			else
				usb_unlink_urb(urb);

973
			if (dev->isoc_ctl.transfer_buffer[i]) {
974
				usb_free_coherent(dev->udev,
975 976 977
					urb->transfer_buffer_length,
					dev->isoc_ctl.transfer_buffer[i],
					urb->transfer_dma);
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
			}
			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,
1001
		     int (*isoc_copy) (struct em28xx *dev, struct urb *urb))
1002 1003
{
	struct em28xx_dmaqueue *dma_q = &dev->vidq;
1004
	struct em28xx_dmaqueue *vbi_dma_q = &dev->vbiq;
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
	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);
1027
	if (!dev->isoc_ctl.transfer_buffer) {
1028
		em28xx_errdev("cannot allocate memory for usb transfer\n");
1029 1030 1031 1032 1033
		kfree(dev->isoc_ctl.urb);
		return -ENOMEM;
	}

	dev->isoc_ctl.max_pkt_size = max_pkt_size;
1034 1035
	dev->isoc_ctl.vid_buf = NULL;
	dev->isoc_ctl.vbi_buf = NULL;
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048

	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;

1049
		dev->isoc_ctl.transfer_buffer[i] = usb_alloc_coherent(dev->udev,
1050 1051 1052 1053 1054
			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,
1055
					in_interrupt() ? " while in int" : "");
1056 1057 1058 1059 1060 1061 1062 1063 1064
			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'
		 */
1065
		pipe = usb_rcvisocpipe(dev->udev,
1066
			dev->mode == EM28XX_ANALOG_MODE ? 0x82 : 0x84);
1067

1068 1069
		usb_fill_int_urb(urb, dev->udev, pipe,
				 dev->isoc_ctl.transfer_buffer[i], sb_size,
1070
				 em28xx_irq_callback, dev, 1);
1071 1072

		urb->number_of_packets = max_packets;
1073
		urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084

		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);
1085
	init_waitqueue_head(&vbi_dma_q->wq);
1086

1087
	em28xx_capture_start(dev, 1);
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102

	/* 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);
1103

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
/* Determine the packet size for the DVB stream for the given device
   (underlying value programmed into the eeprom) */
int em28xx_isoc_dvb_max_packetsize(struct em28xx *dev)
{
	unsigned int chip_cfg2;
	unsigned int packet_size = 564;

	if (dev->chip_id == CHIP_ID_EM2874) {
		/* FIXME - for now assume 564 like it was before, but the
		   em2874 code should be added to return the proper value... */
		packet_size = 564;
1115 1116 1117 1118
	} else if (dev->chip_id == CHIP_ID_EM28174) {
		/* FIXME same as em2874. 564 was enough for 22 Mbit DVB-T
		   but too much for 44 Mbit DVB-C. */
		packet_size = 752;
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
	} else {
		/* TS max packet size stored in bits 1-0 of R01 */
		chip_cfg2 = em28xx_read_reg(dev, EM28XX_R01_CHIPCFG2);
		switch (chip_cfg2 & EM28XX_CHIPCFG2_TS_PACKETSIZE_MASK) {
		case EM28XX_CHIPCFG2_TS_PACKETSIZE_188:
			packet_size = 188;
			break;
		case EM28XX_CHIPCFG2_TS_PACKETSIZE_376:
			packet_size = 376;
			break;
		case EM28XX_CHIPCFG2_TS_PACKETSIZE_564:
			packet_size = 564;
			break;
		case EM28XX_CHIPCFG2_TS_PACKETSIZE_752:
			packet_size = 752;
			break;
		}
	}

	em28xx_coredbg("dvb max packet size=%d\n", packet_size);
	return packet_size;
}
EXPORT_SYMBOL_GPL(em28xx_isoc_dvb_max_packetsize);

1143 1144 1145 1146 1147 1148
/*
 * em28xx_wake_i2c()
 * configure i2c attached devices
 */
void em28xx_wake_i2c(struct em28xx *dev)
{
1149 1150 1151
	v4l2_device_call_all(&dev->v4l2_dev, 0, core,  reset, 0);
	v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
			INPUT(dev->ctl_input)->vmux, 0, 0);
1152
	v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_stream, 0);
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
}

/*
 * Device control list
 */

static LIST_HEAD(em28xx_devlist);
static DEFINE_MUTEX(em28xx_devlist_mutex);

/*
 * em28xx_realease_resources()
 * unregisters the v4l2,i2c and usb devices
 * called when the device gets disconected or at module unload
*/
void em28xx_remove_from_devlist(struct em28xx *dev)
{
	mutex_lock(&em28xx_devlist_mutex);
	list_del(&dev->devlist);
	mutex_unlock(&em28xx_devlist_mutex);
};

void em28xx_add_into_devlist(struct em28xx *dev)
{
	mutex_lock(&em28xx_devlist_mutex);
	list_add_tail(&dev->devlist, &em28xx_devlist);
	mutex_unlock(&em28xx_devlist_mutex);
};

/*
 * Extension interface
 */

static LIST_HEAD(em28xx_extension_devlist);

int em28xx_register_extension(struct em28xx_ops *ops)
{
	struct em28xx *dev = NULL;

	mutex_lock(&em28xx_devlist_mutex);
	list_add_tail(&ops->next, &em28xx_extension_devlist);
	list_for_each_entry(dev, &em28xx_devlist, devlist) {
1194
		ops->init(dev);
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
	}
	printk(KERN_INFO "Em28xx: Initialized (%s) extension\n", ops->name);
	mutex_unlock(&em28xx_devlist_mutex);
	return 0;
}
EXPORT_SYMBOL(em28xx_register_extension);

void em28xx_unregister_extension(struct em28xx_ops *ops)
{
	struct em28xx *dev = NULL;

	mutex_lock(&em28xx_devlist_mutex);
	list_for_each_entry(dev, &em28xx_devlist, devlist) {
1208
		ops->fini(dev);
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
	}
	printk(KERN_INFO "Em28xx: Removed (%s) extension\n", ops->name);
	list_del(&ops->next);
	mutex_unlock(&em28xx_devlist_mutex);
}
EXPORT_SYMBOL(em28xx_unregister_extension);

void em28xx_init_extension(struct em28xx *dev)
{
	struct em28xx_ops *ops = NULL;

1220
	mutex_lock(&em28xx_devlist_mutex);
1221 1222 1223 1224 1225 1226
	if (!list_empty(&em28xx_extension_devlist)) {
		list_for_each_entry(ops, &em28xx_extension_devlist, next) {
			if (ops->init)
				ops->init(dev);
		}
	}
1227
	mutex_unlock(&em28xx_devlist_mutex);
1228 1229 1230 1231 1232 1233
}

void em28xx_close_extension(struct em28xx *dev)
{
	struct em28xx_ops *ops = NULL;

1234
	mutex_lock(&em28xx_devlist_mutex);
1235 1236 1237 1238 1239 1240
	if (!list_empty(&em28xx_extension_devlist)) {
		list_for_each_entry(ops, &em28xx_extension_devlist, next) {
			if (ops->fini)
				ops->fini(dev);
		}
	}
1241
	mutex_unlock(&em28xx_devlist_mutex);
1242
}