blob: e92ea6af8bc0ab5729ad269a162744d141a27dfa [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
Mike Iselyd8554972006-06-26 20:58:46 -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
21#include <linux/errno.h>
22#include <linux/string.h>
23#include <linux/slab.h>
24#include <linux/firmware.h>
Mike Iselyd8554972006-06-26 20:58:46 -030025#include <linux/videodev2.h>
Mike Isely32ffa9a2006-09-23 22:26:52 -030026#include <media/v4l2-common.h>
Mike Iselyd8554972006-06-26 20:58:46 -030027#include "pvrusb2.h"
28#include "pvrusb2-std.h"
29#include "pvrusb2-util.h"
30#include "pvrusb2-hdw.h"
31#include "pvrusb2-i2c-core.h"
Mike Isely59af3362009-03-07 03:06:09 -030032#include "pvrusb2-i2c-track.h"
Mike Iselyd8554972006-06-26 20:58:46 -030033#include "pvrusb2-tuner.h"
34#include "pvrusb2-eeprom.h"
35#include "pvrusb2-hdw-internal.h"
36#include "pvrusb2-encoder.h"
37#include "pvrusb2-debug.h"
Michael Krufky8d364362007-01-22 02:17:55 -030038#include "pvrusb2-fx2-cmd.h"
Mike Isely5f6dae82009-03-07 00:39:34 -030039#include "pvrusb2-wm8775.h"
Mike Isely6f956512009-03-07 00:43:26 -030040#include "pvrusb2-video-v4l.h"
Mike Iselyd8554972006-06-26 20:58:46 -030041
Mike Isely1bde0282006-12-27 23:30:13 -030042#define TV_MIN_FREQ 55250000L
43#define TV_MAX_FREQ 850000000L
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -030044
Mike Isely83ce57a2008-05-26 05:51:57 -030045/* This defines a minimum interval that the decoder must remain quiet
46 before we are allowed to start it running. */
47#define TIME_MSEC_DECODER_WAIT 50
48
49/* This defines a minimum interval that the encoder must remain quiet
Mike Iselyfa98e592008-05-26 05:54:24 -030050 before we are allowed to configure it. I had this originally set to
51 50msec, but Martin Dauskardt <martin.dauskardt@gmx.de> reports that
52 things work better when it's set to 100msec. */
53#define TIME_MSEC_ENCODER_WAIT 100
Mike Isely83ce57a2008-05-26 05:51:57 -030054
55/* This defines the minimum interval that the encoder must successfully run
56 before we consider that the encoder has run at least once since its
57 firmware has been loaded. This measurement is in important for cases
58 where we can't do something until we know that the encoder has been run
59 at least once. */
60#define TIME_MSEC_ENCODER_OK 250
61
Mike Iselya0fd1cb2006-06-30 11:35:28 -030062static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -030063static DEFINE_MUTEX(pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -030064
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030065static int ctlchg;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030066static int procreload;
Mike Iselyd8554972006-06-26 20:58:46 -030067static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
68static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
69static int video_std[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030070static int init_pause_msec;
Mike Iselyd8554972006-06-26 20:58:46 -030071
72module_param(ctlchg, int, S_IRUGO|S_IWUSR);
73MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
74module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
75MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
Mike Iselyd8554972006-06-26 20:58:46 -030076module_param(procreload, int, S_IRUGO|S_IWUSR);
77MODULE_PARM_DESC(procreload,
78 "Attempt init failure recovery with firmware reload");
79module_param_array(tuner, int, NULL, 0444);
80MODULE_PARM_DESC(tuner,"specify installed tuner type");
81module_param_array(video_std, int, NULL, 0444);
82MODULE_PARM_DESC(video_std,"specify initial video standard");
83module_param_array(tolerance, int, NULL, 0444);
84MODULE_PARM_DESC(tolerance,"specify stream error tolerance");
85
Michael Krufky5a4f5da62008-05-11 16:37:50 -030086/* US Broadcast channel 7 (175.25 MHz) */
87static int default_tv_freq = 175250000L;
88/* 104.3 MHz, a usable FM station for my area */
89static int default_radio_freq = 104300000L;
90
91module_param_named(tv_freq, default_tv_freq, int, 0444);
92MODULE_PARM_DESC(tv_freq, "specify initial television frequency");
93module_param_named(radio_freq, default_radio_freq, int, 0444);
94MODULE_PARM_DESC(radio_freq, "specify initial radio frequency");
95
Mike Iselyd8554972006-06-26 20:58:46 -030096#define PVR2_CTL_WRITE_ENDPOINT 0x01
97#define PVR2_CTL_READ_ENDPOINT 0x81
98
99#define PVR2_GPIO_IN 0x9008
100#define PVR2_GPIO_OUT 0x900c
101#define PVR2_GPIO_DIR 0x9020
102
103#define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
104
105#define PVR2_FIRMWARE_ENDPOINT 0x02
106
107/* size of a firmware chunk */
108#define FIRMWARE_CHUNK_SIZE 0x2000
109
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300110typedef void (*pvr2_subdev_update_func)(struct pvr2_hdw *,
111 struct v4l2_subdev *);
112
113static const pvr2_subdev_update_func pvr2_module_update_functions[] = {
Mike Isely5f6dae82009-03-07 00:39:34 -0300114 [PVR2_CLIENT_ID_WM8775] = pvr2_wm8775_update,
Mike Isely6f956512009-03-07 00:43:26 -0300115 [PVR2_CLIENT_ID_SAA7115] = pvr2_saa7115_subdev_update,
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300116};
117
Mike Iselye9c64a72009-03-06 23:42:20 -0300118static const char *module_names[] = {
119 [PVR2_CLIENT_ID_MSP3400] = "msp3400",
120 [PVR2_CLIENT_ID_CX25840] = "cx25840",
121 [PVR2_CLIENT_ID_SAA7115] = "saa7115",
122 [PVR2_CLIENT_ID_TUNER] = "tuner",
123 [PVR2_CLIENT_ID_CS53132A] = "cs53132a",
Mike Isely5f6dae82009-03-07 00:39:34 -0300124 [PVR2_CLIENT_ID_WM8775] = "wm8775",
Mike Iselye9c64a72009-03-06 23:42:20 -0300125};
126
127
128static const unsigned char *module_i2c_addresses[] = {
129 [PVR2_CLIENT_ID_TUNER] = "\x60\x61\x62\x63",
130};
131
132
Mike Iselyb30d2442006-06-25 20:05:01 -0300133/* Define the list of additional controls we'll dynamically construct based
134 on query of the cx2341x module. */
135struct pvr2_mpeg_ids {
136 const char *strid;
137 int id;
138};
139static const struct pvr2_mpeg_ids mpeg_ids[] = {
140 {
141 .strid = "audio_layer",
142 .id = V4L2_CID_MPEG_AUDIO_ENCODING,
143 },{
144 .strid = "audio_bitrate",
145 .id = V4L2_CID_MPEG_AUDIO_L2_BITRATE,
146 },{
147 /* Already using audio_mode elsewhere :-( */
148 .strid = "mpeg_audio_mode",
149 .id = V4L2_CID_MPEG_AUDIO_MODE,
150 },{
151 .strid = "mpeg_audio_mode_extension",
152 .id = V4L2_CID_MPEG_AUDIO_MODE_EXTENSION,
153 },{
154 .strid = "audio_emphasis",
155 .id = V4L2_CID_MPEG_AUDIO_EMPHASIS,
156 },{
157 .strid = "audio_crc",
158 .id = V4L2_CID_MPEG_AUDIO_CRC,
159 },{
160 .strid = "video_aspect",
161 .id = V4L2_CID_MPEG_VIDEO_ASPECT,
162 },{
163 .strid = "video_b_frames",
164 .id = V4L2_CID_MPEG_VIDEO_B_FRAMES,
165 },{
166 .strid = "video_gop_size",
167 .id = V4L2_CID_MPEG_VIDEO_GOP_SIZE,
168 },{
169 .strid = "video_gop_closure",
170 .id = V4L2_CID_MPEG_VIDEO_GOP_CLOSURE,
171 },{
Mike Iselyb30d2442006-06-25 20:05:01 -0300172 .strid = "video_bitrate_mode",
173 .id = V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
174 },{
175 .strid = "video_bitrate",
176 .id = V4L2_CID_MPEG_VIDEO_BITRATE,
177 },{
178 .strid = "video_bitrate_peak",
179 .id = V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
180 },{
181 .strid = "video_temporal_decimation",
182 .id = V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION,
183 },{
184 .strid = "stream_type",
185 .id = V4L2_CID_MPEG_STREAM_TYPE,
186 },{
187 .strid = "video_spatial_filter_mode",
188 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE,
189 },{
190 .strid = "video_spatial_filter",
191 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
192 },{
193 .strid = "video_luma_spatial_filter_type",
194 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE,
195 },{
196 .strid = "video_chroma_spatial_filter_type",
197 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE,
198 },{
199 .strid = "video_temporal_filter_mode",
200 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE,
201 },{
202 .strid = "video_temporal_filter",
203 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER,
204 },{
205 .strid = "video_median_filter_type",
206 .id = V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE,
207 },{
208 .strid = "video_luma_median_filter_top",
209 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP,
210 },{
211 .strid = "video_luma_median_filter_bottom",
212 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM,
213 },{
214 .strid = "video_chroma_median_filter_top",
215 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP,
216 },{
217 .strid = "video_chroma_median_filter_bottom",
218 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM,
219 }
220};
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300221#define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
Mike Iselyc05c0462006-06-25 20:04:25 -0300222
Mike Iselyd8554972006-06-26 20:58:46 -0300223
Mike Isely434449f2006-08-08 09:10:06 -0300224static const char *control_values_srate[] = {
225 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100] = "44.1 kHz",
226 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000] = "48 kHz",
227 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000] = "32 kHz",
228};
Mike Iselyd8554972006-06-26 20:58:46 -0300229
Mike Iselyd8554972006-06-26 20:58:46 -0300230
231
232static const char *control_values_input[] = {
233 [PVR2_CVAL_INPUT_TV] = "television", /*xawtv needs this name*/
Mike Isely29bf5b12008-04-22 14:45:37 -0300234 [PVR2_CVAL_INPUT_DTV] = "dtv",
Mike Iselyd8554972006-06-26 20:58:46 -0300235 [PVR2_CVAL_INPUT_RADIO] = "radio",
236 [PVR2_CVAL_INPUT_SVIDEO] = "s-video",
237 [PVR2_CVAL_INPUT_COMPOSITE] = "composite",
238};
239
240
241static const char *control_values_audiomode[] = {
242 [V4L2_TUNER_MODE_MONO] = "Mono",
243 [V4L2_TUNER_MODE_STEREO] = "Stereo",
244 [V4L2_TUNER_MODE_LANG1] = "Lang1",
245 [V4L2_TUNER_MODE_LANG2] = "Lang2",
246 [V4L2_TUNER_MODE_LANG1_LANG2] = "Lang1+Lang2",
247};
248
249
250static const char *control_values_hsm[] = {
251 [PVR2_CVAL_HSM_FAIL] = "Fail",
252 [PVR2_CVAL_HSM_HIGH] = "High",
253 [PVR2_CVAL_HSM_FULL] = "Full",
254};
255
256
Mike Isely681c7392007-11-26 01:48:52 -0300257static const char *pvr2_state_names[] = {
258 [PVR2_STATE_NONE] = "none",
259 [PVR2_STATE_DEAD] = "dead",
260 [PVR2_STATE_COLD] = "cold",
261 [PVR2_STATE_WARM] = "warm",
262 [PVR2_STATE_ERROR] = "error",
263 [PVR2_STATE_READY] = "ready",
264 [PVR2_STATE_RUN] = "run",
Mike Iselyd8554972006-06-26 20:58:46 -0300265};
266
Mike Isely681c7392007-11-26 01:48:52 -0300267
Mike Isely694dca2b2008-03-28 05:42:10 -0300268struct pvr2_fx2cmd_descdef {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300269 unsigned char id;
270 unsigned char *desc;
271};
272
Mike Isely694dca2b2008-03-28 05:42:10 -0300273static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300274 {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"},
275 {FX2CMD_MEM_READ_DWORD, "read encoder dword"},
Mike Isely31335b12008-07-25 19:35:31 -0300276 {FX2CMD_HCW_ZILOG_RESET, "zilog IR reset control"},
Mike Isely1c9d10d2008-03-28 05:38:54 -0300277 {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"},
278 {FX2CMD_REG_WRITE, "write encoder register"},
279 {FX2CMD_REG_READ, "read encoder register"},
280 {FX2CMD_MEMSEL, "encoder memsel"},
281 {FX2CMD_I2C_WRITE, "i2c write"},
282 {FX2CMD_I2C_READ, "i2c read"},
283 {FX2CMD_GET_USB_SPEED, "get USB speed"},
284 {FX2CMD_STREAMING_ON, "stream on"},
285 {FX2CMD_STREAMING_OFF, "stream off"},
286 {FX2CMD_FWPOST1, "fwpost1"},
287 {FX2CMD_POWER_OFF, "power off"},
288 {FX2CMD_POWER_ON, "power on"},
289 {FX2CMD_DEEP_RESET, "deep reset"},
290 {FX2CMD_GET_EEPROM_ADDR, "get rom addr"},
291 {FX2CMD_GET_IR_CODE, "get IR code"},
292 {FX2CMD_HCW_DEMOD_RESETIN, "hcw demod resetin"},
293 {FX2CMD_HCW_DTV_STREAMING_ON, "hcw dtv stream on"},
294 {FX2CMD_HCW_DTV_STREAMING_OFF, "hcw dtv stream off"},
295 {FX2CMD_ONAIR_DTV_STREAMING_ON, "onair dtv stream on"},
296 {FX2CMD_ONAIR_DTV_STREAMING_OFF, "onair dtv stream off"},
297 {FX2CMD_ONAIR_DTV_POWER_ON, "onair dtv power on"},
298 {FX2CMD_ONAIR_DTV_POWER_OFF, "onair dtv power off"},
299};
300
301
Mike Isely1cb03b72008-04-21 03:47:43 -0300302static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v);
Mike Isely681c7392007-11-26 01:48:52 -0300303static void pvr2_hdw_state_sched(struct pvr2_hdw *);
304static int pvr2_hdw_state_eval(struct pvr2_hdw *);
Mike Isely1bde0282006-12-27 23:30:13 -0300305static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *,unsigned long);
Mike Isely681c7392007-11-26 01:48:52 -0300306static void pvr2_hdw_worker_i2c(struct work_struct *work);
307static void pvr2_hdw_worker_poll(struct work_struct *work);
Mike Isely681c7392007-11-26 01:48:52 -0300308static int pvr2_hdw_wait(struct pvr2_hdw *,int state);
309static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *);
310static void pvr2_hdw_state_log_state(struct pvr2_hdw *);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300311static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
Mike Isely681c7392007-11-26 01:48:52 -0300312static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300313static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300314static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw);
315static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw);
Mike Isely681c7392007-11-26 01:48:52 -0300316static void pvr2_hdw_quiescent_timeout(unsigned long);
317static void pvr2_hdw_encoder_wait_timeout(unsigned long);
Mike Iselyd913d632008-04-06 04:04:35 -0300318static void pvr2_hdw_encoder_run_timeout(unsigned long);
Mike Isely1c9d10d2008-03-28 05:38:54 -0300319static int pvr2_issue_simple_cmd(struct pvr2_hdw *,u32);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300320static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
321 unsigned int timeout,int probe_fl,
322 void *write_data,unsigned int write_len,
323 void *read_data,unsigned int read_len);
Mike Isely432907f2008-08-31 21:02:20 -0300324static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300325
Mike Isely681c7392007-11-26 01:48:52 -0300326
327static void trace_stbit(const char *name,int val)
328{
329 pvr2_trace(PVR2_TRACE_STBITS,
330 "State bit %s <-- %s",
331 name,(val ? "true" : "false"));
332}
333
Mike Iselyd8554972006-06-26 20:58:46 -0300334static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
335{
336 struct pvr2_hdw *hdw = cptr->hdw;
337 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) {
338 *vp = hdw->freqTable[hdw->freqProgSlot-1];
339 } else {
340 *vp = 0;
341 }
342 return 0;
343}
344
345static int ctrl_channelfreq_set(struct pvr2_ctrl *cptr,int m,int v)
346{
347 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300348 unsigned int slotId = hdw->freqProgSlot;
349 if ((slotId > 0) && (slotId <= FREQTABLE_SIZE)) {
350 hdw->freqTable[slotId-1] = v;
351 /* Handle side effects correctly - if we're tuned to this
352 slot, then forgot the slot id relation since the stored
353 frequency has been changed. */
354 if (hdw->freqSelector) {
355 if (hdw->freqSlotRadio == slotId) {
356 hdw->freqSlotRadio = 0;
357 }
358 } else {
359 if (hdw->freqSlotTelevision == slotId) {
360 hdw->freqSlotTelevision = 0;
361 }
362 }
Mike Iselyd8554972006-06-26 20:58:46 -0300363 }
364 return 0;
365}
366
367static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
368{
369 *vp = cptr->hdw->freqProgSlot;
370 return 0;
371}
372
373static int ctrl_channelprog_set(struct pvr2_ctrl *cptr,int m,int v)
374{
375 struct pvr2_hdw *hdw = cptr->hdw;
376 if ((v >= 0) && (v <= FREQTABLE_SIZE)) {
377 hdw->freqProgSlot = v;
378 }
379 return 0;
380}
381
382static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
383{
Mike Isely1bde0282006-12-27 23:30:13 -0300384 struct pvr2_hdw *hdw = cptr->hdw;
385 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
Mike Iselyd8554972006-06-26 20:58:46 -0300386 return 0;
387}
388
Mike Isely1bde0282006-12-27 23:30:13 -0300389static int ctrl_channel_set(struct pvr2_ctrl *cptr,int m,int slotId)
Mike Iselyd8554972006-06-26 20:58:46 -0300390{
391 unsigned freq = 0;
392 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300393 if ((slotId < 0) || (slotId > FREQTABLE_SIZE)) return 0;
394 if (slotId > 0) {
395 freq = hdw->freqTable[slotId-1];
396 if (!freq) return 0;
397 pvr2_hdw_set_cur_freq(hdw,freq);
Mike Iselyd8554972006-06-26 20:58:46 -0300398 }
Mike Isely1bde0282006-12-27 23:30:13 -0300399 if (hdw->freqSelector) {
400 hdw->freqSlotRadio = slotId;
401 } else {
402 hdw->freqSlotTelevision = slotId;
Mike Iselyd8554972006-06-26 20:58:46 -0300403 }
404 return 0;
405}
406
407static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
408{
Mike Isely1bde0282006-12-27 23:30:13 -0300409 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300410 return 0;
411}
412
413static int ctrl_freq_is_dirty(struct pvr2_ctrl *cptr)
414{
415 return cptr->hdw->freqDirty != 0;
416}
417
418static void ctrl_freq_clear_dirty(struct pvr2_ctrl *cptr)
419{
420 cptr->hdw->freqDirty = 0;
421}
422
423static int ctrl_freq_set(struct pvr2_ctrl *cptr,int m,int v)
424{
Mike Isely1bde0282006-12-27 23:30:13 -0300425 pvr2_hdw_set_cur_freq(cptr->hdw,v);
Mike Iselyd8554972006-06-26 20:58:46 -0300426 return 0;
427}
428
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300429static int ctrl_cropl_min_get(struct pvr2_ctrl *cptr, int *left)
430{
Mike Isely432907f2008-08-31 21:02:20 -0300431 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
432 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
433 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300434 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300435 }
Mike Isely432907f2008-08-31 21:02:20 -0300436 *left = cap->bounds.left;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300437 return 0;
438}
439
440static int ctrl_cropl_max_get(struct pvr2_ctrl *cptr, int *left)
441{
Mike Isely432907f2008-08-31 21:02:20 -0300442 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
443 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
444 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300445 return stat;
446 }
447 *left = cap->bounds.left;
448 if (cap->bounds.width > cptr->hdw->cropw_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300449 *left += cap->bounds.width - cptr->hdw->cropw_val;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300450 }
451 return 0;
452}
453
454static int ctrl_cropt_min_get(struct pvr2_ctrl *cptr, int *top)
455{
Mike Isely432907f2008-08-31 21:02:20 -0300456 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
457 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
458 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300459 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300460 }
Mike Isely432907f2008-08-31 21:02:20 -0300461 *top = cap->bounds.top;
462 return 0;
463}
464
465static int ctrl_cropt_max_get(struct pvr2_ctrl *cptr, int *top)
466{
467 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
468 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
469 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300470 return stat;
471 }
472 *top = cap->bounds.top;
473 if (cap->bounds.height > cptr->hdw->croph_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300474 *top += cap->bounds.height - cptr->hdw->croph_val;
475 }
476 return 0;
477}
478
479static int ctrl_cropw_max_get(struct pvr2_ctrl *cptr, int *val)
480{
481 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
482 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
483 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300484 return stat;
485 }
486 *val = 0;
487 if (cap->bounds.width > cptr->hdw->cropl_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300488 *val = cap->bounds.width - cptr->hdw->cropl_val;
489 }
490 return 0;
491}
492
493static int ctrl_croph_max_get(struct pvr2_ctrl *cptr, int *val)
494{
495 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
496 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
497 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300498 return stat;
499 }
500 *val = 0;
501 if (cap->bounds.height > cptr->hdw->cropt_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300502 *val = cap->bounds.height - cptr->hdw->cropt_val;
503 }
504 return 0;
505}
506
507static int ctrl_get_cropcapbl(struct pvr2_ctrl *cptr, int *val)
508{
509 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
510 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
511 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300512 return stat;
513 }
514 *val = cap->bounds.left;
515 return 0;
516}
517
518static int ctrl_get_cropcapbt(struct pvr2_ctrl *cptr, int *val)
519{
520 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
521 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
522 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300523 return stat;
524 }
525 *val = cap->bounds.top;
526 return 0;
527}
528
529static int ctrl_get_cropcapbw(struct pvr2_ctrl *cptr, int *val)
530{
531 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
532 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
533 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300534 return stat;
535 }
536 *val = cap->bounds.width;
537 return 0;
538}
539
540static int ctrl_get_cropcapbh(struct pvr2_ctrl *cptr, int *val)
541{
542 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
543 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
544 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300545 return stat;
546 }
547 *val = cap->bounds.height;
548 return 0;
549}
550
551static int ctrl_get_cropcapdl(struct pvr2_ctrl *cptr, int *val)
552{
553 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
554 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
555 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300556 return stat;
557 }
558 *val = cap->defrect.left;
559 return 0;
560}
561
562static int ctrl_get_cropcapdt(struct pvr2_ctrl *cptr, int *val)
563{
564 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
565 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
566 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300567 return stat;
568 }
569 *val = cap->defrect.top;
570 return 0;
571}
572
573static int ctrl_get_cropcapdw(struct pvr2_ctrl *cptr, int *val)
574{
575 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
576 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
577 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300578 return stat;
579 }
580 *val = cap->defrect.width;
581 return 0;
582}
583
584static int ctrl_get_cropcapdh(struct pvr2_ctrl *cptr, int *val)
585{
586 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
587 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
588 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300589 return stat;
590 }
591 *val = cap->defrect.height;
592 return 0;
593}
594
595static int ctrl_get_cropcappan(struct pvr2_ctrl *cptr, int *val)
596{
597 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
598 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
599 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300600 return stat;
601 }
602 *val = cap->pixelaspect.numerator;
603 return 0;
604}
605
606static int ctrl_get_cropcappad(struct pvr2_ctrl *cptr, int *val)
607{
608 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
609 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
610 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300611 return stat;
612 }
613 *val = cap->pixelaspect.denominator;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300614 return 0;
615}
616
Mike Isely3ad9fc32006-09-02 22:37:52 -0300617static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
618{
619 /* Actual maximum depends on the video standard in effect. */
620 if (cptr->hdw->std_mask_cur & V4L2_STD_525_60) {
621 *vp = 480;
622 } else {
623 *vp = 576;
624 }
625 return 0;
626}
627
628static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
629{
Mike Isely989eb152007-11-26 01:53:12 -0300630 /* Actual minimum depends on device digitizer type. */
631 if (cptr->hdw->hdw_desc->flag_has_cx25840) {
Mike Isely3ad9fc32006-09-02 22:37:52 -0300632 *vp = 75;
633 } else {
634 *vp = 17;
635 }
636 return 0;
637}
638
Mike Isely1bde0282006-12-27 23:30:13 -0300639static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
640{
641 *vp = cptr->hdw->input_val;
642 return 0;
643}
644
Mike Isely29bf5b12008-04-22 14:45:37 -0300645static int ctrl_check_input(struct pvr2_ctrl *cptr,int v)
646{
Mike Isely1cb03b72008-04-21 03:47:43 -0300647 return ((1 << v) & cptr->hdw->input_allowed_mask) != 0;
Mike Isely29bf5b12008-04-22 14:45:37 -0300648}
649
Mike Isely1bde0282006-12-27 23:30:13 -0300650static int ctrl_set_input(struct pvr2_ctrl *cptr,int m,int v)
651{
Mike Isely1cb03b72008-04-21 03:47:43 -0300652 return pvr2_hdw_set_input(cptr->hdw,v);
Mike Isely1bde0282006-12-27 23:30:13 -0300653}
654
655static int ctrl_isdirty_input(struct pvr2_ctrl *cptr)
656{
657 return cptr->hdw->input_dirty != 0;
658}
659
660static void ctrl_cleardirty_input(struct pvr2_ctrl *cptr)
661{
662 cptr->hdw->input_dirty = 0;
663}
664
Mike Isely5549f542006-12-27 23:28:54 -0300665
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300666static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
667{
Mike Isely644afdb2007-01-20 00:19:23 -0300668 unsigned long fv;
669 struct pvr2_hdw *hdw = cptr->hdw;
670 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300671 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300672 }
Mike Isely644afdb2007-01-20 00:19:23 -0300673 fv = hdw->tuner_signal_info.rangehigh;
674 if (!fv) {
675 /* Safety fallback */
676 *vp = TV_MAX_FREQ;
677 return 0;
678 }
679 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
680 fv = (fv * 125) / 2;
681 } else {
682 fv = fv * 62500;
683 }
684 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300685 return 0;
686}
687
688static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
689{
Mike Isely644afdb2007-01-20 00:19:23 -0300690 unsigned long fv;
691 struct pvr2_hdw *hdw = cptr->hdw;
692 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300693 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300694 }
Mike Isely644afdb2007-01-20 00:19:23 -0300695 fv = hdw->tuner_signal_info.rangelow;
696 if (!fv) {
697 /* Safety fallback */
698 *vp = TV_MIN_FREQ;
699 return 0;
700 }
701 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
702 fv = (fv * 125) / 2;
703 } else {
704 fv = fv * 62500;
705 }
706 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300707 return 0;
708}
709
Mike Iselyb30d2442006-06-25 20:05:01 -0300710static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl *cptr)
711{
712 return cptr->hdw->enc_stale != 0;
713}
714
715static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl *cptr)
716{
717 cptr->hdw->enc_stale = 0;
Mike Isely681c7392007-11-26 01:48:52 -0300718 cptr->hdw->enc_unsafe_stale = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300719}
720
721static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
722{
723 int ret;
724 struct v4l2_ext_controls cs;
725 struct v4l2_ext_control c1;
726 memset(&cs,0,sizeof(cs));
727 memset(&c1,0,sizeof(c1));
728 cs.controls = &c1;
729 cs.count = 1;
730 c1.id = cptr->info->v4l_id;
Hans Verkuil01f1e442007-08-21 18:32:42 -0300731 ret = cx2341x_ext_ctrls(&cptr->hdw->enc_ctl_state, 0, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300732 VIDIOC_G_EXT_CTRLS);
733 if (ret) return ret;
734 *vp = c1.value;
735 return 0;
736}
737
738static int ctrl_cx2341x_set(struct pvr2_ctrl *cptr,int m,int v)
739{
740 int ret;
Mike Isely681c7392007-11-26 01:48:52 -0300741 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselyb30d2442006-06-25 20:05:01 -0300742 struct v4l2_ext_controls cs;
743 struct v4l2_ext_control c1;
744 memset(&cs,0,sizeof(cs));
745 memset(&c1,0,sizeof(c1));
746 cs.controls = &c1;
747 cs.count = 1;
748 c1.id = cptr->info->v4l_id;
749 c1.value = v;
Mike Isely681c7392007-11-26 01:48:52 -0300750 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
751 hdw->state_encoder_run, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300752 VIDIOC_S_EXT_CTRLS);
Mike Isely681c7392007-11-26 01:48:52 -0300753 if (ret == -EBUSY) {
754 /* Oops. cx2341x is telling us it's not safe to change
755 this control while we're capturing. Make a note of this
756 fact so that the pipeline will be stopped the next time
757 controls are committed. Then go on ahead and store this
758 change anyway. */
759 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
760 0, &cs,
761 VIDIOC_S_EXT_CTRLS);
762 if (!ret) hdw->enc_unsafe_stale = !0;
763 }
Mike Iselyb30d2442006-06-25 20:05:01 -0300764 if (ret) return ret;
Mike Isely681c7392007-11-26 01:48:52 -0300765 hdw->enc_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300766 return 0;
767}
768
769static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl *cptr)
770{
771 struct v4l2_queryctrl qctrl;
772 struct pvr2_ctl_info *info;
773 qctrl.id = cptr->info->v4l_id;
774 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl);
775 /* Strip out the const so we can adjust a function pointer. It's
776 OK to do this here because we know this is a dynamically created
777 control, so the underlying storage for the info pointer is (a)
778 private to us, and (b) not in read-only storage. Either we do
779 this or we significantly complicate the underlying control
780 implementation. */
781 info = (struct pvr2_ctl_info *)(cptr->info);
782 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) {
783 if (info->set_value) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300784 info->set_value = NULL;
Mike Iselyb30d2442006-06-25 20:05:01 -0300785 }
786 } else {
787 if (!(info->set_value)) {
788 info->set_value = ctrl_cx2341x_set;
789 }
790 }
791 return qctrl.flags;
792}
793
Mike Iselyd8554972006-06-26 20:58:46 -0300794static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
795{
Mike Isely681c7392007-11-26 01:48:52 -0300796 *vp = cptr->hdw->state_pipeline_req;
797 return 0;
798}
799
800static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
801{
802 *vp = cptr->hdw->master_state;
Mike Iselyd8554972006-06-26 20:58:46 -0300803 return 0;
804}
805
806static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
807{
808 int result = pvr2_hdw_is_hsm(cptr->hdw);
809 *vp = PVR2_CVAL_HSM_FULL;
810 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
811 if (result) *vp = PVR2_CVAL_HSM_HIGH;
812 return 0;
813}
814
815static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
816{
817 *vp = cptr->hdw->std_mask_avail;
818 return 0;
819}
820
821static int ctrl_stdavail_set(struct pvr2_ctrl *cptr,int m,int v)
822{
823 struct pvr2_hdw *hdw = cptr->hdw;
824 v4l2_std_id ns;
825 ns = hdw->std_mask_avail;
826 ns = (ns & ~m) | (v & m);
827 if (ns == hdw->std_mask_avail) return 0;
828 hdw->std_mask_avail = ns;
829 pvr2_hdw_internal_set_std_avail(hdw);
830 pvr2_hdw_internal_find_stdenum(hdw);
831 return 0;
832}
833
834static int ctrl_std_val_to_sym(struct pvr2_ctrl *cptr,int msk,int val,
835 char *bufPtr,unsigned int bufSize,
836 unsigned int *len)
837{
838 *len = pvr2_std_id_to_str(bufPtr,bufSize,msk & val);
839 return 0;
840}
841
842static int ctrl_std_sym_to_val(struct pvr2_ctrl *cptr,
843 const char *bufPtr,unsigned int bufSize,
844 int *mskp,int *valp)
845{
846 int ret;
847 v4l2_std_id id;
848 ret = pvr2_std_str_to_id(&id,bufPtr,bufSize);
849 if (ret < 0) return ret;
850 if (mskp) *mskp = id;
851 if (valp) *valp = id;
852 return 0;
853}
854
855static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
856{
857 *vp = cptr->hdw->std_mask_cur;
858 return 0;
859}
860
861static int ctrl_stdcur_set(struct pvr2_ctrl *cptr,int m,int v)
862{
863 struct pvr2_hdw *hdw = cptr->hdw;
864 v4l2_std_id ns;
865 ns = hdw->std_mask_cur;
866 ns = (ns & ~m) | (v & m);
867 if (ns == hdw->std_mask_cur) return 0;
868 hdw->std_mask_cur = ns;
869 hdw->std_dirty = !0;
870 pvr2_hdw_internal_find_stdenum(hdw);
871 return 0;
872}
873
874static int ctrl_stdcur_is_dirty(struct pvr2_ctrl *cptr)
875{
876 return cptr->hdw->std_dirty != 0;
877}
878
879static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl *cptr)
880{
881 cptr->hdw->std_dirty = 0;
882}
883
884static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
885{
Mike Isely18103c572007-01-20 00:09:47 -0300886 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300887 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300888 *vp = hdw->tuner_signal_info.signal;
889 return 0;
890}
891
892static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
893{
894 int val = 0;
895 unsigned int subchan;
896 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300897 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300898 subchan = hdw->tuner_signal_info.rxsubchans;
899 if (subchan & V4L2_TUNER_SUB_MONO) {
900 val |= (1 << V4L2_TUNER_MODE_MONO);
901 }
902 if (subchan & V4L2_TUNER_SUB_STEREO) {
903 val |= (1 << V4L2_TUNER_MODE_STEREO);
904 }
905 if (subchan & V4L2_TUNER_SUB_LANG1) {
906 val |= (1 << V4L2_TUNER_MODE_LANG1);
907 }
908 if (subchan & V4L2_TUNER_SUB_LANG2) {
909 val |= (1 << V4L2_TUNER_MODE_LANG2);
910 }
911 *vp = val;
Mike Iselyd8554972006-06-26 20:58:46 -0300912 return 0;
913}
914
Mike Iselyd8554972006-06-26 20:58:46 -0300915
916static int ctrl_stdenumcur_set(struct pvr2_ctrl *cptr,int m,int v)
917{
918 struct pvr2_hdw *hdw = cptr->hdw;
919 if (v < 0) return -EINVAL;
920 if (v > hdw->std_enum_cnt) return -EINVAL;
921 hdw->std_enum_cur = v;
922 if (!v) return 0;
923 v--;
924 if (hdw->std_mask_cur == hdw->std_defs[v].id) return 0;
925 hdw->std_mask_cur = hdw->std_defs[v].id;
926 hdw->std_dirty = !0;
927 return 0;
928}
929
930
931static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
932{
933 *vp = cptr->hdw->std_enum_cur;
934 return 0;
935}
936
937
938static int ctrl_stdenumcur_is_dirty(struct pvr2_ctrl *cptr)
939{
940 return cptr->hdw->std_dirty != 0;
941}
942
943
944static void ctrl_stdenumcur_clear_dirty(struct pvr2_ctrl *cptr)
945{
946 cptr->hdw->std_dirty = 0;
947}
948
949
950#define DEFINT(vmin,vmax) \
951 .type = pvr2_ctl_int, \
952 .def.type_int.min_value = vmin, \
953 .def.type_int.max_value = vmax
954
955#define DEFENUM(tab) \
956 .type = pvr2_ctl_enum, \
Mike Isely27c7b712007-01-20 00:39:17 -0300957 .def.type_enum.count = ARRAY_SIZE(tab), \
Mike Iselyd8554972006-06-26 20:58:46 -0300958 .def.type_enum.value_names = tab
959
Mike Isely33213962006-06-25 20:04:40 -0300960#define DEFBOOL \
961 .type = pvr2_ctl_bool
962
Mike Iselyd8554972006-06-26 20:58:46 -0300963#define DEFMASK(msk,tab) \
964 .type = pvr2_ctl_bitmask, \
965 .def.type_bitmask.valid_bits = msk, \
966 .def.type_bitmask.bit_names = tab
967
968#define DEFREF(vname) \
969 .set_value = ctrl_set_##vname, \
970 .get_value = ctrl_get_##vname, \
971 .is_dirty = ctrl_isdirty_##vname, \
972 .clear_dirty = ctrl_cleardirty_##vname
973
974
975#define VCREATE_FUNCS(vname) \
976static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
977{*vp = cptr->hdw->vname##_val; return 0;} \
978static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
979{cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
980static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
981{return cptr->hdw->vname##_dirty != 0;} \
982static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
983{cptr->hdw->vname##_dirty = 0;}
984
985VCREATE_FUNCS(brightness)
986VCREATE_FUNCS(contrast)
987VCREATE_FUNCS(saturation)
988VCREATE_FUNCS(hue)
989VCREATE_FUNCS(volume)
990VCREATE_FUNCS(balance)
991VCREATE_FUNCS(bass)
992VCREATE_FUNCS(treble)
993VCREATE_FUNCS(mute)
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300994VCREATE_FUNCS(cropl)
995VCREATE_FUNCS(cropt)
996VCREATE_FUNCS(cropw)
997VCREATE_FUNCS(croph)
Mike Iselyc05c0462006-06-25 20:04:25 -0300998VCREATE_FUNCS(audiomode)
999VCREATE_FUNCS(res_hor)
1000VCREATE_FUNCS(res_ver)
Mike Iselyd8554972006-06-26 20:58:46 -03001001VCREATE_FUNCS(srate)
Mike Iselyd8554972006-06-26 20:58:46 -03001002
Mike Iselyd8554972006-06-26 20:58:46 -03001003/* Table definition of all controls which can be manipulated */
1004static const struct pvr2_ctl_info control_defs[] = {
1005 {
1006 .v4l_id = V4L2_CID_BRIGHTNESS,
1007 .desc = "Brightness",
1008 .name = "brightness",
1009 .default_value = 128,
1010 DEFREF(brightness),
1011 DEFINT(0,255),
1012 },{
1013 .v4l_id = V4L2_CID_CONTRAST,
1014 .desc = "Contrast",
1015 .name = "contrast",
1016 .default_value = 68,
1017 DEFREF(contrast),
1018 DEFINT(0,127),
1019 },{
1020 .v4l_id = V4L2_CID_SATURATION,
1021 .desc = "Saturation",
1022 .name = "saturation",
1023 .default_value = 64,
1024 DEFREF(saturation),
1025 DEFINT(0,127),
1026 },{
1027 .v4l_id = V4L2_CID_HUE,
1028 .desc = "Hue",
1029 .name = "hue",
1030 .default_value = 0,
1031 DEFREF(hue),
1032 DEFINT(-128,127),
1033 },{
1034 .v4l_id = V4L2_CID_AUDIO_VOLUME,
1035 .desc = "Volume",
1036 .name = "volume",
Mike Isely139eecf2006-12-27 23:36:33 -03001037 .default_value = 62000,
Mike Iselyd8554972006-06-26 20:58:46 -03001038 DEFREF(volume),
1039 DEFINT(0,65535),
1040 },{
1041 .v4l_id = V4L2_CID_AUDIO_BALANCE,
1042 .desc = "Balance",
1043 .name = "balance",
1044 .default_value = 0,
1045 DEFREF(balance),
1046 DEFINT(-32768,32767),
1047 },{
1048 .v4l_id = V4L2_CID_AUDIO_BASS,
1049 .desc = "Bass",
1050 .name = "bass",
1051 .default_value = 0,
1052 DEFREF(bass),
1053 DEFINT(-32768,32767),
1054 },{
1055 .v4l_id = V4L2_CID_AUDIO_TREBLE,
1056 .desc = "Treble",
1057 .name = "treble",
1058 .default_value = 0,
1059 DEFREF(treble),
1060 DEFINT(-32768,32767),
1061 },{
1062 .v4l_id = V4L2_CID_AUDIO_MUTE,
1063 .desc = "Mute",
1064 .name = "mute",
1065 .default_value = 0,
1066 DEFREF(mute),
Mike Isely33213962006-06-25 20:04:40 -03001067 DEFBOOL,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001068 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001069 .desc = "Capture crop left margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001070 .name = "crop_left",
1071 .internal_id = PVR2_CID_CROPL,
1072 .default_value = 0,
1073 DEFREF(cropl),
1074 DEFINT(-129, 340),
1075 .get_min_value = ctrl_cropl_min_get,
1076 .get_max_value = ctrl_cropl_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001077 .get_def_value = ctrl_get_cropcapdl,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001078 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001079 .desc = "Capture crop top margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001080 .name = "crop_top",
1081 .internal_id = PVR2_CID_CROPT,
1082 .default_value = 0,
1083 DEFREF(cropt),
1084 DEFINT(-35, 544),
1085 .get_min_value = ctrl_cropt_min_get,
1086 .get_max_value = ctrl_cropt_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001087 .get_def_value = ctrl_get_cropcapdt,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001088 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001089 .desc = "Capture crop width",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001090 .name = "crop_width",
1091 .internal_id = PVR2_CID_CROPW,
1092 .default_value = 720,
1093 DEFREF(cropw),
Mike Isely432907f2008-08-31 21:02:20 -03001094 .get_max_value = ctrl_cropw_max_get,
1095 .get_def_value = ctrl_get_cropcapdw,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001096 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001097 .desc = "Capture crop height",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001098 .name = "crop_height",
1099 .internal_id = PVR2_CID_CROPH,
1100 .default_value = 480,
1101 DEFREF(croph),
Mike Isely432907f2008-08-31 21:02:20 -03001102 .get_max_value = ctrl_croph_max_get,
1103 .get_def_value = ctrl_get_cropcapdh,
1104 }, {
1105 .desc = "Capture capability pixel aspect numerator",
1106 .name = "cropcap_pixel_numerator",
1107 .internal_id = PVR2_CID_CROPCAPPAN,
1108 .get_value = ctrl_get_cropcappan,
1109 }, {
1110 .desc = "Capture capability pixel aspect denominator",
1111 .name = "cropcap_pixel_denominator",
1112 .internal_id = PVR2_CID_CROPCAPPAD,
1113 .get_value = ctrl_get_cropcappad,
1114 }, {
1115 .desc = "Capture capability bounds top",
1116 .name = "cropcap_bounds_top",
1117 .internal_id = PVR2_CID_CROPCAPBT,
1118 .get_value = ctrl_get_cropcapbt,
1119 }, {
1120 .desc = "Capture capability bounds left",
1121 .name = "cropcap_bounds_left",
1122 .internal_id = PVR2_CID_CROPCAPBL,
1123 .get_value = ctrl_get_cropcapbl,
1124 }, {
1125 .desc = "Capture capability bounds width",
1126 .name = "cropcap_bounds_width",
1127 .internal_id = PVR2_CID_CROPCAPBW,
1128 .get_value = ctrl_get_cropcapbw,
1129 }, {
1130 .desc = "Capture capability bounds height",
1131 .name = "cropcap_bounds_height",
1132 .internal_id = PVR2_CID_CROPCAPBH,
1133 .get_value = ctrl_get_cropcapbh,
Mike Iselyd8554972006-06-26 20:58:46 -03001134 },{
Mike Iselyc05c0462006-06-25 20:04:25 -03001135 .desc = "Video Source",
1136 .name = "input",
1137 .internal_id = PVR2_CID_INPUT,
1138 .default_value = PVR2_CVAL_INPUT_TV,
Mike Isely29bf5b12008-04-22 14:45:37 -03001139 .check_value = ctrl_check_input,
Mike Iselyc05c0462006-06-25 20:04:25 -03001140 DEFREF(input),
1141 DEFENUM(control_values_input),
1142 },{
1143 .desc = "Audio Mode",
1144 .name = "audio_mode",
1145 .internal_id = PVR2_CID_AUDIOMODE,
1146 .default_value = V4L2_TUNER_MODE_STEREO,
1147 DEFREF(audiomode),
1148 DEFENUM(control_values_audiomode),
1149 },{
1150 .desc = "Horizontal capture resolution",
1151 .name = "resolution_hor",
1152 .internal_id = PVR2_CID_HRES,
1153 .default_value = 720,
1154 DEFREF(res_hor),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001155 DEFINT(19,720),
Mike Iselyc05c0462006-06-25 20:04:25 -03001156 },{
1157 .desc = "Vertical capture resolution",
1158 .name = "resolution_ver",
1159 .internal_id = PVR2_CID_VRES,
1160 .default_value = 480,
1161 DEFREF(res_ver),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001162 DEFINT(17,576),
1163 /* Hook in check for video standard and adjust maximum
1164 depending on the standard. */
1165 .get_max_value = ctrl_vres_max_get,
1166 .get_min_value = ctrl_vres_min_get,
Mike Iselyc05c0462006-06-25 20:04:25 -03001167 },{
Mike Iselyb30d2442006-06-25 20:05:01 -03001168 .v4l_id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
Mike Isely434449f2006-08-08 09:10:06 -03001169 .default_value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
1170 .desc = "Audio Sampling Frequency",
Mike Iselyd8554972006-06-26 20:58:46 -03001171 .name = "srate",
Mike Iselyd8554972006-06-26 20:58:46 -03001172 DEFREF(srate),
1173 DEFENUM(control_values_srate),
1174 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001175 .desc = "Tuner Frequency (Hz)",
1176 .name = "frequency",
1177 .internal_id = PVR2_CID_FREQUENCY,
Mike Isely1bde0282006-12-27 23:30:13 -03001178 .default_value = 0,
Mike Iselyd8554972006-06-26 20:58:46 -03001179 .set_value = ctrl_freq_set,
1180 .get_value = ctrl_freq_get,
1181 .is_dirty = ctrl_freq_is_dirty,
1182 .clear_dirty = ctrl_freq_clear_dirty,
Mike Isely644afdb2007-01-20 00:19:23 -03001183 DEFINT(0,0),
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -03001184 /* Hook in check for input value (tv/radio) and adjust
1185 max/min values accordingly */
1186 .get_max_value = ctrl_freq_max_get,
1187 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001188 },{
1189 .desc = "Channel",
1190 .name = "channel",
1191 .set_value = ctrl_channel_set,
1192 .get_value = ctrl_channel_get,
1193 DEFINT(0,FREQTABLE_SIZE),
1194 },{
1195 .desc = "Channel Program Frequency",
1196 .name = "freq_table_value",
1197 .set_value = ctrl_channelfreq_set,
1198 .get_value = ctrl_channelfreq_get,
Mike Isely644afdb2007-01-20 00:19:23 -03001199 DEFINT(0,0),
Mike Isely1bde0282006-12-27 23:30:13 -03001200 /* Hook in check for input value (tv/radio) and adjust
1201 max/min values accordingly */
Mike Isely1bde0282006-12-27 23:30:13 -03001202 .get_max_value = ctrl_freq_max_get,
1203 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001204 },{
1205 .desc = "Channel Program ID",
1206 .name = "freq_table_channel",
1207 .set_value = ctrl_channelprog_set,
1208 .get_value = ctrl_channelprog_get,
1209 DEFINT(0,FREQTABLE_SIZE),
1210 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001211 .desc = "Streaming Enabled",
1212 .name = "streaming_enabled",
1213 .get_value = ctrl_streamingenabled_get,
Mike Isely33213962006-06-25 20:04:40 -03001214 DEFBOOL,
Mike Iselyd8554972006-06-26 20:58:46 -03001215 },{
1216 .desc = "USB Speed",
1217 .name = "usb_speed",
1218 .get_value = ctrl_hsm_get,
1219 DEFENUM(control_values_hsm),
1220 },{
Mike Isely681c7392007-11-26 01:48:52 -03001221 .desc = "Master State",
1222 .name = "master_state",
1223 .get_value = ctrl_masterstate_get,
1224 DEFENUM(pvr2_state_names),
1225 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001226 .desc = "Signal Present",
1227 .name = "signal_present",
1228 .get_value = ctrl_signal_get,
Mike Isely18103c572007-01-20 00:09:47 -03001229 DEFINT(0,65535),
1230 },{
1231 .desc = "Audio Modes Present",
1232 .name = "audio_modes_present",
1233 .get_value = ctrl_audio_modes_present_get,
1234 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
1235 v4l. Nothing outside of this module cares about this,
1236 but I reuse it in order to also reuse the
1237 control_values_audiomode string table. */
1238 DEFMASK(((1 << V4L2_TUNER_MODE_MONO)|
1239 (1 << V4L2_TUNER_MODE_STEREO)|
1240 (1 << V4L2_TUNER_MODE_LANG1)|
1241 (1 << V4L2_TUNER_MODE_LANG2)),
1242 control_values_audiomode),
Mike Iselyd8554972006-06-26 20:58:46 -03001243 },{
1244 .desc = "Video Standards Available Mask",
1245 .name = "video_standard_mask_available",
1246 .internal_id = PVR2_CID_STDAVAIL,
1247 .skip_init = !0,
1248 .get_value = ctrl_stdavail_get,
1249 .set_value = ctrl_stdavail_set,
1250 .val_to_sym = ctrl_std_val_to_sym,
1251 .sym_to_val = ctrl_std_sym_to_val,
1252 .type = pvr2_ctl_bitmask,
1253 },{
1254 .desc = "Video Standards In Use Mask",
1255 .name = "video_standard_mask_active",
1256 .internal_id = PVR2_CID_STDCUR,
1257 .skip_init = !0,
1258 .get_value = ctrl_stdcur_get,
1259 .set_value = ctrl_stdcur_set,
1260 .is_dirty = ctrl_stdcur_is_dirty,
1261 .clear_dirty = ctrl_stdcur_clear_dirty,
1262 .val_to_sym = ctrl_std_val_to_sym,
1263 .sym_to_val = ctrl_std_sym_to_val,
1264 .type = pvr2_ctl_bitmask,
1265 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001266 .desc = "Video Standard Name",
1267 .name = "video_standard",
1268 .internal_id = PVR2_CID_STDENUM,
1269 .skip_init = !0,
1270 .get_value = ctrl_stdenumcur_get,
1271 .set_value = ctrl_stdenumcur_set,
1272 .is_dirty = ctrl_stdenumcur_is_dirty,
1273 .clear_dirty = ctrl_stdenumcur_clear_dirty,
1274 .type = pvr2_ctl_enum,
1275 }
1276};
1277
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001278#define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
Mike Iselyd8554972006-06-26 20:58:46 -03001279
1280
1281const char *pvr2_config_get_name(enum pvr2_config cfg)
1282{
1283 switch (cfg) {
1284 case pvr2_config_empty: return "empty";
1285 case pvr2_config_mpeg: return "mpeg";
1286 case pvr2_config_vbi: return "vbi";
Mike Isely16eb40d2006-12-30 18:27:32 -03001287 case pvr2_config_pcm: return "pcm";
1288 case pvr2_config_rawvideo: return "raw video";
Mike Iselyd8554972006-06-26 20:58:46 -03001289 }
1290 return "<unknown>";
1291}
1292
1293
1294struct usb_device *pvr2_hdw_get_dev(struct pvr2_hdw *hdw)
1295{
1296 return hdw->usb_dev;
1297}
1298
1299
1300unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *hdw)
1301{
1302 return hdw->serial_number;
1303}
1304
Mike Isely31a18542007-04-08 01:11:47 -03001305
1306const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *hdw)
1307{
1308 return hdw->bus_info;
1309}
1310
1311
Mike Isely13a88792009-01-14 04:22:56 -03001312const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw *hdw)
1313{
1314 return hdw->identifier;
1315}
1316
1317
Mike Isely1bde0282006-12-27 23:30:13 -03001318unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw *hdw)
1319{
1320 return hdw->freqSelector ? hdw->freqValTelevision : hdw->freqValRadio;
1321}
1322
1323/* Set the currently tuned frequency and account for all possible
1324 driver-core side effects of this action. */
Adrian Bunkf55a8712008-04-18 05:38:56 -03001325static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *hdw,unsigned long val)
Mike Isely1bde0282006-12-27 23:30:13 -03001326{
Mike Isely7c74e572007-01-20 00:15:41 -03001327 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
Mike Isely1bde0282006-12-27 23:30:13 -03001328 if (hdw->freqSelector) {
1329 /* Swing over to radio frequency selection */
1330 hdw->freqSelector = 0;
1331 hdw->freqDirty = !0;
1332 }
Mike Isely1bde0282006-12-27 23:30:13 -03001333 if (hdw->freqValRadio != val) {
1334 hdw->freqValRadio = val;
1335 hdw->freqSlotRadio = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001336 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001337 }
Mike Isely7c74e572007-01-20 00:15:41 -03001338 } else {
Mike Isely1bde0282006-12-27 23:30:13 -03001339 if (!(hdw->freqSelector)) {
1340 /* Swing over to television frequency selection */
1341 hdw->freqSelector = 1;
1342 hdw->freqDirty = !0;
1343 }
Mike Isely1bde0282006-12-27 23:30:13 -03001344 if (hdw->freqValTelevision != val) {
1345 hdw->freqValTelevision = val;
1346 hdw->freqSlotTelevision = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001347 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001348 }
Mike Isely1bde0282006-12-27 23:30:13 -03001349 }
1350}
1351
Mike Iselyd8554972006-06-26 20:58:46 -03001352int pvr2_hdw_get_unit_number(struct pvr2_hdw *hdw)
1353{
1354 return hdw->unit_number;
1355}
1356
1357
1358/* Attempt to locate one of the given set of files. Messages are logged
1359 appropriate to what has been found. The return value will be 0 or
1360 greater on success (it will be the index of the file name found) and
1361 fw_entry will be filled in. Otherwise a negative error is returned on
1362 failure. If the return value is -ENOENT then no viable firmware file
1363 could be located. */
1364static int pvr2_locate_firmware(struct pvr2_hdw *hdw,
1365 const struct firmware **fw_entry,
1366 const char *fwtypename,
1367 unsigned int fwcount,
1368 const char *fwnames[])
1369{
1370 unsigned int idx;
1371 int ret = -EINVAL;
1372 for (idx = 0; idx < fwcount; idx++) {
1373 ret = request_firmware(fw_entry,
1374 fwnames[idx],
1375 &hdw->usb_dev->dev);
1376 if (!ret) {
1377 trace_firmware("Located %s firmware: %s;"
1378 " uploading...",
1379 fwtypename,
1380 fwnames[idx]);
1381 return idx;
1382 }
1383 if (ret == -ENOENT) continue;
1384 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1385 "request_firmware fatal error with code=%d",ret);
1386 return ret;
1387 }
1388 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1389 "***WARNING***"
1390 " Device %s firmware"
1391 " seems to be missing.",
1392 fwtypename);
1393 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1394 "Did you install the pvrusb2 firmware files"
1395 " in their proper location?");
1396 if (fwcount == 1) {
1397 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1398 "request_firmware unable to locate %s file %s",
1399 fwtypename,fwnames[0]);
1400 } else {
1401 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1402 "request_firmware unable to locate"
1403 " one of the following %s files:",
1404 fwtypename);
1405 for (idx = 0; idx < fwcount; idx++) {
1406 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1407 "request_firmware: Failed to find %s",
1408 fwnames[idx]);
1409 }
1410 }
1411 return ret;
1412}
1413
1414
1415/*
1416 * pvr2_upload_firmware1().
1417 *
1418 * Send the 8051 firmware to the device. After the upload, arrange for
1419 * device to re-enumerate.
1420 *
1421 * NOTE : the pointer to the firmware data given by request_firmware()
1422 * is not suitable for an usb transaction.
1423 *
1424 */
Adrian Bunk07e337e2006-06-30 11:30:20 -03001425static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03001426{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001427 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001428 void *fw_ptr;
1429 unsigned int pipe;
1430 int ret;
1431 u16 address;
Mike Isely1d643a32007-09-08 22:18:50 -03001432
Mike Isely989eb152007-11-26 01:53:12 -03001433 if (!hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03001434 hdw->fw1_state = FW1_STATE_OK;
Mike Isely56dcbfa2007-11-26 02:00:51 -03001435 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1436 "Connected device type defines"
1437 " no firmware to upload; ignoring firmware");
1438 return -ENOTTY;
Mike Isely1d643a32007-09-08 22:18:50 -03001439 }
1440
Mike Iselyd8554972006-06-26 20:58:46 -03001441 hdw->fw1_state = FW1_STATE_FAILED; // default result
1442
1443 trace_firmware("pvr2_upload_firmware1");
1444
1445 ret = pvr2_locate_firmware(hdw,&fw_entry,"fx2 controller",
Mike Isely989eb152007-11-26 01:53:12 -03001446 hdw->hdw_desc->fx2_firmware.cnt,
1447 hdw->hdw_desc->fx2_firmware.lst);
Mike Iselyd8554972006-06-26 20:58:46 -03001448 if (ret < 0) {
1449 if (ret == -ENOENT) hdw->fw1_state = FW1_STATE_MISSING;
1450 return ret;
1451 }
1452
1453 usb_settoggle(hdw->usb_dev, 0 & 0xf, !(0 & USB_DIR_IN), 0);
1454 usb_clear_halt(hdw->usb_dev, usb_sndbulkpipe(hdw->usb_dev, 0 & 0x7f));
1455
1456 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
1457
1458 if (fw_entry->size != 0x2000){
1459 pvr2_trace(PVR2_TRACE_ERROR_LEGS,"wrong fx2 firmware size");
1460 release_firmware(fw_entry);
1461 return -ENOMEM;
1462 }
1463
1464 fw_ptr = kmalloc(0x800, GFP_KERNEL);
1465 if (fw_ptr == NULL){
1466 release_firmware(fw_entry);
1467 return -ENOMEM;
1468 }
1469
1470 /* We have to hold the CPU during firmware upload. */
1471 pvr2_hdw_cpureset_assert(hdw,1);
1472
1473 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1474 chunk. */
1475
1476 ret = 0;
1477 for(address = 0; address < fw_entry->size; address += 0x800) {
1478 memcpy(fw_ptr, fw_entry->data + address, 0x800);
1479 ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address,
1480 0, fw_ptr, 0x800, HZ);
1481 }
1482
1483 trace_firmware("Upload done, releasing device's CPU");
1484
1485 /* Now release the CPU. It will disconnect and reconnect later. */
1486 pvr2_hdw_cpureset_assert(hdw,0);
1487
1488 kfree(fw_ptr);
1489 release_firmware(fw_entry);
1490
1491 trace_firmware("Upload done (%d bytes sent)",ret);
1492
1493 /* We should have written 8192 bytes */
1494 if (ret == 8192) {
1495 hdw->fw1_state = FW1_STATE_RELOAD;
1496 return 0;
1497 }
1498
1499 return -EIO;
1500}
1501
1502
1503/*
1504 * pvr2_upload_firmware2()
1505 *
1506 * This uploads encoder firmware on endpoint 2.
1507 *
1508 */
1509
1510int pvr2_upload_firmware2(struct pvr2_hdw *hdw)
1511{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001512 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001513 void *fw_ptr;
Mike Isely90060d32007-02-08 02:02:53 -03001514 unsigned int pipe, fw_len, fw_done, bcnt, icnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001515 int actual_length;
1516 int ret = 0;
1517 int fwidx;
1518 static const char *fw_files[] = {
1519 CX2341X_FIRM_ENC_FILENAME,
1520 };
1521
Mike Isely989eb152007-11-26 01:53:12 -03001522 if (hdw->hdw_desc->flag_skip_cx23416_firmware) {
Mike Isely1d643a32007-09-08 22:18:50 -03001523 return 0;
1524 }
1525
Mike Iselyd8554972006-06-26 20:58:46 -03001526 trace_firmware("pvr2_upload_firmware2");
1527
1528 ret = pvr2_locate_firmware(hdw,&fw_entry,"encoder",
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001529 ARRAY_SIZE(fw_files), fw_files);
Mike Iselyd8554972006-06-26 20:58:46 -03001530 if (ret < 0) return ret;
1531 fwidx = ret;
1532 ret = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -03001533 /* Since we're about to completely reinitialize the encoder,
1534 invalidate our cached copy of its configuration state. Next
1535 time we configure the encoder, then we'll fully configure it. */
1536 hdw->enc_cur_valid = 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001537
Mike Iselyd913d632008-04-06 04:04:35 -03001538 /* Encoder is about to be reset so note that as far as we're
1539 concerned now, the encoder has never been run. */
1540 del_timer_sync(&hdw->encoder_run_timer);
1541 if (hdw->state_encoder_runok) {
1542 hdw->state_encoder_runok = 0;
1543 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
1544 }
1545
Mike Iselyd8554972006-06-26 20:58:46 -03001546 /* First prepare firmware loading */
1547 ret |= pvr2_write_register(hdw, 0x0048, 0xffffffff); /*interrupt mask*/
1548 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000088); /*gpio dir*/
1549 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1550 ret |= pvr2_hdw_cmd_deep_reset(hdw);
1551 ret |= pvr2_write_register(hdw, 0xa064, 0x00000000); /*APU command*/
1552 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000408); /*gpio dir*/
1553 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1554 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffed); /*VPU ctrl*/
1555 ret |= pvr2_write_register(hdw, 0x9054, 0xfffffffd); /*reset hw blocks*/
1556 ret |= pvr2_write_register(hdw, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1557 ret |= pvr2_write_register(hdw, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1558 ret |= pvr2_write_register(hdw, 0x0700, 0x00000000); /*I2C clock*/
1559 ret |= pvr2_write_register(hdw, 0xaa00, 0x00000000); /*unknown*/
1560 ret |= pvr2_write_register(hdw, 0xaa04, 0x00057810); /*unknown*/
1561 ret |= pvr2_write_register(hdw, 0xaa10, 0x00148500); /*unknown*/
1562 ret |= pvr2_write_register(hdw, 0xaa18, 0x00840000); /*unknown*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001563 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_FWPOST1);
1564 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001565
1566 if (ret) {
1567 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1568 "firmware2 upload prep failed, ret=%d",ret);
1569 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001570 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001571 }
1572
1573 /* Now send firmware */
1574
1575 fw_len = fw_entry->size;
1576
Mike Isely90060d32007-02-08 02:02:53 -03001577 if (fw_len % sizeof(u32)) {
Mike Iselyd8554972006-06-26 20:58:46 -03001578 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1579 "size of %s firmware"
Mike Isely48dc30a2007-03-03 10:13:05 -02001580 " must be a multiple of %zu bytes",
Mike Isely90060d32007-02-08 02:02:53 -03001581 fw_files[fwidx],sizeof(u32));
Mike Iselyd8554972006-06-26 20:58:46 -03001582 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001583 ret = -EINVAL;
1584 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001585 }
1586
1587 fw_ptr = kmalloc(FIRMWARE_CHUNK_SIZE, GFP_KERNEL);
1588 if (fw_ptr == NULL){
1589 release_firmware(fw_entry);
1590 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1591 "failed to allocate memory for firmware2 upload");
Mike Isely21684ba2008-04-21 03:49:33 -03001592 ret = -ENOMEM;
1593 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001594 }
1595
1596 pipe = usb_sndbulkpipe(hdw->usb_dev, PVR2_FIRMWARE_ENDPOINT);
1597
Mike Isely90060d32007-02-08 02:02:53 -03001598 fw_done = 0;
1599 for (fw_done = 0; fw_done < fw_len;) {
1600 bcnt = fw_len - fw_done;
1601 if (bcnt > FIRMWARE_CHUNK_SIZE) bcnt = FIRMWARE_CHUNK_SIZE;
1602 memcpy(fw_ptr, fw_entry->data + fw_done, bcnt);
1603 /* Usbsnoop log shows that we must swap bytes... */
Mike Isely5f33df12008-08-30 15:09:31 -03001604 /* Some background info: The data being swapped here is a
1605 firmware image destined for the mpeg encoder chip that
1606 lives at the other end of a USB endpoint. The encoder
1607 chip always talks in 32 bit chunks and its storage is
1608 organized into 32 bit words. However from the file
1609 system to the encoder chip everything is purely a byte
1610 stream. The firmware file's contents are always 32 bit
1611 swapped from what the encoder expects. Thus the need
1612 always exists to swap the bytes regardless of the endian
1613 type of the host processor and therefore swab32() makes
1614 the most sense. */
Mike Isely90060d32007-02-08 02:02:53 -03001615 for (icnt = 0; icnt < bcnt/4 ; icnt++)
Harvey Harrison513edce2008-08-18 17:38:01 -03001616 ((u32 *)fw_ptr)[icnt] = swab32(((u32 *)fw_ptr)[icnt]);
Mike Iselyd8554972006-06-26 20:58:46 -03001617
Mike Isely90060d32007-02-08 02:02:53 -03001618 ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt,
Mike Iselyd8554972006-06-26 20:58:46 -03001619 &actual_length, HZ);
Mike Isely90060d32007-02-08 02:02:53 -03001620 ret |= (actual_length != bcnt);
1621 if (ret) break;
1622 fw_done += bcnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001623 }
1624
1625 trace_firmware("upload of %s : %i / %i ",
1626 fw_files[fwidx],fw_done,fw_len);
1627
1628 kfree(fw_ptr);
1629 release_firmware(fw_entry);
1630
1631 if (ret) {
1632 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1633 "firmware2 upload transfer failure");
Mike Isely21684ba2008-04-21 03:49:33 -03001634 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001635 }
1636
1637 /* Finish upload */
1638
1639 ret |= pvr2_write_register(hdw, 0x9054, 0xffffffff); /*reset hw blocks*/
1640 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffe8); /*VPU ctrl*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001641 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001642
1643 if (ret) {
1644 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1645 "firmware2 upload post-proc failure");
Mike Iselyd8554972006-06-26 20:58:46 -03001646 }
Mike Isely21684ba2008-04-21 03:49:33 -03001647
1648 done:
Mike Isely1df59f02008-04-21 03:50:39 -03001649 if (hdw->hdw_desc->signal_routing_scheme ==
1650 PVR2_ROUTING_SCHEME_GOTVIEW) {
1651 /* Ensure that GPIO 11 is set to output for GOTVIEW
1652 hardware. */
1653 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
1654 }
Mike Iselyd8554972006-06-26 20:58:46 -03001655 return ret;
1656}
1657
1658
Mike Isely681c7392007-11-26 01:48:52 -03001659static const char *pvr2_get_state_name(unsigned int st)
Mike Iselyd8554972006-06-26 20:58:46 -03001660{
Mike Isely681c7392007-11-26 01:48:52 -03001661 if (st < ARRAY_SIZE(pvr2_state_names)) {
1662 return pvr2_state_names[st];
Mike Iselyd8554972006-06-26 20:58:46 -03001663 }
Mike Isely681c7392007-11-26 01:48:52 -03001664 return "???";
Mike Iselyd8554972006-06-26 20:58:46 -03001665}
1666
Mike Isely681c7392007-11-26 01:48:52 -03001667static int pvr2_decoder_enable(struct pvr2_hdw *hdw,int enablefl)
Mike Iselyd8554972006-06-26 20:58:46 -03001668{
Mike Iselyaf78e162009-03-07 00:21:30 -03001669 if (hdw->decoder_ctrl) {
1670 hdw->decoder_ctrl->enable(hdw->decoder_ctrl->ctxt, enablefl);
1671 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001672 }
Mike Iselyaf78e162009-03-07 00:21:30 -03001673 /* Even though we really only care about the video decoder chip at
1674 this point, we'll broadcast stream on/off to all sub-devices
1675 anyway, just in case somebody else wants to hear the
1676 command... */
1677 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_stream, enablefl);
1678 if (hdw->decoder_client_id) {
1679 /* We get here if the encoder has been noticed. Otherwise
1680 we'll issue a warning to the user (which should
1681 normally never happen). */
1682 return 0;
1683 }
1684 if (!hdw->flag_decoder_missed) {
1685 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1686 "WARNING: No decoder present");
1687 hdw->flag_decoder_missed = !0;
1688 trace_stbit("flag_decoder_missed",
1689 hdw->flag_decoder_missed);
1690 }
1691 return -EIO;
Mike Iselyd8554972006-06-26 20:58:46 -03001692}
1693
1694
Mike Isely681c7392007-11-26 01:48:52 -03001695void pvr2_hdw_set_decoder(struct pvr2_hdw *hdw,struct pvr2_decoder_ctrl *ptr)
1696{
1697 if (hdw->decoder_ctrl == ptr) return;
1698 hdw->decoder_ctrl = ptr;
1699 if (hdw->decoder_ctrl && hdw->flag_decoder_missed) {
1700 hdw->flag_decoder_missed = 0;
1701 trace_stbit("flag_decoder_missed",
1702 hdw->flag_decoder_missed);
1703 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1704 "Decoder has appeared");
1705 pvr2_hdw_state_sched(hdw);
1706 }
1707}
1708
1709
1710int pvr2_hdw_get_state(struct pvr2_hdw *hdw)
1711{
1712 return hdw->master_state;
1713}
1714
1715
1716static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *hdw)
1717{
1718 if (!hdw->flag_tripped) return 0;
1719 hdw->flag_tripped = 0;
1720 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1721 "Clearing driver error statuss");
1722 return !0;
1723}
1724
1725
1726int pvr2_hdw_untrip(struct pvr2_hdw *hdw)
1727{
1728 int fl;
1729 LOCK_TAKE(hdw->big_lock); do {
1730 fl = pvr2_hdw_untrip_unlocked(hdw);
1731 } while (0); LOCK_GIVE(hdw->big_lock);
1732 if (fl) pvr2_hdw_state_sched(hdw);
1733 return 0;
1734}
1735
1736
Mike Isely681c7392007-11-26 01:48:52 -03001737
1738
Mike Iselyd8554972006-06-26 20:58:46 -03001739int pvr2_hdw_get_streaming(struct pvr2_hdw *hdw)
1740{
Mike Isely681c7392007-11-26 01:48:52 -03001741 return hdw->state_pipeline_req != 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001742}
1743
1744
1745int pvr2_hdw_set_streaming(struct pvr2_hdw *hdw,int enable_flag)
1746{
Mike Isely681c7392007-11-26 01:48:52 -03001747 int ret,st;
Mike Iselyd8554972006-06-26 20:58:46 -03001748 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03001749 pvr2_hdw_untrip_unlocked(hdw);
1750 if ((!enable_flag) != !(hdw->state_pipeline_req)) {
1751 hdw->state_pipeline_req = enable_flag != 0;
1752 pvr2_trace(PVR2_TRACE_START_STOP,
1753 "/*--TRACE_STREAM--*/ %s",
1754 enable_flag ? "enable" : "disable");
1755 }
1756 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03001757 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001758 if ((ret = pvr2_hdw_wait(hdw,0)) < 0) return ret;
1759 if (enable_flag) {
1760 while ((st = hdw->master_state) != PVR2_STATE_RUN) {
1761 if (st != PVR2_STATE_READY) return -EIO;
1762 if ((ret = pvr2_hdw_wait(hdw,st)) < 0) return ret;
1763 }
1764 }
Mike Iselyd8554972006-06-26 20:58:46 -03001765 return 0;
1766}
1767
1768
1769int pvr2_hdw_set_stream_type(struct pvr2_hdw *hdw,enum pvr2_config config)
1770{
Mike Isely681c7392007-11-26 01:48:52 -03001771 int fl;
Mike Iselyd8554972006-06-26 20:58:46 -03001772 LOCK_TAKE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001773 if ((fl = (hdw->desired_stream_type != config)) != 0) {
1774 hdw->desired_stream_type = config;
1775 hdw->state_pipeline_config = 0;
1776 trace_stbit("state_pipeline_config",
1777 hdw->state_pipeline_config);
1778 pvr2_hdw_state_sched(hdw);
1779 }
Mike Iselyd8554972006-06-26 20:58:46 -03001780 LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001781 if (fl) return 0;
1782 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03001783}
1784
1785
1786static int get_default_tuner_type(struct pvr2_hdw *hdw)
1787{
1788 int unit_number = hdw->unit_number;
1789 int tp = -1;
1790 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1791 tp = tuner[unit_number];
1792 }
1793 if (tp < 0) return -EINVAL;
1794 hdw->tuner_type = tp;
Mike Iselyaaf78842007-11-26 02:04:11 -03001795 hdw->tuner_updated = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03001796 return 0;
1797}
1798
1799
1800static v4l2_std_id get_default_standard(struct pvr2_hdw *hdw)
1801{
1802 int unit_number = hdw->unit_number;
1803 int tp = 0;
1804 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1805 tp = video_std[unit_number];
Mike Isely6a540252007-12-02 23:51:34 -03001806 if (tp) return tp;
Mike Iselyd8554972006-06-26 20:58:46 -03001807 }
Mike Isely6a540252007-12-02 23:51:34 -03001808 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001809}
1810
1811
1812static unsigned int get_default_error_tolerance(struct pvr2_hdw *hdw)
1813{
1814 int unit_number = hdw->unit_number;
1815 int tp = 0;
1816 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1817 tp = tolerance[unit_number];
1818 }
1819 return tp;
1820}
1821
1822
1823static int pvr2_hdw_check_firmware(struct pvr2_hdw *hdw)
1824{
1825 /* Try a harmless request to fetch the eeprom's address over
1826 endpoint 1. See what happens. Only the full FX2 image can
1827 respond to this. If this probe fails then likely the FX2
1828 firmware needs be loaded. */
1829 int result;
1830 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03001831 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03001832 result = pvr2_send_request_ex(hdw,HZ*1,!0,
1833 hdw->cmd_buffer,1,
1834 hdw->cmd_buffer,1);
1835 if (result < 0) break;
1836 } while(0); LOCK_GIVE(hdw->ctl_lock);
1837 if (result) {
1838 pvr2_trace(PVR2_TRACE_INIT,
1839 "Probe of device endpoint 1 result status %d",
1840 result);
1841 } else {
1842 pvr2_trace(PVR2_TRACE_INIT,
1843 "Probe of device endpoint 1 succeeded");
1844 }
1845 return result == 0;
1846}
1847
Mike Isely9f66d4e2007-09-08 22:28:51 -03001848struct pvr2_std_hack {
1849 v4l2_std_id pat; /* Pattern to match */
1850 v4l2_std_id msk; /* Which bits we care about */
1851 v4l2_std_id std; /* What additional standards or default to set */
1852};
1853
1854/* This data structure labels specific combinations of standards from
1855 tveeprom that we'll try to recognize. If we recognize one, then assume
1856 a specified default standard to use. This is here because tveeprom only
1857 tells us about available standards not the intended default standard (if
1858 any) for the device in question. We guess the default based on what has
1859 been reported as available. Note that this is only for guessing a
1860 default - which can always be overridden explicitly - and if the user
1861 has otherwise named a default then that default will always be used in
1862 place of this table. */
Tobias Klauserebff0332008-04-22 14:45:45 -03001863static const struct pvr2_std_hack std_eeprom_maps[] = {
Mike Isely9f66d4e2007-09-08 22:28:51 -03001864 { /* PAL(B/G) */
1865 .pat = V4L2_STD_B|V4L2_STD_GH,
1866 .std = V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_PAL_G,
1867 },
1868 { /* NTSC(M) */
1869 .pat = V4L2_STD_MN,
1870 .std = V4L2_STD_NTSC_M,
1871 },
1872 { /* PAL(I) */
1873 .pat = V4L2_STD_PAL_I,
1874 .std = V4L2_STD_PAL_I,
1875 },
1876 { /* SECAM(L/L') */
1877 .pat = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1878 .std = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1879 },
1880 { /* PAL(D/D1/K) */
1881 .pat = V4L2_STD_DK,
Roel Kluinea2562d2007-12-02 23:04:57 -03001882 .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001883 },
1884};
1885
Mike Iselyd8554972006-06-26 20:58:46 -03001886static void pvr2_hdw_setup_std(struct pvr2_hdw *hdw)
1887{
1888 char buf[40];
1889 unsigned int bcnt;
Mike Isely3d290bd2007-12-03 01:47:12 -03001890 v4l2_std_id std1,std2,std3;
Mike Iselyd8554972006-06-26 20:58:46 -03001891
1892 std1 = get_default_standard(hdw);
Mike Isely3d290bd2007-12-03 01:47:12 -03001893 std3 = std1 ? 0 : hdw->hdw_desc->default_std_mask;
Mike Iselyd8554972006-06-26 20:58:46 -03001894
1895 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
Mike Isely56585382007-09-08 22:32:12 -03001896 pvr2_trace(PVR2_TRACE_STD,
Mike Isely56dcbfa2007-11-26 02:00:51 -03001897 "Supported video standard(s) reported available"
1898 " in hardware: %.*s",
Mike Iselyd8554972006-06-26 20:58:46 -03001899 bcnt,buf);
1900
1901 hdw->std_mask_avail = hdw->std_mask_eeprom;
1902
Mike Isely3d290bd2007-12-03 01:47:12 -03001903 std2 = (std1|std3) & ~hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -03001904 if (std2) {
1905 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
Mike Isely56585382007-09-08 22:32:12 -03001906 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001907 "Expanding supported video standards"
1908 " to include: %.*s",
1909 bcnt,buf);
1910 hdw->std_mask_avail |= std2;
1911 }
1912
1913 pvr2_hdw_internal_set_std_avail(hdw);
1914
1915 if (std1) {
1916 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
Mike Isely56585382007-09-08 22:32:12 -03001917 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001918 "Initial video standard forced to %.*s",
1919 bcnt,buf);
1920 hdw->std_mask_cur = std1;
1921 hdw->std_dirty = !0;
1922 pvr2_hdw_internal_find_stdenum(hdw);
1923 return;
1924 }
Mike Isely3d290bd2007-12-03 01:47:12 -03001925 if (std3) {
1926 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1927 pvr2_trace(PVR2_TRACE_STD,
1928 "Initial video standard"
1929 " (determined by device type): %.*s",bcnt,buf);
1930 hdw->std_mask_cur = std3;
1931 hdw->std_dirty = !0;
1932 pvr2_hdw_internal_find_stdenum(hdw);
1933 return;
1934 }
Mike Iselyd8554972006-06-26 20:58:46 -03001935
Mike Isely9f66d4e2007-09-08 22:28:51 -03001936 {
1937 unsigned int idx;
1938 for (idx = 0; idx < ARRAY_SIZE(std_eeprom_maps); idx++) {
1939 if (std_eeprom_maps[idx].msk ?
1940 ((std_eeprom_maps[idx].pat ^
1941 hdw->std_mask_eeprom) &
1942 std_eeprom_maps[idx].msk) :
1943 (std_eeprom_maps[idx].pat !=
1944 hdw->std_mask_eeprom)) continue;
1945 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1946 std_eeprom_maps[idx].std);
Mike Isely56585382007-09-08 22:32:12 -03001947 pvr2_trace(PVR2_TRACE_STD,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001948 "Initial video standard guessed as %.*s",
1949 bcnt,buf);
1950 hdw->std_mask_cur = std_eeprom_maps[idx].std;
1951 hdw->std_dirty = !0;
1952 pvr2_hdw_internal_find_stdenum(hdw);
1953 return;
1954 }
1955 }
1956
Mike Iselyd8554972006-06-26 20:58:46 -03001957 if (hdw->std_enum_cnt > 1) {
1958 // Autoselect the first listed standard
1959 hdw->std_enum_cur = 1;
1960 hdw->std_mask_cur = hdw->std_defs[hdw->std_enum_cur-1].id;
1961 hdw->std_dirty = !0;
Mike Isely56585382007-09-08 22:32:12 -03001962 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001963 "Initial video standard auto-selected to %s",
1964 hdw->std_defs[hdw->std_enum_cur-1].name);
1965 return;
1966 }
1967
Mike Isely0885ba12006-06-25 21:30:47 -03001968 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Iselyd8554972006-06-26 20:58:46 -03001969 "Unable to select a viable initial video standard");
1970}
1971
1972
Mike Iselye9c64a72009-03-06 23:42:20 -03001973static unsigned int pvr2_copy_i2c_addr_list(
1974 unsigned short *dst, const unsigned char *src,
1975 unsigned int dst_max)
1976{
1977 unsigned int cnt;
1978 if (!src) return 0;
1979 while (src[cnt] && (cnt + 1) < dst_max) {
1980 dst[cnt] = src[cnt];
1981 cnt++;
1982 }
1983 dst[cnt] = I2C_CLIENT_END;
1984 return cnt;
1985}
1986
1987
Mike Isely1ab5e742009-03-07 00:24:24 -03001988static int pvr2_hdw_load_subdev(struct pvr2_hdw *hdw,
1989 const struct pvr2_device_client_desc *cd)
Mike Iselye9c64a72009-03-06 23:42:20 -03001990{
1991 const char *fname;
1992 unsigned char mid;
1993 struct v4l2_subdev *sd;
1994 unsigned int i2ccnt;
1995 const unsigned char *p;
1996 /* Arbitrary count - max # i2c addresses we will probe */
1997 unsigned short i2caddr[25];
1998
1999 mid = cd->module_id;
2000 fname = (mid < ARRAY_SIZE(module_names)) ? module_names[mid] : NULL;
2001 if (!fname) {
2002 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002003 "Module ID %u for device %s has no name",
Mike Iselye9c64a72009-03-06 23:42:20 -03002004 mid,
2005 hdw->hdw_desc->description);
Mike Isely1ab5e742009-03-07 00:24:24 -03002006 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002007 }
2008
2009 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, cd->i2c_address_list,
2010 ARRAY_SIZE(i2caddr));
2011 if (!i2ccnt && ((p = (mid < ARRAY_SIZE(module_i2c_addresses)) ?
2012 module_i2c_addresses[mid] : NULL) != NULL)) {
2013 /* Second chance: Try default i2c address list */
2014 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, p,
2015 ARRAY_SIZE(i2caddr));
2016 }
2017
2018 if (!i2ccnt) {
2019 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002020 "Module ID %u (%s) for device %s:"
2021 " No i2c addresses",
2022 mid, fname, hdw->hdw_desc->description);
2023 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002024 }
2025
2026 /* Note how the 2nd and 3rd arguments are the same for both
2027 * v4l2_i2c_new_subdev() and v4l2_i2c_new_probed_subdev(). Why?
2028 * Well the 2nd argument is the module name to load, while the 3rd
2029 * argument is documented in the framework as being the "chipid" -
2030 * and every other place where I can find examples of this, the
2031 * "chipid" appears to just be the module name again. So here we
2032 * just do the same thing. */
2033 if (i2ccnt == 1) {
2034 sd = v4l2_i2c_new_subdev(&hdw->i2c_adap,
2035 fname, fname,
2036 i2caddr[0]);
2037 } else {
2038 sd = v4l2_i2c_new_probed_subdev(&hdw->i2c_adap,
2039 fname, fname,
2040 i2caddr);
2041 }
2042
Mike Isely446dfdc2009-03-06 23:58:15 -03002043 if (!sd) {
2044 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002045 "Module ID %u (%s) for device %s failed to load",
2046 mid, fname, hdw->hdw_desc->description);
2047 return -EIO;
Mike Isely446dfdc2009-03-06 23:58:15 -03002048 }
2049
2050 /* Tag this sub-device instance with the module ID we know about.
2051 In other places we'll use that tag to determine if the instance
2052 requires special handling. */
2053 sd->grp_id = mid;
2054
Mike Iselya932f502009-03-06 23:47:10 -03002055 /* If we have both old and new i2c layers enabled, make sure that
2056 old layer isn't also tracking this module. This is a debugging
2057 aid, in normal situations there's no reason for both mechanisms
2058 to be enabled. */
2059 pvr2_i2c_untrack_subdev(hdw, sd);
Mike Isely446dfdc2009-03-06 23:58:15 -03002060 pvr2_trace(PVR2_TRACE_INIT, "Attached sub-driver %s", fname);
Mike Iselya932f502009-03-06 23:47:10 -03002061
Mike Iselye9c64a72009-03-06 23:42:20 -03002062
Mike Isely00e5f732009-03-07 00:17:11 -03002063 /* client-specific setup... */
2064 switch (mid) {
2065 case PVR2_CLIENT_ID_CX25840:
2066 hdw->decoder_client_id = mid;
2067 {
2068 /*
2069 Mike Isely <isely@pobox.com> 19-Nov-2006 - This
2070 bit of nuttiness for cx25840 causes that module
2071 to correctly set up its video scaling. This is
2072 really a problem in the cx25840 module itself,
2073 but we work around it here. The problem has not
2074 been seen in ivtv because there VBI is supported
2075 and set up. We don't do VBI here (at least not
2076 yet) and thus we never attempted to even set it
2077 up.
2078 */
2079 struct v4l2_format fmt;
2080 memset(&fmt, 0, sizeof(fmt));
2081 fmt.type = V4L2_BUF_TYPE_SLICED_VBI_CAPTURE;
2082 v4l2_device_call_all(&hdw->v4l2_dev, mid,
2083 video, s_fmt, &fmt);
2084 }
2085 break;
2086 case PVR2_CLIENT_ID_SAA7115:
2087 hdw->decoder_client_id = mid;
2088 break;
2089 default: break;
2090 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002091
2092 return 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002093}
2094
2095
2096static void pvr2_hdw_load_modules(struct pvr2_hdw *hdw)
2097{
2098 unsigned int idx;
2099 const struct pvr2_string_table *cm;
2100 const struct pvr2_device_client_table *ct;
Mike Isely1ab5e742009-03-07 00:24:24 -03002101 int okFl = !0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002102
2103 cm = &hdw->hdw_desc->client_modules;
2104 for (idx = 0; idx < cm->cnt; idx++) {
2105 request_module(cm->lst[idx]);
2106 }
2107
2108 ct = &hdw->hdw_desc->client_table;
2109 for (idx = 0; idx < ct->cnt; idx++) {
Mike Isely1ab5e742009-03-07 00:24:24 -03002110 if (!pvr2_hdw_load_subdev(hdw, &ct->lst[idx])) okFl = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002111 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002112 if (!okFl) pvr2_hdw_render_useless(hdw);
Mike Iselye9c64a72009-03-06 23:42:20 -03002113}
2114
2115
Mike Iselyd8554972006-06-26 20:58:46 -03002116static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
2117{
2118 int ret;
2119 unsigned int idx;
2120 struct pvr2_ctrl *cptr;
2121 int reloadFl = 0;
Mike Isely989eb152007-11-26 01:53:12 -03002122 if (hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03002123 if (!reloadFl) {
2124 reloadFl =
2125 (hdw->usb_intf->cur_altsetting->desc.bNumEndpoints
2126 == 0);
2127 if (reloadFl) {
2128 pvr2_trace(PVR2_TRACE_INIT,
2129 "USB endpoint config looks strange"
2130 "; possibly firmware needs to be"
2131 " loaded");
2132 }
2133 }
2134 if (!reloadFl) {
2135 reloadFl = !pvr2_hdw_check_firmware(hdw);
2136 if (reloadFl) {
2137 pvr2_trace(PVR2_TRACE_INIT,
2138 "Check for FX2 firmware failed"
2139 "; possibly firmware needs to be"
2140 " loaded");
2141 }
2142 }
Mike Iselyd8554972006-06-26 20:58:46 -03002143 if (reloadFl) {
Mike Isely1d643a32007-09-08 22:18:50 -03002144 if (pvr2_upload_firmware1(hdw) != 0) {
2145 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2146 "Failure uploading firmware1");
2147 }
2148 return;
Mike Iselyd8554972006-06-26 20:58:46 -03002149 }
2150 }
Mike Iselyd8554972006-06-26 20:58:46 -03002151 hdw->fw1_state = FW1_STATE_OK;
2152
Mike Iselyd8554972006-06-26 20:58:46 -03002153 if (!pvr2_hdw_dev_ok(hdw)) return;
2154
Mike Isely989eb152007-11-26 01:53:12 -03002155 if (!hdw->hdw_desc->flag_no_powerup) {
Mike Isely1d643a32007-09-08 22:18:50 -03002156 pvr2_hdw_cmd_powerup(hdw);
2157 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002158 }
2159
Mike Isely31335b12008-07-25 19:35:31 -03002160 /* Take the IR chip out of reset, if appropriate */
2161 if (hdw->hdw_desc->ir_scheme == PVR2_IR_SCHEME_ZILOG) {
2162 pvr2_issue_simple_cmd(hdw,
2163 FX2CMD_HCW_ZILOG_RESET |
2164 (1 << 8) |
2165 ((0) << 16));
2166 }
2167
Mike Iselyd8554972006-06-26 20:58:46 -03002168 // This step MUST happen after the earlier powerup step.
Mike Isely59af3362009-03-07 03:06:09 -03002169 pvr2_i2c_track_init(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002170 pvr2_i2c_core_init(hdw);
2171 if (!pvr2_hdw_dev_ok(hdw)) return;
2172
Mike Iselye9c64a72009-03-06 23:42:20 -03002173 pvr2_hdw_load_modules(hdw);
Mike Isely1ab5e742009-03-07 00:24:24 -03002174 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselye9c64a72009-03-06 23:42:20 -03002175
Mike Iselyc05c0462006-06-25 20:04:25 -03002176 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002177 cptr = hdw->controls + idx;
2178 if (cptr->info->skip_init) continue;
2179 if (!cptr->info->set_value) continue;
2180 cptr->info->set_value(cptr,~0,cptr->info->default_value);
2181 }
2182
Mike Isely1bde0282006-12-27 23:30:13 -03002183 /* Set up special default values for the television and radio
2184 frequencies here. It's not really important what these defaults
2185 are, but I set them to something usable in the Chicago area just
2186 to make driver testing a little easier. */
2187
Michael Krufky5a4f5da62008-05-11 16:37:50 -03002188 hdw->freqValTelevision = default_tv_freq;
2189 hdw->freqValRadio = default_radio_freq;
Mike Isely1bde0282006-12-27 23:30:13 -03002190
Mike Iselyd8554972006-06-26 20:58:46 -03002191 // Do not use pvr2_reset_ctl_endpoints() here. It is not
2192 // thread-safe against the normal pvr2_send_request() mechanism.
2193 // (We should make it thread safe).
2194
Mike Iselyaaf78842007-11-26 02:04:11 -03002195 if (hdw->hdw_desc->flag_has_hauppauge_rom) {
2196 ret = pvr2_hdw_get_eeprom_addr(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002197 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyaaf78842007-11-26 02:04:11 -03002198 if (ret < 0) {
2199 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2200 "Unable to determine location of eeprom,"
2201 " skipping");
2202 } else {
2203 hdw->eeprom_addr = ret;
2204 pvr2_eeprom_analyze(hdw);
2205 if (!pvr2_hdw_dev_ok(hdw)) return;
2206 }
2207 } else {
2208 hdw->tuner_type = hdw->hdw_desc->default_tuner_type;
2209 hdw->tuner_updated = !0;
2210 hdw->std_mask_eeprom = V4L2_STD_ALL;
Mike Iselyd8554972006-06-26 20:58:46 -03002211 }
2212
Mike Isely13a88792009-01-14 04:22:56 -03002213 if (hdw->serial_number) {
2214 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2215 "sn-%lu", hdw->serial_number);
2216 } else if (hdw->unit_number >= 0) {
2217 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2218 "unit-%c",
2219 hdw->unit_number + 'a');
2220 } else {
2221 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2222 "unit-??");
2223 }
2224 hdw->identifier[idx] = 0;
2225
Mike Iselyd8554972006-06-26 20:58:46 -03002226 pvr2_hdw_setup_std(hdw);
2227
2228 if (!get_default_tuner_type(hdw)) {
2229 pvr2_trace(PVR2_TRACE_INIT,
2230 "pvr2_hdw_setup: Tuner type overridden to %d",
2231 hdw->tuner_type);
2232 }
2233
Mike Iselyd8554972006-06-26 20:58:46 -03002234 pvr2_i2c_core_check_stale(hdw);
2235 hdw->tuner_updated = 0;
2236
2237 if (!pvr2_hdw_dev_ok(hdw)) return;
2238
Mike Isely1df59f02008-04-21 03:50:39 -03002239 if (hdw->hdw_desc->signal_routing_scheme ==
2240 PVR2_ROUTING_SCHEME_GOTVIEW) {
2241 /* Ensure that GPIO 11 is set to output for GOTVIEW
2242 hardware. */
2243 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
2244 }
2245
Mike Isely681c7392007-11-26 01:48:52 -03002246 pvr2_hdw_commit_setup(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002247
2248 hdw->vid_stream = pvr2_stream_create();
2249 if (!pvr2_hdw_dev_ok(hdw)) return;
2250 pvr2_trace(PVR2_TRACE_INIT,
2251 "pvr2_hdw_setup: video stream is %p",hdw->vid_stream);
2252 if (hdw->vid_stream) {
2253 idx = get_default_error_tolerance(hdw);
2254 if (idx) {
2255 pvr2_trace(PVR2_TRACE_INIT,
2256 "pvr2_hdw_setup: video stream %p"
2257 " setting tolerance %u",
2258 hdw->vid_stream,idx);
2259 }
2260 pvr2_stream_setup(hdw->vid_stream,hdw->usb_dev,
2261 PVR2_VID_ENDPOINT,idx);
2262 }
2263
2264 if (!pvr2_hdw_dev_ok(hdw)) return;
2265
Mike Iselyd8554972006-06-26 20:58:46 -03002266 hdw->flag_init_ok = !0;
Mike Isely681c7392007-11-26 01:48:52 -03002267
2268 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002269}
2270
2271
Mike Isely681c7392007-11-26 01:48:52 -03002272/* Set up the structure and attempt to put the device into a usable state.
2273 This can be a time-consuming operation, which is why it is not done
2274 internally as part of the create() step. */
2275static void pvr2_hdw_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002276{
2277 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) begin",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002278 do {
Mike Iselyd8554972006-06-26 20:58:46 -03002279 pvr2_hdw_setup_low(hdw);
2280 pvr2_trace(PVR2_TRACE_INIT,
2281 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
Mike Isely681c7392007-11-26 01:48:52 -03002282 hdw,pvr2_hdw_dev_ok(hdw),hdw->flag_init_ok);
Mike Iselyd8554972006-06-26 20:58:46 -03002283 if (pvr2_hdw_dev_ok(hdw)) {
Mike Isely681c7392007-11-26 01:48:52 -03002284 if (hdw->flag_init_ok) {
Mike Iselyd8554972006-06-26 20:58:46 -03002285 pvr2_trace(
2286 PVR2_TRACE_INFO,
2287 "Device initialization"
2288 " completed successfully.");
2289 break;
2290 }
2291 if (hdw->fw1_state == FW1_STATE_RELOAD) {
2292 pvr2_trace(
2293 PVR2_TRACE_INFO,
2294 "Device microcontroller firmware"
2295 " (re)loaded; it should now reset"
2296 " and reconnect.");
2297 break;
2298 }
2299 pvr2_trace(
2300 PVR2_TRACE_ERROR_LEGS,
2301 "Device initialization was not successful.");
2302 if (hdw->fw1_state == FW1_STATE_MISSING) {
2303 pvr2_trace(
2304 PVR2_TRACE_ERROR_LEGS,
2305 "Giving up since device"
2306 " microcontroller firmware"
2307 " appears to be missing.");
2308 break;
2309 }
2310 }
2311 if (procreload) {
2312 pvr2_trace(
2313 PVR2_TRACE_ERROR_LEGS,
2314 "Attempting pvrusb2 recovery by reloading"
2315 " primary firmware.");
2316 pvr2_trace(
2317 PVR2_TRACE_ERROR_LEGS,
2318 "If this works, device should disconnect"
2319 " and reconnect in a sane state.");
2320 hdw->fw1_state = FW1_STATE_UNKNOWN;
2321 pvr2_upload_firmware1(hdw);
2322 } else {
2323 pvr2_trace(
2324 PVR2_TRACE_ERROR_LEGS,
2325 "***WARNING*** pvrusb2 device hardware"
2326 " appears to be jammed"
2327 " and I can't clear it.");
2328 pvr2_trace(
2329 PVR2_TRACE_ERROR_LEGS,
2330 "You might need to power cycle"
2331 " the pvrusb2 device"
2332 " in order to recover.");
2333 }
Mike Isely681c7392007-11-26 01:48:52 -03002334 } while (0);
Mike Iselyd8554972006-06-26 20:58:46 -03002335 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) end",hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002336}
2337
2338
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002339/* Perform second stage initialization. Set callback pointer first so that
2340 we can avoid a possible initialization race (if the kernel thread runs
2341 before the callback has been set). */
Mike Isely794b1602008-04-22 14:45:45 -03002342int pvr2_hdw_initialize(struct pvr2_hdw *hdw,
2343 void (*callback_func)(void *),
2344 void *callback_data)
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002345{
2346 LOCK_TAKE(hdw->big_lock); do {
Mike Isely97f26ff2008-04-07 02:22:43 -03002347 if (hdw->flag_disconnected) {
2348 /* Handle a race here: If we're already
2349 disconnected by this point, then give up. If we
2350 get past this then we'll remain connected for
2351 the duration of initialization since the entire
2352 initialization sequence is now protected by the
2353 big_lock. */
2354 break;
2355 }
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002356 hdw->state_data = callback_data;
2357 hdw->state_func = callback_func;
Mike Isely97f26ff2008-04-07 02:22:43 -03002358 pvr2_hdw_setup(hdw);
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002359 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely794b1602008-04-22 14:45:45 -03002360 return hdw->flag_init_ok;
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002361}
2362
2363
2364/* Create, set up, and return a structure for interacting with the
2365 underlying hardware. */
Mike Iselyd8554972006-06-26 20:58:46 -03002366struct pvr2_hdw *pvr2_hdw_create(struct usb_interface *intf,
2367 const struct usb_device_id *devid)
2368{
Mike Isely7fb20fa2008-04-22 14:45:37 -03002369 unsigned int idx,cnt1,cnt2,m;
Mike Iselyfe15f132008-08-30 18:11:40 -03002370 struct pvr2_hdw *hdw = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002371 int valid_std_mask;
2372 struct pvr2_ctrl *cptr;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002373 struct usb_device *usb_dev;
Mike Isely989eb152007-11-26 01:53:12 -03002374 const struct pvr2_device_desc *hdw_desc;
Mike Iselyd8554972006-06-26 20:58:46 -03002375 __u8 ifnum;
Mike Iselyb30d2442006-06-25 20:05:01 -03002376 struct v4l2_queryctrl qctrl;
2377 struct pvr2_ctl_info *ciptr;
Mike Iselyd8554972006-06-26 20:58:46 -03002378
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002379 usb_dev = interface_to_usbdev(intf);
2380
Mike Iselyd130fa82007-12-08 17:20:06 -03002381 hdw_desc = (const struct pvr2_device_desc *)(devid->driver_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002382
Mike Iselyfe15f132008-08-30 18:11:40 -03002383 if (hdw_desc == NULL) {
2384 pvr2_trace(PVR2_TRACE_INIT, "pvr2_hdw_create:"
2385 " No device description pointer,"
2386 " unable to continue.");
2387 pvr2_trace(PVR2_TRACE_INIT, "If you have a new device type,"
2388 " please contact Mike Isely <isely@pobox.com>"
2389 " to get it included in the driver\n");
2390 goto fail;
2391 }
2392
Mike Iselyca545f72007-01-20 00:37:11 -03002393 hdw = kzalloc(sizeof(*hdw),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -03002394 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_create: hdw=%p, type \"%s\"",
Mike Isely989eb152007-11-26 01:53:12 -03002395 hdw,hdw_desc->description);
Mike Iselyd8554972006-06-26 20:58:46 -03002396 if (!hdw) goto fail;
Mike Isely681c7392007-11-26 01:48:52 -03002397
2398 init_timer(&hdw->quiescent_timer);
2399 hdw->quiescent_timer.data = (unsigned long)hdw;
2400 hdw->quiescent_timer.function = pvr2_hdw_quiescent_timeout;
2401
2402 init_timer(&hdw->encoder_wait_timer);
2403 hdw->encoder_wait_timer.data = (unsigned long)hdw;
2404 hdw->encoder_wait_timer.function = pvr2_hdw_encoder_wait_timeout;
2405
Mike Iselyd913d632008-04-06 04:04:35 -03002406 init_timer(&hdw->encoder_run_timer);
2407 hdw->encoder_run_timer.data = (unsigned long)hdw;
2408 hdw->encoder_run_timer.function = pvr2_hdw_encoder_run_timeout;
2409
Mike Isely681c7392007-11-26 01:48:52 -03002410 hdw->master_state = PVR2_STATE_DEAD;
2411
2412 init_waitqueue_head(&hdw->state_wait_data);
2413
Mike Isely18103c572007-01-20 00:09:47 -03002414 hdw->tuner_signal_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -03002415 cx2341x_fill_defaults(&hdw->enc_ctl_state);
Mike Iselyd8554972006-06-26 20:58:46 -03002416
Mike Isely7fb20fa2008-04-22 14:45:37 -03002417 /* Calculate which inputs are OK */
2418 m = 0;
2419 if (hdw_desc->flag_has_analogtuner) m |= 1 << PVR2_CVAL_INPUT_TV;
Mike Iselye8f5bac2008-04-22 14:45:40 -03002420 if (hdw_desc->digital_control_scheme != PVR2_DIGITAL_SCHEME_NONE) {
2421 m |= 1 << PVR2_CVAL_INPUT_DTV;
2422 }
Mike Isely7fb20fa2008-04-22 14:45:37 -03002423 if (hdw_desc->flag_has_svideo) m |= 1 << PVR2_CVAL_INPUT_SVIDEO;
2424 if (hdw_desc->flag_has_composite) m |= 1 << PVR2_CVAL_INPUT_COMPOSITE;
2425 if (hdw_desc->flag_has_fmradio) m |= 1 << PVR2_CVAL_INPUT_RADIO;
2426 hdw->input_avail_mask = m;
Mike Isely1cb03b72008-04-21 03:47:43 -03002427 hdw->input_allowed_mask = hdw->input_avail_mask;
Mike Isely7fb20fa2008-04-22 14:45:37 -03002428
Mike Isely62433e32008-04-22 14:45:40 -03002429 /* If not a hybrid device, pathway_state never changes. So
2430 initialize it here to what it should forever be. */
2431 if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_DTV))) {
2432 hdw->pathway_state = PVR2_PATHWAY_ANALOG;
2433 } else if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_TV))) {
2434 hdw->pathway_state = PVR2_PATHWAY_DIGITAL;
2435 }
2436
Mike Iselyc05c0462006-06-25 20:04:25 -03002437 hdw->control_cnt = CTRLDEF_COUNT;
Mike Iselyb30d2442006-06-25 20:05:01 -03002438 hdw->control_cnt += MPEGDEF_COUNT;
Mike Iselyca545f72007-01-20 00:37:11 -03002439 hdw->controls = kzalloc(sizeof(struct pvr2_ctrl) * hdw->control_cnt,
Mike Iselyd8554972006-06-26 20:58:46 -03002440 GFP_KERNEL);
2441 if (!hdw->controls) goto fail;
Mike Isely989eb152007-11-26 01:53:12 -03002442 hdw->hdw_desc = hdw_desc;
Mike Iselyc05c0462006-06-25 20:04:25 -03002443 for (idx = 0; idx < hdw->control_cnt; idx++) {
2444 cptr = hdw->controls + idx;
2445 cptr->hdw = hdw;
2446 }
Mike Iselyd8554972006-06-26 20:58:46 -03002447 for (idx = 0; idx < 32; idx++) {
2448 hdw->std_mask_ptrs[idx] = hdw->std_mask_names[idx];
2449 }
Mike Iselyc05c0462006-06-25 20:04:25 -03002450 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002451 cptr = hdw->controls + idx;
Mike Iselyd8554972006-06-26 20:58:46 -03002452 cptr->info = control_defs+idx;
2453 }
Mike Iselydbc40a02008-04-22 14:45:39 -03002454
2455 /* Ensure that default input choice is a valid one. */
2456 m = hdw->input_avail_mask;
2457 if (m) for (idx = 0; idx < (sizeof(m) << 3); idx++) {
2458 if (!((1 << idx) & m)) continue;
2459 hdw->input_val = idx;
2460 break;
2461 }
2462
Mike Iselyb30d2442006-06-25 20:05:01 -03002463 /* Define and configure additional controls from cx2341x module. */
Mike Iselyca545f72007-01-20 00:37:11 -03002464 hdw->mpeg_ctrl_info = kzalloc(
Mike Iselyb30d2442006-06-25 20:05:01 -03002465 sizeof(*(hdw->mpeg_ctrl_info)) * MPEGDEF_COUNT, GFP_KERNEL);
2466 if (!hdw->mpeg_ctrl_info) goto fail;
Mike Iselyb30d2442006-06-25 20:05:01 -03002467 for (idx = 0; idx < MPEGDEF_COUNT; idx++) {
2468 cptr = hdw->controls + idx + CTRLDEF_COUNT;
2469 ciptr = &(hdw->mpeg_ctrl_info[idx].info);
2470 ciptr->desc = hdw->mpeg_ctrl_info[idx].desc;
2471 ciptr->name = mpeg_ids[idx].strid;
2472 ciptr->v4l_id = mpeg_ids[idx].id;
2473 ciptr->skip_init = !0;
2474 ciptr->get_value = ctrl_cx2341x_get;
2475 ciptr->get_v4lflags = ctrl_cx2341x_getv4lflags;
2476 ciptr->is_dirty = ctrl_cx2341x_is_dirty;
2477 if (!idx) ciptr->clear_dirty = ctrl_cx2341x_clear_dirty;
2478 qctrl.id = ciptr->v4l_id;
2479 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl);
2480 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) {
2481 ciptr->set_value = ctrl_cx2341x_set;
2482 }
2483 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name,
2484 PVR2_CTLD_INFO_DESC_SIZE);
2485 hdw->mpeg_ctrl_info[idx].desc[PVR2_CTLD_INFO_DESC_SIZE-1] = 0;
2486 ciptr->default_value = qctrl.default_value;
2487 switch (qctrl.type) {
2488 default:
2489 case V4L2_CTRL_TYPE_INTEGER:
2490 ciptr->type = pvr2_ctl_int;
2491 ciptr->def.type_int.min_value = qctrl.minimum;
2492 ciptr->def.type_int.max_value = qctrl.maximum;
2493 break;
2494 case V4L2_CTRL_TYPE_BOOLEAN:
2495 ciptr->type = pvr2_ctl_bool;
2496 break;
2497 case V4L2_CTRL_TYPE_MENU:
2498 ciptr->type = pvr2_ctl_enum;
2499 ciptr->def.type_enum.value_names =
Hans Verkuile0e31cd2008-06-22 12:03:28 -03002500 cx2341x_ctrl_get_menu(&hdw->enc_ctl_state,
2501 ciptr->v4l_id);
Mike Iselyb30d2442006-06-25 20:05:01 -03002502 for (cnt1 = 0;
2503 ciptr->def.type_enum.value_names[cnt1] != NULL;
2504 cnt1++) { }
2505 ciptr->def.type_enum.count = cnt1;
2506 break;
2507 }
2508 cptr->info = ciptr;
2509 }
Mike Iselyd8554972006-06-26 20:58:46 -03002510
2511 // Initialize video standard enum dynamic control
2512 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDENUM);
2513 if (cptr) {
2514 memcpy(&hdw->std_info_enum,cptr->info,
2515 sizeof(hdw->std_info_enum));
2516 cptr->info = &hdw->std_info_enum;
2517
2518 }
2519 // Initialize control data regarding video standard masks
2520 valid_std_mask = pvr2_std_get_usable();
2521 for (idx = 0; idx < 32; idx++) {
2522 if (!(valid_std_mask & (1 << idx))) continue;
2523 cnt1 = pvr2_std_id_to_str(
2524 hdw->std_mask_names[idx],
2525 sizeof(hdw->std_mask_names[idx])-1,
2526 1 << idx);
2527 hdw->std_mask_names[idx][cnt1] = 0;
2528 }
2529 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDAVAIL);
2530 if (cptr) {
2531 memcpy(&hdw->std_info_avail,cptr->info,
2532 sizeof(hdw->std_info_avail));
2533 cptr->info = &hdw->std_info_avail;
2534 hdw->std_info_avail.def.type_bitmask.bit_names =
2535 hdw->std_mask_ptrs;
2536 hdw->std_info_avail.def.type_bitmask.valid_bits =
2537 valid_std_mask;
2538 }
2539 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR);
2540 if (cptr) {
2541 memcpy(&hdw->std_info_cur,cptr->info,
2542 sizeof(hdw->std_info_cur));
2543 cptr->info = &hdw->std_info_cur;
2544 hdw->std_info_cur.def.type_bitmask.bit_names =
2545 hdw->std_mask_ptrs;
2546 hdw->std_info_avail.def.type_bitmask.valid_bits =
2547 valid_std_mask;
2548 }
2549
Mike Isely432907f2008-08-31 21:02:20 -03002550 hdw->cropcap_stale = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002551 hdw->eeprom_addr = -1;
2552 hdw->unit_number = -1;
Mike Isely80793842006-12-27 23:12:28 -03002553 hdw->v4l_minor_number_video = -1;
2554 hdw->v4l_minor_number_vbi = -1;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03002555 hdw->v4l_minor_number_radio = -1;
Mike Iselyd8554972006-06-26 20:58:46 -03002556 hdw->ctl_write_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2557 if (!hdw->ctl_write_buffer) goto fail;
2558 hdw->ctl_read_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2559 if (!hdw->ctl_read_buffer) goto fail;
2560 hdw->ctl_write_urb = usb_alloc_urb(0,GFP_KERNEL);
2561 if (!hdw->ctl_write_urb) goto fail;
2562 hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
2563 if (!hdw->ctl_read_urb) goto fail;
2564
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002565 if (v4l2_device_register(&usb_dev->dev, &hdw->v4l2_dev) != 0) {
2566 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2567 "Error registering with v4l core, giving up");
2568 goto fail;
2569 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002570 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002571 for (idx = 0; idx < PVR_NUM; idx++) {
2572 if (unit_pointers[idx]) continue;
2573 hdw->unit_number = idx;
2574 unit_pointers[idx] = hdw;
2575 break;
2576 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002577 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -03002578
2579 cnt1 = 0;
2580 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2");
2581 cnt1 += cnt2;
2582 if (hdw->unit_number >= 0) {
2583 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c",
2584 ('a' + hdw->unit_number));
2585 cnt1 += cnt2;
2586 }
2587 if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1;
2588 hdw->name[cnt1] = 0;
2589
Mike Isely681c7392007-11-26 01:48:52 -03002590 hdw->workqueue = create_singlethread_workqueue(hdw->name);
2591 INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll);
2592 INIT_WORK(&hdw->worki2csync,pvr2_hdw_worker_i2c);
Mike Isely681c7392007-11-26 01:48:52 -03002593
Mike Iselyd8554972006-06-26 20:58:46 -03002594 pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s",
2595 hdw->unit_number,hdw->name);
2596
2597 hdw->tuner_type = -1;
2598 hdw->flag_ok = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002599
2600 hdw->usb_intf = intf;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002601 hdw->usb_dev = usb_dev;
Mike Iselyd8554972006-06-26 20:58:46 -03002602
Mike Isely87e34952009-01-23 01:20:24 -03002603 usb_make_path(hdw->usb_dev, hdw->bus_info, sizeof(hdw->bus_info));
Mike Isely31a18542007-04-08 01:11:47 -03002604
Mike Iselyd8554972006-06-26 20:58:46 -03002605 ifnum = hdw->usb_intf->cur_altsetting->desc.bInterfaceNumber;
2606 usb_set_interface(hdw->usb_dev,ifnum,0);
2607
2608 mutex_init(&hdw->ctl_lock_mutex);
2609 mutex_init(&hdw->big_lock_mutex);
2610
2611 return hdw;
2612 fail:
2613 if (hdw) {
Mike Isely681c7392007-11-26 01:48:52 -03002614 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002615 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03002616 del_timer_sync(&hdw->encoder_wait_timer);
2617 if (hdw->workqueue) {
2618 flush_workqueue(hdw->workqueue);
2619 destroy_workqueue(hdw->workqueue);
2620 hdw->workqueue = NULL;
2621 }
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01002622 usb_free_urb(hdw->ctl_read_urb);
2623 usb_free_urb(hdw->ctl_write_urb);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002624 kfree(hdw->ctl_read_buffer);
2625 kfree(hdw->ctl_write_buffer);
2626 kfree(hdw->controls);
2627 kfree(hdw->mpeg_ctrl_info);
Mike Isely681c7392007-11-26 01:48:52 -03002628 kfree(hdw->std_defs);
2629 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002630 kfree(hdw);
2631 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002632 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002633}
2634
2635
2636/* Remove _all_ associations between this driver and the underlying USB
2637 layer. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03002638static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002639{
2640 if (hdw->flag_disconnected) return;
2641 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw);
2642 if (hdw->ctl_read_urb) {
2643 usb_kill_urb(hdw->ctl_read_urb);
2644 usb_free_urb(hdw->ctl_read_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002645 hdw->ctl_read_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002646 }
2647 if (hdw->ctl_write_urb) {
2648 usb_kill_urb(hdw->ctl_write_urb);
2649 usb_free_urb(hdw->ctl_write_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002650 hdw->ctl_write_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002651 }
2652 if (hdw->ctl_read_buffer) {
2653 kfree(hdw->ctl_read_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002654 hdw->ctl_read_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002655 }
2656 if (hdw->ctl_write_buffer) {
2657 kfree(hdw->ctl_write_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002658 hdw->ctl_write_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002659 }
Mike Iselyd8554972006-06-26 20:58:46 -03002660 hdw->flag_disconnected = !0;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002661 /* If we don't do this, then there will be a dangling struct device
2662 reference to our disappearing device persisting inside the V4L
2663 core... */
2664 if (hdw->v4l2_dev.dev) {
2665 dev_set_drvdata(hdw->v4l2_dev.dev, NULL);
2666 hdw->v4l2_dev.dev = NULL;
2667 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002668 hdw->usb_dev = NULL;
2669 hdw->usb_intf = NULL;
Mike Isely681c7392007-11-26 01:48:52 -03002670 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002671}
2672
2673
2674/* Destroy hardware interaction structure */
2675void pvr2_hdw_destroy(struct pvr2_hdw *hdw)
2676{
Mike Isely401c27c2007-09-08 22:11:46 -03002677 if (!hdw) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002678 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_destroy: hdw=%p",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002679 if (hdw->workqueue) {
2680 flush_workqueue(hdw->workqueue);
2681 destroy_workqueue(hdw->workqueue);
2682 hdw->workqueue = NULL;
2683 }
Mike Isely8f591002008-04-22 14:45:45 -03002684 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002685 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely8f591002008-04-22 14:45:45 -03002686 del_timer_sync(&hdw->encoder_wait_timer);
Mike Iselyd8554972006-06-26 20:58:46 -03002687 if (hdw->fw_buffer) {
2688 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002689 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002690 }
2691 if (hdw->vid_stream) {
2692 pvr2_stream_destroy(hdw->vid_stream);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002693 hdw->vid_stream = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002694 }
Mike Iselyd8554972006-06-26 20:58:46 -03002695 if (hdw->decoder_ctrl) {
2696 hdw->decoder_ctrl->detach(hdw->decoder_ctrl->ctxt);
2697 }
2698 pvr2_i2c_core_done(hdw);
Mike Isely59af3362009-03-07 03:06:09 -03002699 pvr2_i2c_track_done(hdw);
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002700 v4l2_device_unregister(&hdw->v4l2_dev);
Mike Iselyd8554972006-06-26 20:58:46 -03002701 pvr2_hdw_remove_usb_stuff(hdw);
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002702 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002703 if ((hdw->unit_number >= 0) &&
2704 (hdw->unit_number < PVR_NUM) &&
2705 (unit_pointers[hdw->unit_number] == hdw)) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002706 unit_pointers[hdw->unit_number] = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002707 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002708 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002709 kfree(hdw->controls);
2710 kfree(hdw->mpeg_ctrl_info);
2711 kfree(hdw->std_defs);
2712 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002713 kfree(hdw);
2714}
2715
2716
Mike Iselyd8554972006-06-26 20:58:46 -03002717int pvr2_hdw_dev_ok(struct pvr2_hdw *hdw)
2718{
2719 return (hdw && hdw->flag_ok);
2720}
2721
2722
2723/* Called when hardware has been unplugged */
2724void pvr2_hdw_disconnect(struct pvr2_hdw *hdw)
2725{
2726 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw);
2727 LOCK_TAKE(hdw->big_lock);
2728 LOCK_TAKE(hdw->ctl_lock);
2729 pvr2_hdw_remove_usb_stuff(hdw);
2730 LOCK_GIVE(hdw->ctl_lock);
2731 LOCK_GIVE(hdw->big_lock);
2732}
2733
2734
2735// Attempt to autoselect an appropriate value for std_enum_cur given
2736// whatever is currently in std_mask_cur
Adrian Bunk07e337e2006-06-30 11:30:20 -03002737static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002738{
2739 unsigned int idx;
2740 for (idx = 1; idx < hdw->std_enum_cnt; idx++) {
2741 if (hdw->std_defs[idx-1].id == hdw->std_mask_cur) {
2742 hdw->std_enum_cur = idx;
2743 return;
2744 }
2745 }
2746 hdw->std_enum_cur = 0;
2747}
2748
2749
2750// Calculate correct set of enumerated standards based on currently known
2751// set of available standards bits.
Adrian Bunk07e337e2006-06-30 11:30:20 -03002752static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002753{
2754 struct v4l2_standard *newstd;
2755 unsigned int std_cnt;
2756 unsigned int idx;
2757
2758 newstd = pvr2_std_create_enum(&std_cnt,hdw->std_mask_avail);
2759
2760 if (hdw->std_defs) {
2761 kfree(hdw->std_defs);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002762 hdw->std_defs = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002763 }
2764 hdw->std_enum_cnt = 0;
2765 if (hdw->std_enum_names) {
2766 kfree(hdw->std_enum_names);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002767 hdw->std_enum_names = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002768 }
2769
2770 if (!std_cnt) {
2771 pvr2_trace(
2772 PVR2_TRACE_ERROR_LEGS,
2773 "WARNING: Failed to identify any viable standards");
2774 }
2775 hdw->std_enum_names = kmalloc(sizeof(char *)*(std_cnt+1),GFP_KERNEL);
2776 hdw->std_enum_names[0] = "none";
2777 for (idx = 0; idx < std_cnt; idx++) {
2778 hdw->std_enum_names[idx+1] =
2779 newstd[idx].name;
2780 }
2781 // Set up the dynamic control for this standard
2782 hdw->std_info_enum.def.type_enum.value_names = hdw->std_enum_names;
2783 hdw->std_info_enum.def.type_enum.count = std_cnt+1;
2784 hdw->std_defs = newstd;
2785 hdw->std_enum_cnt = std_cnt+1;
2786 hdw->std_enum_cur = 0;
2787 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
2788}
2789
2790
2791int pvr2_hdw_get_stdenum_value(struct pvr2_hdw *hdw,
2792 struct v4l2_standard *std,
2793 unsigned int idx)
2794{
2795 int ret = -EINVAL;
2796 if (!idx) return ret;
2797 LOCK_TAKE(hdw->big_lock); do {
2798 if (idx >= hdw->std_enum_cnt) break;
2799 idx--;
2800 memcpy(std,hdw->std_defs+idx,sizeof(*std));
2801 ret = 0;
2802 } while (0); LOCK_GIVE(hdw->big_lock);
2803 return ret;
2804}
2805
2806
2807/* Get the number of defined controls */
2808unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw *hdw)
2809{
Mike Iselyc05c0462006-06-25 20:04:25 -03002810 return hdw->control_cnt;
Mike Iselyd8554972006-06-26 20:58:46 -03002811}
2812
2813
2814/* Retrieve a control handle given its index (0..count-1) */
2815struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw *hdw,
2816 unsigned int idx)
2817{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002818 if (idx >= hdw->control_cnt) return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002819 return hdw->controls + idx;
2820}
2821
2822
2823/* Retrieve a control handle given its index (0..count-1) */
2824struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw *hdw,
2825 unsigned int ctl_id)
2826{
2827 struct pvr2_ctrl *cptr;
2828 unsigned int idx;
2829 int i;
2830
2831 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002832 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002833 cptr = hdw->controls + idx;
2834 i = cptr->info->internal_id;
2835 if (i && (i == ctl_id)) return cptr;
2836 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002837 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002838}
2839
2840
Mike Iselya761f432006-06-25 20:04:44 -03002841/* Given a V4L ID, retrieve the control structure associated with it. */
Mike Iselyd8554972006-06-26 20:58:46 -03002842struct pvr2_ctrl *pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw *hdw,unsigned int ctl_id)
2843{
2844 struct pvr2_ctrl *cptr;
2845 unsigned int idx;
2846 int i;
2847
2848 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002849 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002850 cptr = hdw->controls + idx;
2851 i = cptr->info->v4l_id;
2852 if (i && (i == ctl_id)) return cptr;
2853 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002854 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002855}
2856
2857
Mike Iselya761f432006-06-25 20:04:44 -03002858/* Given a V4L ID for its immediate predecessor, retrieve the control
2859 structure associated with it. */
2860struct pvr2_ctrl *pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw *hdw,
2861 unsigned int ctl_id)
2862{
2863 struct pvr2_ctrl *cptr,*cp2;
2864 unsigned int idx;
2865 int i;
2866
2867 /* This could be made a lot more efficient, but for now... */
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002868 cp2 = NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002869 for (idx = 0; idx < hdw->control_cnt; idx++) {
2870 cptr = hdw->controls + idx;
2871 i = cptr->info->v4l_id;
2872 if (!i) continue;
2873 if (i <= ctl_id) continue;
2874 if (cp2 && (cp2->info->v4l_id < i)) continue;
2875 cp2 = cptr;
2876 }
2877 return cp2;
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002878 return NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002879}
2880
2881
Mike Iselyd8554972006-06-26 20:58:46 -03002882static const char *get_ctrl_typename(enum pvr2_ctl_type tp)
2883{
2884 switch (tp) {
2885 case pvr2_ctl_int: return "integer";
2886 case pvr2_ctl_enum: return "enum";
Mike Isely33213962006-06-25 20:04:40 -03002887 case pvr2_ctl_bool: return "boolean";
Mike Iselyd8554972006-06-26 20:58:46 -03002888 case pvr2_ctl_bitmask: return "bitmask";
2889 }
2890 return "";
2891}
2892
2893
Mike Isely2641df32009-03-07 00:13:25 -03002894static void pvr2_subdev_set_control(struct pvr2_hdw *hdw, int id,
2895 const char *name, int val)
2896{
2897 struct v4l2_control ctrl;
2898 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 %s=%d", name, val);
2899 memset(&ctrl, 0, sizeof(ctrl));
2900 ctrl.id = id;
2901 ctrl.value = val;
2902 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, s_ctrl, &ctrl);
2903}
2904
2905#define PVR2_SUBDEV_SET_CONTROL(hdw, id, lab) \
2906 if ((hdw)->lab##_dirty) { \
2907 pvr2_subdev_set_control(hdw, id, #lab, (hdw)->lab##_val); \
2908 }
2909
Mike Isely5ceaad12009-03-07 00:01:20 -03002910/* Execute whatever commands are required to update the state of all the
Mike Isely2641df32009-03-07 00:13:25 -03002911 sub-devices so that they match our current control values. */
Mike Isely5ceaad12009-03-07 00:01:20 -03002912static void pvr2_subdev_update(struct pvr2_hdw *hdw)
2913{
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002914 struct v4l2_subdev *sd;
2915 unsigned int id;
2916 pvr2_subdev_update_func fp;
2917
Mike Isely2641df32009-03-07 00:13:25 -03002918 if (hdw->input_dirty || hdw->std_dirty) {
2919 pvr2_trace(PVR2_TRACE_CHIPS,"subdev v4l2 set_standard");
2920 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2921 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2922 tuner, s_radio);
2923 } else {
2924 v4l2_std_id vs;
2925 vs = hdw->std_mask_cur;
2926 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2927 tuner, s_std, vs);
2928 }
2929 hdw->tuner_signal_stale = !0;
2930 hdw->cropcap_stale = !0;
2931 }
2932
2933 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_BRIGHTNESS, brightness);
2934 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_CONTRAST, contrast);
2935 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_SATURATION, saturation);
2936 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_HUE, hue);
2937 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_MUTE, mute);
2938 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_VOLUME, volume);
2939 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BALANCE, balance);
2940 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BASS, bass);
2941 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_TREBLE, treble);
2942
2943 if (hdw->input_dirty || hdw->audiomode_dirty) {
2944 struct v4l2_tuner vt;
2945 memset(&vt, 0, sizeof(vt));
2946 vt.audmode = hdw->audiomode_val;
2947 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, s_tuner, &vt);
2948 }
2949
2950 if (hdw->freqDirty) {
2951 unsigned long fv;
2952 struct v4l2_frequency freq;
2953 fv = pvr2_hdw_get_cur_freq(hdw);
2954 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_freq(%lu)", fv);
2955 if (hdw->tuner_signal_stale) pvr2_hdw_status_poll(hdw);
2956 memset(&freq, 0, sizeof(freq));
2957 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
2958 /* ((fv * 1000) / 62500) */
2959 freq.frequency = (fv * 2) / 125;
2960 } else {
2961 freq.frequency = fv / 62500;
2962 }
2963 /* tuner-core currently doesn't seem to care about this, but
2964 let's set it anyway for completeness. */
2965 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2966 freq.type = V4L2_TUNER_RADIO;
2967 } else {
2968 freq.type = V4L2_TUNER_ANALOG_TV;
2969 }
2970 freq.tuner = 0;
2971 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner,
2972 s_frequency, &freq);
2973 }
2974
2975 if (hdw->res_hor_dirty || hdw->res_ver_dirty) {
2976 struct v4l2_format fmt;
2977 memset(&fmt, 0, sizeof(fmt));
2978 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2979 fmt.fmt.pix.width = hdw->res_hor_val;
2980 fmt.fmt.pix.height = hdw->res_ver_val;
2981 pvr2_trace(PVR2_TRACE_CHIPS,"subdev v4l2 set_size(%dx%d)",
2982 fmt.fmt.pix.width, fmt.fmt.pix.height);
2983 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_fmt, &fmt);
2984 }
2985
2986 /* Unable to set crop parameters; there is apparently no equivalent
2987 for VIDIOC_S_CROP */
2988
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002989 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
2990 id = sd->grp_id;
2991 if (id >= ARRAY_SIZE(pvr2_module_update_functions)) continue;
2992 fp = pvr2_module_update_functions[id];
2993 if (!fp) continue;
2994 (*fp)(hdw, sd);
2995 }
Mike Isely2641df32009-03-07 00:13:25 -03002996
2997 if (hdw->tuner_signal_stale && hdw->cropcap_stale) {
2998 pvr2_hdw_status_poll(hdw);
2999 }
Mike Isely5ceaad12009-03-07 00:01:20 -03003000}
3001
3002
Mike Isely681c7392007-11-26 01:48:52 -03003003/* Figure out if we need to commit control changes. If so, mark internal
3004 state flags to indicate this fact and return true. Otherwise do nothing
3005 else and return false. */
3006static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003007{
Mike Iselyd8554972006-06-26 20:58:46 -03003008 unsigned int idx;
3009 struct pvr2_ctrl *cptr;
3010 int value;
3011 int commit_flag = 0;
3012 char buf[100];
3013 unsigned int bcnt,ccnt;
3014
Mike Iselyc05c0462006-06-25 20:04:25 -03003015 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03003016 cptr = hdw->controls + idx;
Al Viro5fa12472008-03-29 03:07:38 +00003017 if (!cptr->info->is_dirty) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003018 if (!cptr->info->is_dirty(cptr)) continue;
Mike Iselyfe23a282007-01-20 00:10:55 -03003019 commit_flag = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003020
Mike Iselyfe23a282007-01-20 00:10:55 -03003021 if (!(pvrusb2_debug & PVR2_TRACE_CTL)) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003022 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
3023 cptr->info->name);
3024 value = 0;
3025 cptr->info->get_value(cptr,&value);
3026 pvr2_ctrl_value_to_sym_internal(cptr,~0,value,
3027 buf+bcnt,
3028 sizeof(buf)-bcnt,&ccnt);
3029 bcnt += ccnt;
3030 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
3031 get_ctrl_typename(cptr->info->type));
3032 pvr2_trace(PVR2_TRACE_CTL,
3033 "/*--TRACE_COMMIT--*/ %.*s",
3034 bcnt,buf);
3035 }
3036
3037 if (!commit_flag) {
3038 /* Nothing has changed */
3039 return 0;
3040 }
3041
Mike Isely681c7392007-11-26 01:48:52 -03003042 hdw->state_pipeline_config = 0;
3043 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3044 pvr2_hdw_state_sched(hdw);
3045
3046 return !0;
3047}
3048
3049
3050/* Perform all operations needed to commit all control changes. This must
3051 be performed in synchronization with the pipeline state and is thus
3052 expected to be called as part of the driver's worker thread. Return
3053 true if commit successful, otherwise return false to indicate that
3054 commit isn't possible at this time. */
3055static int pvr2_hdw_commit_execute(struct pvr2_hdw *hdw)
3056{
3057 unsigned int idx;
3058 struct pvr2_ctrl *cptr;
3059 int disruptive_change;
3060
Mike Iselyab062fe2008-06-30 03:32:35 -03003061 /* Handle some required side effects when the video standard is
3062 changed.... */
Mike Iselyd8554972006-06-26 20:58:46 -03003063 if (hdw->std_dirty) {
Mike Iselyd8554972006-06-26 20:58:46 -03003064 int nvres;
Mike Isely00528d92008-06-30 03:35:52 -03003065 int gop_size;
Mike Iselyd8554972006-06-26 20:58:46 -03003066 if (hdw->std_mask_cur & V4L2_STD_525_60) {
3067 nvres = 480;
Mike Isely00528d92008-06-30 03:35:52 -03003068 gop_size = 15;
Mike Iselyd8554972006-06-26 20:58:46 -03003069 } else {
3070 nvres = 576;
Mike Isely00528d92008-06-30 03:35:52 -03003071 gop_size = 12;
Mike Iselyd8554972006-06-26 20:58:46 -03003072 }
Mike Isely00528d92008-06-30 03:35:52 -03003073 /* Rewrite the vertical resolution to be appropriate to the
3074 video standard that has been selected. */
Mike Iselyd8554972006-06-26 20:58:46 -03003075 if (nvres != hdw->res_ver_val) {
3076 hdw->res_ver_val = nvres;
3077 hdw->res_ver_dirty = !0;
3078 }
Mike Isely00528d92008-06-30 03:35:52 -03003079 /* Rewrite the GOP size to be appropriate to the video
3080 standard that has been selected. */
3081 if (gop_size != hdw->enc_ctl_state.video_gop_size) {
3082 struct v4l2_ext_controls cs;
3083 struct v4l2_ext_control c1;
3084 memset(&cs, 0, sizeof(cs));
3085 memset(&c1, 0, sizeof(c1));
3086 cs.controls = &c1;
3087 cs.count = 1;
3088 c1.id = V4L2_CID_MPEG_VIDEO_GOP_SIZE;
3089 c1.value = gop_size;
3090 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,
3091 VIDIOC_S_EXT_CTRLS);
3092 }
Mike Iselyd8554972006-06-26 20:58:46 -03003093 }
3094
Mike Isely38d9a2c2008-03-28 05:30:48 -03003095 if (hdw->input_dirty && hdw->state_pathway_ok &&
Mike Isely62433e32008-04-22 14:45:40 -03003096 (((hdw->input_val == PVR2_CVAL_INPUT_DTV) ?
3097 PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG) !=
3098 hdw->pathway_state)) {
3099 /* Change of mode being asked for... */
3100 hdw->state_pathway_ok = 0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03003101 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03003102 }
3103 if (!hdw->state_pathway_ok) {
3104 /* Can't commit anything until pathway is ok. */
3105 return 0;
3106 }
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03003107 /* The broadcast decoder can only scale down, so if
3108 * res_*_dirty && crop window < output format ==> enlarge crop.
3109 *
3110 * The mpeg encoder receives fields of res_hor_val dots and
3111 * res_ver_val halflines. Limits: hor<=720, ver<=576.
3112 */
3113 if (hdw->res_hor_dirty && hdw->cropw_val < hdw->res_hor_val) {
3114 hdw->cropw_val = hdw->res_hor_val;
3115 hdw->cropw_dirty = !0;
3116 } else if (hdw->cropw_dirty) {
3117 hdw->res_hor_dirty = !0; /* must rescale */
3118 hdw->res_hor_val = min(720, hdw->cropw_val);
3119 }
3120 if (hdw->res_ver_dirty && hdw->croph_val < hdw->res_ver_val) {
3121 hdw->croph_val = hdw->res_ver_val;
3122 hdw->croph_dirty = !0;
3123 } else if (hdw->croph_dirty) {
3124 int nvres = hdw->std_mask_cur & V4L2_STD_525_60 ? 480 : 576;
3125 hdw->res_ver_dirty = !0;
3126 hdw->res_ver_val = min(nvres, hdw->croph_val);
3127 }
3128
Mike Isely681c7392007-11-26 01:48:52 -03003129 /* If any of the below has changed, then we can't do the update
3130 while the pipeline is running. Pipeline must be paused first
3131 and decoder -> encoder connection be made quiescent before we
3132 can proceed. */
3133 disruptive_change =
3134 (hdw->std_dirty ||
3135 hdw->enc_unsafe_stale ||
3136 hdw->srate_dirty ||
3137 hdw->res_ver_dirty ||
3138 hdw->res_hor_dirty ||
Mike Isely755879c2008-08-31 20:50:59 -03003139 hdw->cropw_dirty ||
3140 hdw->croph_dirty ||
Mike Isely681c7392007-11-26 01:48:52 -03003141 hdw->input_dirty ||
3142 (hdw->active_stream_type != hdw->desired_stream_type));
3143 if (disruptive_change && !hdw->state_pipeline_idle) {
3144 /* Pipeline is not idle; we can't proceed. Arrange to
3145 cause pipeline to stop so that we can try this again
3146 later.... */
3147 hdw->state_pipeline_pause = !0;
3148 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003149 }
3150
Mike Iselyb30d2442006-06-25 20:05:01 -03003151 if (hdw->srate_dirty) {
3152 /* Write new sample rate into control structure since
3153 * the master copy is stale. We must track srate
3154 * separate from the mpeg control structure because
3155 * other logic also uses this value. */
3156 struct v4l2_ext_controls cs;
3157 struct v4l2_ext_control c1;
3158 memset(&cs,0,sizeof(cs));
3159 memset(&c1,0,sizeof(c1));
3160 cs.controls = &c1;
3161 cs.count = 1;
3162 c1.id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ;
3163 c1.value = hdw->srate_val;
Hans Verkuil01f1e442007-08-21 18:32:42 -03003164 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,VIDIOC_S_EXT_CTRLS);
Mike Iselyb30d2442006-06-25 20:05:01 -03003165 }
Mike Iselyc05c0462006-06-25 20:04:25 -03003166
Mike Iselyd8554972006-06-26 20:58:46 -03003167 /* Scan i2c core at this point - before we clear all the dirty
3168 bits. Various parts of the i2c core will notice dirty bits as
3169 appropriate and arrange to broadcast or directly send updates to
3170 the client drivers in order to keep everything in sync */
3171 pvr2_i2c_core_check_stale(hdw);
3172
Mike Isely681c7392007-11-26 01:48:52 -03003173 if (hdw->active_stream_type != hdw->desired_stream_type) {
3174 /* Handle any side effects of stream config here */
3175 hdw->active_stream_type = hdw->desired_stream_type;
3176 }
3177
Mike Isely1df59f02008-04-21 03:50:39 -03003178 if (hdw->hdw_desc->signal_routing_scheme ==
3179 PVR2_ROUTING_SCHEME_GOTVIEW) {
3180 u32 b;
3181 /* Handle GOTVIEW audio switching */
3182 pvr2_hdw_gpio_get_out(hdw,&b);
3183 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
3184 /* Set GPIO 11 */
3185 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),~0);
3186 } else {
3187 /* Clear GPIO 11 */
3188 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),0);
3189 }
3190 }
3191
Mike Isely5ceaad12009-03-07 00:01:20 -03003192 for (idx = 0; idx < hdw->control_cnt; idx++) {
3193 cptr = hdw->controls + idx;
3194 if (!cptr->info->clear_dirty) continue;
3195 cptr->info->clear_dirty(cptr);
3196 }
3197
3198 /* Check and update state for all sub-devices. */
3199 pvr2_subdev_update(hdw);
3200
Mike Iselyd8554972006-06-26 20:58:46 -03003201 /* Now execute i2c core update */
3202 pvr2_i2c_core_sync(hdw);
3203
Mike Isely62433e32008-04-22 14:45:40 -03003204 if ((hdw->pathway_state == PVR2_PATHWAY_ANALOG) &&
3205 hdw->state_encoder_run) {
3206 /* If encoder isn't running or it can't be touched, then
3207 this will get worked out later when we start the
3208 encoder. */
Mike Isely681c7392007-11-26 01:48:52 -03003209 if (pvr2_encoder_adjust(hdw) < 0) return !0;
3210 }
Mike Iselyd8554972006-06-26 20:58:46 -03003211
Mike Isely681c7392007-11-26 01:48:52 -03003212 hdw->state_pipeline_config = !0;
Mike Isely432907f2008-08-31 21:02:20 -03003213 /* Hardware state may have changed in a way to cause the cropping
3214 capabilities to have changed. So mark it stale, which will
3215 cause a later re-fetch. */
Mike Isely681c7392007-11-26 01:48:52 -03003216 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3217 return !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003218}
3219
3220
3221int pvr2_hdw_commit_ctl(struct pvr2_hdw *hdw)
3222{
Mike Isely681c7392007-11-26 01:48:52 -03003223 int fl;
3224 LOCK_TAKE(hdw->big_lock);
3225 fl = pvr2_hdw_commit_setup(hdw);
3226 LOCK_GIVE(hdw->big_lock);
3227 if (!fl) return 0;
3228 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003229}
3230
3231
Mike Isely681c7392007-11-26 01:48:52 -03003232static void pvr2_hdw_worker_i2c(struct work_struct *work)
Mike Iselyd8554972006-06-26 20:58:46 -03003233{
Mike Isely681c7392007-11-26 01:48:52 -03003234 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,worki2csync);
Mike Iselyd8554972006-06-26 20:58:46 -03003235 LOCK_TAKE(hdw->big_lock); do {
3236 pvr2_i2c_core_sync(hdw);
3237 } while (0); LOCK_GIVE(hdw->big_lock);
3238}
3239
3240
Mike Isely681c7392007-11-26 01:48:52 -03003241static void pvr2_hdw_worker_poll(struct work_struct *work)
Mike Iselyd8554972006-06-26 20:58:46 -03003242{
Mike Isely681c7392007-11-26 01:48:52 -03003243 int fl = 0;
3244 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workpoll);
Mike Iselyd8554972006-06-26 20:58:46 -03003245 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03003246 fl = pvr2_hdw_state_eval(hdw);
3247 } while (0); LOCK_GIVE(hdw->big_lock);
3248 if (fl && hdw->state_func) {
3249 hdw->state_func(hdw->state_data);
3250 }
3251}
3252
3253
Mike Isely681c7392007-11-26 01:48:52 -03003254static int pvr2_hdw_wait(struct pvr2_hdw *hdw,int state)
Mike Iselyd8554972006-06-26 20:58:46 -03003255{
Mike Isely681c7392007-11-26 01:48:52 -03003256 return wait_event_interruptible(
3257 hdw->state_wait_data,
3258 (hdw->state_stale == 0) &&
3259 (!state || (hdw->master_state != state)));
Mike Iselyd8554972006-06-26 20:58:46 -03003260}
3261
Mike Isely681c7392007-11-26 01:48:52 -03003262
Mike Iselyd8554972006-06-26 20:58:46 -03003263/* Return name for this driver instance */
3264const char *pvr2_hdw_get_driver_name(struct pvr2_hdw *hdw)
3265{
3266 return hdw->name;
3267}
3268
3269
Mike Isely78a47102007-11-26 01:58:20 -03003270const char *pvr2_hdw_get_desc(struct pvr2_hdw *hdw)
3271{
3272 return hdw->hdw_desc->description;
3273}
3274
3275
3276const char *pvr2_hdw_get_type(struct pvr2_hdw *hdw)
3277{
3278 return hdw->hdw_desc->shortname;
3279}
3280
3281
Mike Iselyd8554972006-06-26 20:58:46 -03003282int pvr2_hdw_is_hsm(struct pvr2_hdw *hdw)
3283{
3284 int result;
3285 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03003286 hdw->cmd_buffer[0] = FX2CMD_GET_USB_SPEED;
Mike Iselyd8554972006-06-26 20:58:46 -03003287 result = pvr2_send_request(hdw,
3288 hdw->cmd_buffer,1,
3289 hdw->cmd_buffer,1);
3290 if (result < 0) break;
3291 result = (hdw->cmd_buffer[0] != 0);
3292 } while(0); LOCK_GIVE(hdw->ctl_lock);
3293 return result;
3294}
3295
3296
Mike Isely18103c572007-01-20 00:09:47 -03003297/* Execute poll of tuner status */
3298void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003299{
Mike Iselyd8554972006-06-26 20:58:46 -03003300 LOCK_TAKE(hdw->big_lock); do {
Mike Iselya51f5002009-03-06 23:30:37 -03003301 pvr2_hdw_status_poll(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003302 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely18103c572007-01-20 00:09:47 -03003303}
3304
3305
Mike Isely432907f2008-08-31 21:02:20 -03003306static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw)
3307{
3308 if (!hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003309 return 0;
3310 }
Mike Iselya51f5002009-03-06 23:30:37 -03003311 pvr2_hdw_status_poll(hdw);
Mike Isely432907f2008-08-31 21:02:20 -03003312 if (hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003313 return -EIO;
3314 }
3315 return 0;
3316}
3317
3318
3319/* Return information about cropping capabilities */
3320int pvr2_hdw_get_cropcap(struct pvr2_hdw *hdw, struct v4l2_cropcap *pp)
3321{
3322 int stat = 0;
3323 LOCK_TAKE(hdw->big_lock);
3324 stat = pvr2_hdw_check_cropcap(hdw);
3325 if (!stat) {
Mike Isely432907f2008-08-31 21:02:20 -03003326 memcpy(pp, &hdw->cropcap_info, sizeof(hdw->cropcap_info));
3327 }
3328 LOCK_GIVE(hdw->big_lock);
3329 return stat;
3330}
3331
3332
Mike Isely18103c572007-01-20 00:09:47 -03003333/* Return information about the tuner */
3334int pvr2_hdw_get_tuner_status(struct pvr2_hdw *hdw,struct v4l2_tuner *vtp)
3335{
3336 LOCK_TAKE(hdw->big_lock); do {
3337 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -03003338 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -03003339 }
3340 memcpy(vtp,&hdw->tuner_signal_info,sizeof(struct v4l2_tuner));
3341 } while (0); LOCK_GIVE(hdw->big_lock);
3342 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003343}
3344
3345
3346/* Get handle to video output stream */
3347struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
3348{
3349 return hp->vid_stream;
3350}
3351
3352
3353void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
3354{
Mike Isely4f1a3e52006-06-25 20:04:31 -03003355 int nr = pvr2_hdw_get_unit_number(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003356 LOCK_TAKE(hdw->big_lock); do {
Mike Isely4f1a3e52006-06-25 20:04:31 -03003357 printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
Mike Isely5ceaad12009-03-07 00:01:20 -03003358 hdw->log_requested = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003359 pvr2_i2c_core_check_stale(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003360 pvr2_i2c_core_sync(hdw);
Mike Iselya51f5002009-03-06 23:30:37 -03003361 hdw->log_requested = 0;
Mike Iselyed3261a2009-03-07 00:02:33 -03003362 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, log_status);
Mike Iselyb30d2442006-06-25 20:05:01 -03003363 pvr2_trace(PVR2_TRACE_INFO,"cx2341x config:");
Hans Verkuil99eb44f2006-06-26 18:24:05 -03003364 cx2341x_log_status(&hdw->enc_ctl_state, "pvrusb2");
Mike Isely681c7392007-11-26 01:48:52 -03003365 pvr2_hdw_state_log_state(hdw);
Mike Isely4f1a3e52006-06-25 20:04:31 -03003366 printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
Mike Iselyd8554972006-06-26 20:58:46 -03003367 } while (0); LOCK_GIVE(hdw->big_lock);
3368}
3369
Mike Isely4db666c2007-09-08 22:16:27 -03003370
3371/* Grab EEPROM contents, needed for direct method. */
3372#define EEPROM_SIZE 8192
3373#define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
3374static u8 *pvr2_full_eeprom_fetch(struct pvr2_hdw *hdw)
3375{
3376 struct i2c_msg msg[2];
3377 u8 *eeprom;
3378 u8 iadd[2];
3379 u8 addr;
3380 u16 eepromSize;
3381 unsigned int offs;
3382 int ret;
3383 int mode16 = 0;
3384 unsigned pcnt,tcnt;
3385 eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
3386 if (!eeprom) {
3387 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3388 "Failed to allocate memory"
3389 " required to read eeprom");
3390 return NULL;
3391 }
3392
3393 trace_eeprom("Value for eeprom addr from controller was 0x%x",
3394 hdw->eeprom_addr);
3395 addr = hdw->eeprom_addr;
3396 /* Seems that if the high bit is set, then the *real* eeprom
3397 address is shifted right now bit position (noticed this in
3398 newer PVR USB2 hardware) */
3399 if (addr & 0x80) addr >>= 1;
3400
3401 /* FX2 documentation states that a 16bit-addressed eeprom is
3402 expected if the I2C address is an odd number (yeah, this is
3403 strange but it's what they do) */
3404 mode16 = (addr & 1);
3405 eepromSize = (mode16 ? EEPROM_SIZE : 256);
3406 trace_eeprom("Examining %d byte eeprom at location 0x%x"
3407 " using %d bit addressing",eepromSize,addr,
3408 mode16 ? 16 : 8);
3409
3410 msg[0].addr = addr;
3411 msg[0].flags = 0;
3412 msg[0].len = mode16 ? 2 : 1;
3413 msg[0].buf = iadd;
3414 msg[1].addr = addr;
3415 msg[1].flags = I2C_M_RD;
3416
3417 /* We have to do the actual eeprom data fetch ourselves, because
3418 (1) we're only fetching part of the eeprom, and (2) if we were
3419 getting the whole thing our I2C driver can't grab it in one
3420 pass - which is what tveeprom is otherwise going to attempt */
3421 memset(eeprom,0,EEPROM_SIZE);
3422 for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
3423 pcnt = 16;
3424 if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
3425 offs = tcnt + (eepromSize - EEPROM_SIZE);
3426 if (mode16) {
3427 iadd[0] = offs >> 8;
3428 iadd[1] = offs;
3429 } else {
3430 iadd[0] = offs;
3431 }
3432 msg[1].len = pcnt;
3433 msg[1].buf = eeprom+tcnt;
3434 if ((ret = i2c_transfer(&hdw->i2c_adap,
3435 msg,ARRAY_SIZE(msg))) != 2) {
3436 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3437 "eeprom fetch set offs err=%d",ret);
3438 kfree(eeprom);
3439 return NULL;
3440 }
3441 }
3442 return eeprom;
3443}
3444
3445
3446void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw *hdw,
3447 int prom_flag,
3448 int enable_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003449{
3450 int ret;
3451 u16 address;
3452 unsigned int pipe;
3453 LOCK_TAKE(hdw->big_lock); do {
Al Viro5fa12472008-03-29 03:07:38 +00003454 if ((hdw->fw_buffer == NULL) == !enable_flag) break;
Mike Iselyd8554972006-06-26 20:58:46 -03003455
3456 if (!enable_flag) {
3457 pvr2_trace(PVR2_TRACE_FIRMWARE,
3458 "Cleaning up after CPU firmware fetch");
3459 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003460 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003461 hdw->fw_size = 0;
Mike Isely4db666c2007-09-08 22:16:27 -03003462 if (hdw->fw_cpu_flag) {
3463 /* Now release the CPU. It will disconnect
3464 and reconnect later. */
3465 pvr2_hdw_cpureset_assert(hdw,0);
3466 }
Mike Iselyd8554972006-06-26 20:58:46 -03003467 break;
3468 }
3469
Mike Isely4db666c2007-09-08 22:16:27 -03003470 hdw->fw_cpu_flag = (prom_flag == 0);
3471 if (hdw->fw_cpu_flag) {
3472 pvr2_trace(PVR2_TRACE_FIRMWARE,
3473 "Preparing to suck out CPU firmware");
3474 hdw->fw_size = 0x2000;
3475 hdw->fw_buffer = kzalloc(hdw->fw_size,GFP_KERNEL);
3476 if (!hdw->fw_buffer) {
3477 hdw->fw_size = 0;
3478 break;
3479 }
3480
3481 /* We have to hold the CPU during firmware upload. */
3482 pvr2_hdw_cpureset_assert(hdw,1);
3483
3484 /* download the firmware from address 0000-1fff in 2048
3485 (=0x800) bytes chunk. */
3486
3487 pvr2_trace(PVR2_TRACE_FIRMWARE,
3488 "Grabbing CPU firmware");
3489 pipe = usb_rcvctrlpipe(hdw->usb_dev, 0);
3490 for(address = 0; address < hdw->fw_size;
3491 address += 0x800) {
3492 ret = usb_control_msg(hdw->usb_dev,pipe,
3493 0xa0,0xc0,
3494 address,0,
3495 hdw->fw_buffer+address,
3496 0x800,HZ);
3497 if (ret < 0) break;
3498 }
3499
3500 pvr2_trace(PVR2_TRACE_FIRMWARE,
3501 "Done grabbing CPU firmware");
3502 } else {
3503 pvr2_trace(PVR2_TRACE_FIRMWARE,
3504 "Sucking down EEPROM contents");
3505 hdw->fw_buffer = pvr2_full_eeprom_fetch(hdw);
3506 if (!hdw->fw_buffer) {
3507 pvr2_trace(PVR2_TRACE_FIRMWARE,
3508 "EEPROM content suck failed.");
3509 break;
3510 }
3511 hdw->fw_size = EEPROM_SIZE;
3512 pvr2_trace(PVR2_TRACE_FIRMWARE,
3513 "Done sucking down EEPROM contents");
Mike Iselyd8554972006-06-26 20:58:46 -03003514 }
3515
Mike Iselyd8554972006-06-26 20:58:46 -03003516 } while (0); LOCK_GIVE(hdw->big_lock);
3517}
3518
3519
3520/* Return true if we're in a mode for retrieval CPU firmware */
3521int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *hdw)
3522{
Al Viro5fa12472008-03-29 03:07:38 +00003523 return hdw->fw_buffer != NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003524}
3525
3526
3527int pvr2_hdw_cpufw_get(struct pvr2_hdw *hdw,unsigned int offs,
3528 char *buf,unsigned int cnt)
3529{
3530 int ret = -EINVAL;
3531 LOCK_TAKE(hdw->big_lock); do {
3532 if (!buf) break;
3533 if (!cnt) break;
3534
3535 if (!hdw->fw_buffer) {
3536 ret = -EIO;
3537 break;
3538 }
3539
3540 if (offs >= hdw->fw_size) {
3541 pvr2_trace(PVR2_TRACE_FIRMWARE,
3542 "Read firmware data offs=%d EOF",
3543 offs);
3544 ret = 0;
3545 break;
3546 }
3547
3548 if (offs + cnt > hdw->fw_size) cnt = hdw->fw_size - offs;
3549
3550 memcpy(buf,hdw->fw_buffer+offs,cnt);
3551
3552 pvr2_trace(PVR2_TRACE_FIRMWARE,
3553 "Read firmware data offs=%d cnt=%d",
3554 offs,cnt);
3555 ret = cnt;
3556 } while (0); LOCK_GIVE(hdw->big_lock);
3557
3558 return ret;
3559}
3560
3561
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003562int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003563 enum pvr2_v4l_type index)
Mike Iselyd8554972006-06-26 20:58:46 -03003564{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003565 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003566 case pvr2_v4l_type_video: return hdw->v4l_minor_number_video;
3567 case pvr2_v4l_type_vbi: return hdw->v4l_minor_number_vbi;
3568 case pvr2_v4l_type_radio: return hdw->v4l_minor_number_radio;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003569 default: return -1;
3570 }
Mike Iselyd8554972006-06-26 20:58:46 -03003571}
3572
3573
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -03003574/* Store a v4l minor device number */
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003575void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003576 enum pvr2_v4l_type index,int v)
Mike Iselyd8554972006-06-26 20:58:46 -03003577{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003578 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003579 case pvr2_v4l_type_video: hdw->v4l_minor_number_video = v;
3580 case pvr2_v4l_type_vbi: hdw->v4l_minor_number_vbi = v;
3581 case pvr2_v4l_type_radio: hdw->v4l_minor_number_radio = v;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003582 default: break;
3583 }
Mike Iselyd8554972006-06-26 20:58:46 -03003584}
3585
3586
David Howells7d12e782006-10-05 14:55:46 +01003587static void pvr2_ctl_write_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003588{
3589 struct pvr2_hdw *hdw = urb->context;
3590 hdw->ctl_write_pend_flag = 0;
3591 if (hdw->ctl_read_pend_flag) return;
3592 complete(&hdw->ctl_done);
3593}
3594
3595
David Howells7d12e782006-10-05 14:55:46 +01003596static void pvr2_ctl_read_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003597{
3598 struct pvr2_hdw *hdw = urb->context;
3599 hdw->ctl_read_pend_flag = 0;
3600 if (hdw->ctl_write_pend_flag) return;
3601 complete(&hdw->ctl_done);
3602}
3603
3604
3605static void pvr2_ctl_timeout(unsigned long data)
3606{
3607 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3608 if (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3609 hdw->ctl_timeout_flag = !0;
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003610 if (hdw->ctl_write_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003611 usb_unlink_urb(hdw->ctl_write_urb);
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003612 if (hdw->ctl_read_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003613 usb_unlink_urb(hdw->ctl_read_urb);
Mike Iselyd8554972006-06-26 20:58:46 -03003614 }
3615}
3616
3617
Mike Iselye61b6fc2006-07-18 22:42:18 -03003618/* Issue a command and get a response from the device. This extended
3619 version includes a probe flag (which if set means that device errors
3620 should not be logged or treated as fatal) and a timeout in jiffies.
3621 This can be used to non-lethally probe the health of endpoint 1. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03003622static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
3623 unsigned int timeout,int probe_fl,
3624 void *write_data,unsigned int write_len,
3625 void *read_data,unsigned int read_len)
Mike Iselyd8554972006-06-26 20:58:46 -03003626{
3627 unsigned int idx;
3628 int status = 0;
3629 struct timer_list timer;
3630 if (!hdw->ctl_lock_held) {
3631 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3632 "Attempted to execute control transfer"
3633 " without lock!!");
3634 return -EDEADLK;
3635 }
Mike Isely681c7392007-11-26 01:48:52 -03003636 if (!hdw->flag_ok && !probe_fl) {
Mike Iselyd8554972006-06-26 20:58:46 -03003637 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3638 "Attempted to execute control transfer"
3639 " when device not ok");
3640 return -EIO;
3641 }
3642 if (!(hdw->ctl_read_urb && hdw->ctl_write_urb)) {
3643 if (!probe_fl) {
3644 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3645 "Attempted to execute control transfer"
3646 " when USB is disconnected");
3647 }
3648 return -ENOTTY;
3649 }
3650
3651 /* Ensure that we have sane parameters */
3652 if (!write_data) write_len = 0;
3653 if (!read_data) read_len = 0;
3654 if (write_len > PVR2_CTL_BUFFSIZE) {
3655 pvr2_trace(
3656 PVR2_TRACE_ERROR_LEGS,
3657 "Attempted to execute %d byte"
3658 " control-write transfer (limit=%d)",
3659 write_len,PVR2_CTL_BUFFSIZE);
3660 return -EINVAL;
3661 }
3662 if (read_len > PVR2_CTL_BUFFSIZE) {
3663 pvr2_trace(
3664 PVR2_TRACE_ERROR_LEGS,
3665 "Attempted to execute %d byte"
3666 " control-read transfer (limit=%d)",
3667 write_len,PVR2_CTL_BUFFSIZE);
3668 return -EINVAL;
3669 }
3670 if ((!write_len) && (!read_len)) {
3671 pvr2_trace(
3672 PVR2_TRACE_ERROR_LEGS,
3673 "Attempted to execute null control transfer?");
3674 return -EINVAL;
3675 }
3676
3677
3678 hdw->cmd_debug_state = 1;
3679 if (write_len) {
3680 hdw->cmd_debug_code = ((unsigned char *)write_data)[0];
3681 } else {
3682 hdw->cmd_debug_code = 0;
3683 }
3684 hdw->cmd_debug_write_len = write_len;
3685 hdw->cmd_debug_read_len = read_len;
3686
3687 /* Initialize common stuff */
3688 init_completion(&hdw->ctl_done);
3689 hdw->ctl_timeout_flag = 0;
3690 hdw->ctl_write_pend_flag = 0;
3691 hdw->ctl_read_pend_flag = 0;
3692 init_timer(&timer);
3693 timer.expires = jiffies + timeout;
3694 timer.data = (unsigned long)hdw;
3695 timer.function = pvr2_ctl_timeout;
3696
3697 if (write_len) {
3698 hdw->cmd_debug_state = 2;
3699 /* Transfer write data to internal buffer */
3700 for (idx = 0; idx < write_len; idx++) {
3701 hdw->ctl_write_buffer[idx] =
3702 ((unsigned char *)write_data)[idx];
3703 }
3704 /* Initiate a write request */
3705 usb_fill_bulk_urb(hdw->ctl_write_urb,
3706 hdw->usb_dev,
3707 usb_sndbulkpipe(hdw->usb_dev,
3708 PVR2_CTL_WRITE_ENDPOINT),
3709 hdw->ctl_write_buffer,
3710 write_len,
3711 pvr2_ctl_write_complete,
3712 hdw);
3713 hdw->ctl_write_urb->actual_length = 0;
3714 hdw->ctl_write_pend_flag = !0;
3715 status = usb_submit_urb(hdw->ctl_write_urb,GFP_KERNEL);
3716 if (status < 0) {
3717 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3718 "Failed to submit write-control"
3719 " URB status=%d",status);
3720 hdw->ctl_write_pend_flag = 0;
3721 goto done;
3722 }
3723 }
3724
3725 if (read_len) {
3726 hdw->cmd_debug_state = 3;
3727 memset(hdw->ctl_read_buffer,0x43,read_len);
3728 /* Initiate a read request */
3729 usb_fill_bulk_urb(hdw->ctl_read_urb,
3730 hdw->usb_dev,
3731 usb_rcvbulkpipe(hdw->usb_dev,
3732 PVR2_CTL_READ_ENDPOINT),
3733 hdw->ctl_read_buffer,
3734 read_len,
3735 pvr2_ctl_read_complete,
3736 hdw);
3737 hdw->ctl_read_urb->actual_length = 0;
3738 hdw->ctl_read_pend_flag = !0;
3739 status = usb_submit_urb(hdw->ctl_read_urb,GFP_KERNEL);
3740 if (status < 0) {
3741 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3742 "Failed to submit read-control"
3743 " URB status=%d",status);
3744 hdw->ctl_read_pend_flag = 0;
3745 goto done;
3746 }
3747 }
3748
3749 /* Start timer */
3750 add_timer(&timer);
3751
3752 /* Now wait for all I/O to complete */
3753 hdw->cmd_debug_state = 4;
3754 while (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3755 wait_for_completion(&hdw->ctl_done);
3756 }
3757 hdw->cmd_debug_state = 5;
3758
3759 /* Stop timer */
3760 del_timer_sync(&timer);
3761
3762 hdw->cmd_debug_state = 6;
3763 status = 0;
3764
3765 if (hdw->ctl_timeout_flag) {
3766 status = -ETIMEDOUT;
3767 if (!probe_fl) {
3768 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3769 "Timed out control-write");
3770 }
3771 goto done;
3772 }
3773
3774 if (write_len) {
3775 /* Validate results of write request */
3776 if ((hdw->ctl_write_urb->status != 0) &&
3777 (hdw->ctl_write_urb->status != -ENOENT) &&
3778 (hdw->ctl_write_urb->status != -ESHUTDOWN) &&
3779 (hdw->ctl_write_urb->status != -ECONNRESET)) {
3780 /* USB subsystem is reporting some kind of failure
3781 on the write */
3782 status = hdw->ctl_write_urb->status;
3783 if (!probe_fl) {
3784 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3785 "control-write URB failure,"
3786 " status=%d",
3787 status);
3788 }
3789 goto done;
3790 }
3791 if (hdw->ctl_write_urb->actual_length < write_len) {
3792 /* Failed to write enough data */
3793 status = -EIO;
3794 if (!probe_fl) {
3795 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3796 "control-write URB short,"
3797 " expected=%d got=%d",
3798 write_len,
3799 hdw->ctl_write_urb->actual_length);
3800 }
3801 goto done;
3802 }
3803 }
3804 if (read_len) {
3805 /* Validate results of read request */
3806 if ((hdw->ctl_read_urb->status != 0) &&
3807 (hdw->ctl_read_urb->status != -ENOENT) &&
3808 (hdw->ctl_read_urb->status != -ESHUTDOWN) &&
3809 (hdw->ctl_read_urb->status != -ECONNRESET)) {
3810 /* USB subsystem is reporting some kind of failure
3811 on the read */
3812 status = hdw->ctl_read_urb->status;
3813 if (!probe_fl) {
3814 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3815 "control-read URB failure,"
3816 " status=%d",
3817 status);
3818 }
3819 goto done;
3820 }
3821 if (hdw->ctl_read_urb->actual_length < read_len) {
3822 /* Failed to read enough data */
3823 status = -EIO;
3824 if (!probe_fl) {
3825 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3826 "control-read URB short,"
3827 " expected=%d got=%d",
3828 read_len,
3829 hdw->ctl_read_urb->actual_length);
3830 }
3831 goto done;
3832 }
3833 /* Transfer retrieved data out from internal buffer */
3834 for (idx = 0; idx < read_len; idx++) {
3835 ((unsigned char *)read_data)[idx] =
3836 hdw->ctl_read_buffer[idx];
3837 }
3838 }
3839
3840 done:
3841
3842 hdw->cmd_debug_state = 0;
3843 if ((status < 0) && (!probe_fl)) {
Mike Isely681c7392007-11-26 01:48:52 -03003844 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003845 }
3846 return status;
3847}
3848
3849
3850int pvr2_send_request(struct pvr2_hdw *hdw,
3851 void *write_data,unsigned int write_len,
3852 void *read_data,unsigned int read_len)
3853{
3854 return pvr2_send_request_ex(hdw,HZ*4,0,
3855 write_data,write_len,
3856 read_data,read_len);
3857}
3858
Mike Isely1c9d10d2008-03-28 05:38:54 -03003859
3860static int pvr2_issue_simple_cmd(struct pvr2_hdw *hdw,u32 cmdcode)
3861{
3862 int ret;
3863 unsigned int cnt = 1;
3864 unsigned int args = 0;
3865 LOCK_TAKE(hdw->ctl_lock);
3866 hdw->cmd_buffer[0] = cmdcode & 0xffu;
3867 args = (cmdcode >> 8) & 0xffu;
3868 args = (args > 2) ? 2 : args;
3869 if (args) {
3870 cnt += args;
3871 hdw->cmd_buffer[1] = (cmdcode >> 16) & 0xffu;
3872 if (args > 1) {
3873 hdw->cmd_buffer[2] = (cmdcode >> 24) & 0xffu;
3874 }
3875 }
3876 if (pvrusb2_debug & PVR2_TRACE_INIT) {
3877 unsigned int idx;
3878 unsigned int ccnt,bcnt;
3879 char tbuf[50];
3880 cmdcode &= 0xffu;
3881 bcnt = 0;
3882 ccnt = scnprintf(tbuf+bcnt,
3883 sizeof(tbuf)-bcnt,
3884 "Sending FX2 command 0x%x",cmdcode);
3885 bcnt += ccnt;
3886 for (idx = 0; idx < ARRAY_SIZE(pvr2_fx2cmd_desc); idx++) {
3887 if (pvr2_fx2cmd_desc[idx].id == cmdcode) {
3888 ccnt = scnprintf(tbuf+bcnt,
3889 sizeof(tbuf)-bcnt,
3890 " \"%s\"",
3891 pvr2_fx2cmd_desc[idx].desc);
3892 bcnt += ccnt;
3893 break;
3894 }
3895 }
3896 if (args) {
3897 ccnt = scnprintf(tbuf+bcnt,
3898 sizeof(tbuf)-bcnt,
3899 " (%u",hdw->cmd_buffer[1]);
3900 bcnt += ccnt;
3901 if (args > 1) {
3902 ccnt = scnprintf(tbuf+bcnt,
3903 sizeof(tbuf)-bcnt,
3904 ",%u",hdw->cmd_buffer[2]);
3905 bcnt += ccnt;
3906 }
3907 ccnt = scnprintf(tbuf+bcnt,
3908 sizeof(tbuf)-bcnt,
3909 ")");
3910 bcnt += ccnt;
3911 }
3912 pvr2_trace(PVR2_TRACE_INIT,"%.*s",bcnt,tbuf);
3913 }
3914 ret = pvr2_send_request(hdw,hdw->cmd_buffer,cnt,NULL,0);
3915 LOCK_GIVE(hdw->ctl_lock);
3916 return ret;
3917}
3918
3919
Mike Iselyd8554972006-06-26 20:58:46 -03003920int pvr2_write_register(struct pvr2_hdw *hdw, u16 reg, u32 data)
3921{
3922 int ret;
3923
3924 LOCK_TAKE(hdw->ctl_lock);
3925
Michael Krufky8d364362007-01-22 02:17:55 -03003926 hdw->cmd_buffer[0] = FX2CMD_REG_WRITE; /* write register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003927 PVR2_DECOMPOSE_LE(hdw->cmd_buffer,1,data);
3928 hdw->cmd_buffer[5] = 0;
3929 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3930 hdw->cmd_buffer[7] = reg & 0xff;
3931
3932
3933 ret = pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 0);
3934
3935 LOCK_GIVE(hdw->ctl_lock);
3936
3937 return ret;
3938}
3939
3940
Adrian Bunk07e337e2006-06-30 11:30:20 -03003941static int pvr2_read_register(struct pvr2_hdw *hdw, u16 reg, u32 *data)
Mike Iselyd8554972006-06-26 20:58:46 -03003942{
3943 int ret = 0;
3944
3945 LOCK_TAKE(hdw->ctl_lock);
3946
Michael Krufky8d364362007-01-22 02:17:55 -03003947 hdw->cmd_buffer[0] = FX2CMD_REG_READ; /* read register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003948 hdw->cmd_buffer[1] = 0;
3949 hdw->cmd_buffer[2] = 0;
3950 hdw->cmd_buffer[3] = 0;
3951 hdw->cmd_buffer[4] = 0;
3952 hdw->cmd_buffer[5] = 0;
3953 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3954 hdw->cmd_buffer[7] = reg & 0xff;
3955
3956 ret |= pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 4);
3957 *data = PVR2_COMPOSE_LE(hdw->cmd_buffer,0);
3958
3959 LOCK_GIVE(hdw->ctl_lock);
3960
3961 return ret;
3962}
3963
3964
Mike Isely681c7392007-11-26 01:48:52 -03003965void pvr2_hdw_render_useless(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003966{
3967 if (!hdw->flag_ok) return;
Mike Isely681c7392007-11-26 01:48:52 -03003968 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3969 "Device being rendered inoperable");
Mike Iselyd8554972006-06-26 20:58:46 -03003970 if (hdw->vid_stream) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003971 pvr2_stream_setup(hdw->vid_stream,NULL,0,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003972 }
Mike Isely681c7392007-11-26 01:48:52 -03003973 hdw->flag_ok = 0;
3974 trace_stbit("flag_ok",hdw->flag_ok);
3975 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003976}
3977
3978
3979void pvr2_hdw_device_reset(struct pvr2_hdw *hdw)
3980{
3981 int ret;
3982 pvr2_trace(PVR2_TRACE_INIT,"Performing a device reset...");
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003983 ret = usb_lock_device_for_reset(hdw->usb_dev,NULL);
Alan Stern011b15d2008-11-04 11:29:27 -05003984 if (ret == 0) {
Mike Iselyd8554972006-06-26 20:58:46 -03003985 ret = usb_reset_device(hdw->usb_dev);
3986 usb_unlock_device(hdw->usb_dev);
3987 } else {
3988 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3989 "Failed to lock USB device ret=%d",ret);
3990 }
3991 if (init_pause_msec) {
3992 pvr2_trace(PVR2_TRACE_INFO,
3993 "Waiting %u msec for hardware to settle",
3994 init_pause_msec);
3995 msleep(init_pause_msec);
3996 }
3997
3998}
3999
4000
4001void pvr2_hdw_cpureset_assert(struct pvr2_hdw *hdw,int val)
4002{
4003 char da[1];
4004 unsigned int pipe;
4005 int ret;
4006
4007 if (!hdw->usb_dev) return;
4008
4009 pvr2_trace(PVR2_TRACE_INIT,"cpureset_assert(%d)",val);
4010
4011 da[0] = val ? 0x01 : 0x00;
4012
4013 /* Write the CPUCS register on the 8051. The lsb of the register
4014 is the reset bit; a 1 asserts reset while a 0 clears it. */
4015 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
4016 ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ);
4017 if (ret < 0) {
4018 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4019 "cpureset_assert(%d) error=%d",val,ret);
4020 pvr2_hdw_render_useless(hdw);
4021 }
4022}
4023
4024
4025int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw *hdw)
4026{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004027 return pvr2_issue_simple_cmd(hdw,FX2CMD_DEEP_RESET);
Mike Iselyd8554972006-06-26 20:58:46 -03004028}
4029
4030
Michael Krufkye1edb192008-04-22 14:45:39 -03004031int pvr2_hdw_cmd_powerup(struct pvr2_hdw *hdw)
4032{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004033 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_ON);
Michael Krufkye1edb192008-04-22 14:45:39 -03004034}
4035
Mike Isely1c9d10d2008-03-28 05:38:54 -03004036
Michael Krufkye1edb192008-04-22 14:45:39 -03004037int pvr2_hdw_cmd_powerdown(struct pvr2_hdw *hdw)
4038{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004039 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_OFF);
Michael Krufkye1edb192008-04-22 14:45:39 -03004040}
4041
Mike Iselyd8554972006-06-26 20:58:46 -03004042
4043int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw *hdw)
4044{
Mike Iselyd8554972006-06-26 20:58:46 -03004045 pvr2_trace(PVR2_TRACE_INIT,
4046 "Requesting decoder reset");
Mike Iselyaf78e162009-03-07 00:21:30 -03004047 if (hdw->decoder_ctrl) {
4048 if (!hdw->decoder_ctrl->force_reset) {
4049 pvr2_trace(PVR2_TRACE_INIT,
4050 "Unable to reset decoder: not implemented");
4051 return -ENOTTY;
4052 }
4053 hdw->decoder_ctrl->force_reset(hdw->decoder_ctrl->ctxt);
4054 return 0;
4055 } else {
4056 }
4057 if (hdw->decoder_client_id) {
4058 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
4059 core, reset, 0);
4060 return 0;
4061 }
4062 pvr2_trace(PVR2_TRACE_INIT,
4063 "Unable to reset decoder: nothing attached");
4064 return -ENOTTY;
Mike Iselyd8554972006-06-26 20:58:46 -03004065}
4066
4067
Mike Isely62433e32008-04-22 14:45:40 -03004068static int pvr2_hdw_cmd_hcw_demod_reset(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004069{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004070 hdw->flag_ok = !0;
4071 return pvr2_issue_simple_cmd(hdw,
4072 FX2CMD_HCW_DEMOD_RESETIN |
4073 (1 << 8) |
4074 ((onoff ? 1 : 0) << 16));
Mike Isely84147f32008-04-22 14:45:40 -03004075}
4076
Mike Isely84147f32008-04-22 14:45:40 -03004077
Mike Isely62433e32008-04-22 14:45:40 -03004078static int pvr2_hdw_cmd_onair_fe_power_ctrl(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004079{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004080 hdw->flag_ok = !0;
4081 return pvr2_issue_simple_cmd(hdw,(onoff ?
4082 FX2CMD_ONAIR_DTV_POWER_ON :
4083 FX2CMD_ONAIR_DTV_POWER_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004084}
4085
Mike Isely62433e32008-04-22 14:45:40 -03004086
4087static int pvr2_hdw_cmd_onair_digital_path_ctrl(struct pvr2_hdw *hdw,
4088 int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004089{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004090 return pvr2_issue_simple_cmd(hdw,(onoff ?
4091 FX2CMD_ONAIR_DTV_STREAMING_ON :
4092 FX2CMD_ONAIR_DTV_STREAMING_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004093}
4094
Mike Isely62433e32008-04-22 14:45:40 -03004095
4096static void pvr2_hdw_cmd_modeswitch(struct pvr2_hdw *hdw,int digitalFl)
4097{
4098 int cmode;
4099 /* Compare digital/analog desired setting with current setting. If
4100 they don't match, fix it... */
4101 cmode = (digitalFl ? PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG);
4102 if (cmode == hdw->pathway_state) {
4103 /* They match; nothing to do */
4104 return;
4105 }
4106
4107 switch (hdw->hdw_desc->digital_control_scheme) {
4108 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4109 pvr2_hdw_cmd_hcw_demod_reset(hdw,digitalFl);
4110 if (cmode == PVR2_PATHWAY_ANALOG) {
4111 /* If moving to analog mode, also force the decoder
4112 to reset. If no decoder is attached, then it's
4113 ok to ignore this because if/when the decoder
4114 attaches, it will reset itself at that time. */
4115 pvr2_hdw_cmd_decoder_reset(hdw);
4116 }
4117 break;
4118 case PVR2_DIGITAL_SCHEME_ONAIR:
4119 /* Supposedly we should always have the power on whether in
4120 digital or analog mode. But for now do what appears to
4121 work... */
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004122 pvr2_hdw_cmd_onair_fe_power_ctrl(hdw,digitalFl);
Mike Isely62433e32008-04-22 14:45:40 -03004123 break;
4124 default: break;
4125 }
4126
Mike Isely1b9c18c2008-04-22 14:45:41 -03004127 pvr2_hdw_untrip_unlocked(hdw);
Mike Isely62433e32008-04-22 14:45:40 -03004128 hdw->pathway_state = cmode;
4129}
4130
4131
Adrian Bunke9b59f62008-05-10 04:35:24 -03004132static void pvr2_led_ctrl_hauppauge(struct pvr2_hdw *hdw, int onoff)
Mike Iselyc55a97d2008-04-22 14:45:41 -03004133{
4134 /* change some GPIO data
4135 *
4136 * note: bit d7 of dir appears to control the LED,
4137 * so we shut it off here.
4138 *
Mike Iselyc55a97d2008-04-22 14:45:41 -03004139 */
Mike Isely40381cb2008-04-22 14:45:42 -03004140 if (onoff) {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004141 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000481);
Mike Isely40381cb2008-04-22 14:45:42 -03004142 } else {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004143 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000401);
Mike Isely40381cb2008-04-22 14:45:42 -03004144 }
Mike Iselyc55a97d2008-04-22 14:45:41 -03004145 pvr2_hdw_gpio_chg_out(hdw, 0xffffffff, 0x00000000);
Mike Isely40381cb2008-04-22 14:45:42 -03004146}
Mike Iselyc55a97d2008-04-22 14:45:41 -03004147
Mike Isely40381cb2008-04-22 14:45:42 -03004148
4149typedef void (*led_method_func)(struct pvr2_hdw *,int);
4150
4151static led_method_func led_methods[] = {
4152 [PVR2_LED_SCHEME_HAUPPAUGE] = pvr2_led_ctrl_hauppauge,
4153};
4154
4155
4156/* Toggle LED */
4157static void pvr2_led_ctrl(struct pvr2_hdw *hdw,int onoff)
4158{
4159 unsigned int scheme_id;
4160 led_method_func fp;
4161
4162 if ((!onoff) == (!hdw->led_on)) return;
4163
4164 hdw->led_on = onoff != 0;
4165
4166 scheme_id = hdw->hdw_desc->led_scheme;
4167 if (scheme_id < ARRAY_SIZE(led_methods)) {
4168 fp = led_methods[scheme_id];
4169 } else {
4170 fp = NULL;
4171 }
4172
4173 if (fp) (*fp)(hdw,onoff);
Mike Iselyc55a97d2008-04-22 14:45:41 -03004174}
4175
4176
Mike Iselye61b6fc2006-07-18 22:42:18 -03004177/* Stop / start video stream transport */
Adrian Bunk07e337e2006-06-30 11:30:20 -03004178static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl)
Mike Iselyd8554972006-06-26 20:58:46 -03004179{
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004180 int ret;
4181
4182 /* If we're in analog mode, then just issue the usual analog
4183 command. */
4184 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4185 return pvr2_issue_simple_cmd(hdw,
4186 (runFl ?
4187 FX2CMD_STREAMING_ON :
4188 FX2CMD_STREAMING_OFF));
4189 /*Note: Not reached */
Mike Isely62433e32008-04-22 14:45:40 -03004190 }
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004191
4192 if (hdw->pathway_state != PVR2_PATHWAY_DIGITAL) {
4193 /* Whoops, we don't know what mode we're in... */
4194 return -EINVAL;
4195 }
4196
4197 /* To get here we have to be in digital mode. The mechanism here
4198 is unfortunately different for different vendors. So we switch
4199 on the device's digital scheme attribute in order to figure out
4200 what to do. */
4201 switch (hdw->hdw_desc->digital_control_scheme) {
4202 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4203 return pvr2_issue_simple_cmd(hdw,
4204 (runFl ?
4205 FX2CMD_HCW_DTV_STREAMING_ON :
4206 FX2CMD_HCW_DTV_STREAMING_OFF));
4207 case PVR2_DIGITAL_SCHEME_ONAIR:
4208 ret = pvr2_issue_simple_cmd(hdw,
4209 (runFl ?
4210 FX2CMD_STREAMING_ON :
4211 FX2CMD_STREAMING_OFF));
4212 if (ret) return ret;
4213 return pvr2_hdw_cmd_onair_digital_path_ctrl(hdw,runFl);
4214 default:
4215 return -EINVAL;
4216 }
Mike Iselyd8554972006-06-26 20:58:46 -03004217}
4218
4219
Mike Isely62433e32008-04-22 14:45:40 -03004220/* Evaluate whether or not state_pathway_ok can change */
4221static int state_eval_pathway_ok(struct pvr2_hdw *hdw)
4222{
4223 if (hdw->state_pathway_ok) {
4224 /* Nothing to do if pathway is already ok */
4225 return 0;
4226 }
4227 if (!hdw->state_pipeline_idle) {
4228 /* Not allowed to change anything if pipeline is not idle */
4229 return 0;
4230 }
4231 pvr2_hdw_cmd_modeswitch(hdw,hdw->input_val == PVR2_CVAL_INPUT_DTV);
4232 hdw->state_pathway_ok = !0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03004233 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03004234 return !0;
4235}
4236
4237
Mike Isely681c7392007-11-26 01:48:52 -03004238/* Evaluate whether or not state_encoder_ok can change */
4239static int state_eval_encoder_ok(struct pvr2_hdw *hdw)
4240{
4241 if (hdw->state_encoder_ok) return 0;
4242 if (hdw->flag_tripped) return 0;
4243 if (hdw->state_encoder_run) return 0;
4244 if (hdw->state_encoder_config) return 0;
4245 if (hdw->state_decoder_run) return 0;
4246 if (hdw->state_usbstream_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004247 if (hdw->pathway_state == PVR2_PATHWAY_DIGITAL) {
4248 if (!hdw->hdw_desc->flag_digital_requires_cx23416) return 0;
4249 } else if (hdw->pathway_state != PVR2_PATHWAY_ANALOG) {
4250 return 0;
4251 }
4252
Mike Isely681c7392007-11-26 01:48:52 -03004253 if (pvr2_upload_firmware2(hdw) < 0) {
4254 hdw->flag_tripped = !0;
4255 trace_stbit("flag_tripped",hdw->flag_tripped);
4256 return !0;
4257 }
4258 hdw->state_encoder_ok = !0;
4259 trace_stbit("state_encoder_ok",hdw->state_encoder_ok);
4260 return !0;
4261}
4262
4263
4264/* Evaluate whether or not state_encoder_config can change */
4265static int state_eval_encoder_config(struct pvr2_hdw *hdw)
4266{
4267 if (hdw->state_encoder_config) {
4268 if (hdw->state_encoder_ok) {
4269 if (hdw->state_pipeline_req &&
4270 !hdw->state_pipeline_pause) return 0;
4271 }
4272 hdw->state_encoder_config = 0;
4273 hdw->state_encoder_waitok = 0;
4274 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4275 /* paranoia - solve race if timer just completed */
4276 del_timer_sync(&hdw->encoder_wait_timer);
4277 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004278 if (!hdw->state_pathway_ok ||
4279 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4280 !hdw->state_encoder_ok ||
Mike Isely681c7392007-11-26 01:48:52 -03004281 !hdw->state_pipeline_idle ||
4282 hdw->state_pipeline_pause ||
4283 !hdw->state_pipeline_req ||
4284 !hdw->state_pipeline_config) {
4285 /* We must reset the enforced wait interval if
4286 anything has happened that might have disturbed
4287 the encoder. This should be a rare case. */
4288 if (timer_pending(&hdw->encoder_wait_timer)) {
4289 del_timer_sync(&hdw->encoder_wait_timer);
4290 }
4291 if (hdw->state_encoder_waitok) {
4292 /* Must clear the state - therefore we did
4293 something to a state bit and must also
4294 return true. */
4295 hdw->state_encoder_waitok = 0;
4296 trace_stbit("state_encoder_waitok",
4297 hdw->state_encoder_waitok);
4298 return !0;
4299 }
4300 return 0;
4301 }
4302 if (!hdw->state_encoder_waitok) {
4303 if (!timer_pending(&hdw->encoder_wait_timer)) {
4304 /* waitok flag wasn't set and timer isn't
4305 running. Check flag once more to avoid
4306 a race then start the timer. This is
4307 the point when we measure out a minimal
4308 quiet interval before doing something to
4309 the encoder. */
4310 if (!hdw->state_encoder_waitok) {
4311 hdw->encoder_wait_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004312 jiffies +
4313 (HZ * TIME_MSEC_ENCODER_WAIT
4314 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004315 add_timer(&hdw->encoder_wait_timer);
4316 }
4317 }
4318 /* We can't continue until we know we have been
4319 quiet for the interval measured by this
4320 timer. */
4321 return 0;
4322 }
4323 pvr2_encoder_configure(hdw);
4324 if (hdw->state_encoder_ok) hdw->state_encoder_config = !0;
4325 }
4326 trace_stbit("state_encoder_config",hdw->state_encoder_config);
4327 return !0;
4328}
4329
4330
Mike Iselyd913d632008-04-06 04:04:35 -03004331/* Return true if the encoder should not be running. */
4332static int state_check_disable_encoder_run(struct pvr2_hdw *hdw)
4333{
4334 if (!hdw->state_encoder_ok) {
4335 /* Encoder isn't healthy at the moment, so stop it. */
4336 return !0;
4337 }
4338 if (!hdw->state_pathway_ok) {
4339 /* Mode is not understood at the moment (i.e. it wants to
4340 change), so encoder must be stopped. */
4341 return !0;
4342 }
4343
4344 switch (hdw->pathway_state) {
4345 case PVR2_PATHWAY_ANALOG:
4346 if (!hdw->state_decoder_run) {
4347 /* We're in analog mode and the decoder is not
4348 running; thus the encoder should be stopped as
4349 well. */
4350 return !0;
4351 }
4352 break;
4353 case PVR2_PATHWAY_DIGITAL:
4354 if (hdw->state_encoder_runok) {
4355 /* This is a funny case. We're in digital mode so
4356 really the encoder should be stopped. However
4357 if it really is running, only kill it after
4358 runok has been set. This gives a chance for the
4359 onair quirk to function (encoder must run
4360 briefly first, at least once, before onair
4361 digital streaming can work). */
4362 return !0;
4363 }
4364 break;
4365 default:
4366 /* Unknown mode; so encoder should be stopped. */
4367 return !0;
4368 }
4369
4370 /* If we get here, we haven't found a reason to stop the
4371 encoder. */
4372 return 0;
4373}
4374
4375
4376/* Return true if the encoder should be running. */
4377static int state_check_enable_encoder_run(struct pvr2_hdw *hdw)
4378{
4379 if (!hdw->state_encoder_ok) {
4380 /* Don't run the encoder if it isn't healthy... */
4381 return 0;
4382 }
4383 if (!hdw->state_pathway_ok) {
4384 /* Don't run the encoder if we don't (yet) know what mode
4385 we need to be in... */
4386 return 0;
4387 }
4388
4389 switch (hdw->pathway_state) {
4390 case PVR2_PATHWAY_ANALOG:
4391 if (hdw->state_decoder_run) {
4392 /* In analog mode, if the decoder is running, then
4393 run the encoder. */
4394 return !0;
4395 }
4396 break;
4397 case PVR2_PATHWAY_DIGITAL:
4398 if ((hdw->hdw_desc->digital_control_scheme ==
4399 PVR2_DIGITAL_SCHEME_ONAIR) &&
4400 !hdw->state_encoder_runok) {
4401 /* This is a quirk. OnAir hardware won't stream
4402 digital until the encoder has been run at least
4403 once, for a minimal period of time (empiricially
4404 measured to be 1/4 second). So if we're on
4405 OnAir hardware and the encoder has never been
4406 run at all, then start the encoder. Normal
4407 state machine logic in the driver will
4408 automatically handle the remaining bits. */
4409 return !0;
4410 }
4411 break;
4412 default:
4413 /* For completeness (unknown mode; encoder won't run ever) */
4414 break;
4415 }
4416 /* If we get here, then we haven't found any reason to run the
4417 encoder, so don't run it. */
4418 return 0;
4419}
4420
4421
Mike Isely681c7392007-11-26 01:48:52 -03004422/* Evaluate whether or not state_encoder_run can change */
4423static int state_eval_encoder_run(struct pvr2_hdw *hdw)
4424{
4425 if (hdw->state_encoder_run) {
Mike Iselyd913d632008-04-06 04:04:35 -03004426 if (!state_check_disable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004427 if (hdw->state_encoder_ok) {
Mike Iselyd913d632008-04-06 04:04:35 -03004428 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03004429 if (pvr2_encoder_stop(hdw) < 0) return !0;
4430 }
4431 hdw->state_encoder_run = 0;
4432 } else {
Mike Iselyd913d632008-04-06 04:04:35 -03004433 if (!state_check_enable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004434 if (pvr2_encoder_start(hdw) < 0) return !0;
4435 hdw->state_encoder_run = !0;
Mike Iselyd913d632008-04-06 04:04:35 -03004436 if (!hdw->state_encoder_runok) {
4437 hdw->encoder_run_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004438 jiffies + (HZ * TIME_MSEC_ENCODER_OK / 1000);
Mike Iselyd913d632008-04-06 04:04:35 -03004439 add_timer(&hdw->encoder_run_timer);
4440 }
Mike Isely681c7392007-11-26 01:48:52 -03004441 }
4442 trace_stbit("state_encoder_run",hdw->state_encoder_run);
4443 return !0;
4444}
4445
4446
4447/* Timeout function for quiescent timer. */
4448static void pvr2_hdw_quiescent_timeout(unsigned long data)
4449{
4450 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4451 hdw->state_decoder_quiescent = !0;
4452 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4453 hdw->state_stale = !0;
4454 queue_work(hdw->workqueue,&hdw->workpoll);
4455}
4456
4457
4458/* Timeout function for encoder wait timer. */
4459static void pvr2_hdw_encoder_wait_timeout(unsigned long data)
4460{
4461 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4462 hdw->state_encoder_waitok = !0;
4463 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4464 hdw->state_stale = !0;
4465 queue_work(hdw->workqueue,&hdw->workpoll);
4466}
4467
4468
Mike Iselyd913d632008-04-06 04:04:35 -03004469/* Timeout function for encoder run timer. */
4470static void pvr2_hdw_encoder_run_timeout(unsigned long data)
4471{
4472 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4473 if (!hdw->state_encoder_runok) {
4474 hdw->state_encoder_runok = !0;
4475 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
4476 hdw->state_stale = !0;
4477 queue_work(hdw->workqueue,&hdw->workpoll);
4478 }
4479}
4480
4481
Mike Isely681c7392007-11-26 01:48:52 -03004482/* Evaluate whether or not state_decoder_run can change */
4483static int state_eval_decoder_run(struct pvr2_hdw *hdw)
4484{
4485 if (hdw->state_decoder_run) {
4486 if (hdw->state_encoder_ok) {
4487 if (hdw->state_pipeline_req &&
Mike Isely62433e32008-04-22 14:45:40 -03004488 !hdw->state_pipeline_pause &&
4489 hdw->state_pathway_ok) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004490 }
4491 if (!hdw->flag_decoder_missed) {
4492 pvr2_decoder_enable(hdw,0);
4493 }
4494 hdw->state_decoder_quiescent = 0;
4495 hdw->state_decoder_run = 0;
4496 /* paranoia - solve race if timer just completed */
4497 del_timer_sync(&hdw->quiescent_timer);
4498 } else {
4499 if (!hdw->state_decoder_quiescent) {
4500 if (!timer_pending(&hdw->quiescent_timer)) {
4501 /* We don't do something about the
4502 quiescent timer until right here because
4503 we also want to catch cases where the
4504 decoder was already not running (like
4505 after initialization) as opposed to
4506 knowing that we had just stopped it.
4507 The second flag check is here to cover a
4508 race - the timer could have run and set
4509 this flag just after the previous check
4510 but before we did the pending check. */
4511 if (!hdw->state_decoder_quiescent) {
4512 hdw->quiescent_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004513 jiffies +
4514 (HZ * TIME_MSEC_DECODER_WAIT
4515 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004516 add_timer(&hdw->quiescent_timer);
4517 }
4518 }
4519 /* Don't allow decoder to start again until it has
4520 been quiesced first. This little detail should
4521 hopefully further stabilize the encoder. */
4522 return 0;
4523 }
Mike Isely62433e32008-04-22 14:45:40 -03004524 if (!hdw->state_pathway_ok ||
4525 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4526 !hdw->state_pipeline_req ||
Mike Isely681c7392007-11-26 01:48:52 -03004527 hdw->state_pipeline_pause ||
4528 !hdw->state_pipeline_config ||
4529 !hdw->state_encoder_config ||
4530 !hdw->state_encoder_ok) return 0;
4531 del_timer_sync(&hdw->quiescent_timer);
4532 if (hdw->flag_decoder_missed) return 0;
4533 if (pvr2_decoder_enable(hdw,!0) < 0) return 0;
4534 hdw->state_decoder_quiescent = 0;
4535 hdw->state_decoder_run = !0;
4536 }
4537 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4538 trace_stbit("state_decoder_run",hdw->state_decoder_run);
4539 return !0;
4540}
4541
4542
4543/* Evaluate whether or not state_usbstream_run can change */
4544static int state_eval_usbstream_run(struct pvr2_hdw *hdw)
4545{
4546 if (hdw->state_usbstream_run) {
Mike Isely72998b72008-04-03 04:51:19 -03004547 int fl = !0;
Mike Isely62433e32008-04-22 14:45:40 -03004548 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
Mike Isely72998b72008-04-03 04:51:19 -03004549 fl = (hdw->state_encoder_ok &&
4550 hdw->state_encoder_run);
4551 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4552 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4553 fl = hdw->state_encoder_ok;
4554 }
4555 if (fl &&
4556 hdw->state_pipeline_req &&
4557 !hdw->state_pipeline_pause &&
4558 hdw->state_pathway_ok) {
4559 return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004560 }
4561 pvr2_hdw_cmd_usbstream(hdw,0);
4562 hdw->state_usbstream_run = 0;
4563 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004564 if (!hdw->state_pipeline_req ||
4565 hdw->state_pipeline_pause ||
4566 !hdw->state_pathway_ok) return 0;
4567 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4568 if (!hdw->state_encoder_ok ||
4569 !hdw->state_encoder_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004570 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4571 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4572 if (!hdw->state_encoder_ok) return 0;
Mike Iselyd913d632008-04-06 04:04:35 -03004573 if (hdw->state_encoder_run) return 0;
4574 if (hdw->hdw_desc->digital_control_scheme ==
4575 PVR2_DIGITAL_SCHEME_ONAIR) {
4576 /* OnAir digital receivers won't stream
4577 unless the analog encoder has run first.
4578 Why? I have no idea. But don't even
4579 try until we know the analog side is
4580 known to have run. */
4581 if (!hdw->state_encoder_runok) return 0;
4582 }
Mike Isely62433e32008-04-22 14:45:40 -03004583 }
Mike Isely681c7392007-11-26 01:48:52 -03004584 if (pvr2_hdw_cmd_usbstream(hdw,!0) < 0) return 0;
4585 hdw->state_usbstream_run = !0;
4586 }
4587 trace_stbit("state_usbstream_run",hdw->state_usbstream_run);
4588 return !0;
4589}
4590
4591
4592/* Attempt to configure pipeline, if needed */
4593static int state_eval_pipeline_config(struct pvr2_hdw *hdw)
4594{
4595 if (hdw->state_pipeline_config ||
4596 hdw->state_pipeline_pause) return 0;
4597 pvr2_hdw_commit_execute(hdw);
4598 return !0;
4599}
4600
4601
4602/* Update pipeline idle and pipeline pause tracking states based on other
4603 inputs. This must be called whenever the other relevant inputs have
4604 changed. */
4605static int state_update_pipeline_state(struct pvr2_hdw *hdw)
4606{
4607 unsigned int st;
4608 int updatedFl = 0;
4609 /* Update pipeline state */
4610 st = !(hdw->state_encoder_run ||
4611 hdw->state_decoder_run ||
4612 hdw->state_usbstream_run ||
4613 (!hdw->state_decoder_quiescent));
4614 if (!st != !hdw->state_pipeline_idle) {
4615 hdw->state_pipeline_idle = st;
4616 updatedFl = !0;
4617 }
4618 if (hdw->state_pipeline_idle && hdw->state_pipeline_pause) {
4619 hdw->state_pipeline_pause = 0;
4620 updatedFl = !0;
4621 }
4622 return updatedFl;
4623}
4624
4625
4626typedef int (*state_eval_func)(struct pvr2_hdw *);
4627
4628/* Set of functions to be run to evaluate various states in the driver. */
Tobias Klauserebff0332008-04-22 14:45:45 -03004629static const state_eval_func eval_funcs[] = {
Mike Isely62433e32008-04-22 14:45:40 -03004630 state_eval_pathway_ok,
Mike Isely681c7392007-11-26 01:48:52 -03004631 state_eval_pipeline_config,
4632 state_eval_encoder_ok,
4633 state_eval_encoder_config,
4634 state_eval_decoder_run,
4635 state_eval_encoder_run,
4636 state_eval_usbstream_run,
4637};
4638
4639
4640/* Process various states and return true if we did anything interesting. */
4641static int pvr2_hdw_state_update(struct pvr2_hdw *hdw)
4642{
4643 unsigned int i;
4644 int state_updated = 0;
4645 int check_flag;
4646
4647 if (!hdw->state_stale) return 0;
4648 if ((hdw->fw1_state != FW1_STATE_OK) ||
4649 !hdw->flag_ok) {
4650 hdw->state_stale = 0;
4651 return !0;
4652 }
4653 /* This loop is the heart of the entire driver. It keeps trying to
4654 evaluate various bits of driver state until nothing changes for
4655 one full iteration. Each "bit of state" tracks some global
4656 aspect of the driver, e.g. whether decoder should run, if
4657 pipeline is configured, usb streaming is on, etc. We separately
4658 evaluate each of those questions based on other driver state to
4659 arrive at the correct running configuration. */
4660 do {
4661 check_flag = 0;
4662 state_update_pipeline_state(hdw);
4663 /* Iterate over each bit of state */
4664 for (i = 0; (i<ARRAY_SIZE(eval_funcs)) && hdw->flag_ok; i++) {
4665 if ((*eval_funcs[i])(hdw)) {
4666 check_flag = !0;
4667 state_updated = !0;
4668 state_update_pipeline_state(hdw);
4669 }
4670 }
4671 } while (check_flag && hdw->flag_ok);
4672 hdw->state_stale = 0;
4673 trace_stbit("state_stale",hdw->state_stale);
4674 return state_updated;
4675}
4676
4677
Mike Isely1cb03b72008-04-21 03:47:43 -03004678static unsigned int print_input_mask(unsigned int msk,
4679 char *buf,unsigned int acnt)
4680{
4681 unsigned int idx,ccnt;
4682 unsigned int tcnt = 0;
4683 for (idx = 0; idx < ARRAY_SIZE(control_values_input); idx++) {
4684 if (!((1 << idx) & msk)) continue;
4685 ccnt = scnprintf(buf+tcnt,
4686 acnt-tcnt,
4687 "%s%s",
4688 (tcnt ? ", " : ""),
4689 control_values_input[idx]);
4690 tcnt += ccnt;
4691 }
4692 return tcnt;
4693}
4694
4695
Mike Isely62433e32008-04-22 14:45:40 -03004696static const char *pvr2_pathway_state_name(int id)
4697{
4698 switch (id) {
4699 case PVR2_PATHWAY_ANALOG: return "analog";
4700 case PVR2_PATHWAY_DIGITAL: return "digital";
4701 default: return "unknown";
4702 }
4703}
4704
4705
Mike Isely681c7392007-11-26 01:48:52 -03004706static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw *hdw,int which,
4707 char *buf,unsigned int acnt)
4708{
4709 switch (which) {
4710 case 0:
4711 return scnprintf(
4712 buf,acnt,
Mike Iselye9db1ff2008-04-22 14:45:41 -03004713 "driver:%s%s%s%s%s <mode=%s>",
Mike Isely681c7392007-11-26 01:48:52 -03004714 (hdw->flag_ok ? " <ok>" : " <fail>"),
4715 (hdw->flag_init_ok ? " <init>" : " <uninitialized>"),
4716 (hdw->flag_disconnected ? " <disconnected>" :
4717 " <connected>"),
4718 (hdw->flag_tripped ? " <tripped>" : ""),
Mike Isely62433e32008-04-22 14:45:40 -03004719 (hdw->flag_decoder_missed ? " <no decoder>" : ""),
4720 pvr2_pathway_state_name(hdw->pathway_state));
4721
Mike Isely681c7392007-11-26 01:48:52 -03004722 case 1:
4723 return scnprintf(
4724 buf,acnt,
4725 "pipeline:%s%s%s%s",
4726 (hdw->state_pipeline_idle ? " <idle>" : ""),
4727 (hdw->state_pipeline_config ?
4728 " <configok>" : " <stale>"),
4729 (hdw->state_pipeline_req ? " <req>" : ""),
4730 (hdw->state_pipeline_pause ? " <pause>" : ""));
4731 case 2:
4732 return scnprintf(
4733 buf,acnt,
Mike Isely62433e32008-04-22 14:45:40 -03004734 "worker:%s%s%s%s%s%s%s",
Mike Isely681c7392007-11-26 01:48:52 -03004735 (hdw->state_decoder_run ?
4736 " <decode:run>" :
4737 (hdw->state_decoder_quiescent ?
4738 "" : " <decode:stop>")),
4739 (hdw->state_decoder_quiescent ?
4740 " <decode:quiescent>" : ""),
4741 (hdw->state_encoder_ok ?
4742 "" : " <encode:init>"),
4743 (hdw->state_encoder_run ?
Mike Iselyd913d632008-04-06 04:04:35 -03004744 (hdw->state_encoder_runok ?
4745 " <encode:run>" :
4746 " <encode:firstrun>") :
4747 (hdw->state_encoder_runok ?
4748 " <encode:stop>" :
4749 " <encode:virgin>")),
Mike Isely681c7392007-11-26 01:48:52 -03004750 (hdw->state_encoder_config ?
4751 " <encode:configok>" :
4752 (hdw->state_encoder_waitok ?
Mike Iselyb9a37d92008-03-28 05:31:40 -03004753 "" : " <encode:waitok>")),
Mike Isely681c7392007-11-26 01:48:52 -03004754 (hdw->state_usbstream_run ?
Mike Isely62433e32008-04-22 14:45:40 -03004755 " <usb:run>" : " <usb:stop>"),
4756 (hdw->state_pathway_ok ?
Mike Iselye9db1ff2008-04-22 14:45:41 -03004757 " <pathway:ok>" : ""));
Mike Isely681c7392007-11-26 01:48:52 -03004758 case 3:
4759 return scnprintf(
4760 buf,acnt,
4761 "state: %s",
4762 pvr2_get_state_name(hdw->master_state));
Mike Iselyad0992e2008-03-28 05:34:45 -03004763 case 4: {
Mike Isely1cb03b72008-04-21 03:47:43 -03004764 unsigned int tcnt = 0;
4765 unsigned int ccnt;
4766
4767 ccnt = scnprintf(buf,
4768 acnt,
4769 "Hardware supported inputs: ");
4770 tcnt += ccnt;
4771 tcnt += print_input_mask(hdw->input_avail_mask,
4772 buf+tcnt,
4773 acnt-tcnt);
4774 if (hdw->input_avail_mask != hdw->input_allowed_mask) {
4775 ccnt = scnprintf(buf+tcnt,
4776 acnt-tcnt,
4777 "; allowed inputs: ");
4778 tcnt += ccnt;
4779 tcnt += print_input_mask(hdw->input_allowed_mask,
4780 buf+tcnt,
4781 acnt-tcnt);
4782 }
4783 return tcnt;
4784 }
4785 case 5: {
Mike Iselyad0992e2008-03-28 05:34:45 -03004786 struct pvr2_stream_stats stats;
4787 if (!hdw->vid_stream) break;
4788 pvr2_stream_get_stats(hdw->vid_stream,
4789 &stats,
4790 0);
4791 return scnprintf(
4792 buf,acnt,
4793 "Bytes streamed=%u"
4794 " URBs: queued=%u idle=%u ready=%u"
4795 " processed=%u failed=%u",
4796 stats.bytes_processed,
4797 stats.buffers_in_queue,
4798 stats.buffers_in_idle,
4799 stats.buffers_in_ready,
4800 stats.buffers_processed,
4801 stats.buffers_failed);
4802 }
Mike Isely858f9102009-03-07 00:28:28 -03004803 case 6: {
4804 struct v4l2_subdev *sd;
4805 unsigned int tcnt = 0;
4806 unsigned int ccnt;
4807 const char *p;
4808 unsigned int id;
4809 ccnt = scnprintf(buf,
4810 acnt,
4811 "Associted v4l2_subdev drivers:");
4812 tcnt += ccnt;
4813 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
4814 id = sd->grp_id;
4815 p = NULL;
4816 if (id < ARRAY_SIZE(module_names)) {
4817 p = module_names[id];
4818 }
4819 if (!p) p = "(unknown)";
4820 ccnt = scnprintf(buf + tcnt,
4821 acnt - tcnt,
4822 " %s (%u)", p, id);
4823 }
4824 return tcnt;
4825 }
Mike Isely681c7392007-11-26 01:48:52 -03004826 default: break;
4827 }
4828 return 0;
4829}
4830
4831
4832unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
4833 char *buf,unsigned int acnt)
4834{
4835 unsigned int bcnt,ccnt,idx;
4836 bcnt = 0;
4837 LOCK_TAKE(hdw->big_lock);
4838 for (idx = 0; ; idx++) {
4839 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4840 if (!ccnt) break;
4841 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4842 if (!acnt) break;
4843 buf[0] = '\n'; ccnt = 1;
4844 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4845 }
4846 LOCK_GIVE(hdw->big_lock);
4847 return bcnt;
4848}
4849
4850
4851static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
4852{
4853 char buf[128];
4854 unsigned int idx,ccnt;
4855
4856 for (idx = 0; ; idx++) {
4857 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
4858 if (!ccnt) break;
4859 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
4860 }
4861}
4862
4863
4864/* Evaluate and update the driver's current state, taking various actions
4865 as appropriate for the update. */
4866static int pvr2_hdw_state_eval(struct pvr2_hdw *hdw)
4867{
4868 unsigned int st;
4869 int state_updated = 0;
4870 int callback_flag = 0;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004871 int analog_mode;
Mike Isely681c7392007-11-26 01:48:52 -03004872
4873 pvr2_trace(PVR2_TRACE_STBITS,
4874 "Drive state check START");
4875 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4876 pvr2_hdw_state_log_state(hdw);
4877 }
4878
4879 /* Process all state and get back over disposition */
4880 state_updated = pvr2_hdw_state_update(hdw);
4881
Mike Isely1b9c18c2008-04-22 14:45:41 -03004882 analog_mode = (hdw->pathway_state != PVR2_PATHWAY_DIGITAL);
4883
Mike Isely681c7392007-11-26 01:48:52 -03004884 /* Update master state based upon all other states. */
4885 if (!hdw->flag_ok) {
4886 st = PVR2_STATE_DEAD;
4887 } else if (hdw->fw1_state != FW1_STATE_OK) {
4888 st = PVR2_STATE_COLD;
Mike Isely72998b72008-04-03 04:51:19 -03004889 } else if ((analog_mode ||
4890 hdw->hdw_desc->flag_digital_requires_cx23416) &&
4891 !hdw->state_encoder_ok) {
Mike Isely681c7392007-11-26 01:48:52 -03004892 st = PVR2_STATE_WARM;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004893 } else if (hdw->flag_tripped ||
4894 (analog_mode && hdw->flag_decoder_missed)) {
Mike Isely681c7392007-11-26 01:48:52 -03004895 st = PVR2_STATE_ERROR;
Mike Isely62433e32008-04-22 14:45:40 -03004896 } else if (hdw->state_usbstream_run &&
Mike Isely1b9c18c2008-04-22 14:45:41 -03004897 (!analog_mode ||
Mike Isely62433e32008-04-22 14:45:40 -03004898 (hdw->state_encoder_run && hdw->state_decoder_run))) {
Mike Isely681c7392007-11-26 01:48:52 -03004899 st = PVR2_STATE_RUN;
4900 } else {
4901 st = PVR2_STATE_READY;
4902 }
4903 if (hdw->master_state != st) {
4904 pvr2_trace(PVR2_TRACE_STATE,
4905 "Device state change from %s to %s",
4906 pvr2_get_state_name(hdw->master_state),
4907 pvr2_get_state_name(st));
Mike Isely40381cb2008-04-22 14:45:42 -03004908 pvr2_led_ctrl(hdw,st == PVR2_STATE_RUN);
Mike Isely681c7392007-11-26 01:48:52 -03004909 hdw->master_state = st;
4910 state_updated = !0;
4911 callback_flag = !0;
4912 }
4913 if (state_updated) {
4914 /* Trigger anyone waiting on any state changes here. */
4915 wake_up(&hdw->state_wait_data);
4916 }
4917
4918 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4919 pvr2_hdw_state_log_state(hdw);
4920 }
4921 pvr2_trace(PVR2_TRACE_STBITS,
4922 "Drive state check DONE callback=%d",callback_flag);
4923
4924 return callback_flag;
4925}
4926
4927
4928/* Cause kernel thread to check / update driver state */
4929static void pvr2_hdw_state_sched(struct pvr2_hdw *hdw)
4930{
4931 if (hdw->state_stale) return;
4932 hdw->state_stale = !0;
4933 trace_stbit("state_stale",hdw->state_stale);
4934 queue_work(hdw->workqueue,&hdw->workpoll);
4935}
4936
4937
Mike Iselyd8554972006-06-26 20:58:46 -03004938int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *dp)
4939{
4940 return pvr2_read_register(hdw,PVR2_GPIO_DIR,dp);
4941}
4942
4943
4944int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *dp)
4945{
4946 return pvr2_read_register(hdw,PVR2_GPIO_OUT,dp);
4947}
4948
4949
4950int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *dp)
4951{
4952 return pvr2_read_register(hdw,PVR2_GPIO_IN,dp);
4953}
4954
4955
4956int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val)
4957{
4958 u32 cval,nval;
4959 int ret;
4960 if (~msk) {
4961 ret = pvr2_read_register(hdw,PVR2_GPIO_DIR,&cval);
4962 if (ret) return ret;
4963 nval = (cval & ~msk) | (val & msk);
4964 pvr2_trace(PVR2_TRACE_GPIO,
4965 "GPIO direction changing 0x%x:0x%x"
4966 " from 0x%x to 0x%x",
4967 msk,val,cval,nval);
4968 } else {
4969 nval = val;
4970 pvr2_trace(PVR2_TRACE_GPIO,
4971 "GPIO direction changing to 0x%x",nval);
4972 }
4973 return pvr2_write_register(hdw,PVR2_GPIO_DIR,nval);
4974}
4975
4976
4977int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val)
4978{
4979 u32 cval,nval;
4980 int ret;
4981 if (~msk) {
4982 ret = pvr2_read_register(hdw,PVR2_GPIO_OUT,&cval);
4983 if (ret) return ret;
4984 nval = (cval & ~msk) | (val & msk);
4985 pvr2_trace(PVR2_TRACE_GPIO,
4986 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
4987 msk,val,cval,nval);
4988 } else {
4989 nval = val;
4990 pvr2_trace(PVR2_TRACE_GPIO,
4991 "GPIO output changing to 0x%x",nval);
4992 }
4993 return pvr2_write_register(hdw,PVR2_GPIO_OUT,nval);
4994}
4995
4996
Mike Iselya51f5002009-03-06 23:30:37 -03004997void pvr2_hdw_status_poll(struct pvr2_hdw *hdw)
4998{
Mike Isely40f07112009-03-07 00:08:17 -03004999 struct v4l2_tuner *vtp = &hdw->tuner_signal_info;
5000 memset(vtp, 0, sizeof(*vtp));
Mike Isely2641df32009-03-07 00:13:25 -03005001 hdw->tuner_signal_stale = 0;
Mike Iselya51f5002009-03-06 23:30:37 -03005002 pvr2_i2c_core_status_poll(hdw);
Mike Isely40f07112009-03-07 00:08:17 -03005003 /* Note: There apparently is no replacement for VIDIOC_CROPCAP
5004 using v4l2-subdev - therefore we can't support that AT ALL right
5005 now. (Of course, no sub-drivers seem to implement it either.
5006 But now it's a a chicken and egg problem...) */
5007 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, g_tuner,
5008 &hdw->tuner_signal_info);
Mike Isely2641df32009-03-07 00:13:25 -03005009 pvr2_trace(PVR2_TRACE_CHIPS, "subdev status poll"
Mike Isely40f07112009-03-07 00:08:17 -03005010 " type=%u strength=%u audio=0x%x cap=0x%x"
5011 " low=%u hi=%u",
5012 vtp->type,
5013 vtp->signal, vtp->rxsubchans, vtp->capability,
5014 vtp->rangelow, vtp->rangehigh);
Mike Isely2641df32009-03-07 00:13:25 -03005015
5016 /* We have to do this to avoid getting into constant polling if
5017 there's nobody to answer a poll of cropcap info. */
5018 hdw->cropcap_stale = 0;
Mike Iselya51f5002009-03-06 23:30:37 -03005019}
5020
5021
Mike Isely7fb20fa2008-04-22 14:45:37 -03005022unsigned int pvr2_hdw_get_input_available(struct pvr2_hdw *hdw)
5023{
5024 return hdw->input_avail_mask;
5025}
5026
5027
Mike Isely1cb03b72008-04-21 03:47:43 -03005028unsigned int pvr2_hdw_get_input_allowed(struct pvr2_hdw *hdw)
5029{
5030 return hdw->input_allowed_mask;
5031}
5032
5033
5034static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v)
5035{
5036 if (hdw->input_val != v) {
5037 hdw->input_val = v;
5038 hdw->input_dirty = !0;
5039 }
5040
5041 /* Handle side effects - if we switch to a mode that needs the RF
5042 tuner, then select the right frequency choice as well and mark
5043 it dirty. */
5044 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
5045 hdw->freqSelector = 0;
5046 hdw->freqDirty = !0;
5047 } else if ((hdw->input_val == PVR2_CVAL_INPUT_TV) ||
5048 (hdw->input_val == PVR2_CVAL_INPUT_DTV)) {
5049 hdw->freqSelector = 1;
5050 hdw->freqDirty = !0;
5051 }
5052 return 0;
5053}
5054
5055
5056int pvr2_hdw_set_input_allowed(struct pvr2_hdw *hdw,
5057 unsigned int change_mask,
5058 unsigned int change_val)
5059{
5060 int ret = 0;
5061 unsigned int nv,m,idx;
5062 LOCK_TAKE(hdw->big_lock);
5063 do {
5064 nv = hdw->input_allowed_mask & ~change_mask;
5065 nv |= (change_val & change_mask);
5066 nv &= hdw->input_avail_mask;
5067 if (!nv) {
5068 /* No legal modes left; return error instead. */
5069 ret = -EPERM;
5070 break;
5071 }
5072 hdw->input_allowed_mask = nv;
5073 if ((1 << hdw->input_val) & hdw->input_allowed_mask) {
5074 /* Current mode is still in the allowed mask, so
5075 we're done. */
5076 break;
5077 }
5078 /* Select and switch to a mode that is still in the allowed
5079 mask */
5080 if (!hdw->input_allowed_mask) {
5081 /* Nothing legal; give up */
5082 break;
5083 }
5084 m = hdw->input_allowed_mask;
5085 for (idx = 0; idx < (sizeof(m) << 3); idx++) {
5086 if (!((1 << idx) & m)) continue;
5087 pvr2_hdw_set_input(hdw,idx);
5088 break;
5089 }
5090 } while (0);
5091 LOCK_GIVE(hdw->big_lock);
5092 return ret;
5093}
5094
5095
Mike Iselye61b6fc2006-07-18 22:42:18 -03005096/* Find I2C address of eeprom */
Adrian Bunk07e337e2006-06-30 11:30:20 -03005097static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03005098{
5099 int result;
5100 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03005101 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03005102 result = pvr2_send_request(hdw,
5103 hdw->cmd_buffer,1,
5104 hdw->cmd_buffer,1);
5105 if (result < 0) break;
5106 result = hdw->cmd_buffer[0];
5107 } while(0); LOCK_GIVE(hdw->ctl_lock);
5108 return result;
5109}
5110
5111
Mike Isely32ffa9a2006-09-23 22:26:52 -03005112int pvr2_hdw_register_access(struct pvr2_hdw *hdw,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005113 struct v4l2_dbg_match *match, u64 reg_id,
5114 int setFl, u64 *val_ptr)
Mike Isely32ffa9a2006-09-23 22:26:52 -03005115{
5116#ifdef CONFIG_VIDEO_ADV_DEBUG
Mike Isely32ffa9a2006-09-23 22:26:52 -03005117 struct pvr2_i2c_client *cp;
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005118 struct v4l2_dbg_register req;
Mike Isely6d988162006-09-28 17:53:49 -03005119 int stat = 0;
5120 int okFl = 0;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005121
Mike Isely201f5c92007-01-28 16:08:36 -03005122 if (!capable(CAP_SYS_ADMIN)) return -EPERM;
5123
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005124 req.match = *match;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005125 req.reg = reg_id;
5126 if (setFl) req.val = *val_ptr;
Mike Iselyd8f5b9b2009-03-07 00:05:00 -03005127 /* It would be nice to know if a sub-device answered the request */
5128 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, g_register, &req);
5129 if (!setFl) *val_ptr = req.val;
5130 if (!okFl) mutex_lock(&hdw->i2c_list_lock); do {
Trent Piephoe77e2c22007-10-10 05:37:42 -03005131 list_for_each_entry(cp, &hdw->i2c_clients, list) {
Mike Isely8481a752007-04-27 12:31:31 -03005132 if (!v4l2_chip_match_i2c_client(
5133 cp->client,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005134 &req.match)) {
Hans Verkuilf3d092b2007-02-23 20:55:14 -03005135 continue;
5136 }
Mike Isely32ffa9a2006-09-23 22:26:52 -03005137 stat = pvr2_i2c_client_cmd(
Trent Piepho52ebc762007-01-23 22:38:13 -03005138 cp,(setFl ? VIDIOC_DBG_S_REGISTER :
5139 VIDIOC_DBG_G_REGISTER),&req);
Mike Isely32ffa9a2006-09-23 22:26:52 -03005140 if (!setFl) *val_ptr = req.val;
Mike Isely6d988162006-09-28 17:53:49 -03005141 okFl = !0;
5142 break;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005143 }
5144 } while (0); mutex_unlock(&hdw->i2c_list_lock);
Mike Isely6d988162006-09-28 17:53:49 -03005145 if (okFl) {
5146 return stat;
5147 }
Mike Isely32ffa9a2006-09-23 22:26:52 -03005148 return -EINVAL;
5149#else
5150 return -ENOSYS;
5151#endif
5152}
5153
5154
Mike Iselyd8554972006-06-26 20:58:46 -03005155/*
5156 Stuff for Emacs to see, in order to encourage consistent editing style:
5157 *** Local Variables: ***
5158 *** mode: c ***
5159 *** fill-column: 75 ***
5160 *** tab-width: 8 ***
5161 *** c-basic-offset: 8 ***
5162 *** End: ***
5163 */