blob: f069239868241d52d1284846454892e5b96e3429 [file] [log] [blame]
Mike Isely989eb152007-11-26 01:53:12 -03001/*
2 *
Mike Isely989eb152007-11-26 01:53:12 -03003 *
4 * Copyright (C) 2005 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#ifndef __PVRUSB2_DEVATTR_H
21#define __PVRUSB2_DEVATTR_H
22
23#include <linux/mod_devicetable.h>
Mike Isely6a540252007-12-02 23:51:34 -030024#include <linux/videodev2.h>
Mike Iselyce52f812008-03-16 02:12:12 -030025#ifdef CONFIG_VIDEO_PVRUSB2_DVB
Michael Krufky04910bd2008-02-03 23:46:16 -030026#include "pvrusb2-dvb.h"
Mike Iselyce52f812008-03-16 02:12:12 -030027#endif
Mike Isely989eb152007-11-26 01:53:12 -030028
29/*
30
31 This header defines structures used to describe attributes of a device.
32
33*/
34
35
Mike Iselye9c64a72009-03-06 23:42:20 -030036#define PVR2_CLIENT_ID_MSP3400 1
37#define PVR2_CLIENT_ID_CX25840 2
38#define PVR2_CLIENT_ID_SAA7115 3
39#define PVR2_CLIENT_ID_TUNER 4
40#define PVR2_CLIENT_ID_CS53132A 5
41
42struct pvr2_device_client_desc {
43 /* One ovr PVR2_CLIENT_ID_xxxx */
44 unsigned char module_id;
45
46 /* Null-terminated array of I2C addresses to try in order
47 initialize the module. It's safe to make this null terminated
48 since we're never going to encounter an i2c device with an
49 address of zero. If this is a null pointer or zero-length,
50 then no I2C addresses have been specified, in which case we'll
51 try some compiled in defaults for now. */
52 unsigned char *i2c_address_list;
53};
54
55struct pvr2_device_client_table {
56 const struct pvr2_device_client_desc *lst;
57 unsigned char cnt;
58};
59
60
Mike Isely989eb152007-11-26 01:53:12 -030061struct pvr2_string_table {
62 const char **lst;
63 unsigned int cnt;
64};
65
Mike Iselyf5174af2007-11-26 02:07:26 -030066#define PVR2_ROUTING_SCHEME_HAUPPAUGE 0
Mike Isely9e2e3ae2007-11-26 02:14:23 -030067#define PVR2_ROUTING_SCHEME_GOTVIEW 1
Mike Isely989eb152007-11-26 01:53:12 -030068
Mike Iselye8f5bac2008-04-22 14:45:40 -030069#define PVR2_DIGITAL_SCHEME_NONE 0
70#define PVR2_DIGITAL_SCHEME_HAUPPAUGE 1
71#define PVR2_DIGITAL_SCHEME_ONAIR 2
72
Mike Isely40381cb2008-04-22 14:45:42 -030073#define PVR2_LED_SCHEME_NONE 0
74#define PVR2_LED_SCHEME_HAUPPAUGE 1
75
Mike Isely31335b12008-07-25 19:35:31 -030076#define PVR2_IR_SCHEME_NONE 0
77#define PVR2_IR_SCHEME_24XXX 1
78#define PVR2_IR_SCHEME_ZILOG 2
79
Mike Isely989eb152007-11-26 01:53:12 -030080/* This describes a particular hardware type (except for the USB device ID
81 which must live in a separate structure due to environmental
82 constraints). See the top of pvrusb2-hdw.c for where this is
83 instantiated. */
84struct pvr2_device_desc {
85 /* Single line text description of hardware */
86 const char *description;
87
88 /* Single token identifier for hardware */
89 const char *shortname;
90
91 /* List of additional client modules we need to load */
92 struct pvr2_string_table client_modules;
93
Mike Iselye9c64a72009-03-06 23:42:20 -030094 /* List of defined client modules we need to load */
95 struct pvr2_device_client_table client_table;
96
Mike Isely989eb152007-11-26 01:53:12 -030097 /* List of FX2 firmware file names we should search; if empty then
98 FX2 firmware check / load is skipped and we assume the device
99 was initialized from internal ROM. */
100 struct pvr2_string_table fx2_firmware;
101
Mike Isely1b1b8d782008-03-28 05:43:45 -0300102#ifdef CONFIG_VIDEO_PVRUSB2_DVB
Michael Krufky04910bd2008-02-03 23:46:16 -0300103 /* callback functions to handle attachment of digital tuner & demod */
104 struct pvr2_dvb_props *dvb_props;
105
Mike Isely1b1b8d782008-03-28 05:43:45 -0300106#endif
Mike Isely6a540252007-12-02 23:51:34 -0300107 /* Initial standard bits to use for this device, if not zero.
108 Anything set here is also implied as an available standard.
109 Note: This is ignored if overridden on the module load line via
110 the video_std module option. */
111 v4l2_std_id default_std_mask;
112
Mike Isely5fd782a2008-04-22 14:45:42 -0300113 /* V4L tuner type ID to use with this device (only used if the
114 driver could not discover the type any other way). */
115 int default_tuner_type;
116
117 /* Signal routing scheme used by device, contains one of
118 PVR2_ROUTING_SCHEME_XXX. Schemes have to be defined as we
119 encounter them. This is an arbitrary integer scheme id; its
120 meaning is contained entirely within the driver and is
121 interpreted by logic which must send commands to the chip-level
122 drivers (search for things which touch this field). */
123 unsigned char signal_routing_scheme;
124
125 /* Indicates scheme for controlling device's LED (if any). The
126 driver will turn on the LED when streaming is underway. This
127 contains one of PVR2_LED_SCHEME_XXX. */
128 unsigned char led_scheme;
129
130 /* Control scheme to use if there is a digital tuner. This
131 contains one of PVR2_DIGITAL_SCHEME_XXX. This is an arbitrary
132 integer scheme id; its meaning is contained entirely within the
133 driver and is interpreted by logic which must control the
134 streaming pathway (search for things which touch this field). */
135 unsigned char digital_control_scheme;
136
Mike Isely989eb152007-11-26 01:53:12 -0300137 /* If set, we don't bother trying to load cx23416 firmware. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300138 unsigned int flag_skip_cx23416_firmware:1;
Mike Isely989eb152007-11-26 01:53:12 -0300139
Mike Isely72998b72008-04-03 04:51:19 -0300140 /* If set, the encoder must be healthy in order for digital mode to
141 work (otherwise we assume that digital streaming will work even
142 if we fail to locate firmware for the encoder). If the device
143 doesn't support digital streaming then this flag has no
144 effect. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300145 unsigned int flag_digital_requires_cx23416:1;
Mike Isely72998b72008-04-03 04:51:19 -0300146
Mike Iselyaaf78842007-11-26 02:04:11 -0300147 /* Device has a hauppauge eeprom which we can interrogate. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300148 unsigned int flag_has_hauppauge_rom:1;
Mike Iselyaaf78842007-11-26 02:04:11 -0300149
Mike Isely989eb152007-11-26 01:53:12 -0300150 /* Device does not require a powerup command to be issued. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300151 unsigned int flag_no_powerup:1;
Mike Isely989eb152007-11-26 01:53:12 -0300152
153 /* Device has a cx25840 - this enables special additional logic to
154 handle it. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300155 unsigned int flag_has_cx25840:1;
Mike Isely989eb152007-11-26 01:53:12 -0300156
157 /* Device has a wm8775 - this enables special additional logic to
158 ensure that it is found. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300159 unsigned int flag_has_wm8775:1;
Mike Isely056d1a82007-11-26 02:09:42 -0300160
Mike Isely31335b12008-07-25 19:35:31 -0300161 /* Indicate any specialized IR scheme that might need to be
162 supported by this driver. If not set, then it is assumed that
163 IR can work without help from the driver (which is frequently
164 the case). This is otherwise set to one of
165 PVR2_IR_SCHEME_xxxx. For "xxxx", the value "24XXX" indicates a
166 Hauppauge 24xxx class device which has an FPGA-hosted IR
167 receiver that can only be reached via FX2 command codes. In
168 that case the pvrusb2 driver will emulate the behavior of the
169 older 29xxx device's IR receiver (a "virtual" I2C chip) in terms
170 of those command codes. For the value "ZILOG", we're dealing
171 with an IR chip that must be taken out of reset via another FX2
172 command code (which is the case for HVR-1950 devices). */
173 unsigned int ir_scheme:2;
Mike Iselyd068c6e2008-04-22 14:45:36 -0300174
Mike Iselye8f5bac2008-04-22 14:45:40 -0300175 /* These bits define which kinds of sources the device can handle.
176 Note: Digital tuner presence is inferred by the
177 digital_control_scheme enumeration. */
Harvey Harrison0e3cbe82008-04-25 02:19:44 -0300178 unsigned int flag_has_fmradio:1; /* Has FM radio receiver */
179 unsigned int flag_has_analogtuner:1; /* Has analog tuner */
180 unsigned int flag_has_composite:1; /* Has composite input */
181 unsigned int flag_has_svideo:1; /* Has s-video input */
Mike Isely989eb152007-11-26 01:53:12 -0300182};
183
Mike Isely989eb152007-11-26 01:53:12 -0300184extern struct usb_device_id pvr2_device_table[];
Mike Isely989eb152007-11-26 01:53:12 -0300185
186#endif /* __PVRUSB2_HDW_INTERNAL_H */
187
188/*
189 Stuff for Emacs to see, in order to encourage consistent editing style:
190 *** Local Variables: ***
191 *** mode: c ***
192 *** fill-column: 75 ***
193 *** tab-width: 8 ***
194 *** c-basic-offset: 8 ***
195 *** End: ***
196 */