5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/errno.h>
23 #include <linux/string.h>
24 #include <linux/slab.h>
25 #include <linux/firmware.h>
26 #include <linux/videodev2.h>
27 #include <media/v4l2-common.h>
29 #include "pvrusb2-std.h"
30 #include "pvrusb2-util.h"
31 #include "pvrusb2-hdw.h"
32 #include "pvrusb2-i2c-core.h"
33 #include "pvrusb2-tuner.h"
34 #include "pvrusb2-eeprom.h"
35 #include "pvrusb2-hdw-internal.h"
36 #include "pvrusb2-encoder.h"
37 #include "pvrusb2-debug.h"
38 #include "pvrusb2-fx2-cmd.h"
40 #define TV_MIN_FREQ 55250000L
41 #define TV_MAX_FREQ 850000000L
43 static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
44 static DEFINE_MUTEX(pvr2_unit_mtx);
47 static int initusbreset = 1;
48 static int procreload;
49 static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
50 static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
51 static int video_std[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
52 static int init_pause_msec;
54 module_param(ctlchg, int, S_IRUGO|S_IWUSR);
55 MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
56 module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
57 MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
58 module_param(initusbreset, int, S_IRUGO|S_IWUSR);
59 MODULE_PARM_DESC(initusbreset, "Do USB reset device on probe");
60 module_param(procreload, int, S_IRUGO|S_IWUSR);
61 MODULE_PARM_DESC(procreload,
62 "Attempt init failure recovery with firmware reload");
63 module_param_array(tuner, int, NULL, 0444);
64 MODULE_PARM_DESC(tuner,"specify installed tuner type");
65 module_param_array(video_std, int, NULL, 0444);
66 MODULE_PARM_DESC(video_std,"specify initial video standard");
67 module_param_array(tolerance, int, NULL, 0444);
68 MODULE_PARM_DESC(tolerance,"specify stream error tolerance");
70 #define PVR2_CTL_WRITE_ENDPOINT 0x01
71 #define PVR2_CTL_READ_ENDPOINT 0x81
73 #define PVR2_GPIO_IN 0x9008
74 #define PVR2_GPIO_OUT 0x900c
75 #define PVR2_GPIO_DIR 0x9020
77 #define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
79 #define PVR2_FIRMWARE_ENDPOINT 0x02
81 /* size of a firmware chunk */
82 #define FIRMWARE_CHUNK_SIZE 0x2000
84 /* Define the list of additional controls we'll dynamically construct based
85 on query of the cx2341x module. */
86 struct pvr2_mpeg_ids {
90 static const struct pvr2_mpeg_ids mpeg_ids[] = {
92 .strid = "audio_layer",
93 .id = V4L2_CID_MPEG_AUDIO_ENCODING,
95 .strid = "audio_bitrate",
96 .id = V4L2_CID_MPEG_AUDIO_L2_BITRATE,
98 /* Already using audio_mode elsewhere :-( */
99 .strid = "mpeg_audio_mode",
100 .id = V4L2_CID_MPEG_AUDIO_MODE,
102 .strid = "mpeg_audio_mode_extension",
103 .id = V4L2_CID_MPEG_AUDIO_MODE_EXTENSION,
105 .strid = "audio_emphasis",
106 .id = V4L2_CID_MPEG_AUDIO_EMPHASIS,
108 .strid = "audio_crc",
109 .id = V4L2_CID_MPEG_AUDIO_CRC,
111 .strid = "video_aspect",
112 .id = V4L2_CID_MPEG_VIDEO_ASPECT,
114 .strid = "video_b_frames",
115 .id = V4L2_CID_MPEG_VIDEO_B_FRAMES,
117 .strid = "video_gop_size",
118 .id = V4L2_CID_MPEG_VIDEO_GOP_SIZE,
120 .strid = "video_gop_closure",
121 .id = V4L2_CID_MPEG_VIDEO_GOP_CLOSURE,
123 .strid = "video_bitrate_mode",
124 .id = V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
126 .strid = "video_bitrate",
127 .id = V4L2_CID_MPEG_VIDEO_BITRATE,
129 .strid = "video_bitrate_peak",
130 .id = V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
132 .strid = "video_temporal_decimation",
133 .id = V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION,
135 .strid = "stream_type",
136 .id = V4L2_CID_MPEG_STREAM_TYPE,
138 .strid = "video_spatial_filter_mode",
139 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE,
141 .strid = "video_spatial_filter",
142 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
144 .strid = "video_luma_spatial_filter_type",
145 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE,
147 .strid = "video_chroma_spatial_filter_type",
148 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE,
150 .strid = "video_temporal_filter_mode",
151 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE,
153 .strid = "video_temporal_filter",
154 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER,
156 .strid = "video_median_filter_type",
157 .id = V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE,
159 .strid = "video_luma_median_filter_top",
160 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP,
162 .strid = "video_luma_median_filter_bottom",
163 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM,
165 .strid = "video_chroma_median_filter_top",
166 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP,
168 .strid = "video_chroma_median_filter_bottom",
169 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM,
172 #define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
175 static const char *control_values_srate[] = {
176 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100] = "44.1 kHz",
177 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000] = "48 kHz",
178 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000] = "32 kHz",
183 static const char *control_values_input[] = {
184 [PVR2_CVAL_INPUT_TV] = "television", /*xawtv needs this name*/
185 [PVR2_CVAL_INPUT_RADIO] = "radio",
186 [PVR2_CVAL_INPUT_SVIDEO] = "s-video",
187 [PVR2_CVAL_INPUT_COMPOSITE] = "composite",
191 static const char *control_values_audiomode[] = {
192 [V4L2_TUNER_MODE_MONO] = "Mono",
193 [V4L2_TUNER_MODE_STEREO] = "Stereo",
194 [V4L2_TUNER_MODE_LANG1] = "Lang1",
195 [V4L2_TUNER_MODE_LANG2] = "Lang2",
196 [V4L2_TUNER_MODE_LANG1_LANG2] = "Lang1+Lang2",
200 static const char *control_values_hsm[] = {
201 [PVR2_CVAL_HSM_FAIL] = "Fail",
202 [PVR2_CVAL_HSM_HIGH] = "High",
203 [PVR2_CVAL_HSM_FULL] = "Full",
207 static const char *pvr2_state_names[] = {
208 [PVR2_STATE_NONE] = "none",
209 [PVR2_STATE_DEAD] = "dead",
210 [PVR2_STATE_COLD] = "cold",
211 [PVR2_STATE_WARM] = "warm",
212 [PVR2_STATE_ERROR] = "error",
213 [PVR2_STATE_READY] = "ready",
214 [PVR2_STATE_RUN] = "run",
218 static void pvr2_hdw_state_sched(struct pvr2_hdw *);
219 static int pvr2_hdw_state_eval(struct pvr2_hdw *);
220 static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *,unsigned long);
221 static void pvr2_hdw_worker_i2c(struct work_struct *work);
222 static void pvr2_hdw_worker_poll(struct work_struct *work);
223 static void pvr2_hdw_worker_init(struct work_struct *work);
224 static int pvr2_hdw_wait(struct pvr2_hdw *,int state);
225 static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *);
226 static void pvr2_hdw_state_log_state(struct pvr2_hdw *);
227 static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
228 static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
229 static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
230 static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw);
231 static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw);
232 static void pvr2_hdw_quiescent_timeout(unsigned long);
233 static void pvr2_hdw_encoder_wait_timeout(unsigned long);
234 static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
235 unsigned int timeout,int probe_fl,
236 void *write_data,unsigned int write_len,
237 void *read_data,unsigned int read_len);
240 static void trace_stbit(const char *name,int val)
242 pvr2_trace(PVR2_TRACE_STBITS,
243 "State bit %s <-- %s",
244 name,(val ? "true" : "false"));
247 static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
249 struct pvr2_hdw *hdw = cptr->hdw;
250 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) {
251 *vp = hdw->freqTable[hdw->freqProgSlot-1];
258 static int ctrl_channelfreq_set(struct pvr2_ctrl *cptr,int m,int v)
260 struct pvr2_hdw *hdw = cptr->hdw;
261 unsigned int slotId = hdw->freqProgSlot;
262 if ((slotId > 0) && (slotId <= FREQTABLE_SIZE)) {
263 hdw->freqTable[slotId-1] = v;
264 /* Handle side effects correctly - if we're tuned to this
265 slot, then forgot the slot id relation since the stored
266 frequency has been changed. */
267 if (hdw->freqSelector) {
268 if (hdw->freqSlotRadio == slotId) {
269 hdw->freqSlotRadio = 0;
272 if (hdw->freqSlotTelevision == slotId) {
273 hdw->freqSlotTelevision = 0;
280 static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
282 *vp = cptr->hdw->freqProgSlot;
286 static int ctrl_channelprog_set(struct pvr2_ctrl *cptr,int m,int v)
288 struct pvr2_hdw *hdw = cptr->hdw;
289 if ((v >= 0) && (v <= FREQTABLE_SIZE)) {
290 hdw->freqProgSlot = v;
295 static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
297 struct pvr2_hdw *hdw = cptr->hdw;
298 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
302 static int ctrl_channel_set(struct pvr2_ctrl *cptr,int m,int slotId)
305 struct pvr2_hdw *hdw = cptr->hdw;
306 if ((slotId < 0) || (slotId > FREQTABLE_SIZE)) return 0;
308 freq = hdw->freqTable[slotId-1];
310 pvr2_hdw_set_cur_freq(hdw,freq);
312 if (hdw->freqSelector) {
313 hdw->freqSlotRadio = slotId;
315 hdw->freqSlotTelevision = slotId;
320 static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
322 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
326 static int ctrl_freq_is_dirty(struct pvr2_ctrl *cptr)
328 return cptr->hdw->freqDirty != 0;
331 static void ctrl_freq_clear_dirty(struct pvr2_ctrl *cptr)
333 cptr->hdw->freqDirty = 0;
336 static int ctrl_freq_set(struct pvr2_ctrl *cptr,int m,int v)
338 pvr2_hdw_set_cur_freq(cptr->hdw,v);
342 static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
344 /* Actual maximum depends on the video standard in effect. */
345 if (cptr->hdw->std_mask_cur & V4L2_STD_525_60) {
353 static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
355 /* Actual minimum depends on device digitizer type. */
356 if (cptr->hdw->hdw_desc->flag_has_cx25840) {
364 static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
366 *vp = cptr->hdw->input_val;
370 static int ctrl_set_input(struct pvr2_ctrl *cptr,int m,int v)
372 struct pvr2_hdw *hdw = cptr->hdw;
374 if (hdw->input_val != v) {
376 hdw->input_dirty = !0;
379 /* Handle side effects - if we switch to a mode that needs the RF
380 tuner, then select the right frequency choice as well and mark
382 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
383 hdw->freqSelector = 0;
385 } else if (hdw->input_val == PVR2_CVAL_INPUT_TV) {
386 hdw->freqSelector = 1;
392 static int ctrl_isdirty_input(struct pvr2_ctrl *cptr)
394 return cptr->hdw->input_dirty != 0;
397 static void ctrl_cleardirty_input(struct pvr2_ctrl *cptr)
399 cptr->hdw->input_dirty = 0;
403 static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
406 struct pvr2_hdw *hdw = cptr->hdw;
407 if (hdw->tuner_signal_stale) {
408 pvr2_i2c_core_status_poll(hdw);
410 fv = hdw->tuner_signal_info.rangehigh;
412 /* Safety fallback */
416 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
425 static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
428 struct pvr2_hdw *hdw = cptr->hdw;
429 if (hdw->tuner_signal_stale) {
430 pvr2_i2c_core_status_poll(hdw);
432 fv = hdw->tuner_signal_info.rangelow;
434 /* Safety fallback */
438 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
447 static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl *cptr)
449 return cptr->hdw->enc_stale != 0;
452 static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl *cptr)
454 cptr->hdw->enc_stale = 0;
455 cptr->hdw->enc_unsafe_stale = 0;
458 static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
461 struct v4l2_ext_controls cs;
462 struct v4l2_ext_control c1;
463 memset(&cs,0,sizeof(cs));
464 memset(&c1,0,sizeof(c1));
467 c1.id = cptr->info->v4l_id;
468 ret = cx2341x_ext_ctrls(&cptr->hdw->enc_ctl_state, 0, &cs,
475 static int ctrl_cx2341x_set(struct pvr2_ctrl *cptr,int m,int v)
478 struct pvr2_hdw *hdw = cptr->hdw;
479 struct v4l2_ext_controls cs;
480 struct v4l2_ext_control c1;
481 memset(&cs,0,sizeof(cs));
482 memset(&c1,0,sizeof(c1));
485 c1.id = cptr->info->v4l_id;
487 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
488 hdw->state_encoder_run, &cs,
491 /* Oops. cx2341x is telling us it's not safe to change
492 this control while we're capturing. Make a note of this
493 fact so that the pipeline will be stopped the next time
494 controls are committed. Then go on ahead and store this
496 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
499 if (!ret) hdw->enc_unsafe_stale = !0;
506 static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl *cptr)
508 struct v4l2_queryctrl qctrl;
509 struct pvr2_ctl_info *info;
510 qctrl.id = cptr->info->v4l_id;
511 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl);
512 /* Strip out the const so we can adjust a function pointer. It's
513 OK to do this here because we know this is a dynamically created
514 control, so the underlying storage for the info pointer is (a)
515 private to us, and (b) not in read-only storage. Either we do
516 this or we significantly complicate the underlying control
518 info = (struct pvr2_ctl_info *)(cptr->info);
519 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) {
520 if (info->set_value) {
521 info->set_value = NULL;
524 if (!(info->set_value)) {
525 info->set_value = ctrl_cx2341x_set;
531 static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
533 *vp = cptr->hdw->state_pipeline_req;
537 static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
539 *vp = cptr->hdw->master_state;
543 static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
545 int result = pvr2_hdw_is_hsm(cptr->hdw);
546 *vp = PVR2_CVAL_HSM_FULL;
547 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
548 if (result) *vp = PVR2_CVAL_HSM_HIGH;
552 static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
554 *vp = cptr->hdw->std_mask_avail;
558 static int ctrl_stdavail_set(struct pvr2_ctrl *cptr,int m,int v)
560 struct pvr2_hdw *hdw = cptr->hdw;
562 ns = hdw->std_mask_avail;
563 ns = (ns & ~m) | (v & m);
564 if (ns == hdw->std_mask_avail) return 0;
565 hdw->std_mask_avail = ns;
566 pvr2_hdw_internal_set_std_avail(hdw);
567 pvr2_hdw_internal_find_stdenum(hdw);
571 static int ctrl_std_val_to_sym(struct pvr2_ctrl *cptr,int msk,int val,
572 char *bufPtr,unsigned int bufSize,
575 *len = pvr2_std_id_to_str(bufPtr,bufSize,msk & val);
579 static int ctrl_std_sym_to_val(struct pvr2_ctrl *cptr,
580 const char *bufPtr,unsigned int bufSize,
585 ret = pvr2_std_str_to_id(&id,bufPtr,bufSize);
586 if (ret < 0) return ret;
587 if (mskp) *mskp = id;
588 if (valp) *valp = id;
592 static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
594 *vp = cptr->hdw->std_mask_cur;
598 static int ctrl_stdcur_set(struct pvr2_ctrl *cptr,int m,int v)
600 struct pvr2_hdw *hdw = cptr->hdw;
602 ns = hdw->std_mask_cur;
603 ns = (ns & ~m) | (v & m);
604 if (ns == hdw->std_mask_cur) return 0;
605 hdw->std_mask_cur = ns;
607 pvr2_hdw_internal_find_stdenum(hdw);
611 static int ctrl_stdcur_is_dirty(struct pvr2_ctrl *cptr)
613 return cptr->hdw->std_dirty != 0;
616 static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl *cptr)
618 cptr->hdw->std_dirty = 0;
621 static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
623 struct pvr2_hdw *hdw = cptr->hdw;
624 pvr2_i2c_core_status_poll(hdw);
625 *vp = hdw->tuner_signal_info.signal;
629 static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
632 unsigned int subchan;
633 struct pvr2_hdw *hdw = cptr->hdw;
634 pvr2_i2c_core_status_poll(hdw);
635 subchan = hdw->tuner_signal_info.rxsubchans;
636 if (subchan & V4L2_TUNER_SUB_MONO) {
637 val |= (1 << V4L2_TUNER_MODE_MONO);
639 if (subchan & V4L2_TUNER_SUB_STEREO) {
640 val |= (1 << V4L2_TUNER_MODE_STEREO);
642 if (subchan & V4L2_TUNER_SUB_LANG1) {
643 val |= (1 << V4L2_TUNER_MODE_LANG1);
645 if (subchan & V4L2_TUNER_SUB_LANG2) {
646 val |= (1 << V4L2_TUNER_MODE_LANG2);
653 static int ctrl_stdenumcur_set(struct pvr2_ctrl *cptr,int m,int v)
655 struct pvr2_hdw *hdw = cptr->hdw;
656 if (v < 0) return -EINVAL;
657 if (v > hdw->std_enum_cnt) return -EINVAL;
658 hdw->std_enum_cur = v;
661 if (hdw->std_mask_cur == hdw->std_defs[v].id) return 0;
662 hdw->std_mask_cur = hdw->std_defs[v].id;
668 static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
670 *vp = cptr->hdw->std_enum_cur;
675 static int ctrl_stdenumcur_is_dirty(struct pvr2_ctrl *cptr)
677 return cptr->hdw->std_dirty != 0;
681 static void ctrl_stdenumcur_clear_dirty(struct pvr2_ctrl *cptr)
683 cptr->hdw->std_dirty = 0;
687 #define DEFINT(vmin,vmax) \
688 .type = pvr2_ctl_int, \
689 .def.type_int.min_value = vmin, \
690 .def.type_int.max_value = vmax
692 #define DEFENUM(tab) \
693 .type = pvr2_ctl_enum, \
694 .def.type_enum.count = ARRAY_SIZE(tab), \
695 .def.type_enum.value_names = tab
698 .type = pvr2_ctl_bool
700 #define DEFMASK(msk,tab) \
701 .type = pvr2_ctl_bitmask, \
702 .def.type_bitmask.valid_bits = msk, \
703 .def.type_bitmask.bit_names = tab
705 #define DEFREF(vname) \
706 .set_value = ctrl_set_##vname, \
707 .get_value = ctrl_get_##vname, \
708 .is_dirty = ctrl_isdirty_##vname, \
709 .clear_dirty = ctrl_cleardirty_##vname
712 #define VCREATE_FUNCS(vname) \
713 static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
714 {*vp = cptr->hdw->vname##_val; return 0;} \
715 static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
716 {cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
717 static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
718 {return cptr->hdw->vname##_dirty != 0;} \
719 static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
720 {cptr->hdw->vname##_dirty = 0;}
722 VCREATE_FUNCS(brightness)
723 VCREATE_FUNCS(contrast)
724 VCREATE_FUNCS(saturation)
726 VCREATE_FUNCS(volume)
727 VCREATE_FUNCS(balance)
729 VCREATE_FUNCS(treble)
731 VCREATE_FUNCS(audiomode)
732 VCREATE_FUNCS(res_hor)
733 VCREATE_FUNCS(res_ver)
736 /* Table definition of all controls which can be manipulated */
737 static const struct pvr2_ctl_info control_defs[] = {
739 .v4l_id = V4L2_CID_BRIGHTNESS,
740 .desc = "Brightness",
741 .name = "brightness",
742 .default_value = 128,
746 .v4l_id = V4L2_CID_CONTRAST,
753 .v4l_id = V4L2_CID_SATURATION,
754 .desc = "Saturation",
755 .name = "saturation",
760 .v4l_id = V4L2_CID_HUE,
767 .v4l_id = V4L2_CID_AUDIO_VOLUME,
770 .default_value = 62000,
774 .v4l_id = V4L2_CID_AUDIO_BALANCE,
779 DEFINT(-32768,32767),
781 .v4l_id = V4L2_CID_AUDIO_BASS,
786 DEFINT(-32768,32767),
788 .v4l_id = V4L2_CID_AUDIO_TREBLE,
793 DEFINT(-32768,32767),
795 .v4l_id = V4L2_CID_AUDIO_MUTE,
802 .desc = "Video Source",
804 .internal_id = PVR2_CID_INPUT,
805 .default_value = PVR2_CVAL_INPUT_TV,
807 DEFENUM(control_values_input),
809 .desc = "Audio Mode",
810 .name = "audio_mode",
811 .internal_id = PVR2_CID_AUDIOMODE,
812 .default_value = V4L2_TUNER_MODE_STEREO,
814 DEFENUM(control_values_audiomode),
816 .desc = "Horizontal capture resolution",
817 .name = "resolution_hor",
818 .internal_id = PVR2_CID_HRES,
819 .default_value = 720,
823 .desc = "Vertical capture resolution",
824 .name = "resolution_ver",
825 .internal_id = PVR2_CID_VRES,
826 .default_value = 480,
829 /* Hook in check for video standard and adjust maximum
830 depending on the standard. */
831 .get_max_value = ctrl_vres_max_get,
832 .get_min_value = ctrl_vres_min_get,
834 .v4l_id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
835 .default_value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
836 .desc = "Audio Sampling Frequency",
839 DEFENUM(control_values_srate),
841 .desc = "Tuner Frequency (Hz)",
843 .internal_id = PVR2_CID_FREQUENCY,
845 .set_value = ctrl_freq_set,
846 .get_value = ctrl_freq_get,
847 .is_dirty = ctrl_freq_is_dirty,
848 .clear_dirty = ctrl_freq_clear_dirty,
850 /* Hook in check for input value (tv/radio) and adjust
851 max/min values accordingly */
852 .get_max_value = ctrl_freq_max_get,
853 .get_min_value = ctrl_freq_min_get,
857 .set_value = ctrl_channel_set,
858 .get_value = ctrl_channel_get,
859 DEFINT(0,FREQTABLE_SIZE),
861 .desc = "Channel Program Frequency",
862 .name = "freq_table_value",
863 .set_value = ctrl_channelfreq_set,
864 .get_value = ctrl_channelfreq_get,
866 /* Hook in check for input value (tv/radio) and adjust
867 max/min values accordingly */
868 .get_max_value = ctrl_freq_max_get,
869 .get_min_value = ctrl_freq_min_get,
871 .desc = "Channel Program ID",
872 .name = "freq_table_channel",
873 .set_value = ctrl_channelprog_set,
874 .get_value = ctrl_channelprog_get,
875 DEFINT(0,FREQTABLE_SIZE),
877 .desc = "Streaming Enabled",
878 .name = "streaming_enabled",
879 .get_value = ctrl_streamingenabled_get,
884 .get_value = ctrl_hsm_get,
885 DEFENUM(control_values_hsm),
887 .desc = "Master State",
888 .name = "master_state",
889 .get_value = ctrl_masterstate_get,
890 DEFENUM(pvr2_state_names),
892 .desc = "Signal Present",
893 .name = "signal_present",
894 .get_value = ctrl_signal_get,
897 .desc = "Audio Modes Present",
898 .name = "audio_modes_present",
899 .get_value = ctrl_audio_modes_present_get,
900 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
901 v4l. Nothing outside of this module cares about this,
902 but I reuse it in order to also reuse the
903 control_values_audiomode string table. */
904 DEFMASK(((1 << V4L2_TUNER_MODE_MONO)|
905 (1 << V4L2_TUNER_MODE_STEREO)|
906 (1 << V4L2_TUNER_MODE_LANG1)|
907 (1 << V4L2_TUNER_MODE_LANG2)),
908 control_values_audiomode),
910 .desc = "Video Standards Available Mask",
911 .name = "video_standard_mask_available",
912 .internal_id = PVR2_CID_STDAVAIL,
914 .get_value = ctrl_stdavail_get,
915 .set_value = ctrl_stdavail_set,
916 .val_to_sym = ctrl_std_val_to_sym,
917 .sym_to_val = ctrl_std_sym_to_val,
918 .type = pvr2_ctl_bitmask,
920 .desc = "Video Standards In Use Mask",
921 .name = "video_standard_mask_active",
922 .internal_id = PVR2_CID_STDCUR,
924 .get_value = ctrl_stdcur_get,
925 .set_value = ctrl_stdcur_set,
926 .is_dirty = ctrl_stdcur_is_dirty,
927 .clear_dirty = ctrl_stdcur_clear_dirty,
928 .val_to_sym = ctrl_std_val_to_sym,
929 .sym_to_val = ctrl_std_sym_to_val,
930 .type = pvr2_ctl_bitmask,
932 .desc = "Video Standard Name",
933 .name = "video_standard",
934 .internal_id = PVR2_CID_STDENUM,
936 .get_value = ctrl_stdenumcur_get,
937 .set_value = ctrl_stdenumcur_set,
938 .is_dirty = ctrl_stdenumcur_is_dirty,
939 .clear_dirty = ctrl_stdenumcur_clear_dirty,
940 .type = pvr2_ctl_enum,
944 #define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
947 const char *pvr2_config_get_name(enum pvr2_config cfg)
950 case pvr2_config_empty: return "empty";
951 case pvr2_config_mpeg: return "mpeg";
952 case pvr2_config_vbi: return "vbi";
953 case pvr2_config_pcm: return "pcm";
954 case pvr2_config_rawvideo: return "raw video";
960 struct usb_device *pvr2_hdw_get_dev(struct pvr2_hdw *hdw)
966 unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *hdw)
968 return hdw->serial_number;
972 const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *hdw)
974 return hdw->bus_info;
978 unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw *hdw)
980 return hdw->freqSelector ? hdw->freqValTelevision : hdw->freqValRadio;
983 /* Set the currently tuned frequency and account for all possible
984 driver-core side effects of this action. */
985 void pvr2_hdw_set_cur_freq(struct pvr2_hdw *hdw,unsigned long val)
987 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
988 if (hdw->freqSelector) {
989 /* Swing over to radio frequency selection */
990 hdw->freqSelector = 0;
993 if (hdw->freqValRadio != val) {
994 hdw->freqValRadio = val;
995 hdw->freqSlotRadio = 0;
999 if (!(hdw->freqSelector)) {
1000 /* Swing over to television frequency selection */
1001 hdw->freqSelector = 1;
1002 hdw->freqDirty = !0;
1004 if (hdw->freqValTelevision != val) {
1005 hdw->freqValTelevision = val;
1006 hdw->freqSlotTelevision = 0;
1007 hdw->freqDirty = !0;
1012 int pvr2_hdw_get_unit_number(struct pvr2_hdw *hdw)
1014 return hdw->unit_number;
1018 /* Attempt to locate one of the given set of files. Messages are logged
1019 appropriate to what has been found. The return value will be 0 or
1020 greater on success (it will be the index of the file name found) and
1021 fw_entry will be filled in. Otherwise a negative error is returned on
1022 failure. If the return value is -ENOENT then no viable firmware file
1023 could be located. */
1024 static int pvr2_locate_firmware(struct pvr2_hdw *hdw,
1025 const struct firmware **fw_entry,
1026 const char *fwtypename,
1027 unsigned int fwcount,
1028 const char *fwnames[])
1032 for (idx = 0; idx < fwcount; idx++) {
1033 ret = request_firmware(fw_entry,
1035 &hdw->usb_dev->dev);
1037 trace_firmware("Located %s firmware: %s;"
1043 if (ret == -ENOENT) continue;
1044 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1045 "request_firmware fatal error with code=%d",ret);
1048 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1050 " Device %s firmware"
1051 " seems to be missing.",
1053 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1054 "Did you install the pvrusb2 firmware files"
1055 " in their proper location?");
1057 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1058 "request_firmware unable to locate %s file %s",
1059 fwtypename,fwnames[0]);
1061 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1062 "request_firmware unable to locate"
1063 " one of the following %s files:",
1065 for (idx = 0; idx < fwcount; idx++) {
1066 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1067 "request_firmware: Failed to find %s",
1076 * pvr2_upload_firmware1().
1078 * Send the 8051 firmware to the device. After the upload, arrange for
1079 * device to re-enumerate.
1081 * NOTE : the pointer to the firmware data given by request_firmware()
1082 * is not suitable for an usb transaction.
1085 static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
1087 const struct firmware *fw_entry = NULL;
1093 if (!hdw->hdw_desc->fx2_firmware.cnt) {
1094 hdw->fw1_state = FW1_STATE_OK;
1095 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1096 "Connected device type defines"
1097 " no firmware to upload; ignoring firmware");
1101 hdw->fw1_state = FW1_STATE_FAILED; // default result
1103 trace_firmware("pvr2_upload_firmware1");
1105 ret = pvr2_locate_firmware(hdw,&fw_entry,"fx2 controller",
1106 hdw->hdw_desc->fx2_firmware.cnt,
1107 hdw->hdw_desc->fx2_firmware.lst);
1109 if (ret == -ENOENT) hdw->fw1_state = FW1_STATE_MISSING;
1113 usb_settoggle(hdw->usb_dev, 0 & 0xf, !(0 & USB_DIR_IN), 0);
1114 usb_clear_halt(hdw->usb_dev, usb_sndbulkpipe(hdw->usb_dev, 0 & 0x7f));
1116 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
1118 if (fw_entry->size != 0x2000){
1119 pvr2_trace(PVR2_TRACE_ERROR_LEGS,"wrong fx2 firmware size");
1120 release_firmware(fw_entry);
1124 fw_ptr = kmalloc(0x800, GFP_KERNEL);
1125 if (fw_ptr == NULL){
1126 release_firmware(fw_entry);
1130 /* We have to hold the CPU during firmware upload. */
1131 pvr2_hdw_cpureset_assert(hdw,1);
1133 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1137 for(address = 0; address < fw_entry->size; address += 0x800) {
1138 memcpy(fw_ptr, fw_entry->data + address, 0x800);
1139 ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address,
1140 0, fw_ptr, 0x800, HZ);
1143 trace_firmware("Upload done, releasing device's CPU");
1145 /* Now release the CPU. It will disconnect and reconnect later. */
1146 pvr2_hdw_cpureset_assert(hdw,0);
1149 release_firmware(fw_entry);
1151 trace_firmware("Upload done (%d bytes sent)",ret);
1153 /* We should have written 8192 bytes */
1155 hdw->fw1_state = FW1_STATE_RELOAD;
1164 * pvr2_upload_firmware2()
1166 * This uploads encoder firmware on endpoint 2.
1170 int pvr2_upload_firmware2(struct pvr2_hdw *hdw)
1172 const struct firmware *fw_entry = NULL;
1174 unsigned int pipe, fw_len, fw_done, bcnt, icnt;
1178 static const char *fw_files[] = {
1179 CX2341X_FIRM_ENC_FILENAME,
1182 if (hdw->hdw_desc->flag_skip_cx23416_firmware) {
1186 trace_firmware("pvr2_upload_firmware2");
1188 ret = pvr2_locate_firmware(hdw,&fw_entry,"encoder",
1189 ARRAY_SIZE(fw_files), fw_files);
1190 if (ret < 0) return ret;
1193 /* Since we're about to completely reinitialize the encoder,
1194 invalidate our cached copy of its configuration state. Next
1195 time we configure the encoder, then we'll fully configure it. */
1196 hdw->enc_cur_valid = 0;
1198 /* First prepare firmware loading */
1199 ret |= pvr2_write_register(hdw, 0x0048, 0xffffffff); /*interrupt mask*/
1200 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000088); /*gpio dir*/
1201 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1202 ret |= pvr2_hdw_cmd_deep_reset(hdw);
1203 ret |= pvr2_write_register(hdw, 0xa064, 0x00000000); /*APU command*/
1204 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000408); /*gpio dir*/
1205 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1206 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffed); /*VPU ctrl*/
1207 ret |= pvr2_write_register(hdw, 0x9054, 0xfffffffd); /*reset hw blocks*/
1208 ret |= pvr2_write_register(hdw, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1209 ret |= pvr2_write_register(hdw, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1210 ret |= pvr2_write_register(hdw, 0x0700, 0x00000000); /*I2C clock*/
1211 ret |= pvr2_write_register(hdw, 0xaa00, 0x00000000); /*unknown*/
1212 ret |= pvr2_write_register(hdw, 0xaa04, 0x00057810); /*unknown*/
1213 ret |= pvr2_write_register(hdw, 0xaa10, 0x00148500); /*unknown*/
1214 ret |= pvr2_write_register(hdw, 0xaa18, 0x00840000); /*unknown*/
1215 LOCK_TAKE(hdw->ctl_lock); do {
1216 hdw->cmd_buffer[0] = FX2CMD_FWPOST1;
1217 ret |= pvr2_send_request(hdw,hdw->cmd_buffer,1,NULL,0);
1218 hdw->cmd_buffer[0] = FX2CMD_MEMSEL;
1219 hdw->cmd_buffer[1] = 0;
1220 ret |= pvr2_send_request(hdw,hdw->cmd_buffer,2,NULL,0);
1221 } while (0); LOCK_GIVE(hdw->ctl_lock);
1224 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1225 "firmware2 upload prep failed, ret=%d",ret);
1226 release_firmware(fw_entry);
1230 /* Now send firmware */
1232 fw_len = fw_entry->size;
1234 if (fw_len % sizeof(u32)) {
1235 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1236 "size of %s firmware"
1237 " must be a multiple of %zu bytes",
1238 fw_files[fwidx],sizeof(u32));
1239 release_firmware(fw_entry);
1243 fw_ptr = kmalloc(FIRMWARE_CHUNK_SIZE, GFP_KERNEL);
1244 if (fw_ptr == NULL){
1245 release_firmware(fw_entry);
1246 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1247 "failed to allocate memory for firmware2 upload");
1251 pipe = usb_sndbulkpipe(hdw->usb_dev, PVR2_FIRMWARE_ENDPOINT);
1254 for (fw_done = 0; fw_done < fw_len;) {
1255 bcnt = fw_len - fw_done;
1256 if (bcnt > FIRMWARE_CHUNK_SIZE) bcnt = FIRMWARE_CHUNK_SIZE;
1257 memcpy(fw_ptr, fw_entry->data + fw_done, bcnt);
1258 /* Usbsnoop log shows that we must swap bytes... */
1259 for (icnt = 0; icnt < bcnt/4 ; icnt++)
1260 ((u32 *)fw_ptr)[icnt] =
1261 ___swab32(((u32 *)fw_ptr)[icnt]);
1263 ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt,
1264 &actual_length, HZ);
1265 ret |= (actual_length != bcnt);
1270 trace_firmware("upload of %s : %i / %i ",
1271 fw_files[fwidx],fw_done,fw_len);
1274 release_firmware(fw_entry);
1277 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1278 "firmware2 upload transfer failure");
1284 ret |= pvr2_write_register(hdw, 0x9054, 0xffffffff); /*reset hw blocks*/
1285 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffe8); /*VPU ctrl*/
1286 LOCK_TAKE(hdw->ctl_lock); do {
1287 hdw->cmd_buffer[0] = FX2CMD_MEMSEL;
1288 hdw->cmd_buffer[1] = 0;
1289 ret |= pvr2_send_request(hdw,hdw->cmd_buffer,2,NULL,0);
1290 } while (0); LOCK_GIVE(hdw->ctl_lock);
1293 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1294 "firmware2 upload post-proc failure");
1300 static const char *pvr2_get_state_name(unsigned int st)
1302 if (st < ARRAY_SIZE(pvr2_state_names)) {
1303 return pvr2_state_names[st];
1308 static int pvr2_decoder_enable(struct pvr2_hdw *hdw,int enablefl)
1310 if (!hdw->decoder_ctrl) {
1311 if (!hdw->flag_decoder_missed) {
1312 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1313 "WARNING: No decoder present");
1314 hdw->flag_decoder_missed = !0;
1315 trace_stbit("flag_decoder_missed",
1316 hdw->flag_decoder_missed);
1320 hdw->decoder_ctrl->enable(hdw->decoder_ctrl->ctxt,enablefl);
1325 void pvr2_hdw_set_decoder(struct pvr2_hdw *hdw,struct pvr2_decoder_ctrl *ptr)
1327 if (hdw->decoder_ctrl == ptr) return;
1328 hdw->decoder_ctrl = ptr;
1329 if (hdw->decoder_ctrl && hdw->flag_decoder_missed) {
1330 hdw->flag_decoder_missed = 0;
1331 trace_stbit("flag_decoder_missed",
1332 hdw->flag_decoder_missed);
1333 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1334 "Decoder has appeared");
1335 pvr2_hdw_state_sched(hdw);
1340 int pvr2_hdw_get_state(struct pvr2_hdw *hdw)
1342 return hdw->master_state;
1346 static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *hdw)
1348 if (!hdw->flag_tripped) return 0;
1349 hdw->flag_tripped = 0;
1350 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1351 "Clearing driver error statuss");
1356 int pvr2_hdw_untrip(struct pvr2_hdw *hdw)
1359 LOCK_TAKE(hdw->big_lock); do {
1360 fl = pvr2_hdw_untrip_unlocked(hdw);
1361 } while (0); LOCK_GIVE(hdw->big_lock);
1362 if (fl) pvr2_hdw_state_sched(hdw);
1367 const char *pvr2_hdw_get_state_name(unsigned int id)
1369 if (id >= ARRAY_SIZE(pvr2_state_names)) return NULL;
1370 return pvr2_state_names[id];
1374 int pvr2_hdw_get_streaming(struct pvr2_hdw *hdw)
1376 return hdw->state_pipeline_req != 0;
1380 int pvr2_hdw_set_streaming(struct pvr2_hdw *hdw,int enable_flag)
1383 LOCK_TAKE(hdw->big_lock); do {
1384 pvr2_hdw_untrip_unlocked(hdw);
1385 if ((!enable_flag) != !(hdw->state_pipeline_req)) {
1386 hdw->state_pipeline_req = enable_flag != 0;
1387 pvr2_trace(PVR2_TRACE_START_STOP,
1388 "/*--TRACE_STREAM--*/ %s",
1389 enable_flag ? "enable" : "disable");
1391 pvr2_hdw_state_sched(hdw);
1392 } while (0); LOCK_GIVE(hdw->big_lock);
1393 if ((ret = pvr2_hdw_wait(hdw,0)) < 0) return ret;
1395 while ((st = hdw->master_state) != PVR2_STATE_RUN) {
1396 if (st != PVR2_STATE_READY) return -EIO;
1397 if ((ret = pvr2_hdw_wait(hdw,st)) < 0) return ret;
1404 int pvr2_hdw_set_stream_type(struct pvr2_hdw *hdw,enum pvr2_config config)
1407 LOCK_TAKE(hdw->big_lock);
1408 if ((fl = (hdw->desired_stream_type != config)) != 0) {
1409 hdw->desired_stream_type = config;
1410 hdw->state_pipeline_config = 0;
1411 trace_stbit("state_pipeline_config",
1412 hdw->state_pipeline_config);
1413 pvr2_hdw_state_sched(hdw);
1415 LOCK_GIVE(hdw->big_lock);
1417 return pvr2_hdw_wait(hdw,0);
1421 static int get_default_tuner_type(struct pvr2_hdw *hdw)
1423 int unit_number = hdw->unit_number;
1425 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1426 tp = tuner[unit_number];
1428 if (tp < 0) return -EINVAL;
1429 hdw->tuner_type = tp;
1430 hdw->tuner_updated = !0;
1435 static v4l2_std_id get_default_standard(struct pvr2_hdw *hdw)
1437 int unit_number = hdw->unit_number;
1439 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1440 tp = video_std[unit_number];
1447 static unsigned int get_default_error_tolerance(struct pvr2_hdw *hdw)
1449 int unit_number = hdw->unit_number;
1451 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1452 tp = tolerance[unit_number];
1458 static int pvr2_hdw_check_firmware(struct pvr2_hdw *hdw)
1460 /* Try a harmless request to fetch the eeprom's address over
1461 endpoint 1. See what happens. Only the full FX2 image can
1462 respond to this. If this probe fails then likely the FX2
1463 firmware needs be loaded. */
1465 LOCK_TAKE(hdw->ctl_lock); do {
1466 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
1467 result = pvr2_send_request_ex(hdw,HZ*1,!0,
1470 if (result < 0) break;
1471 } while(0); LOCK_GIVE(hdw->ctl_lock);
1473 pvr2_trace(PVR2_TRACE_INIT,
1474 "Probe of device endpoint 1 result status %d",
1477 pvr2_trace(PVR2_TRACE_INIT,
1478 "Probe of device endpoint 1 succeeded");
1483 struct pvr2_std_hack {
1484 v4l2_std_id pat; /* Pattern to match */
1485 v4l2_std_id msk; /* Which bits we care about */
1486 v4l2_std_id std; /* What additional standards or default to set */
1489 /* This data structure labels specific combinations of standards from
1490 tveeprom that we'll try to recognize. If we recognize one, then assume
1491 a specified default standard to use. This is here because tveeprom only
1492 tells us about available standards not the intended default standard (if
1493 any) for the device in question. We guess the default based on what has
1494 been reported as available. Note that this is only for guessing a
1495 default - which can always be overridden explicitly - and if the user
1496 has otherwise named a default then that default will always be used in
1497 place of this table. */
1498 const static struct pvr2_std_hack std_eeprom_maps[] = {
1500 .pat = V4L2_STD_B|V4L2_STD_GH,
1501 .std = V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_PAL_G,
1505 .std = V4L2_STD_NTSC_M,
1508 .pat = V4L2_STD_PAL_I,
1509 .std = V4L2_STD_PAL_I,
1512 .pat = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1513 .std = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1517 .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K,
1521 static void pvr2_hdw_setup_std(struct pvr2_hdw *hdw)
1525 v4l2_std_id std1,std2,std3;
1527 std1 = get_default_standard(hdw);
1528 std3 = std1 ? 0 : hdw->hdw_desc->default_std_mask;
1530 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
1531 pvr2_trace(PVR2_TRACE_STD,
1532 "Supported video standard(s) reported available"
1533 " in hardware: %.*s",
1536 hdw->std_mask_avail = hdw->std_mask_eeprom;
1538 std2 = (std1|std3) & ~hdw->std_mask_avail;
1540 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
1541 pvr2_trace(PVR2_TRACE_STD,
1542 "Expanding supported video standards"
1543 " to include: %.*s",
1545 hdw->std_mask_avail |= std2;
1548 pvr2_hdw_internal_set_std_avail(hdw);
1551 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
1552 pvr2_trace(PVR2_TRACE_STD,
1553 "Initial video standard forced to %.*s",
1555 hdw->std_mask_cur = std1;
1556 hdw->std_dirty = !0;
1557 pvr2_hdw_internal_find_stdenum(hdw);
1561 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1562 pvr2_trace(PVR2_TRACE_STD,
1563 "Initial video standard"
1564 " (determined by device type): %.*s",bcnt,buf);
1565 hdw->std_mask_cur = std3;
1566 hdw->std_dirty = !0;
1567 pvr2_hdw_internal_find_stdenum(hdw);
1573 for (idx = 0; idx < ARRAY_SIZE(std_eeprom_maps); idx++) {
1574 if (std_eeprom_maps[idx].msk ?
1575 ((std_eeprom_maps[idx].pat ^
1576 hdw->std_mask_eeprom) &
1577 std_eeprom_maps[idx].msk) :
1578 (std_eeprom_maps[idx].pat !=
1579 hdw->std_mask_eeprom)) continue;
1580 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1581 std_eeprom_maps[idx].std);
1582 pvr2_trace(PVR2_TRACE_STD,
1583 "Initial video standard guessed as %.*s",
1585 hdw->std_mask_cur = std_eeprom_maps[idx].std;
1586 hdw->std_dirty = !0;
1587 pvr2_hdw_internal_find_stdenum(hdw);
1592 if (hdw->std_enum_cnt > 1) {
1593 // Autoselect the first listed standard
1594 hdw->std_enum_cur = 1;
1595 hdw->std_mask_cur = hdw->std_defs[hdw->std_enum_cur-1].id;
1596 hdw->std_dirty = !0;
1597 pvr2_trace(PVR2_TRACE_STD,
1598 "Initial video standard auto-selected to %s",
1599 hdw->std_defs[hdw->std_enum_cur-1].name);
1603 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1604 "Unable to select a viable initial video standard");
1608 static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
1612 struct pvr2_ctrl *cptr;
1614 if (hdw->hdw_desc->fx2_firmware.cnt) {
1617 (hdw->usb_intf->cur_altsetting->desc.bNumEndpoints
1620 pvr2_trace(PVR2_TRACE_INIT,
1621 "USB endpoint config looks strange"
1622 "; possibly firmware needs to be"
1627 reloadFl = !pvr2_hdw_check_firmware(hdw);
1629 pvr2_trace(PVR2_TRACE_INIT,
1630 "Check for FX2 firmware failed"
1631 "; possibly firmware needs to be"
1636 if (pvr2_upload_firmware1(hdw) != 0) {
1637 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1638 "Failure uploading firmware1");
1643 hdw->fw1_state = FW1_STATE_OK;
1646 pvr2_hdw_device_reset(hdw);
1648 if (!pvr2_hdw_dev_ok(hdw)) return;
1650 for (idx = 0; idx < hdw->hdw_desc->client_modules.cnt; idx++) {
1651 request_module(hdw->hdw_desc->client_modules.lst[idx]);
1654 if (!hdw->hdw_desc->flag_no_powerup) {
1655 pvr2_hdw_cmd_powerup(hdw);
1656 if (!pvr2_hdw_dev_ok(hdw)) return;
1659 // This step MUST happen after the earlier powerup step.
1660 pvr2_i2c_core_init(hdw);
1661 if (!pvr2_hdw_dev_ok(hdw)) return;
1663 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
1664 cptr = hdw->controls + idx;
1665 if (cptr->info->skip_init) continue;
1666 if (!cptr->info->set_value) continue;
1667 cptr->info->set_value(cptr,~0,cptr->info->default_value);
1670 /* Set up special default values for the television and radio
1671 frequencies here. It's not really important what these defaults
1672 are, but I set them to something usable in the Chicago area just
1673 to make driver testing a little easier. */
1675 /* US Broadcast channel 7 (175.25 MHz) */
1676 hdw->freqValTelevision = 175250000L;
1677 /* 104.3 MHz, a usable FM station for my area */
1678 hdw->freqValRadio = 104300000L;
1680 // Do not use pvr2_reset_ctl_endpoints() here. It is not
1681 // thread-safe against the normal pvr2_send_request() mechanism.
1682 // (We should make it thread safe).
1684 if (hdw->hdw_desc->flag_has_hauppauge_rom) {
1685 ret = pvr2_hdw_get_eeprom_addr(hdw);
1686 if (!pvr2_hdw_dev_ok(hdw)) return;
1688 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1689 "Unable to determine location of eeprom,"
1692 hdw->eeprom_addr = ret;
1693 pvr2_eeprom_analyze(hdw);
1694 if (!pvr2_hdw_dev_ok(hdw)) return;
1697 hdw->tuner_type = hdw->hdw_desc->default_tuner_type;
1698 hdw->tuner_updated = !0;
1699 hdw->std_mask_eeprom = V4L2_STD_ALL;
1702 pvr2_hdw_setup_std(hdw);
1704 if (!get_default_tuner_type(hdw)) {
1705 pvr2_trace(PVR2_TRACE_INIT,
1706 "pvr2_hdw_setup: Tuner type overridden to %d",
1710 pvr2_i2c_core_check_stale(hdw);
1711 hdw->tuner_updated = 0;
1713 if (!pvr2_hdw_dev_ok(hdw)) return;
1715 pvr2_hdw_commit_setup(hdw);
1717 hdw->vid_stream = pvr2_stream_create();
1718 if (!pvr2_hdw_dev_ok(hdw)) return;
1719 pvr2_trace(PVR2_TRACE_INIT,
1720 "pvr2_hdw_setup: video stream is %p",hdw->vid_stream);
1721 if (hdw->vid_stream) {
1722 idx = get_default_error_tolerance(hdw);
1724 pvr2_trace(PVR2_TRACE_INIT,
1725 "pvr2_hdw_setup: video stream %p"
1726 " setting tolerance %u",
1727 hdw->vid_stream,idx);
1729 pvr2_stream_setup(hdw->vid_stream,hdw->usb_dev,
1730 PVR2_VID_ENDPOINT,idx);
1733 if (!pvr2_hdw_dev_ok(hdw)) return;
1735 hdw->flag_init_ok = !0;
1737 pvr2_hdw_state_sched(hdw);
1741 /* Set up the structure and attempt to put the device into a usable state.
1742 This can be a time-consuming operation, which is why it is not done
1743 internally as part of the create() step. */
1744 static void pvr2_hdw_setup(struct pvr2_hdw *hdw)
1746 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) begin",hdw);
1748 pvr2_hdw_setup_low(hdw);
1749 pvr2_trace(PVR2_TRACE_INIT,
1750 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
1751 hdw,pvr2_hdw_dev_ok(hdw),hdw->flag_init_ok);
1752 if (pvr2_hdw_dev_ok(hdw)) {
1753 if (hdw->flag_init_ok) {
1756 "Device initialization"
1757 " completed successfully.");
1760 if (hdw->fw1_state == FW1_STATE_RELOAD) {
1763 "Device microcontroller firmware"
1764 " (re)loaded; it should now reset"
1769 PVR2_TRACE_ERROR_LEGS,
1770 "Device initialization was not successful.");
1771 if (hdw->fw1_state == FW1_STATE_MISSING) {
1773 PVR2_TRACE_ERROR_LEGS,
1774 "Giving up since device"
1775 " microcontroller firmware"
1776 " appears to be missing.");
1782 PVR2_TRACE_ERROR_LEGS,
1783 "Attempting pvrusb2 recovery by reloading"
1784 " primary firmware.");
1786 PVR2_TRACE_ERROR_LEGS,
1787 "If this works, device should disconnect"
1788 " and reconnect in a sane state.");
1789 hdw->fw1_state = FW1_STATE_UNKNOWN;
1790 pvr2_upload_firmware1(hdw);
1793 PVR2_TRACE_ERROR_LEGS,
1794 "***WARNING*** pvrusb2 device hardware"
1795 " appears to be jammed"
1796 " and I can't clear it.");
1798 PVR2_TRACE_ERROR_LEGS,
1799 "You might need to power cycle"
1800 " the pvrusb2 device"
1801 " in order to recover.");
1804 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) end",hdw);
1808 /* Create and return a structure for interacting with the underlying
1810 struct pvr2_hdw *pvr2_hdw_create(struct usb_interface *intf,
1811 const struct usb_device_id *devid)
1813 unsigned int idx,cnt1,cnt2;
1814 struct pvr2_hdw *hdw;
1816 struct pvr2_ctrl *cptr;
1817 const struct pvr2_device_desc *hdw_desc;
1819 struct v4l2_queryctrl qctrl;
1820 struct pvr2_ctl_info *ciptr;
1822 hdw_desc = (const struct pvr2_device_desc *)(devid->driver_info);
1824 hdw = kzalloc(sizeof(*hdw),GFP_KERNEL);
1825 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_create: hdw=%p, type \"%s\"",
1826 hdw,hdw_desc->description);
1827 if (!hdw) goto fail;
1829 init_timer(&hdw->quiescent_timer);
1830 hdw->quiescent_timer.data = (unsigned long)hdw;
1831 hdw->quiescent_timer.function = pvr2_hdw_quiescent_timeout;
1833 init_timer(&hdw->encoder_wait_timer);
1834 hdw->encoder_wait_timer.data = (unsigned long)hdw;
1835 hdw->encoder_wait_timer.function = pvr2_hdw_encoder_wait_timeout;
1837 hdw->master_state = PVR2_STATE_DEAD;
1839 init_waitqueue_head(&hdw->state_wait_data);
1841 hdw->tuner_signal_stale = !0;
1842 cx2341x_fill_defaults(&hdw->enc_ctl_state);
1844 hdw->control_cnt = CTRLDEF_COUNT;
1845 hdw->control_cnt += MPEGDEF_COUNT;
1846 hdw->controls = kzalloc(sizeof(struct pvr2_ctrl) * hdw->control_cnt,
1848 if (!hdw->controls) goto fail;
1849 hdw->hdw_desc = hdw_desc;
1850 for (idx = 0; idx < hdw->control_cnt; idx++) {
1851 cptr = hdw->controls + idx;
1854 for (idx = 0; idx < 32; idx++) {
1855 hdw->std_mask_ptrs[idx] = hdw->std_mask_names[idx];
1857 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
1858 cptr = hdw->controls + idx;
1859 cptr->info = control_defs+idx;
1861 /* Define and configure additional controls from cx2341x module. */
1862 hdw->mpeg_ctrl_info = kzalloc(
1863 sizeof(*(hdw->mpeg_ctrl_info)) * MPEGDEF_COUNT, GFP_KERNEL);
1864 if (!hdw->mpeg_ctrl_info) goto fail;
1865 for (idx = 0; idx < MPEGDEF_COUNT; idx++) {
1866 cptr = hdw->controls + idx + CTRLDEF_COUNT;
1867 ciptr = &(hdw->mpeg_ctrl_info[idx].info);
1868 ciptr->desc = hdw->mpeg_ctrl_info[idx].desc;
1869 ciptr->name = mpeg_ids[idx].strid;
1870 ciptr->v4l_id = mpeg_ids[idx].id;
1871 ciptr->skip_init = !0;
1872 ciptr->get_value = ctrl_cx2341x_get;
1873 ciptr->get_v4lflags = ctrl_cx2341x_getv4lflags;
1874 ciptr->is_dirty = ctrl_cx2341x_is_dirty;
1875 if (!idx) ciptr->clear_dirty = ctrl_cx2341x_clear_dirty;
1876 qctrl.id = ciptr->v4l_id;
1877 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl);
1878 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) {
1879 ciptr->set_value = ctrl_cx2341x_set;
1881 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name,
1882 PVR2_CTLD_INFO_DESC_SIZE);
1883 hdw->mpeg_ctrl_info[idx].desc[PVR2_CTLD_INFO_DESC_SIZE-1] = 0;
1884 ciptr->default_value = qctrl.default_value;
1885 switch (qctrl.type) {
1887 case V4L2_CTRL_TYPE_INTEGER:
1888 ciptr->type = pvr2_ctl_int;
1889 ciptr->def.type_int.min_value = qctrl.minimum;
1890 ciptr->def.type_int.max_value = qctrl.maximum;
1892 case V4L2_CTRL_TYPE_BOOLEAN:
1893 ciptr->type = pvr2_ctl_bool;
1895 case V4L2_CTRL_TYPE_MENU:
1896 ciptr->type = pvr2_ctl_enum;
1897 ciptr->def.type_enum.value_names =
1898 cx2341x_ctrl_get_menu(ciptr->v4l_id);
1900 ciptr->def.type_enum.value_names[cnt1] != NULL;
1902 ciptr->def.type_enum.count = cnt1;
1908 // Initialize video standard enum dynamic control
1909 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDENUM);
1911 memcpy(&hdw->std_info_enum,cptr->info,
1912 sizeof(hdw->std_info_enum));
1913 cptr->info = &hdw->std_info_enum;
1916 // Initialize control data regarding video standard masks
1917 valid_std_mask = pvr2_std_get_usable();
1918 for (idx = 0; idx < 32; idx++) {
1919 if (!(valid_std_mask & (1 << idx))) continue;
1920 cnt1 = pvr2_std_id_to_str(
1921 hdw->std_mask_names[idx],
1922 sizeof(hdw->std_mask_names[idx])-1,
1924 hdw->std_mask_names[idx][cnt1] = 0;
1926 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDAVAIL);
1928 memcpy(&hdw->std_info_avail,cptr->info,
1929 sizeof(hdw->std_info_avail));
1930 cptr->info = &hdw->std_info_avail;
1931 hdw->std_info_avail.def.type_bitmask.bit_names =
1933 hdw->std_info_avail.def.type_bitmask.valid_bits =
1936 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR);
1938 memcpy(&hdw->std_info_cur,cptr->info,
1939 sizeof(hdw->std_info_cur));
1940 cptr->info = &hdw->std_info_cur;
1941 hdw->std_info_cur.def.type_bitmask.bit_names =
1943 hdw->std_info_avail.def.type_bitmask.valid_bits =
1947 hdw->eeprom_addr = -1;
1948 hdw->unit_number = -1;
1949 hdw->v4l_minor_number_video = -1;
1950 hdw->v4l_minor_number_vbi = -1;
1951 hdw->v4l_minor_number_radio = -1;
1952 hdw->ctl_write_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
1953 if (!hdw->ctl_write_buffer) goto fail;
1954 hdw->ctl_read_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
1955 if (!hdw->ctl_read_buffer) goto fail;
1956 hdw->ctl_write_urb = usb_alloc_urb(0,GFP_KERNEL);
1957 if (!hdw->ctl_write_urb) goto fail;
1958 hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
1959 if (!hdw->ctl_read_urb) goto fail;
1961 mutex_lock(&pvr2_unit_mtx); do {
1962 for (idx = 0; idx < PVR_NUM; idx++) {
1963 if (unit_pointers[idx]) continue;
1964 hdw->unit_number = idx;
1965 unit_pointers[idx] = hdw;
1968 } while (0); mutex_unlock(&pvr2_unit_mtx);
1971 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2");
1973 if (hdw->unit_number >= 0) {
1974 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c",
1975 ('a' + hdw->unit_number));
1978 if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1;
1979 hdw->name[cnt1] = 0;
1981 hdw->workqueue = create_singlethread_workqueue(hdw->name);
1982 INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll);
1983 INIT_WORK(&hdw->worki2csync,pvr2_hdw_worker_i2c);
1984 INIT_WORK(&hdw->workinit,pvr2_hdw_worker_init);
1986 pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s",
1987 hdw->unit_number,hdw->name);
1989 hdw->tuner_type = -1;
1992 hdw->usb_intf = intf;
1993 hdw->usb_dev = interface_to_usbdev(intf);
1995 scnprintf(hdw->bus_info,sizeof(hdw->bus_info),
1996 "usb %s address %d",
1997 hdw->usb_dev->dev.bus_id,
1998 hdw->usb_dev->devnum);
2000 ifnum = hdw->usb_intf->cur_altsetting->desc.bInterfaceNumber;
2001 usb_set_interface(hdw->usb_dev,ifnum,0);
2003 mutex_init(&hdw->ctl_lock_mutex);
2004 mutex_init(&hdw->big_lock_mutex);
2006 queue_work(hdw->workqueue,&hdw->workinit);
2010 del_timer_sync(&hdw->quiescent_timer);
2011 del_timer_sync(&hdw->encoder_wait_timer);
2012 if (hdw->workqueue) {
2013 flush_workqueue(hdw->workqueue);
2014 destroy_workqueue(hdw->workqueue);
2015 hdw->workqueue = NULL;
2017 usb_free_urb(hdw->ctl_read_urb);
2018 usb_free_urb(hdw->ctl_write_urb);
2019 kfree(hdw->ctl_read_buffer);
2020 kfree(hdw->ctl_write_buffer);
2021 kfree(hdw->controls);
2022 kfree(hdw->mpeg_ctrl_info);
2023 kfree(hdw->std_defs);
2024 kfree(hdw->std_enum_names);
2031 /* Remove _all_ associations between this driver and the underlying USB
2033 static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw *hdw)
2035 if (hdw->flag_disconnected) return;
2036 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw);
2037 if (hdw->ctl_read_urb) {
2038 usb_kill_urb(hdw->ctl_read_urb);
2039 usb_free_urb(hdw->ctl_read_urb);
2040 hdw->ctl_read_urb = NULL;
2042 if (hdw->ctl_write_urb) {
2043 usb_kill_urb(hdw->ctl_write_urb);
2044 usb_free_urb(hdw->ctl_write_urb);
2045 hdw->ctl_write_urb = NULL;
2047 if (hdw->ctl_read_buffer) {
2048 kfree(hdw->ctl_read_buffer);
2049 hdw->ctl_read_buffer = NULL;
2051 if (hdw->ctl_write_buffer) {
2052 kfree(hdw->ctl_write_buffer);
2053 hdw->ctl_write_buffer = NULL;
2055 hdw->flag_disconnected = !0;
2056 hdw->usb_dev = NULL;
2057 hdw->usb_intf = NULL;
2058 pvr2_hdw_render_useless(hdw);
2062 /* Destroy hardware interaction structure */
2063 void pvr2_hdw_destroy(struct pvr2_hdw *hdw)
2066 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_destroy: hdw=%p",hdw);
2067 del_timer_sync(&hdw->quiescent_timer);
2068 del_timer_sync(&hdw->encoder_wait_timer);
2069 if (hdw->workqueue) {
2070 flush_workqueue(hdw->workqueue);
2071 destroy_workqueue(hdw->workqueue);
2072 hdw->workqueue = NULL;
2074 if (hdw->fw_buffer) {
2075 kfree(hdw->fw_buffer);
2076 hdw->fw_buffer = NULL;
2078 if (hdw->vid_stream) {
2079 pvr2_stream_destroy(hdw->vid_stream);
2080 hdw->vid_stream = NULL;
2082 if (hdw->decoder_ctrl) {
2083 hdw->decoder_ctrl->detach(hdw->decoder_ctrl->ctxt);
2085 pvr2_i2c_core_done(hdw);
2086 pvr2_hdw_remove_usb_stuff(hdw);
2087 mutex_lock(&pvr2_unit_mtx); do {
2088 if ((hdw->unit_number >= 0) &&
2089 (hdw->unit_number < PVR_NUM) &&
2090 (unit_pointers[hdw->unit_number] == hdw)) {
2091 unit_pointers[hdw->unit_number] = NULL;
2093 } while (0); mutex_unlock(&pvr2_unit_mtx);
2094 kfree(hdw->controls);
2095 kfree(hdw->mpeg_ctrl_info);
2096 kfree(hdw->std_defs);
2097 kfree(hdw->std_enum_names);
2102 int pvr2_hdw_dev_ok(struct pvr2_hdw *hdw)
2104 return (hdw && hdw->flag_ok);
2108 /* Called when hardware has been unplugged */
2109 void pvr2_hdw_disconnect(struct pvr2_hdw *hdw)
2111 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw);
2112 LOCK_TAKE(hdw->big_lock);
2113 LOCK_TAKE(hdw->ctl_lock);
2114 pvr2_hdw_remove_usb_stuff(hdw);
2115 LOCK_GIVE(hdw->ctl_lock);
2116 LOCK_GIVE(hdw->big_lock);
2120 // Attempt to autoselect an appropriate value for std_enum_cur given
2121 // whatever is currently in std_mask_cur
2122 static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw)
2125 for (idx = 1; idx < hdw->std_enum_cnt; idx++) {
2126 if (hdw->std_defs[idx-1].id == hdw->std_mask_cur) {
2127 hdw->std_enum_cur = idx;
2131 hdw->std_enum_cur = 0;
2135 // Calculate correct set of enumerated standards based on currently known
2136 // set of available standards bits.
2137 static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw)
2139 struct v4l2_standard *newstd;
2140 unsigned int std_cnt;
2143 newstd = pvr2_std_create_enum(&std_cnt,hdw->std_mask_avail);
2145 if (hdw->std_defs) {
2146 kfree(hdw->std_defs);
2147 hdw->std_defs = NULL;
2149 hdw->std_enum_cnt = 0;
2150 if (hdw->std_enum_names) {
2151 kfree(hdw->std_enum_names);
2152 hdw->std_enum_names = NULL;
2157 PVR2_TRACE_ERROR_LEGS,
2158 "WARNING: Failed to identify any viable standards");
2160 hdw->std_enum_names = kmalloc(sizeof(char *)*(std_cnt+1),GFP_KERNEL);
2161 hdw->std_enum_names[0] = "none";
2162 for (idx = 0; idx < std_cnt; idx++) {
2163 hdw->std_enum_names[idx+1] =
2166 // Set up the dynamic control for this standard
2167 hdw->std_info_enum.def.type_enum.value_names = hdw->std_enum_names;
2168 hdw->std_info_enum.def.type_enum.count = std_cnt+1;
2169 hdw->std_defs = newstd;
2170 hdw->std_enum_cnt = std_cnt+1;
2171 hdw->std_enum_cur = 0;
2172 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
2176 int pvr2_hdw_get_stdenum_value(struct pvr2_hdw *hdw,
2177 struct v4l2_standard *std,
2181 if (!idx) return ret;
2182 LOCK_TAKE(hdw->big_lock); do {
2183 if (idx >= hdw->std_enum_cnt) break;
2185 memcpy(std,hdw->std_defs+idx,sizeof(*std));
2187 } while (0); LOCK_GIVE(hdw->big_lock);
2192 /* Get the number of defined controls */
2193 unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw *hdw)
2195 return hdw->control_cnt;
2199 /* Retrieve a control handle given its index (0..count-1) */
2200 struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw *hdw,
2203 if (idx >= hdw->control_cnt) return NULL;
2204 return hdw->controls + idx;
2208 /* Retrieve a control handle given its index (0..count-1) */
2209 struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw *hdw,
2210 unsigned int ctl_id)
2212 struct pvr2_ctrl *cptr;
2216 /* This could be made a lot more efficient, but for now... */
2217 for (idx = 0; idx < hdw->control_cnt; idx++) {
2218 cptr = hdw->controls + idx;
2219 i = cptr->info->internal_id;
2220 if (i && (i == ctl_id)) return cptr;
2226 /* Given a V4L ID, retrieve the control structure associated with it. */
2227 struct pvr2_ctrl *pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw *hdw,unsigned int ctl_id)
2229 struct pvr2_ctrl *cptr;
2233 /* This could be made a lot more efficient, but for now... */
2234 for (idx = 0; idx < hdw->control_cnt; idx++) {
2235 cptr = hdw->controls + idx;
2236 i = cptr->info->v4l_id;
2237 if (i && (i == ctl_id)) return cptr;
2243 /* Given a V4L ID for its immediate predecessor, retrieve the control
2244 structure associated with it. */
2245 struct pvr2_ctrl *pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw *hdw,
2246 unsigned int ctl_id)
2248 struct pvr2_ctrl *cptr,*cp2;
2252 /* This could be made a lot more efficient, but for now... */
2254 for (idx = 0; idx < hdw->control_cnt; idx++) {
2255 cptr = hdw->controls + idx;
2256 i = cptr->info->v4l_id;
2258 if (i <= ctl_id) continue;
2259 if (cp2 && (cp2->info->v4l_id < i)) continue;
2267 static const char *get_ctrl_typename(enum pvr2_ctl_type tp)
2270 case pvr2_ctl_int: return "integer";
2271 case pvr2_ctl_enum: return "enum";
2272 case pvr2_ctl_bool: return "boolean";
2273 case pvr2_ctl_bitmask: return "bitmask";
2279 /* Figure out if we need to commit control changes. If so, mark internal
2280 state flags to indicate this fact and return true. Otherwise do nothing
2281 else and return false. */
2282 static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw)
2285 struct pvr2_ctrl *cptr;
2287 int commit_flag = 0;
2289 unsigned int bcnt,ccnt;
2291 for (idx = 0; idx < hdw->control_cnt; idx++) {
2292 cptr = hdw->controls + idx;
2293 if (!cptr->info->is_dirty) continue;
2294 if (!cptr->info->is_dirty(cptr)) continue;
2297 if (!(pvrusb2_debug & PVR2_TRACE_CTL)) continue;
2298 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
2301 cptr->info->get_value(cptr,&value);
2302 pvr2_ctrl_value_to_sym_internal(cptr,~0,value,
2304 sizeof(buf)-bcnt,&ccnt);
2306 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
2307 get_ctrl_typename(cptr->info->type));
2308 pvr2_trace(PVR2_TRACE_CTL,
2309 "/*--TRACE_COMMIT--*/ %.*s",
2314 /* Nothing has changed */
2318 hdw->state_pipeline_config = 0;
2319 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
2320 pvr2_hdw_state_sched(hdw);
2326 /* Perform all operations needed to commit all control changes. This must
2327 be performed in synchronization with the pipeline state and is thus
2328 expected to be called as part of the driver's worker thread. Return
2329 true if commit successful, otherwise return false to indicate that
2330 commit isn't possible at this time. */
2331 static int pvr2_hdw_commit_execute(struct pvr2_hdw *hdw)
2334 struct pvr2_ctrl *cptr;
2335 int disruptive_change;
2337 /* When video standard changes, reset the hres and vres values -
2338 but if the user has pending changes there, then let the changes
2340 if (hdw->std_dirty) {
2341 /* Rewrite the vertical resolution to be appropriate to the
2342 video standard that has been selected. */
2344 if (hdw->std_mask_cur & V4L2_STD_525_60) {
2349 if (nvres != hdw->res_ver_val) {
2350 hdw->res_ver_val = nvres;
2351 hdw->res_ver_dirty = !0;
2355 /* If any of the below has changed, then we can't do the update
2356 while the pipeline is running. Pipeline must be paused first
2357 and decoder -> encoder connection be made quiescent before we
2361 hdw->enc_unsafe_stale ||
2363 hdw->res_ver_dirty ||
2364 hdw->res_hor_dirty ||
2366 (hdw->active_stream_type != hdw->desired_stream_type));
2367 if (disruptive_change && !hdw->state_pipeline_idle) {
2368 /* Pipeline is not idle; we can't proceed. Arrange to
2369 cause pipeline to stop so that we can try this again
2371 hdw->state_pipeline_pause = !0;
2375 if (hdw->srate_dirty) {
2376 /* Write new sample rate into control structure since
2377 * the master copy is stale. We must track srate
2378 * separate from the mpeg control structure because
2379 * other logic also uses this value. */
2380 struct v4l2_ext_controls cs;
2381 struct v4l2_ext_control c1;
2382 memset(&cs,0,sizeof(cs));
2383 memset(&c1,0,sizeof(c1));
2386 c1.id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ;
2387 c1.value = hdw->srate_val;
2388 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,VIDIOC_S_EXT_CTRLS);
2391 /* Scan i2c core at this point - before we clear all the dirty
2392 bits. Various parts of the i2c core will notice dirty bits as
2393 appropriate and arrange to broadcast or directly send updates to
2394 the client drivers in order to keep everything in sync */
2395 pvr2_i2c_core_check_stale(hdw);
2397 for (idx = 0; idx < hdw->control_cnt; idx++) {
2398 cptr = hdw->controls + idx;
2399 if (!cptr->info->clear_dirty) continue;
2400 cptr->info->clear_dirty(cptr);
2403 if (hdw->active_stream_type != hdw->desired_stream_type) {
2404 /* Handle any side effects of stream config here */
2405 hdw->active_stream_type = hdw->desired_stream_type;
2408 /* Now execute i2c core update */
2409 pvr2_i2c_core_sync(hdw);
2411 if (hdw->state_encoder_run) {
2412 /* If encoder isn't running, then this will get worked out
2413 later when we start the encoder. */
2414 if (pvr2_encoder_adjust(hdw) < 0) return !0;
2417 hdw->state_pipeline_config = !0;
2418 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
2423 int pvr2_hdw_commit_ctl(struct pvr2_hdw *hdw)
2426 LOCK_TAKE(hdw->big_lock);
2427 fl = pvr2_hdw_commit_setup(hdw);
2428 LOCK_GIVE(hdw->big_lock);
2430 return pvr2_hdw_wait(hdw,0);
2434 static void pvr2_hdw_worker_i2c(struct work_struct *work)
2436 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,worki2csync);
2437 LOCK_TAKE(hdw->big_lock); do {
2438 pvr2_i2c_core_sync(hdw);
2439 } while (0); LOCK_GIVE(hdw->big_lock);
2443 static void pvr2_hdw_worker_poll(struct work_struct *work)
2446 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workpoll);
2447 LOCK_TAKE(hdw->big_lock); do {
2448 fl = pvr2_hdw_state_eval(hdw);
2449 } while (0); LOCK_GIVE(hdw->big_lock);
2450 if (fl && hdw->state_func) {
2451 hdw->state_func(hdw->state_data);
2456 static void pvr2_hdw_worker_init(struct work_struct *work)
2458 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workinit);
2459 LOCK_TAKE(hdw->big_lock); do {
2460 pvr2_hdw_setup(hdw);
2461 } while (0); LOCK_GIVE(hdw->big_lock);
2465 static int pvr2_hdw_wait(struct pvr2_hdw *hdw,int state)
2467 return wait_event_interruptible(
2468 hdw->state_wait_data,
2469 (hdw->state_stale == 0) &&
2470 (!state || (hdw->master_state != state)));
2474 void pvr2_hdw_set_state_callback(struct pvr2_hdw *hdw,
2475 void (*callback_func)(void *),
2476 void *callback_data)
2478 LOCK_TAKE(hdw->big_lock); do {
2479 hdw->state_data = callback_data;
2480 hdw->state_func = callback_func;
2481 } while (0); LOCK_GIVE(hdw->big_lock);
2485 /* Return name for this driver instance */
2486 const char *pvr2_hdw_get_driver_name(struct pvr2_hdw *hdw)
2492 const char *pvr2_hdw_get_desc(struct pvr2_hdw *hdw)
2494 return hdw->hdw_desc->description;
2498 const char *pvr2_hdw_get_type(struct pvr2_hdw *hdw)
2500 return hdw->hdw_desc->shortname;
2504 int pvr2_hdw_is_hsm(struct pvr2_hdw *hdw)
2507 LOCK_TAKE(hdw->ctl_lock); do {
2508 hdw->cmd_buffer[0] = FX2CMD_GET_USB_SPEED;
2509 result = pvr2_send_request(hdw,
2512 if (result < 0) break;
2513 result = (hdw->cmd_buffer[0] != 0);
2514 } while(0); LOCK_GIVE(hdw->ctl_lock);
2519 /* Execute poll of tuner status */
2520 void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw *hdw)
2522 LOCK_TAKE(hdw->big_lock); do {
2523 pvr2_i2c_core_status_poll(hdw);
2524 } while (0); LOCK_GIVE(hdw->big_lock);
2528 /* Return information about the tuner */
2529 int pvr2_hdw_get_tuner_status(struct pvr2_hdw *hdw,struct v4l2_tuner *vtp)
2531 LOCK_TAKE(hdw->big_lock); do {
2532 if (hdw->tuner_signal_stale) {
2533 pvr2_i2c_core_status_poll(hdw);
2535 memcpy(vtp,&hdw->tuner_signal_info,sizeof(struct v4l2_tuner));
2536 } while (0); LOCK_GIVE(hdw->big_lock);
2541 /* Get handle to video output stream */
2542 struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
2544 return hp->vid_stream;
2548 void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
2550 int nr = pvr2_hdw_get_unit_number(hdw);
2551 LOCK_TAKE(hdw->big_lock); do {
2552 hdw->log_requested = !0;
2553 printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
2554 pvr2_i2c_core_check_stale(hdw);
2555 hdw->log_requested = 0;
2556 pvr2_i2c_core_sync(hdw);
2557 pvr2_trace(PVR2_TRACE_INFO,"cx2341x config:");
2558 cx2341x_log_status(&hdw->enc_ctl_state, "pvrusb2");
2559 pvr2_hdw_state_log_state(hdw);
2560 printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
2561 } while (0); LOCK_GIVE(hdw->big_lock);
2565 /* Grab EEPROM contents, needed for direct method. */
2566 #define EEPROM_SIZE 8192
2567 #define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
2568 static u8 *pvr2_full_eeprom_fetch(struct pvr2_hdw *hdw)
2570 struct i2c_msg msg[2];
2579 eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
2581 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2582 "Failed to allocate memory"
2583 " required to read eeprom");
2587 trace_eeprom("Value for eeprom addr from controller was 0x%x",
2589 addr = hdw->eeprom_addr;
2590 /* Seems that if the high bit is set, then the *real* eeprom
2591 address is shifted right now bit position (noticed this in
2592 newer PVR USB2 hardware) */
2593 if (addr & 0x80) addr >>= 1;
2595 /* FX2 documentation states that a 16bit-addressed eeprom is
2596 expected if the I2C address is an odd number (yeah, this is
2597 strange but it's what they do) */
2598 mode16 = (addr & 1);
2599 eepromSize = (mode16 ? EEPROM_SIZE : 256);
2600 trace_eeprom("Examining %d byte eeprom at location 0x%x"
2601 " using %d bit addressing",eepromSize,addr,
2606 msg[0].len = mode16 ? 2 : 1;
2609 msg[1].flags = I2C_M_RD;
2611 /* We have to do the actual eeprom data fetch ourselves, because
2612 (1) we're only fetching part of the eeprom, and (2) if we were
2613 getting the whole thing our I2C driver can't grab it in one
2614 pass - which is what tveeprom is otherwise going to attempt */
2615 memset(eeprom,0,EEPROM_SIZE);
2616 for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
2618 if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
2619 offs = tcnt + (eepromSize - EEPROM_SIZE);
2621 iadd[0] = offs >> 8;
2627 msg[1].buf = eeprom+tcnt;
2628 if ((ret = i2c_transfer(&hdw->i2c_adap,
2629 msg,ARRAY_SIZE(msg))) != 2) {
2630 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2631 "eeprom fetch set offs err=%d",ret);
2640 void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw *hdw,
2647 LOCK_TAKE(hdw->big_lock); do {
2648 if ((hdw->fw_buffer == NULL) == !enable_flag) break;
2651 pvr2_trace(PVR2_TRACE_FIRMWARE,
2652 "Cleaning up after CPU firmware fetch");
2653 kfree(hdw->fw_buffer);
2654 hdw->fw_buffer = NULL;
2656 if (hdw->fw_cpu_flag) {
2657 /* Now release the CPU. It will disconnect
2658 and reconnect later. */
2659 pvr2_hdw_cpureset_assert(hdw,0);
2664 hdw->fw_cpu_flag = (prom_flag == 0);
2665 if (hdw->fw_cpu_flag) {
2666 pvr2_trace(PVR2_TRACE_FIRMWARE,
2667 "Preparing to suck out CPU firmware");
2668 hdw->fw_size = 0x2000;
2669 hdw->fw_buffer = kzalloc(hdw->fw_size,GFP_KERNEL);
2670 if (!hdw->fw_buffer) {
2675 /* We have to hold the CPU during firmware upload. */
2676 pvr2_hdw_cpureset_assert(hdw,1);
2678 /* download the firmware from address 0000-1fff in 2048
2679 (=0x800) bytes chunk. */
2681 pvr2_trace(PVR2_TRACE_FIRMWARE,
2682 "Grabbing CPU firmware");
2683 pipe = usb_rcvctrlpipe(hdw->usb_dev, 0);
2684 for(address = 0; address < hdw->fw_size;
2686 ret = usb_control_msg(hdw->usb_dev,pipe,
2689 hdw->fw_buffer+address,
2694 pvr2_trace(PVR2_TRACE_FIRMWARE,
2695 "Done grabbing CPU firmware");
2697 pvr2_trace(PVR2_TRACE_FIRMWARE,
2698 "Sucking down EEPROM contents");
2699 hdw->fw_buffer = pvr2_full_eeprom_fetch(hdw);
2700 if (!hdw->fw_buffer) {
2701 pvr2_trace(PVR2_TRACE_FIRMWARE,
2702 "EEPROM content suck failed.");
2705 hdw->fw_size = EEPROM_SIZE;
2706 pvr2_trace(PVR2_TRACE_FIRMWARE,
2707 "Done sucking down EEPROM contents");
2710 } while (0); LOCK_GIVE(hdw->big_lock);
2714 /* Return true if we're in a mode for retrieval CPU firmware */
2715 int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *hdw)
2717 return hdw->fw_buffer != NULL;
2721 int pvr2_hdw_cpufw_get(struct pvr2_hdw *hdw,unsigned int offs,
2722 char *buf,unsigned int cnt)
2725 LOCK_TAKE(hdw->big_lock); do {
2729 if (!hdw->fw_buffer) {
2734 if (offs >= hdw->fw_size) {
2735 pvr2_trace(PVR2_TRACE_FIRMWARE,
2736 "Read firmware data offs=%d EOF",
2742 if (offs + cnt > hdw->fw_size) cnt = hdw->fw_size - offs;
2744 memcpy(buf,hdw->fw_buffer+offs,cnt);
2746 pvr2_trace(PVR2_TRACE_FIRMWARE,
2747 "Read firmware data offs=%d cnt=%d",
2750 } while (0); LOCK_GIVE(hdw->big_lock);
2756 int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *hdw,
2757 enum pvr2_v4l_type index)
2760 case pvr2_v4l_type_video: return hdw->v4l_minor_number_video;
2761 case pvr2_v4l_type_vbi: return hdw->v4l_minor_number_vbi;
2762 case pvr2_v4l_type_radio: return hdw->v4l_minor_number_radio;
2768 /* Store a v4l minor device number */
2769 void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *hdw,
2770 enum pvr2_v4l_type index,int v)
2773 case pvr2_v4l_type_video: hdw->v4l_minor_number_video = v;
2774 case pvr2_v4l_type_vbi: hdw->v4l_minor_number_vbi = v;
2775 case pvr2_v4l_type_radio: hdw->v4l_minor_number_radio = v;
2781 static void pvr2_ctl_write_complete(struct urb *urb)
2783 struct pvr2_hdw *hdw = urb->context;
2784 hdw->ctl_write_pend_flag = 0;
2785 if (hdw->ctl_read_pend_flag) return;
2786 complete(&hdw->ctl_done);
2790 static void pvr2_ctl_read_complete(struct urb *urb)
2792 struct pvr2_hdw *hdw = urb->context;
2793 hdw->ctl_read_pend_flag = 0;
2794 if (hdw->ctl_write_pend_flag) return;
2795 complete(&hdw->ctl_done);
2799 static void pvr2_ctl_timeout(unsigned long data)
2801 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
2802 if (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
2803 hdw->ctl_timeout_flag = !0;
2804 if (hdw->ctl_write_pend_flag)
2805 usb_unlink_urb(hdw->ctl_write_urb);
2806 if (hdw->ctl_read_pend_flag)
2807 usb_unlink_urb(hdw->ctl_read_urb);
2812 /* Issue a command and get a response from the device. This extended
2813 version includes a probe flag (which if set means that device errors
2814 should not be logged or treated as fatal) and a timeout in jiffies.
2815 This can be used to non-lethally probe the health of endpoint 1. */
2816 static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
2817 unsigned int timeout,int probe_fl,
2818 void *write_data,unsigned int write_len,
2819 void *read_data,unsigned int read_len)
2823 struct timer_list timer;
2824 if (!hdw->ctl_lock_held) {
2825 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2826 "Attempted to execute control transfer"
2830 if (!hdw->flag_ok && !probe_fl) {
2831 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2832 "Attempted to execute control transfer"
2833 " when device not ok");
2836 if (!(hdw->ctl_read_urb && hdw->ctl_write_urb)) {
2838 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2839 "Attempted to execute control transfer"
2840 " when USB is disconnected");
2845 /* Ensure that we have sane parameters */
2846 if (!write_data) write_len = 0;
2847 if (!read_data) read_len = 0;
2848 if (write_len > PVR2_CTL_BUFFSIZE) {
2850 PVR2_TRACE_ERROR_LEGS,
2851 "Attempted to execute %d byte"
2852 " control-write transfer (limit=%d)",
2853 write_len,PVR2_CTL_BUFFSIZE);
2856 if (read_len > PVR2_CTL_BUFFSIZE) {
2858 PVR2_TRACE_ERROR_LEGS,
2859 "Attempted to execute %d byte"
2860 " control-read transfer (limit=%d)",
2861 write_len,PVR2_CTL_BUFFSIZE);
2864 if ((!write_len) && (!read_len)) {
2866 PVR2_TRACE_ERROR_LEGS,
2867 "Attempted to execute null control transfer?");
2872 hdw->cmd_debug_state = 1;
2874 hdw->cmd_debug_code = ((unsigned char *)write_data)[0];
2876 hdw->cmd_debug_code = 0;
2878 hdw->cmd_debug_write_len = write_len;
2879 hdw->cmd_debug_read_len = read_len;
2881 /* Initialize common stuff */
2882 init_completion(&hdw->ctl_done);
2883 hdw->ctl_timeout_flag = 0;
2884 hdw->ctl_write_pend_flag = 0;
2885 hdw->ctl_read_pend_flag = 0;
2887 timer.expires = jiffies + timeout;
2888 timer.data = (unsigned long)hdw;
2889 timer.function = pvr2_ctl_timeout;
2892 hdw->cmd_debug_state = 2;
2893 /* Transfer write data to internal buffer */
2894 for (idx = 0; idx < write_len; idx++) {
2895 hdw->ctl_write_buffer[idx] =
2896 ((unsigned char *)write_data)[idx];
2898 /* Initiate a write request */
2899 usb_fill_bulk_urb(hdw->ctl_write_urb,
2901 usb_sndbulkpipe(hdw->usb_dev,
2902 PVR2_CTL_WRITE_ENDPOINT),
2903 hdw->ctl_write_buffer,
2905 pvr2_ctl_write_complete,
2907 hdw->ctl_write_urb->actual_length = 0;
2908 hdw->ctl_write_pend_flag = !0;
2909 status = usb_submit_urb(hdw->ctl_write_urb,GFP_KERNEL);
2911 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2912 "Failed to submit write-control"
2913 " URB status=%d",status);
2914 hdw->ctl_write_pend_flag = 0;
2920 hdw->cmd_debug_state = 3;
2921 memset(hdw->ctl_read_buffer,0x43,read_len);
2922 /* Initiate a read request */
2923 usb_fill_bulk_urb(hdw->ctl_read_urb,
2925 usb_rcvbulkpipe(hdw->usb_dev,
2926 PVR2_CTL_READ_ENDPOINT),
2927 hdw->ctl_read_buffer,
2929 pvr2_ctl_read_complete,
2931 hdw->ctl_read_urb->actual_length = 0;
2932 hdw->ctl_read_pend_flag = !0;
2933 status = usb_submit_urb(hdw->ctl_read_urb,GFP_KERNEL);
2935 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2936 "Failed to submit read-control"
2937 " URB status=%d",status);
2938 hdw->ctl_read_pend_flag = 0;
2946 /* Now wait for all I/O to complete */
2947 hdw->cmd_debug_state = 4;
2948 while (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
2949 wait_for_completion(&hdw->ctl_done);
2951 hdw->cmd_debug_state = 5;
2954 del_timer_sync(&timer);
2956 hdw->cmd_debug_state = 6;
2959 if (hdw->ctl_timeout_flag) {
2960 status = -ETIMEDOUT;
2962 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2963 "Timed out control-write");
2969 /* Validate results of write request */
2970 if ((hdw->ctl_write_urb->status != 0) &&
2971 (hdw->ctl_write_urb->status != -ENOENT) &&
2972 (hdw->ctl_write_urb->status != -ESHUTDOWN) &&
2973 (hdw->ctl_write_urb->status != -ECONNRESET)) {
2974 /* USB subsystem is reporting some kind of failure
2976 status = hdw->ctl_write_urb->status;
2978 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2979 "control-write URB failure,"
2985 if (hdw->ctl_write_urb->actual_length < write_len) {
2986 /* Failed to write enough data */
2989 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2990 "control-write URB short,"
2991 " expected=%d got=%d",
2993 hdw->ctl_write_urb->actual_length);
2999 /* Validate results of read request */
3000 if ((hdw->ctl_read_urb->status != 0) &&
3001 (hdw->ctl_read_urb->status != -ENOENT) &&
3002 (hdw->ctl_read_urb->status != -ESHUTDOWN) &&
3003 (hdw->ctl_read_urb->status != -ECONNRESET)) {
3004 /* USB subsystem is reporting some kind of failure
3006 status = hdw->ctl_read_urb->status;
3008 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3009 "control-read URB failure,"
3015 if (hdw->ctl_read_urb->actual_length < read_len) {
3016 /* Failed to read enough data */
3019 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3020 "control-read URB short,"
3021 " expected=%d got=%d",
3023 hdw->ctl_read_urb->actual_length);
3027 /* Transfer retrieved data out from internal buffer */
3028 for (idx = 0; idx < read_len; idx++) {
3029 ((unsigned char *)read_data)[idx] =
3030 hdw->ctl_read_buffer[idx];
3036 hdw->cmd_debug_state = 0;
3037 if ((status < 0) && (!probe_fl)) {
3038 pvr2_hdw_render_useless(hdw);
3044 int pvr2_send_request(struct pvr2_hdw *hdw,
3045 void *write_data,unsigned int write_len,
3046 void *read_data,unsigned int read_len)
3048 return pvr2_send_request_ex(hdw,HZ*4,0,
3049 write_data,write_len,
3050 read_data,read_len);
3053 int pvr2_write_register(struct pvr2_hdw *hdw, u16 reg, u32 data)
3057 LOCK_TAKE(hdw->ctl_lock);
3059 hdw->cmd_buffer[0] = FX2CMD_REG_WRITE; /* write register prefix */
3060 PVR2_DECOMPOSE_LE(hdw->cmd_buffer,1,data);
3061 hdw->cmd_buffer[5] = 0;
3062 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3063 hdw->cmd_buffer[7] = reg & 0xff;
3066 ret = pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 0);
3068 LOCK_GIVE(hdw->ctl_lock);
3074 static int pvr2_read_register(struct pvr2_hdw *hdw, u16 reg, u32 *data)
3078 LOCK_TAKE(hdw->ctl_lock);
3080 hdw->cmd_buffer[0] = FX2CMD_REG_READ; /* read register prefix */
3081 hdw->cmd_buffer[1] = 0;
3082 hdw->cmd_buffer[2] = 0;
3083 hdw->cmd_buffer[3] = 0;
3084 hdw->cmd_buffer[4] = 0;
3085 hdw->cmd_buffer[5] = 0;
3086 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3087 hdw->cmd_buffer[7] = reg & 0xff;
3089 ret |= pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 4);
3090 *data = PVR2_COMPOSE_LE(hdw->cmd_buffer,0);
3092 LOCK_GIVE(hdw->ctl_lock);
3098 void pvr2_hdw_render_useless(struct pvr2_hdw *hdw)
3100 if (!hdw->flag_ok) return;
3101 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3102 "Device being rendered inoperable");
3103 if (hdw->vid_stream) {
3104 pvr2_stream_setup(hdw->vid_stream,NULL,0,0);
3107 trace_stbit("flag_ok",hdw->flag_ok);
3108 pvr2_hdw_state_sched(hdw);
3112 void pvr2_hdw_device_reset(struct pvr2_hdw *hdw)
3115 pvr2_trace(PVR2_TRACE_INIT,"Performing a device reset...");
3116 ret = usb_lock_device_for_reset(hdw->usb_dev,NULL);
3118 ret = usb_reset_device(hdw->usb_dev);
3119 usb_unlock_device(hdw->usb_dev);
3121 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3122 "Failed to lock USB device ret=%d",ret);
3124 if (init_pause_msec) {
3125 pvr2_trace(PVR2_TRACE_INFO,
3126 "Waiting %u msec for hardware to settle",
3128 msleep(init_pause_msec);
3134 void pvr2_hdw_cpureset_assert(struct pvr2_hdw *hdw,int val)
3140 if (!hdw->usb_dev) return;
3142 pvr2_trace(PVR2_TRACE_INIT,"cpureset_assert(%d)",val);
3144 da[0] = val ? 0x01 : 0x00;
3146 /* Write the CPUCS register on the 8051. The lsb of the register
3147 is the reset bit; a 1 asserts reset while a 0 clears it. */
3148 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
3149 ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ);
3151 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3152 "cpureset_assert(%d) error=%d",val,ret);
3153 pvr2_hdw_render_useless(hdw);
3158 int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw *hdw)
3161 LOCK_TAKE(hdw->ctl_lock); do {
3162 pvr2_trace(PVR2_TRACE_INIT,"Requesting uproc hard reset");
3163 hdw->cmd_buffer[0] = FX2CMD_DEEP_RESET;
3164 status = pvr2_send_request(hdw,hdw->cmd_buffer,1,NULL,0);
3165 } while (0); LOCK_GIVE(hdw->ctl_lock);
3170 int pvr2_hdw_cmd_powerup(struct pvr2_hdw *hdw)
3173 LOCK_TAKE(hdw->ctl_lock); do {
3174 pvr2_trace(PVR2_TRACE_INIT,"Requesting powerup");
3175 hdw->cmd_buffer[0] = FX2CMD_POWER_ON;
3176 status = pvr2_send_request(hdw,hdw->cmd_buffer,1,NULL,0);
3177 } while (0); LOCK_GIVE(hdw->ctl_lock);
3182 int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw *hdw)
3184 if (!hdw->decoder_ctrl) {
3185 pvr2_trace(PVR2_TRACE_INIT,
3186 "Unable to reset decoder: nothing attached");
3190 if (!hdw->decoder_ctrl->force_reset) {
3191 pvr2_trace(PVR2_TRACE_INIT,
3192 "Unable to reset decoder: not implemented");
3196 pvr2_trace(PVR2_TRACE_INIT,
3197 "Requesting decoder reset");
3198 hdw->decoder_ctrl->force_reset(hdw->decoder_ctrl->ctxt);
3203 /* Stop / start video stream transport */
3204 static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl)
3207 LOCK_TAKE(hdw->ctl_lock); do {
3208 hdw->cmd_buffer[0] =
3209 (runFl ? FX2CMD_STREAMING_ON : FX2CMD_STREAMING_OFF);
3210 status = pvr2_send_request(hdw,hdw->cmd_buffer,1,NULL,0);
3211 } while (0); LOCK_GIVE(hdw->ctl_lock);
3216 /* Evaluate whether or not state_encoder_ok can change */
3217 static int state_eval_encoder_ok(struct pvr2_hdw *hdw)
3219 if (hdw->state_encoder_ok) return 0;
3220 if (hdw->flag_tripped) return 0;
3221 if (hdw->state_encoder_run) return 0;
3222 if (hdw->state_encoder_config) return 0;
3223 if (hdw->state_decoder_run) return 0;
3224 if (hdw->state_usbstream_run) return 0;
3225 if (pvr2_upload_firmware2(hdw) < 0) {
3226 hdw->flag_tripped = !0;
3227 trace_stbit("flag_tripped",hdw->flag_tripped);
3230 hdw->state_encoder_ok = !0;
3231 trace_stbit("state_encoder_ok",hdw->state_encoder_ok);
3236 /* Evaluate whether or not state_encoder_config can change */
3237 static int state_eval_encoder_config(struct pvr2_hdw *hdw)
3239 if (hdw->state_encoder_config) {
3240 if (hdw->state_encoder_ok) {
3241 if (hdw->state_pipeline_req &&
3242 !hdw->state_pipeline_pause) return 0;
3244 hdw->state_encoder_config = 0;
3245 hdw->state_encoder_waitok = 0;
3246 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
3247 /* paranoia - solve race if timer just completed */
3248 del_timer_sync(&hdw->encoder_wait_timer);
3250 if (!hdw->state_encoder_ok ||
3251 !hdw->state_pipeline_idle ||
3252 hdw->state_pipeline_pause ||
3253 !hdw->state_pipeline_req ||
3254 !hdw->state_pipeline_config) {
3255 /* We must reset the enforced wait interval if
3256 anything has happened that might have disturbed
3257 the encoder. This should be a rare case. */
3258 if (timer_pending(&hdw->encoder_wait_timer)) {
3259 del_timer_sync(&hdw->encoder_wait_timer);
3261 if (hdw->state_encoder_waitok) {
3262 /* Must clear the state - therefore we did
3263 something to a state bit and must also
3265 hdw->state_encoder_waitok = 0;
3266 trace_stbit("state_encoder_waitok",
3267 hdw->state_encoder_waitok);
3272 if (!hdw->state_encoder_waitok) {
3273 if (!timer_pending(&hdw->encoder_wait_timer)) {
3274 /* waitok flag wasn't set and timer isn't
3275 running. Check flag once more to avoid
3276 a race then start the timer. This is
3277 the point when we measure out a minimal
3278 quiet interval before doing something to
3280 if (!hdw->state_encoder_waitok) {
3281 hdw->encoder_wait_timer.expires =
3282 jiffies + (HZ*50/1000);
3283 add_timer(&hdw->encoder_wait_timer);
3286 /* We can't continue until we know we have been
3287 quiet for the interval measured by this
3291 pvr2_encoder_configure(hdw);
3292 if (hdw->state_encoder_ok) hdw->state_encoder_config = !0;
3294 trace_stbit("state_encoder_config",hdw->state_encoder_config);
3299 /* Evaluate whether or not state_encoder_run can change */
3300 static int state_eval_encoder_run(struct pvr2_hdw *hdw)
3302 if (hdw->state_encoder_run) {
3303 if (hdw->state_encoder_ok) {
3304 if (hdw->state_decoder_run) return 0;
3305 if (pvr2_encoder_stop(hdw) < 0) return !0;
3307 hdw->state_encoder_run = 0;
3309 if (!hdw->state_encoder_ok) return 0;
3310 if (!hdw->state_decoder_run) return 0;
3311 if (pvr2_encoder_start(hdw) < 0) return !0;
3312 hdw->state_encoder_run = !0;
3314 trace_stbit("state_encoder_run",hdw->state_encoder_run);
3319 /* Timeout function for quiescent timer. */
3320 static void pvr2_hdw_quiescent_timeout(unsigned long data)
3322 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3323 hdw->state_decoder_quiescent = !0;
3324 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
3325 hdw->state_stale = !0;
3326 queue_work(hdw->workqueue,&hdw->workpoll);
3330 /* Timeout function for encoder wait timer. */
3331 static void pvr2_hdw_encoder_wait_timeout(unsigned long data)
3333 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3334 hdw->state_encoder_waitok = !0;
3335 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
3336 hdw->state_stale = !0;
3337 queue_work(hdw->workqueue,&hdw->workpoll);
3341 /* Evaluate whether or not state_decoder_run can change */
3342 static int state_eval_decoder_run(struct pvr2_hdw *hdw)
3344 if (hdw->state_decoder_run) {
3345 if (hdw->state_encoder_ok) {
3346 if (hdw->state_pipeline_req &&
3347 !hdw->state_pipeline_pause) return 0;
3349 if (!hdw->flag_decoder_missed) {
3350 pvr2_decoder_enable(hdw,0);
3352 hdw->state_decoder_quiescent = 0;
3353 hdw->state_decoder_run = 0;
3354 /* paranoia - solve race if timer just completed */
3355 del_timer_sync(&hdw->quiescent_timer);
3357 if (!hdw->state_decoder_quiescent) {
3358 if (!timer_pending(&hdw->quiescent_timer)) {
3359 /* We don't do something about the
3360 quiescent timer until right here because
3361 we also want to catch cases where the
3362 decoder was already not running (like
3363 after initialization) as opposed to
3364 knowing that we had just stopped it.
3365 The second flag check is here to cover a
3366 race - the timer could have run and set
3367 this flag just after the previous check
3368 but before we did the pending check. */
3369 if (!hdw->state_decoder_quiescent) {
3370 hdw->quiescent_timer.expires =
3371 jiffies + (HZ*50/1000);
3372 add_timer(&hdw->quiescent_timer);
3375 /* Don't allow decoder to start again until it has
3376 been quiesced first. This little detail should
3377 hopefully further stabilize the encoder. */
3380 if (!hdw->state_pipeline_req ||
3381 hdw->state_pipeline_pause ||
3382 !hdw->state_pipeline_config ||
3383 !hdw->state_encoder_config ||
3384 !hdw->state_encoder_ok) return 0;
3385 del_timer_sync(&hdw->quiescent_timer);
3386 if (hdw->flag_decoder_missed) return 0;
3387 if (pvr2_decoder_enable(hdw,!0) < 0) return 0;
3388 hdw->state_decoder_quiescent = 0;
3389 hdw->state_decoder_run = !0;
3391 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
3392 trace_stbit("state_decoder_run",hdw->state_decoder_run);
3397 /* Evaluate whether or not state_usbstream_run can change */
3398 static int state_eval_usbstream_run(struct pvr2_hdw *hdw)
3400 if (hdw->state_usbstream_run) {
3401 if (hdw->state_encoder_ok) {
3402 if (hdw->state_encoder_run) return 0;
3404 pvr2_hdw_cmd_usbstream(hdw,0);
3405 hdw->state_usbstream_run = 0;
3407 if (!hdw->state_encoder_ok ||
3408 !hdw->state_encoder_run ||
3409 !hdw->state_pipeline_req ||
3410 hdw->state_pipeline_pause) return 0;
3411 if (pvr2_hdw_cmd_usbstream(hdw,!0) < 0) return 0;
3412 hdw->state_usbstream_run = !0;
3414 trace_stbit("state_usbstream_run",hdw->state_usbstream_run);
3419 /* Attempt to configure pipeline, if needed */
3420 static int state_eval_pipeline_config(struct pvr2_hdw *hdw)
3422 if (hdw->state_pipeline_config ||
3423 hdw->state_pipeline_pause) return 0;
3424 pvr2_hdw_commit_execute(hdw);
3429 /* Update pipeline idle and pipeline pause tracking states based on other
3430 inputs. This must be called whenever the other relevant inputs have
3432 static int state_update_pipeline_state(struct pvr2_hdw *hdw)
3436 /* Update pipeline state */
3437 st = !(hdw->state_encoder_run ||
3438 hdw->state_decoder_run ||
3439 hdw->state_usbstream_run ||
3440 (!hdw->state_decoder_quiescent));
3441 if (!st != !hdw->state_pipeline_idle) {
3442 hdw->state_pipeline_idle = st;
3445 if (hdw->state_pipeline_idle && hdw->state_pipeline_pause) {
3446 hdw->state_pipeline_pause = 0;
3453 typedef int (*state_eval_func)(struct pvr2_hdw *);
3455 /* Set of functions to be run to evaluate various states in the driver. */
3456 const static state_eval_func eval_funcs[] = {
3457 state_eval_pipeline_config,
3458 state_eval_encoder_ok,
3459 state_eval_encoder_config,
3460 state_eval_decoder_run,
3461 state_eval_encoder_run,
3462 state_eval_usbstream_run,
3466 /* Process various states and return true if we did anything interesting. */
3467 static int pvr2_hdw_state_update(struct pvr2_hdw *hdw)
3470 int state_updated = 0;
3473 if (!hdw->state_stale) return 0;
3474 if ((hdw->fw1_state != FW1_STATE_OK) ||
3476 hdw->state_stale = 0;
3479 /* This loop is the heart of the entire driver. It keeps trying to
3480 evaluate various bits of driver state until nothing changes for
3481 one full iteration. Each "bit of state" tracks some global
3482 aspect of the driver, e.g. whether decoder should run, if
3483 pipeline is configured, usb streaming is on, etc. We separately
3484 evaluate each of those questions based on other driver state to
3485 arrive at the correct running configuration. */
3488 state_update_pipeline_state(hdw);
3489 /* Iterate over each bit of state */
3490 for (i = 0; (i<ARRAY_SIZE(eval_funcs)) && hdw->flag_ok; i++) {
3491 if ((*eval_funcs[i])(hdw)) {
3494 state_update_pipeline_state(hdw);
3497 } while (check_flag && hdw->flag_ok);
3498 hdw->state_stale = 0;
3499 trace_stbit("state_stale",hdw->state_stale);
3500 return state_updated;
3504 static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw *hdw,int which,
3505 char *buf,unsigned int acnt)
3511 "driver:%s%s%s%s%s",
3512 (hdw->flag_ok ? " <ok>" : " <fail>"),
3513 (hdw->flag_init_ok ? " <init>" : " <uninitialized>"),
3514 (hdw->flag_disconnected ? " <disconnected>" :
3516 (hdw->flag_tripped ? " <tripped>" : ""),
3517 (hdw->flag_decoder_missed ? " <no decoder>" : ""));
3521 "pipeline:%s%s%s%s",
3522 (hdw->state_pipeline_idle ? " <idle>" : ""),
3523 (hdw->state_pipeline_config ?
3524 " <configok>" : " <stale>"),
3525 (hdw->state_pipeline_req ? " <req>" : ""),
3526 (hdw->state_pipeline_pause ? " <pause>" : ""));
3530 "worker:%s%s%s%s%s%s",
3531 (hdw->state_decoder_run ?
3533 (hdw->state_decoder_quiescent ?
3534 "" : " <decode:stop>")),
3535 (hdw->state_decoder_quiescent ?
3536 " <decode:quiescent>" : ""),
3537 (hdw->state_encoder_ok ?
3538 "" : " <encode:init>"),
3539 (hdw->state_encoder_run ?
3540 " <encode:run>" : " <encode:stop>"),
3541 (hdw->state_encoder_config ?
3542 " <encode:configok>" :
3543 (hdw->state_encoder_waitok ?
3544 "" : " <encode:wait>")),
3545 (hdw->state_usbstream_run ?
3546 " <usb:run>" : " <usb:stop>"));
3552 pvr2_get_state_name(hdw->master_state));
3560 unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
3561 char *buf,unsigned int acnt)
3563 unsigned int bcnt,ccnt,idx;
3565 LOCK_TAKE(hdw->big_lock);
3566 for (idx = 0; ; idx++) {
3567 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
3569 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
3571 buf[0] = '\n'; ccnt = 1;
3572 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
3574 LOCK_GIVE(hdw->big_lock);
3579 static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
3582 unsigned int idx,ccnt;
3584 for (idx = 0; ; idx++) {
3585 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
3587 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
3592 /* Evaluate and update the driver's current state, taking various actions
3593 as appropriate for the update. */
3594 static int pvr2_hdw_state_eval(struct pvr2_hdw *hdw)
3597 int state_updated = 0;
3598 int callback_flag = 0;
3600 pvr2_trace(PVR2_TRACE_STBITS,
3601 "Drive state check START");
3602 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
3603 pvr2_hdw_state_log_state(hdw);
3606 /* Process all state and get back over disposition */
3607 state_updated = pvr2_hdw_state_update(hdw);
3609 /* Update master state based upon all other states. */
3610 if (!hdw->flag_ok) {
3611 st = PVR2_STATE_DEAD;
3612 } else if (hdw->fw1_state != FW1_STATE_OK) {
3613 st = PVR2_STATE_COLD;
3614 } else if (!hdw->state_encoder_ok) {
3615 st = PVR2_STATE_WARM;
3616 } else if (hdw->flag_tripped || hdw->flag_decoder_missed) {
3617 st = PVR2_STATE_ERROR;
3618 } else if (hdw->state_encoder_run &&
3619 hdw->state_decoder_run &&
3620 hdw->state_usbstream_run) {
3621 st = PVR2_STATE_RUN;
3623 st = PVR2_STATE_READY;
3625 if (hdw->master_state != st) {
3626 pvr2_trace(PVR2_TRACE_STATE,
3627 "Device state change from %s to %s",
3628 pvr2_get_state_name(hdw->master_state),
3629 pvr2_get_state_name(st));
3630 hdw->master_state = st;
3634 if (state_updated) {
3635 /* Trigger anyone waiting on any state changes here. */
3636 wake_up(&hdw->state_wait_data);
3639 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
3640 pvr2_hdw_state_log_state(hdw);
3642 pvr2_trace(PVR2_TRACE_STBITS,
3643 "Drive state check DONE callback=%d",callback_flag);
3645 return callback_flag;
3649 /* Cause kernel thread to check / update driver state */
3650 static void pvr2_hdw_state_sched(struct pvr2_hdw *hdw)
3652 if (hdw->state_stale) return;
3653 hdw->state_stale = !0;
3654 trace_stbit("state_stale",hdw->state_stale);
3655 queue_work(hdw->workqueue,&hdw->workpoll);
3659 void pvr2_hdw_get_debug_info_unlocked(const struct pvr2_hdw *hdw,
3660 struct pvr2_hdw_debug_info *ptr)
3662 ptr->big_lock_held = hdw->big_lock_held;
3663 ptr->ctl_lock_held = hdw->ctl_lock_held;
3664 ptr->flag_disconnected = hdw->flag_disconnected;
3665 ptr->flag_init_ok = hdw->flag_init_ok;
3666 ptr->flag_ok = hdw->flag_ok;
3667 ptr->fw1_state = hdw->fw1_state;
3668 ptr->flag_decoder_missed = hdw->flag_decoder_missed;
3669 ptr->flag_tripped = hdw->flag_tripped;
3670 ptr->state_encoder_ok = hdw->state_encoder_ok;
3671 ptr->state_encoder_run = hdw->state_encoder_run;
3672 ptr->state_decoder_run = hdw->state_decoder_run;
3673 ptr->state_usbstream_run = hdw->state_usbstream_run;
3674 ptr->state_decoder_quiescent = hdw->state_decoder_quiescent;
3675 ptr->state_pipeline_config = hdw->state_pipeline_config;
3676 ptr->state_pipeline_req = hdw->state_pipeline_req;
3677 ptr->state_pipeline_pause = hdw->state_pipeline_pause;
3678 ptr->state_pipeline_idle = hdw->state_pipeline_idle;
3679 ptr->cmd_debug_state = hdw->cmd_debug_state;
3680 ptr->cmd_code = hdw->cmd_debug_code;
3681 ptr->cmd_debug_write_len = hdw->cmd_debug_write_len;
3682 ptr->cmd_debug_read_len = hdw->cmd_debug_read_len;
3683 ptr->cmd_debug_timeout = hdw->ctl_timeout_flag;
3684 ptr->cmd_debug_write_pend = hdw->ctl_write_pend_flag;
3685 ptr->cmd_debug_read_pend = hdw->ctl_read_pend_flag;
3686 ptr->cmd_debug_rstatus = hdw->ctl_read_urb->status;
3687 ptr->cmd_debug_wstatus = hdw->ctl_read_urb->status;
3691 void pvr2_hdw_get_debug_info_locked(struct pvr2_hdw *hdw,
3692 struct pvr2_hdw_debug_info *ptr)
3694 LOCK_TAKE(hdw->ctl_lock); do {
3695 pvr2_hdw_get_debug_info_unlocked(hdw,ptr);
3696 } while(0); LOCK_GIVE(hdw->ctl_lock);
3700 int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *dp)
3702 return pvr2_read_register(hdw,PVR2_GPIO_DIR,dp);
3706 int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *dp)
3708 return pvr2_read_register(hdw,PVR2_GPIO_OUT,dp);
3712 int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *dp)
3714 return pvr2_read_register(hdw,PVR2_GPIO_IN,dp);
3718 int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val)
3723 ret = pvr2_read_register(hdw,PVR2_GPIO_DIR,&cval);
3724 if (ret) return ret;
3725 nval = (cval & ~msk) | (val & msk);
3726 pvr2_trace(PVR2_TRACE_GPIO,
3727 "GPIO direction changing 0x%x:0x%x"
3728 " from 0x%x to 0x%x",
3732 pvr2_trace(PVR2_TRACE_GPIO,
3733 "GPIO direction changing to 0x%x",nval);
3735 return pvr2_write_register(hdw,PVR2_GPIO_DIR,nval);
3739 int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val)
3744 ret = pvr2_read_register(hdw,PVR2_GPIO_OUT,&cval);
3745 if (ret) return ret;
3746 nval = (cval & ~msk) | (val & msk);
3747 pvr2_trace(PVR2_TRACE_GPIO,
3748 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
3752 pvr2_trace(PVR2_TRACE_GPIO,
3753 "GPIO output changing to 0x%x",nval);
3755 return pvr2_write_register(hdw,PVR2_GPIO_OUT,nval);
3759 /* Find I2C address of eeprom */
3760 static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw)
3763 LOCK_TAKE(hdw->ctl_lock); do {
3764 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
3765 result = pvr2_send_request(hdw,
3768 if (result < 0) break;
3769 result = hdw->cmd_buffer[0];
3770 } while(0); LOCK_GIVE(hdw->ctl_lock);
3775 int pvr2_hdw_register_access(struct pvr2_hdw *hdw,
3776 u32 match_type, u32 match_chip, u64 reg_id,
3777 int setFl,u64 *val_ptr)
3779 #ifdef CONFIG_VIDEO_ADV_DEBUG
3780 struct pvr2_i2c_client *cp;
3781 struct v4l2_register req;
3785 if (!capable(CAP_SYS_ADMIN)) return -EPERM;
3787 req.match_type = match_type;
3788 req.match_chip = match_chip;
3790 if (setFl) req.val = *val_ptr;
3791 mutex_lock(&hdw->i2c_list_lock); do {
3792 list_for_each_entry(cp, &hdw->i2c_clients, list) {
3793 if (!v4l2_chip_match_i2c_client(
3795 req.match_type, req.match_chip)) {
3798 stat = pvr2_i2c_client_cmd(
3799 cp,(setFl ? VIDIOC_DBG_S_REGISTER :
3800 VIDIOC_DBG_G_REGISTER),&req);
3801 if (!setFl) *val_ptr = req.val;
3805 } while (0); mutex_unlock(&hdw->i2c_list_lock);
3817 Stuff for Emacs to see, in order to encourage consistent editing style:
3818 *** Local Variables: ***
3820 *** fill-column: 75 ***
3821 *** tab-width: 8 ***
3822 *** c-basic-offset: 8 ***