blob: e35772125038d45d5bd8f544bf38d332b3a88724 [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
Mike Iselyd8554972006-06-26 20:58:46 -03003 *
4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
21#include <linux/errno.h>
22#include <linux/string.h>
23#include <linux/slab.h>
24#include <linux/firmware.h>
Mike Iselyd8554972006-06-26 20:58:46 -030025#include <linux/videodev2.h>
Mike Isely32ffa9a2006-09-23 22:26:52 -030026#include <media/v4l2-common.h>
Mike Isely75212a02009-03-07 01:48:42 -030027#include <media/tuner.h>
Mike Iselyd8554972006-06-26 20:58:46 -030028#include "pvrusb2.h"
29#include "pvrusb2-std.h"
30#include "pvrusb2-util.h"
31#include "pvrusb2-hdw.h"
32#include "pvrusb2-i2c-core.h"
Mike Iselyd8554972006-06-26 20:58:46 -030033#include "pvrusb2-eeprom.h"
34#include "pvrusb2-hdw-internal.h"
35#include "pvrusb2-encoder.h"
36#include "pvrusb2-debug.h"
Michael Krufky8d364362007-01-22 02:17:55 -030037#include "pvrusb2-fx2-cmd.h"
Mike Isely5f6dae82009-03-07 00:39:34 -030038#include "pvrusb2-wm8775.h"
Mike Isely6f956512009-03-07 00:43:26 -030039#include "pvrusb2-video-v4l.h"
Mike Isely634ba262009-03-07 00:54:02 -030040#include "pvrusb2-cx2584x-v4l.h"
Mike Isely2a6b6272009-03-15 17:53:29 -030041#include "pvrusb2-cs53l32a.h"
Mike Isely76891d62009-03-07 00:52:06 -030042#include "pvrusb2-audio.h"
Mike Iselyd8554972006-06-26 20:58:46 -030043
Mike Isely1bde0282006-12-27 23:30:13 -030044#define TV_MIN_FREQ 55250000L
45#define TV_MAX_FREQ 850000000L
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -030046
Mike Isely83ce57a2008-05-26 05:51:57 -030047/* This defines a minimum interval that the decoder must remain quiet
48 before we are allowed to start it running. */
49#define TIME_MSEC_DECODER_WAIT 50
50
51/* This defines a minimum interval that the encoder must remain quiet
Mike Iselyfa98e592008-05-26 05:54:24 -030052 before we are allowed to configure it. I had this originally set to
53 50msec, but Martin Dauskardt <martin.dauskardt@gmx.de> reports that
54 things work better when it's set to 100msec. */
55#define TIME_MSEC_ENCODER_WAIT 100
Mike Isely83ce57a2008-05-26 05:51:57 -030056
57/* This defines the minimum interval that the encoder must successfully run
58 before we consider that the encoder has run at least once since its
59 firmware has been loaded. This measurement is in important for cases
60 where we can't do something until we know that the encoder has been run
61 at least once. */
62#define TIME_MSEC_ENCODER_OK 250
63
Mike Iselya0fd1cb2006-06-30 11:35:28 -030064static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -030065static DEFINE_MUTEX(pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -030066
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030067static int ctlchg;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030068static int procreload;
Mike Iselyd8554972006-06-26 20:58:46 -030069static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
70static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
71static int video_std[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030072static int init_pause_msec;
Mike Iselyd8554972006-06-26 20:58:46 -030073
74module_param(ctlchg, int, S_IRUGO|S_IWUSR);
75MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
76module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
77MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
Mike Iselyd8554972006-06-26 20:58:46 -030078module_param(procreload, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(procreload,
80 "Attempt init failure recovery with firmware reload");
81module_param_array(tuner, int, NULL, 0444);
82MODULE_PARM_DESC(tuner,"specify installed tuner type");
83module_param_array(video_std, int, NULL, 0444);
84MODULE_PARM_DESC(video_std,"specify initial video standard");
85module_param_array(tolerance, int, NULL, 0444);
86MODULE_PARM_DESC(tolerance,"specify stream error tolerance");
87
Michael Krufky5a4f5da62008-05-11 16:37:50 -030088/* US Broadcast channel 7 (175.25 MHz) */
89static int default_tv_freq = 175250000L;
90/* 104.3 MHz, a usable FM station for my area */
91static int default_radio_freq = 104300000L;
92
93module_param_named(tv_freq, default_tv_freq, int, 0444);
94MODULE_PARM_DESC(tv_freq, "specify initial television frequency");
95module_param_named(radio_freq, default_radio_freq, int, 0444);
96MODULE_PARM_DESC(radio_freq, "specify initial radio frequency");
97
Mike Iselyd8554972006-06-26 20:58:46 -030098#define PVR2_CTL_WRITE_ENDPOINT 0x01
99#define PVR2_CTL_READ_ENDPOINT 0x81
100
101#define PVR2_GPIO_IN 0x9008
102#define PVR2_GPIO_OUT 0x900c
103#define PVR2_GPIO_DIR 0x9020
104
105#define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
106
107#define PVR2_FIRMWARE_ENDPOINT 0x02
108
109/* size of a firmware chunk */
110#define FIRMWARE_CHUNK_SIZE 0x2000
111
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300112typedef void (*pvr2_subdev_update_func)(struct pvr2_hdw *,
113 struct v4l2_subdev *);
114
115static const pvr2_subdev_update_func pvr2_module_update_functions[] = {
Mike Isely4ecbc282009-03-07 00:49:19 -0300116 [PVR2_CLIENT_ID_WM8775] = pvr2_wm8775_subdev_update,
Mike Isely6f956512009-03-07 00:43:26 -0300117 [PVR2_CLIENT_ID_SAA7115] = pvr2_saa7115_subdev_update,
Mike Isely76891d62009-03-07 00:52:06 -0300118 [PVR2_CLIENT_ID_MSP3400] = pvr2_msp3400_subdev_update,
Mike Isely634ba262009-03-07 00:54:02 -0300119 [PVR2_CLIENT_ID_CX25840] = pvr2_cx25840_subdev_update,
Mike Isely2a6b6272009-03-15 17:53:29 -0300120 [PVR2_CLIENT_ID_CS53L32A] = pvr2_cs53l32a_subdev_update,
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300121};
122
Mike Iselye9c64a72009-03-06 23:42:20 -0300123static const char *module_names[] = {
124 [PVR2_CLIENT_ID_MSP3400] = "msp3400",
125 [PVR2_CLIENT_ID_CX25840] = "cx25840",
126 [PVR2_CLIENT_ID_SAA7115] = "saa7115",
127 [PVR2_CLIENT_ID_TUNER] = "tuner",
Mike Iselybb652422009-03-14 14:09:04 -0300128 [PVR2_CLIENT_ID_DEMOD] = "tuner",
Mike Isely851981a2009-03-07 02:02:32 -0300129 [PVR2_CLIENT_ID_CS53L32A] = "cs53l32a",
Mike Isely5f6dae82009-03-07 00:39:34 -0300130 [PVR2_CLIENT_ID_WM8775] = "wm8775",
Mike Iselye9c64a72009-03-06 23:42:20 -0300131};
132
133
134static const unsigned char *module_i2c_addresses[] = {
135 [PVR2_CLIENT_ID_TUNER] = "\x60\x61\x62\x63",
Mike Iselybb652422009-03-14 14:09:04 -0300136 [PVR2_CLIENT_ID_DEMOD] = "\x43",
Mike Isely1dfe6c72009-03-07 02:00:21 -0300137 [PVR2_CLIENT_ID_MSP3400] = "\x40",
138 [PVR2_CLIENT_ID_SAA7115] = "\x21",
Mike Iselyae111f72009-03-07 00:57:42 -0300139 [PVR2_CLIENT_ID_WM8775] = "\x1b",
Mike Isely0b467012009-03-07 01:49:37 -0300140 [PVR2_CLIENT_ID_CX25840] = "\x44",
Mike Isely23334a22009-03-07 02:03:28 -0300141 [PVR2_CLIENT_ID_CS53L32A] = "\x11",
Mike Iselye9c64a72009-03-06 23:42:20 -0300142};
143
144
Mike Iselyb30d2442006-06-25 20:05:01 -0300145/* Define the list of additional controls we'll dynamically construct based
146 on query of the cx2341x module. */
147struct pvr2_mpeg_ids {
148 const char *strid;
149 int id;
150};
151static const struct pvr2_mpeg_ids mpeg_ids[] = {
152 {
153 .strid = "audio_layer",
154 .id = V4L2_CID_MPEG_AUDIO_ENCODING,
155 },{
156 .strid = "audio_bitrate",
157 .id = V4L2_CID_MPEG_AUDIO_L2_BITRATE,
158 },{
159 /* Already using audio_mode elsewhere :-( */
160 .strid = "mpeg_audio_mode",
161 .id = V4L2_CID_MPEG_AUDIO_MODE,
162 },{
163 .strid = "mpeg_audio_mode_extension",
164 .id = V4L2_CID_MPEG_AUDIO_MODE_EXTENSION,
165 },{
166 .strid = "audio_emphasis",
167 .id = V4L2_CID_MPEG_AUDIO_EMPHASIS,
168 },{
169 .strid = "audio_crc",
170 .id = V4L2_CID_MPEG_AUDIO_CRC,
171 },{
172 .strid = "video_aspect",
173 .id = V4L2_CID_MPEG_VIDEO_ASPECT,
174 },{
175 .strid = "video_b_frames",
176 .id = V4L2_CID_MPEG_VIDEO_B_FRAMES,
177 },{
178 .strid = "video_gop_size",
179 .id = V4L2_CID_MPEG_VIDEO_GOP_SIZE,
180 },{
181 .strid = "video_gop_closure",
182 .id = V4L2_CID_MPEG_VIDEO_GOP_CLOSURE,
183 },{
Mike Iselyb30d2442006-06-25 20:05:01 -0300184 .strid = "video_bitrate_mode",
185 .id = V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
186 },{
187 .strid = "video_bitrate",
188 .id = V4L2_CID_MPEG_VIDEO_BITRATE,
189 },{
190 .strid = "video_bitrate_peak",
191 .id = V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
192 },{
193 .strid = "video_temporal_decimation",
194 .id = V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION,
195 },{
196 .strid = "stream_type",
197 .id = V4L2_CID_MPEG_STREAM_TYPE,
198 },{
199 .strid = "video_spatial_filter_mode",
200 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE,
201 },{
202 .strid = "video_spatial_filter",
203 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
204 },{
205 .strid = "video_luma_spatial_filter_type",
206 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE,
207 },{
208 .strid = "video_chroma_spatial_filter_type",
209 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE,
210 },{
211 .strid = "video_temporal_filter_mode",
212 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE,
213 },{
214 .strid = "video_temporal_filter",
215 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER,
216 },{
217 .strid = "video_median_filter_type",
218 .id = V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE,
219 },{
220 .strid = "video_luma_median_filter_top",
221 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP,
222 },{
223 .strid = "video_luma_median_filter_bottom",
224 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM,
225 },{
226 .strid = "video_chroma_median_filter_top",
227 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP,
228 },{
229 .strid = "video_chroma_median_filter_bottom",
230 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM,
231 }
232};
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300233#define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
Mike Iselyc05c0462006-06-25 20:04:25 -0300234
Mike Iselyd8554972006-06-26 20:58:46 -0300235
Mike Isely434449f2006-08-08 09:10:06 -0300236static const char *control_values_srate[] = {
237 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100] = "44.1 kHz",
238 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000] = "48 kHz",
239 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000] = "32 kHz",
240};
Mike Iselyd8554972006-06-26 20:58:46 -0300241
Mike Iselyd8554972006-06-26 20:58:46 -0300242
243
244static const char *control_values_input[] = {
245 [PVR2_CVAL_INPUT_TV] = "television", /*xawtv needs this name*/
Mike Isely29bf5b12008-04-22 14:45:37 -0300246 [PVR2_CVAL_INPUT_DTV] = "dtv",
Mike Iselyd8554972006-06-26 20:58:46 -0300247 [PVR2_CVAL_INPUT_RADIO] = "radio",
248 [PVR2_CVAL_INPUT_SVIDEO] = "s-video",
249 [PVR2_CVAL_INPUT_COMPOSITE] = "composite",
250};
251
252
253static const char *control_values_audiomode[] = {
254 [V4L2_TUNER_MODE_MONO] = "Mono",
255 [V4L2_TUNER_MODE_STEREO] = "Stereo",
256 [V4L2_TUNER_MODE_LANG1] = "Lang1",
257 [V4L2_TUNER_MODE_LANG2] = "Lang2",
258 [V4L2_TUNER_MODE_LANG1_LANG2] = "Lang1+Lang2",
259};
260
261
262static const char *control_values_hsm[] = {
263 [PVR2_CVAL_HSM_FAIL] = "Fail",
264 [PVR2_CVAL_HSM_HIGH] = "High",
265 [PVR2_CVAL_HSM_FULL] = "Full",
266};
267
268
Mike Isely681c7392007-11-26 01:48:52 -0300269static const char *pvr2_state_names[] = {
270 [PVR2_STATE_NONE] = "none",
271 [PVR2_STATE_DEAD] = "dead",
272 [PVR2_STATE_COLD] = "cold",
273 [PVR2_STATE_WARM] = "warm",
274 [PVR2_STATE_ERROR] = "error",
275 [PVR2_STATE_READY] = "ready",
276 [PVR2_STATE_RUN] = "run",
Mike Iselyd8554972006-06-26 20:58:46 -0300277};
278
Mike Isely681c7392007-11-26 01:48:52 -0300279
Mike Isely694dca2b2008-03-28 05:42:10 -0300280struct pvr2_fx2cmd_descdef {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300281 unsigned char id;
282 unsigned char *desc;
283};
284
Mike Isely694dca2b2008-03-28 05:42:10 -0300285static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300286 {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"},
287 {FX2CMD_MEM_READ_DWORD, "read encoder dword"},
Mike Isely31335b12008-07-25 19:35:31 -0300288 {FX2CMD_HCW_ZILOG_RESET, "zilog IR reset control"},
Mike Isely1c9d10d2008-03-28 05:38:54 -0300289 {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"},
290 {FX2CMD_REG_WRITE, "write encoder register"},
291 {FX2CMD_REG_READ, "read encoder register"},
292 {FX2CMD_MEMSEL, "encoder memsel"},
293 {FX2CMD_I2C_WRITE, "i2c write"},
294 {FX2CMD_I2C_READ, "i2c read"},
295 {FX2CMD_GET_USB_SPEED, "get USB speed"},
296 {FX2CMD_STREAMING_ON, "stream on"},
297 {FX2CMD_STREAMING_OFF, "stream off"},
298 {FX2CMD_FWPOST1, "fwpost1"},
299 {FX2CMD_POWER_OFF, "power off"},
300 {FX2CMD_POWER_ON, "power on"},
301 {FX2CMD_DEEP_RESET, "deep reset"},
302 {FX2CMD_GET_EEPROM_ADDR, "get rom addr"},
303 {FX2CMD_GET_IR_CODE, "get IR code"},
304 {FX2CMD_HCW_DEMOD_RESETIN, "hcw demod resetin"},
305 {FX2CMD_HCW_DTV_STREAMING_ON, "hcw dtv stream on"},
306 {FX2CMD_HCW_DTV_STREAMING_OFF, "hcw dtv stream off"},
307 {FX2CMD_ONAIR_DTV_STREAMING_ON, "onair dtv stream on"},
308 {FX2CMD_ONAIR_DTV_STREAMING_OFF, "onair dtv stream off"},
309 {FX2CMD_ONAIR_DTV_POWER_ON, "onair dtv power on"},
310 {FX2CMD_ONAIR_DTV_POWER_OFF, "onair dtv power off"},
311};
312
313
Mike Isely1cb03b72008-04-21 03:47:43 -0300314static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v);
Mike Isely681c7392007-11-26 01:48:52 -0300315static void pvr2_hdw_state_sched(struct pvr2_hdw *);
316static int pvr2_hdw_state_eval(struct pvr2_hdw *);
Mike Isely1bde0282006-12-27 23:30:13 -0300317static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *,unsigned long);
Mike Isely681c7392007-11-26 01:48:52 -0300318static void pvr2_hdw_worker_poll(struct work_struct *work);
Mike Isely681c7392007-11-26 01:48:52 -0300319static int pvr2_hdw_wait(struct pvr2_hdw *,int state);
320static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *);
321static void pvr2_hdw_state_log_state(struct pvr2_hdw *);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300322static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
Mike Isely681c7392007-11-26 01:48:52 -0300323static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300324static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300325static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw);
326static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw);
Mike Isely681c7392007-11-26 01:48:52 -0300327static void pvr2_hdw_quiescent_timeout(unsigned long);
328static void pvr2_hdw_encoder_wait_timeout(unsigned long);
Mike Iselyd913d632008-04-06 04:04:35 -0300329static void pvr2_hdw_encoder_run_timeout(unsigned long);
Mike Isely1c9d10d2008-03-28 05:38:54 -0300330static int pvr2_issue_simple_cmd(struct pvr2_hdw *,u32);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300331static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
332 unsigned int timeout,int probe_fl,
333 void *write_data,unsigned int write_len,
334 void *read_data,unsigned int read_len);
Mike Isely432907f2008-08-31 21:02:20 -0300335static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300336
Mike Isely681c7392007-11-26 01:48:52 -0300337
338static void trace_stbit(const char *name,int val)
339{
340 pvr2_trace(PVR2_TRACE_STBITS,
341 "State bit %s <-- %s",
342 name,(val ? "true" : "false"));
343}
344
Mike Iselyd8554972006-06-26 20:58:46 -0300345static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
346{
347 struct pvr2_hdw *hdw = cptr->hdw;
348 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) {
349 *vp = hdw->freqTable[hdw->freqProgSlot-1];
350 } else {
351 *vp = 0;
352 }
353 return 0;
354}
355
356static int ctrl_channelfreq_set(struct pvr2_ctrl *cptr,int m,int v)
357{
358 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300359 unsigned int slotId = hdw->freqProgSlot;
360 if ((slotId > 0) && (slotId <= FREQTABLE_SIZE)) {
361 hdw->freqTable[slotId-1] = v;
362 /* Handle side effects correctly - if we're tuned to this
363 slot, then forgot the slot id relation since the stored
364 frequency has been changed. */
365 if (hdw->freqSelector) {
366 if (hdw->freqSlotRadio == slotId) {
367 hdw->freqSlotRadio = 0;
368 }
369 } else {
370 if (hdw->freqSlotTelevision == slotId) {
371 hdw->freqSlotTelevision = 0;
372 }
373 }
Mike Iselyd8554972006-06-26 20:58:46 -0300374 }
375 return 0;
376}
377
378static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
379{
380 *vp = cptr->hdw->freqProgSlot;
381 return 0;
382}
383
384static int ctrl_channelprog_set(struct pvr2_ctrl *cptr,int m,int v)
385{
386 struct pvr2_hdw *hdw = cptr->hdw;
387 if ((v >= 0) && (v <= FREQTABLE_SIZE)) {
388 hdw->freqProgSlot = v;
389 }
390 return 0;
391}
392
393static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
394{
Mike Isely1bde0282006-12-27 23:30:13 -0300395 struct pvr2_hdw *hdw = cptr->hdw;
396 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
Mike Iselyd8554972006-06-26 20:58:46 -0300397 return 0;
398}
399
Mike Isely1bde0282006-12-27 23:30:13 -0300400static int ctrl_channel_set(struct pvr2_ctrl *cptr,int m,int slotId)
Mike Iselyd8554972006-06-26 20:58:46 -0300401{
402 unsigned freq = 0;
403 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300404 if ((slotId < 0) || (slotId > FREQTABLE_SIZE)) return 0;
405 if (slotId > 0) {
406 freq = hdw->freqTable[slotId-1];
407 if (!freq) return 0;
408 pvr2_hdw_set_cur_freq(hdw,freq);
Mike Iselyd8554972006-06-26 20:58:46 -0300409 }
Mike Isely1bde0282006-12-27 23:30:13 -0300410 if (hdw->freqSelector) {
411 hdw->freqSlotRadio = slotId;
412 } else {
413 hdw->freqSlotTelevision = slotId;
Mike Iselyd8554972006-06-26 20:58:46 -0300414 }
415 return 0;
416}
417
418static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
419{
Mike Isely1bde0282006-12-27 23:30:13 -0300420 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300421 return 0;
422}
423
424static int ctrl_freq_is_dirty(struct pvr2_ctrl *cptr)
425{
426 return cptr->hdw->freqDirty != 0;
427}
428
429static void ctrl_freq_clear_dirty(struct pvr2_ctrl *cptr)
430{
431 cptr->hdw->freqDirty = 0;
432}
433
434static int ctrl_freq_set(struct pvr2_ctrl *cptr,int m,int v)
435{
Mike Isely1bde0282006-12-27 23:30:13 -0300436 pvr2_hdw_set_cur_freq(cptr->hdw,v);
Mike Iselyd8554972006-06-26 20:58:46 -0300437 return 0;
438}
439
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300440static int ctrl_cropl_min_get(struct pvr2_ctrl *cptr, int *left)
441{
Mike Isely432907f2008-08-31 21:02:20 -0300442 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
443 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
444 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300445 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300446 }
Mike Isely432907f2008-08-31 21:02:20 -0300447 *left = cap->bounds.left;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300448 return 0;
449}
450
451static int ctrl_cropl_max_get(struct pvr2_ctrl *cptr, int *left)
452{
Mike Isely432907f2008-08-31 21:02:20 -0300453 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
454 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
455 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300456 return stat;
457 }
458 *left = cap->bounds.left;
459 if (cap->bounds.width > cptr->hdw->cropw_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300460 *left += cap->bounds.width - cptr->hdw->cropw_val;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300461 }
462 return 0;
463}
464
465static int ctrl_cropt_min_get(struct pvr2_ctrl *cptr, int *top)
466{
Mike Isely432907f2008-08-31 21:02:20 -0300467 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
468 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
469 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300470 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300471 }
Mike Isely432907f2008-08-31 21:02:20 -0300472 *top = cap->bounds.top;
473 return 0;
474}
475
476static int ctrl_cropt_max_get(struct pvr2_ctrl *cptr, int *top)
477{
478 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
479 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
480 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300481 return stat;
482 }
483 *top = cap->bounds.top;
484 if (cap->bounds.height > cptr->hdw->croph_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300485 *top += cap->bounds.height - cptr->hdw->croph_val;
486 }
487 return 0;
488}
489
490static int ctrl_cropw_max_get(struct pvr2_ctrl *cptr, int *val)
491{
492 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
493 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
494 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300495 return stat;
496 }
497 *val = 0;
498 if (cap->bounds.width > cptr->hdw->cropl_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300499 *val = cap->bounds.width - cptr->hdw->cropl_val;
500 }
501 return 0;
502}
503
504static int ctrl_croph_max_get(struct pvr2_ctrl *cptr, int *val)
505{
506 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
507 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
508 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300509 return stat;
510 }
511 *val = 0;
512 if (cap->bounds.height > cptr->hdw->cropt_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300513 *val = cap->bounds.height - cptr->hdw->cropt_val;
514 }
515 return 0;
516}
517
518static int ctrl_get_cropcapbl(struct pvr2_ctrl *cptr, int *val)
519{
520 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
521 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
522 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300523 return stat;
524 }
525 *val = cap->bounds.left;
526 return 0;
527}
528
529static int ctrl_get_cropcapbt(struct pvr2_ctrl *cptr, int *val)
530{
531 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
532 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
533 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300534 return stat;
535 }
536 *val = cap->bounds.top;
537 return 0;
538}
539
540static int ctrl_get_cropcapbw(struct pvr2_ctrl *cptr, int *val)
541{
542 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
543 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
544 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300545 return stat;
546 }
547 *val = cap->bounds.width;
548 return 0;
549}
550
551static int ctrl_get_cropcapbh(struct pvr2_ctrl *cptr, int *val)
552{
553 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
554 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
555 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300556 return stat;
557 }
558 *val = cap->bounds.height;
559 return 0;
560}
561
562static int ctrl_get_cropcapdl(struct pvr2_ctrl *cptr, int *val)
563{
564 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
565 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
566 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300567 return stat;
568 }
569 *val = cap->defrect.left;
570 return 0;
571}
572
573static int ctrl_get_cropcapdt(struct pvr2_ctrl *cptr, int *val)
574{
575 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
576 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
577 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300578 return stat;
579 }
580 *val = cap->defrect.top;
581 return 0;
582}
583
584static int ctrl_get_cropcapdw(struct pvr2_ctrl *cptr, int *val)
585{
586 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
587 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
588 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300589 return stat;
590 }
591 *val = cap->defrect.width;
592 return 0;
593}
594
595static int ctrl_get_cropcapdh(struct pvr2_ctrl *cptr, int *val)
596{
597 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
598 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
599 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300600 return stat;
601 }
602 *val = cap->defrect.height;
603 return 0;
604}
605
606static int ctrl_get_cropcappan(struct pvr2_ctrl *cptr, int *val)
607{
608 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
609 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
610 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300611 return stat;
612 }
613 *val = cap->pixelaspect.numerator;
614 return 0;
615}
616
617static int ctrl_get_cropcappad(struct pvr2_ctrl *cptr, int *val)
618{
619 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
620 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
621 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300622 return stat;
623 }
624 *val = cap->pixelaspect.denominator;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300625 return 0;
626}
627
Mike Isely3ad9fc32006-09-02 22:37:52 -0300628static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
629{
630 /* Actual maximum depends on the video standard in effect. */
631 if (cptr->hdw->std_mask_cur & V4L2_STD_525_60) {
632 *vp = 480;
633 } else {
634 *vp = 576;
635 }
636 return 0;
637}
638
639static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
640{
Mike Isely989eb152007-11-26 01:53:12 -0300641 /* Actual minimum depends on device digitizer type. */
642 if (cptr->hdw->hdw_desc->flag_has_cx25840) {
Mike Isely3ad9fc32006-09-02 22:37:52 -0300643 *vp = 75;
644 } else {
645 *vp = 17;
646 }
647 return 0;
648}
649
Mike Isely1bde0282006-12-27 23:30:13 -0300650static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
651{
652 *vp = cptr->hdw->input_val;
653 return 0;
654}
655
Mike Isely29bf5b12008-04-22 14:45:37 -0300656static int ctrl_check_input(struct pvr2_ctrl *cptr,int v)
657{
Mike Isely1cb03b72008-04-21 03:47:43 -0300658 return ((1 << v) & cptr->hdw->input_allowed_mask) != 0;
Mike Isely29bf5b12008-04-22 14:45:37 -0300659}
660
Mike Isely1bde0282006-12-27 23:30:13 -0300661static int ctrl_set_input(struct pvr2_ctrl *cptr,int m,int v)
662{
Mike Isely1cb03b72008-04-21 03:47:43 -0300663 return pvr2_hdw_set_input(cptr->hdw,v);
Mike Isely1bde0282006-12-27 23:30:13 -0300664}
665
666static int ctrl_isdirty_input(struct pvr2_ctrl *cptr)
667{
668 return cptr->hdw->input_dirty != 0;
669}
670
671static void ctrl_cleardirty_input(struct pvr2_ctrl *cptr)
672{
673 cptr->hdw->input_dirty = 0;
674}
675
Mike Isely5549f542006-12-27 23:28:54 -0300676
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300677static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
678{
Mike Isely644afdb2007-01-20 00:19:23 -0300679 unsigned long fv;
680 struct pvr2_hdw *hdw = cptr->hdw;
681 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300682 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300683 }
Mike Isely644afdb2007-01-20 00:19:23 -0300684 fv = hdw->tuner_signal_info.rangehigh;
685 if (!fv) {
686 /* Safety fallback */
687 *vp = TV_MAX_FREQ;
688 return 0;
689 }
690 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
691 fv = (fv * 125) / 2;
692 } else {
693 fv = fv * 62500;
694 }
695 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300696 return 0;
697}
698
699static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
700{
Mike Isely644afdb2007-01-20 00:19:23 -0300701 unsigned long fv;
702 struct pvr2_hdw *hdw = cptr->hdw;
703 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300704 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300705 }
Mike Isely644afdb2007-01-20 00:19:23 -0300706 fv = hdw->tuner_signal_info.rangelow;
707 if (!fv) {
708 /* Safety fallback */
709 *vp = TV_MIN_FREQ;
710 return 0;
711 }
712 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
713 fv = (fv * 125) / 2;
714 } else {
715 fv = fv * 62500;
716 }
717 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300718 return 0;
719}
720
Mike Iselyb30d2442006-06-25 20:05:01 -0300721static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl *cptr)
722{
723 return cptr->hdw->enc_stale != 0;
724}
725
726static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl *cptr)
727{
728 cptr->hdw->enc_stale = 0;
Mike Isely681c7392007-11-26 01:48:52 -0300729 cptr->hdw->enc_unsafe_stale = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300730}
731
732static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
733{
734 int ret;
735 struct v4l2_ext_controls cs;
736 struct v4l2_ext_control c1;
737 memset(&cs,0,sizeof(cs));
738 memset(&c1,0,sizeof(c1));
739 cs.controls = &c1;
740 cs.count = 1;
741 c1.id = cptr->info->v4l_id;
Hans Verkuil01f1e442007-08-21 18:32:42 -0300742 ret = cx2341x_ext_ctrls(&cptr->hdw->enc_ctl_state, 0, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300743 VIDIOC_G_EXT_CTRLS);
744 if (ret) return ret;
745 *vp = c1.value;
746 return 0;
747}
748
749static int ctrl_cx2341x_set(struct pvr2_ctrl *cptr,int m,int v)
750{
751 int ret;
Mike Isely681c7392007-11-26 01:48:52 -0300752 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselyb30d2442006-06-25 20:05:01 -0300753 struct v4l2_ext_controls cs;
754 struct v4l2_ext_control c1;
755 memset(&cs,0,sizeof(cs));
756 memset(&c1,0,sizeof(c1));
757 cs.controls = &c1;
758 cs.count = 1;
759 c1.id = cptr->info->v4l_id;
760 c1.value = v;
Mike Isely681c7392007-11-26 01:48:52 -0300761 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
762 hdw->state_encoder_run, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300763 VIDIOC_S_EXT_CTRLS);
Mike Isely681c7392007-11-26 01:48:52 -0300764 if (ret == -EBUSY) {
765 /* Oops. cx2341x is telling us it's not safe to change
766 this control while we're capturing. Make a note of this
767 fact so that the pipeline will be stopped the next time
768 controls are committed. Then go on ahead and store this
769 change anyway. */
770 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
771 0, &cs,
772 VIDIOC_S_EXT_CTRLS);
773 if (!ret) hdw->enc_unsafe_stale = !0;
774 }
Mike Iselyb30d2442006-06-25 20:05:01 -0300775 if (ret) return ret;
Mike Isely681c7392007-11-26 01:48:52 -0300776 hdw->enc_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300777 return 0;
778}
779
780static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl *cptr)
781{
782 struct v4l2_queryctrl qctrl;
783 struct pvr2_ctl_info *info;
784 qctrl.id = cptr->info->v4l_id;
785 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl);
786 /* Strip out the const so we can adjust a function pointer. It's
787 OK to do this here because we know this is a dynamically created
788 control, so the underlying storage for the info pointer is (a)
789 private to us, and (b) not in read-only storage. Either we do
790 this or we significantly complicate the underlying control
791 implementation. */
792 info = (struct pvr2_ctl_info *)(cptr->info);
793 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) {
794 if (info->set_value) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300795 info->set_value = NULL;
Mike Iselyb30d2442006-06-25 20:05:01 -0300796 }
797 } else {
798 if (!(info->set_value)) {
799 info->set_value = ctrl_cx2341x_set;
800 }
801 }
802 return qctrl.flags;
803}
804
Mike Iselyd8554972006-06-26 20:58:46 -0300805static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
806{
Mike Isely681c7392007-11-26 01:48:52 -0300807 *vp = cptr->hdw->state_pipeline_req;
808 return 0;
809}
810
811static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
812{
813 *vp = cptr->hdw->master_state;
Mike Iselyd8554972006-06-26 20:58:46 -0300814 return 0;
815}
816
817static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
818{
819 int result = pvr2_hdw_is_hsm(cptr->hdw);
820 *vp = PVR2_CVAL_HSM_FULL;
821 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
822 if (result) *vp = PVR2_CVAL_HSM_HIGH;
823 return 0;
824}
825
826static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
827{
828 *vp = cptr->hdw->std_mask_avail;
829 return 0;
830}
831
832static int ctrl_stdavail_set(struct pvr2_ctrl *cptr,int m,int v)
833{
834 struct pvr2_hdw *hdw = cptr->hdw;
835 v4l2_std_id ns;
836 ns = hdw->std_mask_avail;
837 ns = (ns & ~m) | (v & m);
838 if (ns == hdw->std_mask_avail) return 0;
839 hdw->std_mask_avail = ns;
840 pvr2_hdw_internal_set_std_avail(hdw);
841 pvr2_hdw_internal_find_stdenum(hdw);
842 return 0;
843}
844
845static int ctrl_std_val_to_sym(struct pvr2_ctrl *cptr,int msk,int val,
846 char *bufPtr,unsigned int bufSize,
847 unsigned int *len)
848{
849 *len = pvr2_std_id_to_str(bufPtr,bufSize,msk & val);
850 return 0;
851}
852
853static int ctrl_std_sym_to_val(struct pvr2_ctrl *cptr,
854 const char *bufPtr,unsigned int bufSize,
855 int *mskp,int *valp)
856{
857 int ret;
858 v4l2_std_id id;
859 ret = pvr2_std_str_to_id(&id,bufPtr,bufSize);
860 if (ret < 0) return ret;
861 if (mskp) *mskp = id;
862 if (valp) *valp = id;
863 return 0;
864}
865
866static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
867{
868 *vp = cptr->hdw->std_mask_cur;
869 return 0;
870}
871
872static int ctrl_stdcur_set(struct pvr2_ctrl *cptr,int m,int v)
873{
874 struct pvr2_hdw *hdw = cptr->hdw;
875 v4l2_std_id ns;
876 ns = hdw->std_mask_cur;
877 ns = (ns & ~m) | (v & m);
878 if (ns == hdw->std_mask_cur) return 0;
879 hdw->std_mask_cur = ns;
880 hdw->std_dirty = !0;
881 pvr2_hdw_internal_find_stdenum(hdw);
882 return 0;
883}
884
885static int ctrl_stdcur_is_dirty(struct pvr2_ctrl *cptr)
886{
887 return cptr->hdw->std_dirty != 0;
888}
889
890static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl *cptr)
891{
892 cptr->hdw->std_dirty = 0;
893}
894
895static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
896{
Mike Isely18103c572007-01-20 00:09:47 -0300897 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300898 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300899 *vp = hdw->tuner_signal_info.signal;
900 return 0;
901}
902
903static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
904{
905 int val = 0;
906 unsigned int subchan;
907 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300908 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300909 subchan = hdw->tuner_signal_info.rxsubchans;
910 if (subchan & V4L2_TUNER_SUB_MONO) {
911 val |= (1 << V4L2_TUNER_MODE_MONO);
912 }
913 if (subchan & V4L2_TUNER_SUB_STEREO) {
914 val |= (1 << V4L2_TUNER_MODE_STEREO);
915 }
916 if (subchan & V4L2_TUNER_SUB_LANG1) {
917 val |= (1 << V4L2_TUNER_MODE_LANG1);
918 }
919 if (subchan & V4L2_TUNER_SUB_LANG2) {
920 val |= (1 << V4L2_TUNER_MODE_LANG2);
921 }
922 *vp = val;
Mike Iselyd8554972006-06-26 20:58:46 -0300923 return 0;
924}
925
Mike Iselyd8554972006-06-26 20:58:46 -0300926
927static int ctrl_stdenumcur_set(struct pvr2_ctrl *cptr,int m,int v)
928{
929 struct pvr2_hdw *hdw = cptr->hdw;
930 if (v < 0) return -EINVAL;
931 if (v > hdw->std_enum_cnt) return -EINVAL;
932 hdw->std_enum_cur = v;
933 if (!v) return 0;
934 v--;
935 if (hdw->std_mask_cur == hdw->std_defs[v].id) return 0;
936 hdw->std_mask_cur = hdw->std_defs[v].id;
937 hdw->std_dirty = !0;
938 return 0;
939}
940
941
942static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
943{
944 *vp = cptr->hdw->std_enum_cur;
945 return 0;
946}
947
948
949static int ctrl_stdenumcur_is_dirty(struct pvr2_ctrl *cptr)
950{
951 return cptr->hdw->std_dirty != 0;
952}
953
954
955static void ctrl_stdenumcur_clear_dirty(struct pvr2_ctrl *cptr)
956{
957 cptr->hdw->std_dirty = 0;
958}
959
960
961#define DEFINT(vmin,vmax) \
962 .type = pvr2_ctl_int, \
963 .def.type_int.min_value = vmin, \
964 .def.type_int.max_value = vmax
965
966#define DEFENUM(tab) \
967 .type = pvr2_ctl_enum, \
Mike Isely27c7b712007-01-20 00:39:17 -0300968 .def.type_enum.count = ARRAY_SIZE(tab), \
Mike Iselyd8554972006-06-26 20:58:46 -0300969 .def.type_enum.value_names = tab
970
Mike Isely33213962006-06-25 20:04:40 -0300971#define DEFBOOL \
972 .type = pvr2_ctl_bool
973
Mike Iselyd8554972006-06-26 20:58:46 -0300974#define DEFMASK(msk,tab) \
975 .type = pvr2_ctl_bitmask, \
976 .def.type_bitmask.valid_bits = msk, \
977 .def.type_bitmask.bit_names = tab
978
979#define DEFREF(vname) \
980 .set_value = ctrl_set_##vname, \
981 .get_value = ctrl_get_##vname, \
982 .is_dirty = ctrl_isdirty_##vname, \
983 .clear_dirty = ctrl_cleardirty_##vname
984
985
986#define VCREATE_FUNCS(vname) \
987static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
988{*vp = cptr->hdw->vname##_val; return 0;} \
989static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
990{cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
991static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
992{return cptr->hdw->vname##_dirty != 0;} \
993static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
994{cptr->hdw->vname##_dirty = 0;}
995
996VCREATE_FUNCS(brightness)
997VCREATE_FUNCS(contrast)
998VCREATE_FUNCS(saturation)
999VCREATE_FUNCS(hue)
1000VCREATE_FUNCS(volume)
1001VCREATE_FUNCS(balance)
1002VCREATE_FUNCS(bass)
1003VCREATE_FUNCS(treble)
1004VCREATE_FUNCS(mute)
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001005VCREATE_FUNCS(cropl)
1006VCREATE_FUNCS(cropt)
1007VCREATE_FUNCS(cropw)
1008VCREATE_FUNCS(croph)
Mike Iselyc05c0462006-06-25 20:04:25 -03001009VCREATE_FUNCS(audiomode)
1010VCREATE_FUNCS(res_hor)
1011VCREATE_FUNCS(res_ver)
Mike Iselyd8554972006-06-26 20:58:46 -03001012VCREATE_FUNCS(srate)
Mike Iselyd8554972006-06-26 20:58:46 -03001013
Mike Iselyd8554972006-06-26 20:58:46 -03001014/* Table definition of all controls which can be manipulated */
1015static const struct pvr2_ctl_info control_defs[] = {
1016 {
1017 .v4l_id = V4L2_CID_BRIGHTNESS,
1018 .desc = "Brightness",
1019 .name = "brightness",
1020 .default_value = 128,
1021 DEFREF(brightness),
1022 DEFINT(0,255),
1023 },{
1024 .v4l_id = V4L2_CID_CONTRAST,
1025 .desc = "Contrast",
1026 .name = "contrast",
1027 .default_value = 68,
1028 DEFREF(contrast),
1029 DEFINT(0,127),
1030 },{
1031 .v4l_id = V4L2_CID_SATURATION,
1032 .desc = "Saturation",
1033 .name = "saturation",
1034 .default_value = 64,
1035 DEFREF(saturation),
1036 DEFINT(0,127),
1037 },{
1038 .v4l_id = V4L2_CID_HUE,
1039 .desc = "Hue",
1040 .name = "hue",
1041 .default_value = 0,
1042 DEFREF(hue),
1043 DEFINT(-128,127),
1044 },{
1045 .v4l_id = V4L2_CID_AUDIO_VOLUME,
1046 .desc = "Volume",
1047 .name = "volume",
Mike Isely139eecf2006-12-27 23:36:33 -03001048 .default_value = 62000,
Mike Iselyd8554972006-06-26 20:58:46 -03001049 DEFREF(volume),
1050 DEFINT(0,65535),
1051 },{
1052 .v4l_id = V4L2_CID_AUDIO_BALANCE,
1053 .desc = "Balance",
1054 .name = "balance",
1055 .default_value = 0,
1056 DEFREF(balance),
1057 DEFINT(-32768,32767),
1058 },{
1059 .v4l_id = V4L2_CID_AUDIO_BASS,
1060 .desc = "Bass",
1061 .name = "bass",
1062 .default_value = 0,
1063 DEFREF(bass),
1064 DEFINT(-32768,32767),
1065 },{
1066 .v4l_id = V4L2_CID_AUDIO_TREBLE,
1067 .desc = "Treble",
1068 .name = "treble",
1069 .default_value = 0,
1070 DEFREF(treble),
1071 DEFINT(-32768,32767),
1072 },{
1073 .v4l_id = V4L2_CID_AUDIO_MUTE,
1074 .desc = "Mute",
1075 .name = "mute",
1076 .default_value = 0,
1077 DEFREF(mute),
Mike Isely33213962006-06-25 20:04:40 -03001078 DEFBOOL,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001079 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001080 .desc = "Capture crop left margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001081 .name = "crop_left",
1082 .internal_id = PVR2_CID_CROPL,
1083 .default_value = 0,
1084 DEFREF(cropl),
1085 DEFINT(-129, 340),
1086 .get_min_value = ctrl_cropl_min_get,
1087 .get_max_value = ctrl_cropl_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001088 .get_def_value = ctrl_get_cropcapdl,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001089 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001090 .desc = "Capture crop top margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001091 .name = "crop_top",
1092 .internal_id = PVR2_CID_CROPT,
1093 .default_value = 0,
1094 DEFREF(cropt),
1095 DEFINT(-35, 544),
1096 .get_min_value = ctrl_cropt_min_get,
1097 .get_max_value = ctrl_cropt_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001098 .get_def_value = ctrl_get_cropcapdt,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001099 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001100 .desc = "Capture crop width",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001101 .name = "crop_width",
1102 .internal_id = PVR2_CID_CROPW,
1103 .default_value = 720,
1104 DEFREF(cropw),
Mike Isely432907f2008-08-31 21:02:20 -03001105 .get_max_value = ctrl_cropw_max_get,
1106 .get_def_value = ctrl_get_cropcapdw,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001107 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001108 .desc = "Capture crop height",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001109 .name = "crop_height",
1110 .internal_id = PVR2_CID_CROPH,
1111 .default_value = 480,
1112 DEFREF(croph),
Mike Isely432907f2008-08-31 21:02:20 -03001113 .get_max_value = ctrl_croph_max_get,
1114 .get_def_value = ctrl_get_cropcapdh,
1115 }, {
1116 .desc = "Capture capability pixel aspect numerator",
1117 .name = "cropcap_pixel_numerator",
1118 .internal_id = PVR2_CID_CROPCAPPAN,
1119 .get_value = ctrl_get_cropcappan,
1120 }, {
1121 .desc = "Capture capability pixel aspect denominator",
1122 .name = "cropcap_pixel_denominator",
1123 .internal_id = PVR2_CID_CROPCAPPAD,
1124 .get_value = ctrl_get_cropcappad,
1125 }, {
1126 .desc = "Capture capability bounds top",
1127 .name = "cropcap_bounds_top",
1128 .internal_id = PVR2_CID_CROPCAPBT,
1129 .get_value = ctrl_get_cropcapbt,
1130 }, {
1131 .desc = "Capture capability bounds left",
1132 .name = "cropcap_bounds_left",
1133 .internal_id = PVR2_CID_CROPCAPBL,
1134 .get_value = ctrl_get_cropcapbl,
1135 }, {
1136 .desc = "Capture capability bounds width",
1137 .name = "cropcap_bounds_width",
1138 .internal_id = PVR2_CID_CROPCAPBW,
1139 .get_value = ctrl_get_cropcapbw,
1140 }, {
1141 .desc = "Capture capability bounds height",
1142 .name = "cropcap_bounds_height",
1143 .internal_id = PVR2_CID_CROPCAPBH,
1144 .get_value = ctrl_get_cropcapbh,
Mike Iselyd8554972006-06-26 20:58:46 -03001145 },{
Mike Iselyc05c0462006-06-25 20:04:25 -03001146 .desc = "Video Source",
1147 .name = "input",
1148 .internal_id = PVR2_CID_INPUT,
1149 .default_value = PVR2_CVAL_INPUT_TV,
Mike Isely29bf5b12008-04-22 14:45:37 -03001150 .check_value = ctrl_check_input,
Mike Iselyc05c0462006-06-25 20:04:25 -03001151 DEFREF(input),
1152 DEFENUM(control_values_input),
1153 },{
1154 .desc = "Audio Mode",
1155 .name = "audio_mode",
1156 .internal_id = PVR2_CID_AUDIOMODE,
1157 .default_value = V4L2_TUNER_MODE_STEREO,
1158 DEFREF(audiomode),
1159 DEFENUM(control_values_audiomode),
1160 },{
1161 .desc = "Horizontal capture resolution",
1162 .name = "resolution_hor",
1163 .internal_id = PVR2_CID_HRES,
1164 .default_value = 720,
1165 DEFREF(res_hor),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001166 DEFINT(19,720),
Mike Iselyc05c0462006-06-25 20:04:25 -03001167 },{
1168 .desc = "Vertical capture resolution",
1169 .name = "resolution_ver",
1170 .internal_id = PVR2_CID_VRES,
1171 .default_value = 480,
1172 DEFREF(res_ver),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001173 DEFINT(17,576),
1174 /* Hook in check for video standard and adjust maximum
1175 depending on the standard. */
1176 .get_max_value = ctrl_vres_max_get,
1177 .get_min_value = ctrl_vres_min_get,
Mike Iselyc05c0462006-06-25 20:04:25 -03001178 },{
Mike Iselyb30d2442006-06-25 20:05:01 -03001179 .v4l_id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
Mike Isely434449f2006-08-08 09:10:06 -03001180 .default_value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
1181 .desc = "Audio Sampling Frequency",
Mike Iselyd8554972006-06-26 20:58:46 -03001182 .name = "srate",
Mike Iselyd8554972006-06-26 20:58:46 -03001183 DEFREF(srate),
1184 DEFENUM(control_values_srate),
1185 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001186 .desc = "Tuner Frequency (Hz)",
1187 .name = "frequency",
1188 .internal_id = PVR2_CID_FREQUENCY,
Mike Isely1bde0282006-12-27 23:30:13 -03001189 .default_value = 0,
Mike Iselyd8554972006-06-26 20:58:46 -03001190 .set_value = ctrl_freq_set,
1191 .get_value = ctrl_freq_get,
1192 .is_dirty = ctrl_freq_is_dirty,
1193 .clear_dirty = ctrl_freq_clear_dirty,
Mike Isely644afdb2007-01-20 00:19:23 -03001194 DEFINT(0,0),
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -03001195 /* Hook in check for input value (tv/radio) and adjust
1196 max/min values accordingly */
1197 .get_max_value = ctrl_freq_max_get,
1198 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001199 },{
1200 .desc = "Channel",
1201 .name = "channel",
1202 .set_value = ctrl_channel_set,
1203 .get_value = ctrl_channel_get,
1204 DEFINT(0,FREQTABLE_SIZE),
1205 },{
1206 .desc = "Channel Program Frequency",
1207 .name = "freq_table_value",
1208 .set_value = ctrl_channelfreq_set,
1209 .get_value = ctrl_channelfreq_get,
Mike Isely644afdb2007-01-20 00:19:23 -03001210 DEFINT(0,0),
Mike Isely1bde0282006-12-27 23:30:13 -03001211 /* Hook in check for input value (tv/radio) and adjust
1212 max/min values accordingly */
Mike Isely1bde0282006-12-27 23:30:13 -03001213 .get_max_value = ctrl_freq_max_get,
1214 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001215 },{
1216 .desc = "Channel Program ID",
1217 .name = "freq_table_channel",
1218 .set_value = ctrl_channelprog_set,
1219 .get_value = ctrl_channelprog_get,
1220 DEFINT(0,FREQTABLE_SIZE),
1221 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001222 .desc = "Streaming Enabled",
1223 .name = "streaming_enabled",
1224 .get_value = ctrl_streamingenabled_get,
Mike Isely33213962006-06-25 20:04:40 -03001225 DEFBOOL,
Mike Iselyd8554972006-06-26 20:58:46 -03001226 },{
1227 .desc = "USB Speed",
1228 .name = "usb_speed",
1229 .get_value = ctrl_hsm_get,
1230 DEFENUM(control_values_hsm),
1231 },{
Mike Isely681c7392007-11-26 01:48:52 -03001232 .desc = "Master State",
1233 .name = "master_state",
1234 .get_value = ctrl_masterstate_get,
1235 DEFENUM(pvr2_state_names),
1236 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001237 .desc = "Signal Present",
1238 .name = "signal_present",
1239 .get_value = ctrl_signal_get,
Mike Isely18103c572007-01-20 00:09:47 -03001240 DEFINT(0,65535),
1241 },{
1242 .desc = "Audio Modes Present",
1243 .name = "audio_modes_present",
1244 .get_value = ctrl_audio_modes_present_get,
1245 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
1246 v4l. Nothing outside of this module cares about this,
1247 but I reuse it in order to also reuse the
1248 control_values_audiomode string table. */
1249 DEFMASK(((1 << V4L2_TUNER_MODE_MONO)|
1250 (1 << V4L2_TUNER_MODE_STEREO)|
1251 (1 << V4L2_TUNER_MODE_LANG1)|
1252 (1 << V4L2_TUNER_MODE_LANG2)),
1253 control_values_audiomode),
Mike Iselyd8554972006-06-26 20:58:46 -03001254 },{
1255 .desc = "Video Standards Available Mask",
1256 .name = "video_standard_mask_available",
1257 .internal_id = PVR2_CID_STDAVAIL,
1258 .skip_init = !0,
1259 .get_value = ctrl_stdavail_get,
1260 .set_value = ctrl_stdavail_set,
1261 .val_to_sym = ctrl_std_val_to_sym,
1262 .sym_to_val = ctrl_std_sym_to_val,
1263 .type = pvr2_ctl_bitmask,
1264 },{
1265 .desc = "Video Standards In Use Mask",
1266 .name = "video_standard_mask_active",
1267 .internal_id = PVR2_CID_STDCUR,
1268 .skip_init = !0,
1269 .get_value = ctrl_stdcur_get,
1270 .set_value = ctrl_stdcur_set,
1271 .is_dirty = ctrl_stdcur_is_dirty,
1272 .clear_dirty = ctrl_stdcur_clear_dirty,
1273 .val_to_sym = ctrl_std_val_to_sym,
1274 .sym_to_val = ctrl_std_sym_to_val,
1275 .type = pvr2_ctl_bitmask,
1276 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001277 .desc = "Video Standard Name",
1278 .name = "video_standard",
1279 .internal_id = PVR2_CID_STDENUM,
1280 .skip_init = !0,
1281 .get_value = ctrl_stdenumcur_get,
1282 .set_value = ctrl_stdenumcur_set,
1283 .is_dirty = ctrl_stdenumcur_is_dirty,
1284 .clear_dirty = ctrl_stdenumcur_clear_dirty,
1285 .type = pvr2_ctl_enum,
1286 }
1287};
1288
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001289#define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
Mike Iselyd8554972006-06-26 20:58:46 -03001290
1291
1292const char *pvr2_config_get_name(enum pvr2_config cfg)
1293{
1294 switch (cfg) {
1295 case pvr2_config_empty: return "empty";
1296 case pvr2_config_mpeg: return "mpeg";
1297 case pvr2_config_vbi: return "vbi";
Mike Isely16eb40d2006-12-30 18:27:32 -03001298 case pvr2_config_pcm: return "pcm";
1299 case pvr2_config_rawvideo: return "raw video";
Mike Iselyd8554972006-06-26 20:58:46 -03001300 }
1301 return "<unknown>";
1302}
1303
1304
1305struct usb_device *pvr2_hdw_get_dev(struct pvr2_hdw *hdw)
1306{
1307 return hdw->usb_dev;
1308}
1309
1310
1311unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *hdw)
1312{
1313 return hdw->serial_number;
1314}
1315
Mike Isely31a18542007-04-08 01:11:47 -03001316
1317const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *hdw)
1318{
1319 return hdw->bus_info;
1320}
1321
1322
Mike Isely13a88792009-01-14 04:22:56 -03001323const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw *hdw)
1324{
1325 return hdw->identifier;
1326}
1327
1328
Mike Isely1bde0282006-12-27 23:30:13 -03001329unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw *hdw)
1330{
1331 return hdw->freqSelector ? hdw->freqValTelevision : hdw->freqValRadio;
1332}
1333
1334/* Set the currently tuned frequency and account for all possible
1335 driver-core side effects of this action. */
Adrian Bunkf55a8712008-04-18 05:38:56 -03001336static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *hdw,unsigned long val)
Mike Isely1bde0282006-12-27 23:30:13 -03001337{
Mike Isely7c74e572007-01-20 00:15:41 -03001338 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
Mike Isely1bde0282006-12-27 23:30:13 -03001339 if (hdw->freqSelector) {
1340 /* Swing over to radio frequency selection */
1341 hdw->freqSelector = 0;
1342 hdw->freqDirty = !0;
1343 }
Mike Isely1bde0282006-12-27 23:30:13 -03001344 if (hdw->freqValRadio != val) {
1345 hdw->freqValRadio = val;
1346 hdw->freqSlotRadio = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001347 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001348 }
Mike Isely7c74e572007-01-20 00:15:41 -03001349 } else {
Mike Isely1bde0282006-12-27 23:30:13 -03001350 if (!(hdw->freqSelector)) {
1351 /* Swing over to television frequency selection */
1352 hdw->freqSelector = 1;
1353 hdw->freqDirty = !0;
1354 }
Mike Isely1bde0282006-12-27 23:30:13 -03001355 if (hdw->freqValTelevision != val) {
1356 hdw->freqValTelevision = val;
1357 hdw->freqSlotTelevision = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001358 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001359 }
Mike Isely1bde0282006-12-27 23:30:13 -03001360 }
1361}
1362
Mike Iselyd8554972006-06-26 20:58:46 -03001363int pvr2_hdw_get_unit_number(struct pvr2_hdw *hdw)
1364{
1365 return hdw->unit_number;
1366}
1367
1368
1369/* Attempt to locate one of the given set of files. Messages are logged
1370 appropriate to what has been found. The return value will be 0 or
1371 greater on success (it will be the index of the file name found) and
1372 fw_entry will be filled in. Otherwise a negative error is returned on
1373 failure. If the return value is -ENOENT then no viable firmware file
1374 could be located. */
1375static int pvr2_locate_firmware(struct pvr2_hdw *hdw,
1376 const struct firmware **fw_entry,
1377 const char *fwtypename,
1378 unsigned int fwcount,
1379 const char *fwnames[])
1380{
1381 unsigned int idx;
1382 int ret = -EINVAL;
1383 for (idx = 0; idx < fwcount; idx++) {
1384 ret = request_firmware(fw_entry,
1385 fwnames[idx],
1386 &hdw->usb_dev->dev);
1387 if (!ret) {
1388 trace_firmware("Located %s firmware: %s;"
1389 " uploading...",
1390 fwtypename,
1391 fwnames[idx]);
1392 return idx;
1393 }
1394 if (ret == -ENOENT) continue;
1395 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1396 "request_firmware fatal error with code=%d",ret);
1397 return ret;
1398 }
1399 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1400 "***WARNING***"
1401 " Device %s firmware"
1402 " seems to be missing.",
1403 fwtypename);
1404 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1405 "Did you install the pvrusb2 firmware files"
1406 " in their proper location?");
1407 if (fwcount == 1) {
1408 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1409 "request_firmware unable to locate %s file %s",
1410 fwtypename,fwnames[0]);
1411 } else {
1412 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1413 "request_firmware unable to locate"
1414 " one of the following %s files:",
1415 fwtypename);
1416 for (idx = 0; idx < fwcount; idx++) {
1417 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1418 "request_firmware: Failed to find %s",
1419 fwnames[idx]);
1420 }
1421 }
1422 return ret;
1423}
1424
1425
1426/*
1427 * pvr2_upload_firmware1().
1428 *
1429 * Send the 8051 firmware to the device. After the upload, arrange for
1430 * device to re-enumerate.
1431 *
1432 * NOTE : the pointer to the firmware data given by request_firmware()
1433 * is not suitable for an usb transaction.
1434 *
1435 */
Adrian Bunk07e337e2006-06-30 11:30:20 -03001436static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03001437{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001438 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001439 void *fw_ptr;
1440 unsigned int pipe;
1441 int ret;
1442 u16 address;
Mike Isely1d643a32007-09-08 22:18:50 -03001443
Mike Isely989eb152007-11-26 01:53:12 -03001444 if (!hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03001445 hdw->fw1_state = FW1_STATE_OK;
Mike Isely56dcbfa2007-11-26 02:00:51 -03001446 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1447 "Connected device type defines"
1448 " no firmware to upload; ignoring firmware");
1449 return -ENOTTY;
Mike Isely1d643a32007-09-08 22:18:50 -03001450 }
1451
Mike Iselyd8554972006-06-26 20:58:46 -03001452 hdw->fw1_state = FW1_STATE_FAILED; // default result
1453
1454 trace_firmware("pvr2_upload_firmware1");
1455
1456 ret = pvr2_locate_firmware(hdw,&fw_entry,"fx2 controller",
Mike Isely989eb152007-11-26 01:53:12 -03001457 hdw->hdw_desc->fx2_firmware.cnt,
1458 hdw->hdw_desc->fx2_firmware.lst);
Mike Iselyd8554972006-06-26 20:58:46 -03001459 if (ret < 0) {
1460 if (ret == -ENOENT) hdw->fw1_state = FW1_STATE_MISSING;
1461 return ret;
1462 }
1463
1464 usb_settoggle(hdw->usb_dev, 0 & 0xf, !(0 & USB_DIR_IN), 0);
1465 usb_clear_halt(hdw->usb_dev, usb_sndbulkpipe(hdw->usb_dev, 0 & 0x7f));
1466
1467 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
1468
1469 if (fw_entry->size != 0x2000){
1470 pvr2_trace(PVR2_TRACE_ERROR_LEGS,"wrong fx2 firmware size");
1471 release_firmware(fw_entry);
1472 return -ENOMEM;
1473 }
1474
1475 fw_ptr = kmalloc(0x800, GFP_KERNEL);
1476 if (fw_ptr == NULL){
1477 release_firmware(fw_entry);
1478 return -ENOMEM;
1479 }
1480
1481 /* We have to hold the CPU during firmware upload. */
1482 pvr2_hdw_cpureset_assert(hdw,1);
1483
1484 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1485 chunk. */
1486
1487 ret = 0;
1488 for(address = 0; address < fw_entry->size; address += 0x800) {
1489 memcpy(fw_ptr, fw_entry->data + address, 0x800);
1490 ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address,
1491 0, fw_ptr, 0x800, HZ);
1492 }
1493
1494 trace_firmware("Upload done, releasing device's CPU");
1495
1496 /* Now release the CPU. It will disconnect and reconnect later. */
1497 pvr2_hdw_cpureset_assert(hdw,0);
1498
1499 kfree(fw_ptr);
1500 release_firmware(fw_entry);
1501
1502 trace_firmware("Upload done (%d bytes sent)",ret);
1503
1504 /* We should have written 8192 bytes */
1505 if (ret == 8192) {
1506 hdw->fw1_state = FW1_STATE_RELOAD;
1507 return 0;
1508 }
1509
1510 return -EIO;
1511}
1512
1513
1514/*
1515 * pvr2_upload_firmware2()
1516 *
1517 * This uploads encoder firmware on endpoint 2.
1518 *
1519 */
1520
1521int pvr2_upload_firmware2(struct pvr2_hdw *hdw)
1522{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001523 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001524 void *fw_ptr;
Mike Isely90060d32007-02-08 02:02:53 -03001525 unsigned int pipe, fw_len, fw_done, bcnt, icnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001526 int actual_length;
1527 int ret = 0;
1528 int fwidx;
1529 static const char *fw_files[] = {
1530 CX2341X_FIRM_ENC_FILENAME,
1531 };
1532
Mike Isely989eb152007-11-26 01:53:12 -03001533 if (hdw->hdw_desc->flag_skip_cx23416_firmware) {
Mike Isely1d643a32007-09-08 22:18:50 -03001534 return 0;
1535 }
1536
Mike Iselyd8554972006-06-26 20:58:46 -03001537 trace_firmware("pvr2_upload_firmware2");
1538
1539 ret = pvr2_locate_firmware(hdw,&fw_entry,"encoder",
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001540 ARRAY_SIZE(fw_files), fw_files);
Mike Iselyd8554972006-06-26 20:58:46 -03001541 if (ret < 0) return ret;
1542 fwidx = ret;
1543 ret = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -03001544 /* Since we're about to completely reinitialize the encoder,
1545 invalidate our cached copy of its configuration state. Next
1546 time we configure the encoder, then we'll fully configure it. */
1547 hdw->enc_cur_valid = 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001548
Mike Iselyd913d632008-04-06 04:04:35 -03001549 /* Encoder is about to be reset so note that as far as we're
1550 concerned now, the encoder has never been run. */
1551 del_timer_sync(&hdw->encoder_run_timer);
1552 if (hdw->state_encoder_runok) {
1553 hdw->state_encoder_runok = 0;
1554 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
1555 }
1556
Mike Iselyd8554972006-06-26 20:58:46 -03001557 /* First prepare firmware loading */
1558 ret |= pvr2_write_register(hdw, 0x0048, 0xffffffff); /*interrupt mask*/
1559 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000088); /*gpio dir*/
1560 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1561 ret |= pvr2_hdw_cmd_deep_reset(hdw);
1562 ret |= pvr2_write_register(hdw, 0xa064, 0x00000000); /*APU command*/
1563 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000408); /*gpio dir*/
1564 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1565 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffed); /*VPU ctrl*/
1566 ret |= pvr2_write_register(hdw, 0x9054, 0xfffffffd); /*reset hw blocks*/
1567 ret |= pvr2_write_register(hdw, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1568 ret |= pvr2_write_register(hdw, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1569 ret |= pvr2_write_register(hdw, 0x0700, 0x00000000); /*I2C clock*/
1570 ret |= pvr2_write_register(hdw, 0xaa00, 0x00000000); /*unknown*/
1571 ret |= pvr2_write_register(hdw, 0xaa04, 0x00057810); /*unknown*/
1572 ret |= pvr2_write_register(hdw, 0xaa10, 0x00148500); /*unknown*/
1573 ret |= pvr2_write_register(hdw, 0xaa18, 0x00840000); /*unknown*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001574 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_FWPOST1);
1575 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001576
1577 if (ret) {
1578 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1579 "firmware2 upload prep failed, ret=%d",ret);
1580 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001581 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001582 }
1583
1584 /* Now send firmware */
1585
1586 fw_len = fw_entry->size;
1587
Mike Isely90060d32007-02-08 02:02:53 -03001588 if (fw_len % sizeof(u32)) {
Mike Iselyd8554972006-06-26 20:58:46 -03001589 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1590 "size of %s firmware"
Mike Isely48dc30a2007-03-03 10:13:05 -02001591 " must be a multiple of %zu bytes",
Mike Isely90060d32007-02-08 02:02:53 -03001592 fw_files[fwidx],sizeof(u32));
Mike Iselyd8554972006-06-26 20:58:46 -03001593 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001594 ret = -EINVAL;
1595 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001596 }
1597
1598 fw_ptr = kmalloc(FIRMWARE_CHUNK_SIZE, GFP_KERNEL);
1599 if (fw_ptr == NULL){
1600 release_firmware(fw_entry);
1601 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1602 "failed to allocate memory for firmware2 upload");
Mike Isely21684ba2008-04-21 03:49:33 -03001603 ret = -ENOMEM;
1604 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001605 }
1606
1607 pipe = usb_sndbulkpipe(hdw->usb_dev, PVR2_FIRMWARE_ENDPOINT);
1608
Mike Isely90060d32007-02-08 02:02:53 -03001609 fw_done = 0;
1610 for (fw_done = 0; fw_done < fw_len;) {
1611 bcnt = fw_len - fw_done;
1612 if (bcnt > FIRMWARE_CHUNK_SIZE) bcnt = FIRMWARE_CHUNK_SIZE;
1613 memcpy(fw_ptr, fw_entry->data + fw_done, bcnt);
1614 /* Usbsnoop log shows that we must swap bytes... */
Mike Isely5f33df12008-08-30 15:09:31 -03001615 /* Some background info: The data being swapped here is a
1616 firmware image destined for the mpeg encoder chip that
1617 lives at the other end of a USB endpoint. The encoder
1618 chip always talks in 32 bit chunks and its storage is
1619 organized into 32 bit words. However from the file
1620 system to the encoder chip everything is purely a byte
1621 stream. The firmware file's contents are always 32 bit
1622 swapped from what the encoder expects. Thus the need
1623 always exists to swap the bytes regardless of the endian
1624 type of the host processor and therefore swab32() makes
1625 the most sense. */
Mike Isely90060d32007-02-08 02:02:53 -03001626 for (icnt = 0; icnt < bcnt/4 ; icnt++)
Harvey Harrison513edce2008-08-18 17:38:01 -03001627 ((u32 *)fw_ptr)[icnt] = swab32(((u32 *)fw_ptr)[icnt]);
Mike Iselyd8554972006-06-26 20:58:46 -03001628
Mike Isely90060d32007-02-08 02:02:53 -03001629 ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt,
Mike Iselyd8554972006-06-26 20:58:46 -03001630 &actual_length, HZ);
Mike Isely90060d32007-02-08 02:02:53 -03001631 ret |= (actual_length != bcnt);
1632 if (ret) break;
1633 fw_done += bcnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001634 }
1635
1636 trace_firmware("upload of %s : %i / %i ",
1637 fw_files[fwidx],fw_done,fw_len);
1638
1639 kfree(fw_ptr);
1640 release_firmware(fw_entry);
1641
1642 if (ret) {
1643 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1644 "firmware2 upload transfer failure");
Mike Isely21684ba2008-04-21 03:49:33 -03001645 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001646 }
1647
1648 /* Finish upload */
1649
1650 ret |= pvr2_write_register(hdw, 0x9054, 0xffffffff); /*reset hw blocks*/
1651 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffe8); /*VPU ctrl*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001652 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001653
1654 if (ret) {
1655 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1656 "firmware2 upload post-proc failure");
Mike Iselyd8554972006-06-26 20:58:46 -03001657 }
Mike Isely21684ba2008-04-21 03:49:33 -03001658
1659 done:
Mike Isely1df59f02008-04-21 03:50:39 -03001660 if (hdw->hdw_desc->signal_routing_scheme ==
1661 PVR2_ROUTING_SCHEME_GOTVIEW) {
1662 /* Ensure that GPIO 11 is set to output for GOTVIEW
1663 hardware. */
1664 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
1665 }
Mike Iselyd8554972006-06-26 20:58:46 -03001666 return ret;
1667}
1668
1669
Mike Isely681c7392007-11-26 01:48:52 -03001670static const char *pvr2_get_state_name(unsigned int st)
Mike Iselyd8554972006-06-26 20:58:46 -03001671{
Mike Isely681c7392007-11-26 01:48:52 -03001672 if (st < ARRAY_SIZE(pvr2_state_names)) {
1673 return pvr2_state_names[st];
Mike Iselyd8554972006-06-26 20:58:46 -03001674 }
Mike Isely681c7392007-11-26 01:48:52 -03001675 return "???";
Mike Iselyd8554972006-06-26 20:58:46 -03001676}
1677
Mike Isely681c7392007-11-26 01:48:52 -03001678static int pvr2_decoder_enable(struct pvr2_hdw *hdw,int enablefl)
Mike Iselyd8554972006-06-26 20:58:46 -03001679{
Mike Iselyaf78e162009-03-07 00:21:30 -03001680 /* Even though we really only care about the video decoder chip at
1681 this point, we'll broadcast stream on/off to all sub-devices
1682 anyway, just in case somebody else wants to hear the
1683 command... */
Mike Iselye2605082009-03-07 01:50:48 -03001684 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 stream=%s",
1685 (enablefl ? "on" : "off"));
Mike Iselyaf78e162009-03-07 00:21:30 -03001686 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_stream, enablefl);
1687 if (hdw->decoder_client_id) {
1688 /* We get here if the encoder has been noticed. Otherwise
1689 we'll issue a warning to the user (which should
1690 normally never happen). */
1691 return 0;
1692 }
1693 if (!hdw->flag_decoder_missed) {
1694 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1695 "WARNING: No decoder present");
1696 hdw->flag_decoder_missed = !0;
1697 trace_stbit("flag_decoder_missed",
1698 hdw->flag_decoder_missed);
1699 }
1700 return -EIO;
Mike Iselyd8554972006-06-26 20:58:46 -03001701}
1702
1703
Mike Isely681c7392007-11-26 01:48:52 -03001704int pvr2_hdw_get_state(struct pvr2_hdw *hdw)
1705{
1706 return hdw->master_state;
1707}
1708
1709
1710static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *hdw)
1711{
1712 if (!hdw->flag_tripped) return 0;
1713 hdw->flag_tripped = 0;
1714 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1715 "Clearing driver error statuss");
1716 return !0;
1717}
1718
1719
1720int pvr2_hdw_untrip(struct pvr2_hdw *hdw)
1721{
1722 int fl;
1723 LOCK_TAKE(hdw->big_lock); do {
1724 fl = pvr2_hdw_untrip_unlocked(hdw);
1725 } while (0); LOCK_GIVE(hdw->big_lock);
1726 if (fl) pvr2_hdw_state_sched(hdw);
1727 return 0;
1728}
1729
1730
Mike Isely681c7392007-11-26 01:48:52 -03001731
1732
Mike Iselyd8554972006-06-26 20:58:46 -03001733int pvr2_hdw_get_streaming(struct pvr2_hdw *hdw)
1734{
Mike Isely681c7392007-11-26 01:48:52 -03001735 return hdw->state_pipeline_req != 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001736}
1737
1738
1739int pvr2_hdw_set_streaming(struct pvr2_hdw *hdw,int enable_flag)
1740{
Mike Isely681c7392007-11-26 01:48:52 -03001741 int ret,st;
Mike Iselyd8554972006-06-26 20:58:46 -03001742 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03001743 pvr2_hdw_untrip_unlocked(hdw);
1744 if ((!enable_flag) != !(hdw->state_pipeline_req)) {
1745 hdw->state_pipeline_req = enable_flag != 0;
1746 pvr2_trace(PVR2_TRACE_START_STOP,
1747 "/*--TRACE_STREAM--*/ %s",
1748 enable_flag ? "enable" : "disable");
1749 }
1750 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03001751 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001752 if ((ret = pvr2_hdw_wait(hdw,0)) < 0) return ret;
1753 if (enable_flag) {
1754 while ((st = hdw->master_state) != PVR2_STATE_RUN) {
1755 if (st != PVR2_STATE_READY) return -EIO;
1756 if ((ret = pvr2_hdw_wait(hdw,st)) < 0) return ret;
1757 }
1758 }
Mike Iselyd8554972006-06-26 20:58:46 -03001759 return 0;
1760}
1761
1762
1763int pvr2_hdw_set_stream_type(struct pvr2_hdw *hdw,enum pvr2_config config)
1764{
Mike Isely681c7392007-11-26 01:48:52 -03001765 int fl;
Mike Iselyd8554972006-06-26 20:58:46 -03001766 LOCK_TAKE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001767 if ((fl = (hdw->desired_stream_type != config)) != 0) {
1768 hdw->desired_stream_type = config;
1769 hdw->state_pipeline_config = 0;
1770 trace_stbit("state_pipeline_config",
1771 hdw->state_pipeline_config);
1772 pvr2_hdw_state_sched(hdw);
1773 }
Mike Iselyd8554972006-06-26 20:58:46 -03001774 LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001775 if (fl) return 0;
1776 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03001777}
1778
1779
1780static int get_default_tuner_type(struct pvr2_hdw *hdw)
1781{
1782 int unit_number = hdw->unit_number;
1783 int tp = -1;
1784 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1785 tp = tuner[unit_number];
1786 }
1787 if (tp < 0) return -EINVAL;
1788 hdw->tuner_type = tp;
Mike Iselyaaf78842007-11-26 02:04:11 -03001789 hdw->tuner_updated = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03001790 return 0;
1791}
1792
1793
1794static v4l2_std_id get_default_standard(struct pvr2_hdw *hdw)
1795{
1796 int unit_number = hdw->unit_number;
1797 int tp = 0;
1798 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1799 tp = video_std[unit_number];
Mike Isely6a540252007-12-02 23:51:34 -03001800 if (tp) return tp;
Mike Iselyd8554972006-06-26 20:58:46 -03001801 }
Mike Isely6a540252007-12-02 23:51:34 -03001802 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001803}
1804
1805
1806static unsigned int get_default_error_tolerance(struct pvr2_hdw *hdw)
1807{
1808 int unit_number = hdw->unit_number;
1809 int tp = 0;
1810 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1811 tp = tolerance[unit_number];
1812 }
1813 return tp;
1814}
1815
1816
1817static int pvr2_hdw_check_firmware(struct pvr2_hdw *hdw)
1818{
1819 /* Try a harmless request to fetch the eeprom's address over
1820 endpoint 1. See what happens. Only the full FX2 image can
1821 respond to this. If this probe fails then likely the FX2
1822 firmware needs be loaded. */
1823 int result;
1824 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03001825 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03001826 result = pvr2_send_request_ex(hdw,HZ*1,!0,
1827 hdw->cmd_buffer,1,
1828 hdw->cmd_buffer,1);
1829 if (result < 0) break;
1830 } while(0); LOCK_GIVE(hdw->ctl_lock);
1831 if (result) {
1832 pvr2_trace(PVR2_TRACE_INIT,
1833 "Probe of device endpoint 1 result status %d",
1834 result);
1835 } else {
1836 pvr2_trace(PVR2_TRACE_INIT,
1837 "Probe of device endpoint 1 succeeded");
1838 }
1839 return result == 0;
1840}
1841
Mike Isely9f66d4e2007-09-08 22:28:51 -03001842struct pvr2_std_hack {
1843 v4l2_std_id pat; /* Pattern to match */
1844 v4l2_std_id msk; /* Which bits we care about */
1845 v4l2_std_id std; /* What additional standards or default to set */
1846};
1847
1848/* This data structure labels specific combinations of standards from
1849 tveeprom that we'll try to recognize. If we recognize one, then assume
1850 a specified default standard to use. This is here because tveeprom only
1851 tells us about available standards not the intended default standard (if
1852 any) for the device in question. We guess the default based on what has
1853 been reported as available. Note that this is only for guessing a
1854 default - which can always be overridden explicitly - and if the user
1855 has otherwise named a default then that default will always be used in
1856 place of this table. */
Tobias Klauserebff0332008-04-22 14:45:45 -03001857static const struct pvr2_std_hack std_eeprom_maps[] = {
Mike Isely9f66d4e2007-09-08 22:28:51 -03001858 { /* PAL(B/G) */
1859 .pat = V4L2_STD_B|V4L2_STD_GH,
1860 .std = V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_PAL_G,
1861 },
1862 { /* NTSC(M) */
1863 .pat = V4L2_STD_MN,
1864 .std = V4L2_STD_NTSC_M,
1865 },
1866 { /* PAL(I) */
1867 .pat = V4L2_STD_PAL_I,
1868 .std = V4L2_STD_PAL_I,
1869 },
1870 { /* SECAM(L/L') */
1871 .pat = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1872 .std = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1873 },
1874 { /* PAL(D/D1/K) */
1875 .pat = V4L2_STD_DK,
Roel Kluinea2562d2007-12-02 23:04:57 -03001876 .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001877 },
1878};
1879
Mike Iselyd8554972006-06-26 20:58:46 -03001880static void pvr2_hdw_setup_std(struct pvr2_hdw *hdw)
1881{
1882 char buf[40];
1883 unsigned int bcnt;
Mike Isely3d290bd2007-12-03 01:47:12 -03001884 v4l2_std_id std1,std2,std3;
Mike Iselyd8554972006-06-26 20:58:46 -03001885
1886 std1 = get_default_standard(hdw);
Mike Isely3d290bd2007-12-03 01:47:12 -03001887 std3 = std1 ? 0 : hdw->hdw_desc->default_std_mask;
Mike Iselyd8554972006-06-26 20:58:46 -03001888
1889 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
Mike Isely56585382007-09-08 22:32:12 -03001890 pvr2_trace(PVR2_TRACE_STD,
Mike Isely56dcbfa2007-11-26 02:00:51 -03001891 "Supported video standard(s) reported available"
1892 " in hardware: %.*s",
Mike Iselyd8554972006-06-26 20:58:46 -03001893 bcnt,buf);
1894
1895 hdw->std_mask_avail = hdw->std_mask_eeprom;
1896
Mike Isely3d290bd2007-12-03 01:47:12 -03001897 std2 = (std1|std3) & ~hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -03001898 if (std2) {
1899 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
Mike Isely56585382007-09-08 22:32:12 -03001900 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001901 "Expanding supported video standards"
1902 " to include: %.*s",
1903 bcnt,buf);
1904 hdw->std_mask_avail |= std2;
1905 }
1906
1907 pvr2_hdw_internal_set_std_avail(hdw);
1908
1909 if (std1) {
1910 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
Mike Isely56585382007-09-08 22:32:12 -03001911 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001912 "Initial video standard forced to %.*s",
1913 bcnt,buf);
1914 hdw->std_mask_cur = std1;
1915 hdw->std_dirty = !0;
1916 pvr2_hdw_internal_find_stdenum(hdw);
1917 return;
1918 }
Mike Isely3d290bd2007-12-03 01:47:12 -03001919 if (std3) {
1920 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1921 pvr2_trace(PVR2_TRACE_STD,
1922 "Initial video standard"
1923 " (determined by device type): %.*s",bcnt,buf);
1924 hdw->std_mask_cur = std3;
1925 hdw->std_dirty = !0;
1926 pvr2_hdw_internal_find_stdenum(hdw);
1927 return;
1928 }
Mike Iselyd8554972006-06-26 20:58:46 -03001929
Mike Isely9f66d4e2007-09-08 22:28:51 -03001930 {
1931 unsigned int idx;
1932 for (idx = 0; idx < ARRAY_SIZE(std_eeprom_maps); idx++) {
1933 if (std_eeprom_maps[idx].msk ?
1934 ((std_eeprom_maps[idx].pat ^
1935 hdw->std_mask_eeprom) &
1936 std_eeprom_maps[idx].msk) :
1937 (std_eeprom_maps[idx].pat !=
1938 hdw->std_mask_eeprom)) continue;
1939 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1940 std_eeprom_maps[idx].std);
Mike Isely56585382007-09-08 22:32:12 -03001941 pvr2_trace(PVR2_TRACE_STD,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001942 "Initial video standard guessed as %.*s",
1943 bcnt,buf);
1944 hdw->std_mask_cur = std_eeprom_maps[idx].std;
1945 hdw->std_dirty = !0;
1946 pvr2_hdw_internal_find_stdenum(hdw);
1947 return;
1948 }
1949 }
1950
Mike Iselyd8554972006-06-26 20:58:46 -03001951 if (hdw->std_enum_cnt > 1) {
1952 // Autoselect the first listed standard
1953 hdw->std_enum_cur = 1;
1954 hdw->std_mask_cur = hdw->std_defs[hdw->std_enum_cur-1].id;
1955 hdw->std_dirty = !0;
Mike Isely56585382007-09-08 22:32:12 -03001956 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001957 "Initial video standard auto-selected to %s",
1958 hdw->std_defs[hdw->std_enum_cur-1].name);
1959 return;
1960 }
1961
Mike Isely0885ba12006-06-25 21:30:47 -03001962 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Iselyd8554972006-06-26 20:58:46 -03001963 "Unable to select a viable initial video standard");
1964}
1965
1966
Mike Iselye9c64a72009-03-06 23:42:20 -03001967static unsigned int pvr2_copy_i2c_addr_list(
1968 unsigned short *dst, const unsigned char *src,
1969 unsigned int dst_max)
1970{
Mike Isely3ab8d292009-03-07 01:37:58 -03001971 unsigned int cnt = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03001972 if (!src) return 0;
1973 while (src[cnt] && (cnt + 1) < dst_max) {
1974 dst[cnt] = src[cnt];
1975 cnt++;
1976 }
1977 dst[cnt] = I2C_CLIENT_END;
1978 return cnt;
1979}
1980
1981
Mike Isely1ab5e742009-03-07 00:24:24 -03001982static int pvr2_hdw_load_subdev(struct pvr2_hdw *hdw,
1983 const struct pvr2_device_client_desc *cd)
Mike Iselye9c64a72009-03-06 23:42:20 -03001984{
1985 const char *fname;
1986 unsigned char mid;
1987 struct v4l2_subdev *sd;
1988 unsigned int i2ccnt;
1989 const unsigned char *p;
1990 /* Arbitrary count - max # i2c addresses we will probe */
1991 unsigned short i2caddr[25];
1992
1993 mid = cd->module_id;
1994 fname = (mid < ARRAY_SIZE(module_names)) ? module_names[mid] : NULL;
1995 if (!fname) {
1996 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03001997 "Module ID %u for device %s has no name",
Mike Iselye9c64a72009-03-06 23:42:20 -03001998 mid,
1999 hdw->hdw_desc->description);
Mike Isely1ab5e742009-03-07 00:24:24 -03002000 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002001 }
Mike Iselybd14d4f2009-03-07 00:56:52 -03002002 pvr2_trace(PVR2_TRACE_INIT,
2003 "Module ID %u (%s) for device %s being loaded...",
2004 mid, fname,
2005 hdw->hdw_desc->description);
Mike Iselye9c64a72009-03-06 23:42:20 -03002006
2007 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, cd->i2c_address_list,
2008 ARRAY_SIZE(i2caddr));
2009 if (!i2ccnt && ((p = (mid < ARRAY_SIZE(module_i2c_addresses)) ?
2010 module_i2c_addresses[mid] : NULL) != NULL)) {
2011 /* Second chance: Try default i2c address list */
2012 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, p,
2013 ARRAY_SIZE(i2caddr));
Mike Iselybd14d4f2009-03-07 00:56:52 -03002014 if (i2ccnt) {
2015 pvr2_trace(PVR2_TRACE_INIT,
2016 "Module ID %u:"
2017 " Using default i2c address list",
2018 mid);
2019 }
Mike Iselye9c64a72009-03-06 23:42:20 -03002020 }
2021
2022 if (!i2ccnt) {
2023 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002024 "Module ID %u (%s) for device %s:"
2025 " No i2c addresses",
2026 mid, fname, hdw->hdw_desc->description);
2027 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002028 }
2029
2030 /* Note how the 2nd and 3rd arguments are the same for both
2031 * v4l2_i2c_new_subdev() and v4l2_i2c_new_probed_subdev(). Why?
2032 * Well the 2nd argument is the module name to load, while the 3rd
2033 * argument is documented in the framework as being the "chipid" -
2034 * and every other place where I can find examples of this, the
2035 * "chipid" appears to just be the module name again. So here we
2036 * just do the same thing. */
2037 if (i2ccnt == 1) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002038 pvr2_trace(PVR2_TRACE_INIT,
2039 "Module ID %u:"
2040 " Setting up with specified i2c address 0x%x",
2041 mid, i2caddr[0]);
Mike Iselye9c64a72009-03-06 23:42:20 -03002042 sd = v4l2_i2c_new_subdev(&hdw->i2c_adap,
2043 fname, fname,
2044 i2caddr[0]);
2045 } else {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002046 pvr2_trace(PVR2_TRACE_INIT,
2047 "Module ID %u:"
2048 " Setting up with address probe list",
2049 mid);
Mike Iselye9c64a72009-03-06 23:42:20 -03002050 sd = v4l2_i2c_new_probed_subdev(&hdw->i2c_adap,
2051 fname, fname,
2052 i2caddr);
2053 }
2054
Mike Isely446dfdc2009-03-06 23:58:15 -03002055 if (!sd) {
2056 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002057 "Module ID %u (%s) for device %s failed to load",
2058 mid, fname, hdw->hdw_desc->description);
2059 return -EIO;
Mike Isely446dfdc2009-03-06 23:58:15 -03002060 }
2061
2062 /* Tag this sub-device instance with the module ID we know about.
2063 In other places we'll use that tag to determine if the instance
2064 requires special handling. */
2065 sd->grp_id = mid;
2066
Mike Iselybd14d4f2009-03-07 00:56:52 -03002067 pvr2_trace(PVR2_TRACE_INFO, "Attached sub-driver %s", fname);
Mike Iselya932f502009-03-06 23:47:10 -03002068
Mike Iselye9c64a72009-03-06 23:42:20 -03002069
Mike Isely00e5f732009-03-07 00:17:11 -03002070 /* client-specific setup... */
2071 switch (mid) {
2072 case PVR2_CLIENT_ID_CX25840:
2073 hdw->decoder_client_id = mid;
2074 {
2075 /*
2076 Mike Isely <isely@pobox.com> 19-Nov-2006 - This
2077 bit of nuttiness for cx25840 causes that module
2078 to correctly set up its video scaling. This is
2079 really a problem in the cx25840 module itself,
2080 but we work around it here. The problem has not
2081 been seen in ivtv because there VBI is supported
2082 and set up. We don't do VBI here (at least not
2083 yet) and thus we never attempted to even set it
2084 up.
2085 */
2086 struct v4l2_format fmt;
Mike Iselybd14d4f2009-03-07 00:56:52 -03002087 pvr2_trace(PVR2_TRACE_INIT,
2088 "Module ID %u:"
2089 " Executing cx25840 VBI hack",
2090 mid);
Mike Isely00e5f732009-03-07 00:17:11 -03002091 memset(&fmt, 0, sizeof(fmt));
2092 fmt.type = V4L2_BUF_TYPE_SLICED_VBI_CAPTURE;
2093 v4l2_device_call_all(&hdw->v4l2_dev, mid,
2094 video, s_fmt, &fmt);
2095 }
2096 break;
2097 case PVR2_CLIENT_ID_SAA7115:
2098 hdw->decoder_client_id = mid;
2099 break;
2100 default: break;
2101 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002102
2103 return 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002104}
2105
2106
2107static void pvr2_hdw_load_modules(struct pvr2_hdw *hdw)
2108{
2109 unsigned int idx;
2110 const struct pvr2_string_table *cm;
2111 const struct pvr2_device_client_table *ct;
Mike Isely1ab5e742009-03-07 00:24:24 -03002112 int okFl = !0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002113
2114 cm = &hdw->hdw_desc->client_modules;
2115 for (idx = 0; idx < cm->cnt; idx++) {
2116 request_module(cm->lst[idx]);
2117 }
2118
2119 ct = &hdw->hdw_desc->client_table;
2120 for (idx = 0; idx < ct->cnt; idx++) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002121 if (pvr2_hdw_load_subdev(hdw, &ct->lst[idx]) < 0) okFl = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002122 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002123 if (!okFl) pvr2_hdw_render_useless(hdw);
Mike Iselye9c64a72009-03-06 23:42:20 -03002124}
2125
2126
Mike Iselyd8554972006-06-26 20:58:46 -03002127static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
2128{
2129 int ret;
2130 unsigned int idx;
2131 struct pvr2_ctrl *cptr;
2132 int reloadFl = 0;
Mike Isely989eb152007-11-26 01:53:12 -03002133 if (hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03002134 if (!reloadFl) {
2135 reloadFl =
2136 (hdw->usb_intf->cur_altsetting->desc.bNumEndpoints
2137 == 0);
2138 if (reloadFl) {
2139 pvr2_trace(PVR2_TRACE_INIT,
2140 "USB endpoint config looks strange"
2141 "; possibly firmware needs to be"
2142 " loaded");
2143 }
2144 }
2145 if (!reloadFl) {
2146 reloadFl = !pvr2_hdw_check_firmware(hdw);
2147 if (reloadFl) {
2148 pvr2_trace(PVR2_TRACE_INIT,
2149 "Check for FX2 firmware failed"
2150 "; possibly firmware needs to be"
2151 " loaded");
2152 }
2153 }
Mike Iselyd8554972006-06-26 20:58:46 -03002154 if (reloadFl) {
Mike Isely1d643a32007-09-08 22:18:50 -03002155 if (pvr2_upload_firmware1(hdw) != 0) {
2156 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2157 "Failure uploading firmware1");
2158 }
2159 return;
Mike Iselyd8554972006-06-26 20:58:46 -03002160 }
2161 }
Mike Iselyd8554972006-06-26 20:58:46 -03002162 hdw->fw1_state = FW1_STATE_OK;
2163
Mike Iselyd8554972006-06-26 20:58:46 -03002164 if (!pvr2_hdw_dev_ok(hdw)) return;
2165
Mike Isely27764722009-03-07 01:57:25 -03002166 hdw->force_dirty = !0;
2167
Mike Isely989eb152007-11-26 01:53:12 -03002168 if (!hdw->hdw_desc->flag_no_powerup) {
Mike Isely1d643a32007-09-08 22:18:50 -03002169 pvr2_hdw_cmd_powerup(hdw);
2170 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002171 }
2172
Mike Isely31335b12008-07-25 19:35:31 -03002173 /* Take the IR chip out of reset, if appropriate */
2174 if (hdw->hdw_desc->ir_scheme == PVR2_IR_SCHEME_ZILOG) {
2175 pvr2_issue_simple_cmd(hdw,
2176 FX2CMD_HCW_ZILOG_RESET |
2177 (1 << 8) |
2178 ((0) << 16));
2179 }
2180
Mike Iselyd8554972006-06-26 20:58:46 -03002181 // This step MUST happen after the earlier powerup step.
2182 pvr2_i2c_core_init(hdw);
2183 if (!pvr2_hdw_dev_ok(hdw)) return;
2184
Mike Iselye9c64a72009-03-06 23:42:20 -03002185 pvr2_hdw_load_modules(hdw);
Mike Isely1ab5e742009-03-07 00:24:24 -03002186 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselye9c64a72009-03-06 23:42:20 -03002187
Mike Isely5c6cb4e2009-03-07 01:59:34 -03002188 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, init, 0);
2189
Mike Iselyc05c0462006-06-25 20:04:25 -03002190 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002191 cptr = hdw->controls + idx;
2192 if (cptr->info->skip_init) continue;
2193 if (!cptr->info->set_value) continue;
2194 cptr->info->set_value(cptr,~0,cptr->info->default_value);
2195 }
2196
Mike Isely1bde0282006-12-27 23:30:13 -03002197 /* Set up special default values for the television and radio
2198 frequencies here. It's not really important what these defaults
2199 are, but I set them to something usable in the Chicago area just
2200 to make driver testing a little easier. */
2201
Michael Krufky5a4f5da62008-05-11 16:37:50 -03002202 hdw->freqValTelevision = default_tv_freq;
2203 hdw->freqValRadio = default_radio_freq;
Mike Isely1bde0282006-12-27 23:30:13 -03002204
Mike Iselyd8554972006-06-26 20:58:46 -03002205 // Do not use pvr2_reset_ctl_endpoints() here. It is not
2206 // thread-safe against the normal pvr2_send_request() mechanism.
2207 // (We should make it thread safe).
2208
Mike Iselyaaf78842007-11-26 02:04:11 -03002209 if (hdw->hdw_desc->flag_has_hauppauge_rom) {
2210 ret = pvr2_hdw_get_eeprom_addr(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002211 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyaaf78842007-11-26 02:04:11 -03002212 if (ret < 0) {
2213 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2214 "Unable to determine location of eeprom,"
2215 " skipping");
2216 } else {
2217 hdw->eeprom_addr = ret;
2218 pvr2_eeprom_analyze(hdw);
2219 if (!pvr2_hdw_dev_ok(hdw)) return;
2220 }
2221 } else {
2222 hdw->tuner_type = hdw->hdw_desc->default_tuner_type;
2223 hdw->tuner_updated = !0;
2224 hdw->std_mask_eeprom = V4L2_STD_ALL;
Mike Iselyd8554972006-06-26 20:58:46 -03002225 }
2226
Mike Isely13a88792009-01-14 04:22:56 -03002227 if (hdw->serial_number) {
2228 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2229 "sn-%lu", hdw->serial_number);
2230 } else if (hdw->unit_number >= 0) {
2231 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2232 "unit-%c",
2233 hdw->unit_number + 'a');
2234 } else {
2235 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2236 "unit-??");
2237 }
2238 hdw->identifier[idx] = 0;
2239
Mike Iselyd8554972006-06-26 20:58:46 -03002240 pvr2_hdw_setup_std(hdw);
2241
2242 if (!get_default_tuner_type(hdw)) {
2243 pvr2_trace(PVR2_TRACE_INIT,
2244 "pvr2_hdw_setup: Tuner type overridden to %d",
2245 hdw->tuner_type);
2246 }
2247
Mike Iselyd8554972006-06-26 20:58:46 -03002248
2249 if (!pvr2_hdw_dev_ok(hdw)) return;
2250
Mike Isely1df59f02008-04-21 03:50:39 -03002251 if (hdw->hdw_desc->signal_routing_scheme ==
2252 PVR2_ROUTING_SCHEME_GOTVIEW) {
2253 /* Ensure that GPIO 11 is set to output for GOTVIEW
2254 hardware. */
2255 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
2256 }
2257
Mike Isely681c7392007-11-26 01:48:52 -03002258 pvr2_hdw_commit_setup(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002259
2260 hdw->vid_stream = pvr2_stream_create();
2261 if (!pvr2_hdw_dev_ok(hdw)) return;
2262 pvr2_trace(PVR2_TRACE_INIT,
2263 "pvr2_hdw_setup: video stream is %p",hdw->vid_stream);
2264 if (hdw->vid_stream) {
2265 idx = get_default_error_tolerance(hdw);
2266 if (idx) {
2267 pvr2_trace(PVR2_TRACE_INIT,
2268 "pvr2_hdw_setup: video stream %p"
2269 " setting tolerance %u",
2270 hdw->vid_stream,idx);
2271 }
2272 pvr2_stream_setup(hdw->vid_stream,hdw->usb_dev,
2273 PVR2_VID_ENDPOINT,idx);
2274 }
2275
2276 if (!pvr2_hdw_dev_ok(hdw)) return;
2277
Mike Iselyd8554972006-06-26 20:58:46 -03002278 hdw->flag_init_ok = !0;
Mike Isely681c7392007-11-26 01:48:52 -03002279
2280 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002281}
2282
2283
Mike Isely681c7392007-11-26 01:48:52 -03002284/* Set up the structure and attempt to put the device into a usable state.
2285 This can be a time-consuming operation, which is why it is not done
2286 internally as part of the create() step. */
2287static void pvr2_hdw_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002288{
2289 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) begin",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002290 do {
Mike Iselyd8554972006-06-26 20:58:46 -03002291 pvr2_hdw_setup_low(hdw);
2292 pvr2_trace(PVR2_TRACE_INIT,
2293 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
Mike Isely681c7392007-11-26 01:48:52 -03002294 hdw,pvr2_hdw_dev_ok(hdw),hdw->flag_init_ok);
Mike Iselyd8554972006-06-26 20:58:46 -03002295 if (pvr2_hdw_dev_ok(hdw)) {
Mike Isely681c7392007-11-26 01:48:52 -03002296 if (hdw->flag_init_ok) {
Mike Iselyd8554972006-06-26 20:58:46 -03002297 pvr2_trace(
2298 PVR2_TRACE_INFO,
2299 "Device initialization"
2300 " completed successfully.");
2301 break;
2302 }
2303 if (hdw->fw1_state == FW1_STATE_RELOAD) {
2304 pvr2_trace(
2305 PVR2_TRACE_INFO,
2306 "Device microcontroller firmware"
2307 " (re)loaded; it should now reset"
2308 " and reconnect.");
2309 break;
2310 }
2311 pvr2_trace(
2312 PVR2_TRACE_ERROR_LEGS,
2313 "Device initialization was not successful.");
2314 if (hdw->fw1_state == FW1_STATE_MISSING) {
2315 pvr2_trace(
2316 PVR2_TRACE_ERROR_LEGS,
2317 "Giving up since device"
2318 " microcontroller firmware"
2319 " appears to be missing.");
2320 break;
2321 }
2322 }
2323 if (procreload) {
2324 pvr2_trace(
2325 PVR2_TRACE_ERROR_LEGS,
2326 "Attempting pvrusb2 recovery by reloading"
2327 " primary firmware.");
2328 pvr2_trace(
2329 PVR2_TRACE_ERROR_LEGS,
2330 "If this works, device should disconnect"
2331 " and reconnect in a sane state.");
2332 hdw->fw1_state = FW1_STATE_UNKNOWN;
2333 pvr2_upload_firmware1(hdw);
2334 } else {
2335 pvr2_trace(
2336 PVR2_TRACE_ERROR_LEGS,
2337 "***WARNING*** pvrusb2 device hardware"
2338 " appears to be jammed"
2339 " and I can't clear it.");
2340 pvr2_trace(
2341 PVR2_TRACE_ERROR_LEGS,
2342 "You might need to power cycle"
2343 " the pvrusb2 device"
2344 " in order to recover.");
2345 }
Mike Isely681c7392007-11-26 01:48:52 -03002346 } while (0);
Mike Iselyd8554972006-06-26 20:58:46 -03002347 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) end",hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002348}
2349
2350
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002351/* Perform second stage initialization. Set callback pointer first so that
2352 we can avoid a possible initialization race (if the kernel thread runs
2353 before the callback has been set). */
Mike Isely794b1602008-04-22 14:45:45 -03002354int pvr2_hdw_initialize(struct pvr2_hdw *hdw,
2355 void (*callback_func)(void *),
2356 void *callback_data)
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002357{
2358 LOCK_TAKE(hdw->big_lock); do {
Mike Isely97f26ff2008-04-07 02:22:43 -03002359 if (hdw->flag_disconnected) {
2360 /* Handle a race here: If we're already
2361 disconnected by this point, then give up. If we
2362 get past this then we'll remain connected for
2363 the duration of initialization since the entire
2364 initialization sequence is now protected by the
2365 big_lock. */
2366 break;
2367 }
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002368 hdw->state_data = callback_data;
2369 hdw->state_func = callback_func;
Mike Isely97f26ff2008-04-07 02:22:43 -03002370 pvr2_hdw_setup(hdw);
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002371 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely794b1602008-04-22 14:45:45 -03002372 return hdw->flag_init_ok;
Mike Iselyc4a8828d2008-04-22 14:45:44 -03002373}
2374
2375
2376/* Create, set up, and return a structure for interacting with the
2377 underlying hardware. */
Mike Iselyd8554972006-06-26 20:58:46 -03002378struct pvr2_hdw *pvr2_hdw_create(struct usb_interface *intf,
2379 const struct usb_device_id *devid)
2380{
Mike Isely7fb20fa2008-04-22 14:45:37 -03002381 unsigned int idx,cnt1,cnt2,m;
Mike Iselyfe15f132008-08-30 18:11:40 -03002382 struct pvr2_hdw *hdw = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002383 int valid_std_mask;
2384 struct pvr2_ctrl *cptr;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002385 struct usb_device *usb_dev;
Mike Isely989eb152007-11-26 01:53:12 -03002386 const struct pvr2_device_desc *hdw_desc;
Mike Iselyd8554972006-06-26 20:58:46 -03002387 __u8 ifnum;
Mike Iselyb30d2442006-06-25 20:05:01 -03002388 struct v4l2_queryctrl qctrl;
2389 struct pvr2_ctl_info *ciptr;
Mike Iselyd8554972006-06-26 20:58:46 -03002390
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002391 usb_dev = interface_to_usbdev(intf);
2392
Mike Iselyd130fa82007-12-08 17:20:06 -03002393 hdw_desc = (const struct pvr2_device_desc *)(devid->driver_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002394
Mike Iselyfe15f132008-08-30 18:11:40 -03002395 if (hdw_desc == NULL) {
2396 pvr2_trace(PVR2_TRACE_INIT, "pvr2_hdw_create:"
2397 " No device description pointer,"
2398 " unable to continue.");
2399 pvr2_trace(PVR2_TRACE_INIT, "If you have a new device type,"
2400 " please contact Mike Isely <isely@pobox.com>"
2401 " to get it included in the driver\n");
2402 goto fail;
2403 }
2404
Mike Iselyca545f72007-01-20 00:37:11 -03002405 hdw = kzalloc(sizeof(*hdw),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -03002406 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_create: hdw=%p, type \"%s\"",
Mike Isely989eb152007-11-26 01:53:12 -03002407 hdw,hdw_desc->description);
Mike Iselyd8554972006-06-26 20:58:46 -03002408 if (!hdw) goto fail;
Mike Isely681c7392007-11-26 01:48:52 -03002409
2410 init_timer(&hdw->quiescent_timer);
2411 hdw->quiescent_timer.data = (unsigned long)hdw;
2412 hdw->quiescent_timer.function = pvr2_hdw_quiescent_timeout;
2413
2414 init_timer(&hdw->encoder_wait_timer);
2415 hdw->encoder_wait_timer.data = (unsigned long)hdw;
2416 hdw->encoder_wait_timer.function = pvr2_hdw_encoder_wait_timeout;
2417
Mike Iselyd913d632008-04-06 04:04:35 -03002418 init_timer(&hdw->encoder_run_timer);
2419 hdw->encoder_run_timer.data = (unsigned long)hdw;
2420 hdw->encoder_run_timer.function = pvr2_hdw_encoder_run_timeout;
2421
Mike Isely681c7392007-11-26 01:48:52 -03002422 hdw->master_state = PVR2_STATE_DEAD;
2423
2424 init_waitqueue_head(&hdw->state_wait_data);
2425
Mike Isely18103c572007-01-20 00:09:47 -03002426 hdw->tuner_signal_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -03002427 cx2341x_fill_defaults(&hdw->enc_ctl_state);
Mike Iselyd8554972006-06-26 20:58:46 -03002428
Mike Isely7fb20fa2008-04-22 14:45:37 -03002429 /* Calculate which inputs are OK */
2430 m = 0;
2431 if (hdw_desc->flag_has_analogtuner) m |= 1 << PVR2_CVAL_INPUT_TV;
Mike Iselye8f5bac2008-04-22 14:45:40 -03002432 if (hdw_desc->digital_control_scheme != PVR2_DIGITAL_SCHEME_NONE) {
2433 m |= 1 << PVR2_CVAL_INPUT_DTV;
2434 }
Mike Isely7fb20fa2008-04-22 14:45:37 -03002435 if (hdw_desc->flag_has_svideo) m |= 1 << PVR2_CVAL_INPUT_SVIDEO;
2436 if (hdw_desc->flag_has_composite) m |= 1 << PVR2_CVAL_INPUT_COMPOSITE;
2437 if (hdw_desc->flag_has_fmradio) m |= 1 << PVR2_CVAL_INPUT_RADIO;
2438 hdw->input_avail_mask = m;
Mike Isely1cb03b72008-04-21 03:47:43 -03002439 hdw->input_allowed_mask = hdw->input_avail_mask;
Mike Isely7fb20fa2008-04-22 14:45:37 -03002440
Mike Isely62433e32008-04-22 14:45:40 -03002441 /* If not a hybrid device, pathway_state never changes. So
2442 initialize it here to what it should forever be. */
2443 if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_DTV))) {
2444 hdw->pathway_state = PVR2_PATHWAY_ANALOG;
2445 } else if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_TV))) {
2446 hdw->pathway_state = PVR2_PATHWAY_DIGITAL;
2447 }
2448
Mike Iselyc05c0462006-06-25 20:04:25 -03002449 hdw->control_cnt = CTRLDEF_COUNT;
Mike Iselyb30d2442006-06-25 20:05:01 -03002450 hdw->control_cnt += MPEGDEF_COUNT;
Mike Iselyca545f72007-01-20 00:37:11 -03002451 hdw->controls = kzalloc(sizeof(struct pvr2_ctrl) * hdw->control_cnt,
Mike Iselyd8554972006-06-26 20:58:46 -03002452 GFP_KERNEL);
2453 if (!hdw->controls) goto fail;
Mike Isely989eb152007-11-26 01:53:12 -03002454 hdw->hdw_desc = hdw_desc;
Mike Iselyc05c0462006-06-25 20:04:25 -03002455 for (idx = 0; idx < hdw->control_cnt; idx++) {
2456 cptr = hdw->controls + idx;
2457 cptr->hdw = hdw;
2458 }
Mike Iselyd8554972006-06-26 20:58:46 -03002459 for (idx = 0; idx < 32; idx++) {
2460 hdw->std_mask_ptrs[idx] = hdw->std_mask_names[idx];
2461 }
Mike Iselyc05c0462006-06-25 20:04:25 -03002462 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002463 cptr = hdw->controls + idx;
Mike Iselyd8554972006-06-26 20:58:46 -03002464 cptr->info = control_defs+idx;
2465 }
Mike Iselydbc40a02008-04-22 14:45:39 -03002466
2467 /* Ensure that default input choice is a valid one. */
2468 m = hdw->input_avail_mask;
2469 if (m) for (idx = 0; idx < (sizeof(m) << 3); idx++) {
2470 if (!((1 << idx) & m)) continue;
2471 hdw->input_val = idx;
2472 break;
2473 }
2474
Mike Iselyb30d2442006-06-25 20:05:01 -03002475 /* Define and configure additional controls from cx2341x module. */
Mike Iselyca545f72007-01-20 00:37:11 -03002476 hdw->mpeg_ctrl_info = kzalloc(
Mike Iselyb30d2442006-06-25 20:05:01 -03002477 sizeof(*(hdw->mpeg_ctrl_info)) * MPEGDEF_COUNT, GFP_KERNEL);
2478 if (!hdw->mpeg_ctrl_info) goto fail;
Mike Iselyb30d2442006-06-25 20:05:01 -03002479 for (idx = 0; idx < MPEGDEF_COUNT; idx++) {
2480 cptr = hdw->controls + idx + CTRLDEF_COUNT;
2481 ciptr = &(hdw->mpeg_ctrl_info[idx].info);
2482 ciptr->desc = hdw->mpeg_ctrl_info[idx].desc;
2483 ciptr->name = mpeg_ids[idx].strid;
2484 ciptr->v4l_id = mpeg_ids[idx].id;
2485 ciptr->skip_init = !0;
2486 ciptr->get_value = ctrl_cx2341x_get;
2487 ciptr->get_v4lflags = ctrl_cx2341x_getv4lflags;
2488 ciptr->is_dirty = ctrl_cx2341x_is_dirty;
2489 if (!idx) ciptr->clear_dirty = ctrl_cx2341x_clear_dirty;
2490 qctrl.id = ciptr->v4l_id;
2491 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl);
2492 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) {
2493 ciptr->set_value = ctrl_cx2341x_set;
2494 }
2495 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name,
2496 PVR2_CTLD_INFO_DESC_SIZE);
2497 hdw->mpeg_ctrl_info[idx].desc[PVR2_CTLD_INFO_DESC_SIZE-1] = 0;
2498 ciptr->default_value = qctrl.default_value;
2499 switch (qctrl.type) {
2500 default:
2501 case V4L2_CTRL_TYPE_INTEGER:
2502 ciptr->type = pvr2_ctl_int;
2503 ciptr->def.type_int.min_value = qctrl.minimum;
2504 ciptr->def.type_int.max_value = qctrl.maximum;
2505 break;
2506 case V4L2_CTRL_TYPE_BOOLEAN:
2507 ciptr->type = pvr2_ctl_bool;
2508 break;
2509 case V4L2_CTRL_TYPE_MENU:
2510 ciptr->type = pvr2_ctl_enum;
2511 ciptr->def.type_enum.value_names =
Hans Verkuile0e31cd2008-06-22 12:03:28 -03002512 cx2341x_ctrl_get_menu(&hdw->enc_ctl_state,
2513 ciptr->v4l_id);
Mike Iselyb30d2442006-06-25 20:05:01 -03002514 for (cnt1 = 0;
2515 ciptr->def.type_enum.value_names[cnt1] != NULL;
2516 cnt1++) { }
2517 ciptr->def.type_enum.count = cnt1;
2518 break;
2519 }
2520 cptr->info = ciptr;
2521 }
Mike Iselyd8554972006-06-26 20:58:46 -03002522
2523 // Initialize video standard enum dynamic control
2524 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDENUM);
2525 if (cptr) {
2526 memcpy(&hdw->std_info_enum,cptr->info,
2527 sizeof(hdw->std_info_enum));
2528 cptr->info = &hdw->std_info_enum;
2529
2530 }
2531 // Initialize control data regarding video standard masks
2532 valid_std_mask = pvr2_std_get_usable();
2533 for (idx = 0; idx < 32; idx++) {
2534 if (!(valid_std_mask & (1 << idx))) continue;
2535 cnt1 = pvr2_std_id_to_str(
2536 hdw->std_mask_names[idx],
2537 sizeof(hdw->std_mask_names[idx])-1,
2538 1 << idx);
2539 hdw->std_mask_names[idx][cnt1] = 0;
2540 }
2541 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDAVAIL);
2542 if (cptr) {
2543 memcpy(&hdw->std_info_avail,cptr->info,
2544 sizeof(hdw->std_info_avail));
2545 cptr->info = &hdw->std_info_avail;
2546 hdw->std_info_avail.def.type_bitmask.bit_names =
2547 hdw->std_mask_ptrs;
2548 hdw->std_info_avail.def.type_bitmask.valid_bits =
2549 valid_std_mask;
2550 }
2551 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR);
2552 if (cptr) {
2553 memcpy(&hdw->std_info_cur,cptr->info,
2554 sizeof(hdw->std_info_cur));
2555 cptr->info = &hdw->std_info_cur;
2556 hdw->std_info_cur.def.type_bitmask.bit_names =
2557 hdw->std_mask_ptrs;
2558 hdw->std_info_avail.def.type_bitmask.valid_bits =
2559 valid_std_mask;
2560 }
2561
Mike Isely432907f2008-08-31 21:02:20 -03002562 hdw->cropcap_stale = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002563 hdw->eeprom_addr = -1;
2564 hdw->unit_number = -1;
Mike Isely80793842006-12-27 23:12:28 -03002565 hdw->v4l_minor_number_video = -1;
2566 hdw->v4l_minor_number_vbi = -1;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03002567 hdw->v4l_minor_number_radio = -1;
Mike Iselyd8554972006-06-26 20:58:46 -03002568 hdw->ctl_write_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2569 if (!hdw->ctl_write_buffer) goto fail;
2570 hdw->ctl_read_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2571 if (!hdw->ctl_read_buffer) goto fail;
2572 hdw->ctl_write_urb = usb_alloc_urb(0,GFP_KERNEL);
2573 if (!hdw->ctl_write_urb) goto fail;
2574 hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
2575 if (!hdw->ctl_read_urb) goto fail;
2576
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002577 if (v4l2_device_register(&usb_dev->dev, &hdw->v4l2_dev) != 0) {
2578 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2579 "Error registering with v4l core, giving up");
2580 goto fail;
2581 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002582 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002583 for (idx = 0; idx < PVR_NUM; idx++) {
2584 if (unit_pointers[idx]) continue;
2585 hdw->unit_number = idx;
2586 unit_pointers[idx] = hdw;
2587 break;
2588 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002589 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -03002590
2591 cnt1 = 0;
2592 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2");
2593 cnt1 += cnt2;
2594 if (hdw->unit_number >= 0) {
2595 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c",
2596 ('a' + hdw->unit_number));
2597 cnt1 += cnt2;
2598 }
2599 if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1;
2600 hdw->name[cnt1] = 0;
2601
Mike Isely681c7392007-11-26 01:48:52 -03002602 hdw->workqueue = create_singlethread_workqueue(hdw->name);
2603 INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll);
Mike Isely681c7392007-11-26 01:48:52 -03002604
Mike Iselyd8554972006-06-26 20:58:46 -03002605 pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s",
2606 hdw->unit_number,hdw->name);
2607
2608 hdw->tuner_type = -1;
2609 hdw->flag_ok = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002610
2611 hdw->usb_intf = intf;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002612 hdw->usb_dev = usb_dev;
Mike Iselyd8554972006-06-26 20:58:46 -03002613
Mike Isely87e34952009-01-23 01:20:24 -03002614 usb_make_path(hdw->usb_dev, hdw->bus_info, sizeof(hdw->bus_info));
Mike Isely31a18542007-04-08 01:11:47 -03002615
Mike Iselyd8554972006-06-26 20:58:46 -03002616 ifnum = hdw->usb_intf->cur_altsetting->desc.bInterfaceNumber;
2617 usb_set_interface(hdw->usb_dev,ifnum,0);
2618
2619 mutex_init(&hdw->ctl_lock_mutex);
2620 mutex_init(&hdw->big_lock_mutex);
2621
2622 return hdw;
2623 fail:
2624 if (hdw) {
Mike Isely681c7392007-11-26 01:48:52 -03002625 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002626 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03002627 del_timer_sync(&hdw->encoder_wait_timer);
2628 if (hdw->workqueue) {
2629 flush_workqueue(hdw->workqueue);
2630 destroy_workqueue(hdw->workqueue);
2631 hdw->workqueue = NULL;
2632 }
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01002633 usb_free_urb(hdw->ctl_read_urb);
2634 usb_free_urb(hdw->ctl_write_urb);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002635 kfree(hdw->ctl_read_buffer);
2636 kfree(hdw->ctl_write_buffer);
2637 kfree(hdw->controls);
2638 kfree(hdw->mpeg_ctrl_info);
Mike Isely681c7392007-11-26 01:48:52 -03002639 kfree(hdw->std_defs);
2640 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002641 kfree(hdw);
2642 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002643 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002644}
2645
2646
2647/* Remove _all_ associations between this driver and the underlying USB
2648 layer. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03002649static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002650{
2651 if (hdw->flag_disconnected) return;
2652 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw);
2653 if (hdw->ctl_read_urb) {
2654 usb_kill_urb(hdw->ctl_read_urb);
2655 usb_free_urb(hdw->ctl_read_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002656 hdw->ctl_read_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002657 }
2658 if (hdw->ctl_write_urb) {
2659 usb_kill_urb(hdw->ctl_write_urb);
2660 usb_free_urb(hdw->ctl_write_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002661 hdw->ctl_write_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002662 }
2663 if (hdw->ctl_read_buffer) {
2664 kfree(hdw->ctl_read_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002665 hdw->ctl_read_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002666 }
2667 if (hdw->ctl_write_buffer) {
2668 kfree(hdw->ctl_write_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002669 hdw->ctl_write_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002670 }
Mike Iselyd8554972006-06-26 20:58:46 -03002671 hdw->flag_disconnected = !0;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002672 /* If we don't do this, then there will be a dangling struct device
2673 reference to our disappearing device persisting inside the V4L
2674 core... */
2675 if (hdw->v4l2_dev.dev) {
2676 dev_set_drvdata(hdw->v4l2_dev.dev, NULL);
2677 hdw->v4l2_dev.dev = NULL;
2678 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002679 hdw->usb_dev = NULL;
2680 hdw->usb_intf = NULL;
Mike Isely681c7392007-11-26 01:48:52 -03002681 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002682}
2683
2684
2685/* Destroy hardware interaction structure */
2686void pvr2_hdw_destroy(struct pvr2_hdw *hdw)
2687{
Mike Isely401c27c2007-09-08 22:11:46 -03002688 if (!hdw) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002689 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_destroy: hdw=%p",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002690 if (hdw->workqueue) {
2691 flush_workqueue(hdw->workqueue);
2692 destroy_workqueue(hdw->workqueue);
2693 hdw->workqueue = NULL;
2694 }
Mike Isely8f591002008-04-22 14:45:45 -03002695 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002696 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely8f591002008-04-22 14:45:45 -03002697 del_timer_sync(&hdw->encoder_wait_timer);
Mike Iselyd8554972006-06-26 20:58:46 -03002698 if (hdw->fw_buffer) {
2699 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002700 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002701 }
2702 if (hdw->vid_stream) {
2703 pvr2_stream_destroy(hdw->vid_stream);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002704 hdw->vid_stream = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002705 }
Mike Iselyd8554972006-06-26 20:58:46 -03002706 pvr2_i2c_core_done(hdw);
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002707 v4l2_device_unregister(&hdw->v4l2_dev);
Mike Iselyd8554972006-06-26 20:58:46 -03002708 pvr2_hdw_remove_usb_stuff(hdw);
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002709 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002710 if ((hdw->unit_number >= 0) &&
2711 (hdw->unit_number < PVR_NUM) &&
2712 (unit_pointers[hdw->unit_number] == hdw)) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002713 unit_pointers[hdw->unit_number] = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002714 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002715 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002716 kfree(hdw->controls);
2717 kfree(hdw->mpeg_ctrl_info);
2718 kfree(hdw->std_defs);
2719 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002720 kfree(hdw);
2721}
2722
2723
Mike Iselyd8554972006-06-26 20:58:46 -03002724int pvr2_hdw_dev_ok(struct pvr2_hdw *hdw)
2725{
2726 return (hdw && hdw->flag_ok);
2727}
2728
2729
2730/* Called when hardware has been unplugged */
2731void pvr2_hdw_disconnect(struct pvr2_hdw *hdw)
2732{
2733 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw);
2734 LOCK_TAKE(hdw->big_lock);
2735 LOCK_TAKE(hdw->ctl_lock);
2736 pvr2_hdw_remove_usb_stuff(hdw);
2737 LOCK_GIVE(hdw->ctl_lock);
2738 LOCK_GIVE(hdw->big_lock);
2739}
2740
2741
2742// Attempt to autoselect an appropriate value for std_enum_cur given
2743// whatever is currently in std_mask_cur
Adrian Bunk07e337e2006-06-30 11:30:20 -03002744static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002745{
2746 unsigned int idx;
2747 for (idx = 1; idx < hdw->std_enum_cnt; idx++) {
2748 if (hdw->std_defs[idx-1].id == hdw->std_mask_cur) {
2749 hdw->std_enum_cur = idx;
2750 return;
2751 }
2752 }
2753 hdw->std_enum_cur = 0;
2754}
2755
2756
2757// Calculate correct set of enumerated standards based on currently known
2758// set of available standards bits.
Adrian Bunk07e337e2006-06-30 11:30:20 -03002759static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002760{
2761 struct v4l2_standard *newstd;
2762 unsigned int std_cnt;
2763 unsigned int idx;
2764
2765 newstd = pvr2_std_create_enum(&std_cnt,hdw->std_mask_avail);
2766
2767 if (hdw->std_defs) {
2768 kfree(hdw->std_defs);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002769 hdw->std_defs = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002770 }
2771 hdw->std_enum_cnt = 0;
2772 if (hdw->std_enum_names) {
2773 kfree(hdw->std_enum_names);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002774 hdw->std_enum_names = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002775 }
2776
2777 if (!std_cnt) {
2778 pvr2_trace(
2779 PVR2_TRACE_ERROR_LEGS,
2780 "WARNING: Failed to identify any viable standards");
2781 }
2782 hdw->std_enum_names = kmalloc(sizeof(char *)*(std_cnt+1),GFP_KERNEL);
2783 hdw->std_enum_names[0] = "none";
2784 for (idx = 0; idx < std_cnt; idx++) {
2785 hdw->std_enum_names[idx+1] =
2786 newstd[idx].name;
2787 }
2788 // Set up the dynamic control for this standard
2789 hdw->std_info_enum.def.type_enum.value_names = hdw->std_enum_names;
2790 hdw->std_info_enum.def.type_enum.count = std_cnt+1;
2791 hdw->std_defs = newstd;
2792 hdw->std_enum_cnt = std_cnt+1;
2793 hdw->std_enum_cur = 0;
2794 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
2795}
2796
2797
2798int pvr2_hdw_get_stdenum_value(struct pvr2_hdw *hdw,
2799 struct v4l2_standard *std,
2800 unsigned int idx)
2801{
2802 int ret = -EINVAL;
2803 if (!idx) return ret;
2804 LOCK_TAKE(hdw->big_lock); do {
2805 if (idx >= hdw->std_enum_cnt) break;
2806 idx--;
2807 memcpy(std,hdw->std_defs+idx,sizeof(*std));
2808 ret = 0;
2809 } while (0); LOCK_GIVE(hdw->big_lock);
2810 return ret;
2811}
2812
2813
2814/* Get the number of defined controls */
2815unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw *hdw)
2816{
Mike Iselyc05c0462006-06-25 20:04:25 -03002817 return hdw->control_cnt;
Mike Iselyd8554972006-06-26 20:58:46 -03002818}
2819
2820
2821/* Retrieve a control handle given its index (0..count-1) */
2822struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw *hdw,
2823 unsigned int idx)
2824{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002825 if (idx >= hdw->control_cnt) return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002826 return hdw->controls + idx;
2827}
2828
2829
2830/* Retrieve a control handle given its index (0..count-1) */
2831struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw *hdw,
2832 unsigned int ctl_id)
2833{
2834 struct pvr2_ctrl *cptr;
2835 unsigned int idx;
2836 int i;
2837
2838 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002839 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002840 cptr = hdw->controls + idx;
2841 i = cptr->info->internal_id;
2842 if (i && (i == ctl_id)) return cptr;
2843 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002844 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002845}
2846
2847
Mike Iselya761f432006-06-25 20:04:44 -03002848/* Given a V4L ID, retrieve the control structure associated with it. */
Mike Iselyd8554972006-06-26 20:58:46 -03002849struct pvr2_ctrl *pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw *hdw,unsigned int ctl_id)
2850{
2851 struct pvr2_ctrl *cptr;
2852 unsigned int idx;
2853 int i;
2854
2855 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002856 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002857 cptr = hdw->controls + idx;
2858 i = cptr->info->v4l_id;
2859 if (i && (i == ctl_id)) return cptr;
2860 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002861 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002862}
2863
2864
Mike Iselya761f432006-06-25 20:04:44 -03002865/* Given a V4L ID for its immediate predecessor, retrieve the control
2866 structure associated with it. */
2867struct pvr2_ctrl *pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw *hdw,
2868 unsigned int ctl_id)
2869{
2870 struct pvr2_ctrl *cptr,*cp2;
2871 unsigned int idx;
2872 int i;
2873
2874 /* This could be made a lot more efficient, but for now... */
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002875 cp2 = NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002876 for (idx = 0; idx < hdw->control_cnt; idx++) {
2877 cptr = hdw->controls + idx;
2878 i = cptr->info->v4l_id;
2879 if (!i) continue;
2880 if (i <= ctl_id) continue;
2881 if (cp2 && (cp2->info->v4l_id < i)) continue;
2882 cp2 = cptr;
2883 }
2884 return cp2;
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002885 return NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002886}
2887
2888
Mike Iselyd8554972006-06-26 20:58:46 -03002889static const char *get_ctrl_typename(enum pvr2_ctl_type tp)
2890{
2891 switch (tp) {
2892 case pvr2_ctl_int: return "integer";
2893 case pvr2_ctl_enum: return "enum";
Mike Isely33213962006-06-25 20:04:40 -03002894 case pvr2_ctl_bool: return "boolean";
Mike Iselyd8554972006-06-26 20:58:46 -03002895 case pvr2_ctl_bitmask: return "bitmask";
2896 }
2897 return "";
2898}
2899
2900
Mike Isely2641df32009-03-07 00:13:25 -03002901static void pvr2_subdev_set_control(struct pvr2_hdw *hdw, int id,
2902 const char *name, int val)
2903{
2904 struct v4l2_control ctrl;
2905 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 %s=%d", name, val);
2906 memset(&ctrl, 0, sizeof(ctrl));
2907 ctrl.id = id;
2908 ctrl.value = val;
2909 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, s_ctrl, &ctrl);
2910}
2911
2912#define PVR2_SUBDEV_SET_CONTROL(hdw, id, lab) \
Mike Isely27764722009-03-07 01:57:25 -03002913 if ((hdw)->lab##_dirty || (hdw)->force_dirty) { \
Mike Isely2641df32009-03-07 00:13:25 -03002914 pvr2_subdev_set_control(hdw, id, #lab, (hdw)->lab##_val); \
2915 }
2916
Mike Isely5ceaad12009-03-07 00:01:20 -03002917/* Execute whatever commands are required to update the state of all the
Mike Isely2641df32009-03-07 00:13:25 -03002918 sub-devices so that they match our current control values. */
Mike Isely5ceaad12009-03-07 00:01:20 -03002919static void pvr2_subdev_update(struct pvr2_hdw *hdw)
2920{
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002921 struct v4l2_subdev *sd;
2922 unsigned int id;
2923 pvr2_subdev_update_func fp;
2924
Mike Isely75212a02009-03-07 01:48:42 -03002925 pvr2_trace(PVR2_TRACE_CHIPS, "subdev update...");
2926
Mike Isely27764722009-03-07 01:57:25 -03002927 if (hdw->tuner_updated || hdw->force_dirty) {
Mike Isely75212a02009-03-07 01:48:42 -03002928 struct tuner_setup setup;
2929 pvr2_trace(PVR2_TRACE_CHIPS, "subdev tuner set_type(%d)",
2930 hdw->tuner_type);
2931 if (((int)(hdw->tuner_type)) >= 0) {
2932 setup.addr = ADDR_UNSET;
2933 setup.type = hdw->tuner_type;
2934 setup.mode_mask = T_RADIO | T_ANALOG_TV;
2935 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2936 tuner, s_type_addr, &setup);
2937 }
2938 }
2939
Mike Isely27764722009-03-07 01:57:25 -03002940 if (hdw->input_dirty || hdw->std_dirty || hdw->force_dirty) {
Mike Iselyb4818802009-03-07 01:46:17 -03002941 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_standard");
Mike Isely2641df32009-03-07 00:13:25 -03002942 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2943 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2944 tuner, s_radio);
2945 } else {
2946 v4l2_std_id vs;
2947 vs = hdw->std_mask_cur;
2948 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2949 tuner, s_std, vs);
2950 }
2951 hdw->tuner_signal_stale = !0;
2952 hdw->cropcap_stale = !0;
2953 }
2954
2955 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_BRIGHTNESS, brightness);
2956 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_CONTRAST, contrast);
2957 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_SATURATION, saturation);
2958 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_HUE, hue);
2959 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_MUTE, mute);
2960 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_VOLUME, volume);
2961 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BALANCE, balance);
2962 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BASS, bass);
2963 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_TREBLE, treble);
2964
Mike Isely27764722009-03-07 01:57:25 -03002965 if (hdw->input_dirty || hdw->audiomode_dirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03002966 struct v4l2_tuner vt;
2967 memset(&vt, 0, sizeof(vt));
2968 vt.audmode = hdw->audiomode_val;
2969 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, s_tuner, &vt);
2970 }
2971
Mike Isely27764722009-03-07 01:57:25 -03002972 if (hdw->freqDirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03002973 unsigned long fv;
2974 struct v4l2_frequency freq;
2975 fv = pvr2_hdw_get_cur_freq(hdw);
2976 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_freq(%lu)", fv);
2977 if (hdw->tuner_signal_stale) pvr2_hdw_status_poll(hdw);
2978 memset(&freq, 0, sizeof(freq));
2979 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
2980 /* ((fv * 1000) / 62500) */
2981 freq.frequency = (fv * 2) / 125;
2982 } else {
2983 freq.frequency = fv / 62500;
2984 }
2985 /* tuner-core currently doesn't seem to care about this, but
2986 let's set it anyway for completeness. */
2987 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2988 freq.type = V4L2_TUNER_RADIO;
2989 } else {
2990 freq.type = V4L2_TUNER_ANALOG_TV;
2991 }
2992 freq.tuner = 0;
2993 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner,
2994 s_frequency, &freq);
2995 }
2996
Mike Isely27764722009-03-07 01:57:25 -03002997 if (hdw->res_hor_dirty || hdw->res_ver_dirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03002998 struct v4l2_format fmt;
2999 memset(&fmt, 0, sizeof(fmt));
3000 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3001 fmt.fmt.pix.width = hdw->res_hor_val;
3002 fmt.fmt.pix.height = hdw->res_ver_val;
Mike Isely7dfdf1e2009-03-07 02:11:12 -03003003 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_size(%dx%d)",
Mike Isely2641df32009-03-07 00:13:25 -03003004 fmt.fmt.pix.width, fmt.fmt.pix.height);
3005 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_fmt, &fmt);
3006 }
3007
Mike Isely27764722009-03-07 01:57:25 -03003008 if (hdw->srate_dirty || hdw->force_dirty) {
Mike Isely01c59df2009-03-07 00:48:09 -03003009 u32 val;
3010 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_audio %d",
3011 hdw->srate_val);
3012 switch (hdw->srate_val) {
3013 default:
3014 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000:
3015 val = 48000;
3016 break;
3017 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100:
3018 val = 44100;
3019 break;
3020 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000:
3021 val = 32000;
3022 break;
3023 }
3024 v4l2_device_call_all(&hdw->v4l2_dev, 0,
3025 audio, s_clock_freq, val);
3026 }
3027
Mike Isely2641df32009-03-07 00:13:25 -03003028 /* Unable to set crop parameters; there is apparently no equivalent
3029 for VIDIOC_S_CROP */
3030
Mike Iselyedb9dcb2009-03-07 00:37:10 -03003031 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
3032 id = sd->grp_id;
3033 if (id >= ARRAY_SIZE(pvr2_module_update_functions)) continue;
3034 fp = pvr2_module_update_functions[id];
3035 if (!fp) continue;
3036 (*fp)(hdw, sd);
3037 }
Mike Isely2641df32009-03-07 00:13:25 -03003038
Mike Isely27764722009-03-07 01:57:25 -03003039 if (hdw->tuner_signal_stale || hdw->cropcap_stale) {
Mike Isely2641df32009-03-07 00:13:25 -03003040 pvr2_hdw_status_poll(hdw);
3041 }
Mike Isely5ceaad12009-03-07 00:01:20 -03003042}
3043
3044
Mike Isely681c7392007-11-26 01:48:52 -03003045/* Figure out if we need to commit control changes. If so, mark internal
3046 state flags to indicate this fact and return true. Otherwise do nothing
3047 else and return false. */
3048static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003049{
Mike Iselyd8554972006-06-26 20:58:46 -03003050 unsigned int idx;
3051 struct pvr2_ctrl *cptr;
3052 int value;
Mike Isely27764722009-03-07 01:57:25 -03003053 int commit_flag = hdw->force_dirty;
Mike Iselyd8554972006-06-26 20:58:46 -03003054 char buf[100];
3055 unsigned int bcnt,ccnt;
3056
Mike Iselyc05c0462006-06-25 20:04:25 -03003057 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03003058 cptr = hdw->controls + idx;
Al Viro5fa12472008-03-29 03:07:38 +00003059 if (!cptr->info->is_dirty) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003060 if (!cptr->info->is_dirty(cptr)) continue;
Mike Iselyfe23a282007-01-20 00:10:55 -03003061 commit_flag = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003062
Mike Iselyfe23a282007-01-20 00:10:55 -03003063 if (!(pvrusb2_debug & PVR2_TRACE_CTL)) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003064 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
3065 cptr->info->name);
3066 value = 0;
3067 cptr->info->get_value(cptr,&value);
3068 pvr2_ctrl_value_to_sym_internal(cptr,~0,value,
3069 buf+bcnt,
3070 sizeof(buf)-bcnt,&ccnt);
3071 bcnt += ccnt;
3072 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
3073 get_ctrl_typename(cptr->info->type));
3074 pvr2_trace(PVR2_TRACE_CTL,
3075 "/*--TRACE_COMMIT--*/ %.*s",
3076 bcnt,buf);
3077 }
3078
3079 if (!commit_flag) {
3080 /* Nothing has changed */
3081 return 0;
3082 }
3083
Mike Isely681c7392007-11-26 01:48:52 -03003084 hdw->state_pipeline_config = 0;
3085 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3086 pvr2_hdw_state_sched(hdw);
3087
3088 return !0;
3089}
3090
3091
3092/* Perform all operations needed to commit all control changes. This must
3093 be performed in synchronization with the pipeline state and is thus
3094 expected to be called as part of the driver's worker thread. Return
3095 true if commit successful, otherwise return false to indicate that
3096 commit isn't possible at this time. */
3097static int pvr2_hdw_commit_execute(struct pvr2_hdw *hdw)
3098{
3099 unsigned int idx;
3100 struct pvr2_ctrl *cptr;
3101 int disruptive_change;
3102
Mike Iselyab062fe2008-06-30 03:32:35 -03003103 /* Handle some required side effects when the video standard is
3104 changed.... */
Mike Iselyd8554972006-06-26 20:58:46 -03003105 if (hdw->std_dirty) {
Mike Iselyd8554972006-06-26 20:58:46 -03003106 int nvres;
Mike Isely00528d92008-06-30 03:35:52 -03003107 int gop_size;
Mike Iselyd8554972006-06-26 20:58:46 -03003108 if (hdw->std_mask_cur & V4L2_STD_525_60) {
3109 nvres = 480;
Mike Isely00528d92008-06-30 03:35:52 -03003110 gop_size = 15;
Mike Iselyd8554972006-06-26 20:58:46 -03003111 } else {
3112 nvres = 576;
Mike Isely00528d92008-06-30 03:35:52 -03003113 gop_size = 12;
Mike Iselyd8554972006-06-26 20:58:46 -03003114 }
Mike Isely00528d92008-06-30 03:35:52 -03003115 /* Rewrite the vertical resolution to be appropriate to the
3116 video standard that has been selected. */
Mike Iselyd8554972006-06-26 20:58:46 -03003117 if (nvres != hdw->res_ver_val) {
3118 hdw->res_ver_val = nvres;
3119 hdw->res_ver_dirty = !0;
3120 }
Mike Isely00528d92008-06-30 03:35:52 -03003121 /* Rewrite the GOP size to be appropriate to the video
3122 standard that has been selected. */
3123 if (gop_size != hdw->enc_ctl_state.video_gop_size) {
3124 struct v4l2_ext_controls cs;
3125 struct v4l2_ext_control c1;
3126 memset(&cs, 0, sizeof(cs));
3127 memset(&c1, 0, sizeof(c1));
3128 cs.controls = &c1;
3129 cs.count = 1;
3130 c1.id = V4L2_CID_MPEG_VIDEO_GOP_SIZE;
3131 c1.value = gop_size;
3132 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,
3133 VIDIOC_S_EXT_CTRLS);
3134 }
Mike Iselyd8554972006-06-26 20:58:46 -03003135 }
3136
Mike Isely38d9a2c2008-03-28 05:30:48 -03003137 if (hdw->input_dirty && hdw->state_pathway_ok &&
Mike Isely62433e32008-04-22 14:45:40 -03003138 (((hdw->input_val == PVR2_CVAL_INPUT_DTV) ?
3139 PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG) !=
3140 hdw->pathway_state)) {
3141 /* Change of mode being asked for... */
3142 hdw->state_pathway_ok = 0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03003143 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03003144 }
3145 if (!hdw->state_pathway_ok) {
3146 /* Can't commit anything until pathway is ok. */
3147 return 0;
3148 }
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03003149 /* The broadcast decoder can only scale down, so if
3150 * res_*_dirty && crop window < output format ==> enlarge crop.
3151 *
3152 * The mpeg encoder receives fields of res_hor_val dots and
3153 * res_ver_val halflines. Limits: hor<=720, ver<=576.
3154 */
3155 if (hdw->res_hor_dirty && hdw->cropw_val < hdw->res_hor_val) {
3156 hdw->cropw_val = hdw->res_hor_val;
3157 hdw->cropw_dirty = !0;
3158 } else if (hdw->cropw_dirty) {
3159 hdw->res_hor_dirty = !0; /* must rescale */
3160 hdw->res_hor_val = min(720, hdw->cropw_val);
3161 }
3162 if (hdw->res_ver_dirty && hdw->croph_val < hdw->res_ver_val) {
3163 hdw->croph_val = hdw->res_ver_val;
3164 hdw->croph_dirty = !0;
3165 } else if (hdw->croph_dirty) {
3166 int nvres = hdw->std_mask_cur & V4L2_STD_525_60 ? 480 : 576;
3167 hdw->res_ver_dirty = !0;
3168 hdw->res_ver_val = min(nvres, hdw->croph_val);
3169 }
3170
Mike Isely681c7392007-11-26 01:48:52 -03003171 /* If any of the below has changed, then we can't do the update
3172 while the pipeline is running. Pipeline must be paused first
3173 and decoder -> encoder connection be made quiescent before we
3174 can proceed. */
3175 disruptive_change =
3176 (hdw->std_dirty ||
3177 hdw->enc_unsafe_stale ||
3178 hdw->srate_dirty ||
3179 hdw->res_ver_dirty ||
3180 hdw->res_hor_dirty ||
Mike Isely755879c2008-08-31 20:50:59 -03003181 hdw->cropw_dirty ||
3182 hdw->croph_dirty ||
Mike Isely681c7392007-11-26 01:48:52 -03003183 hdw->input_dirty ||
3184 (hdw->active_stream_type != hdw->desired_stream_type));
3185 if (disruptive_change && !hdw->state_pipeline_idle) {
3186 /* Pipeline is not idle; we can't proceed. Arrange to
3187 cause pipeline to stop so that we can try this again
3188 later.... */
3189 hdw->state_pipeline_pause = !0;
3190 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003191 }
3192
Mike Iselyb30d2442006-06-25 20:05:01 -03003193 if (hdw->srate_dirty) {
3194 /* Write new sample rate into control structure since
3195 * the master copy is stale. We must track srate
3196 * separate from the mpeg control structure because
3197 * other logic also uses this value. */
3198 struct v4l2_ext_controls cs;
3199 struct v4l2_ext_control c1;
3200 memset(&cs,0,sizeof(cs));
3201 memset(&c1,0,sizeof(c1));
3202 cs.controls = &c1;
3203 cs.count = 1;
3204 c1.id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ;
3205 c1.value = hdw->srate_val;
Hans Verkuil01f1e442007-08-21 18:32:42 -03003206 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,VIDIOC_S_EXT_CTRLS);
Mike Iselyb30d2442006-06-25 20:05:01 -03003207 }
Mike Iselyc05c0462006-06-25 20:04:25 -03003208
Mike Isely681c7392007-11-26 01:48:52 -03003209 if (hdw->active_stream_type != hdw->desired_stream_type) {
3210 /* Handle any side effects of stream config here */
3211 hdw->active_stream_type = hdw->desired_stream_type;
3212 }
3213
Mike Isely1df59f02008-04-21 03:50:39 -03003214 if (hdw->hdw_desc->signal_routing_scheme ==
3215 PVR2_ROUTING_SCHEME_GOTVIEW) {
3216 u32 b;
3217 /* Handle GOTVIEW audio switching */
3218 pvr2_hdw_gpio_get_out(hdw,&b);
3219 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
3220 /* Set GPIO 11 */
3221 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),~0);
3222 } else {
3223 /* Clear GPIO 11 */
3224 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),0);
3225 }
3226 }
3227
Mike Iselye68a6192009-03-07 01:45:10 -03003228 /* Check and update state for all sub-devices. */
3229 pvr2_subdev_update(hdw);
3230
Mike Isely75212a02009-03-07 01:48:42 -03003231 hdw->tuner_updated = 0;
Mike Isely27764722009-03-07 01:57:25 -03003232 hdw->force_dirty = 0;
Mike Isely5ceaad12009-03-07 00:01:20 -03003233 for (idx = 0; idx < hdw->control_cnt; idx++) {
3234 cptr = hdw->controls + idx;
3235 if (!cptr->info->clear_dirty) continue;
3236 cptr->info->clear_dirty(cptr);
3237 }
3238
Mike Isely62433e32008-04-22 14:45:40 -03003239 if ((hdw->pathway_state == PVR2_PATHWAY_ANALOG) &&
3240 hdw->state_encoder_run) {
3241 /* If encoder isn't running or it can't be touched, then
3242 this will get worked out later when we start the
3243 encoder. */
Mike Isely681c7392007-11-26 01:48:52 -03003244 if (pvr2_encoder_adjust(hdw) < 0) return !0;
3245 }
Mike Iselyd8554972006-06-26 20:58:46 -03003246
Mike Isely681c7392007-11-26 01:48:52 -03003247 hdw->state_pipeline_config = !0;
Mike Isely432907f2008-08-31 21:02:20 -03003248 /* Hardware state may have changed in a way to cause the cropping
3249 capabilities to have changed. So mark it stale, which will
3250 cause a later re-fetch. */
Mike Isely681c7392007-11-26 01:48:52 -03003251 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3252 return !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003253}
3254
3255
3256int pvr2_hdw_commit_ctl(struct pvr2_hdw *hdw)
3257{
Mike Isely681c7392007-11-26 01:48:52 -03003258 int fl;
3259 LOCK_TAKE(hdw->big_lock);
3260 fl = pvr2_hdw_commit_setup(hdw);
3261 LOCK_GIVE(hdw->big_lock);
3262 if (!fl) return 0;
3263 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003264}
3265
3266
Mike Isely681c7392007-11-26 01:48:52 -03003267static void pvr2_hdw_worker_poll(struct work_struct *work)
Mike Iselyd8554972006-06-26 20:58:46 -03003268{
Mike Isely681c7392007-11-26 01:48:52 -03003269 int fl = 0;
3270 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workpoll);
Mike Iselyd8554972006-06-26 20:58:46 -03003271 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03003272 fl = pvr2_hdw_state_eval(hdw);
3273 } while (0); LOCK_GIVE(hdw->big_lock);
3274 if (fl && hdw->state_func) {
3275 hdw->state_func(hdw->state_data);
3276 }
3277}
3278
3279
Mike Isely681c7392007-11-26 01:48:52 -03003280static int pvr2_hdw_wait(struct pvr2_hdw *hdw,int state)
Mike Iselyd8554972006-06-26 20:58:46 -03003281{
Mike Isely681c7392007-11-26 01:48:52 -03003282 return wait_event_interruptible(
3283 hdw->state_wait_data,
3284 (hdw->state_stale == 0) &&
3285 (!state || (hdw->master_state != state)));
Mike Iselyd8554972006-06-26 20:58:46 -03003286}
3287
Mike Isely681c7392007-11-26 01:48:52 -03003288
Mike Iselyd8554972006-06-26 20:58:46 -03003289/* Return name for this driver instance */
3290const char *pvr2_hdw_get_driver_name(struct pvr2_hdw *hdw)
3291{
3292 return hdw->name;
3293}
3294
3295
Mike Isely78a47102007-11-26 01:58:20 -03003296const char *pvr2_hdw_get_desc(struct pvr2_hdw *hdw)
3297{
3298 return hdw->hdw_desc->description;
3299}
3300
3301
3302const char *pvr2_hdw_get_type(struct pvr2_hdw *hdw)
3303{
3304 return hdw->hdw_desc->shortname;
3305}
3306
3307
Mike Iselyd8554972006-06-26 20:58:46 -03003308int pvr2_hdw_is_hsm(struct pvr2_hdw *hdw)
3309{
3310 int result;
3311 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03003312 hdw->cmd_buffer[0] = FX2CMD_GET_USB_SPEED;
Mike Iselyd8554972006-06-26 20:58:46 -03003313 result = pvr2_send_request(hdw,
3314 hdw->cmd_buffer,1,
3315 hdw->cmd_buffer,1);
3316 if (result < 0) break;
3317 result = (hdw->cmd_buffer[0] != 0);
3318 } while(0); LOCK_GIVE(hdw->ctl_lock);
3319 return result;
3320}
3321
3322
Mike Isely18103c572007-01-20 00:09:47 -03003323/* Execute poll of tuner status */
3324void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003325{
Mike Iselyd8554972006-06-26 20:58:46 -03003326 LOCK_TAKE(hdw->big_lock); do {
Mike Iselya51f5002009-03-06 23:30:37 -03003327 pvr2_hdw_status_poll(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003328 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely18103c572007-01-20 00:09:47 -03003329}
3330
3331
Mike Isely432907f2008-08-31 21:02:20 -03003332static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw)
3333{
3334 if (!hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003335 return 0;
3336 }
Mike Iselya51f5002009-03-06 23:30:37 -03003337 pvr2_hdw_status_poll(hdw);
Mike Isely432907f2008-08-31 21:02:20 -03003338 if (hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003339 return -EIO;
3340 }
3341 return 0;
3342}
3343
3344
3345/* Return information about cropping capabilities */
3346int pvr2_hdw_get_cropcap(struct pvr2_hdw *hdw, struct v4l2_cropcap *pp)
3347{
3348 int stat = 0;
3349 LOCK_TAKE(hdw->big_lock);
3350 stat = pvr2_hdw_check_cropcap(hdw);
3351 if (!stat) {
Mike Isely432907f2008-08-31 21:02:20 -03003352 memcpy(pp, &hdw->cropcap_info, sizeof(hdw->cropcap_info));
3353 }
3354 LOCK_GIVE(hdw->big_lock);
3355 return stat;
3356}
3357
3358
Mike Isely18103c572007-01-20 00:09:47 -03003359/* Return information about the tuner */
3360int pvr2_hdw_get_tuner_status(struct pvr2_hdw *hdw,struct v4l2_tuner *vtp)
3361{
3362 LOCK_TAKE(hdw->big_lock); do {
3363 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -03003364 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -03003365 }
3366 memcpy(vtp,&hdw->tuner_signal_info,sizeof(struct v4l2_tuner));
3367 } while (0); LOCK_GIVE(hdw->big_lock);
3368 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003369}
3370
3371
3372/* Get handle to video output stream */
3373struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
3374{
3375 return hp->vid_stream;
3376}
3377
3378
3379void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
3380{
Mike Isely4f1a3e52006-06-25 20:04:31 -03003381 int nr = pvr2_hdw_get_unit_number(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003382 LOCK_TAKE(hdw->big_lock); do {
Mike Isely4f1a3e52006-06-25 20:04:31 -03003383 printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
Mike Iselyed3261a2009-03-07 00:02:33 -03003384 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, log_status);
Mike Iselyb30d2442006-06-25 20:05:01 -03003385 pvr2_trace(PVR2_TRACE_INFO,"cx2341x config:");
Hans Verkuil99eb44f2006-06-26 18:24:05 -03003386 cx2341x_log_status(&hdw->enc_ctl_state, "pvrusb2");
Mike Isely681c7392007-11-26 01:48:52 -03003387 pvr2_hdw_state_log_state(hdw);
Mike Isely4f1a3e52006-06-25 20:04:31 -03003388 printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
Mike Iselyd8554972006-06-26 20:58:46 -03003389 } while (0); LOCK_GIVE(hdw->big_lock);
3390}
3391
Mike Isely4db666c2007-09-08 22:16:27 -03003392
3393/* Grab EEPROM contents, needed for direct method. */
3394#define EEPROM_SIZE 8192
3395#define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
3396static u8 *pvr2_full_eeprom_fetch(struct pvr2_hdw *hdw)
3397{
3398 struct i2c_msg msg[2];
3399 u8 *eeprom;
3400 u8 iadd[2];
3401 u8 addr;
3402 u16 eepromSize;
3403 unsigned int offs;
3404 int ret;
3405 int mode16 = 0;
3406 unsigned pcnt,tcnt;
3407 eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
3408 if (!eeprom) {
3409 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3410 "Failed to allocate memory"
3411 " required to read eeprom");
3412 return NULL;
3413 }
3414
3415 trace_eeprom("Value for eeprom addr from controller was 0x%x",
3416 hdw->eeprom_addr);
3417 addr = hdw->eeprom_addr;
3418 /* Seems that if the high bit is set, then the *real* eeprom
3419 address is shifted right now bit position (noticed this in
3420 newer PVR USB2 hardware) */
3421 if (addr & 0x80) addr >>= 1;
3422
3423 /* FX2 documentation states that a 16bit-addressed eeprom is
3424 expected if the I2C address is an odd number (yeah, this is
3425 strange but it's what they do) */
3426 mode16 = (addr & 1);
3427 eepromSize = (mode16 ? EEPROM_SIZE : 256);
3428 trace_eeprom("Examining %d byte eeprom at location 0x%x"
3429 " using %d bit addressing",eepromSize,addr,
3430 mode16 ? 16 : 8);
3431
3432 msg[0].addr = addr;
3433 msg[0].flags = 0;
3434 msg[0].len = mode16 ? 2 : 1;
3435 msg[0].buf = iadd;
3436 msg[1].addr = addr;
3437 msg[1].flags = I2C_M_RD;
3438
3439 /* We have to do the actual eeprom data fetch ourselves, because
3440 (1) we're only fetching part of the eeprom, and (2) if we were
3441 getting the whole thing our I2C driver can't grab it in one
3442 pass - which is what tveeprom is otherwise going to attempt */
3443 memset(eeprom,0,EEPROM_SIZE);
3444 for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
3445 pcnt = 16;
3446 if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
3447 offs = tcnt + (eepromSize - EEPROM_SIZE);
3448 if (mode16) {
3449 iadd[0] = offs >> 8;
3450 iadd[1] = offs;
3451 } else {
3452 iadd[0] = offs;
3453 }
3454 msg[1].len = pcnt;
3455 msg[1].buf = eeprom+tcnt;
3456 if ((ret = i2c_transfer(&hdw->i2c_adap,
3457 msg,ARRAY_SIZE(msg))) != 2) {
3458 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3459 "eeprom fetch set offs err=%d",ret);
3460 kfree(eeprom);
3461 return NULL;
3462 }
3463 }
3464 return eeprom;
3465}
3466
3467
3468void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw *hdw,
3469 int prom_flag,
3470 int enable_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003471{
3472 int ret;
3473 u16 address;
3474 unsigned int pipe;
3475 LOCK_TAKE(hdw->big_lock); do {
Al Viro5fa12472008-03-29 03:07:38 +00003476 if ((hdw->fw_buffer == NULL) == !enable_flag) break;
Mike Iselyd8554972006-06-26 20:58:46 -03003477
3478 if (!enable_flag) {
3479 pvr2_trace(PVR2_TRACE_FIRMWARE,
3480 "Cleaning up after CPU firmware fetch");
3481 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003482 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003483 hdw->fw_size = 0;
Mike Isely4db666c2007-09-08 22:16:27 -03003484 if (hdw->fw_cpu_flag) {
3485 /* Now release the CPU. It will disconnect
3486 and reconnect later. */
3487 pvr2_hdw_cpureset_assert(hdw,0);
3488 }
Mike Iselyd8554972006-06-26 20:58:46 -03003489 break;
3490 }
3491
Mike Isely4db666c2007-09-08 22:16:27 -03003492 hdw->fw_cpu_flag = (prom_flag == 0);
3493 if (hdw->fw_cpu_flag) {
3494 pvr2_trace(PVR2_TRACE_FIRMWARE,
3495 "Preparing to suck out CPU firmware");
3496 hdw->fw_size = 0x2000;
3497 hdw->fw_buffer = kzalloc(hdw->fw_size,GFP_KERNEL);
3498 if (!hdw->fw_buffer) {
3499 hdw->fw_size = 0;
3500 break;
3501 }
3502
3503 /* We have to hold the CPU during firmware upload. */
3504 pvr2_hdw_cpureset_assert(hdw,1);
3505
3506 /* download the firmware from address 0000-1fff in 2048
3507 (=0x800) bytes chunk. */
3508
3509 pvr2_trace(PVR2_TRACE_FIRMWARE,
3510 "Grabbing CPU firmware");
3511 pipe = usb_rcvctrlpipe(hdw->usb_dev, 0);
3512 for(address = 0; address < hdw->fw_size;
3513 address += 0x800) {
3514 ret = usb_control_msg(hdw->usb_dev,pipe,
3515 0xa0,0xc0,
3516 address,0,
3517 hdw->fw_buffer+address,
3518 0x800,HZ);
3519 if (ret < 0) break;
3520 }
3521
3522 pvr2_trace(PVR2_TRACE_FIRMWARE,
3523 "Done grabbing CPU firmware");
3524 } else {
3525 pvr2_trace(PVR2_TRACE_FIRMWARE,
3526 "Sucking down EEPROM contents");
3527 hdw->fw_buffer = pvr2_full_eeprom_fetch(hdw);
3528 if (!hdw->fw_buffer) {
3529 pvr2_trace(PVR2_TRACE_FIRMWARE,
3530 "EEPROM content suck failed.");
3531 break;
3532 }
3533 hdw->fw_size = EEPROM_SIZE;
3534 pvr2_trace(PVR2_TRACE_FIRMWARE,
3535 "Done sucking down EEPROM contents");
Mike Iselyd8554972006-06-26 20:58:46 -03003536 }
3537
Mike Iselyd8554972006-06-26 20:58:46 -03003538 } while (0); LOCK_GIVE(hdw->big_lock);
3539}
3540
3541
3542/* Return true if we're in a mode for retrieval CPU firmware */
3543int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *hdw)
3544{
Al Viro5fa12472008-03-29 03:07:38 +00003545 return hdw->fw_buffer != NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003546}
3547
3548
3549int pvr2_hdw_cpufw_get(struct pvr2_hdw *hdw,unsigned int offs,
3550 char *buf,unsigned int cnt)
3551{
3552 int ret = -EINVAL;
3553 LOCK_TAKE(hdw->big_lock); do {
3554 if (!buf) break;
3555 if (!cnt) break;
3556
3557 if (!hdw->fw_buffer) {
3558 ret = -EIO;
3559 break;
3560 }
3561
3562 if (offs >= hdw->fw_size) {
3563 pvr2_trace(PVR2_TRACE_FIRMWARE,
3564 "Read firmware data offs=%d EOF",
3565 offs);
3566 ret = 0;
3567 break;
3568 }
3569
3570 if (offs + cnt > hdw->fw_size) cnt = hdw->fw_size - offs;
3571
3572 memcpy(buf,hdw->fw_buffer+offs,cnt);
3573
3574 pvr2_trace(PVR2_TRACE_FIRMWARE,
3575 "Read firmware data offs=%d cnt=%d",
3576 offs,cnt);
3577 ret = cnt;
3578 } while (0); LOCK_GIVE(hdw->big_lock);
3579
3580 return ret;
3581}
3582
3583
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003584int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003585 enum pvr2_v4l_type index)
Mike Iselyd8554972006-06-26 20:58:46 -03003586{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003587 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003588 case pvr2_v4l_type_video: return hdw->v4l_minor_number_video;
3589 case pvr2_v4l_type_vbi: return hdw->v4l_minor_number_vbi;
3590 case pvr2_v4l_type_radio: return hdw->v4l_minor_number_radio;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003591 default: return -1;
3592 }
Mike Iselyd8554972006-06-26 20:58:46 -03003593}
3594
3595
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -03003596/* Store a v4l minor device number */
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003597void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003598 enum pvr2_v4l_type index,int v)
Mike Iselyd8554972006-06-26 20:58:46 -03003599{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003600 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003601 case pvr2_v4l_type_video: hdw->v4l_minor_number_video = v;
3602 case pvr2_v4l_type_vbi: hdw->v4l_minor_number_vbi = v;
3603 case pvr2_v4l_type_radio: hdw->v4l_minor_number_radio = v;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003604 default: break;
3605 }
Mike Iselyd8554972006-06-26 20:58:46 -03003606}
3607
3608
David Howells7d12e782006-10-05 14:55:46 +01003609static void pvr2_ctl_write_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003610{
3611 struct pvr2_hdw *hdw = urb->context;
3612 hdw->ctl_write_pend_flag = 0;
3613 if (hdw->ctl_read_pend_flag) return;
3614 complete(&hdw->ctl_done);
3615}
3616
3617
David Howells7d12e782006-10-05 14:55:46 +01003618static void pvr2_ctl_read_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003619{
3620 struct pvr2_hdw *hdw = urb->context;
3621 hdw->ctl_read_pend_flag = 0;
3622 if (hdw->ctl_write_pend_flag) return;
3623 complete(&hdw->ctl_done);
3624}
3625
3626
3627static void pvr2_ctl_timeout(unsigned long data)
3628{
3629 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3630 if (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3631 hdw->ctl_timeout_flag = !0;
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003632 if (hdw->ctl_write_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003633 usb_unlink_urb(hdw->ctl_write_urb);
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003634 if (hdw->ctl_read_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003635 usb_unlink_urb(hdw->ctl_read_urb);
Mike Iselyd8554972006-06-26 20:58:46 -03003636 }
3637}
3638
3639
Mike Iselye61b6fc2006-07-18 22:42:18 -03003640/* Issue a command and get a response from the device. This extended
3641 version includes a probe flag (which if set means that device errors
3642 should not be logged or treated as fatal) and a timeout in jiffies.
3643 This can be used to non-lethally probe the health of endpoint 1. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03003644static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
3645 unsigned int timeout,int probe_fl,
3646 void *write_data,unsigned int write_len,
3647 void *read_data,unsigned int read_len)
Mike Iselyd8554972006-06-26 20:58:46 -03003648{
3649 unsigned int idx;
3650 int status = 0;
3651 struct timer_list timer;
3652 if (!hdw->ctl_lock_held) {
3653 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3654 "Attempted to execute control transfer"
3655 " without lock!!");
3656 return -EDEADLK;
3657 }
Mike Isely681c7392007-11-26 01:48:52 -03003658 if (!hdw->flag_ok && !probe_fl) {
Mike Iselyd8554972006-06-26 20:58:46 -03003659 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3660 "Attempted to execute control transfer"
3661 " when device not ok");
3662 return -EIO;
3663 }
3664 if (!(hdw->ctl_read_urb && hdw->ctl_write_urb)) {
3665 if (!probe_fl) {
3666 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3667 "Attempted to execute control transfer"
3668 " when USB is disconnected");
3669 }
3670 return -ENOTTY;
3671 }
3672
3673 /* Ensure that we have sane parameters */
3674 if (!write_data) write_len = 0;
3675 if (!read_data) read_len = 0;
3676 if (write_len > PVR2_CTL_BUFFSIZE) {
3677 pvr2_trace(
3678 PVR2_TRACE_ERROR_LEGS,
3679 "Attempted to execute %d byte"
3680 " control-write transfer (limit=%d)",
3681 write_len,PVR2_CTL_BUFFSIZE);
3682 return -EINVAL;
3683 }
3684 if (read_len > PVR2_CTL_BUFFSIZE) {
3685 pvr2_trace(
3686 PVR2_TRACE_ERROR_LEGS,
3687 "Attempted to execute %d byte"
3688 " control-read transfer (limit=%d)",
3689 write_len,PVR2_CTL_BUFFSIZE);
3690 return -EINVAL;
3691 }
3692 if ((!write_len) && (!read_len)) {
3693 pvr2_trace(
3694 PVR2_TRACE_ERROR_LEGS,
3695 "Attempted to execute null control transfer?");
3696 return -EINVAL;
3697 }
3698
3699
3700 hdw->cmd_debug_state = 1;
3701 if (write_len) {
3702 hdw->cmd_debug_code = ((unsigned char *)write_data)[0];
3703 } else {
3704 hdw->cmd_debug_code = 0;
3705 }
3706 hdw->cmd_debug_write_len = write_len;
3707 hdw->cmd_debug_read_len = read_len;
3708
3709 /* Initialize common stuff */
3710 init_completion(&hdw->ctl_done);
3711 hdw->ctl_timeout_flag = 0;
3712 hdw->ctl_write_pend_flag = 0;
3713 hdw->ctl_read_pend_flag = 0;
3714 init_timer(&timer);
3715 timer.expires = jiffies + timeout;
3716 timer.data = (unsigned long)hdw;
3717 timer.function = pvr2_ctl_timeout;
3718
3719 if (write_len) {
3720 hdw->cmd_debug_state = 2;
3721 /* Transfer write data to internal buffer */
3722 for (idx = 0; idx < write_len; idx++) {
3723 hdw->ctl_write_buffer[idx] =
3724 ((unsigned char *)write_data)[idx];
3725 }
3726 /* Initiate a write request */
3727 usb_fill_bulk_urb(hdw->ctl_write_urb,
3728 hdw->usb_dev,
3729 usb_sndbulkpipe(hdw->usb_dev,
3730 PVR2_CTL_WRITE_ENDPOINT),
3731 hdw->ctl_write_buffer,
3732 write_len,
3733 pvr2_ctl_write_complete,
3734 hdw);
3735 hdw->ctl_write_urb->actual_length = 0;
3736 hdw->ctl_write_pend_flag = !0;
3737 status = usb_submit_urb(hdw->ctl_write_urb,GFP_KERNEL);
3738 if (status < 0) {
3739 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3740 "Failed to submit write-control"
3741 " URB status=%d",status);
3742 hdw->ctl_write_pend_flag = 0;
3743 goto done;
3744 }
3745 }
3746
3747 if (read_len) {
3748 hdw->cmd_debug_state = 3;
3749 memset(hdw->ctl_read_buffer,0x43,read_len);
3750 /* Initiate a read request */
3751 usb_fill_bulk_urb(hdw->ctl_read_urb,
3752 hdw->usb_dev,
3753 usb_rcvbulkpipe(hdw->usb_dev,
3754 PVR2_CTL_READ_ENDPOINT),
3755 hdw->ctl_read_buffer,
3756 read_len,
3757 pvr2_ctl_read_complete,
3758 hdw);
3759 hdw->ctl_read_urb->actual_length = 0;
3760 hdw->ctl_read_pend_flag = !0;
3761 status = usb_submit_urb(hdw->ctl_read_urb,GFP_KERNEL);
3762 if (status < 0) {
3763 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3764 "Failed to submit read-control"
3765 " URB status=%d",status);
3766 hdw->ctl_read_pend_flag = 0;
3767 goto done;
3768 }
3769 }
3770
3771 /* Start timer */
3772 add_timer(&timer);
3773
3774 /* Now wait for all I/O to complete */
3775 hdw->cmd_debug_state = 4;
3776 while (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3777 wait_for_completion(&hdw->ctl_done);
3778 }
3779 hdw->cmd_debug_state = 5;
3780
3781 /* Stop timer */
3782 del_timer_sync(&timer);
3783
3784 hdw->cmd_debug_state = 6;
3785 status = 0;
3786
3787 if (hdw->ctl_timeout_flag) {
3788 status = -ETIMEDOUT;
3789 if (!probe_fl) {
3790 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3791 "Timed out control-write");
3792 }
3793 goto done;
3794 }
3795
3796 if (write_len) {
3797 /* Validate results of write request */
3798 if ((hdw->ctl_write_urb->status != 0) &&
3799 (hdw->ctl_write_urb->status != -ENOENT) &&
3800 (hdw->ctl_write_urb->status != -ESHUTDOWN) &&
3801 (hdw->ctl_write_urb->status != -ECONNRESET)) {
3802 /* USB subsystem is reporting some kind of failure
3803 on the write */
3804 status = hdw->ctl_write_urb->status;
3805 if (!probe_fl) {
3806 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3807 "control-write URB failure,"
3808 " status=%d",
3809 status);
3810 }
3811 goto done;
3812 }
3813 if (hdw->ctl_write_urb->actual_length < write_len) {
3814 /* Failed to write enough data */
3815 status = -EIO;
3816 if (!probe_fl) {
3817 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3818 "control-write URB short,"
3819 " expected=%d got=%d",
3820 write_len,
3821 hdw->ctl_write_urb->actual_length);
3822 }
3823 goto done;
3824 }
3825 }
3826 if (read_len) {
3827 /* Validate results of read request */
3828 if ((hdw->ctl_read_urb->status != 0) &&
3829 (hdw->ctl_read_urb->status != -ENOENT) &&
3830 (hdw->ctl_read_urb->status != -ESHUTDOWN) &&
3831 (hdw->ctl_read_urb->status != -ECONNRESET)) {
3832 /* USB subsystem is reporting some kind of failure
3833 on the read */
3834 status = hdw->ctl_read_urb->status;
3835 if (!probe_fl) {
3836 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3837 "control-read URB failure,"
3838 " status=%d",
3839 status);
3840 }
3841 goto done;
3842 }
3843 if (hdw->ctl_read_urb->actual_length < read_len) {
3844 /* Failed to read enough data */
3845 status = -EIO;
3846 if (!probe_fl) {
3847 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3848 "control-read URB short,"
3849 " expected=%d got=%d",
3850 read_len,
3851 hdw->ctl_read_urb->actual_length);
3852 }
3853 goto done;
3854 }
3855 /* Transfer retrieved data out from internal buffer */
3856 for (idx = 0; idx < read_len; idx++) {
3857 ((unsigned char *)read_data)[idx] =
3858 hdw->ctl_read_buffer[idx];
3859 }
3860 }
3861
3862 done:
3863
3864 hdw->cmd_debug_state = 0;
3865 if ((status < 0) && (!probe_fl)) {
Mike Isely681c7392007-11-26 01:48:52 -03003866 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003867 }
3868 return status;
3869}
3870
3871
3872int pvr2_send_request(struct pvr2_hdw *hdw,
3873 void *write_data,unsigned int write_len,
3874 void *read_data,unsigned int read_len)
3875{
3876 return pvr2_send_request_ex(hdw,HZ*4,0,
3877 write_data,write_len,
3878 read_data,read_len);
3879}
3880
Mike Isely1c9d10d2008-03-28 05:38:54 -03003881
3882static int pvr2_issue_simple_cmd(struct pvr2_hdw *hdw,u32 cmdcode)
3883{
3884 int ret;
3885 unsigned int cnt = 1;
3886 unsigned int args = 0;
3887 LOCK_TAKE(hdw->ctl_lock);
3888 hdw->cmd_buffer[0] = cmdcode & 0xffu;
3889 args = (cmdcode >> 8) & 0xffu;
3890 args = (args > 2) ? 2 : args;
3891 if (args) {
3892 cnt += args;
3893 hdw->cmd_buffer[1] = (cmdcode >> 16) & 0xffu;
3894 if (args > 1) {
3895 hdw->cmd_buffer[2] = (cmdcode >> 24) & 0xffu;
3896 }
3897 }
3898 if (pvrusb2_debug & PVR2_TRACE_INIT) {
3899 unsigned int idx;
3900 unsigned int ccnt,bcnt;
3901 char tbuf[50];
3902 cmdcode &= 0xffu;
3903 bcnt = 0;
3904 ccnt = scnprintf(tbuf+bcnt,
3905 sizeof(tbuf)-bcnt,
3906 "Sending FX2 command 0x%x",cmdcode);
3907 bcnt += ccnt;
3908 for (idx = 0; idx < ARRAY_SIZE(pvr2_fx2cmd_desc); idx++) {
3909 if (pvr2_fx2cmd_desc[idx].id == cmdcode) {
3910 ccnt = scnprintf(tbuf+bcnt,
3911 sizeof(tbuf)-bcnt,
3912 " \"%s\"",
3913 pvr2_fx2cmd_desc[idx].desc);
3914 bcnt += ccnt;
3915 break;
3916 }
3917 }
3918 if (args) {
3919 ccnt = scnprintf(tbuf+bcnt,
3920 sizeof(tbuf)-bcnt,
3921 " (%u",hdw->cmd_buffer[1]);
3922 bcnt += ccnt;
3923 if (args > 1) {
3924 ccnt = scnprintf(tbuf+bcnt,
3925 sizeof(tbuf)-bcnt,
3926 ",%u",hdw->cmd_buffer[2]);
3927 bcnt += ccnt;
3928 }
3929 ccnt = scnprintf(tbuf+bcnt,
3930 sizeof(tbuf)-bcnt,
3931 ")");
3932 bcnt += ccnt;
3933 }
3934 pvr2_trace(PVR2_TRACE_INIT,"%.*s",bcnt,tbuf);
3935 }
3936 ret = pvr2_send_request(hdw,hdw->cmd_buffer,cnt,NULL,0);
3937 LOCK_GIVE(hdw->ctl_lock);
3938 return ret;
3939}
3940
3941
Mike Iselyd8554972006-06-26 20:58:46 -03003942int pvr2_write_register(struct pvr2_hdw *hdw, u16 reg, u32 data)
3943{
3944 int ret;
3945
3946 LOCK_TAKE(hdw->ctl_lock);
3947
Michael Krufky8d364362007-01-22 02:17:55 -03003948 hdw->cmd_buffer[0] = FX2CMD_REG_WRITE; /* write register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003949 PVR2_DECOMPOSE_LE(hdw->cmd_buffer,1,data);
3950 hdw->cmd_buffer[5] = 0;
3951 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3952 hdw->cmd_buffer[7] = reg & 0xff;
3953
3954
3955 ret = pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 0);
3956
3957 LOCK_GIVE(hdw->ctl_lock);
3958
3959 return ret;
3960}
3961
3962
Adrian Bunk07e337e2006-06-30 11:30:20 -03003963static int pvr2_read_register(struct pvr2_hdw *hdw, u16 reg, u32 *data)
Mike Iselyd8554972006-06-26 20:58:46 -03003964{
3965 int ret = 0;
3966
3967 LOCK_TAKE(hdw->ctl_lock);
3968
Michael Krufky8d364362007-01-22 02:17:55 -03003969 hdw->cmd_buffer[0] = FX2CMD_REG_READ; /* read register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003970 hdw->cmd_buffer[1] = 0;
3971 hdw->cmd_buffer[2] = 0;
3972 hdw->cmd_buffer[3] = 0;
3973 hdw->cmd_buffer[4] = 0;
3974 hdw->cmd_buffer[5] = 0;
3975 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3976 hdw->cmd_buffer[7] = reg & 0xff;
3977
3978 ret |= pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 4);
3979 *data = PVR2_COMPOSE_LE(hdw->cmd_buffer,0);
3980
3981 LOCK_GIVE(hdw->ctl_lock);
3982
3983 return ret;
3984}
3985
3986
Mike Isely681c7392007-11-26 01:48:52 -03003987void pvr2_hdw_render_useless(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003988{
3989 if (!hdw->flag_ok) return;
Mike Isely681c7392007-11-26 01:48:52 -03003990 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3991 "Device being rendered inoperable");
Mike Iselyd8554972006-06-26 20:58:46 -03003992 if (hdw->vid_stream) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003993 pvr2_stream_setup(hdw->vid_stream,NULL,0,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003994 }
Mike Isely681c7392007-11-26 01:48:52 -03003995 hdw->flag_ok = 0;
3996 trace_stbit("flag_ok",hdw->flag_ok);
3997 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003998}
3999
4000
4001void pvr2_hdw_device_reset(struct pvr2_hdw *hdw)
4002{
4003 int ret;
4004 pvr2_trace(PVR2_TRACE_INIT,"Performing a device reset...");
Mike Iselya0fd1cb2006-06-30 11:35:28 -03004005 ret = usb_lock_device_for_reset(hdw->usb_dev,NULL);
Alan Stern011b15d2008-11-04 11:29:27 -05004006 if (ret == 0) {
Mike Iselyd8554972006-06-26 20:58:46 -03004007 ret = usb_reset_device(hdw->usb_dev);
4008 usb_unlock_device(hdw->usb_dev);
4009 } else {
4010 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4011 "Failed to lock USB device ret=%d",ret);
4012 }
4013 if (init_pause_msec) {
4014 pvr2_trace(PVR2_TRACE_INFO,
4015 "Waiting %u msec for hardware to settle",
4016 init_pause_msec);
4017 msleep(init_pause_msec);
4018 }
4019
4020}
4021
4022
4023void pvr2_hdw_cpureset_assert(struct pvr2_hdw *hdw,int val)
4024{
4025 char da[1];
4026 unsigned int pipe;
4027 int ret;
4028
4029 if (!hdw->usb_dev) return;
4030
4031 pvr2_trace(PVR2_TRACE_INIT,"cpureset_assert(%d)",val);
4032
4033 da[0] = val ? 0x01 : 0x00;
4034
4035 /* Write the CPUCS register on the 8051. The lsb of the register
4036 is the reset bit; a 1 asserts reset while a 0 clears it. */
4037 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
4038 ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ);
4039 if (ret < 0) {
4040 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4041 "cpureset_assert(%d) error=%d",val,ret);
4042 pvr2_hdw_render_useless(hdw);
4043 }
4044}
4045
4046
4047int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw *hdw)
4048{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004049 return pvr2_issue_simple_cmd(hdw,FX2CMD_DEEP_RESET);
Mike Iselyd8554972006-06-26 20:58:46 -03004050}
4051
4052
Michael Krufkye1edb192008-04-22 14:45:39 -03004053int pvr2_hdw_cmd_powerup(struct pvr2_hdw *hdw)
4054{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004055 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_ON);
Michael Krufkye1edb192008-04-22 14:45:39 -03004056}
4057
Mike Isely1c9d10d2008-03-28 05:38:54 -03004058
Michael Krufkye1edb192008-04-22 14:45:39 -03004059int pvr2_hdw_cmd_powerdown(struct pvr2_hdw *hdw)
4060{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004061 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_OFF);
Michael Krufkye1edb192008-04-22 14:45:39 -03004062}
4063
Mike Iselyd8554972006-06-26 20:58:46 -03004064
4065int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw *hdw)
4066{
Mike Iselyd8554972006-06-26 20:58:46 -03004067 pvr2_trace(PVR2_TRACE_INIT,
4068 "Requesting decoder reset");
Mike Iselyaf78e162009-03-07 00:21:30 -03004069 if (hdw->decoder_client_id) {
4070 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
4071 core, reset, 0);
4072 return 0;
4073 }
4074 pvr2_trace(PVR2_TRACE_INIT,
4075 "Unable to reset decoder: nothing attached");
4076 return -ENOTTY;
Mike Iselyd8554972006-06-26 20:58:46 -03004077}
4078
4079
Mike Isely62433e32008-04-22 14:45:40 -03004080static int pvr2_hdw_cmd_hcw_demod_reset(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004081{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004082 hdw->flag_ok = !0;
4083 return pvr2_issue_simple_cmd(hdw,
4084 FX2CMD_HCW_DEMOD_RESETIN |
4085 (1 << 8) |
4086 ((onoff ? 1 : 0) << 16));
Mike Isely84147f32008-04-22 14:45:40 -03004087}
4088
Mike Isely84147f32008-04-22 14:45:40 -03004089
Mike Isely62433e32008-04-22 14:45:40 -03004090static int pvr2_hdw_cmd_onair_fe_power_ctrl(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004091{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004092 hdw->flag_ok = !0;
4093 return pvr2_issue_simple_cmd(hdw,(onoff ?
4094 FX2CMD_ONAIR_DTV_POWER_ON :
4095 FX2CMD_ONAIR_DTV_POWER_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004096}
4097
Mike Isely62433e32008-04-22 14:45:40 -03004098
4099static int pvr2_hdw_cmd_onair_digital_path_ctrl(struct pvr2_hdw *hdw,
4100 int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004101{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004102 return pvr2_issue_simple_cmd(hdw,(onoff ?
4103 FX2CMD_ONAIR_DTV_STREAMING_ON :
4104 FX2CMD_ONAIR_DTV_STREAMING_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004105}
4106
Mike Isely62433e32008-04-22 14:45:40 -03004107
4108static void pvr2_hdw_cmd_modeswitch(struct pvr2_hdw *hdw,int digitalFl)
4109{
4110 int cmode;
4111 /* Compare digital/analog desired setting with current setting. If
4112 they don't match, fix it... */
4113 cmode = (digitalFl ? PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG);
4114 if (cmode == hdw->pathway_state) {
4115 /* They match; nothing to do */
4116 return;
4117 }
4118
4119 switch (hdw->hdw_desc->digital_control_scheme) {
4120 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4121 pvr2_hdw_cmd_hcw_demod_reset(hdw,digitalFl);
4122 if (cmode == PVR2_PATHWAY_ANALOG) {
4123 /* If moving to analog mode, also force the decoder
4124 to reset. If no decoder is attached, then it's
4125 ok to ignore this because if/when the decoder
4126 attaches, it will reset itself at that time. */
4127 pvr2_hdw_cmd_decoder_reset(hdw);
4128 }
4129 break;
4130 case PVR2_DIGITAL_SCHEME_ONAIR:
4131 /* Supposedly we should always have the power on whether in
4132 digital or analog mode. But for now do what appears to
4133 work... */
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004134 pvr2_hdw_cmd_onair_fe_power_ctrl(hdw,digitalFl);
Mike Isely62433e32008-04-22 14:45:40 -03004135 break;
4136 default: break;
4137 }
4138
Mike Isely1b9c18c2008-04-22 14:45:41 -03004139 pvr2_hdw_untrip_unlocked(hdw);
Mike Isely62433e32008-04-22 14:45:40 -03004140 hdw->pathway_state = cmode;
4141}
4142
4143
Adrian Bunke9b59f62008-05-10 04:35:24 -03004144static void pvr2_led_ctrl_hauppauge(struct pvr2_hdw *hdw, int onoff)
Mike Iselyc55a97d2008-04-22 14:45:41 -03004145{
4146 /* change some GPIO data
4147 *
4148 * note: bit d7 of dir appears to control the LED,
4149 * so we shut it off here.
4150 *
Mike Iselyc55a97d2008-04-22 14:45:41 -03004151 */
Mike Isely40381cb2008-04-22 14:45:42 -03004152 if (onoff) {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004153 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000481);
Mike Isely40381cb2008-04-22 14:45:42 -03004154 } else {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004155 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000401);
Mike Isely40381cb2008-04-22 14:45:42 -03004156 }
Mike Iselyc55a97d2008-04-22 14:45:41 -03004157 pvr2_hdw_gpio_chg_out(hdw, 0xffffffff, 0x00000000);
Mike Isely40381cb2008-04-22 14:45:42 -03004158}
Mike Iselyc55a97d2008-04-22 14:45:41 -03004159
Mike Isely40381cb2008-04-22 14:45:42 -03004160
4161typedef void (*led_method_func)(struct pvr2_hdw *,int);
4162
4163static led_method_func led_methods[] = {
4164 [PVR2_LED_SCHEME_HAUPPAUGE] = pvr2_led_ctrl_hauppauge,
4165};
4166
4167
4168/* Toggle LED */
4169static void pvr2_led_ctrl(struct pvr2_hdw *hdw,int onoff)
4170{
4171 unsigned int scheme_id;
4172 led_method_func fp;
4173
4174 if ((!onoff) == (!hdw->led_on)) return;
4175
4176 hdw->led_on = onoff != 0;
4177
4178 scheme_id = hdw->hdw_desc->led_scheme;
4179 if (scheme_id < ARRAY_SIZE(led_methods)) {
4180 fp = led_methods[scheme_id];
4181 } else {
4182 fp = NULL;
4183 }
4184
4185 if (fp) (*fp)(hdw,onoff);
Mike Iselyc55a97d2008-04-22 14:45:41 -03004186}
4187
4188
Mike Iselye61b6fc2006-07-18 22:42:18 -03004189/* Stop / start video stream transport */
Adrian Bunk07e337e2006-06-30 11:30:20 -03004190static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl)
Mike Iselyd8554972006-06-26 20:58:46 -03004191{
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004192 int ret;
4193
4194 /* If we're in analog mode, then just issue the usual analog
4195 command. */
4196 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4197 return pvr2_issue_simple_cmd(hdw,
4198 (runFl ?
4199 FX2CMD_STREAMING_ON :
4200 FX2CMD_STREAMING_OFF));
4201 /*Note: Not reached */
Mike Isely62433e32008-04-22 14:45:40 -03004202 }
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004203
4204 if (hdw->pathway_state != PVR2_PATHWAY_DIGITAL) {
4205 /* Whoops, we don't know what mode we're in... */
4206 return -EINVAL;
4207 }
4208
4209 /* To get here we have to be in digital mode. The mechanism here
4210 is unfortunately different for different vendors. So we switch
4211 on the device's digital scheme attribute in order to figure out
4212 what to do. */
4213 switch (hdw->hdw_desc->digital_control_scheme) {
4214 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4215 return pvr2_issue_simple_cmd(hdw,
4216 (runFl ?
4217 FX2CMD_HCW_DTV_STREAMING_ON :
4218 FX2CMD_HCW_DTV_STREAMING_OFF));
4219 case PVR2_DIGITAL_SCHEME_ONAIR:
4220 ret = pvr2_issue_simple_cmd(hdw,
4221 (runFl ?
4222 FX2CMD_STREAMING_ON :
4223 FX2CMD_STREAMING_OFF));
4224 if (ret) return ret;
4225 return pvr2_hdw_cmd_onair_digital_path_ctrl(hdw,runFl);
4226 default:
4227 return -EINVAL;
4228 }
Mike Iselyd8554972006-06-26 20:58:46 -03004229}
4230
4231
Mike Isely62433e32008-04-22 14:45:40 -03004232/* Evaluate whether or not state_pathway_ok can change */
4233static int state_eval_pathway_ok(struct pvr2_hdw *hdw)
4234{
4235 if (hdw->state_pathway_ok) {
4236 /* Nothing to do if pathway is already ok */
4237 return 0;
4238 }
4239 if (!hdw->state_pipeline_idle) {
4240 /* Not allowed to change anything if pipeline is not idle */
4241 return 0;
4242 }
4243 pvr2_hdw_cmd_modeswitch(hdw,hdw->input_val == PVR2_CVAL_INPUT_DTV);
4244 hdw->state_pathway_ok = !0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03004245 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03004246 return !0;
4247}
4248
4249
Mike Isely681c7392007-11-26 01:48:52 -03004250/* Evaluate whether or not state_encoder_ok can change */
4251static int state_eval_encoder_ok(struct pvr2_hdw *hdw)
4252{
4253 if (hdw->state_encoder_ok) return 0;
4254 if (hdw->flag_tripped) return 0;
4255 if (hdw->state_encoder_run) return 0;
4256 if (hdw->state_encoder_config) return 0;
4257 if (hdw->state_decoder_run) return 0;
4258 if (hdw->state_usbstream_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004259 if (hdw->pathway_state == PVR2_PATHWAY_DIGITAL) {
4260 if (!hdw->hdw_desc->flag_digital_requires_cx23416) return 0;
4261 } else if (hdw->pathway_state != PVR2_PATHWAY_ANALOG) {
4262 return 0;
4263 }
4264
Mike Isely681c7392007-11-26 01:48:52 -03004265 if (pvr2_upload_firmware2(hdw) < 0) {
4266 hdw->flag_tripped = !0;
4267 trace_stbit("flag_tripped",hdw->flag_tripped);
4268 return !0;
4269 }
4270 hdw->state_encoder_ok = !0;
4271 trace_stbit("state_encoder_ok",hdw->state_encoder_ok);
4272 return !0;
4273}
4274
4275
4276/* Evaluate whether or not state_encoder_config can change */
4277static int state_eval_encoder_config(struct pvr2_hdw *hdw)
4278{
4279 if (hdw->state_encoder_config) {
4280 if (hdw->state_encoder_ok) {
4281 if (hdw->state_pipeline_req &&
4282 !hdw->state_pipeline_pause) return 0;
4283 }
4284 hdw->state_encoder_config = 0;
4285 hdw->state_encoder_waitok = 0;
4286 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4287 /* paranoia - solve race if timer just completed */
4288 del_timer_sync(&hdw->encoder_wait_timer);
4289 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004290 if (!hdw->state_pathway_ok ||
4291 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4292 !hdw->state_encoder_ok ||
Mike Isely681c7392007-11-26 01:48:52 -03004293 !hdw->state_pipeline_idle ||
4294 hdw->state_pipeline_pause ||
4295 !hdw->state_pipeline_req ||
4296 !hdw->state_pipeline_config) {
4297 /* We must reset the enforced wait interval if
4298 anything has happened that might have disturbed
4299 the encoder. This should be a rare case. */
4300 if (timer_pending(&hdw->encoder_wait_timer)) {
4301 del_timer_sync(&hdw->encoder_wait_timer);
4302 }
4303 if (hdw->state_encoder_waitok) {
4304 /* Must clear the state - therefore we did
4305 something to a state bit and must also
4306 return true. */
4307 hdw->state_encoder_waitok = 0;
4308 trace_stbit("state_encoder_waitok",
4309 hdw->state_encoder_waitok);
4310 return !0;
4311 }
4312 return 0;
4313 }
4314 if (!hdw->state_encoder_waitok) {
4315 if (!timer_pending(&hdw->encoder_wait_timer)) {
4316 /* waitok flag wasn't set and timer isn't
4317 running. Check flag once more to avoid
4318 a race then start the timer. This is
4319 the point when we measure out a minimal
4320 quiet interval before doing something to
4321 the encoder. */
4322 if (!hdw->state_encoder_waitok) {
4323 hdw->encoder_wait_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004324 jiffies +
4325 (HZ * TIME_MSEC_ENCODER_WAIT
4326 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004327 add_timer(&hdw->encoder_wait_timer);
4328 }
4329 }
4330 /* We can't continue until we know we have been
4331 quiet for the interval measured by this
4332 timer. */
4333 return 0;
4334 }
4335 pvr2_encoder_configure(hdw);
4336 if (hdw->state_encoder_ok) hdw->state_encoder_config = !0;
4337 }
4338 trace_stbit("state_encoder_config",hdw->state_encoder_config);
4339 return !0;
4340}
4341
4342
Mike Iselyd913d632008-04-06 04:04:35 -03004343/* Return true if the encoder should not be running. */
4344static int state_check_disable_encoder_run(struct pvr2_hdw *hdw)
4345{
4346 if (!hdw->state_encoder_ok) {
4347 /* Encoder isn't healthy at the moment, so stop it. */
4348 return !0;
4349 }
4350 if (!hdw->state_pathway_ok) {
4351 /* Mode is not understood at the moment (i.e. it wants to
4352 change), so encoder must be stopped. */
4353 return !0;
4354 }
4355
4356 switch (hdw->pathway_state) {
4357 case PVR2_PATHWAY_ANALOG:
4358 if (!hdw->state_decoder_run) {
4359 /* We're in analog mode and the decoder is not
4360 running; thus the encoder should be stopped as
4361 well. */
4362 return !0;
4363 }
4364 break;
4365 case PVR2_PATHWAY_DIGITAL:
4366 if (hdw->state_encoder_runok) {
4367 /* This is a funny case. We're in digital mode so
4368 really the encoder should be stopped. However
4369 if it really is running, only kill it after
4370 runok has been set. This gives a chance for the
4371 onair quirk to function (encoder must run
4372 briefly first, at least once, before onair
4373 digital streaming can work). */
4374 return !0;
4375 }
4376 break;
4377 default:
4378 /* Unknown mode; so encoder should be stopped. */
4379 return !0;
4380 }
4381
4382 /* If we get here, we haven't found a reason to stop the
4383 encoder. */
4384 return 0;
4385}
4386
4387
4388/* Return true if the encoder should be running. */
4389static int state_check_enable_encoder_run(struct pvr2_hdw *hdw)
4390{
4391 if (!hdw->state_encoder_ok) {
4392 /* Don't run the encoder if it isn't healthy... */
4393 return 0;
4394 }
4395 if (!hdw->state_pathway_ok) {
4396 /* Don't run the encoder if we don't (yet) know what mode
4397 we need to be in... */
4398 return 0;
4399 }
4400
4401 switch (hdw->pathway_state) {
4402 case PVR2_PATHWAY_ANALOG:
4403 if (hdw->state_decoder_run) {
4404 /* In analog mode, if the decoder is running, then
4405 run the encoder. */
4406 return !0;
4407 }
4408 break;
4409 case PVR2_PATHWAY_DIGITAL:
4410 if ((hdw->hdw_desc->digital_control_scheme ==
4411 PVR2_DIGITAL_SCHEME_ONAIR) &&
4412 !hdw->state_encoder_runok) {
4413 /* This is a quirk. OnAir hardware won't stream
4414 digital until the encoder has been run at least
4415 once, for a minimal period of time (empiricially
4416 measured to be 1/4 second). So if we're on
4417 OnAir hardware and the encoder has never been
4418 run at all, then start the encoder. Normal
4419 state machine logic in the driver will
4420 automatically handle the remaining bits. */
4421 return !0;
4422 }
4423 break;
4424 default:
4425 /* For completeness (unknown mode; encoder won't run ever) */
4426 break;
4427 }
4428 /* If we get here, then we haven't found any reason to run the
4429 encoder, so don't run it. */
4430 return 0;
4431}
4432
4433
Mike Isely681c7392007-11-26 01:48:52 -03004434/* Evaluate whether or not state_encoder_run can change */
4435static int state_eval_encoder_run(struct pvr2_hdw *hdw)
4436{
4437 if (hdw->state_encoder_run) {
Mike Iselyd913d632008-04-06 04:04:35 -03004438 if (!state_check_disable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004439 if (hdw->state_encoder_ok) {
Mike Iselyd913d632008-04-06 04:04:35 -03004440 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03004441 if (pvr2_encoder_stop(hdw) < 0) return !0;
4442 }
4443 hdw->state_encoder_run = 0;
4444 } else {
Mike Iselyd913d632008-04-06 04:04:35 -03004445 if (!state_check_enable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004446 if (pvr2_encoder_start(hdw) < 0) return !0;
4447 hdw->state_encoder_run = !0;
Mike Iselyd913d632008-04-06 04:04:35 -03004448 if (!hdw->state_encoder_runok) {
4449 hdw->encoder_run_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004450 jiffies + (HZ * TIME_MSEC_ENCODER_OK / 1000);
Mike Iselyd913d632008-04-06 04:04:35 -03004451 add_timer(&hdw->encoder_run_timer);
4452 }
Mike Isely681c7392007-11-26 01:48:52 -03004453 }
4454 trace_stbit("state_encoder_run",hdw->state_encoder_run);
4455 return !0;
4456}
4457
4458
4459/* Timeout function for quiescent timer. */
4460static void pvr2_hdw_quiescent_timeout(unsigned long data)
4461{
4462 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4463 hdw->state_decoder_quiescent = !0;
4464 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4465 hdw->state_stale = !0;
4466 queue_work(hdw->workqueue,&hdw->workpoll);
4467}
4468
4469
4470/* Timeout function for encoder wait timer. */
4471static void pvr2_hdw_encoder_wait_timeout(unsigned long data)
4472{
4473 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4474 hdw->state_encoder_waitok = !0;
4475 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4476 hdw->state_stale = !0;
4477 queue_work(hdw->workqueue,&hdw->workpoll);
4478}
4479
4480
Mike Iselyd913d632008-04-06 04:04:35 -03004481/* Timeout function for encoder run timer. */
4482static void pvr2_hdw_encoder_run_timeout(unsigned long data)
4483{
4484 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4485 if (!hdw->state_encoder_runok) {
4486 hdw->state_encoder_runok = !0;
4487 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
4488 hdw->state_stale = !0;
4489 queue_work(hdw->workqueue,&hdw->workpoll);
4490 }
4491}
4492
4493
Mike Isely681c7392007-11-26 01:48:52 -03004494/* Evaluate whether or not state_decoder_run can change */
4495static int state_eval_decoder_run(struct pvr2_hdw *hdw)
4496{
4497 if (hdw->state_decoder_run) {
4498 if (hdw->state_encoder_ok) {
4499 if (hdw->state_pipeline_req &&
Mike Isely62433e32008-04-22 14:45:40 -03004500 !hdw->state_pipeline_pause &&
4501 hdw->state_pathway_ok) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004502 }
4503 if (!hdw->flag_decoder_missed) {
4504 pvr2_decoder_enable(hdw,0);
4505 }
4506 hdw->state_decoder_quiescent = 0;
4507 hdw->state_decoder_run = 0;
4508 /* paranoia - solve race if timer just completed */
4509 del_timer_sync(&hdw->quiescent_timer);
4510 } else {
4511 if (!hdw->state_decoder_quiescent) {
4512 if (!timer_pending(&hdw->quiescent_timer)) {
4513 /* We don't do something about the
4514 quiescent timer until right here because
4515 we also want to catch cases where the
4516 decoder was already not running (like
4517 after initialization) as opposed to
4518 knowing that we had just stopped it.
4519 The second flag check is here to cover a
4520 race - the timer could have run and set
4521 this flag just after the previous check
4522 but before we did the pending check. */
4523 if (!hdw->state_decoder_quiescent) {
4524 hdw->quiescent_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004525 jiffies +
4526 (HZ * TIME_MSEC_DECODER_WAIT
4527 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004528 add_timer(&hdw->quiescent_timer);
4529 }
4530 }
4531 /* Don't allow decoder to start again until it has
4532 been quiesced first. This little detail should
4533 hopefully further stabilize the encoder. */
4534 return 0;
4535 }
Mike Isely62433e32008-04-22 14:45:40 -03004536 if (!hdw->state_pathway_ok ||
4537 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4538 !hdw->state_pipeline_req ||
Mike Isely681c7392007-11-26 01:48:52 -03004539 hdw->state_pipeline_pause ||
4540 !hdw->state_pipeline_config ||
4541 !hdw->state_encoder_config ||
4542 !hdw->state_encoder_ok) return 0;
4543 del_timer_sync(&hdw->quiescent_timer);
4544 if (hdw->flag_decoder_missed) return 0;
4545 if (pvr2_decoder_enable(hdw,!0) < 0) return 0;
4546 hdw->state_decoder_quiescent = 0;
4547 hdw->state_decoder_run = !0;
4548 }
4549 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4550 trace_stbit("state_decoder_run",hdw->state_decoder_run);
4551 return !0;
4552}
4553
4554
4555/* Evaluate whether or not state_usbstream_run can change */
4556static int state_eval_usbstream_run(struct pvr2_hdw *hdw)
4557{
4558 if (hdw->state_usbstream_run) {
Mike Isely72998b72008-04-03 04:51:19 -03004559 int fl = !0;
Mike Isely62433e32008-04-22 14:45:40 -03004560 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
Mike Isely72998b72008-04-03 04:51:19 -03004561 fl = (hdw->state_encoder_ok &&
4562 hdw->state_encoder_run);
4563 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4564 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4565 fl = hdw->state_encoder_ok;
4566 }
4567 if (fl &&
4568 hdw->state_pipeline_req &&
4569 !hdw->state_pipeline_pause &&
4570 hdw->state_pathway_ok) {
4571 return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004572 }
4573 pvr2_hdw_cmd_usbstream(hdw,0);
4574 hdw->state_usbstream_run = 0;
4575 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004576 if (!hdw->state_pipeline_req ||
4577 hdw->state_pipeline_pause ||
4578 !hdw->state_pathway_ok) return 0;
4579 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4580 if (!hdw->state_encoder_ok ||
4581 !hdw->state_encoder_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004582 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4583 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4584 if (!hdw->state_encoder_ok) return 0;
Mike Iselyd913d632008-04-06 04:04:35 -03004585 if (hdw->state_encoder_run) return 0;
4586 if (hdw->hdw_desc->digital_control_scheme ==
4587 PVR2_DIGITAL_SCHEME_ONAIR) {
4588 /* OnAir digital receivers won't stream
4589 unless the analog encoder has run first.
4590 Why? I have no idea. But don't even
4591 try until we know the analog side is
4592 known to have run. */
4593 if (!hdw->state_encoder_runok) return 0;
4594 }
Mike Isely62433e32008-04-22 14:45:40 -03004595 }
Mike Isely681c7392007-11-26 01:48:52 -03004596 if (pvr2_hdw_cmd_usbstream(hdw,!0) < 0) return 0;
4597 hdw->state_usbstream_run = !0;
4598 }
4599 trace_stbit("state_usbstream_run",hdw->state_usbstream_run);
4600 return !0;
4601}
4602
4603
4604/* Attempt to configure pipeline, if needed */
4605static int state_eval_pipeline_config(struct pvr2_hdw *hdw)
4606{
4607 if (hdw->state_pipeline_config ||
4608 hdw->state_pipeline_pause) return 0;
4609 pvr2_hdw_commit_execute(hdw);
4610 return !0;
4611}
4612
4613
4614/* Update pipeline idle and pipeline pause tracking states based on other
4615 inputs. This must be called whenever the other relevant inputs have
4616 changed. */
4617static int state_update_pipeline_state(struct pvr2_hdw *hdw)
4618{
4619 unsigned int st;
4620 int updatedFl = 0;
4621 /* Update pipeline state */
4622 st = !(hdw->state_encoder_run ||
4623 hdw->state_decoder_run ||
4624 hdw->state_usbstream_run ||
4625 (!hdw->state_decoder_quiescent));
4626 if (!st != !hdw->state_pipeline_idle) {
4627 hdw->state_pipeline_idle = st;
4628 updatedFl = !0;
4629 }
4630 if (hdw->state_pipeline_idle && hdw->state_pipeline_pause) {
4631 hdw->state_pipeline_pause = 0;
4632 updatedFl = !0;
4633 }
4634 return updatedFl;
4635}
4636
4637
4638typedef int (*state_eval_func)(struct pvr2_hdw *);
4639
4640/* Set of functions to be run to evaluate various states in the driver. */
Tobias Klauserebff0332008-04-22 14:45:45 -03004641static const state_eval_func eval_funcs[] = {
Mike Isely62433e32008-04-22 14:45:40 -03004642 state_eval_pathway_ok,
Mike Isely681c7392007-11-26 01:48:52 -03004643 state_eval_pipeline_config,
4644 state_eval_encoder_ok,
4645 state_eval_encoder_config,
4646 state_eval_decoder_run,
4647 state_eval_encoder_run,
4648 state_eval_usbstream_run,
4649};
4650
4651
4652/* Process various states and return true if we did anything interesting. */
4653static int pvr2_hdw_state_update(struct pvr2_hdw *hdw)
4654{
4655 unsigned int i;
4656 int state_updated = 0;
4657 int check_flag;
4658
4659 if (!hdw->state_stale) return 0;
4660 if ((hdw->fw1_state != FW1_STATE_OK) ||
4661 !hdw->flag_ok) {
4662 hdw->state_stale = 0;
4663 return !0;
4664 }
4665 /* This loop is the heart of the entire driver. It keeps trying to
4666 evaluate various bits of driver state until nothing changes for
4667 one full iteration. Each "bit of state" tracks some global
4668 aspect of the driver, e.g. whether decoder should run, if
4669 pipeline is configured, usb streaming is on, etc. We separately
4670 evaluate each of those questions based on other driver state to
4671 arrive at the correct running configuration. */
4672 do {
4673 check_flag = 0;
4674 state_update_pipeline_state(hdw);
4675 /* Iterate over each bit of state */
4676 for (i = 0; (i<ARRAY_SIZE(eval_funcs)) && hdw->flag_ok; i++) {
4677 if ((*eval_funcs[i])(hdw)) {
4678 check_flag = !0;
4679 state_updated = !0;
4680 state_update_pipeline_state(hdw);
4681 }
4682 }
4683 } while (check_flag && hdw->flag_ok);
4684 hdw->state_stale = 0;
4685 trace_stbit("state_stale",hdw->state_stale);
4686 return state_updated;
4687}
4688
4689
Mike Isely1cb03b72008-04-21 03:47:43 -03004690static unsigned int print_input_mask(unsigned int msk,
4691 char *buf,unsigned int acnt)
4692{
4693 unsigned int idx,ccnt;
4694 unsigned int tcnt = 0;
4695 for (idx = 0; idx < ARRAY_SIZE(control_values_input); idx++) {
4696 if (!((1 << idx) & msk)) continue;
4697 ccnt = scnprintf(buf+tcnt,
4698 acnt-tcnt,
4699 "%s%s",
4700 (tcnt ? ", " : ""),
4701 control_values_input[idx]);
4702 tcnt += ccnt;
4703 }
4704 return tcnt;
4705}
4706
4707
Mike Isely62433e32008-04-22 14:45:40 -03004708static const char *pvr2_pathway_state_name(int id)
4709{
4710 switch (id) {
4711 case PVR2_PATHWAY_ANALOG: return "analog";
4712 case PVR2_PATHWAY_DIGITAL: return "digital";
4713 default: return "unknown";
4714 }
4715}
4716
4717
Mike Isely681c7392007-11-26 01:48:52 -03004718static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw *hdw,int which,
4719 char *buf,unsigned int acnt)
4720{
4721 switch (which) {
4722 case 0:
4723 return scnprintf(
4724 buf,acnt,
Mike Iselye9db1ff2008-04-22 14:45:41 -03004725 "driver:%s%s%s%s%s <mode=%s>",
Mike Isely681c7392007-11-26 01:48:52 -03004726 (hdw->flag_ok ? " <ok>" : " <fail>"),
4727 (hdw->flag_init_ok ? " <init>" : " <uninitialized>"),
4728 (hdw->flag_disconnected ? " <disconnected>" :
4729 " <connected>"),
4730 (hdw->flag_tripped ? " <tripped>" : ""),
Mike Isely62433e32008-04-22 14:45:40 -03004731 (hdw->flag_decoder_missed ? " <no decoder>" : ""),
4732 pvr2_pathway_state_name(hdw->pathway_state));
4733
Mike Isely681c7392007-11-26 01:48:52 -03004734 case 1:
4735 return scnprintf(
4736 buf,acnt,
4737 "pipeline:%s%s%s%s",
4738 (hdw->state_pipeline_idle ? " <idle>" : ""),
4739 (hdw->state_pipeline_config ?
4740 " <configok>" : " <stale>"),
4741 (hdw->state_pipeline_req ? " <req>" : ""),
4742 (hdw->state_pipeline_pause ? " <pause>" : ""));
4743 case 2:
4744 return scnprintf(
4745 buf,acnt,
Mike Isely62433e32008-04-22 14:45:40 -03004746 "worker:%s%s%s%s%s%s%s",
Mike Isely681c7392007-11-26 01:48:52 -03004747 (hdw->state_decoder_run ?
4748 " <decode:run>" :
4749 (hdw->state_decoder_quiescent ?
4750 "" : " <decode:stop>")),
4751 (hdw->state_decoder_quiescent ?
4752 " <decode:quiescent>" : ""),
4753 (hdw->state_encoder_ok ?
4754 "" : " <encode:init>"),
4755 (hdw->state_encoder_run ?
Mike Iselyd913d632008-04-06 04:04:35 -03004756 (hdw->state_encoder_runok ?
4757 " <encode:run>" :
4758 " <encode:firstrun>") :
4759 (hdw->state_encoder_runok ?
4760 " <encode:stop>" :
4761 " <encode:virgin>")),
Mike Isely681c7392007-11-26 01:48:52 -03004762 (hdw->state_encoder_config ?
4763 " <encode:configok>" :
4764 (hdw->state_encoder_waitok ?
Mike Iselyb9a37d92008-03-28 05:31:40 -03004765 "" : " <encode:waitok>")),
Mike Isely681c7392007-11-26 01:48:52 -03004766 (hdw->state_usbstream_run ?
Mike Isely62433e32008-04-22 14:45:40 -03004767 " <usb:run>" : " <usb:stop>"),
4768 (hdw->state_pathway_ok ?
Mike Iselye9db1ff2008-04-22 14:45:41 -03004769 " <pathway:ok>" : ""));
Mike Isely681c7392007-11-26 01:48:52 -03004770 case 3:
4771 return scnprintf(
4772 buf,acnt,
4773 "state: %s",
4774 pvr2_get_state_name(hdw->master_state));
Mike Iselyad0992e2008-03-28 05:34:45 -03004775 case 4: {
Mike Isely1cb03b72008-04-21 03:47:43 -03004776 unsigned int tcnt = 0;
4777 unsigned int ccnt;
4778
4779 ccnt = scnprintf(buf,
4780 acnt,
4781 "Hardware supported inputs: ");
4782 tcnt += ccnt;
4783 tcnt += print_input_mask(hdw->input_avail_mask,
4784 buf+tcnt,
4785 acnt-tcnt);
4786 if (hdw->input_avail_mask != hdw->input_allowed_mask) {
4787 ccnt = scnprintf(buf+tcnt,
4788 acnt-tcnt,
4789 "; allowed inputs: ");
4790 tcnt += ccnt;
4791 tcnt += print_input_mask(hdw->input_allowed_mask,
4792 buf+tcnt,
4793 acnt-tcnt);
4794 }
4795 return tcnt;
4796 }
4797 case 5: {
Mike Iselyad0992e2008-03-28 05:34:45 -03004798 struct pvr2_stream_stats stats;
4799 if (!hdw->vid_stream) break;
4800 pvr2_stream_get_stats(hdw->vid_stream,
4801 &stats,
4802 0);
4803 return scnprintf(
4804 buf,acnt,
4805 "Bytes streamed=%u"
4806 " URBs: queued=%u idle=%u ready=%u"
4807 " processed=%u failed=%u",
4808 stats.bytes_processed,
4809 stats.buffers_in_queue,
4810 stats.buffers_in_idle,
4811 stats.buffers_in_ready,
4812 stats.buffers_processed,
4813 stats.buffers_failed);
4814 }
Mike Isely681c7392007-11-26 01:48:52 -03004815 default: break;
4816 }
4817 return 0;
4818}
4819
4820
Mike Isely2eb563b2009-03-08 18:25:46 -03004821/* Generate report containing info about attached sub-devices and attached
4822 i2c clients, including an indication of which attached i2c clients are
4823 actually sub-devices. */
4824static unsigned int pvr2_hdw_report_clients(struct pvr2_hdw *hdw,
4825 char *buf, unsigned int acnt)
4826{
4827 struct v4l2_subdev *sd;
4828 unsigned int tcnt = 0;
4829 unsigned int ccnt;
4830 struct i2c_client *client;
4831 struct list_head *item;
4832 void *cd;
4833 const char *p;
4834 unsigned int id;
4835
4836 ccnt = scnprintf(buf, acnt, "Associated v4l2-subdev drivers:");
4837 tcnt += ccnt;
4838 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
4839 id = sd->grp_id;
4840 p = NULL;
4841 if (id < ARRAY_SIZE(module_names)) p = module_names[id];
4842 if (p) {
4843 ccnt = scnprintf(buf + tcnt, acnt - tcnt, " %s", p);
4844 tcnt += ccnt;
4845 } else {
4846 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4847 " (unknown id=%u)", id);
4848 tcnt += ccnt;
4849 }
4850 }
4851 ccnt = scnprintf(buf + tcnt, acnt - tcnt, "\n");
4852 tcnt += ccnt;
4853
4854 ccnt = scnprintf(buf + tcnt, acnt - tcnt, "I2C clients:\n");
4855 tcnt += ccnt;
4856
4857 mutex_lock(&hdw->i2c_adap.clist_lock);
4858 list_for_each(item, &hdw->i2c_adap.clients) {
4859 client = list_entry(item, struct i2c_client, list);
4860 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4861 " %s: i2c=%02x", client->name, client->addr);
4862 tcnt += ccnt;
4863 cd = i2c_get_clientdata(client);
4864 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
4865 if (cd == sd) {
4866 id = sd->grp_id;
4867 p = NULL;
4868 if (id < ARRAY_SIZE(module_names)) {
4869 p = module_names[id];
4870 }
4871 if (p) {
4872 ccnt = scnprintf(buf + tcnt,
4873 acnt - tcnt,
4874 " subdev=%s", p);
4875 tcnt += ccnt;
4876 } else {
4877 ccnt = scnprintf(buf + tcnt,
4878 acnt - tcnt,
4879 " subdev= id %u)",
4880 id);
4881 tcnt += ccnt;
4882 }
4883 break;
4884 }
4885 }
4886 ccnt = scnprintf(buf + tcnt, acnt - tcnt, "\n");
4887 tcnt += ccnt;
4888 }
4889 mutex_unlock(&hdw->i2c_adap.clist_lock);
4890 return tcnt;
4891}
4892
4893
Mike Isely681c7392007-11-26 01:48:52 -03004894unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
4895 char *buf,unsigned int acnt)
4896{
4897 unsigned int bcnt,ccnt,idx;
4898 bcnt = 0;
4899 LOCK_TAKE(hdw->big_lock);
4900 for (idx = 0; ; idx++) {
4901 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4902 if (!ccnt) break;
4903 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4904 if (!acnt) break;
4905 buf[0] = '\n'; ccnt = 1;
4906 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4907 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004908 ccnt = pvr2_hdw_report_clients(hdw, buf, acnt);
4909 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
Mike Isely681c7392007-11-26 01:48:52 -03004910 LOCK_GIVE(hdw->big_lock);
4911 return bcnt;
4912}
4913
4914
4915static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
4916{
Mike Isely2eb563b2009-03-08 18:25:46 -03004917 char buf[256];
4918 unsigned int idx, ccnt;
4919 unsigned int lcnt, ucnt;
Mike Isely681c7392007-11-26 01:48:52 -03004920
4921 for (idx = 0; ; idx++) {
4922 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
4923 if (!ccnt) break;
4924 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
4925 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004926 ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
4927 ucnt = 0;
4928 while (ucnt < ccnt) {
4929 lcnt = 0;
4930 while ((lcnt + ucnt < ccnt) && (buf[lcnt + ucnt] != '\n')) {
4931 lcnt++;
4932 }
4933 printk(KERN_INFO "%s %.*s\n", hdw->name, lcnt, buf + ucnt);
4934 ucnt += lcnt + 1;
4935 }
Mike Isely681c7392007-11-26 01:48:52 -03004936}
4937
4938
4939/* Evaluate and update the driver's current state, taking various actions
4940 as appropriate for the update. */
4941static int pvr2_hdw_state_eval(struct pvr2_hdw *hdw)
4942{
4943 unsigned int st;
4944 int state_updated = 0;
4945 int callback_flag = 0;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004946 int analog_mode;
Mike Isely681c7392007-11-26 01:48:52 -03004947
4948 pvr2_trace(PVR2_TRACE_STBITS,
4949 "Drive state check START");
4950 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4951 pvr2_hdw_state_log_state(hdw);
4952 }
4953
4954 /* Process all state and get back over disposition */
4955 state_updated = pvr2_hdw_state_update(hdw);
4956
Mike Isely1b9c18c2008-04-22 14:45:41 -03004957 analog_mode = (hdw->pathway_state != PVR2_PATHWAY_DIGITAL);
4958
Mike Isely681c7392007-11-26 01:48:52 -03004959 /* Update master state based upon all other states. */
4960 if (!hdw->flag_ok) {
4961 st = PVR2_STATE_DEAD;
4962 } else if (hdw->fw1_state != FW1_STATE_OK) {
4963 st = PVR2_STATE_COLD;
Mike Isely72998b72008-04-03 04:51:19 -03004964 } else if ((analog_mode ||
4965 hdw->hdw_desc->flag_digital_requires_cx23416) &&
4966 !hdw->state_encoder_ok) {
Mike Isely681c7392007-11-26 01:48:52 -03004967 st = PVR2_STATE_WARM;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004968 } else if (hdw->flag_tripped ||
4969 (analog_mode && hdw->flag_decoder_missed)) {
Mike Isely681c7392007-11-26 01:48:52 -03004970 st = PVR2_STATE_ERROR;
Mike Isely62433e32008-04-22 14:45:40 -03004971 } else if (hdw->state_usbstream_run &&
Mike Isely1b9c18c2008-04-22 14:45:41 -03004972 (!analog_mode ||
Mike Isely62433e32008-04-22 14:45:40 -03004973 (hdw->state_encoder_run && hdw->state_decoder_run))) {
Mike Isely681c7392007-11-26 01:48:52 -03004974 st = PVR2_STATE_RUN;
4975 } else {
4976 st = PVR2_STATE_READY;
4977 }
4978 if (hdw->master_state != st) {
4979 pvr2_trace(PVR2_TRACE_STATE,
4980 "Device state change from %s to %s",
4981 pvr2_get_state_name(hdw->master_state),
4982 pvr2_get_state_name(st));
Mike Isely40381cb2008-04-22 14:45:42 -03004983 pvr2_led_ctrl(hdw,st == PVR2_STATE_RUN);
Mike Isely681c7392007-11-26 01:48:52 -03004984 hdw->master_state = st;
4985 state_updated = !0;
4986 callback_flag = !0;
4987 }
4988 if (state_updated) {
4989 /* Trigger anyone waiting on any state changes here. */
4990 wake_up(&hdw->state_wait_data);
4991 }
4992
4993 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4994 pvr2_hdw_state_log_state(hdw);
4995 }
4996 pvr2_trace(PVR2_TRACE_STBITS,
4997 "Drive state check DONE callback=%d",callback_flag);
4998
4999 return callback_flag;
5000}
5001
5002
5003/* Cause kernel thread to check / update driver state */
5004static void pvr2_hdw_state_sched(struct pvr2_hdw *hdw)
5005{
5006 if (hdw->state_stale) return;
5007 hdw->state_stale = !0;
5008 trace_stbit("state_stale",hdw->state_stale);
5009 queue_work(hdw->workqueue,&hdw->workpoll);
5010}
5011
5012
Mike Iselyd8554972006-06-26 20:58:46 -03005013int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *dp)
5014{
5015 return pvr2_read_register(hdw,PVR2_GPIO_DIR,dp);
5016}
5017
5018
5019int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *dp)
5020{
5021 return pvr2_read_register(hdw,PVR2_GPIO_OUT,dp);
5022}
5023
5024
5025int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *dp)
5026{
5027 return pvr2_read_register(hdw,PVR2_GPIO_IN,dp);
5028}
5029
5030
5031int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val)
5032{
5033 u32 cval,nval;
5034 int ret;
5035 if (~msk) {
5036 ret = pvr2_read_register(hdw,PVR2_GPIO_DIR,&cval);
5037 if (ret) return ret;
5038 nval = (cval & ~msk) | (val & msk);
5039 pvr2_trace(PVR2_TRACE_GPIO,
5040 "GPIO direction changing 0x%x:0x%x"
5041 " from 0x%x to 0x%x",
5042 msk,val,cval,nval);
5043 } else {
5044 nval = val;
5045 pvr2_trace(PVR2_TRACE_GPIO,
5046 "GPIO direction changing to 0x%x",nval);
5047 }
5048 return pvr2_write_register(hdw,PVR2_GPIO_DIR,nval);
5049}
5050
5051
5052int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val)
5053{
5054 u32 cval,nval;
5055 int ret;
5056 if (~msk) {
5057 ret = pvr2_read_register(hdw,PVR2_GPIO_OUT,&cval);
5058 if (ret) return ret;
5059 nval = (cval & ~msk) | (val & msk);
5060 pvr2_trace(PVR2_TRACE_GPIO,
5061 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
5062 msk,val,cval,nval);
5063 } else {
5064 nval = val;
5065 pvr2_trace(PVR2_TRACE_GPIO,
5066 "GPIO output changing to 0x%x",nval);
5067 }
5068 return pvr2_write_register(hdw,PVR2_GPIO_OUT,nval);
5069}
5070
5071
Mike Iselya51f5002009-03-06 23:30:37 -03005072void pvr2_hdw_status_poll(struct pvr2_hdw *hdw)
5073{
Mike Isely40f07112009-03-07 00:08:17 -03005074 struct v4l2_tuner *vtp = &hdw->tuner_signal_info;
5075 memset(vtp, 0, sizeof(*vtp));
Mike Isely2641df32009-03-07 00:13:25 -03005076 hdw->tuner_signal_stale = 0;
Mike Isely40f07112009-03-07 00:08:17 -03005077 /* Note: There apparently is no replacement for VIDIOC_CROPCAP
5078 using v4l2-subdev - therefore we can't support that AT ALL right
5079 now. (Of course, no sub-drivers seem to implement it either.
5080 But now it's a a chicken and egg problem...) */
5081 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, g_tuner,
5082 &hdw->tuner_signal_info);
Mike Isely2641df32009-03-07 00:13:25 -03005083 pvr2_trace(PVR2_TRACE_CHIPS, "subdev status poll"
Mike Isely40f07112009-03-07 00:08:17 -03005084 " type=%u strength=%u audio=0x%x cap=0x%x"
5085 " low=%u hi=%u",
5086 vtp->type,
5087 vtp->signal, vtp->rxsubchans, vtp->capability,
5088 vtp->rangelow, vtp->rangehigh);
Mike Isely2641df32009-03-07 00:13:25 -03005089
5090 /* We have to do this to avoid getting into constant polling if
5091 there's nobody to answer a poll of cropcap info. */
5092 hdw->cropcap_stale = 0;
Mike Iselya51f5002009-03-06 23:30:37 -03005093}
5094
5095
Mike Isely7fb20fa2008-04-22 14:45:37 -03005096unsigned int pvr2_hdw_get_input_available(struct pvr2_hdw *hdw)
5097{
5098 return hdw->input_avail_mask;
5099}
5100
5101
Mike Isely1cb03b72008-04-21 03:47:43 -03005102unsigned int pvr2_hdw_get_input_allowed(struct pvr2_hdw *hdw)
5103{
5104 return hdw->input_allowed_mask;
5105}
5106
5107
5108static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v)
5109{
5110 if (hdw->input_val != v) {
5111 hdw->input_val = v;
5112 hdw->input_dirty = !0;
5113 }
5114
5115 /* Handle side effects - if we switch to a mode that needs the RF
5116 tuner, then select the right frequency choice as well and mark
5117 it dirty. */
5118 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
5119 hdw->freqSelector = 0;
5120 hdw->freqDirty = !0;
5121 } else if ((hdw->input_val == PVR2_CVAL_INPUT_TV) ||
5122 (hdw->input_val == PVR2_CVAL_INPUT_DTV)) {
5123 hdw->freqSelector = 1;
5124 hdw->freqDirty = !0;
5125 }
5126 return 0;
5127}
5128
5129
5130int pvr2_hdw_set_input_allowed(struct pvr2_hdw *hdw,
5131 unsigned int change_mask,
5132 unsigned int change_val)
5133{
5134 int ret = 0;
5135 unsigned int nv,m,idx;
5136 LOCK_TAKE(hdw->big_lock);
5137 do {
5138 nv = hdw->input_allowed_mask & ~change_mask;
5139 nv |= (change_val & change_mask);
5140 nv &= hdw->input_avail_mask;
5141 if (!nv) {
5142 /* No legal modes left; return error instead. */
5143 ret = -EPERM;
5144 break;
5145 }
5146 hdw->input_allowed_mask = nv;
5147 if ((1 << hdw->input_val) & hdw->input_allowed_mask) {
5148 /* Current mode is still in the allowed mask, so
5149 we're done. */
5150 break;
5151 }
5152 /* Select and switch to a mode that is still in the allowed
5153 mask */
5154 if (!hdw->input_allowed_mask) {
5155 /* Nothing legal; give up */
5156 break;
5157 }
5158 m = hdw->input_allowed_mask;
5159 for (idx = 0; idx < (sizeof(m) << 3); idx++) {
5160 if (!((1 << idx) & m)) continue;
5161 pvr2_hdw_set_input(hdw,idx);
5162 break;
5163 }
5164 } while (0);
5165 LOCK_GIVE(hdw->big_lock);
5166 return ret;
5167}
5168
5169
Mike Iselye61b6fc2006-07-18 22:42:18 -03005170/* Find I2C address of eeprom */
Adrian Bunk07e337e2006-06-30 11:30:20 -03005171static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03005172{
5173 int result;
5174 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03005175 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03005176 result = pvr2_send_request(hdw,
5177 hdw->cmd_buffer,1,
5178 hdw->cmd_buffer,1);
5179 if (result < 0) break;
5180 result = hdw->cmd_buffer[0];
5181 } while(0); LOCK_GIVE(hdw->ctl_lock);
5182 return result;
5183}
5184
5185
Mike Isely32ffa9a2006-09-23 22:26:52 -03005186int pvr2_hdw_register_access(struct pvr2_hdw *hdw,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005187 struct v4l2_dbg_match *match, u64 reg_id,
5188 int setFl, u64 *val_ptr)
Mike Isely32ffa9a2006-09-23 22:26:52 -03005189{
5190#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005191 struct v4l2_dbg_register req;
Mike Isely6d988162006-09-28 17:53:49 -03005192 int stat = 0;
5193 int okFl = 0;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005194
Mike Isely201f5c92007-01-28 16:08:36 -03005195 if (!capable(CAP_SYS_ADMIN)) return -EPERM;
5196
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005197 req.match = *match;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005198 req.reg = reg_id;
5199 if (setFl) req.val = *val_ptr;
Mike Iselyd8f5b9b2009-03-07 00:05:00 -03005200 /* It would be nice to know if a sub-device answered the request */
5201 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, g_register, &req);
5202 if (!setFl) *val_ptr = req.val;
Mike Isely6d988162006-09-28 17:53:49 -03005203 if (okFl) {
5204 return stat;
5205 }
Mike Isely32ffa9a2006-09-23 22:26:52 -03005206 return -EINVAL;
5207#else
5208 return -ENOSYS;
5209#endif
5210}
5211
5212
Mike Iselyd8554972006-06-26 20:58:46 -03005213/*
5214 Stuff for Emacs to see, in order to encourage consistent editing style:
5215 *** Local Variables: ***
5216 *** mode: c ***
5217 *** fill-column: 75 ***
5218 *** tab-width: 8 ***
5219 *** c-basic-offset: 8 ***
5220 *** End: ***
5221 */