blob: 54a401e8bb1478ce7d95829d7c6dd249562ba702 [file] [log] [blame]
Mike Isely989eb152007-11-26 01:53:12 -03001/*
2 *
3 * $Id$
4 *
5 * Copyright (C) 2007 Mike Isely <isely@pobox.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22/*
23
24This source file should encompass ALL per-device type information for the
25driver. To define a new device, add elements to the pvr2_device_table and
26pvr2_device_desc structures.
27
28*/
29
30#include "pvrusb2-devattr.h"
31#include <linux/usb.h>
32
33/* Known major hardware variants, keyed from device ID */
34#define PVR2_HDW_TYPE_29XXX 0
35#define PVR2_HDW_TYPE_24XXX 1
36
37struct usb_device_id pvr2_device_table[] = {
38 [PVR2_HDW_TYPE_29XXX] = { USB_DEVICE(0x2040, 0x2900) },
39 [PVR2_HDW_TYPE_24XXX] = { USB_DEVICE(0x2040, 0x2400) },
40 { }
41};
42
43/* Names of other client modules to request for 24xxx model hardware */
44static const char *pvr2_client_24xxx[] = {
45 "cx25840",
46 "tuner",
47 "wm8775",
48};
49
50/* Names of other client modules to request for 29xxx model hardware */
51static const char *pvr2_client_29xxx[] = {
52 "msp3400",
53 "saa7115",
54 "tuner",
55};
56
57/* Firmware file name(s) for 29xxx devices */
58static const char *pvr2_fw1_names_29xxx[] = {
59 "v4l-pvrusb2-29xxx-01.fw",
60};
61
62/* Firmware file name(s) for 29xxx devices */
63static const char *pvr2_fw1_names_24xxx[] = {
64 "v4l-pvrusb2-24xxx-01.fw",
65};
66
67const struct pvr2_device_desc pvr2_device_descriptions[] = {
68 [PVR2_HDW_TYPE_29XXX] = {
69 .description = "WinTV PVR USB2 Model Category 29xxxx",
70 .shortname = "29xxx",
71 .client_modules.lst = pvr2_client_29xxx,
72 .client_modules.cnt = ARRAY_SIZE(pvr2_client_29xxx),
73 .fx2_firmware.lst = pvr2_fw1_names_29xxx,
74 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_29xxx),
Mike Iselyaaf78842007-11-26 02:04:11 -030075 .flag_has_hauppauge_rom = !0,
Mike Isely989eb152007-11-26 01:53:12 -030076 },
77 [PVR2_HDW_TYPE_24XXX] = {
78 .description = "WinTV PVR USB2 Model Category 24xxxx",
79 .shortname = "24xxx",
80 .client_modules.lst = pvr2_client_24xxx,
81 .client_modules.cnt = ARRAY_SIZE(pvr2_client_24xxx),
82 .fx2_firmware.lst = pvr2_fw1_names_24xxx,
83 .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_24xxx),
84 .flag_has_cx25840 = !0,
85 .flag_has_wm8775 = !0,
Mike Iselyaaf78842007-11-26 02:04:11 -030086 .flag_has_hauppauge_rom = !0,
Mike Isely989eb152007-11-26 01:53:12 -030087 },
88};
89
90const unsigned int pvr2_device_count = ARRAY_SIZE(pvr2_device_descriptions);
91
92MODULE_DEVICE_TABLE(usb, pvr2_device_table);
93
94
95/*
96 Stuff for Emacs to see, in order to encourage consistent editing style:
97 *** Local Variables: ***
98 *** mode: c ***
99 *** fill-column: 75 ***
100 *** tab-width: 8 ***
101 *** c-basic-offset: 8 ***
102 *** End: ***
103 */