em28xx-cards.c 7.7 KB
Newer Older
1
/*
2
   em28xx-cards.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@brturbo.com.br>
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 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/pci.h>
#include <linux/delay.h>
#include <linux/i2c.h>
#include <linux/usb.h>
#include <media/tuner.h>
31 32
#include <media/audiochip.h>
#include <media/tveeprom.h>
33 34
#include "msp3400.h"

35
#include "em28xx.h"
36

37
struct em28xx_board em28xx_boards[] = {
38 39 40 41 42 43 44
	[EM2800_BOARD_UNKNOWN] = {
		.name         = "Unknown EM2800 video grabber",
		.is_em2800    = 1,
		.vchannels    = 2,
		.norm         = VIDEO_MODE_PAL,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
45
		.decoder      = EM28XX_SAA7113,
46
		.input           = {{
47
			.type     = EM28XX_VMUX_COMPOSITE1,
48 49 50
			.vmux     = 0,
			.amux     = 1,
		},{
51
			.type     = EM28XX_VMUX_SVIDEO,
52 53 54 55 56 57 58 59 60 61 62
			.vmux     = 9,
			.amux     = 1,
		}},
	},
	[EM2820_BOARD_UNKNOWN] = {
		.name         = "Unknown EM2820/2840 video grabber",
		.is_em2800    = 0,
		.vchannels    = 2,
		.norm         = VIDEO_MODE_PAL,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
63
		.decoder      = EM28XX_SAA7113,
64
		.input           = {{
65
			.type     = EM28XX_VMUX_COMPOSITE1,
66 67 68
			.vmux     = 0,
			.amux     = 1,
		},{
69
			.type     = EM28XX_VMUX_SVIDEO,
70 71 72 73
			.vmux     = 9,
			.amux     = 1,
		}},
	},
74 75 76 77 78 79 80
	[EM2820_BOARD_TERRATEC_CINERGY_250] = {
		.name         = "Terratec Cinergy 250 USB",
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
81
		.decoder      = EM28XX_SAA7113,
82
		.input          = {{
83
			.type     = EM28XX_VMUX_TELEVISION,
84 85 86
			.vmux     = 2,
			.amux     = 0,
		},{
87
			.type     = EM28XX_VMUX_COMPOSITE1,
88 89 90
			.vmux     = 0,
			.amux     = 1,
		},{
91
			.type     = EM28XX_VMUX_SVIDEO,
92 93 94 95 96 97 98 99 100 101 102
			.vmux     = 9,
			.amux     = 1,
		}},
	},
	[EM2820_BOARD_PINNACLE_USB_2] = {
		.name         = "Pinnacle PCTV USB 2",
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
103
		.decoder      = EM28XX_SAA7113,
104
		.input          = {{
105
			.type     = EM28XX_VMUX_TELEVISION,
106 107 108
			.vmux     = 2,
			.amux     = 0,
		},{
109
			.type     = EM28XX_VMUX_COMPOSITE1,
110 111 112
			.vmux     = 0,
			.amux     = 1,
		},{
113
			.type     = EM28XX_VMUX_SVIDEO,
114 115 116 117 118 119 120 121 122 123 124
			.vmux     = 9,
			.amux     = 1,
		}},
	},
	[EM2820_BOARD_HAUPPAUGE_WINTV_USB_2] = {
		.name         = "Hauppauge WinTV USB 2",
		.vchannels    = 3,
		.norm         = VIDEO_MODE_NTSC,
		.tuner_type   = TUNER_PHILIPS_FM1236_MK3,
		.tda9887_conf = TDA9887_PRESENT|TDA9887_PORT1_ACTIVE|TDA9887_PORT2_ACTIVE,
		.has_tuner    = 1,
125
		.decoder      = EM28XX_TVP5150,
126 127 128
		.has_msp34xx  = 1,
		/*FIXME: S-Video not tested */
		.input          = {{
129
			.type     = EM28XX_VMUX_TELEVISION,
130 131 132
			.vmux     = 0,
			.amux     = 0,
		},{
133
			.type     = EM28XX_VMUX_SVIDEO,
134 135 136 137 138 139 140 141
			.vmux     = 2,
			.amux     = 1,
		}},
	},
	[EM2820_BOARD_MSI_VOX_USB_2] = {
		.name		= "MSI VOX USB 2.0",
		.vchannels	= 3,
		.norm		= VIDEO_MODE_PAL,
142
		.tuner_type	= TUNER_LG_PAL_NEW_TAPC,
143 144
		.tda9887_conf	= TDA9887_PRESENT|TDA9887_PORT1_ACTIVE|TDA9887_PORT2_ACTIVE,
		.has_tuner	= 1,
145
		.decoder        = EM28XX_SAA7114,
146
		.input          = {{
147
			.type     = EM28XX_VMUX_TELEVISION,
148
			.vmux     = 4,
149 150
			.amux     = 0,
		},{
151
			.type     = EM28XX_VMUX_COMPOSITE1,
152 153 154
			.vmux     = 0,
			.amux     = 1,
		},{
155
			.type     = EM28XX_VMUX_SVIDEO,
156 157 158 159
			.vmux     = 9,
			.amux     = 1,
		}},
	},
160 161 162 163 164 165 166 167
	[EM2800_BOARD_TERRATEC_CINERGY_200] = {
		.name         = "Terratec Cinergy 200 USB",
		.is_em2800    = 1,
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
168
		.decoder      = EM28XX_SAA7113,
169
		.input          = {{
170
			.type     = EM28XX_VMUX_TELEVISION,
171 172 173
			.vmux     = 2,
			.amux     = 0,
		},{
174
			.type     = EM28XX_VMUX_COMPOSITE1,
175 176 177
			.vmux     = 0,
			.amux     = 1,
		},{
178
			.type     = EM28XX_VMUX_SVIDEO,
179 180 181 182 183 184 185 186 187 188 189 190
			.vmux     = 9,
			.amux     = 1,
		}},
	},
	[EM2800_BOARD_LEADTEK_WINFAST_USBII] = {
		.name         = "Leadtek Winfast USB II",
		.is_em2800    = 1,
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.tuner_type   = TUNER_LG_PAL_NEW_TAPC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
191
		.decoder      = EM28XX_SAA7113,
192
		.input          = {{
193
			.type     = EM28XX_VMUX_TELEVISION,
194 195 196
			.vmux     = 2,
			.amux     = 0,
		},{
197
			.type     = EM28XX_VMUX_COMPOSITE1,
198 199 200
			.vmux     = 0,
			.amux     = 1,
		},{
201
			.type     = EM28XX_VMUX_SVIDEO,
202 203 204 205 206 207 208 209 210 211 212 213
			.vmux     = 9,
			.amux     = 1,
		}},
	},
	[EM2800_BOARD_KWORLD_USB2800] = {
		.name         = "Kworld USB2800",
		.is_em2800    = 1,
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.tuner_type   = TUNER_PHILIPS_ATSC,
		.tda9887_conf = TDA9887_PRESENT,
		.has_tuner    = 1,
214
		.decoder      = EM28XX_SAA7113,
215
		.input          = {{
216
			.type     = EM28XX_VMUX_TELEVISION,
217 218 219
			.vmux     = 2,
			.amux     = 0,
		},{
220
			.type     = EM28XX_VMUX_COMPOSITE1,
221 222 223
			.vmux     = 0,
			.amux     = 1,
		},{
224
			.type     = EM28XX_VMUX_SVIDEO,
225 226 227 228
			.vmux     = 9,
			.amux     = 1,
		}},
	},
229 230 231 232 233
	[EM2820_BOARD_PINNACLE_DVC_90] = {
		.name         = "Pinnacle Dazzle DVC 90",
		.vchannels    = 3,
		.norm         = VIDEO_MODE_PAL,
		.has_tuner    = 0,
234
		.decoder      = EM28XX_SAA7113,
235
		.input          = {{
236
			.type     = EM28XX_VMUX_COMPOSITE1,
237 238 239
			.vmux     = 0,
			.amux     = 1,
		},{
240
			.type     = EM28XX_VMUX_SVIDEO,
241 242 243 244
			.vmux     = 9,
			.amux     = 1,
		}},
	},
245
};
246
const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards);
247 248

/* table of devices that work with this driver */
249
struct usb_device_id em28xx_id_table [] = {
250
	{ USB_DEVICE(0xeb1a, 0x2800), .driver_info = EM2800_BOARD_UNKNOWN },
251
	{ USB_DEVICE(0xeb1a, 0x2820), .driver_info = EM2820_BOARD_MSI_VOX_USB_2 },
252 253 254
	{ 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 },
255
	{ USB_DEVICE(0x2304, 0x0207), .driver_info = EM2820_BOARD_PINNACLE_DVC_90 },
256 257 258
	{ },
};

259
void em28xx_card_setup(struct em28xx *dev)
260 261 262 263 264 265
{
	/* request some modules */
	if (dev->model == EM2820_BOARD_HAUPPAUGE_WINTV_USB_2) {
		struct tveeprom tv;
#ifdef CONFIG_MODULES
		request_module("tveeprom");
266
		request_module("ir-kbd-i2c");
267 268 269
#endif
		/* Call first TVeeprom */

270
		dev->i2c_client.addr = 0xa0 >> 1;
271 272 273 274 275 276
		tveeprom_hauppauge_analog(&dev->i2c_client, &tv, dev->eedata);

		dev->tuner_type= tv.tuner_type;
		if (tv.audio_processor == AUDIO_CHIP_MSP34XX) {
			dev->has_msp34xx=1;
		} else dev->has_msp34xx=0;
277 278 279
		em28xx_write_regs_req(dev,0x06,0x00,"\x40",1);// Serial Bus Frequency Select Register
		em28xx_write_regs_req(dev,0x0f,0x00,"\x87",1);// XCLK Frequency Select Register
		em28xx_write_regs_req(dev,0x88,0x0d,"\xd0",1);
280 281 282
	}
}

283 284 285
EXPORT_SYMBOL(em28xx_boards);
EXPORT_SYMBOL(em28xx_bcount);
EXPORT_SYMBOL(em28xx_id_table);
286

287
MODULE_DEVICE_TABLE (usb, em28xx_id_table);