blob: 299751a8b06bc323bb347217235bf6486b2e6488 [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>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040024#include <linux/module.h>
Mike Iselyd8554972006-06-26 20:58:46 -030025#include <linux/firmware.h>
Mike Iselyd8554972006-06-26 20:58:46 -030026#include <linux/videodev2.h>
Mike Isely32ffa9a2006-09-23 22:26:52 -030027#include <media/v4l2-common.h>
Mike Isely75212a02009-03-07 01:48:42 -030028#include <media/tuner.h>
Mike Iselyd8554972006-06-26 20:58:46 -030029#include "pvrusb2.h"
30#include "pvrusb2-std.h"
31#include "pvrusb2-util.h"
32#include "pvrusb2-hdw.h"
33#include "pvrusb2-i2c-core.h"
Mike Iselyd8554972006-06-26 20:58:46 -030034#include "pvrusb2-eeprom.h"
35#include "pvrusb2-hdw-internal.h"
36#include "pvrusb2-encoder.h"
37#include "pvrusb2-debug.h"
Michael Krufky8d364362007-01-22 02:17:55 -030038#include "pvrusb2-fx2-cmd.h"
Mike Isely5f6dae82009-03-07 00:39:34 -030039#include "pvrusb2-wm8775.h"
Mike Isely6f956512009-03-07 00:43:26 -030040#include "pvrusb2-video-v4l.h"
Mike Isely634ba262009-03-07 00:54:02 -030041#include "pvrusb2-cx2584x-v4l.h"
Mike Isely2a6b6272009-03-15 17:53:29 -030042#include "pvrusb2-cs53l32a.h"
Mike Isely76891d62009-03-07 00:52:06 -030043#include "pvrusb2-audio.h"
Mike Iselyd8554972006-06-26 20:58:46 -030044
Mike Isely1bde0282006-12-27 23:30:13 -030045#define TV_MIN_FREQ 55250000L
46#define TV_MAX_FREQ 850000000L
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -030047
Mike Isely83ce57a2008-05-26 05:51:57 -030048/* This defines a minimum interval that the decoder must remain quiet
49 before we are allowed to start it running. */
50#define TIME_MSEC_DECODER_WAIT 50
51
Mike Isely6e931372010-02-06 02:10:38 -030052/* This defines a minimum interval that the decoder must be allowed to run
53 before we can safely begin using its streaming output. */
54#define TIME_MSEC_DECODER_STABILIZATION_WAIT 300
55
Mike Isely83ce57a2008-05-26 05:51:57 -030056/* This defines a minimum interval that the encoder must remain quiet
Mike Isely91b5b482010-02-06 02:12:33 -030057 before we are allowed to configure it. */
58#define TIME_MSEC_ENCODER_WAIT 50
Mike Isely83ce57a2008-05-26 05:51:57 -030059
60/* This defines the minimum interval that the encoder must successfully run
61 before we consider that the encoder has run at least once since its
62 firmware has been loaded. This measurement is in important for cases
63 where we can't do something until we know that the encoder has been run
64 at least once. */
65#define TIME_MSEC_ENCODER_OK 250
66
Mike Iselya0fd1cb2006-06-30 11:35:28 -030067static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -030068static DEFINE_MUTEX(pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -030069
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030070static int ctlchg;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030071static int procreload;
Mike Iselyd8554972006-06-26 20:58:46 -030072static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
73static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
74static int video_std[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030075static int init_pause_msec;
Mike Iselyd8554972006-06-26 20:58:46 -030076
77module_param(ctlchg, int, S_IRUGO|S_IWUSR);
78MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
79module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
80MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
Mike Iselyd8554972006-06-26 20:58:46 -030081module_param(procreload, int, S_IRUGO|S_IWUSR);
82MODULE_PARM_DESC(procreload,
83 "Attempt init failure recovery with firmware reload");
84module_param_array(tuner, int, NULL, 0444);
85MODULE_PARM_DESC(tuner,"specify installed tuner type");
86module_param_array(video_std, int, NULL, 0444);
87MODULE_PARM_DESC(video_std,"specify initial video standard");
88module_param_array(tolerance, int, NULL, 0444);
89MODULE_PARM_DESC(tolerance,"specify stream error tolerance");
90
Mike Isely6f441ed2009-06-20 14:51:29 -030091/* US Broadcast channel 3 (61.25 MHz), to help with testing */
92static int default_tv_freq = 61250000L;
Michael Krufky5a4f5da62008-05-11 16:37:50 -030093/* 104.3 MHz, a usable FM station for my area */
94static int default_radio_freq = 104300000L;
95
96module_param_named(tv_freq, default_tv_freq, int, 0444);
97MODULE_PARM_DESC(tv_freq, "specify initial television frequency");
98module_param_named(radio_freq, default_radio_freq, int, 0444);
99MODULE_PARM_DESC(radio_freq, "specify initial radio frequency");
100
Mike Iselyd8554972006-06-26 20:58:46 -0300101#define PVR2_CTL_WRITE_ENDPOINT 0x01
102#define PVR2_CTL_READ_ENDPOINT 0x81
103
104#define PVR2_GPIO_IN 0x9008
105#define PVR2_GPIO_OUT 0x900c
106#define PVR2_GPIO_DIR 0x9020
107
108#define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
109
110#define PVR2_FIRMWARE_ENDPOINT 0x02
111
112/* size of a firmware chunk */
113#define FIRMWARE_CHUNK_SIZE 0x2000
114
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300115typedef void (*pvr2_subdev_update_func)(struct pvr2_hdw *,
116 struct v4l2_subdev *);
117
118static const pvr2_subdev_update_func pvr2_module_update_functions[] = {
Mike Isely4ecbc282009-03-07 00:49:19 -0300119 [PVR2_CLIENT_ID_WM8775] = pvr2_wm8775_subdev_update,
Mike Isely6f956512009-03-07 00:43:26 -0300120 [PVR2_CLIENT_ID_SAA7115] = pvr2_saa7115_subdev_update,
Mike Isely76891d62009-03-07 00:52:06 -0300121 [PVR2_CLIENT_ID_MSP3400] = pvr2_msp3400_subdev_update,
Mike Isely634ba262009-03-07 00:54:02 -0300122 [PVR2_CLIENT_ID_CX25840] = pvr2_cx25840_subdev_update,
Mike Isely2a6b6272009-03-15 17:53:29 -0300123 [PVR2_CLIENT_ID_CS53L32A] = pvr2_cs53l32a_subdev_update,
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300124};
125
Mike Iselye9c64a72009-03-06 23:42:20 -0300126static const char *module_names[] = {
127 [PVR2_CLIENT_ID_MSP3400] = "msp3400",
128 [PVR2_CLIENT_ID_CX25840] = "cx25840",
129 [PVR2_CLIENT_ID_SAA7115] = "saa7115",
130 [PVR2_CLIENT_ID_TUNER] = "tuner",
Mike Iselybb652422009-03-14 14:09:04 -0300131 [PVR2_CLIENT_ID_DEMOD] = "tuner",
Mike Isely851981a2009-03-07 02:02:32 -0300132 [PVR2_CLIENT_ID_CS53L32A] = "cs53l32a",
Mike Isely5f6dae82009-03-07 00:39:34 -0300133 [PVR2_CLIENT_ID_WM8775] = "wm8775",
Mike Iselye9c64a72009-03-06 23:42:20 -0300134};
135
136
137static const unsigned char *module_i2c_addresses[] = {
138 [PVR2_CLIENT_ID_TUNER] = "\x60\x61\x62\x63",
Mike Iselybb652422009-03-14 14:09:04 -0300139 [PVR2_CLIENT_ID_DEMOD] = "\x43",
Mike Isely1dfe6c72009-03-07 02:00:21 -0300140 [PVR2_CLIENT_ID_MSP3400] = "\x40",
141 [PVR2_CLIENT_ID_SAA7115] = "\x21",
Mike Iselyae111f72009-03-07 00:57:42 -0300142 [PVR2_CLIENT_ID_WM8775] = "\x1b",
Mike Isely0b467012009-03-07 01:49:37 -0300143 [PVR2_CLIENT_ID_CX25840] = "\x44",
Mike Isely23334a22009-03-07 02:03:28 -0300144 [PVR2_CLIENT_ID_CS53L32A] = "\x11",
Mike Iselye9c64a72009-03-06 23:42:20 -0300145};
146
147
Mike Isely27eab382009-04-06 01:51:38 -0300148static const char *ir_scheme_names[] = {
149 [PVR2_IR_SCHEME_NONE] = "none",
150 [PVR2_IR_SCHEME_29XXX] = "29xxx",
151 [PVR2_IR_SCHEME_24XXX] = "24xxx (29xxx emulation)",
152 [PVR2_IR_SCHEME_24XXX_MCE] = "24xxx (MCE device)",
153 [PVR2_IR_SCHEME_ZILOG] = "Zilog",
154};
155
156
Mike Iselyb30d2442006-06-25 20:05:01 -0300157/* Define the list of additional controls we'll dynamically construct based
158 on query of the cx2341x module. */
159struct pvr2_mpeg_ids {
160 const char *strid;
161 int id;
162};
163static const struct pvr2_mpeg_ids mpeg_ids[] = {
164 {
165 .strid = "audio_layer",
166 .id = V4L2_CID_MPEG_AUDIO_ENCODING,
167 },{
168 .strid = "audio_bitrate",
169 .id = V4L2_CID_MPEG_AUDIO_L2_BITRATE,
170 },{
171 /* Already using audio_mode elsewhere :-( */
172 .strid = "mpeg_audio_mode",
173 .id = V4L2_CID_MPEG_AUDIO_MODE,
174 },{
175 .strid = "mpeg_audio_mode_extension",
176 .id = V4L2_CID_MPEG_AUDIO_MODE_EXTENSION,
177 },{
178 .strid = "audio_emphasis",
179 .id = V4L2_CID_MPEG_AUDIO_EMPHASIS,
180 },{
181 .strid = "audio_crc",
182 .id = V4L2_CID_MPEG_AUDIO_CRC,
183 },{
184 .strid = "video_aspect",
185 .id = V4L2_CID_MPEG_VIDEO_ASPECT,
186 },{
187 .strid = "video_b_frames",
188 .id = V4L2_CID_MPEG_VIDEO_B_FRAMES,
189 },{
190 .strid = "video_gop_size",
191 .id = V4L2_CID_MPEG_VIDEO_GOP_SIZE,
192 },{
193 .strid = "video_gop_closure",
194 .id = V4L2_CID_MPEG_VIDEO_GOP_CLOSURE,
195 },{
Mike Iselyb30d2442006-06-25 20:05:01 -0300196 .strid = "video_bitrate_mode",
197 .id = V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
198 },{
199 .strid = "video_bitrate",
200 .id = V4L2_CID_MPEG_VIDEO_BITRATE,
201 },{
202 .strid = "video_bitrate_peak",
203 .id = V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
204 },{
205 .strid = "video_temporal_decimation",
206 .id = V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION,
207 },{
208 .strid = "stream_type",
209 .id = V4L2_CID_MPEG_STREAM_TYPE,
210 },{
211 .strid = "video_spatial_filter_mode",
212 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE,
213 },{
214 .strid = "video_spatial_filter",
215 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
216 },{
217 .strid = "video_luma_spatial_filter_type",
218 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE,
219 },{
220 .strid = "video_chroma_spatial_filter_type",
221 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE,
222 },{
223 .strid = "video_temporal_filter_mode",
224 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE,
225 },{
226 .strid = "video_temporal_filter",
227 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER,
228 },{
229 .strid = "video_median_filter_type",
230 .id = V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE,
231 },{
232 .strid = "video_luma_median_filter_top",
233 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP,
234 },{
235 .strid = "video_luma_median_filter_bottom",
236 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM,
237 },{
238 .strid = "video_chroma_median_filter_top",
239 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP,
240 },{
241 .strid = "video_chroma_median_filter_bottom",
242 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM,
243 }
244};
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300245#define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
Mike Iselyc05c0462006-06-25 20:04:25 -0300246
Mike Iselyd8554972006-06-26 20:58:46 -0300247
Mike Isely434449f2006-08-08 09:10:06 -0300248static const char *control_values_srate[] = {
249 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100] = "44.1 kHz",
250 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000] = "48 kHz",
251 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000] = "32 kHz",
252};
Mike Iselyd8554972006-06-26 20:58:46 -0300253
Mike Iselyd8554972006-06-26 20:58:46 -0300254
255
256static const char *control_values_input[] = {
257 [PVR2_CVAL_INPUT_TV] = "television", /*xawtv needs this name*/
Mike Isely29bf5b12008-04-22 14:45:37 -0300258 [PVR2_CVAL_INPUT_DTV] = "dtv",
Mike Iselyd8554972006-06-26 20:58:46 -0300259 [PVR2_CVAL_INPUT_RADIO] = "radio",
260 [PVR2_CVAL_INPUT_SVIDEO] = "s-video",
261 [PVR2_CVAL_INPUT_COMPOSITE] = "composite",
262};
263
264
265static const char *control_values_audiomode[] = {
266 [V4L2_TUNER_MODE_MONO] = "Mono",
267 [V4L2_TUNER_MODE_STEREO] = "Stereo",
268 [V4L2_TUNER_MODE_LANG1] = "Lang1",
269 [V4L2_TUNER_MODE_LANG2] = "Lang2",
270 [V4L2_TUNER_MODE_LANG1_LANG2] = "Lang1+Lang2",
271};
272
273
274static const char *control_values_hsm[] = {
275 [PVR2_CVAL_HSM_FAIL] = "Fail",
276 [PVR2_CVAL_HSM_HIGH] = "High",
277 [PVR2_CVAL_HSM_FULL] = "Full",
278};
279
280
Mike Isely681c7392007-11-26 01:48:52 -0300281static const char *pvr2_state_names[] = {
282 [PVR2_STATE_NONE] = "none",
283 [PVR2_STATE_DEAD] = "dead",
284 [PVR2_STATE_COLD] = "cold",
285 [PVR2_STATE_WARM] = "warm",
286 [PVR2_STATE_ERROR] = "error",
287 [PVR2_STATE_READY] = "ready",
288 [PVR2_STATE_RUN] = "run",
Mike Iselyd8554972006-06-26 20:58:46 -0300289};
290
Mike Isely681c7392007-11-26 01:48:52 -0300291
Mike Isely694dca2b2008-03-28 05:42:10 -0300292struct pvr2_fx2cmd_descdef {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300293 unsigned char id;
294 unsigned char *desc;
295};
296
Mike Isely694dca2b2008-03-28 05:42:10 -0300297static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300298 {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"},
299 {FX2CMD_MEM_READ_DWORD, "read encoder dword"},
Mike Isely31335b12008-07-25 19:35:31 -0300300 {FX2CMD_HCW_ZILOG_RESET, "zilog IR reset control"},
Mike Isely1c9d10d2008-03-28 05:38:54 -0300301 {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"},
302 {FX2CMD_REG_WRITE, "write encoder register"},
303 {FX2CMD_REG_READ, "read encoder register"},
304 {FX2CMD_MEMSEL, "encoder memsel"},
305 {FX2CMD_I2C_WRITE, "i2c write"},
306 {FX2CMD_I2C_READ, "i2c read"},
307 {FX2CMD_GET_USB_SPEED, "get USB speed"},
308 {FX2CMD_STREAMING_ON, "stream on"},
309 {FX2CMD_STREAMING_OFF, "stream off"},
310 {FX2CMD_FWPOST1, "fwpost1"},
311 {FX2CMD_POWER_OFF, "power off"},
312 {FX2CMD_POWER_ON, "power on"},
313 {FX2CMD_DEEP_RESET, "deep reset"},
314 {FX2CMD_GET_EEPROM_ADDR, "get rom addr"},
315 {FX2CMD_GET_IR_CODE, "get IR code"},
316 {FX2CMD_HCW_DEMOD_RESETIN, "hcw demod resetin"},
317 {FX2CMD_HCW_DTV_STREAMING_ON, "hcw dtv stream on"},
318 {FX2CMD_HCW_DTV_STREAMING_OFF, "hcw dtv stream off"},
319 {FX2CMD_ONAIR_DTV_STREAMING_ON, "onair dtv stream on"},
320 {FX2CMD_ONAIR_DTV_STREAMING_OFF, "onair dtv stream off"},
321 {FX2CMD_ONAIR_DTV_POWER_ON, "onair dtv power on"},
322 {FX2CMD_ONAIR_DTV_POWER_OFF, "onair dtv power off"},
323};
324
325
Mike Isely1cb03b72008-04-21 03:47:43 -0300326static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v);
Mike Isely681c7392007-11-26 01:48:52 -0300327static void pvr2_hdw_state_sched(struct pvr2_hdw *);
328static int pvr2_hdw_state_eval(struct pvr2_hdw *);
Mike Isely1bde0282006-12-27 23:30:13 -0300329static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *,unsigned long);
Mike Isely681c7392007-11-26 01:48:52 -0300330static void pvr2_hdw_worker_poll(struct work_struct *work);
Mike Isely681c7392007-11-26 01:48:52 -0300331static int pvr2_hdw_wait(struct pvr2_hdw *,int state);
332static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *);
333static void pvr2_hdw_state_log_state(struct pvr2_hdw *);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300334static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
Mike Isely681c7392007-11-26 01:48:52 -0300335static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300336static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
Mike Isely681c7392007-11-26 01:48:52 -0300337static void pvr2_hdw_quiescent_timeout(unsigned long);
Mike Isely6e931372010-02-06 02:10:38 -0300338static void pvr2_hdw_decoder_stabilization_timeout(unsigned long);
Mike Isely681c7392007-11-26 01:48:52 -0300339static void pvr2_hdw_encoder_wait_timeout(unsigned long);
Mike Iselyd913d632008-04-06 04:04:35 -0300340static void pvr2_hdw_encoder_run_timeout(unsigned long);
Mike Isely1c9d10d2008-03-28 05:38:54 -0300341static int pvr2_issue_simple_cmd(struct pvr2_hdw *,u32);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300342static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
343 unsigned int timeout,int probe_fl,
344 void *write_data,unsigned int write_len,
345 void *read_data,unsigned int read_len);
Mike Isely432907f2008-08-31 21:02:20 -0300346static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw);
Mike Iselyac04d002012-02-20 02:28:56 -0300347static v4l2_std_id pvr2_hdw_get_detected_std(struct pvr2_hdw *hdw);
Mike Isely681c7392007-11-26 01:48:52 -0300348
349static void trace_stbit(const char *name,int val)
350{
351 pvr2_trace(PVR2_TRACE_STBITS,
352 "State bit %s <-- %s",
353 name,(val ? "true" : "false"));
354}
355
Mike Iselyd8554972006-06-26 20:58:46 -0300356static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
357{
358 struct pvr2_hdw *hdw = cptr->hdw;
359 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) {
360 *vp = hdw->freqTable[hdw->freqProgSlot-1];
361 } else {
362 *vp = 0;
363 }
364 return 0;
365}
366
367static int ctrl_channelfreq_set(struct pvr2_ctrl *cptr,int m,int v)
368{
369 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300370 unsigned int slotId = hdw->freqProgSlot;
371 if ((slotId > 0) && (slotId <= FREQTABLE_SIZE)) {
372 hdw->freqTable[slotId-1] = v;
373 /* Handle side effects correctly - if we're tuned to this
374 slot, then forgot the slot id relation since the stored
375 frequency has been changed. */
376 if (hdw->freqSelector) {
377 if (hdw->freqSlotRadio == slotId) {
378 hdw->freqSlotRadio = 0;
379 }
380 } else {
381 if (hdw->freqSlotTelevision == slotId) {
382 hdw->freqSlotTelevision = 0;
383 }
384 }
Mike Iselyd8554972006-06-26 20:58:46 -0300385 }
386 return 0;
387}
388
389static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
390{
391 *vp = cptr->hdw->freqProgSlot;
392 return 0;
393}
394
395static int ctrl_channelprog_set(struct pvr2_ctrl *cptr,int m,int v)
396{
397 struct pvr2_hdw *hdw = cptr->hdw;
398 if ((v >= 0) && (v <= FREQTABLE_SIZE)) {
399 hdw->freqProgSlot = v;
400 }
401 return 0;
402}
403
404static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
405{
Mike Isely1bde0282006-12-27 23:30:13 -0300406 struct pvr2_hdw *hdw = cptr->hdw;
407 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
Mike Iselyd8554972006-06-26 20:58:46 -0300408 return 0;
409}
410
Mike Isely1bde0282006-12-27 23:30:13 -0300411static int ctrl_channel_set(struct pvr2_ctrl *cptr,int m,int slotId)
Mike Iselyd8554972006-06-26 20:58:46 -0300412{
413 unsigned freq = 0;
414 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300415 if ((slotId < 0) || (slotId > FREQTABLE_SIZE)) return 0;
416 if (slotId > 0) {
417 freq = hdw->freqTable[slotId-1];
418 if (!freq) return 0;
419 pvr2_hdw_set_cur_freq(hdw,freq);
Mike Iselyd8554972006-06-26 20:58:46 -0300420 }
Mike Isely1bde0282006-12-27 23:30:13 -0300421 if (hdw->freqSelector) {
422 hdw->freqSlotRadio = slotId;
423 } else {
424 hdw->freqSlotTelevision = slotId;
Mike Iselyd8554972006-06-26 20:58:46 -0300425 }
426 return 0;
427}
428
429static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
430{
Mike Isely1bde0282006-12-27 23:30:13 -0300431 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300432 return 0;
433}
434
435static int ctrl_freq_is_dirty(struct pvr2_ctrl *cptr)
436{
437 return cptr->hdw->freqDirty != 0;
438}
439
440static void ctrl_freq_clear_dirty(struct pvr2_ctrl *cptr)
441{
442 cptr->hdw->freqDirty = 0;
443}
444
445static int ctrl_freq_set(struct pvr2_ctrl *cptr,int m,int v)
446{
Mike Isely1bde0282006-12-27 23:30:13 -0300447 pvr2_hdw_set_cur_freq(cptr->hdw,v);
Mike Iselyd8554972006-06-26 20:58:46 -0300448 return 0;
449}
450
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300451static int ctrl_cropl_min_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;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300457 }
Mike Isely432907f2008-08-31 21:02:20 -0300458 *left = cap->bounds.left;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300459 return 0;
460}
461
462static int ctrl_cropl_max_get(struct pvr2_ctrl *cptr, int *left)
463{
Mike Isely432907f2008-08-31 21:02:20 -0300464 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
465 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
466 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300467 return stat;
468 }
469 *left = cap->bounds.left;
470 if (cap->bounds.width > cptr->hdw->cropw_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300471 *left += cap->bounds.width - cptr->hdw->cropw_val;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300472 }
473 return 0;
474}
475
476static int ctrl_cropt_min_get(struct pvr2_ctrl *cptr, int *top)
477{
Mike Isely432907f2008-08-31 21:02:20 -0300478 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;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300482 }
Mike Isely432907f2008-08-31 21:02:20 -0300483 *top = cap->bounds.top;
484 return 0;
485}
486
487static int ctrl_cropt_max_get(struct pvr2_ctrl *cptr, int *top)
488{
489 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
490 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
491 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300492 return stat;
493 }
494 *top = cap->bounds.top;
495 if (cap->bounds.height > cptr->hdw->croph_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300496 *top += cap->bounds.height - cptr->hdw->croph_val;
497 }
498 return 0;
499}
500
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300501static int ctrl_cropw_max_get(struct pvr2_ctrl *cptr, int *width)
Mike Isely432907f2008-08-31 21:02:20 -0300502{
503 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300504 int stat, bleftend, cleft;
505
506 stat = pvr2_hdw_check_cropcap(cptr->hdw);
Mike Isely432907f2008-08-31 21:02:20 -0300507 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300508 return stat;
509 }
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300510 bleftend = cap->bounds.left+cap->bounds.width;
511 cleft = cptr->hdw->cropl_val;
512
513 *width = cleft < bleftend ? bleftend-cleft : 0;
Mike Isely432907f2008-08-31 21:02:20 -0300514 return 0;
515}
516
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300517static int ctrl_croph_max_get(struct pvr2_ctrl *cptr, int *height)
Mike Isely432907f2008-08-31 21:02:20 -0300518{
519 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300520 int stat, btopend, ctop;
521
522 stat = pvr2_hdw_check_cropcap(cptr->hdw);
Mike Isely432907f2008-08-31 21:02:20 -0300523 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300524 return stat;
525 }
Servaas Vandenberghe6188a0f2011-02-13 17:51:09 -0300526 btopend = cap->bounds.top+cap->bounds.height;
527 ctop = cptr->hdw->cropt_val;
528
529 *height = ctop < btopend ? btopend-ctop : 0;
Mike Isely432907f2008-08-31 21:02:20 -0300530 return 0;
531}
532
533static int ctrl_get_cropcapbl(struct pvr2_ctrl *cptr, int *val)
534{
535 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
536 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
537 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300538 return stat;
539 }
540 *val = cap->bounds.left;
541 return 0;
542}
543
544static int ctrl_get_cropcapbt(struct pvr2_ctrl *cptr, int *val)
545{
546 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
547 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
548 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300549 return stat;
550 }
551 *val = cap->bounds.top;
552 return 0;
553}
554
555static int ctrl_get_cropcapbw(struct pvr2_ctrl *cptr, int *val)
556{
557 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
558 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
559 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300560 return stat;
561 }
562 *val = cap->bounds.width;
563 return 0;
564}
565
566static int ctrl_get_cropcapbh(struct pvr2_ctrl *cptr, int *val)
567{
568 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
569 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
570 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300571 return stat;
572 }
573 *val = cap->bounds.height;
574 return 0;
575}
576
577static int ctrl_get_cropcapdl(struct pvr2_ctrl *cptr, int *val)
578{
579 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
580 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
581 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300582 return stat;
583 }
584 *val = cap->defrect.left;
585 return 0;
586}
587
588static int ctrl_get_cropcapdt(struct pvr2_ctrl *cptr, int *val)
589{
590 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
591 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
592 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300593 return stat;
594 }
595 *val = cap->defrect.top;
596 return 0;
597}
598
599static int ctrl_get_cropcapdw(struct pvr2_ctrl *cptr, int *val)
600{
601 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
602 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
603 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300604 return stat;
605 }
606 *val = cap->defrect.width;
607 return 0;
608}
609
610static int ctrl_get_cropcapdh(struct pvr2_ctrl *cptr, int *val)
611{
612 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
613 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
614 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300615 return stat;
616 }
617 *val = cap->defrect.height;
618 return 0;
619}
620
621static int ctrl_get_cropcappan(struct pvr2_ctrl *cptr, int *val)
622{
623 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
624 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
625 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300626 return stat;
627 }
628 *val = cap->pixelaspect.numerator;
629 return 0;
630}
631
632static int ctrl_get_cropcappad(struct pvr2_ctrl *cptr, int *val)
633{
634 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
635 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
636 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300637 return stat;
638 }
639 *val = cap->pixelaspect.denominator;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300640 return 0;
641}
642
Mike Isely3ad9fc32006-09-02 22:37:52 -0300643static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
644{
645 /* Actual maximum depends on the video standard in effect. */
646 if (cptr->hdw->std_mask_cur & V4L2_STD_525_60) {
647 *vp = 480;
648 } else {
649 *vp = 576;
650 }
651 return 0;
652}
653
654static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
655{
Mike Isely989eb152007-11-26 01:53:12 -0300656 /* Actual minimum depends on device digitizer type. */
657 if (cptr->hdw->hdw_desc->flag_has_cx25840) {
Mike Isely3ad9fc32006-09-02 22:37:52 -0300658 *vp = 75;
659 } else {
660 *vp = 17;
661 }
662 return 0;
663}
664
Mike Isely1bde0282006-12-27 23:30:13 -0300665static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
666{
667 *vp = cptr->hdw->input_val;
668 return 0;
669}
670
Mike Isely29bf5b12008-04-22 14:45:37 -0300671static int ctrl_check_input(struct pvr2_ctrl *cptr,int v)
672{
Mike Isely1cb03b72008-04-21 03:47:43 -0300673 return ((1 << v) & cptr->hdw->input_allowed_mask) != 0;
Mike Isely29bf5b12008-04-22 14:45:37 -0300674}
675
Mike Isely1bde0282006-12-27 23:30:13 -0300676static int ctrl_set_input(struct pvr2_ctrl *cptr,int m,int v)
677{
Mike Isely1cb03b72008-04-21 03:47:43 -0300678 return pvr2_hdw_set_input(cptr->hdw,v);
Mike Isely1bde0282006-12-27 23:30:13 -0300679}
680
681static int ctrl_isdirty_input(struct pvr2_ctrl *cptr)
682{
683 return cptr->hdw->input_dirty != 0;
684}
685
686static void ctrl_cleardirty_input(struct pvr2_ctrl *cptr)
687{
688 cptr->hdw->input_dirty = 0;
689}
690
Mike Isely5549f542006-12-27 23:28:54 -0300691
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300692static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
693{
Mike Isely644afdb2007-01-20 00:19:23 -0300694 unsigned long fv;
695 struct pvr2_hdw *hdw = cptr->hdw;
696 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300697 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300698 }
Mike Isely644afdb2007-01-20 00:19:23 -0300699 fv = hdw->tuner_signal_info.rangehigh;
700 if (!fv) {
701 /* Safety fallback */
702 *vp = TV_MAX_FREQ;
703 return 0;
704 }
705 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
706 fv = (fv * 125) / 2;
707 } else {
708 fv = fv * 62500;
709 }
710 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300711 return 0;
712}
713
714static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
715{
Mike Isely644afdb2007-01-20 00:19:23 -0300716 unsigned long fv;
717 struct pvr2_hdw *hdw = cptr->hdw;
718 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300719 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300720 }
Mike Isely644afdb2007-01-20 00:19:23 -0300721 fv = hdw->tuner_signal_info.rangelow;
722 if (!fv) {
723 /* Safety fallback */
724 *vp = TV_MIN_FREQ;
725 return 0;
726 }
727 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
728 fv = (fv * 125) / 2;
729 } else {
730 fv = fv * 62500;
731 }
732 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300733 return 0;
734}
735
Mike Iselyb30d2442006-06-25 20:05:01 -0300736static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl *cptr)
737{
738 return cptr->hdw->enc_stale != 0;
739}
740
741static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl *cptr)
742{
743 cptr->hdw->enc_stale = 0;
Mike Isely681c7392007-11-26 01:48:52 -0300744 cptr->hdw->enc_unsafe_stale = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300745}
746
747static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
748{
749 int ret;
750 struct v4l2_ext_controls cs;
751 struct v4l2_ext_control c1;
752 memset(&cs,0,sizeof(cs));
753 memset(&c1,0,sizeof(c1));
754 cs.controls = &c1;
755 cs.count = 1;
756 c1.id = cptr->info->v4l_id;
Hans Verkuil01f1e442007-08-21 18:32:42 -0300757 ret = cx2341x_ext_ctrls(&cptr->hdw->enc_ctl_state, 0, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300758 VIDIOC_G_EXT_CTRLS);
759 if (ret) return ret;
760 *vp = c1.value;
761 return 0;
762}
763
764static int ctrl_cx2341x_set(struct pvr2_ctrl *cptr,int m,int v)
765{
766 int ret;
Mike Isely681c7392007-11-26 01:48:52 -0300767 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselyb30d2442006-06-25 20:05:01 -0300768 struct v4l2_ext_controls cs;
769 struct v4l2_ext_control c1;
770 memset(&cs,0,sizeof(cs));
771 memset(&c1,0,sizeof(c1));
772 cs.controls = &c1;
773 cs.count = 1;
774 c1.id = cptr->info->v4l_id;
775 c1.value = v;
Mike Isely681c7392007-11-26 01:48:52 -0300776 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
777 hdw->state_encoder_run, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300778 VIDIOC_S_EXT_CTRLS);
Mike Isely681c7392007-11-26 01:48:52 -0300779 if (ret == -EBUSY) {
780 /* Oops. cx2341x is telling us it's not safe to change
781 this control while we're capturing. Make a note of this
782 fact so that the pipeline will be stopped the next time
783 controls are committed. Then go on ahead and store this
784 change anyway. */
785 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
786 0, &cs,
787 VIDIOC_S_EXT_CTRLS);
788 if (!ret) hdw->enc_unsafe_stale = !0;
789 }
Mike Iselyb30d2442006-06-25 20:05:01 -0300790 if (ret) return ret;
Mike Isely681c7392007-11-26 01:48:52 -0300791 hdw->enc_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300792 return 0;
793}
794
795static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl *cptr)
796{
797 struct v4l2_queryctrl qctrl;
798 struct pvr2_ctl_info *info;
799 qctrl.id = cptr->info->v4l_id;
800 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl);
801 /* Strip out the const so we can adjust a function pointer. It's
802 OK to do this here because we know this is a dynamically created
803 control, so the underlying storage for the info pointer is (a)
804 private to us, and (b) not in read-only storage. Either we do
805 this or we significantly complicate the underlying control
806 implementation. */
807 info = (struct pvr2_ctl_info *)(cptr->info);
808 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) {
809 if (info->set_value) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300810 info->set_value = NULL;
Mike Iselyb30d2442006-06-25 20:05:01 -0300811 }
812 } else {
813 if (!(info->set_value)) {
814 info->set_value = ctrl_cx2341x_set;
815 }
816 }
817 return qctrl.flags;
818}
819
Mike Iselyd8554972006-06-26 20:58:46 -0300820static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
821{
Mike Isely681c7392007-11-26 01:48:52 -0300822 *vp = cptr->hdw->state_pipeline_req;
823 return 0;
824}
825
826static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
827{
828 *vp = cptr->hdw->master_state;
Mike Iselyd8554972006-06-26 20:58:46 -0300829 return 0;
830}
831
832static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
833{
834 int result = pvr2_hdw_is_hsm(cptr->hdw);
835 *vp = PVR2_CVAL_HSM_FULL;
836 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
837 if (result) *vp = PVR2_CVAL_HSM_HIGH;
838 return 0;
839}
840
Mike Iselyac04d002012-02-20 02:28:56 -0300841static int ctrl_stddetect_get(struct pvr2_ctrl *cptr, int *vp)
842{
843 *vp = pvr2_hdw_get_detected_std(cptr->hdw);
844 return 0;
845}
846
Mike Iselyd8554972006-06-26 20:58:46 -0300847static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
848{
849 *vp = cptr->hdw->std_mask_avail;
850 return 0;
851}
852
853static int ctrl_stdavail_set(struct pvr2_ctrl *cptr,int m,int v)
854{
855 struct pvr2_hdw *hdw = cptr->hdw;
856 v4l2_std_id ns;
857 ns = hdw->std_mask_avail;
858 ns = (ns & ~m) | (v & m);
859 if (ns == hdw->std_mask_avail) return 0;
860 hdw->std_mask_avail = ns;
Mike Iselyc0bb6092012-02-20 02:39:22 -0300861 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -0300862 return 0;
863}
864
865static int ctrl_std_val_to_sym(struct pvr2_ctrl *cptr,int msk,int val,
866 char *bufPtr,unsigned int bufSize,
867 unsigned int *len)
868{
869 *len = pvr2_std_id_to_str(bufPtr,bufSize,msk & val);
870 return 0;
871}
872
873static int ctrl_std_sym_to_val(struct pvr2_ctrl *cptr,
874 const char *bufPtr,unsigned int bufSize,
875 int *mskp,int *valp)
876{
877 int ret;
878 v4l2_std_id id;
879 ret = pvr2_std_str_to_id(&id,bufPtr,bufSize);
880 if (ret < 0) return ret;
881 if (mskp) *mskp = id;
882 if (valp) *valp = id;
883 return 0;
884}
885
886static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
887{
888 *vp = cptr->hdw->std_mask_cur;
889 return 0;
890}
891
892static int ctrl_stdcur_set(struct pvr2_ctrl *cptr,int m,int v)
893{
894 struct pvr2_hdw *hdw = cptr->hdw;
895 v4l2_std_id ns;
896 ns = hdw->std_mask_cur;
897 ns = (ns & ~m) | (v & m);
898 if (ns == hdw->std_mask_cur) return 0;
899 hdw->std_mask_cur = ns;
900 hdw->std_dirty = !0;
Mike Iselyd8554972006-06-26 20:58:46 -0300901 return 0;
902}
903
904static int ctrl_stdcur_is_dirty(struct pvr2_ctrl *cptr)
905{
906 return cptr->hdw->std_dirty != 0;
907}
908
909static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl *cptr)
910{
911 cptr->hdw->std_dirty = 0;
912}
913
914static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
915{
Mike Isely18103c572007-01-20 00:09:47 -0300916 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300917 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300918 *vp = hdw->tuner_signal_info.signal;
919 return 0;
920}
921
922static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
923{
924 int val = 0;
925 unsigned int subchan;
926 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300927 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -0300928 subchan = hdw->tuner_signal_info.rxsubchans;
929 if (subchan & V4L2_TUNER_SUB_MONO) {
930 val |= (1 << V4L2_TUNER_MODE_MONO);
931 }
932 if (subchan & V4L2_TUNER_SUB_STEREO) {
933 val |= (1 << V4L2_TUNER_MODE_STEREO);
934 }
935 if (subchan & V4L2_TUNER_SUB_LANG1) {
936 val |= (1 << V4L2_TUNER_MODE_LANG1);
937 }
938 if (subchan & V4L2_TUNER_SUB_LANG2) {
939 val |= (1 << V4L2_TUNER_MODE_LANG2);
940 }
941 *vp = val;
Mike Iselyd8554972006-06-26 20:58:46 -0300942 return 0;
943}
944
Mike Iselyd8554972006-06-26 20:58:46 -0300945
Mike Iselyd8554972006-06-26 20:58:46 -0300946#define DEFINT(vmin,vmax) \
947 .type = pvr2_ctl_int, \
948 .def.type_int.min_value = vmin, \
949 .def.type_int.max_value = vmax
950
951#define DEFENUM(tab) \
952 .type = pvr2_ctl_enum, \
Mike Isely27c7b712007-01-20 00:39:17 -0300953 .def.type_enum.count = ARRAY_SIZE(tab), \
Mike Iselyd8554972006-06-26 20:58:46 -0300954 .def.type_enum.value_names = tab
955
Mike Isely33213962006-06-25 20:04:40 -0300956#define DEFBOOL \
957 .type = pvr2_ctl_bool
958
Mike Iselyd8554972006-06-26 20:58:46 -0300959#define DEFMASK(msk,tab) \
960 .type = pvr2_ctl_bitmask, \
961 .def.type_bitmask.valid_bits = msk, \
962 .def.type_bitmask.bit_names = tab
963
964#define DEFREF(vname) \
965 .set_value = ctrl_set_##vname, \
966 .get_value = ctrl_get_##vname, \
967 .is_dirty = ctrl_isdirty_##vname, \
968 .clear_dirty = ctrl_cleardirty_##vname
969
970
971#define VCREATE_FUNCS(vname) \
972static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
973{*vp = cptr->hdw->vname##_val; return 0;} \
974static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
975{cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
976static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
977{return cptr->hdw->vname##_dirty != 0;} \
978static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
979{cptr->hdw->vname##_dirty = 0;}
980
981VCREATE_FUNCS(brightness)
982VCREATE_FUNCS(contrast)
983VCREATE_FUNCS(saturation)
984VCREATE_FUNCS(hue)
985VCREATE_FUNCS(volume)
986VCREATE_FUNCS(balance)
987VCREATE_FUNCS(bass)
988VCREATE_FUNCS(treble)
989VCREATE_FUNCS(mute)
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300990VCREATE_FUNCS(cropl)
991VCREATE_FUNCS(cropt)
992VCREATE_FUNCS(cropw)
993VCREATE_FUNCS(croph)
Mike Iselyc05c0462006-06-25 20:04:25 -0300994VCREATE_FUNCS(audiomode)
995VCREATE_FUNCS(res_hor)
996VCREATE_FUNCS(res_ver)
Mike Iselyd8554972006-06-26 20:58:46 -0300997VCREATE_FUNCS(srate)
Mike Iselyd8554972006-06-26 20:58:46 -0300998
Mike Iselyd8554972006-06-26 20:58:46 -0300999/* Table definition of all controls which can be manipulated */
1000static const struct pvr2_ctl_info control_defs[] = {
1001 {
1002 .v4l_id = V4L2_CID_BRIGHTNESS,
1003 .desc = "Brightness",
1004 .name = "brightness",
1005 .default_value = 128,
1006 DEFREF(brightness),
1007 DEFINT(0,255),
1008 },{
1009 .v4l_id = V4L2_CID_CONTRAST,
1010 .desc = "Contrast",
1011 .name = "contrast",
1012 .default_value = 68,
1013 DEFREF(contrast),
1014 DEFINT(0,127),
1015 },{
1016 .v4l_id = V4L2_CID_SATURATION,
1017 .desc = "Saturation",
1018 .name = "saturation",
1019 .default_value = 64,
1020 DEFREF(saturation),
1021 DEFINT(0,127),
1022 },{
1023 .v4l_id = V4L2_CID_HUE,
1024 .desc = "Hue",
1025 .name = "hue",
1026 .default_value = 0,
1027 DEFREF(hue),
1028 DEFINT(-128,127),
1029 },{
1030 .v4l_id = V4L2_CID_AUDIO_VOLUME,
1031 .desc = "Volume",
1032 .name = "volume",
Mike Isely139eecf2006-12-27 23:36:33 -03001033 .default_value = 62000,
Mike Iselyd8554972006-06-26 20:58:46 -03001034 DEFREF(volume),
1035 DEFINT(0,65535),
1036 },{
1037 .v4l_id = V4L2_CID_AUDIO_BALANCE,
1038 .desc = "Balance",
1039 .name = "balance",
1040 .default_value = 0,
1041 DEFREF(balance),
1042 DEFINT(-32768,32767),
1043 },{
1044 .v4l_id = V4L2_CID_AUDIO_BASS,
1045 .desc = "Bass",
1046 .name = "bass",
1047 .default_value = 0,
1048 DEFREF(bass),
1049 DEFINT(-32768,32767),
1050 },{
1051 .v4l_id = V4L2_CID_AUDIO_TREBLE,
1052 .desc = "Treble",
1053 .name = "treble",
1054 .default_value = 0,
1055 DEFREF(treble),
1056 DEFINT(-32768,32767),
1057 },{
1058 .v4l_id = V4L2_CID_AUDIO_MUTE,
1059 .desc = "Mute",
1060 .name = "mute",
1061 .default_value = 0,
1062 DEFREF(mute),
Mike Isely33213962006-06-25 20:04:40 -03001063 DEFBOOL,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001064 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001065 .desc = "Capture crop left margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001066 .name = "crop_left",
1067 .internal_id = PVR2_CID_CROPL,
1068 .default_value = 0,
1069 DEFREF(cropl),
1070 DEFINT(-129, 340),
1071 .get_min_value = ctrl_cropl_min_get,
1072 .get_max_value = ctrl_cropl_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001073 .get_def_value = ctrl_get_cropcapdl,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001074 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001075 .desc = "Capture crop top margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001076 .name = "crop_top",
1077 .internal_id = PVR2_CID_CROPT,
1078 .default_value = 0,
1079 DEFREF(cropt),
1080 DEFINT(-35, 544),
1081 .get_min_value = ctrl_cropt_min_get,
1082 .get_max_value = ctrl_cropt_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001083 .get_def_value = ctrl_get_cropcapdt,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001084 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001085 .desc = "Capture crop width",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001086 .name = "crop_width",
1087 .internal_id = PVR2_CID_CROPW,
1088 .default_value = 720,
1089 DEFREF(cropw),
Mike Isely35fa5d42011-02-13 17:34:33 -03001090 DEFINT(0, 864),
Mike Isely432907f2008-08-31 21:02:20 -03001091 .get_max_value = ctrl_cropw_max_get,
1092 .get_def_value = ctrl_get_cropcapdw,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001093 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001094 .desc = "Capture crop height",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001095 .name = "crop_height",
1096 .internal_id = PVR2_CID_CROPH,
1097 .default_value = 480,
1098 DEFREF(croph),
Mike Isely35fa5d42011-02-13 17:34:33 -03001099 DEFINT(0, 576),
Mike Isely432907f2008-08-31 21:02:20 -03001100 .get_max_value = ctrl_croph_max_get,
1101 .get_def_value = ctrl_get_cropcapdh,
1102 }, {
1103 .desc = "Capture capability pixel aspect numerator",
1104 .name = "cropcap_pixel_numerator",
1105 .internal_id = PVR2_CID_CROPCAPPAN,
1106 .get_value = ctrl_get_cropcappan,
1107 }, {
1108 .desc = "Capture capability pixel aspect denominator",
1109 .name = "cropcap_pixel_denominator",
1110 .internal_id = PVR2_CID_CROPCAPPAD,
1111 .get_value = ctrl_get_cropcappad,
1112 }, {
1113 .desc = "Capture capability bounds top",
1114 .name = "cropcap_bounds_top",
1115 .internal_id = PVR2_CID_CROPCAPBT,
1116 .get_value = ctrl_get_cropcapbt,
1117 }, {
1118 .desc = "Capture capability bounds left",
1119 .name = "cropcap_bounds_left",
1120 .internal_id = PVR2_CID_CROPCAPBL,
1121 .get_value = ctrl_get_cropcapbl,
1122 }, {
1123 .desc = "Capture capability bounds width",
1124 .name = "cropcap_bounds_width",
1125 .internal_id = PVR2_CID_CROPCAPBW,
1126 .get_value = ctrl_get_cropcapbw,
1127 }, {
1128 .desc = "Capture capability bounds height",
1129 .name = "cropcap_bounds_height",
1130 .internal_id = PVR2_CID_CROPCAPBH,
1131 .get_value = ctrl_get_cropcapbh,
Mike Iselyd8554972006-06-26 20:58:46 -03001132 },{
Mike Iselyc05c0462006-06-25 20:04:25 -03001133 .desc = "Video Source",
1134 .name = "input",
1135 .internal_id = PVR2_CID_INPUT,
1136 .default_value = PVR2_CVAL_INPUT_TV,
Mike Isely29bf5b12008-04-22 14:45:37 -03001137 .check_value = ctrl_check_input,
Mike Iselyc05c0462006-06-25 20:04:25 -03001138 DEFREF(input),
1139 DEFENUM(control_values_input),
1140 },{
1141 .desc = "Audio Mode",
1142 .name = "audio_mode",
1143 .internal_id = PVR2_CID_AUDIOMODE,
1144 .default_value = V4L2_TUNER_MODE_STEREO,
1145 DEFREF(audiomode),
1146 DEFENUM(control_values_audiomode),
1147 },{
1148 .desc = "Horizontal capture resolution",
1149 .name = "resolution_hor",
1150 .internal_id = PVR2_CID_HRES,
1151 .default_value = 720,
1152 DEFREF(res_hor),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001153 DEFINT(19,720),
Mike Iselyc05c0462006-06-25 20:04:25 -03001154 },{
1155 .desc = "Vertical capture resolution",
1156 .name = "resolution_ver",
1157 .internal_id = PVR2_CID_VRES,
1158 .default_value = 480,
1159 DEFREF(res_ver),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001160 DEFINT(17,576),
1161 /* Hook in check for video standard and adjust maximum
1162 depending on the standard. */
1163 .get_max_value = ctrl_vres_max_get,
1164 .get_min_value = ctrl_vres_min_get,
Mike Iselyc05c0462006-06-25 20:04:25 -03001165 },{
Mike Iselyb30d2442006-06-25 20:05:01 -03001166 .v4l_id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
Mike Isely434449f2006-08-08 09:10:06 -03001167 .default_value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
1168 .desc = "Audio Sampling Frequency",
Mike Iselyd8554972006-06-26 20:58:46 -03001169 .name = "srate",
Mike Iselyd8554972006-06-26 20:58:46 -03001170 DEFREF(srate),
1171 DEFENUM(control_values_srate),
1172 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001173 .desc = "Tuner Frequency (Hz)",
1174 .name = "frequency",
1175 .internal_id = PVR2_CID_FREQUENCY,
Mike Isely1bde0282006-12-27 23:30:13 -03001176 .default_value = 0,
Mike Iselyd8554972006-06-26 20:58:46 -03001177 .set_value = ctrl_freq_set,
1178 .get_value = ctrl_freq_get,
1179 .is_dirty = ctrl_freq_is_dirty,
1180 .clear_dirty = ctrl_freq_clear_dirty,
Mike Isely644afdb2007-01-20 00:19:23 -03001181 DEFINT(0,0),
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -03001182 /* Hook in check for input value (tv/radio) and adjust
1183 max/min values accordingly */
1184 .get_max_value = ctrl_freq_max_get,
1185 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001186 },{
1187 .desc = "Channel",
1188 .name = "channel",
1189 .set_value = ctrl_channel_set,
1190 .get_value = ctrl_channel_get,
1191 DEFINT(0,FREQTABLE_SIZE),
1192 },{
1193 .desc = "Channel Program Frequency",
1194 .name = "freq_table_value",
1195 .set_value = ctrl_channelfreq_set,
1196 .get_value = ctrl_channelfreq_get,
Mike Isely644afdb2007-01-20 00:19:23 -03001197 DEFINT(0,0),
Mike Isely1bde0282006-12-27 23:30:13 -03001198 /* Hook in check for input value (tv/radio) and adjust
1199 max/min values accordingly */
Mike Isely1bde0282006-12-27 23:30:13 -03001200 .get_max_value = ctrl_freq_max_get,
1201 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001202 },{
1203 .desc = "Channel Program ID",
1204 .name = "freq_table_channel",
1205 .set_value = ctrl_channelprog_set,
1206 .get_value = ctrl_channelprog_get,
1207 DEFINT(0,FREQTABLE_SIZE),
1208 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001209 .desc = "Streaming Enabled",
1210 .name = "streaming_enabled",
1211 .get_value = ctrl_streamingenabled_get,
Mike Isely33213962006-06-25 20:04:40 -03001212 DEFBOOL,
Mike Iselyd8554972006-06-26 20:58:46 -03001213 },{
1214 .desc = "USB Speed",
1215 .name = "usb_speed",
1216 .get_value = ctrl_hsm_get,
1217 DEFENUM(control_values_hsm),
1218 },{
Mike Isely681c7392007-11-26 01:48:52 -03001219 .desc = "Master State",
1220 .name = "master_state",
1221 .get_value = ctrl_masterstate_get,
1222 DEFENUM(pvr2_state_names),
1223 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001224 .desc = "Signal Present",
1225 .name = "signal_present",
1226 .get_value = ctrl_signal_get,
Mike Isely18103c572007-01-20 00:09:47 -03001227 DEFINT(0,65535),
1228 },{
1229 .desc = "Audio Modes Present",
1230 .name = "audio_modes_present",
1231 .get_value = ctrl_audio_modes_present_get,
1232 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
1233 v4l. Nothing outside of this module cares about this,
1234 but I reuse it in order to also reuse the
1235 control_values_audiomode string table. */
1236 DEFMASK(((1 << V4L2_TUNER_MODE_MONO)|
1237 (1 << V4L2_TUNER_MODE_STEREO)|
1238 (1 << V4L2_TUNER_MODE_LANG1)|
1239 (1 << V4L2_TUNER_MODE_LANG2)),
1240 control_values_audiomode),
Mike Iselyd8554972006-06-26 20:58:46 -03001241 },{
1242 .desc = "Video Standards Available Mask",
1243 .name = "video_standard_mask_available",
1244 .internal_id = PVR2_CID_STDAVAIL,
1245 .skip_init = !0,
1246 .get_value = ctrl_stdavail_get,
1247 .set_value = ctrl_stdavail_set,
1248 .val_to_sym = ctrl_std_val_to_sym,
1249 .sym_to_val = ctrl_std_sym_to_val,
1250 .type = pvr2_ctl_bitmask,
1251 },{
1252 .desc = "Video Standards In Use Mask",
1253 .name = "video_standard_mask_active",
1254 .internal_id = PVR2_CID_STDCUR,
1255 .skip_init = !0,
1256 .get_value = ctrl_stdcur_get,
1257 .set_value = ctrl_stdcur_set,
1258 .is_dirty = ctrl_stdcur_is_dirty,
1259 .clear_dirty = ctrl_stdcur_clear_dirty,
1260 .val_to_sym = ctrl_std_val_to_sym,
1261 .sym_to_val = ctrl_std_sym_to_val,
1262 .type = pvr2_ctl_bitmask,
1263 },{
Mike Iselyac04d002012-02-20 02:28:56 -03001264 .desc = "Video Standards Detected Mask",
1265 .name = "video_standard_mask_detected",
1266 .internal_id = PVR2_CID_STDDETECT,
1267 .skip_init = !0,
1268 .get_value = ctrl_stddetect_get,
1269 .val_to_sym = ctrl_std_val_to_sym,
1270 .sym_to_val = ctrl_std_sym_to_val,
1271 .type = pvr2_ctl_bitmask,
Mike Iselyd8554972006-06-26 20:58:46 -03001272 }
1273};
1274
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001275#define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
Mike Iselyd8554972006-06-26 20:58:46 -03001276
1277
1278const char *pvr2_config_get_name(enum pvr2_config cfg)
1279{
1280 switch (cfg) {
1281 case pvr2_config_empty: return "empty";
1282 case pvr2_config_mpeg: return "mpeg";
1283 case pvr2_config_vbi: return "vbi";
Mike Isely16eb40d2006-12-30 18:27:32 -03001284 case pvr2_config_pcm: return "pcm";
1285 case pvr2_config_rawvideo: return "raw video";
Mike Iselyd8554972006-06-26 20:58:46 -03001286 }
1287 return "<unknown>";
1288}
1289
1290
1291struct usb_device *pvr2_hdw_get_dev(struct pvr2_hdw *hdw)
1292{
1293 return hdw->usb_dev;
1294}
1295
1296
1297unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *hdw)
1298{
1299 return hdw->serial_number;
1300}
1301
Mike Isely31a18542007-04-08 01:11:47 -03001302
1303const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *hdw)
1304{
1305 return hdw->bus_info;
1306}
1307
1308
Mike Isely13a88792009-01-14 04:22:56 -03001309const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw *hdw)
1310{
1311 return hdw->identifier;
1312}
1313
1314
Mike Isely1bde0282006-12-27 23:30:13 -03001315unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw *hdw)
1316{
1317 return hdw->freqSelector ? hdw->freqValTelevision : hdw->freqValRadio;
1318}
1319
1320/* Set the currently tuned frequency and account for all possible
1321 driver-core side effects of this action. */
Adrian Bunkf55a8712008-04-18 05:38:56 -03001322static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *hdw,unsigned long val)
Mike Isely1bde0282006-12-27 23:30:13 -03001323{
Mike Isely7c74e572007-01-20 00:15:41 -03001324 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
Mike Isely1bde0282006-12-27 23:30:13 -03001325 if (hdw->freqSelector) {
1326 /* Swing over to radio frequency selection */
1327 hdw->freqSelector = 0;
1328 hdw->freqDirty = !0;
1329 }
Mike Isely1bde0282006-12-27 23:30:13 -03001330 if (hdw->freqValRadio != val) {
1331 hdw->freqValRadio = val;
1332 hdw->freqSlotRadio = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001333 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001334 }
Mike Isely7c74e572007-01-20 00:15:41 -03001335 } else {
Mike Isely1bde0282006-12-27 23:30:13 -03001336 if (!(hdw->freqSelector)) {
1337 /* Swing over to television frequency selection */
1338 hdw->freqSelector = 1;
1339 hdw->freqDirty = !0;
1340 }
Mike Isely1bde0282006-12-27 23:30:13 -03001341 if (hdw->freqValTelevision != val) {
1342 hdw->freqValTelevision = val;
1343 hdw->freqSlotTelevision = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001344 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001345 }
Mike Isely1bde0282006-12-27 23:30:13 -03001346 }
1347}
1348
Mike Iselyd8554972006-06-26 20:58:46 -03001349int pvr2_hdw_get_unit_number(struct pvr2_hdw *hdw)
1350{
1351 return hdw->unit_number;
1352}
1353
1354
1355/* Attempt to locate one of the given set of files. Messages are logged
1356 appropriate to what has been found. The return value will be 0 or
1357 greater on success (it will be the index of the file name found) and
1358 fw_entry will be filled in. Otherwise a negative error is returned on
1359 failure. If the return value is -ENOENT then no viable firmware file
1360 could be located. */
1361static int pvr2_locate_firmware(struct pvr2_hdw *hdw,
1362 const struct firmware **fw_entry,
1363 const char *fwtypename,
1364 unsigned int fwcount,
1365 const char *fwnames[])
1366{
1367 unsigned int idx;
1368 int ret = -EINVAL;
1369 for (idx = 0; idx < fwcount; idx++) {
1370 ret = request_firmware(fw_entry,
1371 fwnames[idx],
1372 &hdw->usb_dev->dev);
1373 if (!ret) {
1374 trace_firmware("Located %s firmware: %s;"
1375 " uploading...",
1376 fwtypename,
1377 fwnames[idx]);
1378 return idx;
1379 }
1380 if (ret == -ENOENT) continue;
1381 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1382 "request_firmware fatal error with code=%d",ret);
1383 return ret;
1384 }
1385 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1386 "***WARNING***"
1387 " Device %s firmware"
1388 " seems to be missing.",
1389 fwtypename);
1390 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1391 "Did you install the pvrusb2 firmware files"
1392 " in their proper location?");
1393 if (fwcount == 1) {
1394 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1395 "request_firmware unable to locate %s file %s",
1396 fwtypename,fwnames[0]);
1397 } else {
1398 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1399 "request_firmware unable to locate"
1400 " one of the following %s files:",
1401 fwtypename);
1402 for (idx = 0; idx < fwcount; idx++) {
1403 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1404 "request_firmware: Failed to find %s",
1405 fwnames[idx]);
1406 }
1407 }
1408 return ret;
1409}
1410
1411
1412/*
1413 * pvr2_upload_firmware1().
1414 *
1415 * Send the 8051 firmware to the device. After the upload, arrange for
1416 * device to re-enumerate.
1417 *
1418 * NOTE : the pointer to the firmware data given by request_firmware()
1419 * is not suitable for an usb transaction.
1420 *
1421 */
Adrian Bunk07e337e2006-06-30 11:30:20 -03001422static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03001423{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001424 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001425 void *fw_ptr;
1426 unsigned int pipe;
Mike Isely9081d902009-11-25 02:59:34 -03001427 unsigned int fwsize;
Mike Iselyd8554972006-06-26 20:58:46 -03001428 int ret;
1429 u16 address;
Mike Isely1d643a32007-09-08 22:18:50 -03001430
Mike Isely989eb152007-11-26 01:53:12 -03001431 if (!hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03001432 hdw->fw1_state = FW1_STATE_OK;
Mike Isely56dcbfa2007-11-26 02:00:51 -03001433 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1434 "Connected device type defines"
1435 " no firmware to upload; ignoring firmware");
1436 return -ENOTTY;
Mike Isely1d643a32007-09-08 22:18:50 -03001437 }
1438
Mike Iselyd8554972006-06-26 20:58:46 -03001439 hdw->fw1_state = FW1_STATE_FAILED; // default result
1440
1441 trace_firmware("pvr2_upload_firmware1");
1442
1443 ret = pvr2_locate_firmware(hdw,&fw_entry,"fx2 controller",
Mike Isely989eb152007-11-26 01:53:12 -03001444 hdw->hdw_desc->fx2_firmware.cnt,
1445 hdw->hdw_desc->fx2_firmware.lst);
Mike Iselyd8554972006-06-26 20:58:46 -03001446 if (ret < 0) {
1447 if (ret == -ENOENT) hdw->fw1_state = FW1_STATE_MISSING;
1448 return ret;
1449 }
1450
Mike Iselyd8554972006-06-26 20:58:46 -03001451 usb_clear_halt(hdw->usb_dev, usb_sndbulkpipe(hdw->usb_dev, 0 & 0x7f));
1452
1453 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
Mike Isely9081d902009-11-25 02:59:34 -03001454 fwsize = fw_entry->size;
Mike Iselyd8554972006-06-26 20:58:46 -03001455
Mike Isely9081d902009-11-25 02:59:34 -03001456 if ((fwsize != 0x2000) &&
1457 (!(hdw->hdw_desc->flag_fx2_16kb && (fwsize == 0x4000)))) {
Mike Iselyc21c2db2009-11-25 02:49:21 -03001458 if (hdw->hdw_desc->flag_fx2_16kb) {
1459 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1460 "Wrong fx2 firmware size"
1461 " (expected 8192 or 16384, got %u)",
Mike Isely9081d902009-11-25 02:59:34 -03001462 fwsize);
Mike Iselyc21c2db2009-11-25 02:49:21 -03001463 } else {
1464 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1465 "Wrong fx2 firmware size"
1466 " (expected 8192, got %u)",
Mike Isely9081d902009-11-25 02:59:34 -03001467 fwsize);
Mike Iselyc21c2db2009-11-25 02:49:21 -03001468 }
Mike Iselyd8554972006-06-26 20:58:46 -03001469 release_firmware(fw_entry);
1470 return -ENOMEM;
1471 }
1472
1473 fw_ptr = kmalloc(0x800, GFP_KERNEL);
1474 if (fw_ptr == NULL){
1475 release_firmware(fw_entry);
1476 return -ENOMEM;
1477 }
1478
1479 /* We have to hold the CPU during firmware upload. */
1480 pvr2_hdw_cpureset_assert(hdw,1);
1481
1482 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1483 chunk. */
1484
1485 ret = 0;
Mike Isely9081d902009-11-25 02:59:34 -03001486 for (address = 0; address < fwsize; address += 0x800) {
Mike Iselyd8554972006-06-26 20:58:46 -03001487 memcpy(fw_ptr, fw_entry->data + address, 0x800);
1488 ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address,
1489 0, fw_ptr, 0x800, HZ);
1490 }
1491
1492 trace_firmware("Upload done, releasing device's CPU");
1493
1494 /* Now release the CPU. It will disconnect and reconnect later. */
1495 pvr2_hdw_cpureset_assert(hdw,0);
1496
1497 kfree(fw_ptr);
1498 release_firmware(fw_entry);
1499
1500 trace_firmware("Upload done (%d bytes sent)",ret);
1501
Gary Francis75727462009-11-25 03:03:31 -03001502 /* We should have written fwsize bytes */
1503 if (ret == fwsize) {
Mike Iselyd8554972006-06-26 20:58:46 -03001504 hdw->fw1_state = FW1_STATE_RELOAD;
1505 return 0;
1506 }
1507
1508 return -EIO;
1509}
1510
1511
1512/*
1513 * pvr2_upload_firmware2()
1514 *
1515 * This uploads encoder firmware on endpoint 2.
1516 *
1517 */
1518
1519int pvr2_upload_firmware2(struct pvr2_hdw *hdw)
1520{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001521 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001522 void *fw_ptr;
Mike Isely90060d32007-02-08 02:02:53 -03001523 unsigned int pipe, fw_len, fw_done, bcnt, icnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001524 int actual_length;
1525 int ret = 0;
1526 int fwidx;
1527 static const char *fw_files[] = {
1528 CX2341X_FIRM_ENC_FILENAME,
1529 };
1530
Mike Isely989eb152007-11-26 01:53:12 -03001531 if (hdw->hdw_desc->flag_skip_cx23416_firmware) {
Mike Isely1d643a32007-09-08 22:18:50 -03001532 return 0;
1533 }
1534
Mike Iselyd8554972006-06-26 20:58:46 -03001535 trace_firmware("pvr2_upload_firmware2");
1536
1537 ret = pvr2_locate_firmware(hdw,&fw_entry,"encoder",
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001538 ARRAY_SIZE(fw_files), fw_files);
Mike Iselyd8554972006-06-26 20:58:46 -03001539 if (ret < 0) return ret;
1540 fwidx = ret;
1541 ret = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -03001542 /* Since we're about to completely reinitialize the encoder,
1543 invalidate our cached copy of its configuration state. Next
1544 time we configure the encoder, then we'll fully configure it. */
1545 hdw->enc_cur_valid = 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001546
Mike Iselyd913d632008-04-06 04:04:35 -03001547 /* Encoder is about to be reset so note that as far as we're
1548 concerned now, the encoder has never been run. */
1549 del_timer_sync(&hdw->encoder_run_timer);
1550 if (hdw->state_encoder_runok) {
1551 hdw->state_encoder_runok = 0;
1552 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
1553 }
1554
Mike Iselyd8554972006-06-26 20:58:46 -03001555 /* First prepare firmware loading */
1556 ret |= pvr2_write_register(hdw, 0x0048, 0xffffffff); /*interrupt mask*/
1557 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000088); /*gpio dir*/
1558 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1559 ret |= pvr2_hdw_cmd_deep_reset(hdw);
1560 ret |= pvr2_write_register(hdw, 0xa064, 0x00000000); /*APU command*/
1561 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000408); /*gpio dir*/
1562 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1563 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffed); /*VPU ctrl*/
1564 ret |= pvr2_write_register(hdw, 0x9054, 0xfffffffd); /*reset hw blocks*/
1565 ret |= pvr2_write_register(hdw, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1566 ret |= pvr2_write_register(hdw, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1567 ret |= pvr2_write_register(hdw, 0x0700, 0x00000000); /*I2C clock*/
1568 ret |= pvr2_write_register(hdw, 0xaa00, 0x00000000); /*unknown*/
1569 ret |= pvr2_write_register(hdw, 0xaa04, 0x00057810); /*unknown*/
1570 ret |= pvr2_write_register(hdw, 0xaa10, 0x00148500); /*unknown*/
1571 ret |= pvr2_write_register(hdw, 0xaa18, 0x00840000); /*unknown*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001572 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_FWPOST1);
1573 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001574
1575 if (ret) {
1576 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1577 "firmware2 upload prep failed, ret=%d",ret);
1578 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001579 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001580 }
1581
1582 /* Now send firmware */
1583
1584 fw_len = fw_entry->size;
1585
Mike Isely90060d32007-02-08 02:02:53 -03001586 if (fw_len % sizeof(u32)) {
Mike Iselyd8554972006-06-26 20:58:46 -03001587 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1588 "size of %s firmware"
Mike Isely48dc30a2007-03-03 10:13:05 -02001589 " must be a multiple of %zu bytes",
Mike Isely90060d32007-02-08 02:02:53 -03001590 fw_files[fwidx],sizeof(u32));
Mike Iselyd8554972006-06-26 20:58:46 -03001591 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001592 ret = -EINVAL;
1593 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001594 }
1595
1596 fw_ptr = kmalloc(FIRMWARE_CHUNK_SIZE, GFP_KERNEL);
1597 if (fw_ptr == NULL){
1598 release_firmware(fw_entry);
1599 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1600 "failed to allocate memory for firmware2 upload");
Mike Isely21684ba2008-04-21 03:49:33 -03001601 ret = -ENOMEM;
1602 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001603 }
1604
1605 pipe = usb_sndbulkpipe(hdw->usb_dev, PVR2_FIRMWARE_ENDPOINT);
1606
Mike Isely90060d32007-02-08 02:02:53 -03001607 fw_done = 0;
1608 for (fw_done = 0; fw_done < fw_len;) {
1609 bcnt = fw_len - fw_done;
1610 if (bcnt > FIRMWARE_CHUNK_SIZE) bcnt = FIRMWARE_CHUNK_SIZE;
1611 memcpy(fw_ptr, fw_entry->data + fw_done, bcnt);
1612 /* Usbsnoop log shows that we must swap bytes... */
Mike Isely5f33df12008-08-30 15:09:31 -03001613 /* Some background info: The data being swapped here is a
1614 firmware image destined for the mpeg encoder chip that
1615 lives at the other end of a USB endpoint. The encoder
1616 chip always talks in 32 bit chunks and its storage is
1617 organized into 32 bit words. However from the file
1618 system to the encoder chip everything is purely a byte
1619 stream. The firmware file's contents are always 32 bit
1620 swapped from what the encoder expects. Thus the need
1621 always exists to swap the bytes regardless of the endian
1622 type of the host processor and therefore swab32() makes
1623 the most sense. */
Mike Isely90060d32007-02-08 02:02:53 -03001624 for (icnt = 0; icnt < bcnt/4 ; icnt++)
Harvey Harrison513edce2008-08-18 17:38:01 -03001625 ((u32 *)fw_ptr)[icnt] = swab32(((u32 *)fw_ptr)[icnt]);
Mike Iselyd8554972006-06-26 20:58:46 -03001626
Mike Isely90060d32007-02-08 02:02:53 -03001627 ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt,
Mike Iselyd8554972006-06-26 20:58:46 -03001628 &actual_length, HZ);
Mike Isely90060d32007-02-08 02:02:53 -03001629 ret |= (actual_length != bcnt);
1630 if (ret) break;
1631 fw_done += bcnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001632 }
1633
1634 trace_firmware("upload of %s : %i / %i ",
1635 fw_files[fwidx],fw_done,fw_len);
1636
1637 kfree(fw_ptr);
1638 release_firmware(fw_entry);
1639
1640 if (ret) {
1641 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1642 "firmware2 upload transfer failure");
Mike Isely21684ba2008-04-21 03:49:33 -03001643 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001644 }
1645
1646 /* Finish upload */
1647
1648 ret |= pvr2_write_register(hdw, 0x9054, 0xffffffff); /*reset hw blocks*/
1649 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffe8); /*VPU ctrl*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001650 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001651
1652 if (ret) {
1653 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1654 "firmware2 upload post-proc failure");
Mike Iselyd8554972006-06-26 20:58:46 -03001655 }
Mike Isely21684ba2008-04-21 03:49:33 -03001656
1657 done:
Mike Isely1df59f02008-04-21 03:50:39 -03001658 if (hdw->hdw_desc->signal_routing_scheme ==
1659 PVR2_ROUTING_SCHEME_GOTVIEW) {
1660 /* Ensure that GPIO 11 is set to output for GOTVIEW
1661 hardware. */
1662 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
1663 }
Mike Iselyd8554972006-06-26 20:58:46 -03001664 return ret;
1665}
1666
1667
Mike Isely681c7392007-11-26 01:48:52 -03001668static const char *pvr2_get_state_name(unsigned int st)
Mike Iselyd8554972006-06-26 20:58:46 -03001669{
Mike Isely681c7392007-11-26 01:48:52 -03001670 if (st < ARRAY_SIZE(pvr2_state_names)) {
1671 return pvr2_state_names[st];
Mike Iselyd8554972006-06-26 20:58:46 -03001672 }
Mike Isely681c7392007-11-26 01:48:52 -03001673 return "???";
Mike Iselyd8554972006-06-26 20:58:46 -03001674}
1675
Mike Isely681c7392007-11-26 01:48:52 -03001676static int pvr2_decoder_enable(struct pvr2_hdw *hdw,int enablefl)
Mike Iselyd8554972006-06-26 20:58:46 -03001677{
Mike Iselyaf78e162009-03-07 00:21:30 -03001678 /* Even though we really only care about the video decoder chip at
1679 this point, we'll broadcast stream on/off to all sub-devices
1680 anyway, just in case somebody else wants to hear the
1681 command... */
Mike Iselye2605082009-03-07 01:50:48 -03001682 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 stream=%s",
1683 (enablefl ? "on" : "off"));
Mike Iselyaf78e162009-03-07 00:21:30 -03001684 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_stream, enablefl);
Andy Walls3ccc6462009-12-24 13:06:08 -03001685 v4l2_device_call_all(&hdw->v4l2_dev, 0, audio, s_stream, enablefl);
Mike Iselyaf78e162009-03-07 00:21:30 -03001686 if (hdw->decoder_client_id) {
1687 /* We get here if the encoder has been noticed. Otherwise
1688 we'll issue a warning to the user (which should
1689 normally never happen). */
1690 return 0;
1691 }
1692 if (!hdw->flag_decoder_missed) {
1693 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1694 "WARNING: No decoder present");
1695 hdw->flag_decoder_missed = !0;
1696 trace_stbit("flag_decoder_missed",
1697 hdw->flag_decoder_missed);
1698 }
1699 return -EIO;
Mike Iselyd8554972006-06-26 20:58:46 -03001700}
1701
1702
Mike Isely681c7392007-11-26 01:48:52 -03001703int pvr2_hdw_get_state(struct pvr2_hdw *hdw)
1704{
1705 return hdw->master_state;
1706}
1707
1708
1709static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *hdw)
1710{
1711 if (!hdw->flag_tripped) return 0;
1712 hdw->flag_tripped = 0;
1713 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1714 "Clearing driver error statuss");
1715 return !0;
1716}
1717
1718
1719int pvr2_hdw_untrip(struct pvr2_hdw *hdw)
1720{
1721 int fl;
1722 LOCK_TAKE(hdw->big_lock); do {
1723 fl = pvr2_hdw_untrip_unlocked(hdw);
1724 } while (0); LOCK_GIVE(hdw->big_lock);
1725 if (fl) pvr2_hdw_state_sched(hdw);
1726 return 0;
1727}
1728
1729
Mike Isely681c7392007-11-26 01:48:52 -03001730
1731
Mike Iselyd8554972006-06-26 20:58:46 -03001732int pvr2_hdw_get_streaming(struct pvr2_hdw *hdw)
1733{
Mike Isely681c7392007-11-26 01:48:52 -03001734 return hdw->state_pipeline_req != 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001735}
1736
1737
1738int pvr2_hdw_set_streaming(struct pvr2_hdw *hdw,int enable_flag)
1739{
Mike Isely681c7392007-11-26 01:48:52 -03001740 int ret,st;
Mike Iselyd8554972006-06-26 20:58:46 -03001741 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03001742 pvr2_hdw_untrip_unlocked(hdw);
1743 if ((!enable_flag) != !(hdw->state_pipeline_req)) {
1744 hdw->state_pipeline_req = enable_flag != 0;
1745 pvr2_trace(PVR2_TRACE_START_STOP,
1746 "/*--TRACE_STREAM--*/ %s",
1747 enable_flag ? "enable" : "disable");
1748 }
1749 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03001750 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001751 if ((ret = pvr2_hdw_wait(hdw,0)) < 0) return ret;
1752 if (enable_flag) {
1753 while ((st = hdw->master_state) != PVR2_STATE_RUN) {
1754 if (st != PVR2_STATE_READY) return -EIO;
1755 if ((ret = pvr2_hdw_wait(hdw,st)) < 0) return ret;
1756 }
1757 }
Mike Iselyd8554972006-06-26 20:58:46 -03001758 return 0;
1759}
1760
1761
1762int pvr2_hdw_set_stream_type(struct pvr2_hdw *hdw,enum pvr2_config config)
1763{
Mike Isely681c7392007-11-26 01:48:52 -03001764 int fl;
Mike Iselyd8554972006-06-26 20:58:46 -03001765 LOCK_TAKE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001766 if ((fl = (hdw->desired_stream_type != config)) != 0) {
1767 hdw->desired_stream_type = config;
1768 hdw->state_pipeline_config = 0;
1769 trace_stbit("state_pipeline_config",
1770 hdw->state_pipeline_config);
1771 pvr2_hdw_state_sched(hdw);
1772 }
Mike Iselyd8554972006-06-26 20:58:46 -03001773 LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001774 if (fl) return 0;
1775 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03001776}
1777
1778
1779static int get_default_tuner_type(struct pvr2_hdw *hdw)
1780{
1781 int unit_number = hdw->unit_number;
1782 int tp = -1;
1783 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1784 tp = tuner[unit_number];
1785 }
1786 if (tp < 0) return -EINVAL;
1787 hdw->tuner_type = tp;
Mike Iselyaaf78842007-11-26 02:04:11 -03001788 hdw->tuner_updated = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03001789 return 0;
1790}
1791
1792
1793static v4l2_std_id get_default_standard(struct pvr2_hdw *hdw)
1794{
1795 int unit_number = hdw->unit_number;
1796 int tp = 0;
1797 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1798 tp = video_std[unit_number];
Mike Isely6a540252007-12-02 23:51:34 -03001799 if (tp) return tp;
Mike Iselyd8554972006-06-26 20:58:46 -03001800 }
Mike Isely6a540252007-12-02 23:51:34 -03001801 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001802}
1803
1804
1805static unsigned int get_default_error_tolerance(struct pvr2_hdw *hdw)
1806{
1807 int unit_number = hdw->unit_number;
1808 int tp = 0;
1809 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1810 tp = tolerance[unit_number];
1811 }
1812 return tp;
1813}
1814
1815
1816static int pvr2_hdw_check_firmware(struct pvr2_hdw *hdw)
1817{
1818 /* Try a harmless request to fetch the eeprom's address over
1819 endpoint 1. See what happens. Only the full FX2 image can
1820 respond to this. If this probe fails then likely the FX2
1821 firmware needs be loaded. */
1822 int result;
1823 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03001824 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03001825 result = pvr2_send_request_ex(hdw,HZ*1,!0,
1826 hdw->cmd_buffer,1,
1827 hdw->cmd_buffer,1);
1828 if (result < 0) break;
1829 } while(0); LOCK_GIVE(hdw->ctl_lock);
1830 if (result) {
1831 pvr2_trace(PVR2_TRACE_INIT,
1832 "Probe of device endpoint 1 result status %d",
1833 result);
1834 } else {
1835 pvr2_trace(PVR2_TRACE_INIT,
1836 "Probe of device endpoint 1 succeeded");
1837 }
1838 return result == 0;
1839}
1840
Mike Isely9f66d4e2007-09-08 22:28:51 -03001841struct pvr2_std_hack {
1842 v4l2_std_id pat; /* Pattern to match */
1843 v4l2_std_id msk; /* Which bits we care about */
1844 v4l2_std_id std; /* What additional standards or default to set */
1845};
1846
1847/* This data structure labels specific combinations of standards from
1848 tveeprom that we'll try to recognize. If we recognize one, then assume
1849 a specified default standard to use. This is here because tveeprom only
1850 tells us about available standards not the intended default standard (if
1851 any) for the device in question. We guess the default based on what has
1852 been reported as available. Note that this is only for guessing a
1853 default - which can always be overridden explicitly - and if the user
1854 has otherwise named a default then that default will always be used in
1855 place of this table. */
Tobias Klauserebff0332008-04-22 14:45:45 -03001856static const struct pvr2_std_hack std_eeprom_maps[] = {
Mike Isely9f66d4e2007-09-08 22:28:51 -03001857 { /* PAL(B/G) */
1858 .pat = V4L2_STD_B|V4L2_STD_GH,
1859 .std = V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_PAL_G,
1860 },
1861 { /* NTSC(M) */
1862 .pat = V4L2_STD_MN,
1863 .std = V4L2_STD_NTSC_M,
1864 },
1865 { /* PAL(I) */
1866 .pat = V4L2_STD_PAL_I,
1867 .std = V4L2_STD_PAL_I,
1868 },
1869 { /* SECAM(L/L') */
1870 .pat = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1871 .std = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1872 },
1873 { /* PAL(D/D1/K) */
1874 .pat = V4L2_STD_DK,
Roel Kluinea2562d2007-12-02 23:04:57 -03001875 .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001876 },
1877};
1878
Mike Iselyd8554972006-06-26 20:58:46 -03001879static void pvr2_hdw_setup_std(struct pvr2_hdw *hdw)
1880{
1881 char buf[40];
1882 unsigned int bcnt;
Mike Isely3d290bd2007-12-03 01:47:12 -03001883 v4l2_std_id std1,std2,std3;
Mike Iselyd8554972006-06-26 20:58:46 -03001884
1885 std1 = get_default_standard(hdw);
Mike Isely3d290bd2007-12-03 01:47:12 -03001886 std3 = std1 ? 0 : hdw->hdw_desc->default_std_mask;
Mike Iselyd8554972006-06-26 20:58:46 -03001887
1888 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
Mike Isely56585382007-09-08 22:32:12 -03001889 pvr2_trace(PVR2_TRACE_STD,
Mike Isely56dcbfa2007-11-26 02:00:51 -03001890 "Supported video standard(s) reported available"
1891 " in hardware: %.*s",
Mike Iselyd8554972006-06-26 20:58:46 -03001892 bcnt,buf);
1893
1894 hdw->std_mask_avail = hdw->std_mask_eeprom;
1895
Mike Isely3d290bd2007-12-03 01:47:12 -03001896 std2 = (std1|std3) & ~hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -03001897 if (std2) {
1898 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
Mike Isely56585382007-09-08 22:32:12 -03001899 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001900 "Expanding supported video standards"
1901 " to include: %.*s",
1902 bcnt,buf);
1903 hdw->std_mask_avail |= std2;
1904 }
1905
Mike Iselyc0bb6092012-02-20 02:39:22 -03001906 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -03001907
1908 if (std1) {
1909 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
Mike Isely56585382007-09-08 22:32:12 -03001910 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001911 "Initial video standard forced to %.*s",
1912 bcnt,buf);
1913 hdw->std_mask_cur = std1;
1914 hdw->std_dirty = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03001915 return;
1916 }
Mike Isely3d290bd2007-12-03 01:47:12 -03001917 if (std3) {
1918 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1919 pvr2_trace(PVR2_TRACE_STD,
1920 "Initial video standard"
1921 " (determined by device type): %.*s",bcnt,buf);
1922 hdw->std_mask_cur = std3;
1923 hdw->std_dirty = !0;
Mike Isely3d290bd2007-12-03 01:47:12 -03001924 return;
1925 }
Mike Iselyd8554972006-06-26 20:58:46 -03001926
Mike Isely9f66d4e2007-09-08 22:28:51 -03001927 {
1928 unsigned int idx;
1929 for (idx = 0; idx < ARRAY_SIZE(std_eeprom_maps); idx++) {
1930 if (std_eeprom_maps[idx].msk ?
1931 ((std_eeprom_maps[idx].pat ^
1932 hdw->std_mask_eeprom) &
1933 std_eeprom_maps[idx].msk) :
1934 (std_eeprom_maps[idx].pat !=
1935 hdw->std_mask_eeprom)) continue;
1936 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1937 std_eeprom_maps[idx].std);
Mike Isely56585382007-09-08 22:32:12 -03001938 pvr2_trace(PVR2_TRACE_STD,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001939 "Initial video standard guessed as %.*s",
1940 bcnt,buf);
1941 hdw->std_mask_cur = std_eeprom_maps[idx].std;
1942 hdw->std_dirty = !0;
Mike Isely9f66d4e2007-09-08 22:28:51 -03001943 return;
1944 }
1945 }
1946
Mike Iselyd8554972006-06-26 20:58:46 -03001947}
1948
1949
Mike Iselye9c64a72009-03-06 23:42:20 -03001950static unsigned int pvr2_copy_i2c_addr_list(
1951 unsigned short *dst, const unsigned char *src,
1952 unsigned int dst_max)
1953{
Mike Isely3ab8d292009-03-07 01:37:58 -03001954 unsigned int cnt = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03001955 if (!src) return 0;
1956 while (src[cnt] && (cnt + 1) < dst_max) {
1957 dst[cnt] = src[cnt];
1958 cnt++;
1959 }
1960 dst[cnt] = I2C_CLIENT_END;
1961 return cnt;
1962}
1963
1964
Mike Iselye17d7872009-06-20 14:45:52 -03001965static void pvr2_hdw_cx25840_vbi_hack(struct pvr2_hdw *hdw)
1966{
1967 /*
1968 Mike Isely <isely@pobox.com> 19-Nov-2006 - This bit of nuttiness
1969 for cx25840 causes that module to correctly set up its video
1970 scaling. This is really a problem in the cx25840 module itself,
1971 but we work around it here. The problem has not been seen in
1972 ivtv because there VBI is supported and set up. We don't do VBI
1973 here (at least not yet) and thus we never attempted to even set
1974 it up.
1975 */
1976 struct v4l2_format fmt;
1977 if (hdw->decoder_client_id != PVR2_CLIENT_ID_CX25840) {
1978 /* We're not using a cx25840 so don't enable the hack */
1979 return;
1980 }
1981
1982 pvr2_trace(PVR2_TRACE_INIT,
1983 "Module ID %u:"
1984 " Executing cx25840 VBI hack",
1985 hdw->decoder_client_id);
1986 memset(&fmt, 0, sizeof(fmt));
1987 fmt.type = V4L2_BUF_TYPE_SLICED_VBI_CAPTURE;
Mike Isely058caa82011-02-13 17:53:07 -03001988 fmt.fmt.sliced.service_lines[0][21] = V4L2_SLICED_CAPTION_525;
1989 fmt.fmt.sliced.service_lines[1][21] = V4L2_SLICED_CAPTION_525;
Mike Iselye17d7872009-06-20 14:45:52 -03001990 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
Hans Verkuil09419af2010-03-14 12:27:48 -03001991 vbi, s_sliced_fmt, &fmt.fmt.sliced);
Mike Iselye17d7872009-06-20 14:45:52 -03001992}
1993
1994
Mike Isely1ab5e742009-03-07 00:24:24 -03001995static int pvr2_hdw_load_subdev(struct pvr2_hdw *hdw,
1996 const struct pvr2_device_client_desc *cd)
Mike Iselye9c64a72009-03-06 23:42:20 -03001997{
1998 const char *fname;
1999 unsigned char mid;
2000 struct v4l2_subdev *sd;
2001 unsigned int i2ccnt;
2002 const unsigned char *p;
2003 /* Arbitrary count - max # i2c addresses we will probe */
2004 unsigned short i2caddr[25];
2005
2006 mid = cd->module_id;
2007 fname = (mid < ARRAY_SIZE(module_names)) ? module_names[mid] : NULL;
2008 if (!fname) {
2009 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely27108142009-10-12 00:21:20 -03002010 "Module ID %u for device %s has no name?"
2011 " The driver might have a configuration problem.",
Mike Iselye9c64a72009-03-06 23:42:20 -03002012 mid,
2013 hdw->hdw_desc->description);
Mike Isely1ab5e742009-03-07 00:24:24 -03002014 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002015 }
Mike Iselybd14d4f2009-03-07 00:56:52 -03002016 pvr2_trace(PVR2_TRACE_INIT,
2017 "Module ID %u (%s) for device %s being loaded...",
2018 mid, fname,
2019 hdw->hdw_desc->description);
Mike Iselye9c64a72009-03-06 23:42:20 -03002020
2021 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, cd->i2c_address_list,
2022 ARRAY_SIZE(i2caddr));
2023 if (!i2ccnt && ((p = (mid < ARRAY_SIZE(module_i2c_addresses)) ?
2024 module_i2c_addresses[mid] : NULL) != NULL)) {
2025 /* Second chance: Try default i2c address list */
2026 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, p,
2027 ARRAY_SIZE(i2caddr));
Mike Iselybd14d4f2009-03-07 00:56:52 -03002028 if (i2ccnt) {
2029 pvr2_trace(PVR2_TRACE_INIT,
2030 "Module ID %u:"
2031 " Using default i2c address list",
2032 mid);
2033 }
Mike Iselye9c64a72009-03-06 23:42:20 -03002034 }
2035
2036 if (!i2ccnt) {
2037 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002038 "Module ID %u (%s) for device %s:"
Mike Isely27108142009-10-12 00:21:20 -03002039 " No i2c addresses."
2040 " The driver might have a configuration problem.",
Mike Isely1ab5e742009-03-07 00:24:24 -03002041 mid, fname, hdw->hdw_desc->description);
2042 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002043 }
2044
Mike Iselye9c64a72009-03-06 23:42:20 -03002045 if (i2ccnt == 1) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002046 pvr2_trace(PVR2_TRACE_INIT,
2047 "Module ID %u:"
2048 " Setting up with specified i2c address 0x%x",
2049 mid, i2caddr[0]);
Hans Verkuile6574f22009-04-01 03:57:53 -03002050 sd = v4l2_i2c_new_subdev(&hdw->v4l2_dev, &hdw->i2c_adap,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03002051 fname, i2caddr[0], NULL);
Mike Iselye9c64a72009-03-06 23:42:20 -03002052 } else {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002053 pvr2_trace(PVR2_TRACE_INIT,
2054 "Module ID %u:"
2055 " Setting up with address probe list",
2056 mid);
Hans Verkuil53dacb12009-08-10 02:49:08 -03002057 sd = v4l2_i2c_new_subdev(&hdw->v4l2_dev, &hdw->i2c_adap,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -03002058 fname, 0, i2caddr);
Mike Iselye9c64a72009-03-06 23:42:20 -03002059 }
2060
Mike Isely446dfdc2009-03-06 23:58:15 -03002061 if (!sd) {
2062 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely27108142009-10-12 00:21:20 -03002063 "Module ID %u (%s) for device %s failed to load."
2064 " Possible missing sub-device kernel module or"
2065 " initialization failure within module.",
Mike Isely1ab5e742009-03-07 00:24:24 -03002066 mid, fname, hdw->hdw_desc->description);
2067 return -EIO;
Mike Isely446dfdc2009-03-06 23:58:15 -03002068 }
2069
2070 /* Tag this sub-device instance with the module ID we know about.
2071 In other places we'll use that tag to determine if the instance
2072 requires special handling. */
2073 sd->grp_id = mid;
2074
Mike Iselybd14d4f2009-03-07 00:56:52 -03002075 pvr2_trace(PVR2_TRACE_INFO, "Attached sub-driver %s", fname);
Mike Iselya932f502009-03-06 23:47:10 -03002076
Mike Iselye9c64a72009-03-06 23:42:20 -03002077
Mike Isely00e5f732009-03-07 00:17:11 -03002078 /* client-specific setup... */
2079 switch (mid) {
2080 case PVR2_CLIENT_ID_CX25840:
Mike Isely00e5f732009-03-07 00:17:11 -03002081 case PVR2_CLIENT_ID_SAA7115:
2082 hdw->decoder_client_id = mid;
2083 break;
2084 default: break;
2085 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002086
2087 return 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002088}
2089
2090
2091static void pvr2_hdw_load_modules(struct pvr2_hdw *hdw)
2092{
2093 unsigned int idx;
2094 const struct pvr2_string_table *cm;
2095 const struct pvr2_device_client_table *ct;
Mike Isely1ab5e742009-03-07 00:24:24 -03002096 int okFl = !0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002097
2098 cm = &hdw->hdw_desc->client_modules;
2099 for (idx = 0; idx < cm->cnt; idx++) {
2100 request_module(cm->lst[idx]);
2101 }
2102
2103 ct = &hdw->hdw_desc->client_table;
2104 for (idx = 0; idx < ct->cnt; idx++) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002105 if (pvr2_hdw_load_subdev(hdw, &ct->lst[idx]) < 0) okFl = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002106 }
Mike Isely27108142009-10-12 00:21:20 -03002107 if (!okFl) {
2108 hdw->flag_modulefail = !0;
2109 pvr2_hdw_render_useless(hdw);
2110 }
Mike Iselye9c64a72009-03-06 23:42:20 -03002111}
2112
2113
Mike Iselyd8554972006-06-26 20:58:46 -03002114static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
2115{
2116 int ret;
2117 unsigned int idx;
2118 struct pvr2_ctrl *cptr;
2119 int reloadFl = 0;
Mike Isely989eb152007-11-26 01:53:12 -03002120 if (hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03002121 if (!reloadFl) {
2122 reloadFl =
2123 (hdw->usb_intf->cur_altsetting->desc.bNumEndpoints
2124 == 0);
2125 if (reloadFl) {
2126 pvr2_trace(PVR2_TRACE_INIT,
2127 "USB endpoint config looks strange"
2128 "; possibly firmware needs to be"
2129 " loaded");
2130 }
2131 }
2132 if (!reloadFl) {
2133 reloadFl = !pvr2_hdw_check_firmware(hdw);
2134 if (reloadFl) {
2135 pvr2_trace(PVR2_TRACE_INIT,
2136 "Check for FX2 firmware failed"
2137 "; possibly firmware needs to be"
2138 " loaded");
2139 }
2140 }
Mike Iselyd8554972006-06-26 20:58:46 -03002141 if (reloadFl) {
Mike Isely1d643a32007-09-08 22:18:50 -03002142 if (pvr2_upload_firmware1(hdw) != 0) {
2143 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2144 "Failure uploading firmware1");
2145 }
2146 return;
Mike Iselyd8554972006-06-26 20:58:46 -03002147 }
2148 }
Mike Iselyd8554972006-06-26 20:58:46 -03002149 hdw->fw1_state = FW1_STATE_OK;
2150
Mike Iselyd8554972006-06-26 20:58:46 -03002151 if (!pvr2_hdw_dev_ok(hdw)) return;
2152
Mike Isely27764722009-03-07 01:57:25 -03002153 hdw->force_dirty = !0;
2154
Mike Isely989eb152007-11-26 01:53:12 -03002155 if (!hdw->hdw_desc->flag_no_powerup) {
Mike Isely1d643a32007-09-08 22:18:50 -03002156 pvr2_hdw_cmd_powerup(hdw);
2157 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002158 }
2159
Mike Isely31335b12008-07-25 19:35:31 -03002160 /* Take the IR chip out of reset, if appropriate */
Mike Isely27eab382009-04-06 01:51:38 -03002161 if (hdw->ir_scheme_active == PVR2_IR_SCHEME_ZILOG) {
Mike Isely31335b12008-07-25 19:35:31 -03002162 pvr2_issue_simple_cmd(hdw,
2163 FX2CMD_HCW_ZILOG_RESET |
2164 (1 << 8) |
2165 ((0) << 16));
2166 }
2167
Mike Iselyd8554972006-06-26 20:58:46 -03002168 // This step MUST happen after the earlier powerup step.
2169 pvr2_i2c_core_init(hdw);
2170 if (!pvr2_hdw_dev_ok(hdw)) return;
2171
Mike Iselye9c64a72009-03-06 23:42:20 -03002172 pvr2_hdw_load_modules(hdw);
Mike Isely1ab5e742009-03-07 00:24:24 -03002173 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselye9c64a72009-03-06 23:42:20 -03002174
Hans Verkuilcc26b072009-03-29 19:20:26 -03002175 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, load_fw);
Mike Isely5c6cb4e2009-03-07 01:59:34 -03002176
Mike Iselyc05c0462006-06-25 20:04:25 -03002177 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002178 cptr = hdw->controls + idx;
2179 if (cptr->info->skip_init) continue;
2180 if (!cptr->info->set_value) continue;
2181 cptr->info->set_value(cptr,~0,cptr->info->default_value);
2182 }
2183
Mike Iselye17d7872009-06-20 14:45:52 -03002184 pvr2_hdw_cx25840_vbi_hack(hdw);
2185
Mike Isely1bde0282006-12-27 23:30:13 -03002186 /* Set up special default values for the television and radio
2187 frequencies here. It's not really important what these defaults
2188 are, but I set them to something usable in the Chicago area just
2189 to make driver testing a little easier. */
2190
Michael Krufky5a4f5da62008-05-11 16:37:50 -03002191 hdw->freqValTelevision = default_tv_freq;
2192 hdw->freqValRadio = default_radio_freq;
Mike Isely1bde0282006-12-27 23:30:13 -03002193
Mike Iselyd8554972006-06-26 20:58:46 -03002194 // Do not use pvr2_reset_ctl_endpoints() here. It is not
2195 // thread-safe against the normal pvr2_send_request() mechanism.
2196 // (We should make it thread safe).
2197
Mike Iselyaaf78842007-11-26 02:04:11 -03002198 if (hdw->hdw_desc->flag_has_hauppauge_rom) {
2199 ret = pvr2_hdw_get_eeprom_addr(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002200 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyaaf78842007-11-26 02:04:11 -03002201 if (ret < 0) {
2202 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2203 "Unable to determine location of eeprom,"
2204 " skipping");
2205 } else {
2206 hdw->eeprom_addr = ret;
2207 pvr2_eeprom_analyze(hdw);
2208 if (!pvr2_hdw_dev_ok(hdw)) return;
2209 }
2210 } else {
2211 hdw->tuner_type = hdw->hdw_desc->default_tuner_type;
2212 hdw->tuner_updated = !0;
2213 hdw->std_mask_eeprom = V4L2_STD_ALL;
Mike Iselyd8554972006-06-26 20:58:46 -03002214 }
2215
Mike Isely13a88792009-01-14 04:22:56 -03002216 if (hdw->serial_number) {
2217 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2218 "sn-%lu", hdw->serial_number);
2219 } else if (hdw->unit_number >= 0) {
2220 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2221 "unit-%c",
2222 hdw->unit_number + 'a');
2223 } else {
2224 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2225 "unit-??");
2226 }
2227 hdw->identifier[idx] = 0;
2228
Mike Iselyd8554972006-06-26 20:58:46 -03002229 pvr2_hdw_setup_std(hdw);
2230
2231 if (!get_default_tuner_type(hdw)) {
2232 pvr2_trace(PVR2_TRACE_INIT,
2233 "pvr2_hdw_setup: Tuner type overridden to %d",
2234 hdw->tuner_type);
2235 }
2236
Mike Iselyd8554972006-06-26 20:58:46 -03002237
2238 if (!pvr2_hdw_dev_ok(hdw)) return;
2239
Mike Isely1df59f02008-04-21 03:50:39 -03002240 if (hdw->hdw_desc->signal_routing_scheme ==
2241 PVR2_ROUTING_SCHEME_GOTVIEW) {
2242 /* Ensure that GPIO 11 is set to output for GOTVIEW
2243 hardware. */
2244 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
2245 }
2246
Mike Isely681c7392007-11-26 01:48:52 -03002247 pvr2_hdw_commit_setup(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002248
2249 hdw->vid_stream = pvr2_stream_create();
2250 if (!pvr2_hdw_dev_ok(hdw)) return;
2251 pvr2_trace(PVR2_TRACE_INIT,
2252 "pvr2_hdw_setup: video stream is %p",hdw->vid_stream);
2253 if (hdw->vid_stream) {
2254 idx = get_default_error_tolerance(hdw);
2255 if (idx) {
2256 pvr2_trace(PVR2_TRACE_INIT,
2257 "pvr2_hdw_setup: video stream %p"
2258 " setting tolerance %u",
2259 hdw->vid_stream,idx);
2260 }
2261 pvr2_stream_setup(hdw->vid_stream,hdw->usb_dev,
2262 PVR2_VID_ENDPOINT,idx);
2263 }
2264
2265 if (!pvr2_hdw_dev_ok(hdw)) return;
2266
Mike Iselyd8554972006-06-26 20:58:46 -03002267 hdw->flag_init_ok = !0;
Mike Isely681c7392007-11-26 01:48:52 -03002268
2269 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002270}
2271
2272
Mike Isely681c7392007-11-26 01:48:52 -03002273/* Set up the structure and attempt to put the device into a usable state.
2274 This can be a time-consuming operation, which is why it is not done
2275 internally as part of the create() step. */
2276static void pvr2_hdw_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002277{
2278 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) begin",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002279 do {
Mike Iselyd8554972006-06-26 20:58:46 -03002280 pvr2_hdw_setup_low(hdw);
2281 pvr2_trace(PVR2_TRACE_INIT,
2282 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
Mike Isely681c7392007-11-26 01:48:52 -03002283 hdw,pvr2_hdw_dev_ok(hdw),hdw->flag_init_ok);
Mike Iselyd8554972006-06-26 20:58:46 -03002284 if (pvr2_hdw_dev_ok(hdw)) {
Mike Isely681c7392007-11-26 01:48:52 -03002285 if (hdw->flag_init_ok) {
Mike Iselyd8554972006-06-26 20:58:46 -03002286 pvr2_trace(
2287 PVR2_TRACE_INFO,
2288 "Device initialization"
2289 " completed successfully.");
2290 break;
2291 }
2292 if (hdw->fw1_state == FW1_STATE_RELOAD) {
2293 pvr2_trace(
2294 PVR2_TRACE_INFO,
2295 "Device microcontroller firmware"
2296 " (re)loaded; it should now reset"
2297 " and reconnect.");
2298 break;
2299 }
2300 pvr2_trace(
2301 PVR2_TRACE_ERROR_LEGS,
2302 "Device initialization was not successful.");
2303 if (hdw->fw1_state == FW1_STATE_MISSING) {
2304 pvr2_trace(
2305 PVR2_TRACE_ERROR_LEGS,
2306 "Giving up since device"
2307 " microcontroller firmware"
2308 " appears to be missing.");
2309 break;
2310 }
2311 }
Mike Isely27108142009-10-12 00:21:20 -03002312 if (hdw->flag_modulefail) {
2313 pvr2_trace(
2314 PVR2_TRACE_ERROR_LEGS,
2315 "***WARNING*** pvrusb2 driver initialization"
2316 " failed due to the failure of one or more"
2317 " sub-device kernel modules.");
2318 pvr2_trace(
2319 PVR2_TRACE_ERROR_LEGS,
2320 "You need to resolve the failing condition"
2321 " before this driver can function. There"
2322 " should be some earlier messages giving more"
2323 " information about the problem.");
Mike Isely515ebf72009-10-12 00:27:38 -03002324 break;
Mike Isely27108142009-10-12 00:21:20 -03002325 }
Mike Iselyd8554972006-06-26 20:58:46 -03002326 if (procreload) {
2327 pvr2_trace(
2328 PVR2_TRACE_ERROR_LEGS,
2329 "Attempting pvrusb2 recovery by reloading"
2330 " primary firmware.");
2331 pvr2_trace(
2332 PVR2_TRACE_ERROR_LEGS,
2333 "If this works, device should disconnect"
2334 " and reconnect in a sane state.");
2335 hdw->fw1_state = FW1_STATE_UNKNOWN;
2336 pvr2_upload_firmware1(hdw);
2337 } else {
2338 pvr2_trace(
2339 PVR2_TRACE_ERROR_LEGS,
2340 "***WARNING*** pvrusb2 device hardware"
2341 " appears to be jammed"
2342 " and I can't clear it.");
2343 pvr2_trace(
2344 PVR2_TRACE_ERROR_LEGS,
2345 "You might need to power cycle"
2346 " the pvrusb2 device"
2347 " in order to recover.");
2348 }
Mike Isely681c7392007-11-26 01:48:52 -03002349 } while (0);
Mike Iselyd8554972006-06-26 20:58:46 -03002350 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) end",hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002351}
2352
2353
Mike Iselyc4a88282008-04-22 14:45:44 -03002354/* Perform second stage initialization. Set callback pointer first so that
2355 we can avoid a possible initialization race (if the kernel thread runs
2356 before the callback has been set). */
Mike Isely794b1602008-04-22 14:45:45 -03002357int pvr2_hdw_initialize(struct pvr2_hdw *hdw,
2358 void (*callback_func)(void *),
2359 void *callback_data)
Mike Iselyc4a88282008-04-22 14:45:44 -03002360{
2361 LOCK_TAKE(hdw->big_lock); do {
Mike Isely97f26ff2008-04-07 02:22:43 -03002362 if (hdw->flag_disconnected) {
2363 /* Handle a race here: If we're already
2364 disconnected by this point, then give up. If we
2365 get past this then we'll remain connected for
2366 the duration of initialization since the entire
2367 initialization sequence is now protected by the
2368 big_lock. */
2369 break;
2370 }
Mike Iselyc4a88282008-04-22 14:45:44 -03002371 hdw->state_data = callback_data;
2372 hdw->state_func = callback_func;
Mike Isely97f26ff2008-04-07 02:22:43 -03002373 pvr2_hdw_setup(hdw);
Mike Iselyc4a88282008-04-22 14:45:44 -03002374 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely794b1602008-04-22 14:45:45 -03002375 return hdw->flag_init_ok;
Mike Iselyc4a88282008-04-22 14:45:44 -03002376}
2377
2378
2379/* Create, set up, and return a structure for interacting with the
2380 underlying hardware. */
Mike Iselyd8554972006-06-26 20:58:46 -03002381struct pvr2_hdw *pvr2_hdw_create(struct usb_interface *intf,
2382 const struct usb_device_id *devid)
2383{
Mike Isely7fb20fa2008-04-22 14:45:37 -03002384 unsigned int idx,cnt1,cnt2,m;
Mike Iselyfe15f132008-08-30 18:11:40 -03002385 struct pvr2_hdw *hdw = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002386 int valid_std_mask;
2387 struct pvr2_ctrl *cptr;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002388 struct usb_device *usb_dev;
Mike Isely989eb152007-11-26 01:53:12 -03002389 const struct pvr2_device_desc *hdw_desc;
Mike Iselyd8554972006-06-26 20:58:46 -03002390 __u8 ifnum;
Mike Iselyb30d2442006-06-25 20:05:01 -03002391 struct v4l2_queryctrl qctrl;
2392 struct pvr2_ctl_info *ciptr;
Mike Iselyd8554972006-06-26 20:58:46 -03002393
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002394 usb_dev = interface_to_usbdev(intf);
2395
Mike Iselyd130fa82007-12-08 17:20:06 -03002396 hdw_desc = (const struct pvr2_device_desc *)(devid->driver_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002397
Mike Iselyfe15f132008-08-30 18:11:40 -03002398 if (hdw_desc == NULL) {
2399 pvr2_trace(PVR2_TRACE_INIT, "pvr2_hdw_create:"
2400 " No device description pointer,"
2401 " unable to continue.");
2402 pvr2_trace(PVR2_TRACE_INIT, "If you have a new device type,"
2403 " please contact Mike Isely <isely@pobox.com>"
2404 " to get it included in the driver\n");
2405 goto fail;
2406 }
2407
Mike Iselyca545f72007-01-20 00:37:11 -03002408 hdw = kzalloc(sizeof(*hdw),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -03002409 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_create: hdw=%p, type \"%s\"",
Mike Isely989eb152007-11-26 01:53:12 -03002410 hdw,hdw_desc->description);
Mike Iselye67e3762009-10-12 00:28:19 -03002411 pvr2_trace(PVR2_TRACE_INFO, "Hardware description: %s",
Mike Isely00970be2009-10-12 00:23:37 -03002412 hdw_desc->description);
Mike Isely8fd04442010-05-15 00:13:35 -03002413 if (hdw_desc->flag_is_experimental) {
2414 pvr2_trace(PVR2_TRACE_INFO, "**********");
2415 pvr2_trace(PVR2_TRACE_INFO,
2416 "WARNING: Support for this device (%s) is"
2417 " experimental.", hdw_desc->description);
2418 pvr2_trace(PVR2_TRACE_INFO,
2419 "Important functionality might not be"
2420 " entirely working.");
2421 pvr2_trace(PVR2_TRACE_INFO,
2422 "Please consider contacting the driver author to"
2423 " help with further stabilization of the driver.");
2424 pvr2_trace(PVR2_TRACE_INFO, "**********");
2425 }
Mike Iselyd8554972006-06-26 20:58:46 -03002426 if (!hdw) goto fail;
Mike Isely681c7392007-11-26 01:48:52 -03002427
2428 init_timer(&hdw->quiescent_timer);
2429 hdw->quiescent_timer.data = (unsigned long)hdw;
2430 hdw->quiescent_timer.function = pvr2_hdw_quiescent_timeout;
2431
Mike Isely6e931372010-02-06 02:10:38 -03002432 init_timer(&hdw->decoder_stabilization_timer);
2433 hdw->decoder_stabilization_timer.data = (unsigned long)hdw;
2434 hdw->decoder_stabilization_timer.function =
2435 pvr2_hdw_decoder_stabilization_timeout;
2436
Mike Isely681c7392007-11-26 01:48:52 -03002437 init_timer(&hdw->encoder_wait_timer);
2438 hdw->encoder_wait_timer.data = (unsigned long)hdw;
2439 hdw->encoder_wait_timer.function = pvr2_hdw_encoder_wait_timeout;
2440
Mike Iselyd913d632008-04-06 04:04:35 -03002441 init_timer(&hdw->encoder_run_timer);
2442 hdw->encoder_run_timer.data = (unsigned long)hdw;
2443 hdw->encoder_run_timer.function = pvr2_hdw_encoder_run_timeout;
2444
Mike Isely681c7392007-11-26 01:48:52 -03002445 hdw->master_state = PVR2_STATE_DEAD;
2446
2447 init_waitqueue_head(&hdw->state_wait_data);
2448
Mike Isely18103c572007-01-20 00:09:47 -03002449 hdw->tuner_signal_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -03002450 cx2341x_fill_defaults(&hdw->enc_ctl_state);
Mike Iselyd8554972006-06-26 20:58:46 -03002451
Mike Isely7fb20fa2008-04-22 14:45:37 -03002452 /* Calculate which inputs are OK */
2453 m = 0;
2454 if (hdw_desc->flag_has_analogtuner) m |= 1 << PVR2_CVAL_INPUT_TV;
Mike Iselye8f5bac2008-04-22 14:45:40 -03002455 if (hdw_desc->digital_control_scheme != PVR2_DIGITAL_SCHEME_NONE) {
2456 m |= 1 << PVR2_CVAL_INPUT_DTV;
2457 }
Mike Isely7fb20fa2008-04-22 14:45:37 -03002458 if (hdw_desc->flag_has_svideo) m |= 1 << PVR2_CVAL_INPUT_SVIDEO;
2459 if (hdw_desc->flag_has_composite) m |= 1 << PVR2_CVAL_INPUT_COMPOSITE;
2460 if (hdw_desc->flag_has_fmradio) m |= 1 << PVR2_CVAL_INPUT_RADIO;
2461 hdw->input_avail_mask = m;
Mike Isely1cb03b72008-04-21 03:47:43 -03002462 hdw->input_allowed_mask = hdw->input_avail_mask;
Mike Isely7fb20fa2008-04-22 14:45:37 -03002463
Mike Isely62433e32008-04-22 14:45:40 -03002464 /* If not a hybrid device, pathway_state never changes. So
2465 initialize it here to what it should forever be. */
2466 if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_DTV))) {
2467 hdw->pathway_state = PVR2_PATHWAY_ANALOG;
2468 } else if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_TV))) {
2469 hdw->pathway_state = PVR2_PATHWAY_DIGITAL;
2470 }
2471
Mike Iselyc05c0462006-06-25 20:04:25 -03002472 hdw->control_cnt = CTRLDEF_COUNT;
Mike Iselyb30d2442006-06-25 20:05:01 -03002473 hdw->control_cnt += MPEGDEF_COUNT;
Mike Iselyca545f72007-01-20 00:37:11 -03002474 hdw->controls = kzalloc(sizeof(struct pvr2_ctrl) * hdw->control_cnt,
Mike Iselyd8554972006-06-26 20:58:46 -03002475 GFP_KERNEL);
2476 if (!hdw->controls) goto fail;
Mike Isely989eb152007-11-26 01:53:12 -03002477 hdw->hdw_desc = hdw_desc;
Mike Isely27eab382009-04-06 01:51:38 -03002478 hdw->ir_scheme_active = hdw->hdw_desc->ir_scheme;
Mike Iselyc05c0462006-06-25 20:04:25 -03002479 for (idx = 0; idx < hdw->control_cnt; idx++) {
2480 cptr = hdw->controls + idx;
2481 cptr->hdw = hdw;
2482 }
Mike Iselyd8554972006-06-26 20:58:46 -03002483 for (idx = 0; idx < 32; idx++) {
2484 hdw->std_mask_ptrs[idx] = hdw->std_mask_names[idx];
2485 }
Mike Iselyc05c0462006-06-25 20:04:25 -03002486 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002487 cptr = hdw->controls + idx;
Mike Iselyd8554972006-06-26 20:58:46 -03002488 cptr->info = control_defs+idx;
2489 }
Mike Iselydbc40a02008-04-22 14:45:39 -03002490
2491 /* Ensure that default input choice is a valid one. */
2492 m = hdw->input_avail_mask;
2493 if (m) for (idx = 0; idx < (sizeof(m) << 3); idx++) {
2494 if (!((1 << idx) & m)) continue;
2495 hdw->input_val = idx;
2496 break;
2497 }
2498
Mike Iselyb30d2442006-06-25 20:05:01 -03002499 /* Define and configure additional controls from cx2341x module. */
Thomas Meyere79c70e2011-11-29 17:08:00 -03002500 hdw->mpeg_ctrl_info = kcalloc(MPEGDEF_COUNT,
2501 sizeof(*(hdw->mpeg_ctrl_info)),
2502 GFP_KERNEL);
Mike Iselyb30d2442006-06-25 20:05:01 -03002503 if (!hdw->mpeg_ctrl_info) goto fail;
Mike Iselyb30d2442006-06-25 20:05:01 -03002504 for (idx = 0; idx < MPEGDEF_COUNT; idx++) {
2505 cptr = hdw->controls + idx + CTRLDEF_COUNT;
2506 ciptr = &(hdw->mpeg_ctrl_info[idx].info);
2507 ciptr->desc = hdw->mpeg_ctrl_info[idx].desc;
2508 ciptr->name = mpeg_ids[idx].strid;
2509 ciptr->v4l_id = mpeg_ids[idx].id;
2510 ciptr->skip_init = !0;
2511 ciptr->get_value = ctrl_cx2341x_get;
2512 ciptr->get_v4lflags = ctrl_cx2341x_getv4lflags;
2513 ciptr->is_dirty = ctrl_cx2341x_is_dirty;
2514 if (!idx) ciptr->clear_dirty = ctrl_cx2341x_clear_dirty;
2515 qctrl.id = ciptr->v4l_id;
2516 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl);
2517 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) {
2518 ciptr->set_value = ctrl_cx2341x_set;
2519 }
2520 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name,
2521 PVR2_CTLD_INFO_DESC_SIZE);
2522 hdw->mpeg_ctrl_info[idx].desc[PVR2_CTLD_INFO_DESC_SIZE-1] = 0;
2523 ciptr->default_value = qctrl.default_value;
2524 switch (qctrl.type) {
2525 default:
2526 case V4L2_CTRL_TYPE_INTEGER:
2527 ciptr->type = pvr2_ctl_int;
2528 ciptr->def.type_int.min_value = qctrl.minimum;
2529 ciptr->def.type_int.max_value = qctrl.maximum;
2530 break;
2531 case V4L2_CTRL_TYPE_BOOLEAN:
2532 ciptr->type = pvr2_ctl_bool;
2533 break;
2534 case V4L2_CTRL_TYPE_MENU:
2535 ciptr->type = pvr2_ctl_enum;
2536 ciptr->def.type_enum.value_names =
Hans Verkuile0e31cd2008-06-22 12:03:28 -03002537 cx2341x_ctrl_get_menu(&hdw->enc_ctl_state,
2538 ciptr->v4l_id);
Mike Iselyb30d2442006-06-25 20:05:01 -03002539 for (cnt1 = 0;
2540 ciptr->def.type_enum.value_names[cnt1] != NULL;
2541 cnt1++) { }
2542 ciptr->def.type_enum.count = cnt1;
2543 break;
2544 }
2545 cptr->info = ciptr;
2546 }
Mike Iselyd8554972006-06-26 20:58:46 -03002547
Mike Iselyd8554972006-06-26 20:58:46 -03002548 // Initialize control data regarding video standard masks
2549 valid_std_mask = pvr2_std_get_usable();
2550 for (idx = 0; idx < 32; idx++) {
2551 if (!(valid_std_mask & (1 << idx))) continue;
2552 cnt1 = pvr2_std_id_to_str(
2553 hdw->std_mask_names[idx],
2554 sizeof(hdw->std_mask_names[idx])-1,
2555 1 << idx);
2556 hdw->std_mask_names[idx][cnt1] = 0;
2557 }
2558 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDAVAIL);
2559 if (cptr) {
2560 memcpy(&hdw->std_info_avail,cptr->info,
2561 sizeof(hdw->std_info_avail));
2562 cptr->info = &hdw->std_info_avail;
2563 hdw->std_info_avail.def.type_bitmask.bit_names =
2564 hdw->std_mask_ptrs;
2565 hdw->std_info_avail.def.type_bitmask.valid_bits =
2566 valid_std_mask;
2567 }
2568 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR);
2569 if (cptr) {
2570 memcpy(&hdw->std_info_cur,cptr->info,
2571 sizeof(hdw->std_info_cur));
2572 cptr->info = &hdw->std_info_cur;
2573 hdw->std_info_cur.def.type_bitmask.bit_names =
2574 hdw->std_mask_ptrs;
Mike Iselyac04d002012-02-20 02:28:56 -03002575 hdw->std_info_cur.def.type_bitmask.valid_bits =
2576 valid_std_mask;
2577 }
2578 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDDETECT);
2579 if (cptr) {
2580 memcpy(&hdw->std_info_detect,cptr->info,
2581 sizeof(hdw->std_info_detect));
2582 cptr->info = &hdw->std_info_detect;
2583 hdw->std_info_detect.def.type_bitmask.bit_names =
2584 hdw->std_mask_ptrs;
2585 hdw->std_info_detect.def.type_bitmask.valid_bits =
Mike Iselyd8554972006-06-26 20:58:46 -03002586 valid_std_mask;
2587 }
2588
Mike Isely432907f2008-08-31 21:02:20 -03002589 hdw->cropcap_stale = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002590 hdw->eeprom_addr = -1;
2591 hdw->unit_number = -1;
Mike Isely80793842006-12-27 23:12:28 -03002592 hdw->v4l_minor_number_video = -1;
2593 hdw->v4l_minor_number_vbi = -1;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03002594 hdw->v4l_minor_number_radio = -1;
Mike Iselyd8554972006-06-26 20:58:46 -03002595 hdw->ctl_write_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2596 if (!hdw->ctl_write_buffer) goto fail;
2597 hdw->ctl_read_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2598 if (!hdw->ctl_read_buffer) goto fail;
2599 hdw->ctl_write_urb = usb_alloc_urb(0,GFP_KERNEL);
2600 if (!hdw->ctl_write_urb) goto fail;
2601 hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
2602 if (!hdw->ctl_read_urb) goto fail;
2603
Janne Grunau70ad6382009-04-01 08:46:50 -03002604 if (v4l2_device_register(&intf->dev, &hdw->v4l2_dev) != 0) {
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002605 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2606 "Error registering with v4l core, giving up");
2607 goto fail;
2608 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002609 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002610 for (idx = 0; idx < PVR_NUM; idx++) {
2611 if (unit_pointers[idx]) continue;
2612 hdw->unit_number = idx;
2613 unit_pointers[idx] = hdw;
2614 break;
2615 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002616 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -03002617
2618 cnt1 = 0;
2619 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2");
2620 cnt1 += cnt2;
2621 if (hdw->unit_number >= 0) {
2622 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c",
2623 ('a' + hdw->unit_number));
2624 cnt1 += cnt2;
2625 }
2626 if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1;
2627 hdw->name[cnt1] = 0;
2628
Mike Isely681c7392007-11-26 01:48:52 -03002629 hdw->workqueue = create_singlethread_workqueue(hdw->name);
2630 INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll);
Mike Isely681c7392007-11-26 01:48:52 -03002631
Mike Iselyd8554972006-06-26 20:58:46 -03002632 pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s",
2633 hdw->unit_number,hdw->name);
2634
2635 hdw->tuner_type = -1;
2636 hdw->flag_ok = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002637
2638 hdw->usb_intf = intf;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002639 hdw->usb_dev = usb_dev;
Mike Iselyd8554972006-06-26 20:58:46 -03002640
Mike Isely87e34952009-01-23 01:20:24 -03002641 usb_make_path(hdw->usb_dev, hdw->bus_info, sizeof(hdw->bus_info));
Mike Isely31a18542007-04-08 01:11:47 -03002642
Mike Iselyd8554972006-06-26 20:58:46 -03002643 ifnum = hdw->usb_intf->cur_altsetting->desc.bInterfaceNumber;
2644 usb_set_interface(hdw->usb_dev,ifnum,0);
2645
2646 mutex_init(&hdw->ctl_lock_mutex);
2647 mutex_init(&hdw->big_lock_mutex);
2648
2649 return hdw;
2650 fail:
2651 if (hdw) {
Mike Isely681c7392007-11-26 01:48:52 -03002652 del_timer_sync(&hdw->quiescent_timer);
Mike Isely6e931372010-02-06 02:10:38 -03002653 del_timer_sync(&hdw->decoder_stabilization_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002654 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03002655 del_timer_sync(&hdw->encoder_wait_timer);
2656 if (hdw->workqueue) {
2657 flush_workqueue(hdw->workqueue);
2658 destroy_workqueue(hdw->workqueue);
2659 hdw->workqueue = NULL;
2660 }
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01002661 usb_free_urb(hdw->ctl_read_urb);
2662 usb_free_urb(hdw->ctl_write_urb);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002663 kfree(hdw->ctl_read_buffer);
2664 kfree(hdw->ctl_write_buffer);
2665 kfree(hdw->controls);
2666 kfree(hdw->mpeg_ctrl_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002667 kfree(hdw);
2668 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002669 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002670}
2671
2672
2673/* Remove _all_ associations between this driver and the underlying USB
2674 layer. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03002675static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002676{
2677 if (hdw->flag_disconnected) return;
2678 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw);
2679 if (hdw->ctl_read_urb) {
2680 usb_kill_urb(hdw->ctl_read_urb);
2681 usb_free_urb(hdw->ctl_read_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002682 hdw->ctl_read_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002683 }
2684 if (hdw->ctl_write_urb) {
2685 usb_kill_urb(hdw->ctl_write_urb);
2686 usb_free_urb(hdw->ctl_write_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002687 hdw->ctl_write_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002688 }
2689 if (hdw->ctl_read_buffer) {
2690 kfree(hdw->ctl_read_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002691 hdw->ctl_read_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002692 }
2693 if (hdw->ctl_write_buffer) {
2694 kfree(hdw->ctl_write_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002695 hdw->ctl_write_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002696 }
Mike Iselyd8554972006-06-26 20:58:46 -03002697 hdw->flag_disconnected = !0;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002698 /* If we don't do this, then there will be a dangling struct device
2699 reference to our disappearing device persisting inside the V4L
2700 core... */
Mike Iselydc070bc2009-03-25 00:30:45 -03002701 v4l2_device_disconnect(&hdw->v4l2_dev);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002702 hdw->usb_dev = NULL;
2703 hdw->usb_intf = NULL;
Mike Isely681c7392007-11-26 01:48:52 -03002704 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002705}
2706
2707
2708/* Destroy hardware interaction structure */
2709void pvr2_hdw_destroy(struct pvr2_hdw *hdw)
2710{
Mike Isely401c27c2007-09-08 22:11:46 -03002711 if (!hdw) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002712 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_destroy: hdw=%p",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002713 if (hdw->workqueue) {
2714 flush_workqueue(hdw->workqueue);
2715 destroy_workqueue(hdw->workqueue);
2716 hdw->workqueue = NULL;
2717 }
Mike Isely8f591002008-04-22 14:45:45 -03002718 del_timer_sync(&hdw->quiescent_timer);
Mike Isely6e931372010-02-06 02:10:38 -03002719 del_timer_sync(&hdw->decoder_stabilization_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002720 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely8f591002008-04-22 14:45:45 -03002721 del_timer_sync(&hdw->encoder_wait_timer);
Mike Iselyd8554972006-06-26 20:58:46 -03002722 if (hdw->fw_buffer) {
2723 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002724 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002725 }
2726 if (hdw->vid_stream) {
2727 pvr2_stream_destroy(hdw->vid_stream);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002728 hdw->vid_stream = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002729 }
Mike Iselyd8554972006-06-26 20:58:46 -03002730 pvr2_i2c_core_done(hdw);
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002731 v4l2_device_unregister(&hdw->v4l2_dev);
Mike Iselyd8554972006-06-26 20:58:46 -03002732 pvr2_hdw_remove_usb_stuff(hdw);
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002733 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002734 if ((hdw->unit_number >= 0) &&
2735 (hdw->unit_number < PVR_NUM) &&
2736 (unit_pointers[hdw->unit_number] == hdw)) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002737 unit_pointers[hdw->unit_number] = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002738 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002739 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002740 kfree(hdw->controls);
2741 kfree(hdw->mpeg_ctrl_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002742 kfree(hdw);
2743}
2744
2745
Mike Iselyd8554972006-06-26 20:58:46 -03002746int pvr2_hdw_dev_ok(struct pvr2_hdw *hdw)
2747{
2748 return (hdw && hdw->flag_ok);
2749}
2750
2751
2752/* Called when hardware has been unplugged */
2753void pvr2_hdw_disconnect(struct pvr2_hdw *hdw)
2754{
2755 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw);
2756 LOCK_TAKE(hdw->big_lock);
2757 LOCK_TAKE(hdw->ctl_lock);
2758 pvr2_hdw_remove_usb_stuff(hdw);
2759 LOCK_GIVE(hdw->ctl_lock);
2760 LOCK_GIVE(hdw->big_lock);
2761}
2762
2763
Mike Iselyd8554972006-06-26 20:58:46 -03002764/* Get the number of defined controls */
2765unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw *hdw)
2766{
Mike Iselyc05c0462006-06-25 20:04:25 -03002767 return hdw->control_cnt;
Mike Iselyd8554972006-06-26 20:58:46 -03002768}
2769
2770
2771/* Retrieve a control handle given its index (0..count-1) */
2772struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw *hdw,
2773 unsigned int idx)
2774{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002775 if (idx >= hdw->control_cnt) return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002776 return hdw->controls + idx;
2777}
2778
2779
2780/* Retrieve a control handle given its index (0..count-1) */
2781struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw *hdw,
2782 unsigned int ctl_id)
2783{
2784 struct pvr2_ctrl *cptr;
2785 unsigned int idx;
2786 int i;
2787
2788 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002789 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002790 cptr = hdw->controls + idx;
2791 i = cptr->info->internal_id;
2792 if (i && (i == ctl_id)) return cptr;
2793 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002794 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002795}
2796
2797
Mike Iselya761f432006-06-25 20:04:44 -03002798/* Given a V4L ID, retrieve the control structure associated with it. */
Mike Iselyd8554972006-06-26 20:58:46 -03002799struct pvr2_ctrl *pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw *hdw,unsigned int ctl_id)
2800{
2801 struct pvr2_ctrl *cptr;
2802 unsigned int idx;
2803 int i;
2804
2805 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002806 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002807 cptr = hdw->controls + idx;
2808 i = cptr->info->v4l_id;
2809 if (i && (i == ctl_id)) return cptr;
2810 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002811 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002812}
2813
2814
Mike Iselya761f432006-06-25 20:04:44 -03002815/* Given a V4L ID for its immediate predecessor, retrieve the control
2816 structure associated with it. */
2817struct pvr2_ctrl *pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw *hdw,
2818 unsigned int ctl_id)
2819{
2820 struct pvr2_ctrl *cptr,*cp2;
2821 unsigned int idx;
2822 int i;
2823
2824 /* This could be made a lot more efficient, but for now... */
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002825 cp2 = NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002826 for (idx = 0; idx < hdw->control_cnt; idx++) {
2827 cptr = hdw->controls + idx;
2828 i = cptr->info->v4l_id;
2829 if (!i) continue;
2830 if (i <= ctl_id) continue;
2831 if (cp2 && (cp2->info->v4l_id < i)) continue;
2832 cp2 = cptr;
2833 }
2834 return cp2;
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002835 return NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002836}
2837
2838
Mike Iselyd8554972006-06-26 20:58:46 -03002839static const char *get_ctrl_typename(enum pvr2_ctl_type tp)
2840{
2841 switch (tp) {
2842 case pvr2_ctl_int: return "integer";
2843 case pvr2_ctl_enum: return "enum";
Mike Isely33213962006-06-25 20:04:40 -03002844 case pvr2_ctl_bool: return "boolean";
Mike Iselyd8554972006-06-26 20:58:46 -03002845 case pvr2_ctl_bitmask: return "bitmask";
2846 }
2847 return "";
2848}
2849
2850
Mike Isely2641df32009-03-07 00:13:25 -03002851static void pvr2_subdev_set_control(struct pvr2_hdw *hdw, int id,
2852 const char *name, int val)
2853{
2854 struct v4l2_control ctrl;
2855 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 %s=%d", name, val);
2856 memset(&ctrl, 0, sizeof(ctrl));
2857 ctrl.id = id;
2858 ctrl.value = val;
2859 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, s_ctrl, &ctrl);
2860}
2861
2862#define PVR2_SUBDEV_SET_CONTROL(hdw, id, lab) \
Mike Isely27764722009-03-07 01:57:25 -03002863 if ((hdw)->lab##_dirty || (hdw)->force_dirty) { \
Mike Isely2641df32009-03-07 00:13:25 -03002864 pvr2_subdev_set_control(hdw, id, #lab, (hdw)->lab##_val); \
2865 }
2866
Mike Iselyac04d002012-02-20 02:28:56 -03002867v4l2_std_id pvr2_hdw_get_detected_std(struct pvr2_hdw *hdw)
Mauro Carvalho Chehab7383a472011-10-03 12:22:28 -03002868{
Mike Iselyac04d002012-02-20 02:28:56 -03002869 v4l2_std_id std;
Mike Iselyaeebb1b2012-02-20 02:40:56 -03002870 std = (v4l2_std_id)hdw->std_mask_avail;
Mauro Carvalho Chehab7383a472011-10-03 12:22:28 -03002871 v4l2_device_call_all(&hdw->v4l2_dev, 0,
Mike Iselyac04d002012-02-20 02:28:56 -03002872 video, querystd, &std);
2873 return std;
Mauro Carvalho Chehab7383a472011-10-03 12:22:28 -03002874}
2875
Mike Isely5ceaad12009-03-07 00:01:20 -03002876/* Execute whatever commands are required to update the state of all the
Mike Isely2641df32009-03-07 00:13:25 -03002877 sub-devices so that they match our current control values. */
Mike Isely5ceaad12009-03-07 00:01:20 -03002878static void pvr2_subdev_update(struct pvr2_hdw *hdw)
2879{
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002880 struct v4l2_subdev *sd;
2881 unsigned int id;
2882 pvr2_subdev_update_func fp;
2883
Mike Isely75212a02009-03-07 01:48:42 -03002884 pvr2_trace(PVR2_TRACE_CHIPS, "subdev update...");
2885
Mike Isely27764722009-03-07 01:57:25 -03002886 if (hdw->tuner_updated || hdw->force_dirty) {
Mike Isely75212a02009-03-07 01:48:42 -03002887 struct tuner_setup setup;
2888 pvr2_trace(PVR2_TRACE_CHIPS, "subdev tuner set_type(%d)",
2889 hdw->tuner_type);
2890 if (((int)(hdw->tuner_type)) >= 0) {
Mike Iselyfcd62cf2009-04-01 01:55:26 -03002891 memset(&setup, 0, sizeof(setup));
Mike Isely75212a02009-03-07 01:48:42 -03002892 setup.addr = ADDR_UNSET;
2893 setup.type = hdw->tuner_type;
2894 setup.mode_mask = T_RADIO | T_ANALOG_TV;
2895 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2896 tuner, s_type_addr, &setup);
2897 }
2898 }
2899
Mike Isely27764722009-03-07 01:57:25 -03002900 if (hdw->input_dirty || hdw->std_dirty || hdw->force_dirty) {
Mike Iselyb4818802009-03-07 01:46:17 -03002901 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_standard");
Mike Isely2641df32009-03-07 00:13:25 -03002902 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2903 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2904 tuner, s_radio);
2905 } else {
2906 v4l2_std_id vs;
2907 vs = hdw->std_mask_cur;
2908 v4l2_device_call_all(&hdw->v4l2_dev, 0,
Hans Verkuilf41737e2009-04-01 03:52:39 -03002909 core, s_std, vs);
Mike Iselya6862da2009-06-20 14:50:14 -03002910 pvr2_hdw_cx25840_vbi_hack(hdw);
Mike Isely2641df32009-03-07 00:13:25 -03002911 }
2912 hdw->tuner_signal_stale = !0;
2913 hdw->cropcap_stale = !0;
2914 }
2915
2916 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_BRIGHTNESS, brightness);
2917 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_CONTRAST, contrast);
2918 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_SATURATION, saturation);
2919 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_HUE, hue);
2920 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_MUTE, mute);
2921 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_VOLUME, volume);
2922 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BALANCE, balance);
2923 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BASS, bass);
2924 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_TREBLE, treble);
2925
Mike Isely27764722009-03-07 01:57:25 -03002926 if (hdw->input_dirty || hdw->audiomode_dirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03002927 struct v4l2_tuner vt;
2928 memset(&vt, 0, sizeof(vt));
Hans Verkuil50e9efd2011-06-12 06:39:52 -03002929 vt.type = (hdw->input_val == PVR2_CVAL_INPUT_RADIO) ?
2930 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mike Isely2641df32009-03-07 00:13:25 -03002931 vt.audmode = hdw->audiomode_val;
2932 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, s_tuner, &vt);
2933 }
2934
Mike Isely27764722009-03-07 01:57:25 -03002935 if (hdw->freqDirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03002936 unsigned long fv;
2937 struct v4l2_frequency freq;
2938 fv = pvr2_hdw_get_cur_freq(hdw);
2939 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_freq(%lu)", fv);
2940 if (hdw->tuner_signal_stale) pvr2_hdw_status_poll(hdw);
2941 memset(&freq, 0, sizeof(freq));
2942 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
2943 /* ((fv * 1000) / 62500) */
2944 freq.frequency = (fv * 2) / 125;
2945 } else {
2946 freq.frequency = fv / 62500;
2947 }
2948 /* tuner-core currently doesn't seem to care about this, but
2949 let's set it anyway for completeness. */
2950 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2951 freq.type = V4L2_TUNER_RADIO;
2952 } else {
2953 freq.type = V4L2_TUNER_ANALOG_TV;
2954 }
2955 freq.tuner = 0;
2956 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner,
2957 s_frequency, &freq);
2958 }
2959
Mike Isely27764722009-03-07 01:57:25 -03002960 if (hdw->res_hor_dirty || hdw->res_ver_dirty || hdw->force_dirty) {
Hans Verkuilfa190ee2010-05-08 17:16:18 -03002961 struct v4l2_mbus_framefmt fmt;
Mike Isely2641df32009-03-07 00:13:25 -03002962 memset(&fmt, 0, sizeof(fmt));
Hans Verkuilfa190ee2010-05-08 17:16:18 -03002963 fmt.width = hdw->res_hor_val;
2964 fmt.height = hdw->res_ver_val;
2965 fmt.code = V4L2_MBUS_FMT_FIXED;
Mike Isely7dfdf1e2009-03-07 02:11:12 -03002966 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_size(%dx%d)",
Hans Verkuilfa190ee2010-05-08 17:16:18 -03002967 fmt.width, fmt.height);
2968 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_mbus_fmt, &fmt);
Mike Isely2641df32009-03-07 00:13:25 -03002969 }
2970
Mike Isely27764722009-03-07 01:57:25 -03002971 if (hdw->srate_dirty || hdw->force_dirty) {
Mike Isely01c59df2009-03-07 00:48:09 -03002972 u32 val;
2973 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_audio %d",
2974 hdw->srate_val);
2975 switch (hdw->srate_val) {
2976 default:
2977 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000:
2978 val = 48000;
2979 break;
2980 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100:
2981 val = 44100;
2982 break;
2983 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000:
2984 val = 32000;
2985 break;
2986 }
2987 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2988 audio, s_clock_freq, val);
2989 }
2990
Mike Isely2641df32009-03-07 00:13:25 -03002991 /* Unable to set crop parameters; there is apparently no equivalent
2992 for VIDIOC_S_CROP */
2993
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002994 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
2995 id = sd->grp_id;
2996 if (id >= ARRAY_SIZE(pvr2_module_update_functions)) continue;
2997 fp = pvr2_module_update_functions[id];
2998 if (!fp) continue;
2999 (*fp)(hdw, sd);
3000 }
Mike Isely2641df32009-03-07 00:13:25 -03003001
Mike Isely27764722009-03-07 01:57:25 -03003002 if (hdw->tuner_signal_stale || hdw->cropcap_stale) {
Mike Isely2641df32009-03-07 00:13:25 -03003003 pvr2_hdw_status_poll(hdw);
3004 }
Mike Isely5ceaad12009-03-07 00:01:20 -03003005}
3006
3007
Mike Isely681c7392007-11-26 01:48:52 -03003008/* Figure out if we need to commit control changes. If so, mark internal
3009 state flags to indicate this fact and return true. Otherwise do nothing
3010 else and return false. */
3011static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003012{
Mike Iselyd8554972006-06-26 20:58:46 -03003013 unsigned int idx;
3014 struct pvr2_ctrl *cptr;
3015 int value;
Mike Isely27764722009-03-07 01:57:25 -03003016 int commit_flag = hdw->force_dirty;
Mike Iselyd8554972006-06-26 20:58:46 -03003017 char buf[100];
3018 unsigned int bcnt,ccnt;
3019
Mike Iselyc05c0462006-06-25 20:04:25 -03003020 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03003021 cptr = hdw->controls + idx;
Al Viro5fa12472008-03-29 03:07:38 +00003022 if (!cptr->info->is_dirty) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003023 if (!cptr->info->is_dirty(cptr)) continue;
Mike Iselyfe23a282007-01-20 00:10:55 -03003024 commit_flag = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003025
Mike Iselyfe23a282007-01-20 00:10:55 -03003026 if (!(pvrusb2_debug & PVR2_TRACE_CTL)) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003027 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
3028 cptr->info->name);
3029 value = 0;
3030 cptr->info->get_value(cptr,&value);
3031 pvr2_ctrl_value_to_sym_internal(cptr,~0,value,
3032 buf+bcnt,
3033 sizeof(buf)-bcnt,&ccnt);
3034 bcnt += ccnt;
3035 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
3036 get_ctrl_typename(cptr->info->type));
3037 pvr2_trace(PVR2_TRACE_CTL,
3038 "/*--TRACE_COMMIT--*/ %.*s",
3039 bcnt,buf);
3040 }
3041
3042 if (!commit_flag) {
3043 /* Nothing has changed */
3044 return 0;
3045 }
3046
Mike Isely681c7392007-11-26 01:48:52 -03003047 hdw->state_pipeline_config = 0;
3048 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3049 pvr2_hdw_state_sched(hdw);
3050
3051 return !0;
3052}
3053
3054
3055/* Perform all operations needed to commit all control changes. This must
3056 be performed in synchronization with the pipeline state and is thus
3057 expected to be called as part of the driver's worker thread. Return
3058 true if commit successful, otherwise return false to indicate that
3059 commit isn't possible at this time. */
3060static int pvr2_hdw_commit_execute(struct pvr2_hdw *hdw)
3061{
3062 unsigned int idx;
3063 struct pvr2_ctrl *cptr;
3064 int disruptive_change;
3065
Mike Isely9bf98322011-02-13 17:31:55 -03003066 if (hdw->input_dirty && hdw->state_pathway_ok &&
3067 (((hdw->input_val == PVR2_CVAL_INPUT_DTV) ?
3068 PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG) !=
3069 hdw->pathway_state)) {
3070 /* Change of mode being asked for... */
3071 hdw->state_pathway_ok = 0;
3072 trace_stbit("state_pathway_ok", hdw->state_pathway_ok);
3073 }
3074 if (!hdw->state_pathway_ok) {
3075 /* Can't commit anything until pathway is ok. */
3076 return 0;
3077 }
3078
Mike Iselyab062fe2008-06-30 03:32:35 -03003079 /* Handle some required side effects when the video standard is
3080 changed.... */
Mike Iselyd8554972006-06-26 20:58:46 -03003081 if (hdw->std_dirty) {
Mike Iselyd8554972006-06-26 20:58:46 -03003082 int nvres;
Mike Isely00528d92008-06-30 03:35:52 -03003083 int gop_size;
Mike Iselyd8554972006-06-26 20:58:46 -03003084 if (hdw->std_mask_cur & V4L2_STD_525_60) {
3085 nvres = 480;
Mike Isely00528d92008-06-30 03:35:52 -03003086 gop_size = 15;
Mike Iselyd8554972006-06-26 20:58:46 -03003087 } else {
3088 nvres = 576;
Mike Isely00528d92008-06-30 03:35:52 -03003089 gop_size = 12;
Mike Iselyd8554972006-06-26 20:58:46 -03003090 }
Mike Isely00528d92008-06-30 03:35:52 -03003091 /* Rewrite the vertical resolution to be appropriate to the
3092 video standard that has been selected. */
Mike Iselyd8554972006-06-26 20:58:46 -03003093 if (nvres != hdw->res_ver_val) {
3094 hdw->res_ver_val = nvres;
3095 hdw->res_ver_dirty = !0;
3096 }
Mike Isely00528d92008-06-30 03:35:52 -03003097 /* Rewrite the GOP size to be appropriate to the video
3098 standard that has been selected. */
3099 if (gop_size != hdw->enc_ctl_state.video_gop_size) {
3100 struct v4l2_ext_controls cs;
3101 struct v4l2_ext_control c1;
3102 memset(&cs, 0, sizeof(cs));
3103 memset(&c1, 0, sizeof(c1));
3104 cs.controls = &c1;
3105 cs.count = 1;
3106 c1.id = V4L2_CID_MPEG_VIDEO_GOP_SIZE;
3107 c1.value = gop_size;
3108 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,
3109 VIDIOC_S_EXT_CTRLS);
3110 }
Mike Iselyd8554972006-06-26 20:58:46 -03003111 }
3112
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03003113 /* The broadcast decoder can only scale down, so if
3114 * res_*_dirty && crop window < output format ==> enlarge crop.
3115 *
3116 * The mpeg encoder receives fields of res_hor_val dots and
3117 * res_ver_val halflines. Limits: hor<=720, ver<=576.
3118 */
3119 if (hdw->res_hor_dirty && hdw->cropw_val < hdw->res_hor_val) {
3120 hdw->cropw_val = hdw->res_hor_val;
3121 hdw->cropw_dirty = !0;
3122 } else if (hdw->cropw_dirty) {
3123 hdw->res_hor_dirty = !0; /* must rescale */
3124 hdw->res_hor_val = min(720, hdw->cropw_val);
3125 }
3126 if (hdw->res_ver_dirty && hdw->croph_val < hdw->res_ver_val) {
3127 hdw->croph_val = hdw->res_ver_val;
3128 hdw->croph_dirty = !0;
3129 } else if (hdw->croph_dirty) {
3130 int nvres = hdw->std_mask_cur & V4L2_STD_525_60 ? 480 : 576;
3131 hdw->res_ver_dirty = !0;
3132 hdw->res_ver_val = min(nvres, hdw->croph_val);
3133 }
3134
Mike Isely681c7392007-11-26 01:48:52 -03003135 /* If any of the below has changed, then we can't do the update
3136 while the pipeline is running. Pipeline must be paused first
3137 and decoder -> encoder connection be made quiescent before we
3138 can proceed. */
3139 disruptive_change =
3140 (hdw->std_dirty ||
3141 hdw->enc_unsafe_stale ||
3142 hdw->srate_dirty ||
3143 hdw->res_ver_dirty ||
3144 hdw->res_hor_dirty ||
Mike Isely755879c2008-08-31 20:50:59 -03003145 hdw->cropw_dirty ||
3146 hdw->croph_dirty ||
Mike Isely681c7392007-11-26 01:48:52 -03003147 hdw->input_dirty ||
3148 (hdw->active_stream_type != hdw->desired_stream_type));
3149 if (disruptive_change && !hdw->state_pipeline_idle) {
3150 /* Pipeline is not idle; we can't proceed. Arrange to
3151 cause pipeline to stop so that we can try this again
3152 later.... */
3153 hdw->state_pipeline_pause = !0;
3154 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003155 }
3156
Mike Iselyb30d2442006-06-25 20:05:01 -03003157 if (hdw->srate_dirty) {
3158 /* Write new sample rate into control structure since
3159 * the master copy is stale. We must track srate
3160 * separate from the mpeg control structure because
3161 * other logic also uses this value. */
3162 struct v4l2_ext_controls cs;
3163 struct v4l2_ext_control c1;
3164 memset(&cs,0,sizeof(cs));
3165 memset(&c1,0,sizeof(c1));
3166 cs.controls = &c1;
3167 cs.count = 1;
3168 c1.id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ;
3169 c1.value = hdw->srate_val;
Hans Verkuil01f1e442007-08-21 18:32:42 -03003170 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,VIDIOC_S_EXT_CTRLS);
Mike Iselyb30d2442006-06-25 20:05:01 -03003171 }
Mike Iselyc05c0462006-06-25 20:04:25 -03003172
Mike Isely681c7392007-11-26 01:48:52 -03003173 if (hdw->active_stream_type != hdw->desired_stream_type) {
3174 /* Handle any side effects of stream config here */
3175 hdw->active_stream_type = hdw->desired_stream_type;
3176 }
3177
Mike Isely1df59f02008-04-21 03:50:39 -03003178 if (hdw->hdw_desc->signal_routing_scheme ==
3179 PVR2_ROUTING_SCHEME_GOTVIEW) {
3180 u32 b;
3181 /* Handle GOTVIEW audio switching */
3182 pvr2_hdw_gpio_get_out(hdw,&b);
3183 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
3184 /* Set GPIO 11 */
3185 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),~0);
3186 } else {
3187 /* Clear GPIO 11 */
3188 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),0);
3189 }
3190 }
3191
Mike Iselye68a6192009-03-07 01:45:10 -03003192 /* Check and update state for all sub-devices. */
3193 pvr2_subdev_update(hdw);
3194
Mike Isely75212a02009-03-07 01:48:42 -03003195 hdw->tuner_updated = 0;
Mike Isely27764722009-03-07 01:57:25 -03003196 hdw->force_dirty = 0;
Mike Isely5ceaad12009-03-07 00:01:20 -03003197 for (idx = 0; idx < hdw->control_cnt; idx++) {
3198 cptr = hdw->controls + idx;
3199 if (!cptr->info->clear_dirty) continue;
3200 cptr->info->clear_dirty(cptr);
3201 }
3202
Mike Isely62433e32008-04-22 14:45:40 -03003203 if ((hdw->pathway_state == PVR2_PATHWAY_ANALOG) &&
3204 hdw->state_encoder_run) {
3205 /* If encoder isn't running or it can't be touched, then
3206 this will get worked out later when we start the
3207 encoder. */
Mike Isely681c7392007-11-26 01:48:52 -03003208 if (pvr2_encoder_adjust(hdw) < 0) return !0;
3209 }
Mike Iselyd8554972006-06-26 20:58:46 -03003210
Mike Isely681c7392007-11-26 01:48:52 -03003211 hdw->state_pipeline_config = !0;
Mike Isely432907f2008-08-31 21:02:20 -03003212 /* Hardware state may have changed in a way to cause the cropping
3213 capabilities to have changed. So mark it stale, which will
3214 cause a later re-fetch. */
Mike Isely681c7392007-11-26 01:48:52 -03003215 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3216 return !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003217}
3218
3219
3220int pvr2_hdw_commit_ctl(struct pvr2_hdw *hdw)
3221{
Mike Isely681c7392007-11-26 01:48:52 -03003222 int fl;
3223 LOCK_TAKE(hdw->big_lock);
3224 fl = pvr2_hdw_commit_setup(hdw);
3225 LOCK_GIVE(hdw->big_lock);
3226 if (!fl) return 0;
3227 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003228}
3229
3230
Mike Isely681c7392007-11-26 01:48:52 -03003231static void pvr2_hdw_worker_poll(struct work_struct *work)
Mike Iselyd8554972006-06-26 20:58:46 -03003232{
Mike Isely681c7392007-11-26 01:48:52 -03003233 int fl = 0;
3234 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workpoll);
Mike Iselyd8554972006-06-26 20:58:46 -03003235 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03003236 fl = pvr2_hdw_state_eval(hdw);
3237 } while (0); LOCK_GIVE(hdw->big_lock);
3238 if (fl && hdw->state_func) {
3239 hdw->state_func(hdw->state_data);
3240 }
3241}
3242
3243
Mike Isely681c7392007-11-26 01:48:52 -03003244static int pvr2_hdw_wait(struct pvr2_hdw *hdw,int state)
Mike Iselyd8554972006-06-26 20:58:46 -03003245{
Mike Isely681c7392007-11-26 01:48:52 -03003246 return wait_event_interruptible(
3247 hdw->state_wait_data,
3248 (hdw->state_stale == 0) &&
3249 (!state || (hdw->master_state != state)));
Mike Iselyd8554972006-06-26 20:58:46 -03003250}
3251
Mike Isely681c7392007-11-26 01:48:52 -03003252
Mike Iselyd8554972006-06-26 20:58:46 -03003253/* Return name for this driver instance */
3254const char *pvr2_hdw_get_driver_name(struct pvr2_hdw *hdw)
3255{
3256 return hdw->name;
3257}
3258
3259
Mike Isely78a47102007-11-26 01:58:20 -03003260const char *pvr2_hdw_get_desc(struct pvr2_hdw *hdw)
3261{
3262 return hdw->hdw_desc->description;
3263}
3264
3265
3266const char *pvr2_hdw_get_type(struct pvr2_hdw *hdw)
3267{
3268 return hdw->hdw_desc->shortname;
3269}
3270
3271
Mike Iselyd8554972006-06-26 20:58:46 -03003272int pvr2_hdw_is_hsm(struct pvr2_hdw *hdw)
3273{
3274 int result;
3275 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03003276 hdw->cmd_buffer[0] = FX2CMD_GET_USB_SPEED;
Mike Iselyd8554972006-06-26 20:58:46 -03003277 result = pvr2_send_request(hdw,
3278 hdw->cmd_buffer,1,
3279 hdw->cmd_buffer,1);
3280 if (result < 0) break;
3281 result = (hdw->cmd_buffer[0] != 0);
3282 } while(0); LOCK_GIVE(hdw->ctl_lock);
3283 return result;
3284}
3285
3286
Mike Isely18103c572007-01-20 00:09:47 -03003287/* Execute poll of tuner status */
3288void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003289{
Mike Iselyd8554972006-06-26 20:58:46 -03003290 LOCK_TAKE(hdw->big_lock); do {
Mike Iselya51f5002009-03-06 23:30:37 -03003291 pvr2_hdw_status_poll(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003292 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely18103c572007-01-20 00:09:47 -03003293}
3294
3295
Mike Isely432907f2008-08-31 21:02:20 -03003296static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw)
3297{
3298 if (!hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003299 return 0;
3300 }
Mike Iselya51f5002009-03-06 23:30:37 -03003301 pvr2_hdw_status_poll(hdw);
Mike Isely432907f2008-08-31 21:02:20 -03003302 if (hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003303 return -EIO;
3304 }
3305 return 0;
3306}
3307
3308
3309/* Return information about cropping capabilities */
3310int pvr2_hdw_get_cropcap(struct pvr2_hdw *hdw, struct v4l2_cropcap *pp)
3311{
3312 int stat = 0;
3313 LOCK_TAKE(hdw->big_lock);
3314 stat = pvr2_hdw_check_cropcap(hdw);
3315 if (!stat) {
Mike Isely432907f2008-08-31 21:02:20 -03003316 memcpy(pp, &hdw->cropcap_info, sizeof(hdw->cropcap_info));
3317 }
3318 LOCK_GIVE(hdw->big_lock);
3319 return stat;
3320}
3321
3322
Mike Isely18103c572007-01-20 00:09:47 -03003323/* Return information about the tuner */
3324int pvr2_hdw_get_tuner_status(struct pvr2_hdw *hdw,struct v4l2_tuner *vtp)
3325{
3326 LOCK_TAKE(hdw->big_lock); do {
3327 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -03003328 pvr2_hdw_status_poll(hdw);
Mike Isely18103c572007-01-20 00:09:47 -03003329 }
3330 memcpy(vtp,&hdw->tuner_signal_info,sizeof(struct v4l2_tuner));
3331 } while (0); LOCK_GIVE(hdw->big_lock);
3332 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003333}
3334
3335
3336/* Get handle to video output stream */
3337struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
3338{
3339 return hp->vid_stream;
3340}
3341
3342
3343void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
3344{
Mike Isely4f1a3e52006-06-25 20:04:31 -03003345 int nr = pvr2_hdw_get_unit_number(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003346 LOCK_TAKE(hdw->big_lock); do {
Mike Isely4f1a3e52006-06-25 20:04:31 -03003347 printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
Mike Iselyed3261a2009-03-07 00:02:33 -03003348 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, log_status);
Mike Iselyb30d2442006-06-25 20:05:01 -03003349 pvr2_trace(PVR2_TRACE_INFO,"cx2341x config:");
Hans Verkuil99eb44f2006-06-26 18:24:05 -03003350 cx2341x_log_status(&hdw->enc_ctl_state, "pvrusb2");
Mike Isely681c7392007-11-26 01:48:52 -03003351 pvr2_hdw_state_log_state(hdw);
Mike Isely4f1a3e52006-06-25 20:04:31 -03003352 printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
Mike Iselyd8554972006-06-26 20:58:46 -03003353 } while (0); LOCK_GIVE(hdw->big_lock);
3354}
3355
Mike Isely4db666c2007-09-08 22:16:27 -03003356
3357/* Grab EEPROM contents, needed for direct method. */
3358#define EEPROM_SIZE 8192
3359#define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
3360static u8 *pvr2_full_eeprom_fetch(struct pvr2_hdw *hdw)
3361{
3362 struct i2c_msg msg[2];
3363 u8 *eeprom;
3364 u8 iadd[2];
3365 u8 addr;
3366 u16 eepromSize;
3367 unsigned int offs;
3368 int ret;
3369 int mode16 = 0;
3370 unsigned pcnt,tcnt;
3371 eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
3372 if (!eeprom) {
3373 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3374 "Failed to allocate memory"
3375 " required to read eeprom");
3376 return NULL;
3377 }
3378
3379 trace_eeprom("Value for eeprom addr from controller was 0x%x",
3380 hdw->eeprom_addr);
3381 addr = hdw->eeprom_addr;
3382 /* Seems that if the high bit is set, then the *real* eeprom
3383 address is shifted right now bit position (noticed this in
3384 newer PVR USB2 hardware) */
3385 if (addr & 0x80) addr >>= 1;
3386
3387 /* FX2 documentation states that a 16bit-addressed eeprom is
3388 expected if the I2C address is an odd number (yeah, this is
3389 strange but it's what they do) */
3390 mode16 = (addr & 1);
3391 eepromSize = (mode16 ? EEPROM_SIZE : 256);
3392 trace_eeprom("Examining %d byte eeprom at location 0x%x"
3393 " using %d bit addressing",eepromSize,addr,
3394 mode16 ? 16 : 8);
3395
3396 msg[0].addr = addr;
3397 msg[0].flags = 0;
3398 msg[0].len = mode16 ? 2 : 1;
3399 msg[0].buf = iadd;
3400 msg[1].addr = addr;
3401 msg[1].flags = I2C_M_RD;
3402
3403 /* We have to do the actual eeprom data fetch ourselves, because
3404 (1) we're only fetching part of the eeprom, and (2) if we were
3405 getting the whole thing our I2C driver can't grab it in one
3406 pass - which is what tveeprom is otherwise going to attempt */
3407 memset(eeprom,0,EEPROM_SIZE);
3408 for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
3409 pcnt = 16;
3410 if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
3411 offs = tcnt + (eepromSize - EEPROM_SIZE);
3412 if (mode16) {
3413 iadd[0] = offs >> 8;
3414 iadd[1] = offs;
3415 } else {
3416 iadd[0] = offs;
3417 }
3418 msg[1].len = pcnt;
3419 msg[1].buf = eeprom+tcnt;
3420 if ((ret = i2c_transfer(&hdw->i2c_adap,
3421 msg,ARRAY_SIZE(msg))) != 2) {
3422 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3423 "eeprom fetch set offs err=%d",ret);
3424 kfree(eeprom);
3425 return NULL;
3426 }
3427 }
3428 return eeprom;
3429}
3430
3431
3432void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw *hdw,
Mike Isely568efaa2009-11-25 02:52:06 -03003433 int mode,
Mike Isely4db666c2007-09-08 22:16:27 -03003434 int enable_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003435{
3436 int ret;
3437 u16 address;
3438 unsigned int pipe;
3439 LOCK_TAKE(hdw->big_lock); do {
Al Viro5fa12472008-03-29 03:07:38 +00003440 if ((hdw->fw_buffer == NULL) == !enable_flag) break;
Mike Iselyd8554972006-06-26 20:58:46 -03003441
3442 if (!enable_flag) {
3443 pvr2_trace(PVR2_TRACE_FIRMWARE,
3444 "Cleaning up after CPU firmware fetch");
3445 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003446 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003447 hdw->fw_size = 0;
Mike Isely4db666c2007-09-08 22:16:27 -03003448 if (hdw->fw_cpu_flag) {
3449 /* Now release the CPU. It will disconnect
3450 and reconnect later. */
3451 pvr2_hdw_cpureset_assert(hdw,0);
3452 }
Mike Iselyd8554972006-06-26 20:58:46 -03003453 break;
3454 }
3455
Mike Isely568efaa2009-11-25 02:52:06 -03003456 hdw->fw_cpu_flag = (mode != 2);
Mike Isely4db666c2007-09-08 22:16:27 -03003457 if (hdw->fw_cpu_flag) {
Mike Isely568efaa2009-11-25 02:52:06 -03003458 hdw->fw_size = (mode == 1) ? 0x4000 : 0x2000;
Mike Isely4db666c2007-09-08 22:16:27 -03003459 pvr2_trace(PVR2_TRACE_FIRMWARE,
Mike Isely568efaa2009-11-25 02:52:06 -03003460 "Preparing to suck out CPU firmware"
3461 " (size=%u)", hdw->fw_size);
Mike Isely4db666c2007-09-08 22:16:27 -03003462 hdw->fw_buffer = kzalloc(hdw->fw_size,GFP_KERNEL);
3463 if (!hdw->fw_buffer) {
3464 hdw->fw_size = 0;
3465 break;
3466 }
3467
3468 /* We have to hold the CPU during firmware upload. */
3469 pvr2_hdw_cpureset_assert(hdw,1);
3470
3471 /* download the firmware from address 0000-1fff in 2048
3472 (=0x800) bytes chunk. */
3473
3474 pvr2_trace(PVR2_TRACE_FIRMWARE,
3475 "Grabbing CPU firmware");
3476 pipe = usb_rcvctrlpipe(hdw->usb_dev, 0);
3477 for(address = 0; address < hdw->fw_size;
3478 address += 0x800) {
3479 ret = usb_control_msg(hdw->usb_dev,pipe,
3480 0xa0,0xc0,
3481 address,0,
3482 hdw->fw_buffer+address,
3483 0x800,HZ);
3484 if (ret < 0) break;
3485 }
3486
3487 pvr2_trace(PVR2_TRACE_FIRMWARE,
3488 "Done grabbing CPU firmware");
3489 } else {
3490 pvr2_trace(PVR2_TRACE_FIRMWARE,
3491 "Sucking down EEPROM contents");
3492 hdw->fw_buffer = pvr2_full_eeprom_fetch(hdw);
3493 if (!hdw->fw_buffer) {
3494 pvr2_trace(PVR2_TRACE_FIRMWARE,
3495 "EEPROM content suck failed.");
3496 break;
3497 }
3498 hdw->fw_size = EEPROM_SIZE;
3499 pvr2_trace(PVR2_TRACE_FIRMWARE,
3500 "Done sucking down EEPROM contents");
Mike Iselyd8554972006-06-26 20:58:46 -03003501 }
3502
Mike Iselyd8554972006-06-26 20:58:46 -03003503 } while (0); LOCK_GIVE(hdw->big_lock);
3504}
3505
3506
3507/* Return true if we're in a mode for retrieval CPU firmware */
3508int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *hdw)
3509{
Al Viro5fa12472008-03-29 03:07:38 +00003510 return hdw->fw_buffer != NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003511}
3512
3513
3514int pvr2_hdw_cpufw_get(struct pvr2_hdw *hdw,unsigned int offs,
3515 char *buf,unsigned int cnt)
3516{
3517 int ret = -EINVAL;
3518 LOCK_TAKE(hdw->big_lock); do {
3519 if (!buf) break;
3520 if (!cnt) break;
3521
3522 if (!hdw->fw_buffer) {
3523 ret = -EIO;
3524 break;
3525 }
3526
3527 if (offs >= hdw->fw_size) {
3528 pvr2_trace(PVR2_TRACE_FIRMWARE,
3529 "Read firmware data offs=%d EOF",
3530 offs);
3531 ret = 0;
3532 break;
3533 }
3534
3535 if (offs + cnt > hdw->fw_size) cnt = hdw->fw_size - offs;
3536
3537 memcpy(buf,hdw->fw_buffer+offs,cnt);
3538
3539 pvr2_trace(PVR2_TRACE_FIRMWARE,
3540 "Read firmware data offs=%d cnt=%d",
3541 offs,cnt);
3542 ret = cnt;
3543 } while (0); LOCK_GIVE(hdw->big_lock);
3544
3545 return ret;
3546}
3547
3548
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003549int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003550 enum pvr2_v4l_type index)
Mike Iselyd8554972006-06-26 20:58:46 -03003551{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003552 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003553 case pvr2_v4l_type_video: return hdw->v4l_minor_number_video;
3554 case pvr2_v4l_type_vbi: return hdw->v4l_minor_number_vbi;
3555 case pvr2_v4l_type_radio: return hdw->v4l_minor_number_radio;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003556 default: return -1;
3557 }
Mike Iselyd8554972006-06-26 20:58:46 -03003558}
3559
3560
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -03003561/* Store a v4l minor device number */
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003562void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003563 enum pvr2_v4l_type index,int v)
Mike Iselyd8554972006-06-26 20:58:46 -03003564{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003565 switch (index) {
Alan Cox6c058fb2012-10-25 10:38:21 -03003566 case pvr2_v4l_type_video: hdw->v4l_minor_number_video = v;break;
3567 case pvr2_v4l_type_vbi: hdw->v4l_minor_number_vbi = v;break;
3568 case pvr2_v4l_type_radio: hdw->v4l_minor_number_radio = v;break;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003569 default: break;
3570 }
Mike Iselyd8554972006-06-26 20:58:46 -03003571}
3572
3573
David Howells7d12e782006-10-05 14:55:46 +01003574static void pvr2_ctl_write_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003575{
3576 struct pvr2_hdw *hdw = urb->context;
3577 hdw->ctl_write_pend_flag = 0;
3578 if (hdw->ctl_read_pend_flag) return;
3579 complete(&hdw->ctl_done);
3580}
3581
3582
David Howells7d12e782006-10-05 14:55:46 +01003583static void pvr2_ctl_read_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003584{
3585 struct pvr2_hdw *hdw = urb->context;
3586 hdw->ctl_read_pend_flag = 0;
3587 if (hdw->ctl_write_pend_flag) return;
3588 complete(&hdw->ctl_done);
3589}
3590
3591
3592static void pvr2_ctl_timeout(unsigned long data)
3593{
3594 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3595 if (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3596 hdw->ctl_timeout_flag = !0;
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003597 if (hdw->ctl_write_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003598 usb_unlink_urb(hdw->ctl_write_urb);
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003599 if (hdw->ctl_read_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003600 usb_unlink_urb(hdw->ctl_read_urb);
Mike Iselyd8554972006-06-26 20:58:46 -03003601 }
3602}
3603
3604
Mike Iselye61b6fc2006-07-18 22:42:18 -03003605/* Issue a command and get a response from the device. This extended
3606 version includes a probe flag (which if set means that device errors
3607 should not be logged or treated as fatal) and a timeout in jiffies.
3608 This can be used to non-lethally probe the health of endpoint 1. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03003609static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
3610 unsigned int timeout,int probe_fl,
3611 void *write_data,unsigned int write_len,
3612 void *read_data,unsigned int read_len)
Mike Iselyd8554972006-06-26 20:58:46 -03003613{
3614 unsigned int idx;
3615 int status = 0;
3616 struct timer_list timer;
3617 if (!hdw->ctl_lock_held) {
3618 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3619 "Attempted to execute control transfer"
3620 " without lock!!");
3621 return -EDEADLK;
3622 }
Mike Isely681c7392007-11-26 01:48:52 -03003623 if (!hdw->flag_ok && !probe_fl) {
Mike Iselyd8554972006-06-26 20:58:46 -03003624 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3625 "Attempted to execute control transfer"
3626 " when device not ok");
3627 return -EIO;
3628 }
3629 if (!(hdw->ctl_read_urb && hdw->ctl_write_urb)) {
3630 if (!probe_fl) {
3631 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3632 "Attempted to execute control transfer"
3633 " when USB is disconnected");
3634 }
3635 return -ENOTTY;
3636 }
3637
3638 /* Ensure that we have sane parameters */
3639 if (!write_data) write_len = 0;
3640 if (!read_data) read_len = 0;
3641 if (write_len > PVR2_CTL_BUFFSIZE) {
3642 pvr2_trace(
3643 PVR2_TRACE_ERROR_LEGS,
3644 "Attempted to execute %d byte"
3645 " control-write transfer (limit=%d)",
3646 write_len,PVR2_CTL_BUFFSIZE);
3647 return -EINVAL;
3648 }
3649 if (read_len > PVR2_CTL_BUFFSIZE) {
3650 pvr2_trace(
3651 PVR2_TRACE_ERROR_LEGS,
3652 "Attempted to execute %d byte"
3653 " control-read transfer (limit=%d)",
3654 write_len,PVR2_CTL_BUFFSIZE);
3655 return -EINVAL;
3656 }
3657 if ((!write_len) && (!read_len)) {
3658 pvr2_trace(
3659 PVR2_TRACE_ERROR_LEGS,
3660 "Attempted to execute null control transfer?");
3661 return -EINVAL;
3662 }
3663
3664
3665 hdw->cmd_debug_state = 1;
3666 if (write_len) {
3667 hdw->cmd_debug_code = ((unsigned char *)write_data)[0];
3668 } else {
3669 hdw->cmd_debug_code = 0;
3670 }
3671 hdw->cmd_debug_write_len = write_len;
3672 hdw->cmd_debug_read_len = read_len;
3673
3674 /* Initialize common stuff */
3675 init_completion(&hdw->ctl_done);
3676 hdw->ctl_timeout_flag = 0;
3677 hdw->ctl_write_pend_flag = 0;
3678 hdw->ctl_read_pend_flag = 0;
3679 init_timer(&timer);
3680 timer.expires = jiffies + timeout;
3681 timer.data = (unsigned long)hdw;
3682 timer.function = pvr2_ctl_timeout;
3683
3684 if (write_len) {
3685 hdw->cmd_debug_state = 2;
3686 /* Transfer write data to internal buffer */
3687 for (idx = 0; idx < write_len; idx++) {
3688 hdw->ctl_write_buffer[idx] =
3689 ((unsigned char *)write_data)[idx];
3690 }
3691 /* Initiate a write request */
3692 usb_fill_bulk_urb(hdw->ctl_write_urb,
3693 hdw->usb_dev,
3694 usb_sndbulkpipe(hdw->usb_dev,
3695 PVR2_CTL_WRITE_ENDPOINT),
3696 hdw->ctl_write_buffer,
3697 write_len,
3698 pvr2_ctl_write_complete,
3699 hdw);
3700 hdw->ctl_write_urb->actual_length = 0;
3701 hdw->ctl_write_pend_flag = !0;
3702 status = usb_submit_urb(hdw->ctl_write_urb,GFP_KERNEL);
3703 if (status < 0) {
3704 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3705 "Failed to submit write-control"
3706 " URB status=%d",status);
3707 hdw->ctl_write_pend_flag = 0;
3708 goto done;
3709 }
3710 }
3711
3712 if (read_len) {
3713 hdw->cmd_debug_state = 3;
3714 memset(hdw->ctl_read_buffer,0x43,read_len);
3715 /* Initiate a read request */
3716 usb_fill_bulk_urb(hdw->ctl_read_urb,
3717 hdw->usb_dev,
3718 usb_rcvbulkpipe(hdw->usb_dev,
3719 PVR2_CTL_READ_ENDPOINT),
3720 hdw->ctl_read_buffer,
3721 read_len,
3722 pvr2_ctl_read_complete,
3723 hdw);
3724 hdw->ctl_read_urb->actual_length = 0;
3725 hdw->ctl_read_pend_flag = !0;
3726 status = usb_submit_urb(hdw->ctl_read_urb,GFP_KERNEL);
3727 if (status < 0) {
3728 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3729 "Failed to submit read-control"
3730 " URB status=%d",status);
3731 hdw->ctl_read_pend_flag = 0;
3732 goto done;
3733 }
3734 }
3735
3736 /* Start timer */
3737 add_timer(&timer);
3738
3739 /* Now wait for all I/O to complete */
3740 hdw->cmd_debug_state = 4;
3741 while (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3742 wait_for_completion(&hdw->ctl_done);
3743 }
3744 hdw->cmd_debug_state = 5;
3745
3746 /* Stop timer */
3747 del_timer_sync(&timer);
3748
3749 hdw->cmd_debug_state = 6;
3750 status = 0;
3751
3752 if (hdw->ctl_timeout_flag) {
3753 status = -ETIMEDOUT;
3754 if (!probe_fl) {
3755 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3756 "Timed out control-write");
3757 }
3758 goto done;
3759 }
3760
3761 if (write_len) {
3762 /* Validate results of write request */
3763 if ((hdw->ctl_write_urb->status != 0) &&
3764 (hdw->ctl_write_urb->status != -ENOENT) &&
3765 (hdw->ctl_write_urb->status != -ESHUTDOWN) &&
3766 (hdw->ctl_write_urb->status != -ECONNRESET)) {
3767 /* USB subsystem is reporting some kind of failure
3768 on the write */
3769 status = hdw->ctl_write_urb->status;
3770 if (!probe_fl) {
3771 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3772 "control-write URB failure,"
3773 " status=%d",
3774 status);
3775 }
3776 goto done;
3777 }
3778 if (hdw->ctl_write_urb->actual_length < write_len) {
3779 /* Failed to write enough data */
3780 status = -EIO;
3781 if (!probe_fl) {
3782 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3783 "control-write URB short,"
3784 " expected=%d got=%d",
3785 write_len,
3786 hdw->ctl_write_urb->actual_length);
3787 }
3788 goto done;
3789 }
3790 }
3791 if (read_len) {
3792 /* Validate results of read request */
3793 if ((hdw->ctl_read_urb->status != 0) &&
3794 (hdw->ctl_read_urb->status != -ENOENT) &&
3795 (hdw->ctl_read_urb->status != -ESHUTDOWN) &&
3796 (hdw->ctl_read_urb->status != -ECONNRESET)) {
3797 /* USB subsystem is reporting some kind of failure
3798 on the read */
3799 status = hdw->ctl_read_urb->status;
3800 if (!probe_fl) {
3801 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3802 "control-read URB failure,"
3803 " status=%d",
3804 status);
3805 }
3806 goto done;
3807 }
3808 if (hdw->ctl_read_urb->actual_length < read_len) {
3809 /* Failed to read enough data */
3810 status = -EIO;
3811 if (!probe_fl) {
3812 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3813 "control-read URB short,"
3814 " expected=%d got=%d",
3815 read_len,
3816 hdw->ctl_read_urb->actual_length);
3817 }
3818 goto done;
3819 }
3820 /* Transfer retrieved data out from internal buffer */
3821 for (idx = 0; idx < read_len; idx++) {
3822 ((unsigned char *)read_data)[idx] =
3823 hdw->ctl_read_buffer[idx];
3824 }
3825 }
3826
3827 done:
3828
3829 hdw->cmd_debug_state = 0;
3830 if ((status < 0) && (!probe_fl)) {
Mike Isely681c7392007-11-26 01:48:52 -03003831 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003832 }
3833 return status;
3834}
3835
3836
3837int pvr2_send_request(struct pvr2_hdw *hdw,
3838 void *write_data,unsigned int write_len,
3839 void *read_data,unsigned int read_len)
3840{
3841 return pvr2_send_request_ex(hdw,HZ*4,0,
3842 write_data,write_len,
3843 read_data,read_len);
3844}
3845
Mike Isely1c9d10d2008-03-28 05:38:54 -03003846
3847static int pvr2_issue_simple_cmd(struct pvr2_hdw *hdw,u32 cmdcode)
3848{
3849 int ret;
3850 unsigned int cnt = 1;
3851 unsigned int args = 0;
3852 LOCK_TAKE(hdw->ctl_lock);
3853 hdw->cmd_buffer[0] = cmdcode & 0xffu;
3854 args = (cmdcode >> 8) & 0xffu;
3855 args = (args > 2) ? 2 : args;
3856 if (args) {
3857 cnt += args;
3858 hdw->cmd_buffer[1] = (cmdcode >> 16) & 0xffu;
3859 if (args > 1) {
3860 hdw->cmd_buffer[2] = (cmdcode >> 24) & 0xffu;
3861 }
3862 }
3863 if (pvrusb2_debug & PVR2_TRACE_INIT) {
3864 unsigned int idx;
3865 unsigned int ccnt,bcnt;
3866 char tbuf[50];
3867 cmdcode &= 0xffu;
3868 bcnt = 0;
3869 ccnt = scnprintf(tbuf+bcnt,
3870 sizeof(tbuf)-bcnt,
3871 "Sending FX2 command 0x%x",cmdcode);
3872 bcnt += ccnt;
3873 for (idx = 0; idx < ARRAY_SIZE(pvr2_fx2cmd_desc); idx++) {
3874 if (pvr2_fx2cmd_desc[idx].id == cmdcode) {
3875 ccnt = scnprintf(tbuf+bcnt,
3876 sizeof(tbuf)-bcnt,
3877 " \"%s\"",
3878 pvr2_fx2cmd_desc[idx].desc);
3879 bcnt += ccnt;
3880 break;
3881 }
3882 }
3883 if (args) {
3884 ccnt = scnprintf(tbuf+bcnt,
3885 sizeof(tbuf)-bcnt,
3886 " (%u",hdw->cmd_buffer[1]);
3887 bcnt += ccnt;
3888 if (args > 1) {
3889 ccnt = scnprintf(tbuf+bcnt,
3890 sizeof(tbuf)-bcnt,
3891 ",%u",hdw->cmd_buffer[2]);
3892 bcnt += ccnt;
3893 }
3894 ccnt = scnprintf(tbuf+bcnt,
3895 sizeof(tbuf)-bcnt,
3896 ")");
3897 bcnt += ccnt;
3898 }
3899 pvr2_trace(PVR2_TRACE_INIT,"%.*s",bcnt,tbuf);
3900 }
3901 ret = pvr2_send_request(hdw,hdw->cmd_buffer,cnt,NULL,0);
3902 LOCK_GIVE(hdw->ctl_lock);
3903 return ret;
3904}
3905
3906
Mike Iselyd8554972006-06-26 20:58:46 -03003907int pvr2_write_register(struct pvr2_hdw *hdw, u16 reg, u32 data)
3908{
3909 int ret;
3910
3911 LOCK_TAKE(hdw->ctl_lock);
3912
Michael Krufky8d364362007-01-22 02:17:55 -03003913 hdw->cmd_buffer[0] = FX2CMD_REG_WRITE; /* write register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003914 PVR2_DECOMPOSE_LE(hdw->cmd_buffer,1,data);
3915 hdw->cmd_buffer[5] = 0;
3916 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3917 hdw->cmd_buffer[7] = reg & 0xff;
3918
3919
3920 ret = pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 0);
3921
3922 LOCK_GIVE(hdw->ctl_lock);
3923
3924 return ret;
3925}
3926
3927
Adrian Bunk07e337e2006-06-30 11:30:20 -03003928static int pvr2_read_register(struct pvr2_hdw *hdw, u16 reg, u32 *data)
Mike Iselyd8554972006-06-26 20:58:46 -03003929{
3930 int ret = 0;
3931
3932 LOCK_TAKE(hdw->ctl_lock);
3933
Michael Krufky8d364362007-01-22 02:17:55 -03003934 hdw->cmd_buffer[0] = FX2CMD_REG_READ; /* read register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003935 hdw->cmd_buffer[1] = 0;
3936 hdw->cmd_buffer[2] = 0;
3937 hdw->cmd_buffer[3] = 0;
3938 hdw->cmd_buffer[4] = 0;
3939 hdw->cmd_buffer[5] = 0;
3940 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
3941 hdw->cmd_buffer[7] = reg & 0xff;
3942
3943 ret |= pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 4);
3944 *data = PVR2_COMPOSE_LE(hdw->cmd_buffer,0);
3945
3946 LOCK_GIVE(hdw->ctl_lock);
3947
3948 return ret;
3949}
3950
3951
Mike Isely681c7392007-11-26 01:48:52 -03003952void pvr2_hdw_render_useless(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003953{
3954 if (!hdw->flag_ok) return;
Mike Isely681c7392007-11-26 01:48:52 -03003955 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3956 "Device being rendered inoperable");
Mike Iselyd8554972006-06-26 20:58:46 -03003957 if (hdw->vid_stream) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003958 pvr2_stream_setup(hdw->vid_stream,NULL,0,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003959 }
Mike Isely681c7392007-11-26 01:48:52 -03003960 hdw->flag_ok = 0;
3961 trace_stbit("flag_ok",hdw->flag_ok);
3962 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003963}
3964
3965
3966void pvr2_hdw_device_reset(struct pvr2_hdw *hdw)
3967{
3968 int ret;
3969 pvr2_trace(PVR2_TRACE_INIT,"Performing a device reset...");
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003970 ret = usb_lock_device_for_reset(hdw->usb_dev,NULL);
Alan Stern011b15d2008-11-04 11:29:27 -05003971 if (ret == 0) {
Mike Iselyd8554972006-06-26 20:58:46 -03003972 ret = usb_reset_device(hdw->usb_dev);
3973 usb_unlock_device(hdw->usb_dev);
3974 } else {
3975 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3976 "Failed to lock USB device ret=%d",ret);
3977 }
3978 if (init_pause_msec) {
3979 pvr2_trace(PVR2_TRACE_INFO,
3980 "Waiting %u msec for hardware to settle",
3981 init_pause_msec);
3982 msleep(init_pause_msec);
3983 }
3984
3985}
3986
3987
3988void pvr2_hdw_cpureset_assert(struct pvr2_hdw *hdw,int val)
3989{
Mike Isely68618002010-05-15 00:09:47 -03003990 char *da;
Mike Iselyd8554972006-06-26 20:58:46 -03003991 unsigned int pipe;
3992 int ret;
3993
3994 if (!hdw->usb_dev) return;
3995
Mike Isely68618002010-05-15 00:09:47 -03003996 da = kmalloc(16, GFP_KERNEL);
3997
3998 if (da == NULL) {
3999 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4000 "Unable to allocate memory to control CPU reset");
4001 return;
4002 }
4003
Mike Iselyd8554972006-06-26 20:58:46 -03004004 pvr2_trace(PVR2_TRACE_INIT,"cpureset_assert(%d)",val);
4005
4006 da[0] = val ? 0x01 : 0x00;
4007
4008 /* Write the CPUCS register on the 8051. The lsb of the register
4009 is the reset bit; a 1 asserts reset while a 0 clears it. */
4010 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
4011 ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ);
4012 if (ret < 0) {
4013 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4014 "cpureset_assert(%d) error=%d",val,ret);
4015 pvr2_hdw_render_useless(hdw);
4016 }
Mike Isely68618002010-05-15 00:09:47 -03004017
4018 kfree(da);
Mike Iselyd8554972006-06-26 20:58:46 -03004019}
4020
4021
4022int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw *hdw)
4023{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004024 return pvr2_issue_simple_cmd(hdw,FX2CMD_DEEP_RESET);
Mike Iselyd8554972006-06-26 20:58:46 -03004025}
4026
4027
Michael Krufkye1edb192008-04-22 14:45:39 -03004028int pvr2_hdw_cmd_powerup(struct pvr2_hdw *hdw)
4029{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004030 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_ON);
Michael Krufkye1edb192008-04-22 14:45:39 -03004031}
4032
Mike Isely1c9d10d2008-03-28 05:38:54 -03004033
Michael Krufkye1edb192008-04-22 14:45:39 -03004034int pvr2_hdw_cmd_powerdown(struct pvr2_hdw *hdw)
4035{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004036 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_OFF);
Michael Krufkye1edb192008-04-22 14:45:39 -03004037}
4038
Mike Iselyd8554972006-06-26 20:58:46 -03004039
4040int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw *hdw)
4041{
Mike Iselyd8554972006-06-26 20:58:46 -03004042 pvr2_trace(PVR2_TRACE_INIT,
4043 "Requesting decoder reset");
Mike Iselyaf78e162009-03-07 00:21:30 -03004044 if (hdw->decoder_client_id) {
4045 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
4046 core, reset, 0);
Mike Iselye17d7872009-06-20 14:45:52 -03004047 pvr2_hdw_cx25840_vbi_hack(hdw);
Mike Iselyaf78e162009-03-07 00:21:30 -03004048 return 0;
4049 }
4050 pvr2_trace(PVR2_TRACE_INIT,
4051 "Unable to reset decoder: nothing attached");
4052 return -ENOTTY;
Mike Iselyd8554972006-06-26 20:58:46 -03004053}
4054
4055
Mike Isely62433e32008-04-22 14:45:40 -03004056static int pvr2_hdw_cmd_hcw_demod_reset(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004057{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004058 hdw->flag_ok = !0;
4059 return pvr2_issue_simple_cmd(hdw,
4060 FX2CMD_HCW_DEMOD_RESETIN |
4061 (1 << 8) |
4062 ((onoff ? 1 : 0) << 16));
Mike Isely84147f32008-04-22 14:45:40 -03004063}
4064
Mike Isely84147f32008-04-22 14:45:40 -03004065
Mike Isely62433e32008-04-22 14:45:40 -03004066static int pvr2_hdw_cmd_onair_fe_power_ctrl(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004067{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004068 hdw->flag_ok = !0;
4069 return pvr2_issue_simple_cmd(hdw,(onoff ?
4070 FX2CMD_ONAIR_DTV_POWER_ON :
4071 FX2CMD_ONAIR_DTV_POWER_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004072}
4073
Mike Isely62433e32008-04-22 14:45:40 -03004074
4075static int pvr2_hdw_cmd_onair_digital_path_ctrl(struct pvr2_hdw *hdw,
4076 int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004077{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004078 return pvr2_issue_simple_cmd(hdw,(onoff ?
4079 FX2CMD_ONAIR_DTV_STREAMING_ON :
4080 FX2CMD_ONAIR_DTV_STREAMING_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004081}
4082
Mike Isely62433e32008-04-22 14:45:40 -03004083
4084static void pvr2_hdw_cmd_modeswitch(struct pvr2_hdw *hdw,int digitalFl)
4085{
4086 int cmode;
4087 /* Compare digital/analog desired setting with current setting. If
4088 they don't match, fix it... */
4089 cmode = (digitalFl ? PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG);
4090 if (cmode == hdw->pathway_state) {
4091 /* They match; nothing to do */
4092 return;
4093 }
4094
4095 switch (hdw->hdw_desc->digital_control_scheme) {
4096 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4097 pvr2_hdw_cmd_hcw_demod_reset(hdw,digitalFl);
4098 if (cmode == PVR2_PATHWAY_ANALOG) {
4099 /* If moving to analog mode, also force the decoder
4100 to reset. If no decoder is attached, then it's
4101 ok to ignore this because if/when the decoder
4102 attaches, it will reset itself at that time. */
4103 pvr2_hdw_cmd_decoder_reset(hdw);
4104 }
4105 break;
4106 case PVR2_DIGITAL_SCHEME_ONAIR:
4107 /* Supposedly we should always have the power on whether in
4108 digital or analog mode. But for now do what appears to
4109 work... */
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004110 pvr2_hdw_cmd_onair_fe_power_ctrl(hdw,digitalFl);
Mike Isely62433e32008-04-22 14:45:40 -03004111 break;
4112 default: break;
4113 }
4114
Mike Isely1b9c18c2008-04-22 14:45:41 -03004115 pvr2_hdw_untrip_unlocked(hdw);
Mike Isely62433e32008-04-22 14:45:40 -03004116 hdw->pathway_state = cmode;
4117}
4118
4119
Adrian Bunke9b59f62008-05-10 04:35:24 -03004120static void pvr2_led_ctrl_hauppauge(struct pvr2_hdw *hdw, int onoff)
Mike Iselyc55a97d2008-04-22 14:45:41 -03004121{
4122 /* change some GPIO data
4123 *
4124 * note: bit d7 of dir appears to control the LED,
4125 * so we shut it off here.
4126 *
Mike Iselyc55a97d2008-04-22 14:45:41 -03004127 */
Mike Isely40381cb2008-04-22 14:45:42 -03004128 if (onoff) {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004129 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000481);
Mike Isely40381cb2008-04-22 14:45:42 -03004130 } else {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004131 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000401);
Mike Isely40381cb2008-04-22 14:45:42 -03004132 }
Mike Iselyc55a97d2008-04-22 14:45:41 -03004133 pvr2_hdw_gpio_chg_out(hdw, 0xffffffff, 0x00000000);
Mike Isely40381cb2008-04-22 14:45:42 -03004134}
Mike Iselyc55a97d2008-04-22 14:45:41 -03004135
Mike Isely40381cb2008-04-22 14:45:42 -03004136
4137typedef void (*led_method_func)(struct pvr2_hdw *,int);
4138
4139static led_method_func led_methods[] = {
4140 [PVR2_LED_SCHEME_HAUPPAUGE] = pvr2_led_ctrl_hauppauge,
4141};
4142
4143
4144/* Toggle LED */
4145static void pvr2_led_ctrl(struct pvr2_hdw *hdw,int onoff)
4146{
4147 unsigned int scheme_id;
4148 led_method_func fp;
4149
4150 if ((!onoff) == (!hdw->led_on)) return;
4151
4152 hdw->led_on = onoff != 0;
4153
4154 scheme_id = hdw->hdw_desc->led_scheme;
4155 if (scheme_id < ARRAY_SIZE(led_methods)) {
4156 fp = led_methods[scheme_id];
4157 } else {
4158 fp = NULL;
4159 }
4160
4161 if (fp) (*fp)(hdw,onoff);
Mike Iselyc55a97d2008-04-22 14:45:41 -03004162}
4163
4164
Mike Iselye61b6fc2006-07-18 22:42:18 -03004165/* Stop / start video stream transport */
Adrian Bunk07e337e2006-06-30 11:30:20 -03004166static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl)
Mike Iselyd8554972006-06-26 20:58:46 -03004167{
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004168 int ret;
4169
4170 /* If we're in analog mode, then just issue the usual analog
4171 command. */
4172 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4173 return pvr2_issue_simple_cmd(hdw,
4174 (runFl ?
4175 FX2CMD_STREAMING_ON :
4176 FX2CMD_STREAMING_OFF));
4177 /*Note: Not reached */
Mike Isely62433e32008-04-22 14:45:40 -03004178 }
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004179
4180 if (hdw->pathway_state != PVR2_PATHWAY_DIGITAL) {
4181 /* Whoops, we don't know what mode we're in... */
4182 return -EINVAL;
4183 }
4184
4185 /* To get here we have to be in digital mode. The mechanism here
4186 is unfortunately different for different vendors. So we switch
4187 on the device's digital scheme attribute in order to figure out
4188 what to do. */
4189 switch (hdw->hdw_desc->digital_control_scheme) {
4190 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4191 return pvr2_issue_simple_cmd(hdw,
4192 (runFl ?
4193 FX2CMD_HCW_DTV_STREAMING_ON :
4194 FX2CMD_HCW_DTV_STREAMING_OFF));
4195 case PVR2_DIGITAL_SCHEME_ONAIR:
4196 ret = pvr2_issue_simple_cmd(hdw,
4197 (runFl ?
4198 FX2CMD_STREAMING_ON :
4199 FX2CMD_STREAMING_OFF));
4200 if (ret) return ret;
4201 return pvr2_hdw_cmd_onair_digital_path_ctrl(hdw,runFl);
4202 default:
4203 return -EINVAL;
4204 }
Mike Iselyd8554972006-06-26 20:58:46 -03004205}
4206
4207
Mike Isely62433e32008-04-22 14:45:40 -03004208/* Evaluate whether or not state_pathway_ok can change */
4209static int state_eval_pathway_ok(struct pvr2_hdw *hdw)
4210{
4211 if (hdw->state_pathway_ok) {
4212 /* Nothing to do if pathway is already ok */
4213 return 0;
4214 }
4215 if (!hdw->state_pipeline_idle) {
4216 /* Not allowed to change anything if pipeline is not idle */
4217 return 0;
4218 }
4219 pvr2_hdw_cmd_modeswitch(hdw,hdw->input_val == PVR2_CVAL_INPUT_DTV);
4220 hdw->state_pathway_ok = !0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03004221 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03004222 return !0;
4223}
4224
4225
Mike Isely681c7392007-11-26 01:48:52 -03004226/* Evaluate whether or not state_encoder_ok can change */
4227static int state_eval_encoder_ok(struct pvr2_hdw *hdw)
4228{
4229 if (hdw->state_encoder_ok) return 0;
4230 if (hdw->flag_tripped) return 0;
4231 if (hdw->state_encoder_run) return 0;
4232 if (hdw->state_encoder_config) return 0;
4233 if (hdw->state_decoder_run) return 0;
4234 if (hdw->state_usbstream_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004235 if (hdw->pathway_state == PVR2_PATHWAY_DIGITAL) {
4236 if (!hdw->hdw_desc->flag_digital_requires_cx23416) return 0;
4237 } else if (hdw->pathway_state != PVR2_PATHWAY_ANALOG) {
4238 return 0;
4239 }
4240
Mike Isely681c7392007-11-26 01:48:52 -03004241 if (pvr2_upload_firmware2(hdw) < 0) {
4242 hdw->flag_tripped = !0;
4243 trace_stbit("flag_tripped",hdw->flag_tripped);
4244 return !0;
4245 }
4246 hdw->state_encoder_ok = !0;
4247 trace_stbit("state_encoder_ok",hdw->state_encoder_ok);
4248 return !0;
4249}
4250
4251
4252/* Evaluate whether or not state_encoder_config can change */
4253static int state_eval_encoder_config(struct pvr2_hdw *hdw)
4254{
4255 if (hdw->state_encoder_config) {
4256 if (hdw->state_encoder_ok) {
4257 if (hdw->state_pipeline_req &&
4258 !hdw->state_pipeline_pause) return 0;
4259 }
4260 hdw->state_encoder_config = 0;
4261 hdw->state_encoder_waitok = 0;
4262 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4263 /* paranoia - solve race if timer just completed */
4264 del_timer_sync(&hdw->encoder_wait_timer);
4265 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004266 if (!hdw->state_pathway_ok ||
4267 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4268 !hdw->state_encoder_ok ||
Mike Isely681c7392007-11-26 01:48:52 -03004269 !hdw->state_pipeline_idle ||
4270 hdw->state_pipeline_pause ||
4271 !hdw->state_pipeline_req ||
4272 !hdw->state_pipeline_config) {
4273 /* We must reset the enforced wait interval if
4274 anything has happened that might have disturbed
4275 the encoder. This should be a rare case. */
4276 if (timer_pending(&hdw->encoder_wait_timer)) {
4277 del_timer_sync(&hdw->encoder_wait_timer);
4278 }
4279 if (hdw->state_encoder_waitok) {
4280 /* Must clear the state - therefore we did
4281 something to a state bit and must also
4282 return true. */
4283 hdw->state_encoder_waitok = 0;
4284 trace_stbit("state_encoder_waitok",
4285 hdw->state_encoder_waitok);
4286 return !0;
4287 }
4288 return 0;
4289 }
4290 if (!hdw->state_encoder_waitok) {
4291 if (!timer_pending(&hdw->encoder_wait_timer)) {
4292 /* waitok flag wasn't set and timer isn't
4293 running. Check flag once more to avoid
4294 a race then start the timer. This is
4295 the point when we measure out a minimal
4296 quiet interval before doing something to
4297 the encoder. */
4298 if (!hdw->state_encoder_waitok) {
4299 hdw->encoder_wait_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004300 jiffies +
4301 (HZ * TIME_MSEC_ENCODER_WAIT
4302 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004303 add_timer(&hdw->encoder_wait_timer);
4304 }
4305 }
4306 /* We can't continue until we know we have been
4307 quiet for the interval measured by this
4308 timer. */
4309 return 0;
4310 }
4311 pvr2_encoder_configure(hdw);
4312 if (hdw->state_encoder_ok) hdw->state_encoder_config = !0;
4313 }
4314 trace_stbit("state_encoder_config",hdw->state_encoder_config);
4315 return !0;
4316}
4317
4318
Mike Iselyd913d632008-04-06 04:04:35 -03004319/* Return true if the encoder should not be running. */
4320static int state_check_disable_encoder_run(struct pvr2_hdw *hdw)
4321{
4322 if (!hdw->state_encoder_ok) {
4323 /* Encoder isn't healthy at the moment, so stop it. */
4324 return !0;
4325 }
4326 if (!hdw->state_pathway_ok) {
4327 /* Mode is not understood at the moment (i.e. it wants to
4328 change), so encoder must be stopped. */
4329 return !0;
4330 }
4331
4332 switch (hdw->pathway_state) {
4333 case PVR2_PATHWAY_ANALOG:
4334 if (!hdw->state_decoder_run) {
4335 /* We're in analog mode and the decoder is not
4336 running; thus the encoder should be stopped as
4337 well. */
4338 return !0;
4339 }
4340 break;
4341 case PVR2_PATHWAY_DIGITAL:
4342 if (hdw->state_encoder_runok) {
4343 /* This is a funny case. We're in digital mode so
4344 really the encoder should be stopped. However
4345 if it really is running, only kill it after
4346 runok has been set. This gives a chance for the
4347 onair quirk to function (encoder must run
4348 briefly first, at least once, before onair
4349 digital streaming can work). */
4350 return !0;
4351 }
4352 break;
4353 default:
4354 /* Unknown mode; so encoder should be stopped. */
4355 return !0;
4356 }
4357
4358 /* If we get here, we haven't found a reason to stop the
4359 encoder. */
4360 return 0;
4361}
4362
4363
4364/* Return true if the encoder should be running. */
4365static int state_check_enable_encoder_run(struct pvr2_hdw *hdw)
4366{
4367 if (!hdw->state_encoder_ok) {
4368 /* Don't run the encoder if it isn't healthy... */
4369 return 0;
4370 }
4371 if (!hdw->state_pathway_ok) {
4372 /* Don't run the encoder if we don't (yet) know what mode
4373 we need to be in... */
4374 return 0;
4375 }
4376
4377 switch (hdw->pathway_state) {
4378 case PVR2_PATHWAY_ANALOG:
Mike Isely6e931372010-02-06 02:10:38 -03004379 if (hdw->state_decoder_run && hdw->state_decoder_ready) {
Mike Iselyd913d632008-04-06 04:04:35 -03004380 /* In analog mode, if the decoder is running, then
4381 run the encoder. */
4382 return !0;
4383 }
4384 break;
4385 case PVR2_PATHWAY_DIGITAL:
4386 if ((hdw->hdw_desc->digital_control_scheme ==
4387 PVR2_DIGITAL_SCHEME_ONAIR) &&
4388 !hdw->state_encoder_runok) {
4389 /* This is a quirk. OnAir hardware won't stream
4390 digital until the encoder has been run at least
4391 once, for a minimal period of time (empiricially
4392 measured to be 1/4 second). So if we're on
4393 OnAir hardware and the encoder has never been
4394 run at all, then start the encoder. Normal
4395 state machine logic in the driver will
4396 automatically handle the remaining bits. */
4397 return !0;
4398 }
4399 break;
4400 default:
4401 /* For completeness (unknown mode; encoder won't run ever) */
4402 break;
4403 }
4404 /* If we get here, then we haven't found any reason to run the
4405 encoder, so don't run it. */
4406 return 0;
4407}
4408
4409
Mike Isely681c7392007-11-26 01:48:52 -03004410/* Evaluate whether or not state_encoder_run can change */
4411static int state_eval_encoder_run(struct pvr2_hdw *hdw)
4412{
4413 if (hdw->state_encoder_run) {
Mike Iselyd913d632008-04-06 04:04:35 -03004414 if (!state_check_disable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004415 if (hdw->state_encoder_ok) {
Mike Iselyd913d632008-04-06 04:04:35 -03004416 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03004417 if (pvr2_encoder_stop(hdw) < 0) return !0;
4418 }
4419 hdw->state_encoder_run = 0;
4420 } else {
Mike Iselyd913d632008-04-06 04:04:35 -03004421 if (!state_check_enable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004422 if (pvr2_encoder_start(hdw) < 0) return !0;
4423 hdw->state_encoder_run = !0;
Mike Iselyd913d632008-04-06 04:04:35 -03004424 if (!hdw->state_encoder_runok) {
4425 hdw->encoder_run_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004426 jiffies + (HZ * TIME_MSEC_ENCODER_OK / 1000);
Mike Iselyd913d632008-04-06 04:04:35 -03004427 add_timer(&hdw->encoder_run_timer);
4428 }
Mike Isely681c7392007-11-26 01:48:52 -03004429 }
4430 trace_stbit("state_encoder_run",hdw->state_encoder_run);
4431 return !0;
4432}
4433
4434
4435/* Timeout function for quiescent timer. */
4436static void pvr2_hdw_quiescent_timeout(unsigned long data)
4437{
4438 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4439 hdw->state_decoder_quiescent = !0;
4440 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4441 hdw->state_stale = !0;
4442 queue_work(hdw->workqueue,&hdw->workpoll);
4443}
4444
4445
Mike Isely6e931372010-02-06 02:10:38 -03004446/* Timeout function for decoder stabilization timer. */
4447static void pvr2_hdw_decoder_stabilization_timeout(unsigned long data)
4448{
4449 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4450 hdw->state_decoder_ready = !0;
4451 trace_stbit("state_decoder_ready", hdw->state_decoder_ready);
4452 hdw->state_stale = !0;
4453 queue_work(hdw->workqueue, &hdw->workpoll);
4454}
4455
4456
Mike Isely681c7392007-11-26 01:48:52 -03004457/* Timeout function for encoder wait timer. */
4458static void pvr2_hdw_encoder_wait_timeout(unsigned long data)
4459{
4460 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4461 hdw->state_encoder_waitok = !0;
4462 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4463 hdw->state_stale = !0;
4464 queue_work(hdw->workqueue,&hdw->workpoll);
4465}
4466
4467
Mike Iselyd913d632008-04-06 04:04:35 -03004468/* Timeout function for encoder run timer. */
4469static void pvr2_hdw_encoder_run_timeout(unsigned long data)
4470{
4471 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4472 if (!hdw->state_encoder_runok) {
4473 hdw->state_encoder_runok = !0;
4474 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
4475 hdw->state_stale = !0;
4476 queue_work(hdw->workqueue,&hdw->workpoll);
4477 }
4478}
4479
4480
Mike Isely681c7392007-11-26 01:48:52 -03004481/* Evaluate whether or not state_decoder_run can change */
4482static int state_eval_decoder_run(struct pvr2_hdw *hdw)
4483{
4484 if (hdw->state_decoder_run) {
4485 if (hdw->state_encoder_ok) {
4486 if (hdw->state_pipeline_req &&
Mike Isely62433e32008-04-22 14:45:40 -03004487 !hdw->state_pipeline_pause &&
4488 hdw->state_pathway_ok) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004489 }
4490 if (!hdw->flag_decoder_missed) {
4491 pvr2_decoder_enable(hdw,0);
4492 }
4493 hdw->state_decoder_quiescent = 0;
4494 hdw->state_decoder_run = 0;
Mike Isely6e931372010-02-06 02:10:38 -03004495 /* paranoia - solve race if timer(s) just completed */
Mike Isely681c7392007-11-26 01:48:52 -03004496 del_timer_sync(&hdw->quiescent_timer);
Mike Isely6e931372010-02-06 02:10:38 -03004497 /* Kill the stabilization timer, in case we're killing the
4498 encoder before the previous stabilization interval has
4499 been properly timed. */
4500 del_timer_sync(&hdw->decoder_stabilization_timer);
4501 hdw->state_decoder_ready = 0;
Mike Isely681c7392007-11-26 01:48:52 -03004502 } else {
4503 if (!hdw->state_decoder_quiescent) {
4504 if (!timer_pending(&hdw->quiescent_timer)) {
4505 /* We don't do something about the
4506 quiescent timer until right here because
4507 we also want to catch cases where the
4508 decoder was already not running (like
4509 after initialization) as opposed to
4510 knowing that we had just stopped it.
4511 The second flag check is here to cover a
4512 race - the timer could have run and set
4513 this flag just after the previous check
4514 but before we did the pending check. */
4515 if (!hdw->state_decoder_quiescent) {
4516 hdw->quiescent_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004517 jiffies +
4518 (HZ * TIME_MSEC_DECODER_WAIT
4519 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004520 add_timer(&hdw->quiescent_timer);
4521 }
4522 }
4523 /* Don't allow decoder to start again until it has
4524 been quiesced first. This little detail should
4525 hopefully further stabilize the encoder. */
4526 return 0;
4527 }
Mike Isely62433e32008-04-22 14:45:40 -03004528 if (!hdw->state_pathway_ok ||
4529 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4530 !hdw->state_pipeline_req ||
Mike Isely681c7392007-11-26 01:48:52 -03004531 hdw->state_pipeline_pause ||
4532 !hdw->state_pipeline_config ||
4533 !hdw->state_encoder_config ||
4534 !hdw->state_encoder_ok) return 0;
4535 del_timer_sync(&hdw->quiescent_timer);
4536 if (hdw->flag_decoder_missed) return 0;
4537 if (pvr2_decoder_enable(hdw,!0) < 0) return 0;
4538 hdw->state_decoder_quiescent = 0;
Mike Isely6e931372010-02-06 02:10:38 -03004539 hdw->state_decoder_ready = 0;
Mike Isely681c7392007-11-26 01:48:52 -03004540 hdw->state_decoder_run = !0;
Mike Iselyfb640222010-02-06 02:17:17 -03004541 if (hdw->decoder_client_id == PVR2_CLIENT_ID_SAA7115) {
4542 hdw->decoder_stabilization_timer.expires =
4543 jiffies +
4544 (HZ * TIME_MSEC_DECODER_STABILIZATION_WAIT /
4545 1000);
4546 add_timer(&hdw->decoder_stabilization_timer);
4547 } else {
4548 hdw->state_decoder_ready = !0;
4549 }
Mike Isely681c7392007-11-26 01:48:52 -03004550 }
4551 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4552 trace_stbit("state_decoder_run",hdw->state_decoder_run);
Mike Isely6e931372010-02-06 02:10:38 -03004553 trace_stbit("state_decoder_ready", hdw->state_decoder_ready);
Mike Isely681c7392007-11-26 01:48:52 -03004554 return !0;
4555}
4556
4557
4558/* Evaluate whether or not state_usbstream_run can change */
4559static int state_eval_usbstream_run(struct pvr2_hdw *hdw)
4560{
4561 if (hdw->state_usbstream_run) {
Mike Isely72998b72008-04-03 04:51:19 -03004562 int fl = !0;
Mike Isely62433e32008-04-22 14:45:40 -03004563 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
Mike Isely72998b72008-04-03 04:51:19 -03004564 fl = (hdw->state_encoder_ok &&
4565 hdw->state_encoder_run);
4566 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4567 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4568 fl = hdw->state_encoder_ok;
4569 }
4570 if (fl &&
4571 hdw->state_pipeline_req &&
4572 !hdw->state_pipeline_pause &&
4573 hdw->state_pathway_ok) {
4574 return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004575 }
4576 pvr2_hdw_cmd_usbstream(hdw,0);
4577 hdw->state_usbstream_run = 0;
4578 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004579 if (!hdw->state_pipeline_req ||
4580 hdw->state_pipeline_pause ||
4581 !hdw->state_pathway_ok) return 0;
4582 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4583 if (!hdw->state_encoder_ok ||
4584 !hdw->state_encoder_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004585 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4586 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4587 if (!hdw->state_encoder_ok) return 0;
Mike Iselyd913d632008-04-06 04:04:35 -03004588 if (hdw->state_encoder_run) return 0;
4589 if (hdw->hdw_desc->digital_control_scheme ==
4590 PVR2_DIGITAL_SCHEME_ONAIR) {
4591 /* OnAir digital receivers won't stream
4592 unless the analog encoder has run first.
4593 Why? I have no idea. But don't even
4594 try until we know the analog side is
4595 known to have run. */
4596 if (!hdw->state_encoder_runok) return 0;
4597 }
Mike Isely62433e32008-04-22 14:45:40 -03004598 }
Mike Isely681c7392007-11-26 01:48:52 -03004599 if (pvr2_hdw_cmd_usbstream(hdw,!0) < 0) return 0;
4600 hdw->state_usbstream_run = !0;
4601 }
4602 trace_stbit("state_usbstream_run",hdw->state_usbstream_run);
4603 return !0;
4604}
4605
4606
4607/* Attempt to configure pipeline, if needed */
4608static int state_eval_pipeline_config(struct pvr2_hdw *hdw)
4609{
4610 if (hdw->state_pipeline_config ||
4611 hdw->state_pipeline_pause) return 0;
4612 pvr2_hdw_commit_execute(hdw);
4613 return !0;
4614}
4615
4616
4617/* Update pipeline idle and pipeline pause tracking states based on other
4618 inputs. This must be called whenever the other relevant inputs have
4619 changed. */
4620static int state_update_pipeline_state(struct pvr2_hdw *hdw)
4621{
4622 unsigned int st;
4623 int updatedFl = 0;
4624 /* Update pipeline state */
4625 st = !(hdw->state_encoder_run ||
4626 hdw->state_decoder_run ||
4627 hdw->state_usbstream_run ||
4628 (!hdw->state_decoder_quiescent));
4629 if (!st != !hdw->state_pipeline_idle) {
4630 hdw->state_pipeline_idle = st;
4631 updatedFl = !0;
4632 }
4633 if (hdw->state_pipeline_idle && hdw->state_pipeline_pause) {
4634 hdw->state_pipeline_pause = 0;
4635 updatedFl = !0;
4636 }
4637 return updatedFl;
4638}
4639
4640
4641typedef int (*state_eval_func)(struct pvr2_hdw *);
4642
4643/* Set of functions to be run to evaluate various states in the driver. */
Tobias Klauserebff0332008-04-22 14:45:45 -03004644static const state_eval_func eval_funcs[] = {
Mike Isely62433e32008-04-22 14:45:40 -03004645 state_eval_pathway_ok,
Mike Isely681c7392007-11-26 01:48:52 -03004646 state_eval_pipeline_config,
4647 state_eval_encoder_ok,
4648 state_eval_encoder_config,
4649 state_eval_decoder_run,
4650 state_eval_encoder_run,
4651 state_eval_usbstream_run,
4652};
4653
4654
4655/* Process various states and return true if we did anything interesting. */
4656static int pvr2_hdw_state_update(struct pvr2_hdw *hdw)
4657{
4658 unsigned int i;
4659 int state_updated = 0;
4660 int check_flag;
4661
4662 if (!hdw->state_stale) return 0;
4663 if ((hdw->fw1_state != FW1_STATE_OK) ||
4664 !hdw->flag_ok) {
4665 hdw->state_stale = 0;
4666 return !0;
4667 }
4668 /* This loop is the heart of the entire driver. It keeps trying to
4669 evaluate various bits of driver state until nothing changes for
4670 one full iteration. Each "bit of state" tracks some global
4671 aspect of the driver, e.g. whether decoder should run, if
4672 pipeline is configured, usb streaming is on, etc. We separately
4673 evaluate each of those questions based on other driver state to
4674 arrive at the correct running configuration. */
4675 do {
4676 check_flag = 0;
4677 state_update_pipeline_state(hdw);
4678 /* Iterate over each bit of state */
4679 for (i = 0; (i<ARRAY_SIZE(eval_funcs)) && hdw->flag_ok; i++) {
4680 if ((*eval_funcs[i])(hdw)) {
4681 check_flag = !0;
4682 state_updated = !0;
4683 state_update_pipeline_state(hdw);
4684 }
4685 }
4686 } while (check_flag && hdw->flag_ok);
4687 hdw->state_stale = 0;
4688 trace_stbit("state_stale",hdw->state_stale);
4689 return state_updated;
4690}
4691
4692
Mike Isely1cb03b72008-04-21 03:47:43 -03004693static unsigned int print_input_mask(unsigned int msk,
4694 char *buf,unsigned int acnt)
4695{
4696 unsigned int idx,ccnt;
4697 unsigned int tcnt = 0;
4698 for (idx = 0; idx < ARRAY_SIZE(control_values_input); idx++) {
4699 if (!((1 << idx) & msk)) continue;
4700 ccnt = scnprintf(buf+tcnt,
4701 acnt-tcnt,
4702 "%s%s",
4703 (tcnt ? ", " : ""),
4704 control_values_input[idx]);
4705 tcnt += ccnt;
4706 }
4707 return tcnt;
4708}
4709
4710
Mike Isely62433e32008-04-22 14:45:40 -03004711static const char *pvr2_pathway_state_name(int id)
4712{
4713 switch (id) {
4714 case PVR2_PATHWAY_ANALOG: return "analog";
4715 case PVR2_PATHWAY_DIGITAL: return "digital";
4716 default: return "unknown";
4717 }
4718}
4719
4720
Mike Isely681c7392007-11-26 01:48:52 -03004721static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw *hdw,int which,
4722 char *buf,unsigned int acnt)
4723{
4724 switch (which) {
4725 case 0:
4726 return scnprintf(
4727 buf,acnt,
Mike Iselye9db1ff2008-04-22 14:45:41 -03004728 "driver:%s%s%s%s%s <mode=%s>",
Mike Isely681c7392007-11-26 01:48:52 -03004729 (hdw->flag_ok ? " <ok>" : " <fail>"),
4730 (hdw->flag_init_ok ? " <init>" : " <uninitialized>"),
4731 (hdw->flag_disconnected ? " <disconnected>" :
4732 " <connected>"),
4733 (hdw->flag_tripped ? " <tripped>" : ""),
Mike Isely62433e32008-04-22 14:45:40 -03004734 (hdw->flag_decoder_missed ? " <no decoder>" : ""),
4735 pvr2_pathway_state_name(hdw->pathway_state));
4736
Mike Isely681c7392007-11-26 01:48:52 -03004737 case 1:
4738 return scnprintf(
4739 buf,acnt,
4740 "pipeline:%s%s%s%s",
4741 (hdw->state_pipeline_idle ? " <idle>" : ""),
4742 (hdw->state_pipeline_config ?
4743 " <configok>" : " <stale>"),
4744 (hdw->state_pipeline_req ? " <req>" : ""),
4745 (hdw->state_pipeline_pause ? " <pause>" : ""));
4746 case 2:
4747 return scnprintf(
4748 buf,acnt,
Mike Isely62433e32008-04-22 14:45:40 -03004749 "worker:%s%s%s%s%s%s%s",
Mike Isely681c7392007-11-26 01:48:52 -03004750 (hdw->state_decoder_run ?
Mike Isely6e931372010-02-06 02:10:38 -03004751 (hdw->state_decoder_ready ?
4752 "<decode:run>" : " <decode:start>") :
Mike Isely681c7392007-11-26 01:48:52 -03004753 (hdw->state_decoder_quiescent ?
4754 "" : " <decode:stop>")),
4755 (hdw->state_decoder_quiescent ?
4756 " <decode:quiescent>" : ""),
4757 (hdw->state_encoder_ok ?
4758 "" : " <encode:init>"),
4759 (hdw->state_encoder_run ?
Mike Iselyd913d632008-04-06 04:04:35 -03004760 (hdw->state_encoder_runok ?
4761 " <encode:run>" :
4762 " <encode:firstrun>") :
4763 (hdw->state_encoder_runok ?
4764 " <encode:stop>" :
4765 " <encode:virgin>")),
Mike Isely681c7392007-11-26 01:48:52 -03004766 (hdw->state_encoder_config ?
4767 " <encode:configok>" :
4768 (hdw->state_encoder_waitok ?
Mike Iselyb9a37d92008-03-28 05:31:40 -03004769 "" : " <encode:waitok>")),
Mike Isely681c7392007-11-26 01:48:52 -03004770 (hdw->state_usbstream_run ?
Mike Isely62433e32008-04-22 14:45:40 -03004771 " <usb:run>" : " <usb:stop>"),
4772 (hdw->state_pathway_ok ?
Mike Iselye9db1ff2008-04-22 14:45:41 -03004773 " <pathway:ok>" : ""));
Mike Isely681c7392007-11-26 01:48:52 -03004774 case 3:
4775 return scnprintf(
4776 buf,acnt,
4777 "state: %s",
4778 pvr2_get_state_name(hdw->master_state));
Mike Iselyad0992e2008-03-28 05:34:45 -03004779 case 4: {
Mike Isely1cb03b72008-04-21 03:47:43 -03004780 unsigned int tcnt = 0;
4781 unsigned int ccnt;
4782
4783 ccnt = scnprintf(buf,
4784 acnt,
4785 "Hardware supported inputs: ");
4786 tcnt += ccnt;
4787 tcnt += print_input_mask(hdw->input_avail_mask,
4788 buf+tcnt,
4789 acnt-tcnt);
4790 if (hdw->input_avail_mask != hdw->input_allowed_mask) {
4791 ccnt = scnprintf(buf+tcnt,
4792 acnt-tcnt,
4793 "; allowed inputs: ");
4794 tcnt += ccnt;
4795 tcnt += print_input_mask(hdw->input_allowed_mask,
4796 buf+tcnt,
4797 acnt-tcnt);
4798 }
4799 return tcnt;
4800 }
4801 case 5: {
Mike Iselyad0992e2008-03-28 05:34:45 -03004802 struct pvr2_stream_stats stats;
4803 if (!hdw->vid_stream) break;
4804 pvr2_stream_get_stats(hdw->vid_stream,
4805 &stats,
4806 0);
4807 return scnprintf(
4808 buf,acnt,
4809 "Bytes streamed=%u"
4810 " URBs: queued=%u idle=%u ready=%u"
4811 " processed=%u failed=%u",
4812 stats.bytes_processed,
4813 stats.buffers_in_queue,
4814 stats.buffers_in_idle,
4815 stats.buffers_in_ready,
4816 stats.buffers_processed,
4817 stats.buffers_failed);
4818 }
Mike Isely27eab382009-04-06 01:51:38 -03004819 case 6: {
4820 unsigned int id = hdw->ir_scheme_active;
4821 return scnprintf(buf, acnt, "ir scheme: id=%d %s", id,
4822 (id >= ARRAY_SIZE(ir_scheme_names) ?
4823 "?" : ir_scheme_names[id]));
4824 }
Mike Isely681c7392007-11-26 01:48:52 -03004825 default: break;
4826 }
4827 return 0;
4828}
4829
4830
Mike Isely2eb563b2009-03-08 18:25:46 -03004831/* Generate report containing info about attached sub-devices and attached
4832 i2c clients, including an indication of which attached i2c clients are
4833 actually sub-devices. */
4834static unsigned int pvr2_hdw_report_clients(struct pvr2_hdw *hdw,
4835 char *buf, unsigned int acnt)
4836{
4837 struct v4l2_subdev *sd;
4838 unsigned int tcnt = 0;
4839 unsigned int ccnt;
4840 struct i2c_client *client;
Mike Isely2eb563b2009-03-08 18:25:46 -03004841 const char *p;
4842 unsigned int id;
4843
Jean Delvarefa7ce76422009-05-02 00:22:27 -03004844 ccnt = scnprintf(buf, acnt, "Associated v4l2-subdev drivers and I2C clients:\n");
Mike Isely2eb563b2009-03-08 18:25:46 -03004845 tcnt += ccnt;
4846 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
4847 id = sd->grp_id;
4848 p = NULL;
4849 if (id < ARRAY_SIZE(module_names)) p = module_names[id];
4850 if (p) {
Jean Delvarefa7ce76422009-05-02 00:22:27 -03004851 ccnt = scnprintf(buf + tcnt, acnt - tcnt, " %s:", p);
Mike Isely2eb563b2009-03-08 18:25:46 -03004852 tcnt += ccnt;
4853 } else {
4854 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
Jean Delvarefa7ce76422009-05-02 00:22:27 -03004855 " (unknown id=%u):", id);
4856 tcnt += ccnt;
4857 }
4858 client = v4l2_get_subdevdata(sd);
4859 if (client) {
4860 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4861 " %s @ %02x\n", client->name,
4862 client->addr);
4863 tcnt += ccnt;
4864 } else {
4865 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4866 " no i2c client\n");
Mike Isely2eb563b2009-03-08 18:25:46 -03004867 tcnt += ccnt;
4868 }
4869 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004870 return tcnt;
4871}
4872
4873
Mike Isely681c7392007-11-26 01:48:52 -03004874unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
4875 char *buf,unsigned int acnt)
4876{
4877 unsigned int bcnt,ccnt,idx;
4878 bcnt = 0;
4879 LOCK_TAKE(hdw->big_lock);
4880 for (idx = 0; ; idx++) {
4881 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4882 if (!ccnt) break;
4883 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4884 if (!acnt) break;
4885 buf[0] = '\n'; ccnt = 1;
4886 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4887 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004888 ccnt = pvr2_hdw_report_clients(hdw, buf, acnt);
4889 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
Mike Isely681c7392007-11-26 01:48:52 -03004890 LOCK_GIVE(hdw->big_lock);
4891 return bcnt;
4892}
4893
4894
4895static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
4896{
Mike Isely2eb563b2009-03-08 18:25:46 -03004897 char buf[256];
4898 unsigned int idx, ccnt;
4899 unsigned int lcnt, ucnt;
Mike Isely681c7392007-11-26 01:48:52 -03004900
4901 for (idx = 0; ; idx++) {
4902 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
4903 if (!ccnt) break;
4904 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
4905 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004906 ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
4907 ucnt = 0;
4908 while (ucnt < ccnt) {
4909 lcnt = 0;
4910 while ((lcnt + ucnt < ccnt) && (buf[lcnt + ucnt] != '\n')) {
4911 lcnt++;
4912 }
4913 printk(KERN_INFO "%s %.*s\n", hdw->name, lcnt, buf + ucnt);
4914 ucnt += lcnt + 1;
4915 }
Mike Isely681c7392007-11-26 01:48:52 -03004916}
4917
4918
4919/* Evaluate and update the driver's current state, taking various actions
4920 as appropriate for the update. */
4921static int pvr2_hdw_state_eval(struct pvr2_hdw *hdw)
4922{
4923 unsigned int st;
4924 int state_updated = 0;
4925 int callback_flag = 0;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004926 int analog_mode;
Mike Isely681c7392007-11-26 01:48:52 -03004927
4928 pvr2_trace(PVR2_TRACE_STBITS,
4929 "Drive state check START");
4930 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4931 pvr2_hdw_state_log_state(hdw);
4932 }
4933
4934 /* Process all state and get back over disposition */
4935 state_updated = pvr2_hdw_state_update(hdw);
4936
Mike Isely1b9c18c2008-04-22 14:45:41 -03004937 analog_mode = (hdw->pathway_state != PVR2_PATHWAY_DIGITAL);
4938
Mike Isely681c7392007-11-26 01:48:52 -03004939 /* Update master state based upon all other states. */
4940 if (!hdw->flag_ok) {
4941 st = PVR2_STATE_DEAD;
4942 } else if (hdw->fw1_state != FW1_STATE_OK) {
4943 st = PVR2_STATE_COLD;
Mike Isely72998b72008-04-03 04:51:19 -03004944 } else if ((analog_mode ||
4945 hdw->hdw_desc->flag_digital_requires_cx23416) &&
4946 !hdw->state_encoder_ok) {
Mike Isely681c7392007-11-26 01:48:52 -03004947 st = PVR2_STATE_WARM;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004948 } else if (hdw->flag_tripped ||
4949 (analog_mode && hdw->flag_decoder_missed)) {
Mike Isely681c7392007-11-26 01:48:52 -03004950 st = PVR2_STATE_ERROR;
Mike Isely62433e32008-04-22 14:45:40 -03004951 } else if (hdw->state_usbstream_run &&
Mike Isely1b9c18c2008-04-22 14:45:41 -03004952 (!analog_mode ||
Mike Isely62433e32008-04-22 14:45:40 -03004953 (hdw->state_encoder_run && hdw->state_decoder_run))) {
Mike Isely681c7392007-11-26 01:48:52 -03004954 st = PVR2_STATE_RUN;
4955 } else {
4956 st = PVR2_STATE_READY;
4957 }
4958 if (hdw->master_state != st) {
4959 pvr2_trace(PVR2_TRACE_STATE,
4960 "Device state change from %s to %s",
4961 pvr2_get_state_name(hdw->master_state),
4962 pvr2_get_state_name(st));
Mike Isely40381cb2008-04-22 14:45:42 -03004963 pvr2_led_ctrl(hdw,st == PVR2_STATE_RUN);
Mike Isely681c7392007-11-26 01:48:52 -03004964 hdw->master_state = st;
4965 state_updated = !0;
4966 callback_flag = !0;
4967 }
4968 if (state_updated) {
4969 /* Trigger anyone waiting on any state changes here. */
4970 wake_up(&hdw->state_wait_data);
4971 }
4972
4973 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4974 pvr2_hdw_state_log_state(hdw);
4975 }
4976 pvr2_trace(PVR2_TRACE_STBITS,
4977 "Drive state check DONE callback=%d",callback_flag);
4978
4979 return callback_flag;
4980}
4981
4982
4983/* Cause kernel thread to check / update driver state */
4984static void pvr2_hdw_state_sched(struct pvr2_hdw *hdw)
4985{
4986 if (hdw->state_stale) return;
4987 hdw->state_stale = !0;
4988 trace_stbit("state_stale",hdw->state_stale);
4989 queue_work(hdw->workqueue,&hdw->workpoll);
4990}
4991
4992
Mike Iselyd8554972006-06-26 20:58:46 -03004993int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *dp)
4994{
4995 return pvr2_read_register(hdw,PVR2_GPIO_DIR,dp);
4996}
4997
4998
4999int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *dp)
5000{
5001 return pvr2_read_register(hdw,PVR2_GPIO_OUT,dp);
5002}
5003
5004
5005int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *dp)
5006{
5007 return pvr2_read_register(hdw,PVR2_GPIO_IN,dp);
5008}
5009
5010
5011int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val)
5012{
5013 u32 cval,nval;
5014 int ret;
5015 if (~msk) {
5016 ret = pvr2_read_register(hdw,PVR2_GPIO_DIR,&cval);
5017 if (ret) return ret;
5018 nval = (cval & ~msk) | (val & msk);
5019 pvr2_trace(PVR2_TRACE_GPIO,
5020 "GPIO direction changing 0x%x:0x%x"
5021 " from 0x%x to 0x%x",
5022 msk,val,cval,nval);
5023 } else {
5024 nval = val;
5025 pvr2_trace(PVR2_TRACE_GPIO,
5026 "GPIO direction changing to 0x%x",nval);
5027 }
5028 return pvr2_write_register(hdw,PVR2_GPIO_DIR,nval);
5029}
5030
5031
5032int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val)
5033{
5034 u32 cval,nval;
5035 int ret;
5036 if (~msk) {
5037 ret = pvr2_read_register(hdw,PVR2_GPIO_OUT,&cval);
5038 if (ret) return ret;
5039 nval = (cval & ~msk) | (val & msk);
5040 pvr2_trace(PVR2_TRACE_GPIO,
5041 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
5042 msk,val,cval,nval);
5043 } else {
5044 nval = val;
5045 pvr2_trace(PVR2_TRACE_GPIO,
5046 "GPIO output changing to 0x%x",nval);
5047 }
5048 return pvr2_write_register(hdw,PVR2_GPIO_OUT,nval);
5049}
5050
5051
Mike Iselya51f5002009-03-06 23:30:37 -03005052void pvr2_hdw_status_poll(struct pvr2_hdw *hdw)
5053{
Mike Isely40f07112009-03-07 00:08:17 -03005054 struct v4l2_tuner *vtp = &hdw->tuner_signal_info;
5055 memset(vtp, 0, sizeof(*vtp));
Hans Verkuil50e9efd2011-06-12 06:39:52 -03005056 vtp->type = (hdw->input_val == PVR2_CVAL_INPUT_RADIO) ?
5057 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mike Isely2641df32009-03-07 00:13:25 -03005058 hdw->tuner_signal_stale = 0;
Mike Isely40f07112009-03-07 00:08:17 -03005059 /* Note: There apparently is no replacement for VIDIOC_CROPCAP
5060 using v4l2-subdev - therefore we can't support that AT ALL right
5061 now. (Of course, no sub-drivers seem to implement it either.
5062 But now it's a a chicken and egg problem...) */
Mike Isely4cfe33192011-02-13 17:32:47 -03005063 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, g_tuner, vtp);
Mike Isely2641df32009-03-07 00:13:25 -03005064 pvr2_trace(PVR2_TRACE_CHIPS, "subdev status poll"
Mike Isely40f07112009-03-07 00:08:17 -03005065 " type=%u strength=%u audio=0x%x cap=0x%x"
5066 " low=%u hi=%u",
5067 vtp->type,
5068 vtp->signal, vtp->rxsubchans, vtp->capability,
5069 vtp->rangelow, vtp->rangehigh);
Mike Isely2641df32009-03-07 00:13:25 -03005070
5071 /* We have to do this to avoid getting into constant polling if
5072 there's nobody to answer a poll of cropcap info. */
5073 hdw->cropcap_stale = 0;
Mike Iselya51f5002009-03-06 23:30:37 -03005074}
5075
5076
Mike Isely7fb20fa2008-04-22 14:45:37 -03005077unsigned int pvr2_hdw_get_input_available(struct pvr2_hdw *hdw)
5078{
5079 return hdw->input_avail_mask;
5080}
5081
5082
Mike Isely1cb03b72008-04-21 03:47:43 -03005083unsigned int pvr2_hdw_get_input_allowed(struct pvr2_hdw *hdw)
5084{
5085 return hdw->input_allowed_mask;
5086}
5087
5088
5089static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v)
5090{
5091 if (hdw->input_val != v) {
5092 hdw->input_val = v;
5093 hdw->input_dirty = !0;
5094 }
5095
5096 /* Handle side effects - if we switch to a mode that needs the RF
5097 tuner, then select the right frequency choice as well and mark
5098 it dirty. */
5099 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
5100 hdw->freqSelector = 0;
5101 hdw->freqDirty = !0;
5102 } else if ((hdw->input_val == PVR2_CVAL_INPUT_TV) ||
5103 (hdw->input_val == PVR2_CVAL_INPUT_DTV)) {
5104 hdw->freqSelector = 1;
5105 hdw->freqDirty = !0;
5106 }
5107 return 0;
5108}
5109
5110
5111int pvr2_hdw_set_input_allowed(struct pvr2_hdw *hdw,
5112 unsigned int change_mask,
5113 unsigned int change_val)
5114{
5115 int ret = 0;
5116 unsigned int nv,m,idx;
5117 LOCK_TAKE(hdw->big_lock);
5118 do {
5119 nv = hdw->input_allowed_mask & ~change_mask;
5120 nv |= (change_val & change_mask);
5121 nv &= hdw->input_avail_mask;
5122 if (!nv) {
5123 /* No legal modes left; return error instead. */
5124 ret = -EPERM;
5125 break;
5126 }
5127 hdw->input_allowed_mask = nv;
5128 if ((1 << hdw->input_val) & hdw->input_allowed_mask) {
5129 /* Current mode is still in the allowed mask, so
5130 we're done. */
5131 break;
5132 }
5133 /* Select and switch to a mode that is still in the allowed
5134 mask */
5135 if (!hdw->input_allowed_mask) {
5136 /* Nothing legal; give up */
5137 break;
5138 }
5139 m = hdw->input_allowed_mask;
5140 for (idx = 0; idx < (sizeof(m) << 3); idx++) {
5141 if (!((1 << idx) & m)) continue;
5142 pvr2_hdw_set_input(hdw,idx);
5143 break;
5144 }
5145 } while (0);
5146 LOCK_GIVE(hdw->big_lock);
5147 return ret;
5148}
5149
5150
Mike Iselye61b6fc2006-07-18 22:42:18 -03005151/* Find I2C address of eeprom */
Adrian Bunk07e337e2006-06-30 11:30:20 -03005152static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03005153{
5154 int result;
5155 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03005156 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03005157 result = pvr2_send_request(hdw,
5158 hdw->cmd_buffer,1,
5159 hdw->cmd_buffer,1);
5160 if (result < 0) break;
5161 result = hdw->cmd_buffer[0];
5162 } while(0); LOCK_GIVE(hdw->ctl_lock);
5163 return result;
5164}
5165
5166
Mike Isely32ffa9a2006-09-23 22:26:52 -03005167int pvr2_hdw_register_access(struct pvr2_hdw *hdw,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03005168 struct v4l2_dbg_match *match, u64 reg_id,
5169 int setFl, u64 *val_ptr)
Mike Isely32ffa9a2006-09-23 22:26:52 -03005170{
5171#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03005172 struct v4l2_dbg_register req;
Mike Isely6d988162006-09-28 17:53:49 -03005173 int stat = 0;
5174 int okFl = 0;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005175
Mike Isely201f5c92007-01-28 16:08:36 -03005176 if (!capable(CAP_SYS_ADMIN)) return -EPERM;
5177
Hans Verkuilaecde8b52008-12-30 07:14:19 -03005178 req.match = *match;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005179 req.reg = reg_id;
5180 if (setFl) req.val = *val_ptr;
Mike Iselyd8f5b9b2009-03-07 00:05:00 -03005181 /* It would be nice to know if a sub-device answered the request */
5182 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, g_register, &req);
5183 if (!setFl) *val_ptr = req.val;
Mike Isely6d988162006-09-28 17:53:49 -03005184 if (okFl) {
5185 return stat;
5186 }
Mike Isely32ffa9a2006-09-23 22:26:52 -03005187 return -EINVAL;
5188#else
5189 return -ENOSYS;
5190#endif
5191}
5192
5193
Mike Iselyd8554972006-06-26 20:58:46 -03005194/*
5195 Stuff for Emacs to see, in order to encourage consistent editing style:
5196 *** Local Variables: ***
5197 *** mode: c ***
5198 *** fill-column: 75 ***
5199 *** tab-width: 8 ***
5200 *** c-basic-offset: 8 ***
5201 *** End: ***
5202 */