V4L/DVB (11743): Analog Devices ADV7343 video encoder driver
[linux-2.6-block.git] / drivers / media / video / pvrusb2 / pvrusb2-devattr.c
CommitLineData
989eb154
MI
1/*
2 *
989eb154
MI
3 *
4 * Copyright (C) 2007 Mike Isely <isely@pobox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
21/*
22
23This source file should encompass ALL per-device type information for the
24driver. To define a new device, add elements to the pvr2_device_table and
25pvr2_device_desc structures.
26
27*/
28
29#include "pvrusb2-devattr.h"
30#include <linux/usb.h>
6a540254 31/* This is needed in order to pull in tuner type ids... */
9e2e3aeb 32#include <linux/i2c.h>
9e2e3aeb 33#include <media/tuner.h>
906a4957
MK
34#ifdef CONFIG_VIDEO_PVRUSB2_DVB
35#include "pvrusb2-hdw-internal.h"
36#include "lgdt330x.h"
087886eb 37#include "s5h1409.h"
4aef8fdd 38#include "s5h1411.h"
95814bc2 39#include "tda10048.h"
087886eb
MK
40#include "tda18271.h"
41#include "tda8290.h"
906a4957
MK
42#include "tuner-simple.h"
43#endif
4542783c 44
989eb154 45
d130fa8a
MI
46/*------------------------------------------------------------------------*/
47/* Hauppauge PVR-USB2 Model 29xxx */
989eb154 48
dd5f322f
MI
49static const struct pvr2_device_client_desc pvr2_cli_29xxx[] = {
50 { .module_id = PVR2_CLIENT_ID_SAA7115 },
51 { .module_id = PVR2_CLIENT_ID_MSP3400 },
52 { .module_id = PVR2_CLIENT_ID_TUNER },
bb65242a 53 { .module_id = PVR2_CLIENT_ID_DEMOD },
989eb154
MI
54};
55
989eb154
MI
56static const char *pvr2_fw1_names_29xxx[] = {
57 "v4l-pvrusb2-29xxx-01.fw",
58};
59
d130fa8a 60static const struct pvr2_device_desc pvr2_device_29xxx = {
e7f677f3 61 .description = "WinTV PVR USB2 Model Category 29xxx",
989eb154 62 .shortname = "29xxx",
dd5f322f
MI
63 .client_table.lst = pvr2_cli_29xxx,
64 .client_table.cnt = ARRAY_SIZE(pvr2_cli_29xxx),
989eb154
MI
65 .fx2_firmware.lst = pvr2_fw1_names_29xxx,
66 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_29xxx),
aaf7884d 67 .flag_has_hauppauge_rom = !0,
1aaac60f 68 .flag_has_analogtuner = !0,
d068c6ee 69 .flag_has_fmradio = !0,
1aaac60f
MI
70 .flag_has_composite = !0,
71 .flag_has_svideo = !0,
f5174af2 72 .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
40381cb0 73 .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
d130fa8a
MI
74};
75
76
77
78/*------------------------------------------------------------------------*/
79/* Hauppauge PVR-USB2 Model 24xxx */
80
dd5f322f
MI
81static const struct pvr2_device_client_desc pvr2_cli_24xxx[] = {
82 { .module_id = PVR2_CLIENT_ID_CX25840 },
83 { .module_id = PVR2_CLIENT_ID_TUNER },
84 { .module_id = PVR2_CLIENT_ID_WM8775 },
bb65242a 85 { .module_id = PVR2_CLIENT_ID_DEMOD },
d130fa8a
MI
86};
87
88static const char *pvr2_fw1_names_24xxx[] = {
89 "v4l-pvrusb2-24xxx-01.fw",
90};
91
92static const struct pvr2_device_desc pvr2_device_24xxx = {
e7f677f3 93 .description = "WinTV PVR USB2 Model Category 24xxx",
989eb154 94 .shortname = "24xxx",
dd5f322f
MI
95 .client_table.lst = pvr2_cli_24xxx,
96 .client_table.cnt = ARRAY_SIZE(pvr2_cli_24xxx),
989eb154
MI
97 .fx2_firmware.lst = pvr2_fw1_names_24xxx,
98 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_24xxx),
99 .flag_has_cx25840 = !0,
100 .flag_has_wm8775 = !0,
aaf7884d 101 .flag_has_hauppauge_rom = !0,
1aaac60f 102 .flag_has_analogtuner = !0,
d068c6ee 103 .flag_has_fmradio = !0,
1aaac60f
MI
104 .flag_has_composite = !0,
105 .flag_has_svideo = !0,
f5174af2 106 .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
40381cb0 107 .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
31335b13 108 .ir_scheme = PVR2_IR_SCHEME_24XXX,
d130fa8a
MI
109};
110
111
112
113/*------------------------------------------------------------------------*/
114/* GOTVIEW USB2.0 DVD2 */
115
dd5f322f
MI
116static const struct pvr2_device_client_desc pvr2_cli_gotview_2[] = {
117 { .module_id = PVR2_CLIENT_ID_CX25840 },
118 { .module_id = PVR2_CLIENT_ID_TUNER },
d130fa8a
MI
119};
120
121static const struct pvr2_device_desc pvr2_device_gotview_2 = {
9e2e3aeb
MI
122 .description = "Gotview USB 2.0 DVD 2",
123 .shortname = "gv2",
dd5f322f
MI
124 .client_table.lst = pvr2_cli_gotview_2,
125 .client_table.cnt = ARRAY_SIZE(pvr2_cli_gotview_2),
787f5abb 126 .flag_has_cx25840 = !0,
9e2e3aeb 127 .default_tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
1aaac60f 128 .flag_has_analogtuner = !0,
1df59f0b 129 .flag_has_fmradio = !0,
1aaac60f
MI
130 .flag_has_composite = !0,
131 .flag_has_svideo = !0,
9e2e3aeb 132 .signal_routing_scheme = PVR2_ROUTING_SCHEME_GOTVIEW,
d130fa8a
MI
133};
134
135
136
fd1da789
MI
137/*------------------------------------------------------------------------*/
138/* GOTVIEW USB2.0 DVD Deluxe */
139
140/* (same module list as gotview_2) */
141
142static const struct pvr2_device_desc pvr2_device_gotview_2d = {
143 .description = "Gotview USB 2.0 DVD Deluxe",
144 .shortname = "gv2d",
dd5f322f
MI
145 .client_table.lst = pvr2_cli_gotview_2,
146 .client_table.cnt = ARRAY_SIZE(pvr2_cli_gotview_2),
fd1da789
MI
147 .flag_has_cx25840 = !0,
148 .default_tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
149 .flag_has_analogtuner = !0,
150 .flag_has_composite = !0,
151 .flag_has_svideo = !0,
152 .signal_routing_scheme = PVR2_ROUTING_SCHEME_GOTVIEW,
153};
154
155
156
d130fa8a
MI
157/*------------------------------------------------------------------------*/
158/* OnAir Creator */
159
906a4957
MK
160#ifdef CONFIG_VIDEO_PVRUSB2_DVB
161static struct lgdt330x_config pvr2_lgdt3303_config = {
162 .demod_address = 0x0e,
163 .demod_chip = LGDT3303,
164 .clock_polarity_flip = 1,
165};
166
167static int pvr2_lgdt3303_attach(struct pvr2_dvb_adapter *adap)
168{
169 adap->fe = dvb_attach(lgdt330x_attach, &pvr2_lgdt3303_config,
170 &adap->channel.hdw->i2c_adap);
171 if (adap->fe)
172 return 0;
173
174 return -EIO;
175}
176
177static int pvr2_lgh06xf_attach(struct pvr2_dvb_adapter *adap)
178{
179 dvb_attach(simple_tuner_attach, adap->fe,
180 &adap->channel.hdw->i2c_adap, 0x61,
181 TUNER_LG_TDVS_H06XF);
182
183 return 0;
184}
185
69ea3c1c 186static const struct pvr2_dvb_props pvr2_onair_creator_fe_props = {
906a4957
MK
187 .frontend_attach = pvr2_lgdt3303_attach,
188 .tuner_attach = pvr2_lgh06xf_attach,
189};
190#endif
191
dd5f322f
MI
192static const struct pvr2_device_client_desc pvr2_cli_onair_creator[] = {
193 { .module_id = PVR2_CLIENT_ID_SAA7115 },
194 { .module_id = PVR2_CLIENT_ID_CS53L32A },
195 { .module_id = PVR2_CLIENT_ID_TUNER },
d130fa8a
MI
196};
197
198static const struct pvr2_device_desc pvr2_device_onair_creator = {
4542783c
MI
199 .description = "OnAir Creator Hybrid USB tuner",
200 .shortname = "oac",
dd5f322f
MI
201 .client_table.lst = pvr2_cli_onair_creator,
202 .client_table.cnt = ARRAY_SIZE(pvr2_cli_onair_creator),
4542783c 203 .default_tuner_type = TUNER_LG_TDVS_H06XF,
1aaac60f
MI
204 .flag_has_analogtuner = !0,
205 .flag_has_composite = !0,
206 .flag_has_svideo = !0,
72998b71 207 .flag_digital_requires_cx23416 = !0,
2a6b627f 208 .signal_routing_scheme = PVR2_ROUTING_SCHEME_ONAIR,
e8f5bacf 209 .digital_control_scheme = PVR2_DIGITAL_SCHEME_ONAIR,
f0910c74 210 .default_std_mask = V4L2_STD_NTSC_M,
906a4957
MK
211#ifdef CONFIG_VIDEO_PVRUSB2_DVB
212 .dvb_props = &pvr2_onair_creator_fe_props,
213#endif
d130fa8a 214};
d130fa8a
MI
215
216
217
d130fa8a
MI
218/*------------------------------------------------------------------------*/
219/* OnAir USB 2.0 */
220
906a4957
MK
221#ifdef CONFIG_VIDEO_PVRUSB2_DVB
222static struct lgdt330x_config pvr2_lgdt3302_config = {
223 .demod_address = 0x0e,
224 .demod_chip = LGDT3302,
225};
226
227static int pvr2_lgdt3302_attach(struct pvr2_dvb_adapter *adap)
228{
229 adap->fe = dvb_attach(lgdt330x_attach, &pvr2_lgdt3302_config,
230 &adap->channel.hdw->i2c_adap);
231 if (adap->fe)
232 return 0;
233
234 return -EIO;
235}
236
237static int pvr2_fcv1236d_attach(struct pvr2_dvb_adapter *adap)
238{
239 dvb_attach(simple_tuner_attach, adap->fe,
240 &adap->channel.hdw->i2c_adap, 0x61,
241 TUNER_PHILIPS_FCV1236D);
242
243 return 0;
244}
245
69ea3c1c 246static const struct pvr2_dvb_props pvr2_onair_usb2_fe_props = {
906a4957
MK
247 .frontend_attach = pvr2_lgdt3302_attach,
248 .tuner_attach = pvr2_fcv1236d_attach,
249};
250#endif
251
dd5f322f
MI
252static const struct pvr2_device_client_desc pvr2_cli_onair_usb2[] = {
253 { .module_id = PVR2_CLIENT_ID_SAA7115 },
254 { .module_id = PVR2_CLIENT_ID_CS53L32A },
255 { .module_id = PVR2_CLIENT_ID_TUNER },
d130fa8a
MI
256};
257
258static const struct pvr2_device_desc pvr2_device_onair_usb2 = {
4542783c
MI
259 .description = "OnAir USB2 Hybrid USB tuner",
260 .shortname = "oa2",
dd5f322f
MI
261 .client_table.lst = pvr2_cli_onair_usb2,
262 .client_table.cnt = ARRAY_SIZE(pvr2_cli_onair_usb2),
ab8b870e 263 .default_tuner_type = TUNER_PHILIPS_FCV1236D,
1aaac60f
MI
264 .flag_has_analogtuner = !0,
265 .flag_has_composite = !0,
266 .flag_has_svideo = !0,
72998b71 267 .flag_digital_requires_cx23416 = !0,
2a6b627f 268 .signal_routing_scheme = PVR2_ROUTING_SCHEME_ONAIR,
e8f5bacf 269 .digital_control_scheme = PVR2_DIGITAL_SCHEME_ONAIR,
f0910c74 270 .default_std_mask = V4L2_STD_NTSC_M,
906a4957
MK
271#ifdef CONFIG_VIDEO_PVRUSB2_DVB
272 .dvb_props = &pvr2_onair_usb2_fe_props,
273#endif
989eb154 274};
d130fa8a
MI
275
276
989eb154 277
92c9d075
MK
278/*------------------------------------------------------------------------*/
279/* Hauppauge PVR-USB2 Model 73xxx */
280
95814bc2
MK
281#ifdef CONFIG_VIDEO_PVRUSB2_DVB
282static struct tda10048_config hauppauge_tda10048_config = {
283 .demod_address = 0x10 >> 1,
284 .output_mode = TDA10048_PARALLEL_OUTPUT,
285 .fwbulkwritelen = TDA10048_BULKWRITE_50,
286 .inversion = TDA10048_INVERSION_ON,
c7470206
ST
287 .if_freq_khz = TDA10048_IF_4300,
288 .clk_freq_khz = TDA10048_CLK_16000,
95814bc2
MK
289};
290
291static struct tda829x_config tda829x_no_probe = {
292 .probe_tuner = TDA829X_DONT_PROBE,
293};
294
295static struct tda18271_config hauppauge_tda18271_dvb_config = {
296 .gate = TDA18271_GATE_ANALOG,
297};
298
299static int pvr2_tda10048_attach(struct pvr2_dvb_adapter *adap)
300{
301 adap->fe = dvb_attach(tda10048_attach, &hauppauge_tda10048_config,
302 &adap->channel.hdw->i2c_adap);
303 if (adap->fe)
304 return 0;
305
306 return -EIO;
307}
308
309static int pvr2_73xxx_tda18271_8295_attach(struct pvr2_dvb_adapter *adap)
310{
311 dvb_attach(tda829x_attach, adap->fe,
312 &adap->channel.hdw->i2c_adap, 0x42,
313 &tda829x_no_probe);
314 dvb_attach(tda18271_attach, adap->fe, 0x60,
315 &adap->channel.hdw->i2c_adap,
316 &hauppauge_tda18271_dvb_config);
317
318 return 0;
319}
320
69ea3c1c 321static const struct pvr2_dvb_props pvr2_73xxx_dvb_props = {
95814bc2
MK
322 .frontend_attach = pvr2_tda10048_attach,
323 .tuner_attach = pvr2_73xxx_tda18271_8295_attach,
324};
325#endif
326
dd5f322f
MI
327static const struct pvr2_device_client_desc pvr2_cli_73xxx[] = {
328 { .module_id = PVR2_CLIENT_ID_CX25840 },
329 { .module_id = PVR2_CLIENT_ID_TUNER,
330 .i2c_address_list = "\x42"},
92c9d075
MK
331};
332
333static const char *pvr2_fw1_names_73xxx[] = {
334 "v4l-pvrusb2-73xxx-01.fw",
335};
336
337static const struct pvr2_device_desc pvr2_device_73xxx = {
353facd4 338 .description = "WinTV HVR-1900 Model Category 73xxx",
92c9d075 339 .shortname = "73xxx",
dd5f322f
MI
340 .client_table.lst = pvr2_cli_73xxx,
341 .client_table.cnt = ARRAY_SIZE(pvr2_cli_73xxx),
92c9d075
MK
342 .fx2_firmware.lst = pvr2_fw1_names_73xxx,
343 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_73xxx),
344 .flag_has_cx25840 = !0,
345 .flag_has_hauppauge_rom = !0,
346 .flag_has_analogtuner = !0,
347 .flag_has_composite = !0,
348 .flag_has_svideo = !0,
349 .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
350 .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE,
351 .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
31335b13 352 .ir_scheme = PVR2_IR_SCHEME_ZILOG,
95814bc2
MK
353#ifdef CONFIG_VIDEO_PVRUSB2_DVB
354 .dvb_props = &pvr2_73xxx_dvb_props,
355#endif
92c9d075
MK
356};
357
358
359
11fcd470
MK
360/*------------------------------------------------------------------------*/
361/* Hauppauge PVR-USB2 Model 75xxx */
362
087886eb
MK
363#ifdef CONFIG_VIDEO_PVRUSB2_DVB
364static struct s5h1409_config pvr2_s5h1409_config = {
365 .demod_address = 0x32 >> 1,
366 .output_mode = S5H1409_PARALLEL_OUTPUT,
367 .gpio = S5H1409_GPIO_OFF,
368 .qam_if = 4000,
369 .inversion = S5H1409_INVERSION_ON,
370 .status_mode = S5H1409_DEMODLOCKING,
371};
372
4aef8fdd
MK
373static struct s5h1411_config pvr2_s5h1411_config = {
374 .output_mode = S5H1411_PARALLEL_OUTPUT,
375 .gpio = S5H1411_GPIO_OFF,
376 .vsb_if = S5H1411_IF_44000,
377 .qam_if = S5H1411_IF_4000,
378 .inversion = S5H1411_INVERSION_ON,
379 .status_mode = S5H1411_DEMODLOCKING,
380};
381
087886eb
MK
382static struct tda18271_std_map hauppauge_tda18271_std_map = {
383 .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3,
384 .if_lvl = 6, .rfagc_top = 0x37, },
385 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
386 .if_lvl = 6, .rfagc_top = 0x37, },
387};
388
389static struct tda18271_config hauppauge_tda18271_config = {
390 .std_map = &hauppauge_tda18271_std_map,
391 .gate = TDA18271_GATE_ANALOG,
392};
393
394static int pvr2_s5h1409_attach(struct pvr2_dvb_adapter *adap)
395{
396 adap->fe = dvb_attach(s5h1409_attach, &pvr2_s5h1409_config,
397 &adap->channel.hdw->i2c_adap);
398 if (adap->fe)
399 return 0;
400
401 return -EIO;
402}
403
4aef8fdd
MK
404static int pvr2_s5h1411_attach(struct pvr2_dvb_adapter *adap)
405{
406 adap->fe = dvb_attach(s5h1411_attach, &pvr2_s5h1411_config,
407 &adap->channel.hdw->i2c_adap);
408 if (adap->fe)
409 return 0;
410
411 return -EIO;
412}
413
087886eb
MK
414static int pvr2_tda18271_8295_attach(struct pvr2_dvb_adapter *adap)
415{
416 dvb_attach(tda829x_attach, adap->fe,
417 &adap->channel.hdw->i2c_adap, 0x42,
418 &tda829x_no_probe);
419 dvb_attach(tda18271_attach, adap->fe, 0x60,
420 &adap->channel.hdw->i2c_adap,
421 &hauppauge_tda18271_config);
422
423 return 0;
424}
425
69ea3c1c 426static const struct pvr2_dvb_props pvr2_750xx_dvb_props = {
087886eb
MK
427 .frontend_attach = pvr2_s5h1409_attach,
428 .tuner_attach = pvr2_tda18271_8295_attach,
429};
4aef8fdd 430
69ea3c1c 431static const struct pvr2_dvb_props pvr2_751xx_dvb_props = {
4aef8fdd
MK
432 .frontend_attach = pvr2_s5h1411_attach,
433 .tuner_attach = pvr2_tda18271_8295_attach,
434};
087886eb
MK
435#endif
436
11fcd470
MK
437static const char *pvr2_fw1_names_75xxx[] = {
438 "v4l-pvrusb2-73xxx-01.fw",
439};
440
c8812841 441static const struct pvr2_device_desc pvr2_device_750xx = {
353facd4 442 .description = "WinTV HVR-1950 Model Category 750xx",
c8812841 443 .shortname = "750xx",
dd5f322f
MI
444 .client_table.lst = pvr2_cli_73xxx,
445 .client_table.cnt = ARRAY_SIZE(pvr2_cli_73xxx),
c8812841
MK
446 .fx2_firmware.lst = pvr2_fw1_names_75xxx,
447 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_75xxx),
448 .flag_has_cx25840 = !0,
449 .flag_has_hauppauge_rom = !0,
450 .flag_has_analogtuner = !0,
451 .flag_has_composite = !0,
452 .flag_has_svideo = !0,
453 .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
454 .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE,
455 .default_std_mask = V4L2_STD_NTSC_M,
456 .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
31335b13 457 .ir_scheme = PVR2_IR_SCHEME_ZILOG,
087886eb
MK
458#ifdef CONFIG_VIDEO_PVRUSB2_DVB
459 .dvb_props = &pvr2_750xx_dvb_props,
460#endif
c8812841
MK
461};
462
463static const struct pvr2_device_desc pvr2_device_751xx = {
353facd4 464 .description = "WinTV HVR-1950 Model Category 751xx",
c8812841 465 .shortname = "751xx",
dd5f322f
MI
466 .client_table.lst = pvr2_cli_73xxx,
467 .client_table.cnt = ARRAY_SIZE(pvr2_cli_73xxx),
11fcd470
MK
468 .fx2_firmware.lst = pvr2_fw1_names_75xxx,
469 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_75xxx),
470 .flag_has_cx25840 = !0,
471 .flag_has_hauppauge_rom = !0,
1aaac60f
MI
472 .flag_has_analogtuner = !0,
473 .flag_has_composite = !0,
474 .flag_has_svideo = !0,
11fcd470 475 .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
e8f5bacf 476 .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE,
11fcd470 477 .default_std_mask = V4L2_STD_NTSC_M,
40381cb0 478 .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE,
31335b13 479 .ir_scheme = PVR2_IR_SCHEME_ZILOG,
4aef8fdd
MK
480#ifdef CONFIG_VIDEO_PVRUSB2_DVB
481 .dvb_props = &pvr2_751xx_dvb_props,
482#endif
11fcd470
MK
483};
484
485
486
d130fa8a
MI
487/*------------------------------------------------------------------------*/
488
489struct usb_device_id pvr2_device_table[] = {
490 { USB_DEVICE(0x2040, 0x2900),
491 .driver_info = (kernel_ulong_t)&pvr2_device_29xxx},
b675c052
MI
492 { USB_DEVICE(0x2040, 0x2950), /* Logically identical to 2900 */
493 .driver_info = (kernel_ulong_t)&pvr2_device_29xxx},
d130fa8a
MI
494 { USB_DEVICE(0x2040, 0x2400),
495 .driver_info = (kernel_ulong_t)&pvr2_device_24xxx},
496 { USB_DEVICE(0x1164, 0x0622),
497 .driver_info = (kernel_ulong_t)&pvr2_device_gotview_2},
fd1da789
MI
498 { USB_DEVICE(0x1164, 0x0602),
499 .driver_info = (kernel_ulong_t)&pvr2_device_gotview_2d},
d130fa8a
MI
500 { USB_DEVICE(0x11ba, 0x1003),
501 .driver_info = (kernel_ulong_t)&pvr2_device_onair_creator},
d130fa8a
MI
502 { USB_DEVICE(0x11ba, 0x1001),
503 .driver_info = (kernel_ulong_t)&pvr2_device_onair_usb2},
92c9d075
MK
504 { USB_DEVICE(0x2040, 0x7300),
505 .driver_info = (kernel_ulong_t)&pvr2_device_73xxx},
11fcd470 506 { USB_DEVICE(0x2040, 0x7500),
c8812841 507 .driver_info = (kernel_ulong_t)&pvr2_device_750xx},
dd6e9467 508 { USB_DEVICE(0x2040, 0x7501),
c8812841 509 .driver_info = (kernel_ulong_t)&pvr2_device_751xx},
d130fa8a
MI
510 { }
511};
989eb154
MI
512
513MODULE_DEVICE_TABLE(usb, pvr2_device_table);
514
515
516/*
517 Stuff for Emacs to see, in order to encourage consistent editing style:
518 *** Local Variables: ***
519 *** mode: c ***
520 *** fill-column: 75 ***
521 *** tab-width: 8 ***
522 *** c-basic-offset: 8 ***
523 *** End: ***
524 */