blob: f63c3ddb8a72ae64d40d1081b980595f7e1ef9f4 [file] [log] [blame]
Mike Isely989eb152007-11-26 01:53:12 -03001/*
2 *
3 * $Id$
4 *
5 * Copyright (C) 2005 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#ifndef __PVRUSB2_DEVATTR_H
22#define __PVRUSB2_DEVATTR_H
23
24#include <linux/mod_devicetable.h>
25
26/*
27
28 This header defines structures used to describe attributes of a device.
29
30*/
31
32
33struct pvr2_string_table {
34 const char **lst;
35 unsigned int cnt;
36};
37
38
39/* This describes a particular hardware type (except for the USB device ID
40 which must live in a separate structure due to environmental
41 constraints). See the top of pvrusb2-hdw.c for where this is
42 instantiated. */
43struct pvr2_device_desc {
44 /* Single line text description of hardware */
45 const char *description;
46
47 /* Single token identifier for hardware */
48 const char *shortname;
49
50 /* List of additional client modules we need to load */
51 struct pvr2_string_table client_modules;
52
53 /* List of FX2 firmware file names we should search; if empty then
54 FX2 firmware check / load is skipped and we assume the device
55 was initialized from internal ROM. */
56 struct pvr2_string_table fx2_firmware;
57
Mike Iselyaaf78842007-11-26 02:04:11 -030058 /* V4L tuner type ID to use with this device (only used if the
59 driver could not discover the type any other way). */
60 int default_tuner_type;
61
Mike Isely989eb152007-11-26 01:53:12 -030062 /* If set, we don't bother trying to load cx23416 firmware. */
63 char flag_skip_cx23416_firmware;
64
Mike Iselyaaf78842007-11-26 02:04:11 -030065 /* Device has a hauppauge eeprom which we can interrogate. */
66 char flag_has_hauppauge_rom;
67
Mike Isely989eb152007-11-26 01:53:12 -030068 /* Device does not require a powerup command to be issued. */
69 char flag_no_powerup;
70
71 /* Device has a cx25840 - this enables special additional logic to
72 handle it. */
73 char flag_has_cx25840;
74
75 /* Device has a wm8775 - this enables special additional logic to
76 ensure that it is found. */
77 char flag_has_wm8775;
78};
79
80extern const struct pvr2_device_desc pvr2_device_descriptions[];
81extern struct usb_device_id pvr2_device_table[];
82extern const unsigned int pvr2_device_count;
83
84#endif /* __PVRUSB2_HDW_INTERNAL_H */
85
86/*
87 Stuff for Emacs to see, in order to encourage consistent editing style:
88 *** Local Variables: ***
89 *** mode: c ***
90 *** fill-column: 75 ***
91 *** tab-width: 8 ***
92 *** c-basic-offset: 8 ***
93 *** End: ***
94 */