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

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

   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/module.h>
#include <linux/delay.h>
#include <linux/i2c.h>
#include <linux/usb.h>
#include <media/tuner.h>
31
#include <media/msp3400.h>
32 33
#include <media/saa7115.h>
#include <media/tvp5150.h>
34
#include <media/tveeprom.h>
35
#include <media/audiochip.h>
36
#include <media/v4l2-common.h>
37

38
#include "em28xx.h"
39
#include "tuner-xc2028.h"
40

41 42 43 44 45 46 47 48 49 50
static int tuner = -1;
module_param(tuner, int, 0444);
MODULE_PARM_DESC(tuner, "tuner type");

struct em28xx_hash_table {
	unsigned long hash;
	unsigned int  model;
	unsigned int  tuner;
};

51
struct em28xx_board em28xx_boards[] = {
52 53 54 55 56 57
	[EM2800_BOARD_UNKNOWN] = {
		.name         = "Unknown EM2800 video grabber",
		.is_em2800    = 1,
		.vchannels    = 2,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
58
		.decoder      = EM28XX_SAA7113,
59
		.input           = { {
60
			.type     = EM28XX_VMUX_COMPOSITE1,
61
			.vmux     = SAA7115_COMPOSITE0,
62
			.amux     = 1,
63
		}, {
64
			.type     = EM28XX_VMUX_SVIDEO,
65
			.vmux     = SAA7115_SVIDEO3,
66
			.amux     = 1,
67
		} },
68 69
	},
	[EM2820_BOARD_UNKNOWN] = {
70
		.name         = "Unknown EM2750/28xx video grabber",
71 72
		.is_em2800    = 0,
	},
73
	[EM2820_BOARD_KWORLD_PVRTV2800RF] = {
74
		.name         = "Kworld PVR TV 2800 RF",
75 76 77 78 79
		.is_em2800    = 0,
		.vchannels    = 2,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
		.decoder      = EM28XX_SAA7113,
80
		.input           = { {
81
			.type     = EM28XX_VMUX_COMPOSITE1,
82
			.vmux     = SAA7115_COMPOSITE0,
83
			.amux     = 1,
84
		}, {
85
			.type     = EM28XX_VMUX_SVIDEO,
86
			.vmux     = SAA7115_SVIDEO3,
87
			.amux     = 1,
88
		} },
89
	},
90 91 92 93 94 95
	[EM2820_BOARD_TERRATEC_CINERGY_250] = {
		.name         = "Terratec Cinergy 250 USB",
		.vchannels    = 3,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
96
		.decoder      = EM28XX_SAA7113,
97
		.input          = { {
98
			.type     = EM28XX_VMUX_TELEVISION,
99
			.vmux     = SAA7115_COMPOSITE2,
100
			.amux     = 1,
101
		}, {
102
			.type     = EM28XX_VMUX_COMPOSITE1,
103
			.vmux     = SAA7115_COMPOSITE0,
104
			.amux     = 1,
105
		}, {
106
			.type     = EM28XX_VMUX_SVIDEO,
107
			.vmux     = SAA7115_SVIDEO3,
108
			.amux     = 1,
109
		} },
110 111 112 113 114 115 116
	},
	[EM2820_BOARD_PINNACLE_USB_2] = {
		.name         = "Pinnacle PCTV USB 2",
		.vchannels    = 3,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
117
		.decoder      = EM28XX_SAA7113,
118
		.input          = { {
119
			.type     = EM28XX_VMUX_TELEVISION,
120
			.vmux     = SAA7115_COMPOSITE2,
121
			.amux     = 0,
122
		}, {
123
			.type     = EM28XX_VMUX_COMPOSITE1,
124
			.vmux     = SAA7115_COMPOSITE0,
125
			.amux     = 1,
126
		}, {
127
			.type     = EM28XX_VMUX_SVIDEO,
128
			.vmux     = SAA7115_SVIDEO3,
129
			.amux     = 1,
130
		} },
131 132 133 134 135
	},
	[EM2820_BOARD_HAUPPAUGE_WINTV_USB_2] = {
		.name         = "Hauppauge WinTV USB 2",
		.vchannels    = 3,
		.tuner_type   = TUNER_PHILIPS_FM1236_MK3,
136 137 138
		.tda9887_conf = TDA9887_PRESENT |
				TDA9887_PORT1_ACTIVE|
				TDA9887_PORT2_ACTIVE,
139
		.has_tuner    = 1,
140
		.decoder      = EM28XX_TVP5150,
141 142
		.has_msp34xx  = 1,
		/*FIXME: S-Video not tested */
143
		.input          = { {
144
			.type     = EM28XX_VMUX_TELEVISION,
145
			.vmux     = TVP5150_COMPOSITE0,
146
			.amux     = MSP_INPUT_DEFAULT,
147
		}, {
148
			.type     = EM28XX_VMUX_SVIDEO,
149
			.vmux     = TVP5150_SVIDEO,
150 151
			.amux     = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER1,
					MSP_DSP_IN_SCART, MSP_DSP_IN_SCART),
152
		} },
153
	},
154
	[EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900] = {
155 156 157 158 159
		.name         = "Hauppauge WinTV HVR 900",
		.vchannels    = 3,
		.tda9887_conf = TDA9887_PRESENT,
		.tuner_type   = TUNER_XC2028,
		.has_tuner    = 1,
160
		.mts_firmware = 1,
161
		.decoder      = EM28XX_TVP5150,
162
		.input          = { {
163 164 165
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = TVP5150_COMPOSITE0,
			.amux     = 0,
166
		}, {
167 168 169
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = TVP5150_COMPOSITE1,
			.amux     = 1,
170
		}, {
171 172 173
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = TVP5150_SVIDEO,
			.amux     = 1,
174
		} },
175 176 177
	},
	[EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950] = {
		.name         = "Hauppauge WinTV HVR 950",
178 179 180 181 182
		.vchannels    = 3,
		.tda9887_conf = TDA9887_PRESENT,
		.tuner_type   = TUNER_XC2028,
		.has_tuner    = 1,
		.decoder      = EM28XX_TVP5150,
183
		.input          = { {
184 185 186
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = TVP5150_COMPOSITE0,
			.amux     = 0,
187
		}, {
188 189 190
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = TVP5150_COMPOSITE1,
			.amux     = 1,
191
		}, {
192 193 194
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = TVP5150_SVIDEO,
			.amux     = 1,
195
		} },
196 197 198 199 200 201 202 203
	},
	[EM2880_BOARD_TERRATEC_HYBRID_XS] = {
		.name         = "Terratec Hybrid XS",
		.vchannels    = 3,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
		.tuner_type   = TUNER_XC2028,
		.decoder      = EM28XX_TVP5150,
204
		.input          = { {
205 206 207
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = TVP5150_COMPOSITE0,
			.amux     = 0,
208
		}, {
209 210 211
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = TVP5150_COMPOSITE1,
			.amux     = 1,
212
		}, {
213 214 215
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = TVP5150_SVIDEO,
			.amux     = 1,
216
		} },
217
	},
218 219 220
	/* maybe there's a reason behind it why Terratec sells the Hybrid XS
	   as Prodigy XS with a different PID, let's keep it separated for now
	   maybe we'll need it lateron */
221 222 223 224 225 226 227
	[EM2880_BOARD_TERRATEC_PRODIGY_XS] = {
		.name         = "Terratec Prodigy XS",
		.vchannels    = 3,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
		.tuner_type   = TUNER_XC2028,
		.decoder      = EM28XX_TVP5150,
228
		.input          = { {
229 230 231
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = TVP5150_COMPOSITE0,
			.amux     = 0,
232
		}, {
233 234 235
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = TVP5150_COMPOSITE1,
			.amux     = 1,
236
		}, {
237 238 239
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = TVP5150_SVIDEO,
			.amux     = 1,
240
		} },
241
	},
242 243 244
	[EM2820_BOARD_MSI_VOX_USB_2] = {
		.name		= "MSI VOX USB 2.0",
		.vchannels	= 3,
245
		.tuner_type	= TUNER_LG_PAL_NEW_TAPC,
246 247 248
		.tda9887_conf	= TDA9887_PRESENT      |
				  TDA9887_PORT1_ACTIVE |
				  TDA9887_PORT2_ACTIVE,
249
		.has_tuner	= 1,
250
		.decoder        = EM28XX_SAA7114,
251
		.input          = { {
252
			.type     = EM28XX_VMUX_TELEVISION,
253
			.vmux     = SAA7115_COMPOSITE4,
254
			.amux     = 0,
255
		}, {
256
			.type     = EM28XX_VMUX_COMPOSITE1,
257
			.vmux     = SAA7115_COMPOSITE0,
258
			.amux     = 1,
259
		}, {
260
			.type     = EM28XX_VMUX_SVIDEO,
261
			.vmux     = SAA7115_SVIDEO3,
262
			.amux     = 1,
263
		} },
264
	},
265 266 267 268 269 270 271
	[EM2800_BOARD_TERRATEC_CINERGY_200] = {
		.name         = "Terratec Cinergy 200 USB",
		.is_em2800    = 1,
		.vchannels    = 3,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
272
		.decoder      = EM28XX_SAA7113,
273
		.input          = { {
274
			.type     = EM28XX_VMUX_TELEVISION,
275
			.vmux     = SAA7115_COMPOSITE2,
276
			.amux     = 0,
277
		}, {
278
			.type     = EM28XX_VMUX_COMPOSITE1,
279
			.vmux     = SAA7115_COMPOSITE0,
280
			.amux     = 1,
281
		}, {
282
			.type     = EM28XX_VMUX_SVIDEO,
283
			.vmux     = SAA7115_SVIDEO3,
284
			.amux     = 1,
285
		} },
286 287 288 289 290 291 292 293
	},
	[EM2800_BOARD_LEADTEK_WINFAST_USBII] = {
		.name         = "Leadtek Winfast USB II",
		.is_em2800    = 1,
		.vchannels    = 3,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
294
		.decoder      = EM28XX_SAA7113,
295
		.input          = { {
296
			.type     = EM28XX_VMUX_TELEVISION,
297
			.vmux     = SAA7115_COMPOSITE2,
298
			.amux     = 0,
299
		}, {
300
			.type     = EM28XX_VMUX_COMPOSITE1,
301
			.vmux     = SAA7115_COMPOSITE0,
302
			.amux     = 1,
303
		}, {
304
			.type     = EM28XX_VMUX_SVIDEO,
305
			.vmux     = SAA7115_SVIDEO3,
306
			.amux     = 1,
307
		} },
308 309 310 311 312 313 314 315
	},
	[EM2800_BOARD_KWORLD_USB2800] = {
		.name         = "Kworld USB2800",
		.is_em2800    = 1,
		.vchannels    = 3,
		.tuner_type   = TUNER_PHILIPS_ATSC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
316
		.decoder      = EM28XX_SAA7113,
317
		.input          = { {
318
			.type     = EM28XX_VMUX_TELEVISION,
319
			.vmux     = SAA7115_COMPOSITE2,
320
			.amux     = 0,
321
		}, {
322
			.type     = EM28XX_VMUX_COMPOSITE1,
323
			.vmux     = SAA7115_COMPOSITE0,
324
			.amux     = 1,
325
		}, {
326
			.type     = EM28XX_VMUX_SVIDEO,
327
			.vmux     = SAA7115_SVIDEO3,
328
			.amux     = 1,
329
		} },
330
	},
331
	[EM2820_BOARD_PINNACLE_DVC_90] = {
332
		.name         = "Pinnacle Dazzle DVC 90/DVC 100",
333 334
		.vchannels    = 3,
		.has_tuner    = 0,
335
		.decoder      = EM28XX_SAA7113,
336
		.input          = { {
337
			.type     = EM28XX_VMUX_COMPOSITE1,
338
			.vmux     = SAA7115_COMPOSITE0,
339
			.amux     = 1,
340
		}, {
341
			.type     = EM28XX_VMUX_SVIDEO,
342
			.vmux     = SAA7115_SVIDEO3,
343
			.amux     = 1,
344
		} },
345
	},
346 347 348 349 350 351 352 353
	[EM2800_BOARD_VGEAR_POCKETTV] = {
		.name         = "V-Gear PocketTV",
		.is_em2800    = 1,
		.vchannels    = 3,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
		.decoder      = EM28XX_SAA7113,
354
		.input          = { {
355 356 357
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = SAA7115_COMPOSITE2,
			.amux     = 0,
358
		}, {
359 360 361
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = SAA7115_COMPOSITE0,
			.amux     = 1,
362
		}, {
363 364 365
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = SAA7115_SVIDEO3,
			.amux     = 1,
366
		} },
367
	},
368 369 370 371 372 373
	[EM2820_BOARD_PROLINK_PLAYTV_USB2] = {
		.name         = "Pixelview Prolink PlayTV USB 2.0",
		.vchannels    = 3,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
		.decoder      = EM28XX_SAA7113,
374
		.input          = { {
375 376 377
			.type     = EM28XX_VMUX_TELEVISION,
			.vmux     = SAA7115_COMPOSITE2,
			.amux     = 1,
378
		}, {
379 380 381
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = SAA7115_COMPOSITE0,
			.amux     = 1,
382
		}, {
383 384 385
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = SAA7115_SVIDEO3,
			.amux     = 1,
386
		} },
387
	},
388
};
389
const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards);
390 391

/* table of devices that work with this driver */
392
struct usb_device_id em28xx_id_table [] = {
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
	{ USB_DEVICE(0xeb1a, 0x2750),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2800),
			.driver_info = EM2800_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2820),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2821),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2860),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2861),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2870),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2881),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0xeb1a, 0x2883),
			.driver_info = EM2820_BOARD_UNKNOWN },
	{ USB_DEVICE(0x0ccd, 0x0036),
			.driver_info = EM2820_BOARD_TERRATEC_CINERGY_250 },
	{ USB_DEVICE(0x2304, 0x0208),
			.driver_info = EM2820_BOARD_PINNACLE_USB_2 },
	{ USB_DEVICE(0x2040, 0x4200),
			.driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 },
	{ USB_DEVICE(0x2304, 0x0207),
			.driver_info = EM2820_BOARD_PINNACLE_DVC_90 },
419 420
	{ USB_DEVICE(0x2304, 0x021a),
			.driver_info = EM2820_BOARD_PINNACLE_DVC_90 },
421 422 423 424 425 426 427 428
	{ USB_DEVICE(0x2040, 0x6500),
			.driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 },
	{ USB_DEVICE(0x2040, 0x6513),
			.driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 },
	{ USB_DEVICE(0x0ccd, 0x0042),
			.driver_info = EM2880_BOARD_TERRATEC_HYBRID_XS },
	{ USB_DEVICE(0x0ccd, 0x0047),
			.driver_info = EM2880_BOARD_TERRATEC_PRODIGY_XS },
429 430
	{ },
};
431
MODULE_DEVICE_TABLE(usb, em28xx_id_table);
432

433 434
/* EEPROM hash table for devices with generic USB IDs */
static struct em28xx_hash_table em28xx_eeprom_hash [] = {
435
	/* P/N: SA 60002070465 Tuner: TVF7533-MF */
436
	{0x6ce05a8f, EM2820_BOARD_PROLINK_PLAYTV_USB2, TUNER_YMEC_TVF_5533MF},
437
};
438

439
/* I2C devicelist hash table for devices with generic USB IDs */
440
static struct em28xx_hash_table em28xx_i2c_hash[] = {
441 442
	{0xb06a32c3, EM2800_BOARD_TERRATEC_CINERGY_200, TUNER_LG_PAL_NEW_TAPC},
	{0xf51200e3, EM2800_BOARD_VGEAR_POCKETTV, TUNER_LG_PAL_NEW_TAPC},
443 444
};

445 446 447
/* Since em28xx_pre_card_setup() requires a proper dev->model,
 * this won't work for boards with generic PCI IDs
 */
448 449 450
void em28xx_pre_card_setup(struct em28xx *dev)
{
	/* request some modules */
451
	switch (dev->model) {
452 453
	case EM2880_BOARD_TERRATEC_PRODIGY_XS:
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
454
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950:
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	case EM2880_BOARD_TERRATEC_HYBRID_XS:
		/* reset through GPIO? */
		em28xx_write_regs_req(dev, 0x00, 0x08, "\x7d", 1);
		break;
	}
}

static int em28xx_tuner_callback(void *ptr, int command, int arg)
{
	int rc = 0;
	struct em28xx *dev = ptr;

	if (dev->tuner_type != TUNER_XC2028)
		return 0;

	switch (command) {
	case XC2028_TUNER_RESET:
		/* FIXME: This is device-dependent */
		dev->em28xx_write_regs_req(dev, 0x00, 0x48, "\x00", 1);
		dev->em28xx_write_regs_req(dev, 0x00, 0x12, "\x67", 1);

		msleep(140);
		break;
478
	}
479
	return rc;
480 481
}

482
static void em28xx_config_tuner(struct em28xx *dev)
483 484 485
{
	struct v4l2_priv_tun_config  xc2028_cfg;
	struct xc2028_ctrl           ctl;
486 487 488 489 490 491 492 493 494 495 496 497 498 499
	struct tuner_setup           tun_setup;
	struct v4l2_frequency        f;

	if (!dev->has_tuner)
		return;

	tun_setup.mode_mask = T_ANALOG_TV | T_RADIO;
	tun_setup.type = dev->tuner_type;
	tun_setup.addr = dev->tuner_addr;
	tun_setup.tuner_callback = em28xx_tuner_callback;

	em28xx_i2c_call_clients(dev, TUNER_SET_TYPE_ADDR, &tun_setup);

	if (dev->tuner_type == TUNER_XC2028) {
500
		memset(&ctl, 0, sizeof(ctl));
501 502 503

		ctl.fname   = XC2028_DEFAULT_FIRMWARE;
		ctl.max_len = 64;
504
		ctl.mts = em28xx_boards[dev->model].mts_firmware;
505 506 507

		xc2028_cfg.tuner = TUNER_XC2028;
		xc2028_cfg.priv  = &ctl;
508

509 510 511 512 513 514 515 516 517 518 519 520 521 522
		em28xx_i2c_call_clients(dev, TUNER_SET_CONFIG, &xc2028_cfg);
	}

	/* configure tuner */
	f.tuner = 0;
	f.type = V4L2_TUNER_ANALOG_TV;
	f.frequency = 9076;     /* just a magic number */
	dev->ctl_freq = f.frequency;
	em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
}

static int em28xx_hint_board(struct em28xx *dev)
{
	int i;
523

524 525 526 527 528 529 530 531 532 533 534 535
	/* HINT method: EEPROM
	 *
	 * This method works only for boards with eeprom.
	 * Uses a hash of all eeprom bytes. The hash should be
	 * unique for a vendor/tuner pair.
	 * There are a high chance that tuners for different
	 * video standards produce different hashes.
	 */
	for (i = 0; i < ARRAY_SIZE(em28xx_eeprom_hash); i++) {
		if (dev->hash == em28xx_eeprom_hash[i].hash) {
			dev->model = em28xx_eeprom_hash[i].model;
			dev->tuner_type = em28xx_eeprom_hash[i].tuner;
536

537 538 539 540 541 542 543 544 545 546
			em28xx_errdev("Your board has no unique USB ID.\n");
			em28xx_errdev("A hint were successfully done, "
				      "based on eeprom hash.\n");
			em28xx_errdev("This method is not 100%% failproof.\n");
			em28xx_errdev("If the board were missdetected, "
				      "please email this log to:\n");
			em28xx_errdev("\tV4L Mailing List "
				      " <video4linux-list@redhat.com>\n");
			em28xx_errdev("Board detected as %s\n",
				      em28xx_boards[dev->model].name);
547

548 549 550
			return 0;
		}
	}
551

552 553 554 555 556 557 558 559 560
	/* HINT method: I2C attached devices
	 *
	 * This method works for all boards.
	 * Uses a hash of i2c scanned devices.
	 * Devices with the same i2c attached chips will
	 * be considered equal.
	 * This method is less precise than the eeprom one.
	 */

561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
	/* user did not request i2c scanning => do it now */
	if (!dev->i2c_hash)
		em28xx_do_i2c_scan(dev);

	for (i = 0; i < ARRAY_SIZE(em28xx_i2c_hash); i++) {
		if (dev->i2c_hash == em28xx_i2c_hash[i].hash) {
			dev->model = em28xx_i2c_hash[i].model;
			dev->tuner_type = em28xx_i2c_hash[i].tuner;
			em28xx_errdev("Your board has no unique USB ID.\n");
			em28xx_errdev("A hint were successfully done, "
				      "based on i2c devicelist hash.\n");
			em28xx_errdev("This method is not 100%% failproof.\n");
			em28xx_errdev("If the board were missdetected, "
				      "please email this log to:\n");
			em28xx_errdev("\tV4L Mailing List "
				      " <video4linux-list@redhat.com>\n");
			em28xx_errdev("Board detected as %s\n",
				      em28xx_boards[dev->model].name);

			return 0;
		}
	}

584 585 586 587 588 589 590
	em28xx_errdev("Your board has no unique USB ID and thus need a "
		      "hint to be detected.\n");
	em28xx_errdev("You may try to use card=<n> insmod option to "
		      "workaround that.\n");
	em28xx_errdev("Please send an email with this log to:\n");
	em28xx_errdev("\tV4L Mailing List <video4linux-list@redhat.com>\n");
	em28xx_errdev("Board eeprom hash is 0x%08lx\n", dev->hash);
591
	em28xx_errdev("Board i2c devicelist hash is 0x%08lx\n", dev->i2c_hash);
592 593 594 595 596 597 598 599

	em28xx_errdev("Here is a list of valid choices for the card=<n>"
		      " insmod option:\n");
	for (i = 0; i < em28xx_bcount; i++) {
		em28xx_errdev("    card=%d -> %s\n",
				i, em28xx_boards[i].name);
	}
	return -1;
600 601
}

602 603 604 605 606 607 608 609 610 611 612 613 614 615

static void em28xx_set_model(struct em28xx *dev)
{
	dev->is_em2800 = em28xx_boards[dev->model].is_em2800;
	dev->has_tuner = em28xx_boards[dev->model].has_tuner;
	dev->has_msp34xx = em28xx_boards[dev->model].has_msp34xx;
	dev->tda9887_conf = em28xx_boards[dev->model].tda9887_conf;
	dev->decoder = em28xx_boards[dev->model].decoder;
	dev->video_inputs = em28xx_boards[dev->model].vchannels;

	if (!em28xx_boards[dev->model].has_tuner)
		dev->tuner_type = UNSET;
}

616
void em28xx_card_setup(struct em28xx *dev)
617
{
618 619 620 621
	em28xx_set_model(dev);

	dev->tuner_type = em28xx_boards[dev->model].tuner_type;

622
	/* request some modules */
623 624
	switch (dev->model) {
	case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2:
625
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
626
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950:
627 628
	{
		struct tveeprom tv;
629
#ifdef CONFIG_MODULES
630
		request_module("tveeprom");
631
#endif
632 633 634 635
		/* Call first TVeeprom */

		dev->i2c_client.addr = 0xa0 >> 1;
		tveeprom_hauppauge_analog(&dev->i2c_client, &tv, dev->eedata);
636

637 638 639 640 641
		dev->tuner_type = tv.tuner_type;
		if (tv.audio_processor == AUDIO_CHIP_MSP34XX) {
			dev->i2s_speed = 2048000;
			dev->has_msp34xx = 1;
		}
642 643 644 645 646 647
#ifdef CONFIG_MODULES
		if (tv.has_ir)
			request_module("ir-kbd-i2c");
#endif
		/* FIXME: Should also retrieve decoder processor type */

648
		break;
649
	}
650 651 652 653 654 655
	case EM2820_BOARD_KWORLD_PVRTV2800RF:
		/* GPIO enables sound on KWORLD PVR TV 2800RF */
		em28xx_write_regs_req(dev, 0x00, 0x08, "\xf9", 1);
		break;
	case EM2820_BOARD_UNKNOWN:
	case EM2800_BOARD_UNKNOWN:
656 657
		if (!em28xx_hint_board(dev))
			em28xx_set_model(dev);
658 659
	}

660
	/* Allow override tuner type by a module parameter */
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
	if (tuner >= 0)
		dev->tuner_type = tuner;

#ifdef CONFIG_MODULES
	/* request some modules */
	if (dev->has_msp34xx)
		request_module("msp3400");
	if (dev->decoder == EM28XX_SAA7113 || dev->decoder == EM28XX_SAA7114)
		request_module("saa7115");
	if (dev->decoder == EM28XX_TVP5150)
		request_module("tvp5150");
	if (dev->has_tuner)
		request_module("tuner");
#endif

676
	em28xx_config_tuner(dev);
677
}