4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
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
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.
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
21 #include <linux/errno.h>
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
25 #include <linux/firmware.h>
26 #include <linux/videodev2.h>
27 #include <media/v4l2-common.h>
28 #include <media/tuner.h>
30 #include "pvrusb2-std.h"
31 #include "pvrusb2-util.h"
32 #include "pvrusb2-hdw.h"
33 #include "pvrusb2-i2c-core.h"
34 #include "pvrusb2-eeprom.h"
35 #include "pvrusb2-hdw-internal.h"
36 #include "pvrusb2-encoder.h"
37 #include "pvrusb2-debug.h"
38 #include "pvrusb2-fx2-cmd.h"
39 #include "pvrusb2-wm8775.h"
40 #include "pvrusb2-video-v4l.h"
41 #include "pvrusb2-cx2584x-v4l.h"
42 #include "pvrusb2-cs53l32a.h"
43 #include "pvrusb2-audio.h"
45 #define TV_MIN_FREQ 55250000L
46 #define TV_MAX_FREQ 850000000L
48 /* This defines a minimum interval that the decoder must remain quiet
49 before we are allowed to start it running. */
50 #define TIME_MSEC_DECODER_WAIT 50
52 /* This defines a minimum interval that the decoder must be allowed to run
53 before we can safely begin using its streaming output. */
54 #define TIME_MSEC_DECODER_STABILIZATION_WAIT 300
56 /* This defines a minimum interval that the encoder must remain quiet
57 before we are allowed to configure it. */
58 #define TIME_MSEC_ENCODER_WAIT 50
60 /* This defines the minimum interval that the encoder must successfully run
61 before we consider that the encoder has run at least once since its
62 firmware has been loaded. This measurement is in important for cases
63 where we can't do something until we know that the encoder has been run
65 #define TIME_MSEC_ENCODER_OK 250
67 static struct pvr2_hdw
*unit_pointers
[PVR_NUM
] = {[ 0 ... PVR_NUM
-1 ] = NULL
};
68 static DEFINE_MUTEX(pvr2_unit_mtx
);
71 static int procreload
;
72 static int tuner
[PVR_NUM
] = { [0 ... PVR_NUM
-1] = -1 };
73 static int tolerance
[PVR_NUM
] = { [0 ... PVR_NUM
-1] = 0 };
74 static int video_std
[PVR_NUM
] = { [0 ... PVR_NUM
-1] = 0 };
75 static int init_pause_msec
;
77 module_param(ctlchg
, int, S_IRUGO
|S_IWUSR
);
78 MODULE_PARM_DESC(ctlchg
, "0=optimize ctl change 1=always accept new ctl value");
79 module_param(init_pause_msec
, int, S_IRUGO
|S_IWUSR
);
80 MODULE_PARM_DESC(init_pause_msec
, "hardware initialization settling delay");
81 module_param(procreload
, int, S_IRUGO
|S_IWUSR
);
82 MODULE_PARM_DESC(procreload
,
83 "Attempt init failure recovery with firmware reload");
84 module_param_array(tuner
, int, NULL
, 0444);
85 MODULE_PARM_DESC(tuner
,"specify installed tuner type");
86 module_param_array(video_std
, int, NULL
, 0444);
87 MODULE_PARM_DESC(video_std
,"specify initial video standard");
88 module_param_array(tolerance
, int, NULL
, 0444);
89 MODULE_PARM_DESC(tolerance
,"specify stream error tolerance");
91 /* US Broadcast channel 3 (61.25 MHz), to help with testing */
92 static int default_tv_freq
= 61250000L;
93 /* 104.3 MHz, a usable FM station for my area */
94 static int default_radio_freq
= 104300000L;
96 module_param_named(tv_freq
, default_tv_freq
, int, 0444);
97 MODULE_PARM_DESC(tv_freq
, "specify initial television frequency");
98 module_param_named(radio_freq
, default_radio_freq
, int, 0444);
99 MODULE_PARM_DESC(radio_freq
, "specify initial radio frequency");
101 #define PVR2_CTL_WRITE_ENDPOINT 0x01
102 #define PVR2_CTL_READ_ENDPOINT 0x81
104 #define PVR2_GPIO_IN 0x9008
105 #define PVR2_GPIO_OUT 0x900c
106 #define PVR2_GPIO_DIR 0x9020
108 #define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
110 #define PVR2_FIRMWARE_ENDPOINT 0x02
112 /* size of a firmware chunk */
113 #define FIRMWARE_CHUNK_SIZE 0x2000
115 typedef void (*pvr2_subdev_update_func
)(struct pvr2_hdw
*,
116 struct v4l2_subdev
*);
118 static const pvr2_subdev_update_func pvr2_module_update_functions
[] = {
119 [PVR2_CLIENT_ID_WM8775
] = pvr2_wm8775_subdev_update
,
120 [PVR2_CLIENT_ID_SAA7115
] = pvr2_saa7115_subdev_update
,
121 [PVR2_CLIENT_ID_MSP3400
] = pvr2_msp3400_subdev_update
,
122 [PVR2_CLIENT_ID_CX25840
] = pvr2_cx25840_subdev_update
,
123 [PVR2_CLIENT_ID_CS53L32A
] = pvr2_cs53l32a_subdev_update
,
126 static const char *module_names
[] = {
127 [PVR2_CLIENT_ID_MSP3400
] = "msp3400",
128 [PVR2_CLIENT_ID_CX25840
] = "cx25840",
129 [PVR2_CLIENT_ID_SAA7115
] = "saa7115",
130 [PVR2_CLIENT_ID_TUNER
] = "tuner",
131 [PVR2_CLIENT_ID_DEMOD
] = "tuner",
132 [PVR2_CLIENT_ID_CS53L32A
] = "cs53l32a",
133 [PVR2_CLIENT_ID_WM8775
] = "wm8775",
137 static const unsigned char *module_i2c_addresses
[] = {
138 [PVR2_CLIENT_ID_TUNER
] = "\x60\x61\x62\x63",
139 [PVR2_CLIENT_ID_DEMOD
] = "\x43",
140 [PVR2_CLIENT_ID_MSP3400
] = "\x40",
141 [PVR2_CLIENT_ID_SAA7115
] = "\x21",
142 [PVR2_CLIENT_ID_WM8775
] = "\x1b",
143 [PVR2_CLIENT_ID_CX25840
] = "\x44",
144 [PVR2_CLIENT_ID_CS53L32A
] = "\x11",
148 static const char *ir_scheme_names
[] = {
149 [PVR2_IR_SCHEME_NONE
] = "none",
150 [PVR2_IR_SCHEME_29XXX
] = "29xxx",
151 [PVR2_IR_SCHEME_24XXX
] = "24xxx (29xxx emulation)",
152 [PVR2_IR_SCHEME_24XXX_MCE
] = "24xxx (MCE device)",
153 [PVR2_IR_SCHEME_ZILOG
] = "Zilog",
157 /* Define the list of additional controls we'll dynamically construct based
158 on query of the cx2341x module. */
159 struct pvr2_mpeg_ids
{
163 static const struct pvr2_mpeg_ids mpeg_ids
[] = {
165 .strid
= "audio_layer",
166 .id
= V4L2_CID_MPEG_AUDIO_ENCODING
,
168 .strid
= "audio_bitrate",
169 .id
= V4L2_CID_MPEG_AUDIO_L2_BITRATE
,
171 /* Already using audio_mode elsewhere :-( */
172 .strid
= "mpeg_audio_mode",
173 .id
= V4L2_CID_MPEG_AUDIO_MODE
,
175 .strid
= "mpeg_audio_mode_extension",
176 .id
= V4L2_CID_MPEG_AUDIO_MODE_EXTENSION
,
178 .strid
= "audio_emphasis",
179 .id
= V4L2_CID_MPEG_AUDIO_EMPHASIS
,
181 .strid
= "audio_crc",
182 .id
= V4L2_CID_MPEG_AUDIO_CRC
,
184 .strid
= "video_aspect",
185 .id
= V4L2_CID_MPEG_VIDEO_ASPECT
,
187 .strid
= "video_b_frames",
188 .id
= V4L2_CID_MPEG_VIDEO_B_FRAMES
,
190 .strid
= "video_gop_size",
191 .id
= V4L2_CID_MPEG_VIDEO_GOP_SIZE
,
193 .strid
= "video_gop_closure",
194 .id
= V4L2_CID_MPEG_VIDEO_GOP_CLOSURE
,
196 .strid
= "video_bitrate_mode",
197 .id
= V4L2_CID_MPEG_VIDEO_BITRATE_MODE
,
199 .strid
= "video_bitrate",
200 .id
= V4L2_CID_MPEG_VIDEO_BITRATE
,
202 .strid
= "video_bitrate_peak",
203 .id
= V4L2_CID_MPEG_VIDEO_BITRATE_PEAK
,
205 .strid
= "video_temporal_decimation",
206 .id
= V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION
,
208 .strid
= "stream_type",
209 .id
= V4L2_CID_MPEG_STREAM_TYPE
,
211 .strid
= "video_spatial_filter_mode",
212 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE
,
214 .strid
= "video_spatial_filter",
215 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER
,
217 .strid
= "video_luma_spatial_filter_type",
218 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE
,
220 .strid
= "video_chroma_spatial_filter_type",
221 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE
,
223 .strid
= "video_temporal_filter_mode",
224 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE
,
226 .strid
= "video_temporal_filter",
227 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER
,
229 .strid
= "video_median_filter_type",
230 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE
,
232 .strid
= "video_luma_median_filter_top",
233 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP
,
235 .strid
= "video_luma_median_filter_bottom",
236 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM
,
238 .strid
= "video_chroma_median_filter_top",
239 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP
,
241 .strid
= "video_chroma_median_filter_bottom",
242 .id
= V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM
,
245 #define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
248 static const char *control_values_srate
[] = {
249 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100
] = "44.1 kHz",
250 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000
] = "48 kHz",
251 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000
] = "32 kHz",
256 static const char *control_values_input
[] = {
257 [PVR2_CVAL_INPUT_TV
] = "television", /*xawtv needs this name*/
258 [PVR2_CVAL_INPUT_DTV
] = "dtv",
259 [PVR2_CVAL_INPUT_RADIO
] = "radio",
260 [PVR2_CVAL_INPUT_SVIDEO
] = "s-video",
261 [PVR2_CVAL_INPUT_COMPOSITE
] = "composite",
265 static const char *control_values_audiomode
[] = {
266 [V4L2_TUNER_MODE_MONO
] = "Mono",
267 [V4L2_TUNER_MODE_STEREO
] = "Stereo",
268 [V4L2_TUNER_MODE_LANG1
] = "Lang1",
269 [V4L2_TUNER_MODE_LANG2
] = "Lang2",
270 [V4L2_TUNER_MODE_LANG1_LANG2
] = "Lang1+Lang2",
274 static const char *control_values_hsm
[] = {
275 [PVR2_CVAL_HSM_FAIL
] = "Fail",
276 [PVR2_CVAL_HSM_HIGH
] = "High",
277 [PVR2_CVAL_HSM_FULL
] = "Full",
281 static const char *pvr2_state_names
[] = {
282 [PVR2_STATE_NONE
] = "none",
283 [PVR2_STATE_DEAD
] = "dead",
284 [PVR2_STATE_COLD
] = "cold",
285 [PVR2_STATE_WARM
] = "warm",
286 [PVR2_STATE_ERROR
] = "error",
287 [PVR2_STATE_READY
] = "ready",
288 [PVR2_STATE_RUN
] = "run",
292 struct pvr2_fx2cmd_descdef
{
297 static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc
[] = {
298 {FX2CMD_MEM_WRITE_DWORD
, "write encoder dword"},
299 {FX2CMD_MEM_READ_DWORD
, "read encoder dword"},
300 {FX2CMD_HCW_ZILOG_RESET
, "zilog IR reset control"},
301 {FX2CMD_MEM_READ_64BYTES
, "read encoder 64bytes"},
302 {FX2CMD_REG_WRITE
, "write encoder register"},
303 {FX2CMD_REG_READ
, "read encoder register"},
304 {FX2CMD_MEMSEL
, "encoder memsel"},
305 {FX2CMD_I2C_WRITE
, "i2c write"},
306 {FX2CMD_I2C_READ
, "i2c read"},
307 {FX2CMD_GET_USB_SPEED
, "get USB speed"},
308 {FX2CMD_STREAMING_ON
, "stream on"},
309 {FX2CMD_STREAMING_OFF
, "stream off"},
310 {FX2CMD_FWPOST1
, "fwpost1"},
311 {FX2CMD_POWER_OFF
, "power off"},
312 {FX2CMD_POWER_ON
, "power on"},
313 {FX2CMD_DEEP_RESET
, "deep reset"},
314 {FX2CMD_GET_EEPROM_ADDR
, "get rom addr"},
315 {FX2CMD_GET_IR_CODE
, "get IR code"},
316 {FX2CMD_HCW_DEMOD_RESETIN
, "hcw demod resetin"},
317 {FX2CMD_HCW_DTV_STREAMING_ON
, "hcw dtv stream on"},
318 {FX2CMD_HCW_DTV_STREAMING_OFF
, "hcw dtv stream off"},
319 {FX2CMD_ONAIR_DTV_STREAMING_ON
, "onair dtv stream on"},
320 {FX2CMD_ONAIR_DTV_STREAMING_OFF
, "onair dtv stream off"},
321 {FX2CMD_ONAIR_DTV_POWER_ON
, "onair dtv power on"},
322 {FX2CMD_ONAIR_DTV_POWER_OFF
, "onair dtv power off"},
326 static int pvr2_hdw_set_input(struct pvr2_hdw
*hdw
,int v
);
327 static void pvr2_hdw_state_sched(struct pvr2_hdw
*);
328 static int pvr2_hdw_state_eval(struct pvr2_hdw
*);
329 static void pvr2_hdw_set_cur_freq(struct pvr2_hdw
*,unsigned long);
330 static void pvr2_hdw_worker_poll(struct work_struct
*work
);
331 static int pvr2_hdw_wait(struct pvr2_hdw
*,int state
);
332 static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw
*);
333 static void pvr2_hdw_state_log_state(struct pvr2_hdw
*);
334 static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw
*hdw
,int runFl
);
335 static int pvr2_hdw_commit_setup(struct pvr2_hdw
*hdw
);
336 static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw
*hdw
);
337 static void pvr2_hdw_quiescent_timeout(unsigned long);
338 static void pvr2_hdw_decoder_stabilization_timeout(unsigned long);
339 static void pvr2_hdw_encoder_wait_timeout(unsigned long);
340 static void pvr2_hdw_encoder_run_timeout(unsigned long);
341 static int pvr2_issue_simple_cmd(struct pvr2_hdw
*,u32
);
342 static int pvr2_send_request_ex(struct pvr2_hdw
*hdw
,
343 unsigned int timeout
,int probe_fl
,
344 void *write_data
,unsigned int write_len
,
345 void *read_data
,unsigned int read_len
);
346 static int pvr2_hdw_check_cropcap(struct pvr2_hdw
*hdw
);
347 static v4l2_std_id
pvr2_hdw_get_detected_std(struct pvr2_hdw
*hdw
);
349 static void trace_stbit(const char *name
,int val
)
351 pvr2_trace(PVR2_TRACE_STBITS
,
352 "State bit %s <-- %s",
353 name
,(val
? "true" : "false"));
356 static int ctrl_channelfreq_get(struct pvr2_ctrl
*cptr
,int *vp
)
358 struct pvr2_hdw
*hdw
= cptr
->hdw
;
359 if ((hdw
->freqProgSlot
> 0) && (hdw
->freqProgSlot
<= FREQTABLE_SIZE
)) {
360 *vp
= hdw
->freqTable
[hdw
->freqProgSlot
-1];
367 static int ctrl_channelfreq_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
369 struct pvr2_hdw
*hdw
= cptr
->hdw
;
370 unsigned int slotId
= hdw
->freqProgSlot
;
371 if ((slotId
> 0) && (slotId
<= FREQTABLE_SIZE
)) {
372 hdw
->freqTable
[slotId
-1] = v
;
373 /* Handle side effects correctly - if we're tuned to this
374 slot, then forgot the slot id relation since the stored
375 frequency has been changed. */
376 if (hdw
->freqSelector
) {
377 if (hdw
->freqSlotRadio
== slotId
) {
378 hdw
->freqSlotRadio
= 0;
381 if (hdw
->freqSlotTelevision
== slotId
) {
382 hdw
->freqSlotTelevision
= 0;
389 static int ctrl_channelprog_get(struct pvr2_ctrl
*cptr
,int *vp
)
391 *vp
= cptr
->hdw
->freqProgSlot
;
395 static int ctrl_channelprog_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
397 struct pvr2_hdw
*hdw
= cptr
->hdw
;
398 if ((v
>= 0) && (v
<= FREQTABLE_SIZE
)) {
399 hdw
->freqProgSlot
= v
;
404 static int ctrl_channel_get(struct pvr2_ctrl
*cptr
,int *vp
)
406 struct pvr2_hdw
*hdw
= cptr
->hdw
;
407 *vp
= hdw
->freqSelector
? hdw
->freqSlotRadio
: hdw
->freqSlotTelevision
;
411 static int ctrl_channel_set(struct pvr2_ctrl
*cptr
,int m
,int slotId
)
414 struct pvr2_hdw
*hdw
= cptr
->hdw
;
415 if ((slotId
< 0) || (slotId
> FREQTABLE_SIZE
)) return 0;
417 freq
= hdw
->freqTable
[slotId
-1];
419 pvr2_hdw_set_cur_freq(hdw
,freq
);
421 if (hdw
->freqSelector
) {
422 hdw
->freqSlotRadio
= slotId
;
424 hdw
->freqSlotTelevision
= slotId
;
429 static int ctrl_freq_get(struct pvr2_ctrl
*cptr
,int *vp
)
431 *vp
= pvr2_hdw_get_cur_freq(cptr
->hdw
);
435 static int ctrl_freq_is_dirty(struct pvr2_ctrl
*cptr
)
437 return cptr
->hdw
->freqDirty
!= 0;
440 static void ctrl_freq_clear_dirty(struct pvr2_ctrl
*cptr
)
442 cptr
->hdw
->freqDirty
= 0;
445 static int ctrl_freq_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
447 pvr2_hdw_set_cur_freq(cptr
->hdw
,v
);
451 static int ctrl_cropl_min_get(struct pvr2_ctrl
*cptr
, int *left
)
453 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
454 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
458 *left
= cap
->bounds
.left
;
462 static int ctrl_cropl_max_get(struct pvr2_ctrl
*cptr
, int *left
)
464 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
465 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
469 *left
= cap
->bounds
.left
;
470 if (cap
->bounds
.width
> cptr
->hdw
->cropw_val
) {
471 *left
+= cap
->bounds
.width
- cptr
->hdw
->cropw_val
;
476 static int ctrl_cropt_min_get(struct pvr2_ctrl
*cptr
, int *top
)
478 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
479 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
483 *top
= cap
->bounds
.top
;
487 static int ctrl_cropt_max_get(struct pvr2_ctrl
*cptr
, int *top
)
489 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
490 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
494 *top
= cap
->bounds
.top
;
495 if (cap
->bounds
.height
> cptr
->hdw
->croph_val
) {
496 *top
+= cap
->bounds
.height
- cptr
->hdw
->croph_val
;
501 static int ctrl_cropw_max_get(struct pvr2_ctrl
*cptr
, int *width
)
503 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
504 int stat
, bleftend
, cleft
;
506 stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
510 bleftend
= cap
->bounds
.left
+cap
->bounds
.width
;
511 cleft
= cptr
->hdw
->cropl_val
;
513 *width
= cleft
< bleftend
? bleftend
-cleft
: 0;
517 static int ctrl_croph_max_get(struct pvr2_ctrl
*cptr
, int *height
)
519 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
520 int stat
, btopend
, ctop
;
522 stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
526 btopend
= cap
->bounds
.top
+cap
->bounds
.height
;
527 ctop
= cptr
->hdw
->cropt_val
;
529 *height
= ctop
< btopend
? btopend
-ctop
: 0;
533 static int ctrl_get_cropcapbl(struct pvr2_ctrl
*cptr
, int *val
)
535 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
536 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
540 *val
= cap
->bounds
.left
;
544 static int ctrl_get_cropcapbt(struct pvr2_ctrl
*cptr
, int *val
)
546 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
547 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
551 *val
= cap
->bounds
.top
;
555 static int ctrl_get_cropcapbw(struct pvr2_ctrl
*cptr
, int *val
)
557 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
558 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
562 *val
= cap
->bounds
.width
;
566 static int ctrl_get_cropcapbh(struct pvr2_ctrl
*cptr
, int *val
)
568 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
569 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
573 *val
= cap
->bounds
.height
;
577 static int ctrl_get_cropcapdl(struct pvr2_ctrl
*cptr
, int *val
)
579 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
580 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
584 *val
= cap
->defrect
.left
;
588 static int ctrl_get_cropcapdt(struct pvr2_ctrl
*cptr
, int *val
)
590 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
591 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
595 *val
= cap
->defrect
.top
;
599 static int ctrl_get_cropcapdw(struct pvr2_ctrl
*cptr
, int *val
)
601 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
602 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
606 *val
= cap
->defrect
.width
;
610 static int ctrl_get_cropcapdh(struct pvr2_ctrl
*cptr
, int *val
)
612 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
613 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
617 *val
= cap
->defrect
.height
;
621 static int ctrl_get_cropcappan(struct pvr2_ctrl
*cptr
, int *val
)
623 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
624 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
628 *val
= cap
->pixelaspect
.numerator
;
632 static int ctrl_get_cropcappad(struct pvr2_ctrl
*cptr
, int *val
)
634 struct v4l2_cropcap
*cap
= &cptr
->hdw
->cropcap_info
;
635 int stat
= pvr2_hdw_check_cropcap(cptr
->hdw
);
639 *val
= cap
->pixelaspect
.denominator
;
643 static int ctrl_vres_max_get(struct pvr2_ctrl
*cptr
,int *vp
)
645 /* Actual maximum depends on the video standard in effect. */
646 if (cptr
->hdw
->std_mask_cur
& V4L2_STD_525_60
) {
654 static int ctrl_vres_min_get(struct pvr2_ctrl
*cptr
,int *vp
)
656 /* Actual minimum depends on device digitizer type. */
657 if (cptr
->hdw
->hdw_desc
->flag_has_cx25840
) {
665 static int ctrl_get_input(struct pvr2_ctrl
*cptr
,int *vp
)
667 *vp
= cptr
->hdw
->input_val
;
671 static int ctrl_check_input(struct pvr2_ctrl
*cptr
,int v
)
673 return ((1 << v
) & cptr
->hdw
->input_allowed_mask
) != 0;
676 static int ctrl_set_input(struct pvr2_ctrl
*cptr
,int m
,int v
)
678 return pvr2_hdw_set_input(cptr
->hdw
,v
);
681 static int ctrl_isdirty_input(struct pvr2_ctrl
*cptr
)
683 return cptr
->hdw
->input_dirty
!= 0;
686 static void ctrl_cleardirty_input(struct pvr2_ctrl
*cptr
)
688 cptr
->hdw
->input_dirty
= 0;
692 static int ctrl_freq_max_get(struct pvr2_ctrl
*cptr
, int *vp
)
695 struct pvr2_hdw
*hdw
= cptr
->hdw
;
696 if (hdw
->tuner_signal_stale
) {
697 pvr2_hdw_status_poll(hdw
);
699 fv
= hdw
->tuner_signal_info
.rangehigh
;
701 /* Safety fallback */
705 if (hdw
->tuner_signal_info
.capability
& V4L2_TUNER_CAP_LOW
) {
714 static int ctrl_freq_min_get(struct pvr2_ctrl
*cptr
, int *vp
)
717 struct pvr2_hdw
*hdw
= cptr
->hdw
;
718 if (hdw
->tuner_signal_stale
) {
719 pvr2_hdw_status_poll(hdw
);
721 fv
= hdw
->tuner_signal_info
.rangelow
;
723 /* Safety fallback */
727 if (hdw
->tuner_signal_info
.capability
& V4L2_TUNER_CAP_LOW
) {
736 static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl
*cptr
)
738 return cptr
->hdw
->enc_stale
!= 0;
741 static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl
*cptr
)
743 cptr
->hdw
->enc_stale
= 0;
744 cptr
->hdw
->enc_unsafe_stale
= 0;
747 static int ctrl_cx2341x_get(struct pvr2_ctrl
*cptr
,int *vp
)
750 struct v4l2_ext_controls cs
;
751 struct v4l2_ext_control c1
;
752 memset(&cs
,0,sizeof(cs
));
753 memset(&c1
,0,sizeof(c1
));
756 c1
.id
= cptr
->info
->v4l_id
;
757 ret
= cx2341x_ext_ctrls(&cptr
->hdw
->enc_ctl_state
, 0, &cs
,
764 static int ctrl_cx2341x_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
767 struct pvr2_hdw
*hdw
= cptr
->hdw
;
768 struct v4l2_ext_controls cs
;
769 struct v4l2_ext_control c1
;
770 memset(&cs
,0,sizeof(cs
));
771 memset(&c1
,0,sizeof(c1
));
774 c1
.id
= cptr
->info
->v4l_id
;
776 ret
= cx2341x_ext_ctrls(&hdw
->enc_ctl_state
,
777 hdw
->state_encoder_run
, &cs
,
780 /* Oops. cx2341x is telling us it's not safe to change
781 this control while we're capturing. Make a note of this
782 fact so that the pipeline will be stopped the next time
783 controls are committed. Then go on ahead and store this
785 ret
= cx2341x_ext_ctrls(&hdw
->enc_ctl_state
,
788 if (!ret
) hdw
->enc_unsafe_stale
= !0;
795 static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl
*cptr
)
797 struct v4l2_queryctrl qctrl
;
798 struct pvr2_ctl_info
*info
;
799 qctrl
.id
= cptr
->info
->v4l_id
;
800 cx2341x_ctrl_query(&cptr
->hdw
->enc_ctl_state
,&qctrl
);
801 /* Strip out the const so we can adjust a function pointer. It's
802 OK to do this here because we know this is a dynamically created
803 control, so the underlying storage for the info pointer is (a)
804 private to us, and (b) not in read-only storage. Either we do
805 this or we significantly complicate the underlying control
807 info
= (struct pvr2_ctl_info
*)(cptr
->info
);
808 if (qctrl
.flags
& V4L2_CTRL_FLAG_READ_ONLY
) {
809 if (info
->set_value
) {
810 info
->set_value
= NULL
;
813 if (!(info
->set_value
)) {
814 info
->set_value
= ctrl_cx2341x_set
;
820 static int ctrl_streamingenabled_get(struct pvr2_ctrl
*cptr
,int *vp
)
822 *vp
= cptr
->hdw
->state_pipeline_req
;
826 static int ctrl_masterstate_get(struct pvr2_ctrl
*cptr
,int *vp
)
828 *vp
= cptr
->hdw
->master_state
;
832 static int ctrl_hsm_get(struct pvr2_ctrl
*cptr
,int *vp
)
834 int result
= pvr2_hdw_is_hsm(cptr
->hdw
);
835 *vp
= PVR2_CVAL_HSM_FULL
;
836 if (result
< 0) *vp
= PVR2_CVAL_HSM_FAIL
;
837 if (result
) *vp
= PVR2_CVAL_HSM_HIGH
;
841 static int ctrl_stddetect_get(struct pvr2_ctrl
*cptr
, int *vp
)
843 *vp
= pvr2_hdw_get_detected_std(cptr
->hdw
);
847 static int ctrl_stdavail_get(struct pvr2_ctrl
*cptr
,int *vp
)
849 *vp
= cptr
->hdw
->std_mask_avail
;
853 static int ctrl_stdavail_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
855 struct pvr2_hdw
*hdw
= cptr
->hdw
;
857 ns
= hdw
->std_mask_avail
;
858 ns
= (ns
& ~m
) | (v
& m
);
859 if (ns
== hdw
->std_mask_avail
) return 0;
860 hdw
->std_mask_avail
= ns
;
861 hdw
->std_info_cur
.def
.type_bitmask
.valid_bits
= hdw
->std_mask_avail
;
865 static int ctrl_std_val_to_sym(struct pvr2_ctrl
*cptr
,int msk
,int val
,
866 char *bufPtr
,unsigned int bufSize
,
869 *len
= pvr2_std_id_to_str(bufPtr
,bufSize
,msk
& val
);
873 static int ctrl_std_sym_to_val(struct pvr2_ctrl
*cptr
,
874 const char *bufPtr
,unsigned int bufSize
,
879 ret
= pvr2_std_str_to_id(&id
,bufPtr
,bufSize
);
880 if (ret
< 0) return ret
;
881 if (mskp
) *mskp
= id
;
882 if (valp
) *valp
= id
;
886 static int ctrl_stdcur_get(struct pvr2_ctrl
*cptr
,int *vp
)
888 *vp
= cptr
->hdw
->std_mask_cur
;
892 static int ctrl_stdcur_set(struct pvr2_ctrl
*cptr
,int m
,int v
)
894 struct pvr2_hdw
*hdw
= cptr
->hdw
;
896 ns
= hdw
->std_mask_cur
;
897 ns
= (ns
& ~m
) | (v
& m
);
898 if (ns
== hdw
->std_mask_cur
) return 0;
899 hdw
->std_mask_cur
= ns
;
904 static int ctrl_stdcur_is_dirty(struct pvr2_ctrl
*cptr
)
906 return cptr
->hdw
->std_dirty
!= 0;
909 static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl
*cptr
)
911 cptr
->hdw
->std_dirty
= 0;
914 static int ctrl_signal_get(struct pvr2_ctrl
*cptr
,int *vp
)
916 struct pvr2_hdw
*hdw
= cptr
->hdw
;
917 pvr2_hdw_status_poll(hdw
);
918 *vp
= hdw
->tuner_signal_info
.signal
;
922 static int ctrl_audio_modes_present_get(struct pvr2_ctrl
*cptr
,int *vp
)
925 unsigned int subchan
;
926 struct pvr2_hdw
*hdw
= cptr
->hdw
;
927 pvr2_hdw_status_poll(hdw
);
928 subchan
= hdw
->tuner_signal_info
.rxsubchans
;
929 if (subchan
& V4L2_TUNER_SUB_MONO
) {
930 val
|= (1 << V4L2_TUNER_MODE_MONO
);
932 if (subchan
& V4L2_TUNER_SUB_STEREO
) {
933 val
|= (1 << V4L2_TUNER_MODE_STEREO
);
935 if (subchan
& V4L2_TUNER_SUB_LANG1
) {
936 val
|= (1 << V4L2_TUNER_MODE_LANG1
);
938 if (subchan
& V4L2_TUNER_SUB_LANG2
) {
939 val
|= (1 << V4L2_TUNER_MODE_LANG2
);
946 #define DEFINT(vmin,vmax) \
947 .type = pvr2_ctl_int, \
948 .def.type_int.min_value = vmin, \
949 .def.type_int.max_value = vmax
951 #define DEFENUM(tab) \
952 .type = pvr2_ctl_enum, \
953 .def.type_enum.count = ARRAY_SIZE(tab), \
954 .def.type_enum.value_names = tab
957 .type = pvr2_ctl_bool
959 #define DEFMASK(msk,tab) \
960 .type = pvr2_ctl_bitmask, \
961 .def.type_bitmask.valid_bits = msk, \
962 .def.type_bitmask.bit_names = tab
964 #define DEFREF(vname) \
965 .set_value = ctrl_set_##vname, \
966 .get_value = ctrl_get_##vname, \
967 .is_dirty = ctrl_isdirty_##vname, \
968 .clear_dirty = ctrl_cleardirty_##vname
971 #define VCREATE_FUNCS(vname) \
972 static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
973 {*vp = cptr->hdw->vname##_val; return 0;} \
974 static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
975 {cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
976 static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
977 {return cptr->hdw->vname##_dirty != 0;} \
978 static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
979 {cptr->hdw->vname##_dirty = 0;}
981 VCREATE_FUNCS(brightness
)
982 VCREATE_FUNCS(contrast
)
983 VCREATE_FUNCS(saturation
)
985 VCREATE_FUNCS(volume
)
986 VCREATE_FUNCS(balance
)
988 VCREATE_FUNCS(treble
)
994 VCREATE_FUNCS(audiomode
)
995 VCREATE_FUNCS(res_hor
)
996 VCREATE_FUNCS(res_ver
)
999 /* Table definition of all controls which can be manipulated */
1000 static const struct pvr2_ctl_info control_defs
[] = {
1002 .v4l_id
= V4L2_CID_BRIGHTNESS
,
1003 .desc
= "Brightness",
1004 .name
= "brightness",
1005 .default_value
= 128,
1009 .v4l_id
= V4L2_CID_CONTRAST
,
1012 .default_value
= 68,
1016 .v4l_id
= V4L2_CID_SATURATION
,
1017 .desc
= "Saturation",
1018 .name
= "saturation",
1019 .default_value
= 64,
1023 .v4l_id
= V4L2_CID_HUE
,
1030 .v4l_id
= V4L2_CID_AUDIO_VOLUME
,
1033 .default_value
= 62000,
1037 .v4l_id
= V4L2_CID_AUDIO_BALANCE
,
1042 DEFINT(-32768,32767),
1044 .v4l_id
= V4L2_CID_AUDIO_BASS
,
1049 DEFINT(-32768,32767),
1051 .v4l_id
= V4L2_CID_AUDIO_TREBLE
,
1056 DEFINT(-32768,32767),
1058 .v4l_id
= V4L2_CID_AUDIO_MUTE
,
1065 .desc
= "Capture crop left margin",
1066 .name
= "crop_left",
1067 .internal_id
= PVR2_CID_CROPL
,
1071 .get_min_value
= ctrl_cropl_min_get
,
1072 .get_max_value
= ctrl_cropl_max_get
,
1073 .get_def_value
= ctrl_get_cropcapdl
,
1075 .desc
= "Capture crop top margin",
1077 .internal_id
= PVR2_CID_CROPT
,
1081 .get_min_value
= ctrl_cropt_min_get
,
1082 .get_max_value
= ctrl_cropt_max_get
,
1083 .get_def_value
= ctrl_get_cropcapdt
,
1085 .desc
= "Capture crop width",
1086 .name
= "crop_width",
1087 .internal_id
= PVR2_CID_CROPW
,
1088 .default_value
= 720,
1091 .get_max_value
= ctrl_cropw_max_get
,
1092 .get_def_value
= ctrl_get_cropcapdw
,
1094 .desc
= "Capture crop height",
1095 .name
= "crop_height",
1096 .internal_id
= PVR2_CID_CROPH
,
1097 .default_value
= 480,
1100 .get_max_value
= ctrl_croph_max_get
,
1101 .get_def_value
= ctrl_get_cropcapdh
,
1103 .desc
= "Capture capability pixel aspect numerator",
1104 .name
= "cropcap_pixel_numerator",
1105 .internal_id
= PVR2_CID_CROPCAPPAN
,
1106 .get_value
= ctrl_get_cropcappan
,
1108 .desc
= "Capture capability pixel aspect denominator",
1109 .name
= "cropcap_pixel_denominator",
1110 .internal_id
= PVR2_CID_CROPCAPPAD
,
1111 .get_value
= ctrl_get_cropcappad
,
1113 .desc
= "Capture capability bounds top",
1114 .name
= "cropcap_bounds_top",
1115 .internal_id
= PVR2_CID_CROPCAPBT
,
1116 .get_value
= ctrl_get_cropcapbt
,
1118 .desc
= "Capture capability bounds left",
1119 .name
= "cropcap_bounds_left",
1120 .internal_id
= PVR2_CID_CROPCAPBL
,
1121 .get_value
= ctrl_get_cropcapbl
,
1123 .desc
= "Capture capability bounds width",
1124 .name
= "cropcap_bounds_width",
1125 .internal_id
= PVR2_CID_CROPCAPBW
,
1126 .get_value
= ctrl_get_cropcapbw
,
1128 .desc
= "Capture capability bounds height",
1129 .name
= "cropcap_bounds_height",
1130 .internal_id
= PVR2_CID_CROPCAPBH
,
1131 .get_value
= ctrl_get_cropcapbh
,
1133 .desc
= "Video Source",
1135 .internal_id
= PVR2_CID_INPUT
,
1136 .default_value
= PVR2_CVAL_INPUT_TV
,
1137 .check_value
= ctrl_check_input
,
1139 DEFENUM(control_values_input
),
1141 .desc
= "Audio Mode",
1142 .name
= "audio_mode",
1143 .internal_id
= PVR2_CID_AUDIOMODE
,
1144 .default_value
= V4L2_TUNER_MODE_STEREO
,
1146 DEFENUM(control_values_audiomode
),
1148 .desc
= "Horizontal capture resolution",
1149 .name
= "resolution_hor",
1150 .internal_id
= PVR2_CID_HRES
,
1151 .default_value
= 720,
1155 .desc
= "Vertical capture resolution",
1156 .name
= "resolution_ver",
1157 .internal_id
= PVR2_CID_VRES
,
1158 .default_value
= 480,
1161 /* Hook in check for video standard and adjust maximum
1162 depending on the standard. */
1163 .get_max_value
= ctrl_vres_max_get
,
1164 .get_min_value
= ctrl_vres_min_get
,
1166 .v4l_id
= V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ
,
1167 .default_value
= V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000
,
1168 .desc
= "Audio Sampling Frequency",
1171 DEFENUM(control_values_srate
),
1173 .desc
= "Tuner Frequency (Hz)",
1174 .name
= "frequency",
1175 .internal_id
= PVR2_CID_FREQUENCY
,
1177 .set_value
= ctrl_freq_set
,
1178 .get_value
= ctrl_freq_get
,
1179 .is_dirty
= ctrl_freq_is_dirty
,
1180 .clear_dirty
= ctrl_freq_clear_dirty
,
1182 /* Hook in check for input value (tv/radio) and adjust
1183 max/min values accordingly */
1184 .get_max_value
= ctrl_freq_max_get
,
1185 .get_min_value
= ctrl_freq_min_get
,
1189 .set_value
= ctrl_channel_set
,
1190 .get_value
= ctrl_channel_get
,
1191 DEFINT(0,FREQTABLE_SIZE
),
1193 .desc
= "Channel Program Frequency",
1194 .name
= "freq_table_value",
1195 .set_value
= ctrl_channelfreq_set
,
1196 .get_value
= ctrl_channelfreq_get
,
1198 /* Hook in check for input value (tv/radio) and adjust
1199 max/min values accordingly */
1200 .get_max_value
= ctrl_freq_max_get
,
1201 .get_min_value
= ctrl_freq_min_get
,
1203 .desc
= "Channel Program ID",
1204 .name
= "freq_table_channel",
1205 .set_value
= ctrl_channelprog_set
,
1206 .get_value
= ctrl_channelprog_get
,
1207 DEFINT(0,FREQTABLE_SIZE
),
1209 .desc
= "Streaming Enabled",
1210 .name
= "streaming_enabled",
1211 .get_value
= ctrl_streamingenabled_get
,
1214 .desc
= "USB Speed",
1215 .name
= "usb_speed",
1216 .get_value
= ctrl_hsm_get
,
1217 DEFENUM(control_values_hsm
),
1219 .desc
= "Master State",
1220 .name
= "master_state",
1221 .get_value
= ctrl_masterstate_get
,
1222 DEFENUM(pvr2_state_names
),
1224 .desc
= "Signal Present",
1225 .name
= "signal_present",
1226 .get_value
= ctrl_signal_get
,
1229 .desc
= "Audio Modes Present",
1230 .name
= "audio_modes_present",
1231 .get_value
= ctrl_audio_modes_present_get
,
1232 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
1233 v4l. Nothing outside of this module cares about this,
1234 but I reuse it in order to also reuse the
1235 control_values_audiomode string table. */
1236 DEFMASK(((1 << V4L2_TUNER_MODE_MONO
)|
1237 (1 << V4L2_TUNER_MODE_STEREO
)|
1238 (1 << V4L2_TUNER_MODE_LANG1
)|
1239 (1 << V4L2_TUNER_MODE_LANG2
)),
1240 control_values_audiomode
),
1242 .desc
= "Video Standards Available Mask",
1243 .name
= "video_standard_mask_available",
1244 .internal_id
= PVR2_CID_STDAVAIL
,
1246 .get_value
= ctrl_stdavail_get
,
1247 .set_value
= ctrl_stdavail_set
,
1248 .val_to_sym
= ctrl_std_val_to_sym
,
1249 .sym_to_val
= ctrl_std_sym_to_val
,
1250 .type
= pvr2_ctl_bitmask
,
1252 .desc
= "Video Standards In Use Mask",
1253 .name
= "video_standard_mask_active",
1254 .internal_id
= PVR2_CID_STDCUR
,
1256 .get_value
= ctrl_stdcur_get
,
1257 .set_value
= ctrl_stdcur_set
,
1258 .is_dirty
= ctrl_stdcur_is_dirty
,
1259 .clear_dirty
= ctrl_stdcur_clear_dirty
,
1260 .val_to_sym
= ctrl_std_val_to_sym
,
1261 .sym_to_val
= ctrl_std_sym_to_val
,
1262 .type
= pvr2_ctl_bitmask
,
1264 .desc
= "Video Standards Detected Mask",
1265 .name
= "video_standard_mask_detected",
1266 .internal_id
= PVR2_CID_STDDETECT
,
1268 .get_value
= ctrl_stddetect_get
,
1269 .val_to_sym
= ctrl_std_val_to_sym
,
1270 .sym_to_val
= ctrl_std_sym_to_val
,
1271 .type
= pvr2_ctl_bitmask
,
1275 #define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
1278 const char *pvr2_config_get_name(enum pvr2_config cfg
)
1281 case pvr2_config_empty
: return "empty";
1282 case pvr2_config_mpeg
: return "mpeg";
1283 case pvr2_config_vbi
: return "vbi";
1284 case pvr2_config_pcm
: return "pcm";
1285 case pvr2_config_rawvideo
: return "raw video";
1291 struct usb_device
*pvr2_hdw_get_dev(struct pvr2_hdw
*hdw
)
1293 return hdw
->usb_dev
;
1297 unsigned long pvr2_hdw_get_sn(struct pvr2_hdw
*hdw
)
1299 return hdw
->serial_number
;
1303 const char *pvr2_hdw_get_bus_info(struct pvr2_hdw
*hdw
)
1305 return hdw
->bus_info
;
1309 const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw
*hdw
)
1311 return hdw
->identifier
;
1315 unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw
*hdw
)
1317 return hdw
->freqSelector
? hdw
->freqValTelevision
: hdw
->freqValRadio
;
1320 /* Set the currently tuned frequency and account for all possible
1321 driver-core side effects of this action. */
1322 static void pvr2_hdw_set_cur_freq(struct pvr2_hdw
*hdw
,unsigned long val
)
1324 if (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) {
1325 if (hdw
->freqSelector
) {
1326 /* Swing over to radio frequency selection */
1327 hdw
->freqSelector
= 0;
1328 hdw
->freqDirty
= !0;
1330 if (hdw
->freqValRadio
!= val
) {
1331 hdw
->freqValRadio
= val
;
1332 hdw
->freqSlotRadio
= 0;
1333 hdw
->freqDirty
= !0;
1336 if (!(hdw
->freqSelector
)) {
1337 /* Swing over to television frequency selection */
1338 hdw
->freqSelector
= 1;
1339 hdw
->freqDirty
= !0;
1341 if (hdw
->freqValTelevision
!= val
) {
1342 hdw
->freqValTelevision
= val
;
1343 hdw
->freqSlotTelevision
= 0;
1344 hdw
->freqDirty
= !0;
1349 int pvr2_hdw_get_unit_number(struct pvr2_hdw
*hdw
)
1351 return hdw
->unit_number
;
1355 /* Attempt to locate one of the given set of files. Messages are logged
1356 appropriate to what has been found. The return value will be 0 or
1357 greater on success (it will be the index of the file name found) and
1358 fw_entry will be filled in. Otherwise a negative error is returned on
1359 failure. If the return value is -ENOENT then no viable firmware file
1360 could be located. */
1361 static int pvr2_locate_firmware(struct pvr2_hdw
*hdw
,
1362 const struct firmware
**fw_entry
,
1363 const char *fwtypename
,
1364 unsigned int fwcount
,
1365 const char *fwnames
[])
1369 for (idx
= 0; idx
< fwcount
; idx
++) {
1370 ret
= request_firmware(fw_entry
,
1372 &hdw
->usb_dev
->dev
);
1374 trace_firmware("Located %s firmware: %s;"
1380 if (ret
== -ENOENT
) continue;
1381 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1382 "request_firmware fatal error with code=%d",ret
);
1385 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1387 " Device %s firmware"
1388 " seems to be missing.",
1390 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1391 "Did you install the pvrusb2 firmware files"
1392 " in their proper location?");
1394 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1395 "request_firmware unable to locate %s file %s",
1396 fwtypename
,fwnames
[0]);
1398 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1399 "request_firmware unable to locate"
1400 " one of the following %s files:",
1402 for (idx
= 0; idx
< fwcount
; idx
++) {
1403 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1404 "request_firmware: Failed to find %s",
1413 * pvr2_upload_firmware1().
1415 * Send the 8051 firmware to the device. After the upload, arrange for
1416 * device to re-enumerate.
1418 * NOTE : the pointer to the firmware data given by request_firmware()
1419 * is not suitable for an usb transaction.
1422 static int pvr2_upload_firmware1(struct pvr2_hdw
*hdw
)
1424 const struct firmware
*fw_entry
= NULL
;
1427 unsigned int fwsize
;
1431 if (!hdw
->hdw_desc
->fx2_firmware
.cnt
) {
1432 hdw
->fw1_state
= FW1_STATE_OK
;
1433 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1434 "Connected device type defines"
1435 " no firmware to upload; ignoring firmware");
1439 hdw
->fw1_state
= FW1_STATE_FAILED
; // default result
1441 trace_firmware("pvr2_upload_firmware1");
1443 ret
= pvr2_locate_firmware(hdw
,&fw_entry
,"fx2 controller",
1444 hdw
->hdw_desc
->fx2_firmware
.cnt
,
1445 hdw
->hdw_desc
->fx2_firmware
.lst
);
1447 if (ret
== -ENOENT
) hdw
->fw1_state
= FW1_STATE_MISSING
;
1451 usb_clear_halt(hdw
->usb_dev
, usb_sndbulkpipe(hdw
->usb_dev
, 0 & 0x7f));
1453 pipe
= usb_sndctrlpipe(hdw
->usb_dev
, 0);
1454 fwsize
= fw_entry
->size
;
1456 if ((fwsize
!= 0x2000) &&
1457 (!(hdw
->hdw_desc
->flag_fx2_16kb
&& (fwsize
== 0x4000)))) {
1458 if (hdw
->hdw_desc
->flag_fx2_16kb
) {
1459 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1460 "Wrong fx2 firmware size"
1461 " (expected 8192 or 16384, got %u)",
1464 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1465 "Wrong fx2 firmware size"
1466 " (expected 8192, got %u)",
1469 release_firmware(fw_entry
);
1473 fw_ptr
= kmalloc(0x800, GFP_KERNEL
);
1474 if (fw_ptr
== NULL
){
1475 release_firmware(fw_entry
);
1479 /* We have to hold the CPU during firmware upload. */
1480 pvr2_hdw_cpureset_assert(hdw
,1);
1482 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1486 for (address
= 0; address
< fwsize
; address
+= 0x800) {
1487 memcpy(fw_ptr
, fw_entry
->data
+ address
, 0x800);
1488 ret
+= usb_control_msg(hdw
->usb_dev
, pipe
, 0xa0, 0x40, address
,
1489 0, fw_ptr
, 0x800, HZ
);
1492 trace_firmware("Upload done, releasing device's CPU");
1494 /* Now release the CPU. It will disconnect and reconnect later. */
1495 pvr2_hdw_cpureset_assert(hdw
,0);
1498 release_firmware(fw_entry
);
1500 trace_firmware("Upload done (%d bytes sent)",ret
);
1502 /* We should have written fwsize bytes */
1503 if (ret
== fwsize
) {
1504 hdw
->fw1_state
= FW1_STATE_RELOAD
;
1513 * pvr2_upload_firmware2()
1515 * This uploads encoder firmware on endpoint 2.
1519 int pvr2_upload_firmware2(struct pvr2_hdw
*hdw
)
1521 const struct firmware
*fw_entry
= NULL
;
1523 unsigned int pipe
, fw_len
, fw_done
, bcnt
, icnt
;
1527 static const char *fw_files
[] = {
1528 CX2341X_FIRM_ENC_FILENAME
,
1531 if (hdw
->hdw_desc
->flag_skip_cx23416_firmware
) {
1535 trace_firmware("pvr2_upload_firmware2");
1537 ret
= pvr2_locate_firmware(hdw
,&fw_entry
,"encoder",
1538 ARRAY_SIZE(fw_files
), fw_files
);
1539 if (ret
< 0) return ret
;
1542 /* Since we're about to completely reinitialize the encoder,
1543 invalidate our cached copy of its configuration state. Next
1544 time we configure the encoder, then we'll fully configure it. */
1545 hdw
->enc_cur_valid
= 0;
1547 /* Encoder is about to be reset so note that as far as we're
1548 concerned now, the encoder has never been run. */
1549 del_timer_sync(&hdw
->encoder_run_timer
);
1550 if (hdw
->state_encoder_runok
) {
1551 hdw
->state_encoder_runok
= 0;
1552 trace_stbit("state_encoder_runok",hdw
->state_encoder_runok
);
1555 /* First prepare firmware loading */
1556 ret
|= pvr2_write_register(hdw
, 0x0048, 0xffffffff); /*interrupt mask*/
1557 ret
|= pvr2_hdw_gpio_chg_dir(hdw
,0xffffffff,0x00000088); /*gpio dir*/
1558 ret
|= pvr2_hdw_gpio_chg_out(hdw
,0xffffffff,0x00000008); /*gpio output state*/
1559 ret
|= pvr2_hdw_cmd_deep_reset(hdw
);
1560 ret
|= pvr2_write_register(hdw
, 0xa064, 0x00000000); /*APU command*/
1561 ret
|= pvr2_hdw_gpio_chg_dir(hdw
,0xffffffff,0x00000408); /*gpio dir*/
1562 ret
|= pvr2_hdw_gpio_chg_out(hdw
,0xffffffff,0x00000008); /*gpio output state*/
1563 ret
|= pvr2_write_register(hdw
, 0x9058, 0xffffffed); /*VPU ctrl*/
1564 ret
|= pvr2_write_register(hdw
, 0x9054, 0xfffffffd); /*reset hw blocks*/
1565 ret
|= pvr2_write_register(hdw
, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1566 ret
|= pvr2_write_register(hdw
, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1567 ret
|= pvr2_write_register(hdw
, 0x0700, 0x00000000); /*I2C clock*/
1568 ret
|= pvr2_write_register(hdw
, 0xaa00, 0x00000000); /*unknown*/
1569 ret
|= pvr2_write_register(hdw
, 0xaa04, 0x00057810); /*unknown*/
1570 ret
|= pvr2_write_register(hdw
, 0xaa10, 0x00148500); /*unknown*/
1571 ret
|= pvr2_write_register(hdw
, 0xaa18, 0x00840000); /*unknown*/
1572 ret
|= pvr2_issue_simple_cmd(hdw
,FX2CMD_FWPOST1
);
1573 ret
|= pvr2_issue_simple_cmd(hdw
,FX2CMD_MEMSEL
| (1 << 8) | (0 << 16));
1576 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1577 "firmware2 upload prep failed, ret=%d",ret
);
1578 release_firmware(fw_entry
);
1582 /* Now send firmware */
1584 fw_len
= fw_entry
->size
;
1586 if (fw_len
% sizeof(u32
)) {
1587 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1588 "size of %s firmware"
1589 " must be a multiple of %zu bytes",
1590 fw_files
[fwidx
],sizeof(u32
));
1591 release_firmware(fw_entry
);
1596 fw_ptr
= kmalloc(FIRMWARE_CHUNK_SIZE
, GFP_KERNEL
);
1597 if (fw_ptr
== NULL
){
1598 release_firmware(fw_entry
);
1599 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1600 "failed to allocate memory for firmware2 upload");
1605 pipe
= usb_sndbulkpipe(hdw
->usb_dev
, PVR2_FIRMWARE_ENDPOINT
);
1608 for (fw_done
= 0; fw_done
< fw_len
;) {
1609 bcnt
= fw_len
- fw_done
;
1610 if (bcnt
> FIRMWARE_CHUNK_SIZE
) bcnt
= FIRMWARE_CHUNK_SIZE
;
1611 memcpy(fw_ptr
, fw_entry
->data
+ fw_done
, bcnt
);
1612 /* Usbsnoop log shows that we must swap bytes... */
1613 /* Some background info: The data being swapped here is a
1614 firmware image destined for the mpeg encoder chip that
1615 lives at the other end of a USB endpoint. The encoder
1616 chip always talks in 32 bit chunks and its storage is
1617 organized into 32 bit words. However from the file
1618 system to the encoder chip everything is purely a byte
1619 stream. The firmware file's contents are always 32 bit
1620 swapped from what the encoder expects. Thus the need
1621 always exists to swap the bytes regardless of the endian
1622 type of the host processor and therefore swab32() makes
1624 for (icnt
= 0; icnt
< bcnt
/4 ; icnt
++)
1625 ((u32
*)fw_ptr
)[icnt
] = swab32(((u32
*)fw_ptr
)[icnt
]);
1627 ret
|= usb_bulk_msg(hdw
->usb_dev
, pipe
, fw_ptr
,bcnt
,
1628 &actual_length
, HZ
);
1629 ret
|= (actual_length
!= bcnt
);
1634 trace_firmware("upload of %s : %i / %i ",
1635 fw_files
[fwidx
],fw_done
,fw_len
);
1638 release_firmware(fw_entry
);
1641 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1642 "firmware2 upload transfer failure");
1648 ret
|= pvr2_write_register(hdw
, 0x9054, 0xffffffff); /*reset hw blocks*/
1649 ret
|= pvr2_write_register(hdw
, 0x9058, 0xffffffe8); /*VPU ctrl*/
1650 ret
|= pvr2_issue_simple_cmd(hdw
,FX2CMD_MEMSEL
| (1 << 8) | (0 << 16));
1653 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1654 "firmware2 upload post-proc failure");
1658 if (hdw
->hdw_desc
->signal_routing_scheme
==
1659 PVR2_ROUTING_SCHEME_GOTVIEW
) {
1660 /* Ensure that GPIO 11 is set to output for GOTVIEW
1662 pvr2_hdw_gpio_chg_dir(hdw
,(1 << 11),~0);
1668 static const char *pvr2_get_state_name(unsigned int st
)
1670 if (st
< ARRAY_SIZE(pvr2_state_names
)) {
1671 return pvr2_state_names
[st
];
1676 static int pvr2_decoder_enable(struct pvr2_hdw
*hdw
,int enablefl
)
1678 /* Even though we really only care about the video decoder chip at
1679 this point, we'll broadcast stream on/off to all sub-devices
1680 anyway, just in case somebody else wants to hear the
1682 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 stream=%s",
1683 (enablefl
? "on" : "off"));
1684 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, video
, s_stream
, enablefl
);
1685 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, audio
, s_stream
, enablefl
);
1686 if (hdw
->decoder_client_id
) {
1687 /* We get here if the encoder has been noticed. Otherwise
1688 we'll issue a warning to the user (which should
1689 normally never happen). */
1692 if (!hdw
->flag_decoder_missed
) {
1693 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1694 "WARNING: No decoder present");
1695 hdw
->flag_decoder_missed
= !0;
1696 trace_stbit("flag_decoder_missed",
1697 hdw
->flag_decoder_missed
);
1703 int pvr2_hdw_get_state(struct pvr2_hdw
*hdw
)
1705 return hdw
->master_state
;
1709 static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw
*hdw
)
1711 if (!hdw
->flag_tripped
) return 0;
1712 hdw
->flag_tripped
= 0;
1713 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
1714 "Clearing driver error statuss");
1719 int pvr2_hdw_untrip(struct pvr2_hdw
*hdw
)
1722 LOCK_TAKE(hdw
->big_lock
); do {
1723 fl
= pvr2_hdw_untrip_unlocked(hdw
);
1724 } while (0); LOCK_GIVE(hdw
->big_lock
);
1725 if (fl
) pvr2_hdw_state_sched(hdw
);
1732 int pvr2_hdw_get_streaming(struct pvr2_hdw
*hdw
)
1734 return hdw
->state_pipeline_req
!= 0;
1738 int pvr2_hdw_set_streaming(struct pvr2_hdw
*hdw
,int enable_flag
)
1741 LOCK_TAKE(hdw
->big_lock
); do {
1742 pvr2_hdw_untrip_unlocked(hdw
);
1743 if ((!enable_flag
) != !(hdw
->state_pipeline_req
)) {
1744 hdw
->state_pipeline_req
= enable_flag
!= 0;
1745 pvr2_trace(PVR2_TRACE_START_STOP
,
1746 "/*--TRACE_STREAM--*/ %s",
1747 enable_flag
? "enable" : "disable");
1749 pvr2_hdw_state_sched(hdw
);
1750 } while (0); LOCK_GIVE(hdw
->big_lock
);
1751 if ((ret
= pvr2_hdw_wait(hdw
,0)) < 0) return ret
;
1753 while ((st
= hdw
->master_state
) != PVR2_STATE_RUN
) {
1754 if (st
!= PVR2_STATE_READY
) return -EIO
;
1755 if ((ret
= pvr2_hdw_wait(hdw
,st
)) < 0) return ret
;
1762 int pvr2_hdw_set_stream_type(struct pvr2_hdw
*hdw
,enum pvr2_config config
)
1765 LOCK_TAKE(hdw
->big_lock
);
1766 if ((fl
= (hdw
->desired_stream_type
!= config
)) != 0) {
1767 hdw
->desired_stream_type
= config
;
1768 hdw
->state_pipeline_config
= 0;
1769 trace_stbit("state_pipeline_config",
1770 hdw
->state_pipeline_config
);
1771 pvr2_hdw_state_sched(hdw
);
1773 LOCK_GIVE(hdw
->big_lock
);
1775 return pvr2_hdw_wait(hdw
,0);
1779 static int get_default_tuner_type(struct pvr2_hdw
*hdw
)
1781 int unit_number
= hdw
->unit_number
;
1783 if ((unit_number
>= 0) && (unit_number
< PVR_NUM
)) {
1784 tp
= tuner
[unit_number
];
1786 if (tp
< 0) return -EINVAL
;
1787 hdw
->tuner_type
= tp
;
1788 hdw
->tuner_updated
= !0;
1793 static v4l2_std_id
get_default_standard(struct pvr2_hdw
*hdw
)
1795 int unit_number
= hdw
->unit_number
;
1797 if ((unit_number
>= 0) && (unit_number
< PVR_NUM
)) {
1798 tp
= video_std
[unit_number
];
1805 static unsigned int get_default_error_tolerance(struct pvr2_hdw
*hdw
)
1807 int unit_number
= hdw
->unit_number
;
1809 if ((unit_number
>= 0) && (unit_number
< PVR_NUM
)) {
1810 tp
= tolerance
[unit_number
];
1816 static int pvr2_hdw_check_firmware(struct pvr2_hdw
*hdw
)
1818 /* Try a harmless request to fetch the eeprom's address over
1819 endpoint 1. See what happens. Only the full FX2 image can
1820 respond to this. If this probe fails then likely the FX2
1821 firmware needs be loaded. */
1823 LOCK_TAKE(hdw
->ctl_lock
); do {
1824 hdw
->cmd_buffer
[0] = FX2CMD_GET_EEPROM_ADDR
;
1825 result
= pvr2_send_request_ex(hdw
,HZ
*1,!0,
1828 if (result
< 0) break;
1829 } while(0); LOCK_GIVE(hdw
->ctl_lock
);
1831 pvr2_trace(PVR2_TRACE_INIT
,
1832 "Probe of device endpoint 1 result status %d",
1835 pvr2_trace(PVR2_TRACE_INIT
,
1836 "Probe of device endpoint 1 succeeded");
1841 struct pvr2_std_hack
{
1842 v4l2_std_id pat
; /* Pattern to match */
1843 v4l2_std_id msk
; /* Which bits we care about */
1844 v4l2_std_id std
; /* What additional standards or default to set */
1847 /* This data structure labels specific combinations of standards from
1848 tveeprom that we'll try to recognize. If we recognize one, then assume
1849 a specified default standard to use. This is here because tveeprom only
1850 tells us about available standards not the intended default standard (if
1851 any) for the device in question. We guess the default based on what has
1852 been reported as available. Note that this is only for guessing a
1853 default - which can always be overridden explicitly - and if the user
1854 has otherwise named a default then that default will always be used in
1855 place of this table. */
1856 static const struct pvr2_std_hack std_eeprom_maps
[] = {
1858 .pat
= V4L2_STD_B
|V4L2_STD_GH
,
1859 .std
= V4L2_STD_PAL_B
|V4L2_STD_PAL_B1
|V4L2_STD_PAL_G
,
1863 .std
= V4L2_STD_NTSC_M
,
1866 .pat
= V4L2_STD_PAL_I
,
1867 .std
= V4L2_STD_PAL_I
,
1870 .pat
= V4L2_STD_SECAM_L
|V4L2_STD_SECAM_LC
,
1871 .std
= V4L2_STD_SECAM_L
|V4L2_STD_SECAM_LC
,
1875 .std
= V4L2_STD_PAL_D
|V4L2_STD_PAL_D1
|V4L2_STD_PAL_K
,
1879 static void pvr2_hdw_setup_std(struct pvr2_hdw
*hdw
)
1883 v4l2_std_id std1
,std2
,std3
;
1885 std1
= get_default_standard(hdw
);
1886 std3
= std1
? 0 : hdw
->hdw_desc
->default_std_mask
;
1888 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),hdw
->std_mask_eeprom
);
1889 pvr2_trace(PVR2_TRACE_STD
,
1890 "Supported video standard(s) reported available"
1891 " in hardware: %.*s",
1894 hdw
->std_mask_avail
= hdw
->std_mask_eeprom
;
1896 std2
= (std1
|std3
) & ~hdw
->std_mask_avail
;
1898 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),std2
);
1899 pvr2_trace(PVR2_TRACE_STD
,
1900 "Expanding supported video standards"
1901 " to include: %.*s",
1903 hdw
->std_mask_avail
|= std2
;
1906 hdw
->std_info_cur
.def
.type_bitmask
.valid_bits
= hdw
->std_mask_avail
;
1909 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),std1
);
1910 pvr2_trace(PVR2_TRACE_STD
,
1911 "Initial video standard forced to %.*s",
1913 hdw
->std_mask_cur
= std1
;
1914 hdw
->std_dirty
= !0;
1918 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),std3
);
1919 pvr2_trace(PVR2_TRACE_STD
,
1920 "Initial video standard"
1921 " (determined by device type): %.*s",bcnt
,buf
);
1922 hdw
->std_mask_cur
= std3
;
1923 hdw
->std_dirty
= !0;
1929 for (idx
= 0; idx
< ARRAY_SIZE(std_eeprom_maps
); idx
++) {
1930 if (std_eeprom_maps
[idx
].msk
?
1931 ((std_eeprom_maps
[idx
].pat
^
1932 hdw
->std_mask_eeprom
) &
1933 std_eeprom_maps
[idx
].msk
) :
1934 (std_eeprom_maps
[idx
].pat
!=
1935 hdw
->std_mask_eeprom
)) continue;
1936 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),
1937 std_eeprom_maps
[idx
].std
);
1938 pvr2_trace(PVR2_TRACE_STD
,
1939 "Initial video standard guessed as %.*s",
1941 hdw
->std_mask_cur
= std_eeprom_maps
[idx
].std
;
1942 hdw
->std_dirty
= !0;
1950 static unsigned int pvr2_copy_i2c_addr_list(
1951 unsigned short *dst
, const unsigned char *src
,
1952 unsigned int dst_max
)
1954 unsigned int cnt
= 0;
1956 while (src
[cnt
] && (cnt
+ 1) < dst_max
) {
1957 dst
[cnt
] = src
[cnt
];
1960 dst
[cnt
] = I2C_CLIENT_END
;
1965 static void pvr2_hdw_cx25840_vbi_hack(struct pvr2_hdw
*hdw
)
1968 Mike Isely <isely@pobox.com> 19-Nov-2006 - This bit of nuttiness
1969 for cx25840 causes that module to correctly set up its video
1970 scaling. This is really a problem in the cx25840 module itself,
1971 but we work around it here. The problem has not been seen in
1972 ivtv because there VBI is supported and set up. We don't do VBI
1973 here (at least not yet) and thus we never attempted to even set
1976 struct v4l2_format fmt
;
1977 if (hdw
->decoder_client_id
!= PVR2_CLIENT_ID_CX25840
) {
1978 /* We're not using a cx25840 so don't enable the hack */
1982 pvr2_trace(PVR2_TRACE_INIT
,
1984 " Executing cx25840 VBI hack",
1985 hdw
->decoder_client_id
);
1986 memset(&fmt
, 0, sizeof(fmt
));
1987 fmt
.type
= V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
;
1988 fmt
.fmt
.sliced
.service_lines
[0][21] = V4L2_SLICED_CAPTION_525
;
1989 fmt
.fmt
.sliced
.service_lines
[1][21] = V4L2_SLICED_CAPTION_525
;
1990 v4l2_device_call_all(&hdw
->v4l2_dev
, hdw
->decoder_client_id
,
1991 vbi
, s_sliced_fmt
, &fmt
.fmt
.sliced
);
1995 static int pvr2_hdw_load_subdev(struct pvr2_hdw
*hdw
,
1996 const struct pvr2_device_client_desc
*cd
)
2000 struct v4l2_subdev
*sd
;
2001 unsigned int i2ccnt
;
2002 const unsigned char *p
;
2003 /* Arbitrary count - max # i2c addresses we will probe */
2004 unsigned short i2caddr
[25];
2006 mid
= cd
->module_id
;
2007 fname
= (mid
< ARRAY_SIZE(module_names
)) ? module_names
[mid
] : NULL
;
2009 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2010 "Module ID %u for device %s has no name?"
2011 " The driver might have a configuration problem.",
2013 hdw
->hdw_desc
->description
);
2016 pvr2_trace(PVR2_TRACE_INIT
,
2017 "Module ID %u (%s) for device %s being loaded...",
2019 hdw
->hdw_desc
->description
);
2021 i2ccnt
= pvr2_copy_i2c_addr_list(i2caddr
, cd
->i2c_address_list
,
2022 ARRAY_SIZE(i2caddr
));
2023 if (!i2ccnt
&& ((p
= (mid
< ARRAY_SIZE(module_i2c_addresses
)) ?
2024 module_i2c_addresses
[mid
] : NULL
) != NULL
)) {
2025 /* Second chance: Try default i2c address list */
2026 i2ccnt
= pvr2_copy_i2c_addr_list(i2caddr
, p
,
2027 ARRAY_SIZE(i2caddr
));
2029 pvr2_trace(PVR2_TRACE_INIT
,
2031 " Using default i2c address list",
2037 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2038 "Module ID %u (%s) for device %s:"
2039 " No i2c addresses."
2040 " The driver might have a configuration problem.",
2041 mid
, fname
, hdw
->hdw_desc
->description
);
2046 pvr2_trace(PVR2_TRACE_INIT
,
2048 " Setting up with specified i2c address 0x%x",
2050 sd
= v4l2_i2c_new_subdev(&hdw
->v4l2_dev
, &hdw
->i2c_adap
,
2051 fname
, i2caddr
[0], NULL
);
2053 pvr2_trace(PVR2_TRACE_INIT
,
2055 " Setting up with address probe list",
2057 sd
= v4l2_i2c_new_subdev(&hdw
->v4l2_dev
, &hdw
->i2c_adap
,
2062 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2063 "Module ID %u (%s) for device %s failed to load."
2064 " Possible missing sub-device kernel module or"
2065 " initialization failure within module.",
2066 mid
, fname
, hdw
->hdw_desc
->description
);
2070 /* Tag this sub-device instance with the module ID we know about.
2071 In other places we'll use that tag to determine if the instance
2072 requires special handling. */
2075 pvr2_trace(PVR2_TRACE_INFO
, "Attached sub-driver %s", fname
);
2078 /* client-specific setup... */
2080 case PVR2_CLIENT_ID_CX25840
:
2081 case PVR2_CLIENT_ID_SAA7115
:
2082 hdw
->decoder_client_id
= mid
;
2091 static void pvr2_hdw_load_modules(struct pvr2_hdw
*hdw
)
2094 const struct pvr2_string_table
*cm
;
2095 const struct pvr2_device_client_table
*ct
;
2098 cm
= &hdw
->hdw_desc
->client_modules
;
2099 for (idx
= 0; idx
< cm
->cnt
; idx
++) {
2100 request_module(cm
->lst
[idx
]);
2103 ct
= &hdw
->hdw_desc
->client_table
;
2104 for (idx
= 0; idx
< ct
->cnt
; idx
++) {
2105 if (pvr2_hdw_load_subdev(hdw
, &ct
->lst
[idx
]) < 0) okFl
= 0;
2108 hdw
->flag_modulefail
= !0;
2109 pvr2_hdw_render_useless(hdw
);
2114 static void pvr2_hdw_setup_low(struct pvr2_hdw
*hdw
)
2118 struct pvr2_ctrl
*cptr
;
2120 if (hdw
->hdw_desc
->fx2_firmware
.cnt
) {
2123 (hdw
->usb_intf
->cur_altsetting
->desc
.bNumEndpoints
2126 pvr2_trace(PVR2_TRACE_INIT
,
2127 "USB endpoint config looks strange"
2128 "; possibly firmware needs to be"
2133 reloadFl
= !pvr2_hdw_check_firmware(hdw
);
2135 pvr2_trace(PVR2_TRACE_INIT
,
2136 "Check for FX2 firmware failed"
2137 "; possibly firmware needs to be"
2142 if (pvr2_upload_firmware1(hdw
) != 0) {
2143 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2144 "Failure uploading firmware1");
2149 hdw
->fw1_state
= FW1_STATE_OK
;
2151 if (!pvr2_hdw_dev_ok(hdw
)) return;
2153 hdw
->force_dirty
= !0;
2155 if (!hdw
->hdw_desc
->flag_no_powerup
) {
2156 pvr2_hdw_cmd_powerup(hdw
);
2157 if (!pvr2_hdw_dev_ok(hdw
)) return;
2160 /* Take the IR chip out of reset, if appropriate */
2161 if (hdw
->ir_scheme_active
== PVR2_IR_SCHEME_ZILOG
) {
2162 pvr2_issue_simple_cmd(hdw
,
2163 FX2CMD_HCW_ZILOG_RESET
|
2168 // This step MUST happen after the earlier powerup step.
2169 pvr2_i2c_core_init(hdw
);
2170 if (!pvr2_hdw_dev_ok(hdw
)) return;
2172 pvr2_hdw_load_modules(hdw
);
2173 if (!pvr2_hdw_dev_ok(hdw
)) return;
2175 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, core
, load_fw
);
2177 for (idx
= 0; idx
< CTRLDEF_COUNT
; idx
++) {
2178 cptr
= hdw
->controls
+ idx
;
2179 if (cptr
->info
->skip_init
) continue;
2180 if (!cptr
->info
->set_value
) continue;
2181 cptr
->info
->set_value(cptr
,~0,cptr
->info
->default_value
);
2184 pvr2_hdw_cx25840_vbi_hack(hdw
);
2186 /* Set up special default values for the television and radio
2187 frequencies here. It's not really important what these defaults
2188 are, but I set them to something usable in the Chicago area just
2189 to make driver testing a little easier. */
2191 hdw
->freqValTelevision
= default_tv_freq
;
2192 hdw
->freqValRadio
= default_radio_freq
;
2194 // Do not use pvr2_reset_ctl_endpoints() here. It is not
2195 // thread-safe against the normal pvr2_send_request() mechanism.
2196 // (We should make it thread safe).
2198 if (hdw
->hdw_desc
->flag_has_hauppauge_rom
) {
2199 ret
= pvr2_hdw_get_eeprom_addr(hdw
);
2200 if (!pvr2_hdw_dev_ok(hdw
)) return;
2202 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2203 "Unable to determine location of eeprom,"
2206 hdw
->eeprom_addr
= ret
;
2207 pvr2_eeprom_analyze(hdw
);
2208 if (!pvr2_hdw_dev_ok(hdw
)) return;
2211 hdw
->tuner_type
= hdw
->hdw_desc
->default_tuner_type
;
2212 hdw
->tuner_updated
= !0;
2213 hdw
->std_mask_eeprom
= V4L2_STD_ALL
;
2216 if (hdw
->serial_number
) {
2217 idx
= scnprintf(hdw
->identifier
, sizeof(hdw
->identifier
) - 1,
2218 "sn-%lu", hdw
->serial_number
);
2219 } else if (hdw
->unit_number
>= 0) {
2220 idx
= scnprintf(hdw
->identifier
, sizeof(hdw
->identifier
) - 1,
2222 hdw
->unit_number
+ 'a');
2224 idx
= scnprintf(hdw
->identifier
, sizeof(hdw
->identifier
) - 1,
2227 hdw
->identifier
[idx
] = 0;
2229 pvr2_hdw_setup_std(hdw
);
2231 if (!get_default_tuner_type(hdw
)) {
2232 pvr2_trace(PVR2_TRACE_INIT
,
2233 "pvr2_hdw_setup: Tuner type overridden to %d",
2238 if (!pvr2_hdw_dev_ok(hdw
)) return;
2240 if (hdw
->hdw_desc
->signal_routing_scheme
==
2241 PVR2_ROUTING_SCHEME_GOTVIEW
) {
2242 /* Ensure that GPIO 11 is set to output for GOTVIEW
2244 pvr2_hdw_gpio_chg_dir(hdw
,(1 << 11),~0);
2247 pvr2_hdw_commit_setup(hdw
);
2249 hdw
->vid_stream
= pvr2_stream_create();
2250 if (!pvr2_hdw_dev_ok(hdw
)) return;
2251 pvr2_trace(PVR2_TRACE_INIT
,
2252 "pvr2_hdw_setup: video stream is %p",hdw
->vid_stream
);
2253 if (hdw
->vid_stream
) {
2254 idx
= get_default_error_tolerance(hdw
);
2256 pvr2_trace(PVR2_TRACE_INIT
,
2257 "pvr2_hdw_setup: video stream %p"
2258 " setting tolerance %u",
2259 hdw
->vid_stream
,idx
);
2261 pvr2_stream_setup(hdw
->vid_stream
,hdw
->usb_dev
,
2262 PVR2_VID_ENDPOINT
,idx
);
2265 if (!pvr2_hdw_dev_ok(hdw
)) return;
2267 hdw
->flag_init_ok
= !0;
2269 pvr2_hdw_state_sched(hdw
);
2273 /* Set up the structure and attempt to put the device into a usable state.
2274 This can be a time-consuming operation, which is why it is not done
2275 internally as part of the create() step. */
2276 static void pvr2_hdw_setup(struct pvr2_hdw
*hdw
)
2278 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_setup(hdw=%p) begin",hdw
);
2280 pvr2_hdw_setup_low(hdw
);
2281 pvr2_trace(PVR2_TRACE_INIT
,
2282 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
2283 hdw
,pvr2_hdw_dev_ok(hdw
),hdw
->flag_init_ok
);
2284 if (pvr2_hdw_dev_ok(hdw
)) {
2285 if (hdw
->flag_init_ok
) {
2288 "Device initialization"
2289 " completed successfully.");
2292 if (hdw
->fw1_state
== FW1_STATE_RELOAD
) {
2295 "Device microcontroller firmware"
2296 " (re)loaded; it should now reset"
2301 PVR2_TRACE_ERROR_LEGS
,
2302 "Device initialization was not successful.");
2303 if (hdw
->fw1_state
== FW1_STATE_MISSING
) {
2305 PVR2_TRACE_ERROR_LEGS
,
2306 "Giving up since device"
2307 " microcontroller firmware"
2308 " appears to be missing.");
2312 if (hdw
->flag_modulefail
) {
2314 PVR2_TRACE_ERROR_LEGS
,
2315 "***WARNING*** pvrusb2 driver initialization"
2316 " failed due to the failure of one or more"
2317 " sub-device kernel modules.");
2319 PVR2_TRACE_ERROR_LEGS
,
2320 "You need to resolve the failing condition"
2321 " before this driver can function. There"
2322 " should be some earlier messages giving more"
2323 " information about the problem.");
2328 PVR2_TRACE_ERROR_LEGS
,
2329 "Attempting pvrusb2 recovery by reloading"
2330 " primary firmware.");
2332 PVR2_TRACE_ERROR_LEGS
,
2333 "If this works, device should disconnect"
2334 " and reconnect in a sane state.");
2335 hdw
->fw1_state
= FW1_STATE_UNKNOWN
;
2336 pvr2_upload_firmware1(hdw
);
2339 PVR2_TRACE_ERROR_LEGS
,
2340 "***WARNING*** pvrusb2 device hardware"
2341 " appears to be jammed"
2342 " and I can't clear it.");
2344 PVR2_TRACE_ERROR_LEGS
,
2345 "You might need to power cycle"
2346 " the pvrusb2 device"
2347 " in order to recover.");
2350 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_setup(hdw=%p) end",hdw
);
2354 /* Perform second stage initialization. Set callback pointer first so that
2355 we can avoid a possible initialization race (if the kernel thread runs
2356 before the callback has been set). */
2357 int pvr2_hdw_initialize(struct pvr2_hdw
*hdw
,
2358 void (*callback_func
)(void *),
2359 void *callback_data
)
2361 LOCK_TAKE(hdw
->big_lock
); do {
2362 if (hdw
->flag_disconnected
) {
2363 /* Handle a race here: If we're already
2364 disconnected by this point, then give up. If we
2365 get past this then we'll remain connected for
2366 the duration of initialization since the entire
2367 initialization sequence is now protected by the
2371 hdw
->state_data
= callback_data
;
2372 hdw
->state_func
= callback_func
;
2373 pvr2_hdw_setup(hdw
);
2374 } while (0); LOCK_GIVE(hdw
->big_lock
);
2375 return hdw
->flag_init_ok
;
2379 /* Create, set up, and return a structure for interacting with the
2380 underlying hardware. */
2381 struct pvr2_hdw
*pvr2_hdw_create(struct usb_interface
*intf
,
2382 const struct usb_device_id
*devid
)
2384 unsigned int idx
,cnt1
,cnt2
,m
;
2385 struct pvr2_hdw
*hdw
= NULL
;
2387 struct pvr2_ctrl
*cptr
;
2388 struct usb_device
*usb_dev
;
2389 const struct pvr2_device_desc
*hdw_desc
;
2391 struct v4l2_queryctrl qctrl
;
2392 struct pvr2_ctl_info
*ciptr
;
2394 usb_dev
= interface_to_usbdev(intf
);
2396 hdw_desc
= (const struct pvr2_device_desc
*)(devid
->driver_info
);
2398 if (hdw_desc
== NULL
) {
2399 pvr2_trace(PVR2_TRACE_INIT
, "pvr2_hdw_create:"
2400 " No device description pointer,"
2401 " unable to continue.");
2402 pvr2_trace(PVR2_TRACE_INIT
, "If you have a new device type,"
2403 " please contact Mike Isely <isely@pobox.com>"
2404 " to get it included in the driver\n");
2408 hdw
= kzalloc(sizeof(*hdw
),GFP_KERNEL
);
2409 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_create: hdw=%p, type \"%s\"",
2410 hdw
,hdw_desc
->description
);
2411 pvr2_trace(PVR2_TRACE_INFO
, "Hardware description: %s",
2412 hdw_desc
->description
);
2413 if (hdw_desc
->flag_is_experimental
) {
2414 pvr2_trace(PVR2_TRACE_INFO
, "**********");
2415 pvr2_trace(PVR2_TRACE_INFO
,
2416 "WARNING: Support for this device (%s) is"
2417 " experimental.", hdw_desc
->description
);
2418 pvr2_trace(PVR2_TRACE_INFO
,
2419 "Important functionality might not be"
2420 " entirely working.");
2421 pvr2_trace(PVR2_TRACE_INFO
,
2422 "Please consider contacting the driver author to"
2423 " help with further stabilization of the driver.");
2424 pvr2_trace(PVR2_TRACE_INFO
, "**********");
2426 if (!hdw
) goto fail
;
2428 init_timer(&hdw
->quiescent_timer
);
2429 hdw
->quiescent_timer
.data
= (unsigned long)hdw
;
2430 hdw
->quiescent_timer
.function
= pvr2_hdw_quiescent_timeout
;
2432 init_timer(&hdw
->decoder_stabilization_timer
);
2433 hdw
->decoder_stabilization_timer
.data
= (unsigned long)hdw
;
2434 hdw
->decoder_stabilization_timer
.function
=
2435 pvr2_hdw_decoder_stabilization_timeout
;
2437 init_timer(&hdw
->encoder_wait_timer
);
2438 hdw
->encoder_wait_timer
.data
= (unsigned long)hdw
;
2439 hdw
->encoder_wait_timer
.function
= pvr2_hdw_encoder_wait_timeout
;
2441 init_timer(&hdw
->encoder_run_timer
);
2442 hdw
->encoder_run_timer
.data
= (unsigned long)hdw
;
2443 hdw
->encoder_run_timer
.function
= pvr2_hdw_encoder_run_timeout
;
2445 hdw
->master_state
= PVR2_STATE_DEAD
;
2447 init_waitqueue_head(&hdw
->state_wait_data
);
2449 hdw
->tuner_signal_stale
= !0;
2450 cx2341x_fill_defaults(&hdw
->enc_ctl_state
);
2452 /* Calculate which inputs are OK */
2454 if (hdw_desc
->flag_has_analogtuner
) m
|= 1 << PVR2_CVAL_INPUT_TV
;
2455 if (hdw_desc
->digital_control_scheme
!= PVR2_DIGITAL_SCHEME_NONE
) {
2456 m
|= 1 << PVR2_CVAL_INPUT_DTV
;
2458 if (hdw_desc
->flag_has_svideo
) m
|= 1 << PVR2_CVAL_INPUT_SVIDEO
;
2459 if (hdw_desc
->flag_has_composite
) m
|= 1 << PVR2_CVAL_INPUT_COMPOSITE
;
2460 if (hdw_desc
->flag_has_fmradio
) m
|= 1 << PVR2_CVAL_INPUT_RADIO
;
2461 hdw
->input_avail_mask
= m
;
2462 hdw
->input_allowed_mask
= hdw
->input_avail_mask
;
2464 /* If not a hybrid device, pathway_state never changes. So
2465 initialize it here to what it should forever be. */
2466 if (!(hdw
->input_avail_mask
& (1 << PVR2_CVAL_INPUT_DTV
))) {
2467 hdw
->pathway_state
= PVR2_PATHWAY_ANALOG
;
2468 } else if (!(hdw
->input_avail_mask
& (1 << PVR2_CVAL_INPUT_TV
))) {
2469 hdw
->pathway_state
= PVR2_PATHWAY_DIGITAL
;
2472 hdw
->control_cnt
= CTRLDEF_COUNT
;
2473 hdw
->control_cnt
+= MPEGDEF_COUNT
;
2474 hdw
->controls
= kzalloc(sizeof(struct pvr2_ctrl
) * hdw
->control_cnt
,
2476 if (!hdw
->controls
) goto fail
;
2477 hdw
->hdw_desc
= hdw_desc
;
2478 hdw
->ir_scheme_active
= hdw
->hdw_desc
->ir_scheme
;
2479 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
2480 cptr
= hdw
->controls
+ idx
;
2483 for (idx
= 0; idx
< 32; idx
++) {
2484 hdw
->std_mask_ptrs
[idx
] = hdw
->std_mask_names
[idx
];
2486 for (idx
= 0; idx
< CTRLDEF_COUNT
; idx
++) {
2487 cptr
= hdw
->controls
+ idx
;
2488 cptr
->info
= control_defs
+idx
;
2491 /* Ensure that default input choice is a valid one. */
2492 m
= hdw
->input_avail_mask
;
2493 if (m
) for (idx
= 0; idx
< (sizeof(m
) << 3); idx
++) {
2494 if (!((1 << idx
) & m
)) continue;
2495 hdw
->input_val
= idx
;
2499 /* Define and configure additional controls from cx2341x module. */
2500 hdw
->mpeg_ctrl_info
= kcalloc(MPEGDEF_COUNT
,
2501 sizeof(*(hdw
->mpeg_ctrl_info
)),
2503 if (!hdw
->mpeg_ctrl_info
) goto fail
;
2504 for (idx
= 0; idx
< MPEGDEF_COUNT
; idx
++) {
2505 cptr
= hdw
->controls
+ idx
+ CTRLDEF_COUNT
;
2506 ciptr
= &(hdw
->mpeg_ctrl_info
[idx
].info
);
2507 ciptr
->desc
= hdw
->mpeg_ctrl_info
[idx
].desc
;
2508 ciptr
->name
= mpeg_ids
[idx
].strid
;
2509 ciptr
->v4l_id
= mpeg_ids
[idx
].id
;
2510 ciptr
->skip_init
= !0;
2511 ciptr
->get_value
= ctrl_cx2341x_get
;
2512 ciptr
->get_v4lflags
= ctrl_cx2341x_getv4lflags
;
2513 ciptr
->is_dirty
= ctrl_cx2341x_is_dirty
;
2514 if (!idx
) ciptr
->clear_dirty
= ctrl_cx2341x_clear_dirty
;
2515 qctrl
.id
= ciptr
->v4l_id
;
2516 cx2341x_ctrl_query(&hdw
->enc_ctl_state
,&qctrl
);
2517 if (!(qctrl
.flags
& V4L2_CTRL_FLAG_READ_ONLY
)) {
2518 ciptr
->set_value
= ctrl_cx2341x_set
;
2520 strncpy(hdw
->mpeg_ctrl_info
[idx
].desc
,qctrl
.name
,
2521 PVR2_CTLD_INFO_DESC_SIZE
);
2522 hdw
->mpeg_ctrl_info
[idx
].desc
[PVR2_CTLD_INFO_DESC_SIZE
-1] = 0;
2523 ciptr
->default_value
= qctrl
.default_value
;
2524 switch (qctrl
.type
) {
2526 case V4L2_CTRL_TYPE_INTEGER
:
2527 ciptr
->type
= pvr2_ctl_int
;
2528 ciptr
->def
.type_int
.min_value
= qctrl
.minimum
;
2529 ciptr
->def
.type_int
.max_value
= qctrl
.maximum
;
2531 case V4L2_CTRL_TYPE_BOOLEAN
:
2532 ciptr
->type
= pvr2_ctl_bool
;
2534 case V4L2_CTRL_TYPE_MENU
:
2535 ciptr
->type
= pvr2_ctl_enum
;
2536 ciptr
->def
.type_enum
.value_names
=
2537 cx2341x_ctrl_get_menu(&hdw
->enc_ctl_state
,
2540 ciptr
->def
.type_enum
.value_names
[cnt1
] != NULL
;
2542 ciptr
->def
.type_enum
.count
= cnt1
;
2548 // Initialize control data regarding video standard masks
2549 valid_std_mask
= pvr2_std_get_usable();
2550 for (idx
= 0; idx
< 32; idx
++) {
2551 if (!(valid_std_mask
& (1 << idx
))) continue;
2552 cnt1
= pvr2_std_id_to_str(
2553 hdw
->std_mask_names
[idx
],
2554 sizeof(hdw
->std_mask_names
[idx
])-1,
2556 hdw
->std_mask_names
[idx
][cnt1
] = 0;
2558 cptr
= pvr2_hdw_get_ctrl_by_id(hdw
,PVR2_CID_STDAVAIL
);
2560 memcpy(&hdw
->std_info_avail
,cptr
->info
,
2561 sizeof(hdw
->std_info_avail
));
2562 cptr
->info
= &hdw
->std_info_avail
;
2563 hdw
->std_info_avail
.def
.type_bitmask
.bit_names
=
2565 hdw
->std_info_avail
.def
.type_bitmask
.valid_bits
=
2568 cptr
= pvr2_hdw_get_ctrl_by_id(hdw
,PVR2_CID_STDCUR
);
2570 memcpy(&hdw
->std_info_cur
,cptr
->info
,
2571 sizeof(hdw
->std_info_cur
));
2572 cptr
->info
= &hdw
->std_info_cur
;
2573 hdw
->std_info_cur
.def
.type_bitmask
.bit_names
=
2575 hdw
->std_info_cur
.def
.type_bitmask
.valid_bits
=
2578 cptr
= pvr2_hdw_get_ctrl_by_id(hdw
,PVR2_CID_STDDETECT
);
2580 memcpy(&hdw
->std_info_detect
,cptr
->info
,
2581 sizeof(hdw
->std_info_detect
));
2582 cptr
->info
= &hdw
->std_info_detect
;
2583 hdw
->std_info_detect
.def
.type_bitmask
.bit_names
=
2585 hdw
->std_info_detect
.def
.type_bitmask
.valid_bits
=
2589 hdw
->cropcap_stale
= !0;
2590 hdw
->eeprom_addr
= -1;
2591 hdw
->unit_number
= -1;
2592 hdw
->v4l_minor_number_video
= -1;
2593 hdw
->v4l_minor_number_vbi
= -1;
2594 hdw
->v4l_minor_number_radio
= -1;
2595 hdw
->ctl_write_buffer
= kmalloc(PVR2_CTL_BUFFSIZE
,GFP_KERNEL
);
2596 if (!hdw
->ctl_write_buffer
) goto fail
;
2597 hdw
->ctl_read_buffer
= kmalloc(PVR2_CTL_BUFFSIZE
,GFP_KERNEL
);
2598 if (!hdw
->ctl_read_buffer
) goto fail
;
2599 hdw
->ctl_write_urb
= usb_alloc_urb(0,GFP_KERNEL
);
2600 if (!hdw
->ctl_write_urb
) goto fail
;
2601 hdw
->ctl_read_urb
= usb_alloc_urb(0,GFP_KERNEL
);
2602 if (!hdw
->ctl_read_urb
) goto fail
;
2604 if (v4l2_device_register(&intf
->dev
, &hdw
->v4l2_dev
) != 0) {
2605 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
2606 "Error registering with v4l core, giving up");
2609 mutex_lock(&pvr2_unit_mtx
); do {
2610 for (idx
= 0; idx
< PVR_NUM
; idx
++) {
2611 if (unit_pointers
[idx
]) continue;
2612 hdw
->unit_number
= idx
;
2613 unit_pointers
[idx
] = hdw
;
2616 } while (0); mutex_unlock(&pvr2_unit_mtx
);
2619 cnt2
= scnprintf(hdw
->name
+cnt1
,sizeof(hdw
->name
)-cnt1
,"pvrusb2");
2621 if (hdw
->unit_number
>= 0) {
2622 cnt2
= scnprintf(hdw
->name
+cnt1
,sizeof(hdw
->name
)-cnt1
,"_%c",
2623 ('a' + hdw
->unit_number
));
2626 if (cnt1
>= sizeof(hdw
->name
)) cnt1
= sizeof(hdw
->name
)-1;
2627 hdw
->name
[cnt1
] = 0;
2629 hdw
->workqueue
= create_singlethread_workqueue(hdw
->name
);
2630 INIT_WORK(&hdw
->workpoll
,pvr2_hdw_worker_poll
);
2632 pvr2_trace(PVR2_TRACE_INIT
,"Driver unit number is %d, name is %s",
2633 hdw
->unit_number
,hdw
->name
);
2635 hdw
->tuner_type
= -1;
2638 hdw
->usb_intf
= intf
;
2639 hdw
->usb_dev
= usb_dev
;
2641 usb_make_path(hdw
->usb_dev
, hdw
->bus_info
, sizeof(hdw
->bus_info
));
2643 ifnum
= hdw
->usb_intf
->cur_altsetting
->desc
.bInterfaceNumber
;
2644 usb_set_interface(hdw
->usb_dev
,ifnum
,0);
2646 mutex_init(&hdw
->ctl_lock_mutex
);
2647 mutex_init(&hdw
->big_lock_mutex
);
2652 del_timer_sync(&hdw
->quiescent_timer
);
2653 del_timer_sync(&hdw
->decoder_stabilization_timer
);
2654 del_timer_sync(&hdw
->encoder_run_timer
);
2655 del_timer_sync(&hdw
->encoder_wait_timer
);
2656 if (hdw
->workqueue
) {
2657 flush_workqueue(hdw
->workqueue
);
2658 destroy_workqueue(hdw
->workqueue
);
2659 hdw
->workqueue
= NULL
;
2661 usb_free_urb(hdw
->ctl_read_urb
);
2662 usb_free_urb(hdw
->ctl_write_urb
);
2663 kfree(hdw
->ctl_read_buffer
);
2664 kfree(hdw
->ctl_write_buffer
);
2665 kfree(hdw
->controls
);
2666 kfree(hdw
->mpeg_ctrl_info
);
2673 /* Remove _all_ associations between this driver and the underlying USB
2675 static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw
*hdw
)
2677 if (hdw
->flag_disconnected
) return;
2678 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw
);
2679 if (hdw
->ctl_read_urb
) {
2680 usb_kill_urb(hdw
->ctl_read_urb
);
2681 usb_free_urb(hdw
->ctl_read_urb
);
2682 hdw
->ctl_read_urb
= NULL
;
2684 if (hdw
->ctl_write_urb
) {
2685 usb_kill_urb(hdw
->ctl_write_urb
);
2686 usb_free_urb(hdw
->ctl_write_urb
);
2687 hdw
->ctl_write_urb
= NULL
;
2689 if (hdw
->ctl_read_buffer
) {
2690 kfree(hdw
->ctl_read_buffer
);
2691 hdw
->ctl_read_buffer
= NULL
;
2693 if (hdw
->ctl_write_buffer
) {
2694 kfree(hdw
->ctl_write_buffer
);
2695 hdw
->ctl_write_buffer
= NULL
;
2697 hdw
->flag_disconnected
= !0;
2698 /* If we don't do this, then there will be a dangling struct device
2699 reference to our disappearing device persisting inside the V4L
2701 v4l2_device_disconnect(&hdw
->v4l2_dev
);
2702 hdw
->usb_dev
= NULL
;
2703 hdw
->usb_intf
= NULL
;
2704 pvr2_hdw_render_useless(hdw
);
2707 void pvr2_hdw_set_v4l2_dev(struct pvr2_hdw
*hdw
, struct video_device
*vdev
)
2709 vdev
->v4l2_dev
= &hdw
->v4l2_dev
;
2712 /* Destroy hardware interaction structure */
2713 void pvr2_hdw_destroy(struct pvr2_hdw
*hdw
)
2716 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_destroy: hdw=%p",hdw
);
2717 if (hdw
->workqueue
) {
2718 flush_workqueue(hdw
->workqueue
);
2719 destroy_workqueue(hdw
->workqueue
);
2720 hdw
->workqueue
= NULL
;
2722 del_timer_sync(&hdw
->quiescent_timer
);
2723 del_timer_sync(&hdw
->decoder_stabilization_timer
);
2724 del_timer_sync(&hdw
->encoder_run_timer
);
2725 del_timer_sync(&hdw
->encoder_wait_timer
);
2726 if (hdw
->fw_buffer
) {
2727 kfree(hdw
->fw_buffer
);
2728 hdw
->fw_buffer
= NULL
;
2730 if (hdw
->vid_stream
) {
2731 pvr2_stream_destroy(hdw
->vid_stream
);
2732 hdw
->vid_stream
= NULL
;
2734 pvr2_i2c_core_done(hdw
);
2735 v4l2_device_unregister(&hdw
->v4l2_dev
);
2736 pvr2_hdw_remove_usb_stuff(hdw
);
2737 mutex_lock(&pvr2_unit_mtx
); do {
2738 if ((hdw
->unit_number
>= 0) &&
2739 (hdw
->unit_number
< PVR_NUM
) &&
2740 (unit_pointers
[hdw
->unit_number
] == hdw
)) {
2741 unit_pointers
[hdw
->unit_number
] = NULL
;
2743 } while (0); mutex_unlock(&pvr2_unit_mtx
);
2744 kfree(hdw
->controls
);
2745 kfree(hdw
->mpeg_ctrl_info
);
2750 int pvr2_hdw_dev_ok(struct pvr2_hdw
*hdw
)
2752 return (hdw
&& hdw
->flag_ok
);
2756 /* Called when hardware has been unplugged */
2757 void pvr2_hdw_disconnect(struct pvr2_hdw
*hdw
)
2759 pvr2_trace(PVR2_TRACE_INIT
,"pvr2_hdw_disconnect(hdw=%p)",hdw
);
2760 LOCK_TAKE(hdw
->big_lock
);
2761 LOCK_TAKE(hdw
->ctl_lock
);
2762 pvr2_hdw_remove_usb_stuff(hdw
);
2763 LOCK_GIVE(hdw
->ctl_lock
);
2764 LOCK_GIVE(hdw
->big_lock
);
2768 /* Get the number of defined controls */
2769 unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw
*hdw
)
2771 return hdw
->control_cnt
;
2775 /* Retrieve a control handle given its index (0..count-1) */
2776 struct pvr2_ctrl
*pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw
*hdw
,
2779 if (idx
>= hdw
->control_cnt
) return NULL
;
2780 return hdw
->controls
+ idx
;
2784 /* Retrieve a control handle given its index (0..count-1) */
2785 struct pvr2_ctrl
*pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw
*hdw
,
2786 unsigned int ctl_id
)
2788 struct pvr2_ctrl
*cptr
;
2792 /* This could be made a lot more efficient, but for now... */
2793 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
2794 cptr
= hdw
->controls
+ idx
;
2795 i
= cptr
->info
->internal_id
;
2796 if (i
&& (i
== ctl_id
)) return cptr
;
2802 /* Given a V4L ID, retrieve the control structure associated with it. */
2803 struct pvr2_ctrl
*pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw
*hdw
,unsigned int ctl_id
)
2805 struct pvr2_ctrl
*cptr
;
2809 /* This could be made a lot more efficient, but for now... */
2810 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
2811 cptr
= hdw
->controls
+ idx
;
2812 i
= cptr
->info
->v4l_id
;
2813 if (i
&& (i
== ctl_id
)) return cptr
;
2819 /* Given a V4L ID for its immediate predecessor, retrieve the control
2820 structure associated with it. */
2821 struct pvr2_ctrl
*pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw
*hdw
,
2822 unsigned int ctl_id
)
2824 struct pvr2_ctrl
*cptr
,*cp2
;
2828 /* This could be made a lot more efficient, but for now... */
2830 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
2831 cptr
= hdw
->controls
+ idx
;
2832 i
= cptr
->info
->v4l_id
;
2834 if (i
<= ctl_id
) continue;
2835 if (cp2
&& (cp2
->info
->v4l_id
< i
)) continue;
2843 static const char *get_ctrl_typename(enum pvr2_ctl_type tp
)
2846 case pvr2_ctl_int
: return "integer";
2847 case pvr2_ctl_enum
: return "enum";
2848 case pvr2_ctl_bool
: return "boolean";
2849 case pvr2_ctl_bitmask
: return "bitmask";
2855 static void pvr2_subdev_set_control(struct pvr2_hdw
*hdw
, int id
,
2856 const char *name
, int val
)
2858 struct v4l2_control ctrl
;
2859 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 %s=%d", name
, val
);
2860 memset(&ctrl
, 0, sizeof(ctrl
));
2863 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, core
, s_ctrl
, &ctrl
);
2866 #define PVR2_SUBDEV_SET_CONTROL(hdw, id, lab) \
2867 if ((hdw)->lab##_dirty || (hdw)->force_dirty) { \
2868 pvr2_subdev_set_control(hdw, id, #lab, (hdw)->lab##_val); \
2871 static v4l2_std_id
pvr2_hdw_get_detected_std(struct pvr2_hdw
*hdw
)
2874 std
= (v4l2_std_id
)hdw
->std_mask_avail
;
2875 v4l2_device_call_all(&hdw
->v4l2_dev
, 0,
2876 video
, querystd
, &std
);
2880 /* Execute whatever commands are required to update the state of all the
2881 sub-devices so that they match our current control values. */
2882 static void pvr2_subdev_update(struct pvr2_hdw
*hdw
)
2884 struct v4l2_subdev
*sd
;
2886 pvr2_subdev_update_func fp
;
2888 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev update...");
2890 if (hdw
->tuner_updated
|| hdw
->force_dirty
) {
2891 struct tuner_setup setup
;
2892 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev tuner set_type(%d)",
2894 if (((int)(hdw
->tuner_type
)) >= 0) {
2895 memset(&setup
, 0, sizeof(setup
));
2896 setup
.addr
= ADDR_UNSET
;
2897 setup
.type
= hdw
->tuner_type
;
2898 setup
.mode_mask
= T_RADIO
| T_ANALOG_TV
;
2899 v4l2_device_call_all(&hdw
->v4l2_dev
, 0,
2900 tuner
, s_type_addr
, &setup
);
2904 if (hdw
->input_dirty
|| hdw
->std_dirty
|| hdw
->force_dirty
) {
2905 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 set_standard");
2906 if (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) {
2907 v4l2_device_call_all(&hdw
->v4l2_dev
, 0,
2911 vs
= hdw
->std_mask_cur
;
2912 v4l2_device_call_all(&hdw
->v4l2_dev
, 0,
2914 pvr2_hdw_cx25840_vbi_hack(hdw
);
2916 hdw
->tuner_signal_stale
= !0;
2917 hdw
->cropcap_stale
= !0;
2920 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_BRIGHTNESS
, brightness
);
2921 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_CONTRAST
, contrast
);
2922 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_SATURATION
, saturation
);
2923 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_HUE
, hue
);
2924 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_AUDIO_MUTE
, mute
);
2925 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_AUDIO_VOLUME
, volume
);
2926 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_AUDIO_BALANCE
, balance
);
2927 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_AUDIO_BASS
, bass
);
2928 PVR2_SUBDEV_SET_CONTROL(hdw
, V4L2_CID_AUDIO_TREBLE
, treble
);
2930 if (hdw
->input_dirty
|| hdw
->audiomode_dirty
|| hdw
->force_dirty
) {
2931 struct v4l2_tuner vt
;
2932 memset(&vt
, 0, sizeof(vt
));
2933 vt
.type
= (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) ?
2934 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
2935 vt
.audmode
= hdw
->audiomode_val
;
2936 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, tuner
, s_tuner
, &vt
);
2939 if (hdw
->freqDirty
|| hdw
->force_dirty
) {
2941 struct v4l2_frequency freq
;
2942 fv
= pvr2_hdw_get_cur_freq(hdw
);
2943 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 set_freq(%lu)", fv
);
2944 if (hdw
->tuner_signal_stale
) pvr2_hdw_status_poll(hdw
);
2945 memset(&freq
, 0, sizeof(freq
));
2946 if (hdw
->tuner_signal_info
.capability
& V4L2_TUNER_CAP_LOW
) {
2947 /* ((fv * 1000) / 62500) */
2948 freq
.frequency
= (fv
* 2) / 125;
2950 freq
.frequency
= fv
/ 62500;
2952 /* tuner-core currently doesn't seem to care about this, but
2953 let's set it anyway for completeness. */
2954 if (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) {
2955 freq
.type
= V4L2_TUNER_RADIO
;
2957 freq
.type
= V4L2_TUNER_ANALOG_TV
;
2960 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, tuner
,
2961 s_frequency
, &freq
);
2964 if (hdw
->res_hor_dirty
|| hdw
->res_ver_dirty
|| hdw
->force_dirty
) {
2965 struct v4l2_mbus_framefmt fmt
;
2966 memset(&fmt
, 0, sizeof(fmt
));
2967 fmt
.width
= hdw
->res_hor_val
;
2968 fmt
.height
= hdw
->res_ver_val
;
2969 fmt
.code
= V4L2_MBUS_FMT_FIXED
;
2970 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 set_size(%dx%d)",
2971 fmt
.width
, fmt
.height
);
2972 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, video
, s_mbus_fmt
, &fmt
);
2975 if (hdw
->srate_dirty
|| hdw
->force_dirty
) {
2977 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev v4l2 set_audio %d",
2979 switch (hdw
->srate_val
) {
2981 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000
:
2984 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100
:
2987 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000
:
2991 v4l2_device_call_all(&hdw
->v4l2_dev
, 0,
2992 audio
, s_clock_freq
, val
);
2995 /* Unable to set crop parameters; there is apparently no equivalent
2996 for VIDIOC_S_CROP */
2998 v4l2_device_for_each_subdev(sd
, &hdw
->v4l2_dev
) {
3000 if (id
>= ARRAY_SIZE(pvr2_module_update_functions
)) continue;
3001 fp
= pvr2_module_update_functions
[id
];
3006 if (hdw
->tuner_signal_stale
|| hdw
->cropcap_stale
) {
3007 pvr2_hdw_status_poll(hdw
);
3012 /* Figure out if we need to commit control changes. If so, mark internal
3013 state flags to indicate this fact and return true. Otherwise do nothing
3014 else and return false. */
3015 static int pvr2_hdw_commit_setup(struct pvr2_hdw
*hdw
)
3018 struct pvr2_ctrl
*cptr
;
3020 int commit_flag
= hdw
->force_dirty
;
3022 unsigned int bcnt
,ccnt
;
3024 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
3025 cptr
= hdw
->controls
+ idx
;
3026 if (!cptr
->info
->is_dirty
) continue;
3027 if (!cptr
->info
->is_dirty(cptr
)) continue;
3030 if (!(pvrusb2_debug
& PVR2_TRACE_CTL
)) continue;
3031 bcnt
= scnprintf(buf
,sizeof(buf
),"\"%s\" <-- ",
3034 cptr
->info
->get_value(cptr
,&value
);
3035 pvr2_ctrl_value_to_sym_internal(cptr
,~0,value
,
3037 sizeof(buf
)-bcnt
,&ccnt
);
3039 bcnt
+= scnprintf(buf
+bcnt
,sizeof(buf
)-bcnt
," <%s>",
3040 get_ctrl_typename(cptr
->info
->type
));
3041 pvr2_trace(PVR2_TRACE_CTL
,
3042 "/*--TRACE_COMMIT--*/ %.*s",
3047 /* Nothing has changed */
3051 hdw
->state_pipeline_config
= 0;
3052 trace_stbit("state_pipeline_config",hdw
->state_pipeline_config
);
3053 pvr2_hdw_state_sched(hdw
);
3059 /* Perform all operations needed to commit all control changes. This must
3060 be performed in synchronization with the pipeline state and is thus
3061 expected to be called as part of the driver's worker thread. Return
3062 true if commit successful, otherwise return false to indicate that
3063 commit isn't possible at this time. */
3064 static int pvr2_hdw_commit_execute(struct pvr2_hdw
*hdw
)
3067 struct pvr2_ctrl
*cptr
;
3068 int disruptive_change
;
3070 if (hdw
->input_dirty
&& hdw
->state_pathway_ok
&&
3071 (((hdw
->input_val
== PVR2_CVAL_INPUT_DTV
) ?
3072 PVR2_PATHWAY_DIGITAL
: PVR2_PATHWAY_ANALOG
) !=
3073 hdw
->pathway_state
)) {
3074 /* Change of mode being asked for... */
3075 hdw
->state_pathway_ok
= 0;
3076 trace_stbit("state_pathway_ok", hdw
->state_pathway_ok
);
3078 if (!hdw
->state_pathway_ok
) {
3079 /* Can't commit anything until pathway is ok. */
3083 /* Handle some required side effects when the video standard is
3085 if (hdw
->std_dirty
) {
3088 if (hdw
->std_mask_cur
& V4L2_STD_525_60
) {
3095 /* Rewrite the vertical resolution to be appropriate to the
3096 video standard that has been selected. */
3097 if (nvres
!= hdw
->res_ver_val
) {
3098 hdw
->res_ver_val
= nvres
;
3099 hdw
->res_ver_dirty
= !0;
3101 /* Rewrite the GOP size to be appropriate to the video
3102 standard that has been selected. */
3103 if (gop_size
!= hdw
->enc_ctl_state
.video_gop_size
) {
3104 struct v4l2_ext_controls cs
;
3105 struct v4l2_ext_control c1
;
3106 memset(&cs
, 0, sizeof(cs
));
3107 memset(&c1
, 0, sizeof(c1
));
3110 c1
.id
= V4L2_CID_MPEG_VIDEO_GOP_SIZE
;
3111 c1
.value
= gop_size
;
3112 cx2341x_ext_ctrls(&hdw
->enc_ctl_state
, 0, &cs
,
3113 VIDIOC_S_EXT_CTRLS
);
3117 /* The broadcast decoder can only scale down, so if
3118 * res_*_dirty && crop window < output format ==> enlarge crop.
3120 * The mpeg encoder receives fields of res_hor_val dots and
3121 * res_ver_val halflines. Limits: hor<=720, ver<=576.
3123 if (hdw
->res_hor_dirty
&& hdw
->cropw_val
< hdw
->res_hor_val
) {
3124 hdw
->cropw_val
= hdw
->res_hor_val
;
3125 hdw
->cropw_dirty
= !0;
3126 } else if (hdw
->cropw_dirty
) {
3127 hdw
->res_hor_dirty
= !0; /* must rescale */
3128 hdw
->res_hor_val
= min(720, hdw
->cropw_val
);
3130 if (hdw
->res_ver_dirty
&& hdw
->croph_val
< hdw
->res_ver_val
) {
3131 hdw
->croph_val
= hdw
->res_ver_val
;
3132 hdw
->croph_dirty
= !0;
3133 } else if (hdw
->croph_dirty
) {
3134 int nvres
= hdw
->std_mask_cur
& V4L2_STD_525_60
? 480 : 576;
3135 hdw
->res_ver_dirty
= !0;
3136 hdw
->res_ver_val
= min(nvres
, hdw
->croph_val
);
3139 /* If any of the below has changed, then we can't do the update
3140 while the pipeline is running. Pipeline must be paused first
3141 and decoder -> encoder connection be made quiescent before we
3145 hdw
->enc_unsafe_stale
||
3147 hdw
->res_ver_dirty
||
3148 hdw
->res_hor_dirty
||
3152 (hdw
->active_stream_type
!= hdw
->desired_stream_type
));
3153 if (disruptive_change
&& !hdw
->state_pipeline_idle
) {
3154 /* Pipeline is not idle; we can't proceed. Arrange to
3155 cause pipeline to stop so that we can try this again
3157 hdw
->state_pipeline_pause
= !0;
3161 if (hdw
->srate_dirty
) {
3162 /* Write new sample rate into control structure since
3163 * the master copy is stale. We must track srate
3164 * separate from the mpeg control structure because
3165 * other logic also uses this value. */
3166 struct v4l2_ext_controls cs
;
3167 struct v4l2_ext_control c1
;
3168 memset(&cs
,0,sizeof(cs
));
3169 memset(&c1
,0,sizeof(c1
));
3172 c1
.id
= V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ
;
3173 c1
.value
= hdw
->srate_val
;
3174 cx2341x_ext_ctrls(&hdw
->enc_ctl_state
, 0, &cs
,VIDIOC_S_EXT_CTRLS
);
3177 if (hdw
->active_stream_type
!= hdw
->desired_stream_type
) {
3178 /* Handle any side effects of stream config here */
3179 hdw
->active_stream_type
= hdw
->desired_stream_type
;
3182 if (hdw
->hdw_desc
->signal_routing_scheme
==
3183 PVR2_ROUTING_SCHEME_GOTVIEW
) {
3185 /* Handle GOTVIEW audio switching */
3186 pvr2_hdw_gpio_get_out(hdw
,&b
);
3187 if (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) {
3189 pvr2_hdw_gpio_chg_out(hdw
,(1 << 11),~0);
3192 pvr2_hdw_gpio_chg_out(hdw
,(1 << 11),0);
3196 /* Check and update state for all sub-devices. */
3197 pvr2_subdev_update(hdw
);
3199 hdw
->tuner_updated
= 0;
3200 hdw
->force_dirty
= 0;
3201 for (idx
= 0; idx
< hdw
->control_cnt
; idx
++) {
3202 cptr
= hdw
->controls
+ idx
;
3203 if (!cptr
->info
->clear_dirty
) continue;
3204 cptr
->info
->clear_dirty(cptr
);
3207 if ((hdw
->pathway_state
== PVR2_PATHWAY_ANALOG
) &&
3208 hdw
->state_encoder_run
) {
3209 /* If encoder isn't running or it can't be touched, then
3210 this will get worked out later when we start the
3212 if (pvr2_encoder_adjust(hdw
) < 0) return !0;
3215 hdw
->state_pipeline_config
= !0;
3216 /* Hardware state may have changed in a way to cause the cropping
3217 capabilities to have changed. So mark it stale, which will
3218 cause a later re-fetch. */
3219 trace_stbit("state_pipeline_config",hdw
->state_pipeline_config
);
3224 int pvr2_hdw_commit_ctl(struct pvr2_hdw
*hdw
)
3227 LOCK_TAKE(hdw
->big_lock
);
3228 fl
= pvr2_hdw_commit_setup(hdw
);
3229 LOCK_GIVE(hdw
->big_lock
);
3231 return pvr2_hdw_wait(hdw
,0);
3235 static void pvr2_hdw_worker_poll(struct work_struct
*work
)
3238 struct pvr2_hdw
*hdw
= container_of(work
,struct pvr2_hdw
,workpoll
);
3239 LOCK_TAKE(hdw
->big_lock
); do {
3240 fl
= pvr2_hdw_state_eval(hdw
);
3241 } while (0); LOCK_GIVE(hdw
->big_lock
);
3242 if (fl
&& hdw
->state_func
) {
3243 hdw
->state_func(hdw
->state_data
);
3248 static int pvr2_hdw_wait(struct pvr2_hdw
*hdw
,int state
)
3250 return wait_event_interruptible(
3251 hdw
->state_wait_data
,
3252 (hdw
->state_stale
== 0) &&
3253 (!state
|| (hdw
->master_state
!= state
)));
3257 /* Return name for this driver instance */
3258 const char *pvr2_hdw_get_driver_name(struct pvr2_hdw
*hdw
)
3264 const char *pvr2_hdw_get_desc(struct pvr2_hdw
*hdw
)
3266 return hdw
->hdw_desc
->description
;
3270 const char *pvr2_hdw_get_type(struct pvr2_hdw
*hdw
)
3272 return hdw
->hdw_desc
->shortname
;
3276 int pvr2_hdw_is_hsm(struct pvr2_hdw
*hdw
)
3279 LOCK_TAKE(hdw
->ctl_lock
); do {
3280 hdw
->cmd_buffer
[0] = FX2CMD_GET_USB_SPEED
;
3281 result
= pvr2_send_request(hdw
,
3284 if (result
< 0) break;
3285 result
= (hdw
->cmd_buffer
[0] != 0);
3286 } while(0); LOCK_GIVE(hdw
->ctl_lock
);
3291 /* Execute poll of tuner status */
3292 void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw
*hdw
)
3294 LOCK_TAKE(hdw
->big_lock
); do {
3295 pvr2_hdw_status_poll(hdw
);
3296 } while (0); LOCK_GIVE(hdw
->big_lock
);
3300 static int pvr2_hdw_check_cropcap(struct pvr2_hdw
*hdw
)
3302 if (!hdw
->cropcap_stale
) {
3305 pvr2_hdw_status_poll(hdw
);
3306 if (hdw
->cropcap_stale
) {
3313 /* Return information about cropping capabilities */
3314 int pvr2_hdw_get_cropcap(struct pvr2_hdw
*hdw
, struct v4l2_cropcap
*pp
)
3317 LOCK_TAKE(hdw
->big_lock
);
3318 stat
= pvr2_hdw_check_cropcap(hdw
);
3320 memcpy(pp
, &hdw
->cropcap_info
, sizeof(hdw
->cropcap_info
));
3322 LOCK_GIVE(hdw
->big_lock
);
3327 /* Return information about the tuner */
3328 int pvr2_hdw_get_tuner_status(struct pvr2_hdw
*hdw
,struct v4l2_tuner
*vtp
)
3330 LOCK_TAKE(hdw
->big_lock
); do {
3331 if (hdw
->tuner_signal_stale
) {
3332 pvr2_hdw_status_poll(hdw
);
3334 memcpy(vtp
,&hdw
->tuner_signal_info
,sizeof(struct v4l2_tuner
));
3335 } while (0); LOCK_GIVE(hdw
->big_lock
);
3340 /* Get handle to video output stream */
3341 struct pvr2_stream
*pvr2_hdw_get_video_stream(struct pvr2_hdw
*hp
)
3343 return hp
->vid_stream
;
3347 void pvr2_hdw_trigger_module_log(struct pvr2_hdw
*hdw
)
3349 int nr
= pvr2_hdw_get_unit_number(hdw
);
3350 LOCK_TAKE(hdw
->big_lock
); do {
3351 printk(KERN_INFO
"pvrusb2: ================= START STATUS CARD #%d =================\n", nr
);
3352 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, core
, log_status
);
3353 pvr2_trace(PVR2_TRACE_INFO
,"cx2341x config:");
3354 cx2341x_log_status(&hdw
->enc_ctl_state
, "pvrusb2");
3355 pvr2_hdw_state_log_state(hdw
);
3356 printk(KERN_INFO
"pvrusb2: ================== END STATUS CARD #%d ==================\n", nr
);
3357 } while (0); LOCK_GIVE(hdw
->big_lock
);
3361 /* Grab EEPROM contents, needed for direct method. */
3362 #define EEPROM_SIZE 8192
3363 #define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
3364 static u8
*pvr2_full_eeprom_fetch(struct pvr2_hdw
*hdw
)
3366 struct i2c_msg msg
[2];
3375 eeprom
= kmalloc(EEPROM_SIZE
,GFP_KERNEL
);
3377 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3378 "Failed to allocate memory"
3379 " required to read eeprom");
3383 trace_eeprom("Value for eeprom addr from controller was 0x%x",
3385 addr
= hdw
->eeprom_addr
;
3386 /* Seems that if the high bit is set, then the *real* eeprom
3387 address is shifted right now bit position (noticed this in
3388 newer PVR USB2 hardware) */
3389 if (addr
& 0x80) addr
>>= 1;
3391 /* FX2 documentation states that a 16bit-addressed eeprom is
3392 expected if the I2C address is an odd number (yeah, this is
3393 strange but it's what they do) */
3394 mode16
= (addr
& 1);
3395 eepromSize
= (mode16
? EEPROM_SIZE
: 256);
3396 trace_eeprom("Examining %d byte eeprom at location 0x%x"
3397 " using %d bit addressing",eepromSize
,addr
,
3402 msg
[0].len
= mode16
? 2 : 1;
3405 msg
[1].flags
= I2C_M_RD
;
3407 /* We have to do the actual eeprom data fetch ourselves, because
3408 (1) we're only fetching part of the eeprom, and (2) if we were
3409 getting the whole thing our I2C driver can't grab it in one
3410 pass - which is what tveeprom is otherwise going to attempt */
3411 memset(eeprom
,0,EEPROM_SIZE
);
3412 for (tcnt
= 0; tcnt
< EEPROM_SIZE
; tcnt
+= pcnt
) {
3414 if (pcnt
+ tcnt
> EEPROM_SIZE
) pcnt
= EEPROM_SIZE
-tcnt
;
3415 offs
= tcnt
+ (eepromSize
- EEPROM_SIZE
);
3417 iadd
[0] = offs
>> 8;
3423 msg
[1].buf
= eeprom
+tcnt
;
3424 if ((ret
= i2c_transfer(&hdw
->i2c_adap
,
3425 msg
,ARRAY_SIZE(msg
))) != 2) {
3426 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3427 "eeprom fetch set offs err=%d",ret
);
3436 void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw
*hdw
,
3443 LOCK_TAKE(hdw
->big_lock
); do {
3444 if ((hdw
->fw_buffer
== NULL
) == !enable_flag
) break;
3447 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3448 "Cleaning up after CPU firmware fetch");
3449 kfree(hdw
->fw_buffer
);
3450 hdw
->fw_buffer
= NULL
;
3452 if (hdw
->fw_cpu_flag
) {
3453 /* Now release the CPU. It will disconnect
3454 and reconnect later. */
3455 pvr2_hdw_cpureset_assert(hdw
,0);
3460 hdw
->fw_cpu_flag
= (mode
!= 2);
3461 if (hdw
->fw_cpu_flag
) {
3462 hdw
->fw_size
= (mode
== 1) ? 0x4000 : 0x2000;
3463 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3464 "Preparing to suck out CPU firmware"
3465 " (size=%u)", hdw
->fw_size
);
3466 hdw
->fw_buffer
= kzalloc(hdw
->fw_size
,GFP_KERNEL
);
3467 if (!hdw
->fw_buffer
) {
3472 /* We have to hold the CPU during firmware upload. */
3473 pvr2_hdw_cpureset_assert(hdw
,1);
3475 /* download the firmware from address 0000-1fff in 2048
3476 (=0x800) bytes chunk. */
3478 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3479 "Grabbing CPU firmware");
3480 pipe
= usb_rcvctrlpipe(hdw
->usb_dev
, 0);
3481 for(address
= 0; address
< hdw
->fw_size
;
3483 ret
= usb_control_msg(hdw
->usb_dev
,pipe
,
3486 hdw
->fw_buffer
+address
,
3491 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3492 "Done grabbing CPU firmware");
3494 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3495 "Sucking down EEPROM contents");
3496 hdw
->fw_buffer
= pvr2_full_eeprom_fetch(hdw
);
3497 if (!hdw
->fw_buffer
) {
3498 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3499 "EEPROM content suck failed.");
3502 hdw
->fw_size
= EEPROM_SIZE
;
3503 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3504 "Done sucking down EEPROM contents");
3507 } while (0); LOCK_GIVE(hdw
->big_lock
);
3511 /* Return true if we're in a mode for retrieval CPU firmware */
3512 int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw
*hdw
)
3514 return hdw
->fw_buffer
!= NULL
;
3518 int pvr2_hdw_cpufw_get(struct pvr2_hdw
*hdw
,unsigned int offs
,
3519 char *buf
,unsigned int cnt
)
3522 LOCK_TAKE(hdw
->big_lock
); do {
3526 if (!hdw
->fw_buffer
) {
3531 if (offs
>= hdw
->fw_size
) {
3532 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3533 "Read firmware data offs=%d EOF",
3539 if (offs
+ cnt
> hdw
->fw_size
) cnt
= hdw
->fw_size
- offs
;
3541 memcpy(buf
,hdw
->fw_buffer
+offs
,cnt
);
3543 pvr2_trace(PVR2_TRACE_FIRMWARE
,
3544 "Read firmware data offs=%d cnt=%d",
3547 } while (0); LOCK_GIVE(hdw
->big_lock
);
3553 int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw
*hdw
,
3554 enum pvr2_v4l_type index
)
3557 case pvr2_v4l_type_video
: return hdw
->v4l_minor_number_video
;
3558 case pvr2_v4l_type_vbi
: return hdw
->v4l_minor_number_vbi
;
3559 case pvr2_v4l_type_radio
: return hdw
->v4l_minor_number_radio
;
3565 /* Store a v4l minor device number */
3566 void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw
*hdw
,
3567 enum pvr2_v4l_type index
,int v
)
3570 case pvr2_v4l_type_video
: hdw
->v4l_minor_number_video
= v
;break;
3571 case pvr2_v4l_type_vbi
: hdw
->v4l_minor_number_vbi
= v
;break;
3572 case pvr2_v4l_type_radio
: hdw
->v4l_minor_number_radio
= v
;break;
3578 static void pvr2_ctl_write_complete(struct urb
*urb
)
3580 struct pvr2_hdw
*hdw
= urb
->context
;
3581 hdw
->ctl_write_pend_flag
= 0;
3582 if (hdw
->ctl_read_pend_flag
) return;
3583 complete(&hdw
->ctl_done
);
3587 static void pvr2_ctl_read_complete(struct urb
*urb
)
3589 struct pvr2_hdw
*hdw
= urb
->context
;
3590 hdw
->ctl_read_pend_flag
= 0;
3591 if (hdw
->ctl_write_pend_flag
) return;
3592 complete(&hdw
->ctl_done
);
3596 static void pvr2_ctl_timeout(unsigned long data
)
3598 struct pvr2_hdw
*hdw
= (struct pvr2_hdw
*)data
;
3599 if (hdw
->ctl_write_pend_flag
|| hdw
->ctl_read_pend_flag
) {
3600 hdw
->ctl_timeout_flag
= !0;
3601 if (hdw
->ctl_write_pend_flag
)
3602 usb_unlink_urb(hdw
->ctl_write_urb
);
3603 if (hdw
->ctl_read_pend_flag
)
3604 usb_unlink_urb(hdw
->ctl_read_urb
);
3609 /* Issue a command and get a response from the device. This extended
3610 version includes a probe flag (which if set means that device errors
3611 should not be logged or treated as fatal) and a timeout in jiffies.
3612 This can be used to non-lethally probe the health of endpoint 1. */
3613 static int pvr2_send_request_ex(struct pvr2_hdw
*hdw
,
3614 unsigned int timeout
,int probe_fl
,
3615 void *write_data
,unsigned int write_len
,
3616 void *read_data
,unsigned int read_len
)
3620 struct timer_list timer
;
3621 if (!hdw
->ctl_lock_held
) {
3622 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3623 "Attempted to execute control transfer"
3627 if (!hdw
->flag_ok
&& !probe_fl
) {
3628 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3629 "Attempted to execute control transfer"
3630 " when device not ok");
3633 if (!(hdw
->ctl_read_urb
&& hdw
->ctl_write_urb
)) {
3635 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3636 "Attempted to execute control transfer"
3637 " when USB is disconnected");
3642 /* Ensure that we have sane parameters */
3643 if (!write_data
) write_len
= 0;
3644 if (!read_data
) read_len
= 0;
3645 if (write_len
> PVR2_CTL_BUFFSIZE
) {
3647 PVR2_TRACE_ERROR_LEGS
,
3648 "Attempted to execute %d byte"
3649 " control-write transfer (limit=%d)",
3650 write_len
,PVR2_CTL_BUFFSIZE
);
3653 if (read_len
> PVR2_CTL_BUFFSIZE
) {
3655 PVR2_TRACE_ERROR_LEGS
,
3656 "Attempted to execute %d byte"
3657 " control-read transfer (limit=%d)",
3658 write_len
,PVR2_CTL_BUFFSIZE
);
3661 if ((!write_len
) && (!read_len
)) {
3663 PVR2_TRACE_ERROR_LEGS
,
3664 "Attempted to execute null control transfer?");
3669 hdw
->cmd_debug_state
= 1;
3671 hdw
->cmd_debug_code
= ((unsigned char *)write_data
)[0];
3673 hdw
->cmd_debug_code
= 0;
3675 hdw
->cmd_debug_write_len
= write_len
;
3676 hdw
->cmd_debug_read_len
= read_len
;
3678 /* Initialize common stuff */
3679 init_completion(&hdw
->ctl_done
);
3680 hdw
->ctl_timeout_flag
= 0;
3681 hdw
->ctl_write_pend_flag
= 0;
3682 hdw
->ctl_read_pend_flag
= 0;
3684 timer
.expires
= jiffies
+ timeout
;
3685 timer
.data
= (unsigned long)hdw
;
3686 timer
.function
= pvr2_ctl_timeout
;
3689 hdw
->cmd_debug_state
= 2;
3690 /* Transfer write data to internal buffer */
3691 for (idx
= 0; idx
< write_len
; idx
++) {
3692 hdw
->ctl_write_buffer
[idx
] =
3693 ((unsigned char *)write_data
)[idx
];
3695 /* Initiate a write request */
3696 usb_fill_bulk_urb(hdw
->ctl_write_urb
,
3698 usb_sndbulkpipe(hdw
->usb_dev
,
3699 PVR2_CTL_WRITE_ENDPOINT
),
3700 hdw
->ctl_write_buffer
,
3702 pvr2_ctl_write_complete
,
3704 hdw
->ctl_write_urb
->actual_length
= 0;
3705 hdw
->ctl_write_pend_flag
= !0;
3706 status
= usb_submit_urb(hdw
->ctl_write_urb
,GFP_KERNEL
);
3708 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3709 "Failed to submit write-control"
3710 " URB status=%d",status
);
3711 hdw
->ctl_write_pend_flag
= 0;
3717 hdw
->cmd_debug_state
= 3;
3718 memset(hdw
->ctl_read_buffer
,0x43,read_len
);
3719 /* Initiate a read request */
3720 usb_fill_bulk_urb(hdw
->ctl_read_urb
,
3722 usb_rcvbulkpipe(hdw
->usb_dev
,
3723 PVR2_CTL_READ_ENDPOINT
),
3724 hdw
->ctl_read_buffer
,
3726 pvr2_ctl_read_complete
,
3728 hdw
->ctl_read_urb
->actual_length
= 0;
3729 hdw
->ctl_read_pend_flag
= !0;
3730 status
= usb_submit_urb(hdw
->ctl_read_urb
,GFP_KERNEL
);
3732 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3733 "Failed to submit read-control"
3734 " URB status=%d",status
);
3735 hdw
->ctl_read_pend_flag
= 0;
3743 /* Now wait for all I/O to complete */
3744 hdw
->cmd_debug_state
= 4;
3745 while (hdw
->ctl_write_pend_flag
|| hdw
->ctl_read_pend_flag
) {
3746 wait_for_completion(&hdw
->ctl_done
);
3748 hdw
->cmd_debug_state
= 5;
3751 del_timer_sync(&timer
);
3753 hdw
->cmd_debug_state
= 6;
3756 if (hdw
->ctl_timeout_flag
) {
3757 status
= -ETIMEDOUT
;
3759 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3760 "Timed out control-write");
3766 /* Validate results of write request */
3767 if ((hdw
->ctl_write_urb
->status
!= 0) &&
3768 (hdw
->ctl_write_urb
->status
!= -ENOENT
) &&
3769 (hdw
->ctl_write_urb
->status
!= -ESHUTDOWN
) &&
3770 (hdw
->ctl_write_urb
->status
!= -ECONNRESET
)) {
3771 /* USB subsystem is reporting some kind of failure
3773 status
= hdw
->ctl_write_urb
->status
;
3775 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3776 "control-write URB failure,"
3782 if (hdw
->ctl_write_urb
->actual_length
< write_len
) {
3783 /* Failed to write enough data */
3786 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3787 "control-write URB short,"
3788 " expected=%d got=%d",
3790 hdw
->ctl_write_urb
->actual_length
);
3796 /* Validate results of read request */
3797 if ((hdw
->ctl_read_urb
->status
!= 0) &&
3798 (hdw
->ctl_read_urb
->status
!= -ENOENT
) &&
3799 (hdw
->ctl_read_urb
->status
!= -ESHUTDOWN
) &&
3800 (hdw
->ctl_read_urb
->status
!= -ECONNRESET
)) {
3801 /* USB subsystem is reporting some kind of failure
3803 status
= hdw
->ctl_read_urb
->status
;
3805 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3806 "control-read URB failure,"
3812 if (hdw
->ctl_read_urb
->actual_length
< read_len
) {
3813 /* Failed to read enough data */
3816 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3817 "control-read URB short,"
3818 " expected=%d got=%d",
3820 hdw
->ctl_read_urb
->actual_length
);
3824 /* Transfer retrieved data out from internal buffer */
3825 for (idx
= 0; idx
< read_len
; idx
++) {
3826 ((unsigned char *)read_data
)[idx
] =
3827 hdw
->ctl_read_buffer
[idx
];
3833 hdw
->cmd_debug_state
= 0;
3834 if ((status
< 0) && (!probe_fl
)) {
3835 pvr2_hdw_render_useless(hdw
);
3841 int pvr2_send_request(struct pvr2_hdw
*hdw
,
3842 void *write_data
,unsigned int write_len
,
3843 void *read_data
,unsigned int read_len
)
3845 return pvr2_send_request_ex(hdw
,HZ
*4,0,
3846 write_data
,write_len
,
3847 read_data
,read_len
);
3851 static int pvr2_issue_simple_cmd(struct pvr2_hdw
*hdw
,u32 cmdcode
)
3854 unsigned int cnt
= 1;
3855 unsigned int args
= 0;
3856 LOCK_TAKE(hdw
->ctl_lock
);
3857 hdw
->cmd_buffer
[0] = cmdcode
& 0xffu
;
3858 args
= (cmdcode
>> 8) & 0xffu
;
3859 args
= (args
> 2) ? 2 : args
;
3862 hdw
->cmd_buffer
[1] = (cmdcode
>> 16) & 0xffu
;
3864 hdw
->cmd_buffer
[2] = (cmdcode
>> 24) & 0xffu
;
3867 if (pvrusb2_debug
& PVR2_TRACE_INIT
) {
3869 unsigned int ccnt
,bcnt
;
3873 ccnt
= scnprintf(tbuf
+bcnt
,
3875 "Sending FX2 command 0x%x",cmdcode
);
3877 for (idx
= 0; idx
< ARRAY_SIZE(pvr2_fx2cmd_desc
); idx
++) {
3878 if (pvr2_fx2cmd_desc
[idx
].id
== cmdcode
) {
3879 ccnt
= scnprintf(tbuf
+bcnt
,
3882 pvr2_fx2cmd_desc
[idx
].desc
);
3888 ccnt
= scnprintf(tbuf
+bcnt
,
3890 " (%u",hdw
->cmd_buffer
[1]);
3893 ccnt
= scnprintf(tbuf
+bcnt
,
3895 ",%u",hdw
->cmd_buffer
[2]);
3898 ccnt
= scnprintf(tbuf
+bcnt
,
3903 pvr2_trace(PVR2_TRACE_INIT
,"%.*s",bcnt
,tbuf
);
3905 ret
= pvr2_send_request(hdw
,hdw
->cmd_buffer
,cnt
,NULL
,0);
3906 LOCK_GIVE(hdw
->ctl_lock
);
3911 int pvr2_write_register(struct pvr2_hdw
*hdw
, u16 reg
, u32 data
)
3915 LOCK_TAKE(hdw
->ctl_lock
);
3917 hdw
->cmd_buffer
[0] = FX2CMD_REG_WRITE
; /* write register prefix */
3918 PVR2_DECOMPOSE_LE(hdw
->cmd_buffer
,1,data
);
3919 hdw
->cmd_buffer
[5] = 0;
3920 hdw
->cmd_buffer
[6] = (reg
>> 8) & 0xff;
3921 hdw
->cmd_buffer
[7] = reg
& 0xff;
3924 ret
= pvr2_send_request(hdw
, hdw
->cmd_buffer
, 8, hdw
->cmd_buffer
, 0);
3926 LOCK_GIVE(hdw
->ctl_lock
);
3932 static int pvr2_read_register(struct pvr2_hdw
*hdw
, u16 reg
, u32
*data
)
3936 LOCK_TAKE(hdw
->ctl_lock
);
3938 hdw
->cmd_buffer
[0] = FX2CMD_REG_READ
; /* read register prefix */
3939 hdw
->cmd_buffer
[1] = 0;
3940 hdw
->cmd_buffer
[2] = 0;
3941 hdw
->cmd_buffer
[3] = 0;
3942 hdw
->cmd_buffer
[4] = 0;
3943 hdw
->cmd_buffer
[5] = 0;
3944 hdw
->cmd_buffer
[6] = (reg
>> 8) & 0xff;
3945 hdw
->cmd_buffer
[7] = reg
& 0xff;
3947 ret
|= pvr2_send_request(hdw
, hdw
->cmd_buffer
, 8, hdw
->cmd_buffer
, 4);
3948 *data
= PVR2_COMPOSE_LE(hdw
->cmd_buffer
,0);
3950 LOCK_GIVE(hdw
->ctl_lock
);
3956 void pvr2_hdw_render_useless(struct pvr2_hdw
*hdw
)
3958 if (!hdw
->flag_ok
) return;
3959 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3960 "Device being rendered inoperable");
3961 if (hdw
->vid_stream
) {
3962 pvr2_stream_setup(hdw
->vid_stream
,NULL
,0,0);
3965 trace_stbit("flag_ok",hdw
->flag_ok
);
3966 pvr2_hdw_state_sched(hdw
);
3970 void pvr2_hdw_device_reset(struct pvr2_hdw
*hdw
)
3973 pvr2_trace(PVR2_TRACE_INIT
,"Performing a device reset...");
3974 ret
= usb_lock_device_for_reset(hdw
->usb_dev
,NULL
);
3976 ret
= usb_reset_device(hdw
->usb_dev
);
3977 usb_unlock_device(hdw
->usb_dev
);
3979 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
3980 "Failed to lock USB device ret=%d",ret
);
3982 if (init_pause_msec
) {
3983 pvr2_trace(PVR2_TRACE_INFO
,
3984 "Waiting %u msec for hardware to settle",
3986 msleep(init_pause_msec
);
3992 void pvr2_hdw_cpureset_assert(struct pvr2_hdw
*hdw
,int val
)
3998 if (!hdw
->usb_dev
) return;
4000 da
= kmalloc(16, GFP_KERNEL
);
4003 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
4004 "Unable to allocate memory to control CPU reset");
4008 pvr2_trace(PVR2_TRACE_INIT
,"cpureset_assert(%d)",val
);
4010 da
[0] = val
? 0x01 : 0x00;
4012 /* Write the CPUCS register on the 8051. The lsb of the register
4013 is the reset bit; a 1 asserts reset while a 0 clears it. */
4014 pipe
= usb_sndctrlpipe(hdw
->usb_dev
, 0);
4015 ret
= usb_control_msg(hdw
->usb_dev
,pipe
,0xa0,0x40,0xe600,0,da
,1,HZ
);
4017 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
4018 "cpureset_assert(%d) error=%d",val
,ret
);
4019 pvr2_hdw_render_useless(hdw
);
4026 int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw
*hdw
)
4028 return pvr2_issue_simple_cmd(hdw
,FX2CMD_DEEP_RESET
);
4032 int pvr2_hdw_cmd_powerup(struct pvr2_hdw
*hdw
)
4034 return pvr2_issue_simple_cmd(hdw
,FX2CMD_POWER_ON
);
4038 int pvr2_hdw_cmd_powerdown(struct pvr2_hdw
*hdw
)
4040 return pvr2_issue_simple_cmd(hdw
,FX2CMD_POWER_OFF
);
4044 int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw
*hdw
)
4046 pvr2_trace(PVR2_TRACE_INIT
,
4047 "Requesting decoder reset");
4048 if (hdw
->decoder_client_id
) {
4049 v4l2_device_call_all(&hdw
->v4l2_dev
, hdw
->decoder_client_id
,
4051 pvr2_hdw_cx25840_vbi_hack(hdw
);
4054 pvr2_trace(PVR2_TRACE_INIT
,
4055 "Unable to reset decoder: nothing attached");
4060 static int pvr2_hdw_cmd_hcw_demod_reset(struct pvr2_hdw
*hdw
, int onoff
)
4063 return pvr2_issue_simple_cmd(hdw
,
4064 FX2CMD_HCW_DEMOD_RESETIN
|
4066 ((onoff
? 1 : 0) << 16));
4070 static int pvr2_hdw_cmd_onair_fe_power_ctrl(struct pvr2_hdw
*hdw
, int onoff
)
4073 return pvr2_issue_simple_cmd(hdw
,(onoff
?
4074 FX2CMD_ONAIR_DTV_POWER_ON
:
4075 FX2CMD_ONAIR_DTV_POWER_OFF
));
4079 static int pvr2_hdw_cmd_onair_digital_path_ctrl(struct pvr2_hdw
*hdw
,
4082 return pvr2_issue_simple_cmd(hdw
,(onoff
?
4083 FX2CMD_ONAIR_DTV_STREAMING_ON
:
4084 FX2CMD_ONAIR_DTV_STREAMING_OFF
));
4088 static void pvr2_hdw_cmd_modeswitch(struct pvr2_hdw
*hdw
,int digitalFl
)
4091 /* Compare digital/analog desired setting with current setting. If
4092 they don't match, fix it... */
4093 cmode
= (digitalFl
? PVR2_PATHWAY_DIGITAL
: PVR2_PATHWAY_ANALOG
);
4094 if (cmode
== hdw
->pathway_state
) {
4095 /* They match; nothing to do */
4099 switch (hdw
->hdw_desc
->digital_control_scheme
) {
4100 case PVR2_DIGITAL_SCHEME_HAUPPAUGE
:
4101 pvr2_hdw_cmd_hcw_demod_reset(hdw
,digitalFl
);
4102 if (cmode
== PVR2_PATHWAY_ANALOG
) {
4103 /* If moving to analog mode, also force the decoder
4104 to reset. If no decoder is attached, then it's
4105 ok to ignore this because if/when the decoder
4106 attaches, it will reset itself at that time. */
4107 pvr2_hdw_cmd_decoder_reset(hdw
);
4110 case PVR2_DIGITAL_SCHEME_ONAIR
:
4111 /* Supposedly we should always have the power on whether in
4112 digital or analog mode. But for now do what appears to
4114 pvr2_hdw_cmd_onair_fe_power_ctrl(hdw
,digitalFl
);
4119 pvr2_hdw_untrip_unlocked(hdw
);
4120 hdw
->pathway_state
= cmode
;
4124 static void pvr2_led_ctrl_hauppauge(struct pvr2_hdw
*hdw
, int onoff
)
4126 /* change some GPIO data
4128 * note: bit d7 of dir appears to control the LED,
4129 * so we shut it off here.
4133 pvr2_hdw_gpio_chg_dir(hdw
, 0xffffffff, 0x00000481);
4135 pvr2_hdw_gpio_chg_dir(hdw
, 0xffffffff, 0x00000401);
4137 pvr2_hdw_gpio_chg_out(hdw
, 0xffffffff, 0x00000000);
4141 typedef void (*led_method_func
)(struct pvr2_hdw
*,int);
4143 static led_method_func led_methods
[] = {
4144 [PVR2_LED_SCHEME_HAUPPAUGE
] = pvr2_led_ctrl_hauppauge
,
4149 static void pvr2_led_ctrl(struct pvr2_hdw
*hdw
,int onoff
)
4151 unsigned int scheme_id
;
4154 if ((!onoff
) == (!hdw
->led_on
)) return;
4156 hdw
->led_on
= onoff
!= 0;
4158 scheme_id
= hdw
->hdw_desc
->led_scheme
;
4159 if (scheme_id
< ARRAY_SIZE(led_methods
)) {
4160 fp
= led_methods
[scheme_id
];
4165 if (fp
) (*fp
)(hdw
,onoff
);
4169 /* Stop / start video stream transport */
4170 static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw
*hdw
,int runFl
)
4174 /* If we're in analog mode, then just issue the usual analog
4176 if (hdw
->pathway_state
== PVR2_PATHWAY_ANALOG
) {
4177 return pvr2_issue_simple_cmd(hdw
,
4179 FX2CMD_STREAMING_ON
:
4180 FX2CMD_STREAMING_OFF
));
4181 /*Note: Not reached */
4184 if (hdw
->pathway_state
!= PVR2_PATHWAY_DIGITAL
) {
4185 /* Whoops, we don't know what mode we're in... */
4189 /* To get here we have to be in digital mode. The mechanism here
4190 is unfortunately different for different vendors. So we switch
4191 on the device's digital scheme attribute in order to figure out
4193 switch (hdw
->hdw_desc
->digital_control_scheme
) {
4194 case PVR2_DIGITAL_SCHEME_HAUPPAUGE
:
4195 return pvr2_issue_simple_cmd(hdw
,
4197 FX2CMD_HCW_DTV_STREAMING_ON
:
4198 FX2CMD_HCW_DTV_STREAMING_OFF
));
4199 case PVR2_DIGITAL_SCHEME_ONAIR
:
4200 ret
= pvr2_issue_simple_cmd(hdw
,
4202 FX2CMD_STREAMING_ON
:
4203 FX2CMD_STREAMING_OFF
));
4204 if (ret
) return ret
;
4205 return pvr2_hdw_cmd_onair_digital_path_ctrl(hdw
,runFl
);
4212 /* Evaluate whether or not state_pathway_ok can change */
4213 static int state_eval_pathway_ok(struct pvr2_hdw
*hdw
)
4215 if (hdw
->state_pathway_ok
) {
4216 /* Nothing to do if pathway is already ok */
4219 if (!hdw
->state_pipeline_idle
) {
4220 /* Not allowed to change anything if pipeline is not idle */
4223 pvr2_hdw_cmd_modeswitch(hdw
,hdw
->input_val
== PVR2_CVAL_INPUT_DTV
);
4224 hdw
->state_pathway_ok
= !0;
4225 trace_stbit("state_pathway_ok",hdw
->state_pathway_ok
);
4230 /* Evaluate whether or not state_encoder_ok can change */
4231 static int state_eval_encoder_ok(struct pvr2_hdw
*hdw
)
4233 if (hdw
->state_encoder_ok
) return 0;
4234 if (hdw
->flag_tripped
) return 0;
4235 if (hdw
->state_encoder_run
) return 0;
4236 if (hdw
->state_encoder_config
) return 0;
4237 if (hdw
->state_decoder_run
) return 0;
4238 if (hdw
->state_usbstream_run
) return 0;
4239 if (hdw
->pathway_state
== PVR2_PATHWAY_DIGITAL
) {
4240 if (!hdw
->hdw_desc
->flag_digital_requires_cx23416
) return 0;
4241 } else if (hdw
->pathway_state
!= PVR2_PATHWAY_ANALOG
) {
4245 if (pvr2_upload_firmware2(hdw
) < 0) {
4246 hdw
->flag_tripped
= !0;
4247 trace_stbit("flag_tripped",hdw
->flag_tripped
);
4250 hdw
->state_encoder_ok
= !0;
4251 trace_stbit("state_encoder_ok",hdw
->state_encoder_ok
);
4256 /* Evaluate whether or not state_encoder_config can change */
4257 static int state_eval_encoder_config(struct pvr2_hdw
*hdw
)
4259 if (hdw
->state_encoder_config
) {
4260 if (hdw
->state_encoder_ok
) {
4261 if (hdw
->state_pipeline_req
&&
4262 !hdw
->state_pipeline_pause
) return 0;
4264 hdw
->state_encoder_config
= 0;
4265 hdw
->state_encoder_waitok
= 0;
4266 trace_stbit("state_encoder_waitok",hdw
->state_encoder_waitok
);
4267 /* paranoia - solve race if timer just completed */
4268 del_timer_sync(&hdw
->encoder_wait_timer
);
4270 if (!hdw
->state_pathway_ok
||
4271 (hdw
->pathway_state
!= PVR2_PATHWAY_ANALOG
) ||
4272 !hdw
->state_encoder_ok
||
4273 !hdw
->state_pipeline_idle
||
4274 hdw
->state_pipeline_pause
||
4275 !hdw
->state_pipeline_req
||
4276 !hdw
->state_pipeline_config
) {
4277 /* We must reset the enforced wait interval if
4278 anything has happened that might have disturbed
4279 the encoder. This should be a rare case. */
4280 if (timer_pending(&hdw
->encoder_wait_timer
)) {
4281 del_timer_sync(&hdw
->encoder_wait_timer
);
4283 if (hdw
->state_encoder_waitok
) {
4284 /* Must clear the state - therefore we did
4285 something to a state bit and must also
4287 hdw
->state_encoder_waitok
= 0;
4288 trace_stbit("state_encoder_waitok",
4289 hdw
->state_encoder_waitok
);
4294 if (!hdw
->state_encoder_waitok
) {
4295 if (!timer_pending(&hdw
->encoder_wait_timer
)) {
4296 /* waitok flag wasn't set and timer isn't
4297 running. Check flag once more to avoid
4298 a race then start the timer. This is
4299 the point when we measure out a minimal
4300 quiet interval before doing something to
4302 if (!hdw
->state_encoder_waitok
) {
4303 hdw
->encoder_wait_timer
.expires
=
4305 (HZ
* TIME_MSEC_ENCODER_WAIT
4307 add_timer(&hdw
->encoder_wait_timer
);
4310 /* We can't continue until we know we have been
4311 quiet for the interval measured by this
4315 pvr2_encoder_configure(hdw
);
4316 if (hdw
->state_encoder_ok
) hdw
->state_encoder_config
= !0;
4318 trace_stbit("state_encoder_config",hdw
->state_encoder_config
);
4323 /* Return true if the encoder should not be running. */
4324 static int state_check_disable_encoder_run(struct pvr2_hdw
*hdw
)
4326 if (!hdw
->state_encoder_ok
) {
4327 /* Encoder isn't healthy at the moment, so stop it. */
4330 if (!hdw
->state_pathway_ok
) {
4331 /* Mode is not understood at the moment (i.e. it wants to
4332 change), so encoder must be stopped. */
4336 switch (hdw
->pathway_state
) {
4337 case PVR2_PATHWAY_ANALOG
:
4338 if (!hdw
->state_decoder_run
) {
4339 /* We're in analog mode and the decoder is not
4340 running; thus the encoder should be stopped as
4345 case PVR2_PATHWAY_DIGITAL
:
4346 if (hdw
->state_encoder_runok
) {
4347 /* This is a funny case. We're in digital mode so
4348 really the encoder should be stopped. However
4349 if it really is running, only kill it after
4350 runok has been set. This gives a chance for the
4351 onair quirk to function (encoder must run
4352 briefly first, at least once, before onair
4353 digital streaming can work). */
4358 /* Unknown mode; so encoder should be stopped. */
4362 /* If we get here, we haven't found a reason to stop the
4368 /* Return true if the encoder should be running. */
4369 static int state_check_enable_encoder_run(struct pvr2_hdw
*hdw
)
4371 if (!hdw
->state_encoder_ok
) {
4372 /* Don't run the encoder if it isn't healthy... */
4375 if (!hdw
->state_pathway_ok
) {
4376 /* Don't run the encoder if we don't (yet) know what mode
4377 we need to be in... */
4381 switch (hdw
->pathway_state
) {
4382 case PVR2_PATHWAY_ANALOG
:
4383 if (hdw
->state_decoder_run
&& hdw
->state_decoder_ready
) {
4384 /* In analog mode, if the decoder is running, then
4389 case PVR2_PATHWAY_DIGITAL
:
4390 if ((hdw
->hdw_desc
->digital_control_scheme
==
4391 PVR2_DIGITAL_SCHEME_ONAIR
) &&
4392 !hdw
->state_encoder_runok
) {
4393 /* This is a quirk. OnAir hardware won't stream
4394 digital until the encoder has been run at least
4395 once, for a minimal period of time (empiricially
4396 measured to be 1/4 second). So if we're on
4397 OnAir hardware and the encoder has never been
4398 run at all, then start the encoder. Normal
4399 state machine logic in the driver will
4400 automatically handle the remaining bits. */
4405 /* For completeness (unknown mode; encoder won't run ever) */
4408 /* If we get here, then we haven't found any reason to run the
4409 encoder, so don't run it. */
4414 /* Evaluate whether or not state_encoder_run can change */
4415 static int state_eval_encoder_run(struct pvr2_hdw
*hdw
)
4417 if (hdw
->state_encoder_run
) {
4418 if (!state_check_disable_encoder_run(hdw
)) return 0;
4419 if (hdw
->state_encoder_ok
) {
4420 del_timer_sync(&hdw
->encoder_run_timer
);
4421 if (pvr2_encoder_stop(hdw
) < 0) return !0;
4423 hdw
->state_encoder_run
= 0;
4425 if (!state_check_enable_encoder_run(hdw
)) return 0;
4426 if (pvr2_encoder_start(hdw
) < 0) return !0;
4427 hdw
->state_encoder_run
= !0;
4428 if (!hdw
->state_encoder_runok
) {
4429 hdw
->encoder_run_timer
.expires
=
4430 jiffies
+ (HZ
* TIME_MSEC_ENCODER_OK
/ 1000);
4431 add_timer(&hdw
->encoder_run_timer
);
4434 trace_stbit("state_encoder_run",hdw
->state_encoder_run
);
4439 /* Timeout function for quiescent timer. */
4440 static void pvr2_hdw_quiescent_timeout(unsigned long data
)
4442 struct pvr2_hdw
*hdw
= (struct pvr2_hdw
*)data
;
4443 hdw
->state_decoder_quiescent
= !0;
4444 trace_stbit("state_decoder_quiescent",hdw
->state_decoder_quiescent
);
4445 hdw
->state_stale
= !0;
4446 queue_work(hdw
->workqueue
,&hdw
->workpoll
);
4450 /* Timeout function for decoder stabilization timer. */
4451 static void pvr2_hdw_decoder_stabilization_timeout(unsigned long data
)
4453 struct pvr2_hdw
*hdw
= (struct pvr2_hdw
*)data
;
4454 hdw
->state_decoder_ready
= !0;
4455 trace_stbit("state_decoder_ready", hdw
->state_decoder_ready
);
4456 hdw
->state_stale
= !0;
4457 queue_work(hdw
->workqueue
, &hdw
->workpoll
);
4461 /* Timeout function for encoder wait timer. */
4462 static void pvr2_hdw_encoder_wait_timeout(unsigned long data
)
4464 struct pvr2_hdw
*hdw
= (struct pvr2_hdw
*)data
;
4465 hdw
->state_encoder_waitok
= !0;
4466 trace_stbit("state_encoder_waitok",hdw
->state_encoder_waitok
);
4467 hdw
->state_stale
= !0;
4468 queue_work(hdw
->workqueue
,&hdw
->workpoll
);
4472 /* Timeout function for encoder run timer. */
4473 static void pvr2_hdw_encoder_run_timeout(unsigned long data
)
4475 struct pvr2_hdw
*hdw
= (struct pvr2_hdw
*)data
;
4476 if (!hdw
->state_encoder_runok
) {
4477 hdw
->state_encoder_runok
= !0;
4478 trace_stbit("state_encoder_runok",hdw
->state_encoder_runok
);
4479 hdw
->state_stale
= !0;
4480 queue_work(hdw
->workqueue
,&hdw
->workpoll
);
4485 /* Evaluate whether or not state_decoder_run can change */
4486 static int state_eval_decoder_run(struct pvr2_hdw
*hdw
)
4488 if (hdw
->state_decoder_run
) {
4489 if (hdw
->state_encoder_ok
) {
4490 if (hdw
->state_pipeline_req
&&
4491 !hdw
->state_pipeline_pause
&&
4492 hdw
->state_pathway_ok
) return 0;
4494 if (!hdw
->flag_decoder_missed
) {
4495 pvr2_decoder_enable(hdw
,0);
4497 hdw
->state_decoder_quiescent
= 0;
4498 hdw
->state_decoder_run
= 0;
4499 /* paranoia - solve race if timer(s) just completed */
4500 del_timer_sync(&hdw
->quiescent_timer
);
4501 /* Kill the stabilization timer, in case we're killing the
4502 encoder before the previous stabilization interval has
4503 been properly timed. */
4504 del_timer_sync(&hdw
->decoder_stabilization_timer
);
4505 hdw
->state_decoder_ready
= 0;
4507 if (!hdw
->state_decoder_quiescent
) {
4508 if (!timer_pending(&hdw
->quiescent_timer
)) {
4509 /* We don't do something about the
4510 quiescent timer until right here because
4511 we also want to catch cases where the
4512 decoder was already not running (like
4513 after initialization) as opposed to
4514 knowing that we had just stopped it.
4515 The second flag check is here to cover a
4516 race - the timer could have run and set
4517 this flag just after the previous check
4518 but before we did the pending check. */
4519 if (!hdw
->state_decoder_quiescent
) {
4520 hdw
->quiescent_timer
.expires
=
4522 (HZ
* TIME_MSEC_DECODER_WAIT
4524 add_timer(&hdw
->quiescent_timer
);
4527 /* Don't allow decoder to start again until it has
4528 been quiesced first. This little detail should
4529 hopefully further stabilize the encoder. */
4532 if (!hdw
->state_pathway_ok
||
4533 (hdw
->pathway_state
!= PVR2_PATHWAY_ANALOG
) ||
4534 !hdw
->state_pipeline_req
||
4535 hdw
->state_pipeline_pause
||
4536 !hdw
->state_pipeline_config
||
4537 !hdw
->state_encoder_config
||
4538 !hdw
->state_encoder_ok
) return 0;
4539 del_timer_sync(&hdw
->quiescent_timer
);
4540 if (hdw
->flag_decoder_missed
) return 0;
4541 if (pvr2_decoder_enable(hdw
,!0) < 0) return 0;
4542 hdw
->state_decoder_quiescent
= 0;
4543 hdw
->state_decoder_ready
= 0;
4544 hdw
->state_decoder_run
= !0;
4545 if (hdw
->decoder_client_id
== PVR2_CLIENT_ID_SAA7115
) {
4546 hdw
->decoder_stabilization_timer
.expires
=
4548 (HZ
* TIME_MSEC_DECODER_STABILIZATION_WAIT
/
4550 add_timer(&hdw
->decoder_stabilization_timer
);
4552 hdw
->state_decoder_ready
= !0;
4555 trace_stbit("state_decoder_quiescent",hdw
->state_decoder_quiescent
);
4556 trace_stbit("state_decoder_run",hdw
->state_decoder_run
);
4557 trace_stbit("state_decoder_ready", hdw
->state_decoder_ready
);
4562 /* Evaluate whether or not state_usbstream_run can change */
4563 static int state_eval_usbstream_run(struct pvr2_hdw
*hdw
)
4565 if (hdw
->state_usbstream_run
) {
4567 if (hdw
->pathway_state
== PVR2_PATHWAY_ANALOG
) {
4568 fl
= (hdw
->state_encoder_ok
&&
4569 hdw
->state_encoder_run
);
4570 } else if ((hdw
->pathway_state
== PVR2_PATHWAY_DIGITAL
) &&
4571 (hdw
->hdw_desc
->flag_digital_requires_cx23416
)) {
4572 fl
= hdw
->state_encoder_ok
;
4575 hdw
->state_pipeline_req
&&
4576 !hdw
->state_pipeline_pause
&&
4577 hdw
->state_pathway_ok
) {
4580 pvr2_hdw_cmd_usbstream(hdw
,0);
4581 hdw
->state_usbstream_run
= 0;
4583 if (!hdw
->state_pipeline_req
||
4584 hdw
->state_pipeline_pause
||
4585 !hdw
->state_pathway_ok
) return 0;
4586 if (hdw
->pathway_state
== PVR2_PATHWAY_ANALOG
) {
4587 if (!hdw
->state_encoder_ok
||
4588 !hdw
->state_encoder_run
) return 0;
4589 } else if ((hdw
->pathway_state
== PVR2_PATHWAY_DIGITAL
) &&
4590 (hdw
->hdw_desc
->flag_digital_requires_cx23416
)) {
4591 if (!hdw
->state_encoder_ok
) return 0;
4592 if (hdw
->state_encoder_run
) return 0;
4593 if (hdw
->hdw_desc
->digital_control_scheme
==
4594 PVR2_DIGITAL_SCHEME_ONAIR
) {
4595 /* OnAir digital receivers won't stream
4596 unless the analog encoder has run first.
4597 Why? I have no idea. But don't even
4598 try until we know the analog side is
4599 known to have run. */
4600 if (!hdw
->state_encoder_runok
) return 0;
4603 if (pvr2_hdw_cmd_usbstream(hdw
,!0) < 0) return 0;
4604 hdw
->state_usbstream_run
= !0;
4606 trace_stbit("state_usbstream_run",hdw
->state_usbstream_run
);
4611 /* Attempt to configure pipeline, if needed */
4612 static int state_eval_pipeline_config(struct pvr2_hdw
*hdw
)
4614 if (hdw
->state_pipeline_config
||
4615 hdw
->state_pipeline_pause
) return 0;
4616 pvr2_hdw_commit_execute(hdw
);
4621 /* Update pipeline idle and pipeline pause tracking states based on other
4622 inputs. This must be called whenever the other relevant inputs have
4624 static int state_update_pipeline_state(struct pvr2_hdw
*hdw
)
4628 /* Update pipeline state */
4629 st
= !(hdw
->state_encoder_run
||
4630 hdw
->state_decoder_run
||
4631 hdw
->state_usbstream_run
||
4632 (!hdw
->state_decoder_quiescent
));
4633 if (!st
!= !hdw
->state_pipeline_idle
) {
4634 hdw
->state_pipeline_idle
= st
;
4637 if (hdw
->state_pipeline_idle
&& hdw
->state_pipeline_pause
) {
4638 hdw
->state_pipeline_pause
= 0;
4645 typedef int (*state_eval_func
)(struct pvr2_hdw
*);
4647 /* Set of functions to be run to evaluate various states in the driver. */
4648 static const state_eval_func eval_funcs
[] = {
4649 state_eval_pathway_ok
,
4650 state_eval_pipeline_config
,
4651 state_eval_encoder_ok
,
4652 state_eval_encoder_config
,
4653 state_eval_decoder_run
,
4654 state_eval_encoder_run
,
4655 state_eval_usbstream_run
,
4659 /* Process various states and return true if we did anything interesting. */
4660 static int pvr2_hdw_state_update(struct pvr2_hdw
*hdw
)
4663 int state_updated
= 0;
4666 if (!hdw
->state_stale
) return 0;
4667 if ((hdw
->fw1_state
!= FW1_STATE_OK
) ||
4669 hdw
->state_stale
= 0;
4672 /* This loop is the heart of the entire driver. It keeps trying to
4673 evaluate various bits of driver state until nothing changes for
4674 one full iteration. Each "bit of state" tracks some global
4675 aspect of the driver, e.g. whether decoder should run, if
4676 pipeline is configured, usb streaming is on, etc. We separately
4677 evaluate each of those questions based on other driver state to
4678 arrive at the correct running configuration. */
4681 state_update_pipeline_state(hdw
);
4682 /* Iterate over each bit of state */
4683 for (i
= 0; (i
<ARRAY_SIZE(eval_funcs
)) && hdw
->flag_ok
; i
++) {
4684 if ((*eval_funcs
[i
])(hdw
)) {
4687 state_update_pipeline_state(hdw
);
4690 } while (check_flag
&& hdw
->flag_ok
);
4691 hdw
->state_stale
= 0;
4692 trace_stbit("state_stale",hdw
->state_stale
);
4693 return state_updated
;
4697 static unsigned int print_input_mask(unsigned int msk
,
4698 char *buf
,unsigned int acnt
)
4700 unsigned int idx
,ccnt
;
4701 unsigned int tcnt
= 0;
4702 for (idx
= 0; idx
< ARRAY_SIZE(control_values_input
); idx
++) {
4703 if (!((1 << idx
) & msk
)) continue;
4704 ccnt
= scnprintf(buf
+tcnt
,
4708 control_values_input
[idx
]);
4715 static const char *pvr2_pathway_state_name(int id
)
4718 case PVR2_PATHWAY_ANALOG
: return "analog";
4719 case PVR2_PATHWAY_DIGITAL
: return "digital";
4720 default: return "unknown";
4725 static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw
*hdw
,int which
,
4726 char *buf
,unsigned int acnt
)
4732 "driver:%s%s%s%s%s <mode=%s>",
4733 (hdw
->flag_ok
? " <ok>" : " <fail>"),
4734 (hdw
->flag_init_ok
? " <init>" : " <uninitialized>"),
4735 (hdw
->flag_disconnected
? " <disconnected>" :
4737 (hdw
->flag_tripped
? " <tripped>" : ""),
4738 (hdw
->flag_decoder_missed
? " <no decoder>" : ""),
4739 pvr2_pathway_state_name(hdw
->pathway_state
));
4744 "pipeline:%s%s%s%s",
4745 (hdw
->state_pipeline_idle
? " <idle>" : ""),
4746 (hdw
->state_pipeline_config
?
4747 " <configok>" : " <stale>"),
4748 (hdw
->state_pipeline_req
? " <req>" : ""),
4749 (hdw
->state_pipeline_pause
? " <pause>" : ""));
4753 "worker:%s%s%s%s%s%s%s",
4754 (hdw
->state_decoder_run
?
4755 (hdw
->state_decoder_ready
?
4756 "<decode:run>" : " <decode:start>") :
4757 (hdw
->state_decoder_quiescent
?
4758 "" : " <decode:stop>")),
4759 (hdw
->state_decoder_quiescent
?
4760 " <decode:quiescent>" : ""),
4761 (hdw
->state_encoder_ok
?
4762 "" : " <encode:init>"),
4763 (hdw
->state_encoder_run
?
4764 (hdw
->state_encoder_runok
?
4766 " <encode:firstrun>") :
4767 (hdw
->state_encoder_runok
?
4769 " <encode:virgin>")),
4770 (hdw
->state_encoder_config
?
4771 " <encode:configok>" :
4772 (hdw
->state_encoder_waitok
?
4773 "" : " <encode:waitok>")),
4774 (hdw
->state_usbstream_run
?
4775 " <usb:run>" : " <usb:stop>"),
4776 (hdw
->state_pathway_ok
?
4777 " <pathway:ok>" : ""));
4782 pvr2_get_state_name(hdw
->master_state
));
4784 unsigned int tcnt
= 0;
4787 ccnt
= scnprintf(buf
,
4789 "Hardware supported inputs: ");
4791 tcnt
+= print_input_mask(hdw
->input_avail_mask
,
4794 if (hdw
->input_avail_mask
!= hdw
->input_allowed_mask
) {
4795 ccnt
= scnprintf(buf
+tcnt
,
4797 "; allowed inputs: ");
4799 tcnt
+= print_input_mask(hdw
->input_allowed_mask
,
4806 struct pvr2_stream_stats stats
;
4807 if (!hdw
->vid_stream
) break;
4808 pvr2_stream_get_stats(hdw
->vid_stream
,
4814 " URBs: queued=%u idle=%u ready=%u"
4815 " processed=%u failed=%u",
4816 stats
.bytes_processed
,
4817 stats
.buffers_in_queue
,
4818 stats
.buffers_in_idle
,
4819 stats
.buffers_in_ready
,
4820 stats
.buffers_processed
,
4821 stats
.buffers_failed
);
4824 unsigned int id
= hdw
->ir_scheme_active
;
4825 return scnprintf(buf
, acnt
, "ir scheme: id=%d %s", id
,
4826 (id
>= ARRAY_SIZE(ir_scheme_names
) ?
4827 "?" : ir_scheme_names
[id
]));
4835 /* Generate report containing info about attached sub-devices and attached
4836 i2c clients, including an indication of which attached i2c clients are
4837 actually sub-devices. */
4838 static unsigned int pvr2_hdw_report_clients(struct pvr2_hdw
*hdw
,
4839 char *buf
, unsigned int acnt
)
4841 struct v4l2_subdev
*sd
;
4842 unsigned int tcnt
= 0;
4844 struct i2c_client
*client
;
4848 ccnt
= scnprintf(buf
, acnt
, "Associated v4l2-subdev drivers and I2C clients:\n");
4850 v4l2_device_for_each_subdev(sd
, &hdw
->v4l2_dev
) {
4853 if (id
< ARRAY_SIZE(module_names
)) p
= module_names
[id
];
4855 ccnt
= scnprintf(buf
+ tcnt
, acnt
- tcnt
, " %s:", p
);
4858 ccnt
= scnprintf(buf
+ tcnt
, acnt
- tcnt
,
4859 " (unknown id=%u):", id
);
4862 client
= v4l2_get_subdevdata(sd
);
4864 ccnt
= scnprintf(buf
+ tcnt
, acnt
- tcnt
,
4865 " %s @ %02x\n", client
->name
,
4869 ccnt
= scnprintf(buf
+ tcnt
, acnt
- tcnt
,
4870 " no i2c client\n");
4878 unsigned int pvr2_hdw_state_report(struct pvr2_hdw
*hdw
,
4879 char *buf
,unsigned int acnt
)
4881 unsigned int bcnt
,ccnt
,idx
;
4883 LOCK_TAKE(hdw
->big_lock
);
4884 for (idx
= 0; ; idx
++) {
4885 ccnt
= pvr2_hdw_report_unlocked(hdw
,idx
,buf
,acnt
);
4887 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
4889 buf
[0] = '\n'; ccnt
= 1;
4890 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
4892 ccnt
= pvr2_hdw_report_clients(hdw
, buf
, acnt
);
4893 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
4894 LOCK_GIVE(hdw
->big_lock
);
4899 static void pvr2_hdw_state_log_state(struct pvr2_hdw
*hdw
)
4902 unsigned int idx
, ccnt
;
4903 unsigned int lcnt
, ucnt
;
4905 for (idx
= 0; ; idx
++) {
4906 ccnt
= pvr2_hdw_report_unlocked(hdw
,idx
,buf
,sizeof(buf
));
4908 printk(KERN_INFO
"%s %.*s\n",hdw
->name
,ccnt
,buf
);
4910 ccnt
= pvr2_hdw_report_clients(hdw
, buf
, sizeof(buf
));
4912 while (ucnt
< ccnt
) {
4914 while ((lcnt
+ ucnt
< ccnt
) && (buf
[lcnt
+ ucnt
] != '\n')) {
4917 printk(KERN_INFO
"%s %.*s\n", hdw
->name
, lcnt
, buf
+ ucnt
);
4923 /* Evaluate and update the driver's current state, taking various actions
4924 as appropriate for the update. */
4925 static int pvr2_hdw_state_eval(struct pvr2_hdw
*hdw
)
4928 int state_updated
= 0;
4929 int callback_flag
= 0;
4932 pvr2_trace(PVR2_TRACE_STBITS
,
4933 "Drive state check START");
4934 if (pvrusb2_debug
& PVR2_TRACE_STBITS
) {
4935 pvr2_hdw_state_log_state(hdw
);
4938 /* Process all state and get back over disposition */
4939 state_updated
= pvr2_hdw_state_update(hdw
);
4941 analog_mode
= (hdw
->pathway_state
!= PVR2_PATHWAY_DIGITAL
);
4943 /* Update master state based upon all other states. */
4944 if (!hdw
->flag_ok
) {
4945 st
= PVR2_STATE_DEAD
;
4946 } else if (hdw
->fw1_state
!= FW1_STATE_OK
) {
4947 st
= PVR2_STATE_COLD
;
4948 } else if ((analog_mode
||
4949 hdw
->hdw_desc
->flag_digital_requires_cx23416
) &&
4950 !hdw
->state_encoder_ok
) {
4951 st
= PVR2_STATE_WARM
;
4952 } else if (hdw
->flag_tripped
||
4953 (analog_mode
&& hdw
->flag_decoder_missed
)) {
4954 st
= PVR2_STATE_ERROR
;
4955 } else if (hdw
->state_usbstream_run
&&
4957 (hdw
->state_encoder_run
&& hdw
->state_decoder_run
))) {
4958 st
= PVR2_STATE_RUN
;
4960 st
= PVR2_STATE_READY
;
4962 if (hdw
->master_state
!= st
) {
4963 pvr2_trace(PVR2_TRACE_STATE
,
4964 "Device state change from %s to %s",
4965 pvr2_get_state_name(hdw
->master_state
),
4966 pvr2_get_state_name(st
));
4967 pvr2_led_ctrl(hdw
,st
== PVR2_STATE_RUN
);
4968 hdw
->master_state
= st
;
4972 if (state_updated
) {
4973 /* Trigger anyone waiting on any state changes here. */
4974 wake_up(&hdw
->state_wait_data
);
4977 if (pvrusb2_debug
& PVR2_TRACE_STBITS
) {
4978 pvr2_hdw_state_log_state(hdw
);
4980 pvr2_trace(PVR2_TRACE_STBITS
,
4981 "Drive state check DONE callback=%d",callback_flag
);
4983 return callback_flag
;
4987 /* Cause kernel thread to check / update driver state */
4988 static void pvr2_hdw_state_sched(struct pvr2_hdw
*hdw
)
4990 if (hdw
->state_stale
) return;
4991 hdw
->state_stale
= !0;
4992 trace_stbit("state_stale",hdw
->state_stale
);
4993 queue_work(hdw
->workqueue
,&hdw
->workpoll
);
4997 int pvr2_hdw_gpio_get_dir(struct pvr2_hdw
*hdw
,u32
*dp
)
4999 return pvr2_read_register(hdw
,PVR2_GPIO_DIR
,dp
);
5003 int pvr2_hdw_gpio_get_out(struct pvr2_hdw
*hdw
,u32
*dp
)
5005 return pvr2_read_register(hdw
,PVR2_GPIO_OUT
,dp
);
5009 int pvr2_hdw_gpio_get_in(struct pvr2_hdw
*hdw
,u32
*dp
)
5011 return pvr2_read_register(hdw
,PVR2_GPIO_IN
,dp
);
5015 int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw
*hdw
,u32 msk
,u32 val
)
5020 ret
= pvr2_read_register(hdw
,PVR2_GPIO_DIR
,&cval
);
5021 if (ret
) return ret
;
5022 nval
= (cval
& ~msk
) | (val
& msk
);
5023 pvr2_trace(PVR2_TRACE_GPIO
,
5024 "GPIO direction changing 0x%x:0x%x"
5025 " from 0x%x to 0x%x",
5029 pvr2_trace(PVR2_TRACE_GPIO
,
5030 "GPIO direction changing to 0x%x",nval
);
5032 return pvr2_write_register(hdw
,PVR2_GPIO_DIR
,nval
);
5036 int pvr2_hdw_gpio_chg_out(struct pvr2_hdw
*hdw
,u32 msk
,u32 val
)
5041 ret
= pvr2_read_register(hdw
,PVR2_GPIO_OUT
,&cval
);
5042 if (ret
) return ret
;
5043 nval
= (cval
& ~msk
) | (val
& msk
);
5044 pvr2_trace(PVR2_TRACE_GPIO
,
5045 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
5049 pvr2_trace(PVR2_TRACE_GPIO
,
5050 "GPIO output changing to 0x%x",nval
);
5052 return pvr2_write_register(hdw
,PVR2_GPIO_OUT
,nval
);
5056 void pvr2_hdw_status_poll(struct pvr2_hdw
*hdw
)
5058 struct v4l2_tuner
*vtp
= &hdw
->tuner_signal_info
;
5059 memset(vtp
, 0, sizeof(*vtp
));
5060 vtp
->type
= (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) ?
5061 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
5062 hdw
->tuner_signal_stale
= 0;
5063 /* Note: There apparently is no replacement for VIDIOC_CROPCAP
5064 using v4l2-subdev - therefore we can't support that AT ALL right
5065 now. (Of course, no sub-drivers seem to implement it either.
5066 But now it's a a chicken and egg problem...) */
5067 v4l2_device_call_all(&hdw
->v4l2_dev
, 0, tuner
, g_tuner
, vtp
);
5068 pvr2_trace(PVR2_TRACE_CHIPS
, "subdev status poll"
5069 " type=%u strength=%u audio=0x%x cap=0x%x"
5072 vtp
->signal
, vtp
->rxsubchans
, vtp
->capability
,
5073 vtp
->rangelow
, vtp
->rangehigh
);
5075 /* We have to do this to avoid getting into constant polling if
5076 there's nobody to answer a poll of cropcap info. */
5077 hdw
->cropcap_stale
= 0;
5081 unsigned int pvr2_hdw_get_input_available(struct pvr2_hdw
*hdw
)
5083 return hdw
->input_avail_mask
;
5087 unsigned int pvr2_hdw_get_input_allowed(struct pvr2_hdw
*hdw
)
5089 return hdw
->input_allowed_mask
;
5093 static int pvr2_hdw_set_input(struct pvr2_hdw
*hdw
,int v
)
5095 if (hdw
->input_val
!= v
) {
5097 hdw
->input_dirty
= !0;
5100 /* Handle side effects - if we switch to a mode that needs the RF
5101 tuner, then select the right frequency choice as well and mark
5103 if (hdw
->input_val
== PVR2_CVAL_INPUT_RADIO
) {
5104 hdw
->freqSelector
= 0;
5105 hdw
->freqDirty
= !0;
5106 } else if ((hdw
->input_val
== PVR2_CVAL_INPUT_TV
) ||
5107 (hdw
->input_val
== PVR2_CVAL_INPUT_DTV
)) {
5108 hdw
->freqSelector
= 1;
5109 hdw
->freqDirty
= !0;
5115 int pvr2_hdw_set_input_allowed(struct pvr2_hdw
*hdw
,
5116 unsigned int change_mask
,
5117 unsigned int change_val
)
5120 unsigned int nv
,m
,idx
;
5121 LOCK_TAKE(hdw
->big_lock
);
5123 nv
= hdw
->input_allowed_mask
& ~change_mask
;
5124 nv
|= (change_val
& change_mask
);
5125 nv
&= hdw
->input_avail_mask
;
5127 /* No legal modes left; return error instead. */
5131 hdw
->input_allowed_mask
= nv
;
5132 if ((1 << hdw
->input_val
) & hdw
->input_allowed_mask
) {
5133 /* Current mode is still in the allowed mask, so
5137 /* Select and switch to a mode that is still in the allowed
5139 if (!hdw
->input_allowed_mask
) {
5140 /* Nothing legal; give up */
5143 m
= hdw
->input_allowed_mask
;
5144 for (idx
= 0; idx
< (sizeof(m
) << 3); idx
++) {
5145 if (!((1 << idx
) & m
)) continue;
5146 pvr2_hdw_set_input(hdw
,idx
);
5150 LOCK_GIVE(hdw
->big_lock
);
5155 /* Find I2C address of eeprom */
5156 static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw
*hdw
)
5159 LOCK_TAKE(hdw
->ctl_lock
); do {
5160 hdw
->cmd_buffer
[0] = FX2CMD_GET_EEPROM_ADDR
;
5161 result
= pvr2_send_request(hdw
,
5164 if (result
< 0) break;
5165 result
= hdw
->cmd_buffer
[0];
5166 } while(0); LOCK_GIVE(hdw
->ctl_lock
);