blob: da29ae2fb05d93c6efd6a087383348e55e440f6a [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -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_HDW_INTERNAL_H
22#define __PVRUSB2_HDW_INTERNAL_H
23
24/*
25
26 This header sets up all the internal structures and definitions needed to
27 track and coordinate the driver's interaction with the hardware. ONLY
28 source files which actually implement part of that whole circus should be
29 including this header. Higher levels, like the external layers to the
30 various public APIs (V4L, sysfs, etc) should NOT ever include this
31 private, internal header. This means that pvrusb2-hdw, pvrusb2-encoder,
32 etc will include this, but pvrusb2-v4l should not.
33
34*/
35
Mike Iselyd8554972006-06-26 20:58:46 -030036#include <linux/videodev2.h>
37#include <linux/i2c.h>
38#include <linux/mutex.h>
39#include "pvrusb2-hdw.h"
40#include "pvrusb2-io.h"
Mike Iselyc05c0462006-06-25 20:04:25 -030041#include <media/cx2341x.h>
Mike Iselyd8554972006-06-26 20:58:46 -030042
Mike Iselyd8554972006-06-26 20:58:46 -030043/* Legal values for PVR2_CID_HSM */
44#define PVR2_CVAL_HSM_FAIL 0
45#define PVR2_CVAL_HSM_FULL 1
46#define PVR2_CVAL_HSM_HIGH 2
47
48#define PVR2_VID_ENDPOINT 0x84
49#define PVR2_UNK_ENDPOINT 0x86 /* maybe raw yuv ? */
50#define PVR2_VBI_ENDPOINT 0x88
51
52#define PVR2_CTL_BUFFSIZE 64
53
54#define FREQTABLE_SIZE 500
55
56#define LOCK_TAKE(x) do { mutex_lock(&x##_mutex); x##_held = !0; } while (0)
57#define LOCK_GIVE(x) do { x##_held = 0; mutex_unlock(&x##_mutex); } while (0)
58
59struct pvr2_decoder;
60
61typedef int (*pvr2_ctlf_is_dirty)(struct pvr2_ctrl *);
62typedef void (*pvr2_ctlf_clear_dirty)(struct pvr2_ctrl *);
Mike Isely5549f542006-12-27 23:28:54 -030063typedef int (*pvr2_ctlf_check_value)(struct pvr2_ctrl *,int);
Mike Iselyd8554972006-06-26 20:58:46 -030064typedef int (*pvr2_ctlf_get_value)(struct pvr2_ctrl *,int *);
65typedef int (*pvr2_ctlf_set_value)(struct pvr2_ctrl *,int msk,int val);
66typedef int (*pvr2_ctlf_val_to_sym)(struct pvr2_ctrl *,int msk,int val,
67 char *,unsigned int,unsigned int *);
68typedef int (*pvr2_ctlf_sym_to_val)(struct pvr2_ctrl *,
69 const char *,unsigned int,
70 int *mskp,int *valp);
Mike Iselya761f432006-06-25 20:04:44 -030071typedef unsigned int (*pvr2_ctlf_get_v4lflags)(struct pvr2_ctrl *);
Mike Iselyd8554972006-06-26 20:58:46 -030072
73/* This structure describes a specific control. A table of these is set up
74 in pvrusb2-hdw.c. */
75struct pvr2_ctl_info {
76 /* Control's name suitable for use as an identifier */
77 const char *name;
78
79 /* Short description of control */
80 const char *desc;
81
82 /* Control's implementation */
83 pvr2_ctlf_get_value get_value; /* Get its value */
Mike Isely89ebd632006-08-08 09:10:07 -030084 pvr2_ctlf_get_value get_min_value; /* Get minimum allowed value */
85 pvr2_ctlf_get_value get_max_value; /* Get maximum allowed value */
Mike Iselyd8554972006-06-26 20:58:46 -030086 pvr2_ctlf_set_value set_value; /* Set its value */
Mike Isely5549f542006-12-27 23:28:54 -030087 pvr2_ctlf_check_value check_value; /* Check that value is valid */
Mike Iselyd8554972006-06-26 20:58:46 -030088 pvr2_ctlf_val_to_sym val_to_sym; /* Custom convert value->symbol */
89 pvr2_ctlf_sym_to_val sym_to_val; /* Custom convert symbol->value */
90 pvr2_ctlf_is_dirty is_dirty; /* Return true if dirty */
91 pvr2_ctlf_clear_dirty clear_dirty; /* Clear dirty state */
Mike Iselya761f432006-06-25 20:04:44 -030092 pvr2_ctlf_get_v4lflags get_v4lflags;/* Retrieve v4l flags */
Mike Iselyd8554972006-06-26 20:58:46 -030093
94 /* Control's type (int, enum, bitmask) */
95 enum pvr2_ctl_type type;
96
97 /* Associated V4L control ID, if any */
98 int v4l_id;
99
100 /* Associated driver internal ID, if any */
101 int internal_id;
102
103 /* Don't implicitly initialize this control's value */
104 int skip_init;
105
106 /* Starting value for this control */
107 int default_value;
108
109 /* Type-specific control information */
110 union {
111 struct { /* Integer control */
112 long min_value; /* lower limit */
113 long max_value; /* upper limit */
114 } type_int;
115 struct { /* enumerated control */
116 unsigned int count; /* enum value count */
117 const char **value_names; /* symbol names */
118 } type_enum;
119 struct { /* bitmask control */
120 unsigned int valid_bits; /* bits in use */
121 const char **bit_names; /* symbol name/bit */
122 } type_bitmask;
123 } def;
124};
125
126
Mike Iselyc05c0462006-06-25 20:04:25 -0300127/* Same as pvr2_ctl_info, but includes storage for the control description */
128#define PVR2_CTLD_INFO_DESC_SIZE 32
129struct pvr2_ctld_info {
130 struct pvr2_ctl_info info;
131 char desc[PVR2_CTLD_INFO_DESC_SIZE];
132};
133
Mike Iselyd8554972006-06-26 20:58:46 -0300134struct pvr2_ctrl {
135 const struct pvr2_ctl_info *info;
136 struct pvr2_hdw *hdw;
137};
138
139
140struct pvr2_audio_stat {
141 void *ctxt;
142 void (*detach)(void *);
143 int (*status)(void *);
144};
145
146struct pvr2_decoder_ctrl {
147 void *ctxt;
148 void (*detach)(void *);
149 void (*enable)(void *,int);
150 int (*tuned)(void *);
151 void (*force_reset)(void *);
152};
153
154#define PVR2_I2C_PEND_DETECT 0x01 /* Need to detect a client type */
155#define PVR2_I2C_PEND_CLIENT 0x02 /* Client needs a specific update */
156#define PVR2_I2C_PEND_REFRESH 0x04 /* Client has specific pending bits */
157#define PVR2_I2C_PEND_STALE 0x08 /* Broadcast pending bits */
158
159#define PVR2_I2C_PEND_ALL (PVR2_I2C_PEND_DETECT |\
160 PVR2_I2C_PEND_CLIENT |\
161 PVR2_I2C_PEND_REFRESH |\
162 PVR2_I2C_PEND_STALE)
163
164/* Disposition of firmware1 loading situation */
165#define FW1_STATE_UNKNOWN 0
166#define FW1_STATE_MISSING 1
167#define FW1_STATE_FAILED 2
168#define FW1_STATE_RELOAD 3
169#define FW1_STATE_OK 4
170
171/* Known major hardware variants, keyed from device ID */
172#define PVR2_HDW_TYPE_29XXX 0
Mike Iselyd8554972006-06-26 20:58:46 -0300173#define PVR2_HDW_TYPE_24XXX 1
Mike Iselyd8554972006-06-26 20:58:46 -0300174
175typedef int (*pvr2_i2c_func)(struct pvr2_hdw *,u8,u8 *,u16,u8 *, u16);
176#define PVR2_I2C_FUNC_CNT 128
177
178/* This structure contains all state data directly needed to
179 manipulate the hardware (as opposed to complying with a kernel
180 interface) */
181struct pvr2_hdw {
182 /* Underlying USB device handle */
183 struct usb_device *usb_dev;
184 struct usb_interface *usb_intf;
185
186 /* Device type, one of PVR2_HDW_TYPE_xxxxx */
187 unsigned int hdw_type;
188
189 /* Video spigot */
190 struct pvr2_stream *vid_stream;
191
192 /* Mutex for all hardware state control */
193 struct mutex big_lock_mutex;
194 int big_lock_held; /* For debugging */
195
196 void (*poll_trigger_func)(void *);
197 void *poll_trigger_data;
198
199 char name[32];
200
201 /* I2C stuff */
202 struct i2c_adapter i2c_adap;
203 struct i2c_algorithm i2c_algo;
204 pvr2_i2c_func i2c_func[PVR2_I2C_FUNC_CNT];
205 int i2c_cx25840_hack_state;
206 int i2c_linked;
207 unsigned int i2c_pend_types; /* Which types of update are needed */
208 unsigned long i2c_pend_mask; /* Change bits we need to scan */
209 unsigned long i2c_stale_mask; /* Pending broadcast change bits */
210 unsigned long i2c_active_mask; /* All change bits currently in use */
211 struct list_head i2c_clients;
212 struct mutex i2c_list_lock;
213
214 /* Frequency table */
215 unsigned int freqTable[FREQTABLE_SIZE];
216 unsigned int freqProgSlot;
217 unsigned int freqSlot;
218
219 /* Stuff for handling low level control interaction with device */
220 struct mutex ctl_lock_mutex;
221 int ctl_lock_held; /* For debugging */
222 struct urb *ctl_write_urb;
223 struct urb *ctl_read_urb;
224 unsigned char *ctl_write_buffer;
225 unsigned char *ctl_read_buffer;
226 volatile int ctl_write_pend_flag;
227 volatile int ctl_read_pend_flag;
228 volatile int ctl_timeout_flag;
229 struct completion ctl_done;
230 unsigned char cmd_buffer[PVR2_CTL_BUFFSIZE];
231 int cmd_debug_state; // Low level command debugging info
232 unsigned char cmd_debug_code; //
233 unsigned int cmd_debug_write_len; //
234 unsigned int cmd_debug_read_len; //
235
236 int flag_ok; // device in known good state
237 int flag_disconnected; // flag_ok == 0 due to disconnect
238 int flag_init_ok; // true if structure is fully initialized
239 int flag_streaming_enabled; // true if streaming should be on
240 int fw1_state; // current situation with fw1
241
242 int flag_decoder_is_tuned;
243
244 struct pvr2_decoder_ctrl *decoder_ctrl;
245
246 // CPU firmware info (used to help find / save firmware data)
247 char *fw_buffer;
248 unsigned int fw_size;
249
250 // Which subsystem pieces have been enabled / configured
251 unsigned long subsys_enabled_mask;
252
253 // Which subsystems are manipulated to enable streaming
254 unsigned long subsys_stream_mask;
255
256 // True if there is a request to trigger logging of state in each
257 // module.
258 int log_requested;
259
260 /* Tuner / frequency control stuff */
261 unsigned int tuner_type;
262 int tuner_updated;
263 unsigned int freqVal;
264 int freqDirty;
265
266 /* Video standard handling */
267 v4l2_std_id std_mask_eeprom; // Hardware supported selections
268 v4l2_std_id std_mask_avail; // Which standards we may select from
269 v4l2_std_id std_mask_cur; // Currently selected standard(s)
270 unsigned int std_enum_cnt; // # of enumerated standards
271 int std_enum_cur; // selected standard enumeration value
272 int std_dirty; // True if std_mask_cur has changed
273 struct pvr2_ctl_info std_info_enum;
274 struct pvr2_ctl_info std_info_avail;
275 struct pvr2_ctl_info std_info_cur;
276 struct v4l2_standard *std_defs;
277 const char **std_enum_names;
278
279 // Generated string names, one per actual V4L2 standard
280 const char *std_mask_ptrs[32];
281 char std_mask_names[32][10];
282
283 int unit_number; /* ID for driver instance */
284 unsigned long serial_number; /* ID for hardware itself */
285
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300286 /* Minor numbers used by v4l logic (yes, this is a hack, as there
287 should be no v4l junk here). Probably a better way to do this. */
Mike Isely80793842006-12-27 23:12:28 -0300288 int v4l_minor_number_video;
289 int v4l_minor_number_vbi;
Mike Iselyfd5a75f2006-12-27 23:11:22 -0300290 int v4l_minor_number_radio;
Mike Iselyd8554972006-06-26 20:58:46 -0300291
292 /* Location of eeprom or a negative number if none */
293 int eeprom_addr;
294
295 enum pvr2_config config;
296
297 /* Information about what audio signal we're hearing */
298 int flag_stereo;
299 int flag_bilingual;
300 struct pvr2_audio_stat *audio_stat;
301
Mike Iselyb30d2442006-06-25 20:05:01 -0300302 /* Control state needed for cx2341x module */
303 struct cx2341x_mpeg_params enc_cur_state;
304 struct cx2341x_mpeg_params enc_ctl_state;
305 /* True if an encoder attribute has changed */
306 int enc_stale;
307 /* True if enc_cur_state is valid */
308 int enc_cur_valid;
Mike Iselyc05c0462006-06-25 20:04:25 -0300309
Mike Iselyd8554972006-06-26 20:58:46 -0300310 /* Control state */
311#define VCREATE_DATA(lab) int lab##_val; int lab##_dirty
312 VCREATE_DATA(brightness);
313 VCREATE_DATA(contrast);
314 VCREATE_DATA(saturation);
315 VCREATE_DATA(hue);
316 VCREATE_DATA(volume);
317 VCREATE_DATA(balance);
318 VCREATE_DATA(bass);
319 VCREATE_DATA(treble);
320 VCREATE_DATA(mute);
Mike Iselyc05c0462006-06-25 20:04:25 -0300321 VCREATE_DATA(input);
322 VCREATE_DATA(audiomode);
323 VCREATE_DATA(res_hor);
324 VCREATE_DATA(res_ver);
Mike Iselyd8554972006-06-26 20:58:46 -0300325 VCREATE_DATA(srate);
Mike Iselyd8554972006-06-26 20:58:46 -0300326#undef VCREATE_DATA
327
Mike Iselyb30d2442006-06-25 20:05:01 -0300328 struct pvr2_ctld_info *mpeg_ctrl_info;
Mike Iselyc05c0462006-06-25 20:04:25 -0300329
Mike Iselyd8554972006-06-26 20:58:46 -0300330 struct pvr2_ctrl *controls;
Mike Iselyc05c0462006-06-25 20:04:25 -0300331 unsigned int control_cnt;
Mike Iselyd8554972006-06-26 20:58:46 -0300332};
333
Mike Iselyd8554972006-06-26 20:58:46 -0300334#endif /* __PVRUSB2_HDW_INTERNAL_H */
335
336/*
337 Stuff for Emacs to see, in order to encourage consistent editing style:
338 *** Local Variables: ***
339 *** mode: c ***
340 *** fill-column: 75 ***
341 *** tab-width: 8 ***
342 *** c-basic-offset: 8 ***
343 *** End: ***
344 */