blob: bd05ec7b1cbe7d1771ac96403c499bd7bc89225e [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
Mike Iselyd8554972006-06-26 20:58:46 -03003 *
4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
21#include <linux/errno.h>
22#include <linux/string.h>
23#include <linux/slab.h>
24#include <linux/firmware.h>
Mike Iselyd8554972006-06-26 20:58:46 -030025#include <linux/videodev2.h>
Mike Isely32ffa9a2006-09-23 22:26:52 -030026#include <media/v4l2-common.h>
Mike Isely75212a02009-03-07 01:48:42 -030027#include <media/tuner.h>
Mike Iselyd8554972006-06-26 20:58:46 -030028#include "pvrusb2.h"
29#include "pvrusb2-std.h"
30#include "pvrusb2-util.h"
31#include "pvrusb2-hdw.h"
32#include "pvrusb2-i2c-core.h"
Mike Iselyd8554972006-06-26 20:58:46 -030033#include "pvrusb2-eeprom.h"
34#include "pvrusb2-hdw-internal.h"
35#include "pvrusb2-encoder.h"
36#include "pvrusb2-debug.h"
Michael Krufky8d364362007-01-22 02:17:55 -030037#include "pvrusb2-fx2-cmd.h"
Mike Isely5f6dae82009-03-07 00:39:34 -030038#include "pvrusb2-wm8775.h"
Mike Isely6f956512009-03-07 00:43:26 -030039#include "pvrusb2-video-v4l.h"
Mike Isely634ba262009-03-07 00:54:02 -030040#include "pvrusb2-cx2584x-v4l.h"
Mike Isely2a6b6272009-03-15 17:53:29 -030041#include "pvrusb2-cs53l32a.h"
Mike Isely76891d62009-03-07 00:52:06 -030042#include "pvrusb2-audio.h"
Mike Iselyd8554972006-06-26 20:58:46 -030043
Mike Isely1bde0282006-12-27 23:30:13 -030044#define TV_MIN_FREQ 55250000L
45#define TV_MAX_FREQ 850000000L
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -030046
Mike Isely83ce57a2008-05-26 05:51:57 -030047/* This defines a minimum interval that the decoder must remain quiet
48 before we are allowed to start it running. */
49#define TIME_MSEC_DECODER_WAIT 50
50
51/* This defines a minimum interval that the encoder must remain quiet
Mike Iselyfa98e592008-05-26 05:54:24 -030052 before we are allowed to configure it. I had this originally set to
53 50msec, but Martin Dauskardt <martin.dauskardt@gmx.de> reports that
54 things work better when it's set to 100msec. */
55#define TIME_MSEC_ENCODER_WAIT 100
Mike Isely83ce57a2008-05-26 05:51:57 -030056
57/* This defines the minimum interval that the encoder must successfully run
58 before we consider that the encoder has run at least once since its
59 firmware has been loaded. This measurement is in important for cases
60 where we can't do something until we know that the encoder has been run
61 at least once. */
62#define TIME_MSEC_ENCODER_OK 250
63
Mike Iselya0fd1cb2006-06-30 11:35:28 -030064static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -030065static DEFINE_MUTEX(pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -030066
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030067static int ctlchg;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030068static int procreload;
Mike Iselyd8554972006-06-26 20:58:46 -030069static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
70static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
71static int video_std[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030072static int init_pause_msec;
Mike Iselyd8554972006-06-26 20:58:46 -030073
74module_param(ctlchg, int, S_IRUGO|S_IWUSR);
75MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
76module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
77MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
Mike Iselyd8554972006-06-26 20:58:46 -030078module_param(procreload, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(procreload,
80 "Attempt init failure recovery with firmware reload");
81module_param_array(tuner, int, NULL, 0444);
82MODULE_PARM_DESC(tuner,"specify installed tuner type");
83module_param_array(video_std, int, NULL, 0444);
84MODULE_PARM_DESC(video_std,"specify initial video standard");
85module_param_array(tolerance, int, NULL, 0444);
86MODULE_PARM_DESC(tolerance,"specify stream error tolerance");
87
Mike Isely6f441ed2009-06-20 14:51:29 -030088/* US Broadcast channel 3 (61.25 MHz), to help with testing */
89static int default_tv_freq = 61250000L;
Michael Krufky5a4f5da62008-05-11 16:37:50 -030090/* 104.3 MHz, a usable FM station for my area */
91static int default_radio_freq = 104300000L;
92
93module_param_named(tv_freq, default_tv_freq, int, 0444);
94MODULE_PARM_DESC(tv_freq, "specify initial television frequency");
95module_param_named(radio_freq, default_radio_freq, int, 0444);
96MODULE_PARM_DESC(radio_freq, "specify initial radio frequency");
97
Mike Iselyd8554972006-06-26 20:58:46 -030098#define PVR2_CTL_WRITE_ENDPOINT 0x01
99#define PVR2_CTL_READ_ENDPOINT 0x81
100
101#define PVR2_GPIO_IN 0x9008
102#define PVR2_GPIO_OUT 0x900c
103#define PVR2_GPIO_DIR 0x9020
104
105#define trace_firmware(...) pvr2_trace(PVR2_TRACE_FIRMWARE,__VA_ARGS__)
106
107#define PVR2_FIRMWARE_ENDPOINT 0x02
108
109/* size of a firmware chunk */
110#define FIRMWARE_CHUNK_SIZE 0x2000
111
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300112typedef void (*pvr2_subdev_update_func)(struct pvr2_hdw *,
113 struct v4l2_subdev *);
114
115static const pvr2_subdev_update_func pvr2_module_update_functions[] = {
Mike Isely4ecbc282009-03-07 00:49:19 -0300116 [PVR2_CLIENT_ID_WM8775] = pvr2_wm8775_subdev_update,
Mike Isely6f956512009-03-07 00:43:26 -0300117 [PVR2_CLIENT_ID_SAA7115] = pvr2_saa7115_subdev_update,
Mike Isely76891d62009-03-07 00:52:06 -0300118 [PVR2_CLIENT_ID_MSP3400] = pvr2_msp3400_subdev_update,
Mike Isely634ba262009-03-07 00:54:02 -0300119 [PVR2_CLIENT_ID_CX25840] = pvr2_cx25840_subdev_update,
Mike Isely2a6b6272009-03-15 17:53:29 -0300120 [PVR2_CLIENT_ID_CS53L32A] = pvr2_cs53l32a_subdev_update,
Mike Iselyedb9dcb2009-03-07 00:37:10 -0300121};
122
Mike Iselye9c64a72009-03-06 23:42:20 -0300123static const char *module_names[] = {
124 [PVR2_CLIENT_ID_MSP3400] = "msp3400",
125 [PVR2_CLIENT_ID_CX25840] = "cx25840",
126 [PVR2_CLIENT_ID_SAA7115] = "saa7115",
127 [PVR2_CLIENT_ID_TUNER] = "tuner",
Mike Iselybb652422009-03-14 14:09:04 -0300128 [PVR2_CLIENT_ID_DEMOD] = "tuner",
Mike Isely851981a2009-03-07 02:02:32 -0300129 [PVR2_CLIENT_ID_CS53L32A] = "cs53l32a",
Mike Isely5f6dae82009-03-07 00:39:34 -0300130 [PVR2_CLIENT_ID_WM8775] = "wm8775",
Mike Iselye9c64a72009-03-06 23:42:20 -0300131};
132
133
134static const unsigned char *module_i2c_addresses[] = {
135 [PVR2_CLIENT_ID_TUNER] = "\x60\x61\x62\x63",
Mike Iselybb652422009-03-14 14:09:04 -0300136 [PVR2_CLIENT_ID_DEMOD] = "\x43",
Mike Isely1dfe6c72009-03-07 02:00:21 -0300137 [PVR2_CLIENT_ID_MSP3400] = "\x40",
138 [PVR2_CLIENT_ID_SAA7115] = "\x21",
Mike Iselyae111f72009-03-07 00:57:42 -0300139 [PVR2_CLIENT_ID_WM8775] = "\x1b",
Mike Isely0b467012009-03-07 01:49:37 -0300140 [PVR2_CLIENT_ID_CX25840] = "\x44",
Mike Isely23334a22009-03-07 02:03:28 -0300141 [PVR2_CLIENT_ID_CS53L32A] = "\x11",
Mike Iselye9c64a72009-03-06 23:42:20 -0300142};
143
144
Mike Isely27eab382009-04-06 01:51:38 -0300145static const char *ir_scheme_names[] = {
146 [PVR2_IR_SCHEME_NONE] = "none",
147 [PVR2_IR_SCHEME_29XXX] = "29xxx",
148 [PVR2_IR_SCHEME_24XXX] = "24xxx (29xxx emulation)",
149 [PVR2_IR_SCHEME_24XXX_MCE] = "24xxx (MCE device)",
150 [PVR2_IR_SCHEME_ZILOG] = "Zilog",
151};
152
153
Mike Iselyb30d2442006-06-25 20:05:01 -0300154/* Define the list of additional controls we'll dynamically construct based
155 on query of the cx2341x module. */
156struct pvr2_mpeg_ids {
157 const char *strid;
158 int id;
159};
160static const struct pvr2_mpeg_ids mpeg_ids[] = {
161 {
162 .strid = "audio_layer",
163 .id = V4L2_CID_MPEG_AUDIO_ENCODING,
164 },{
165 .strid = "audio_bitrate",
166 .id = V4L2_CID_MPEG_AUDIO_L2_BITRATE,
167 },{
168 /* Already using audio_mode elsewhere :-( */
169 .strid = "mpeg_audio_mode",
170 .id = V4L2_CID_MPEG_AUDIO_MODE,
171 },{
172 .strid = "mpeg_audio_mode_extension",
173 .id = V4L2_CID_MPEG_AUDIO_MODE_EXTENSION,
174 },{
175 .strid = "audio_emphasis",
176 .id = V4L2_CID_MPEG_AUDIO_EMPHASIS,
177 },{
178 .strid = "audio_crc",
179 .id = V4L2_CID_MPEG_AUDIO_CRC,
180 },{
181 .strid = "video_aspect",
182 .id = V4L2_CID_MPEG_VIDEO_ASPECT,
183 },{
184 .strid = "video_b_frames",
185 .id = V4L2_CID_MPEG_VIDEO_B_FRAMES,
186 },{
187 .strid = "video_gop_size",
188 .id = V4L2_CID_MPEG_VIDEO_GOP_SIZE,
189 },{
190 .strid = "video_gop_closure",
191 .id = V4L2_CID_MPEG_VIDEO_GOP_CLOSURE,
192 },{
Mike Iselyb30d2442006-06-25 20:05:01 -0300193 .strid = "video_bitrate_mode",
194 .id = V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
195 },{
196 .strid = "video_bitrate",
197 .id = V4L2_CID_MPEG_VIDEO_BITRATE,
198 },{
199 .strid = "video_bitrate_peak",
200 .id = V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
201 },{
202 .strid = "video_temporal_decimation",
203 .id = V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION,
204 },{
205 .strid = "stream_type",
206 .id = V4L2_CID_MPEG_STREAM_TYPE,
207 },{
208 .strid = "video_spatial_filter_mode",
209 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER_MODE,
210 },{
211 .strid = "video_spatial_filter",
212 .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
213 },{
214 .strid = "video_luma_spatial_filter_type",
215 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_SPATIAL_FILTER_TYPE,
216 },{
217 .strid = "video_chroma_spatial_filter_type",
218 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_SPATIAL_FILTER_TYPE,
219 },{
220 .strid = "video_temporal_filter_mode",
221 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER_MODE,
222 },{
223 .strid = "video_temporal_filter",
224 .id = V4L2_CID_MPEG_CX2341X_VIDEO_TEMPORAL_FILTER,
225 },{
226 .strid = "video_median_filter_type",
227 .id = V4L2_CID_MPEG_CX2341X_VIDEO_MEDIAN_FILTER_TYPE,
228 },{
229 .strid = "video_luma_median_filter_top",
230 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_TOP,
231 },{
232 .strid = "video_luma_median_filter_bottom",
233 .id = V4L2_CID_MPEG_CX2341X_VIDEO_LUMA_MEDIAN_FILTER_BOTTOM,
234 },{
235 .strid = "video_chroma_median_filter_top",
236 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_TOP,
237 },{
238 .strid = "video_chroma_median_filter_bottom",
239 .id = V4L2_CID_MPEG_CX2341X_VIDEO_CHROMA_MEDIAN_FILTER_BOTTOM,
240 }
241};
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -0300242#define MPEGDEF_COUNT ARRAY_SIZE(mpeg_ids)
Mike Iselyc05c0462006-06-25 20:04:25 -0300243
Mike Iselyd8554972006-06-26 20:58:46 -0300244
Mike Isely434449f2006-08-08 09:10:06 -0300245static const char *control_values_srate[] = {
246 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100] = "44.1 kHz",
247 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000] = "48 kHz",
248 [V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000] = "32 kHz",
249};
Mike Iselyd8554972006-06-26 20:58:46 -0300250
Mike Iselyd8554972006-06-26 20:58:46 -0300251
252
253static const char *control_values_input[] = {
254 [PVR2_CVAL_INPUT_TV] = "television", /*xawtv needs this name*/
Mike Isely29bf5b12008-04-22 14:45:37 -0300255 [PVR2_CVAL_INPUT_DTV] = "dtv",
Mike Iselyd8554972006-06-26 20:58:46 -0300256 [PVR2_CVAL_INPUT_RADIO] = "radio",
257 [PVR2_CVAL_INPUT_SVIDEO] = "s-video",
258 [PVR2_CVAL_INPUT_COMPOSITE] = "composite",
259};
260
261
262static const char *control_values_audiomode[] = {
263 [V4L2_TUNER_MODE_MONO] = "Mono",
264 [V4L2_TUNER_MODE_STEREO] = "Stereo",
265 [V4L2_TUNER_MODE_LANG1] = "Lang1",
266 [V4L2_TUNER_MODE_LANG2] = "Lang2",
267 [V4L2_TUNER_MODE_LANG1_LANG2] = "Lang1+Lang2",
268};
269
270
271static const char *control_values_hsm[] = {
272 [PVR2_CVAL_HSM_FAIL] = "Fail",
273 [PVR2_CVAL_HSM_HIGH] = "High",
274 [PVR2_CVAL_HSM_FULL] = "Full",
275};
276
277
Mike Isely681c7392007-11-26 01:48:52 -0300278static const char *pvr2_state_names[] = {
279 [PVR2_STATE_NONE] = "none",
280 [PVR2_STATE_DEAD] = "dead",
281 [PVR2_STATE_COLD] = "cold",
282 [PVR2_STATE_WARM] = "warm",
283 [PVR2_STATE_ERROR] = "error",
284 [PVR2_STATE_READY] = "ready",
285 [PVR2_STATE_RUN] = "run",
Mike Iselyd8554972006-06-26 20:58:46 -0300286};
287
Mike Isely681c7392007-11-26 01:48:52 -0300288
Mike Isely694dca22008-03-28 05:42:10 -0300289struct pvr2_fx2cmd_descdef {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300290 unsigned char id;
291 unsigned char *desc;
292};
293
Mike Isely694dca22008-03-28 05:42:10 -0300294static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = {
Mike Isely1c9d10d2008-03-28 05:38:54 -0300295 {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"},
296 {FX2CMD_MEM_READ_DWORD, "read encoder dword"},
Mike Isely31335b12008-07-25 19:35:31 -0300297 {FX2CMD_HCW_ZILOG_RESET, "zilog IR reset control"},
Mike Isely1c9d10d2008-03-28 05:38:54 -0300298 {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"},
299 {FX2CMD_REG_WRITE, "write encoder register"},
300 {FX2CMD_REG_READ, "read encoder register"},
301 {FX2CMD_MEMSEL, "encoder memsel"},
302 {FX2CMD_I2C_WRITE, "i2c write"},
303 {FX2CMD_I2C_READ, "i2c read"},
304 {FX2CMD_GET_USB_SPEED, "get USB speed"},
305 {FX2CMD_STREAMING_ON, "stream on"},
306 {FX2CMD_STREAMING_OFF, "stream off"},
307 {FX2CMD_FWPOST1, "fwpost1"},
308 {FX2CMD_POWER_OFF, "power off"},
309 {FX2CMD_POWER_ON, "power on"},
310 {FX2CMD_DEEP_RESET, "deep reset"},
311 {FX2CMD_GET_EEPROM_ADDR, "get rom addr"},
312 {FX2CMD_GET_IR_CODE, "get IR code"},
313 {FX2CMD_HCW_DEMOD_RESETIN, "hcw demod resetin"},
314 {FX2CMD_HCW_DTV_STREAMING_ON, "hcw dtv stream on"},
315 {FX2CMD_HCW_DTV_STREAMING_OFF, "hcw dtv stream off"},
316 {FX2CMD_ONAIR_DTV_STREAMING_ON, "onair dtv stream on"},
317 {FX2CMD_ONAIR_DTV_STREAMING_OFF, "onair dtv stream off"},
318 {FX2CMD_ONAIR_DTV_POWER_ON, "onair dtv power on"},
319 {FX2CMD_ONAIR_DTV_POWER_OFF, "onair dtv power off"},
320};
321
322
Mike Isely1cb03b72008-04-21 03:47:43 -0300323static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v);
Mike Isely681c7392007-11-26 01:48:52 -0300324static void pvr2_hdw_state_sched(struct pvr2_hdw *);
325static int pvr2_hdw_state_eval(struct pvr2_hdw *);
Mike Isely1bde0282006-12-27 23:30:13 -0300326static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *,unsigned long);
Mike Isely681c7392007-11-26 01:48:52 -0300327static void pvr2_hdw_worker_poll(struct work_struct *work);
Mike Isely681c7392007-11-26 01:48:52 -0300328static int pvr2_hdw_wait(struct pvr2_hdw *,int state);
329static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *);
330static void pvr2_hdw_state_log_state(struct pvr2_hdw *);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300331static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
Mike Isely681c7392007-11-26 01:48:52 -0300332static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300333static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300334static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw);
335static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw);
Mike Isely681c7392007-11-26 01:48:52 -0300336static void pvr2_hdw_quiescent_timeout(unsigned long);
337static void pvr2_hdw_encoder_wait_timeout(unsigned long);
Mike Iselyd913d632008-04-06 04:04:35 -0300338static void pvr2_hdw_encoder_run_timeout(unsigned long);
Mike Isely1c9d10d2008-03-28 05:38:54 -0300339static int pvr2_issue_simple_cmd(struct pvr2_hdw *,u32);
Adrian Bunk07e337e2006-06-30 11:30:20 -0300340static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
341 unsigned int timeout,int probe_fl,
342 void *write_data,unsigned int write_len,
343 void *read_data,unsigned int read_len);
Mike Isely432907f2008-08-31 21:02:20 -0300344static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300345
Mike Isely681c7392007-11-26 01:48:52 -0300346
347static void trace_stbit(const char *name,int val)
348{
349 pvr2_trace(PVR2_TRACE_STBITS,
350 "State bit %s <-- %s",
351 name,(val ? "true" : "false"));
352}
353
Mike Iselyd8554972006-06-26 20:58:46 -0300354static int ctrl_channelfreq_get(struct pvr2_ctrl *cptr,int *vp)
355{
356 struct pvr2_hdw *hdw = cptr->hdw;
357 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) {
358 *vp = hdw->freqTable[hdw->freqProgSlot-1];
359 } else {
360 *vp = 0;
361 }
362 return 0;
363}
364
365static int ctrl_channelfreq_set(struct pvr2_ctrl *cptr,int m,int v)
366{
367 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300368 unsigned int slotId = hdw->freqProgSlot;
369 if ((slotId > 0) && (slotId <= FREQTABLE_SIZE)) {
370 hdw->freqTable[slotId-1] = v;
371 /* Handle side effects correctly - if we're tuned to this
372 slot, then forgot the slot id relation since the stored
373 frequency has been changed. */
374 if (hdw->freqSelector) {
375 if (hdw->freqSlotRadio == slotId) {
376 hdw->freqSlotRadio = 0;
377 }
378 } else {
379 if (hdw->freqSlotTelevision == slotId) {
380 hdw->freqSlotTelevision = 0;
381 }
382 }
Mike Iselyd8554972006-06-26 20:58:46 -0300383 }
384 return 0;
385}
386
387static int ctrl_channelprog_get(struct pvr2_ctrl *cptr,int *vp)
388{
389 *vp = cptr->hdw->freqProgSlot;
390 return 0;
391}
392
393static int ctrl_channelprog_set(struct pvr2_ctrl *cptr,int m,int v)
394{
395 struct pvr2_hdw *hdw = cptr->hdw;
396 if ((v >= 0) && (v <= FREQTABLE_SIZE)) {
397 hdw->freqProgSlot = v;
398 }
399 return 0;
400}
401
402static int ctrl_channel_get(struct pvr2_ctrl *cptr,int *vp)
403{
Mike Isely1bde0282006-12-27 23:30:13 -0300404 struct pvr2_hdw *hdw = cptr->hdw;
405 *vp = hdw->freqSelector ? hdw->freqSlotRadio : hdw->freqSlotTelevision;
Mike Iselyd8554972006-06-26 20:58:46 -0300406 return 0;
407}
408
Mike Isely1bde0282006-12-27 23:30:13 -0300409static int ctrl_channel_set(struct pvr2_ctrl *cptr,int m,int slotId)
Mike Iselyd8554972006-06-26 20:58:46 -0300410{
411 unsigned freq = 0;
412 struct pvr2_hdw *hdw = cptr->hdw;
Mike Isely1bde0282006-12-27 23:30:13 -0300413 if ((slotId < 0) || (slotId > FREQTABLE_SIZE)) return 0;
414 if (slotId > 0) {
415 freq = hdw->freqTable[slotId-1];
416 if (!freq) return 0;
417 pvr2_hdw_set_cur_freq(hdw,freq);
Mike Iselyd8554972006-06-26 20:58:46 -0300418 }
Mike Isely1bde0282006-12-27 23:30:13 -0300419 if (hdw->freqSelector) {
420 hdw->freqSlotRadio = slotId;
421 } else {
422 hdw->freqSlotTelevision = slotId;
Mike Iselyd8554972006-06-26 20:58:46 -0300423 }
424 return 0;
425}
426
427static int ctrl_freq_get(struct pvr2_ctrl *cptr,int *vp)
428{
Mike Isely1bde0282006-12-27 23:30:13 -0300429 *vp = pvr2_hdw_get_cur_freq(cptr->hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300430 return 0;
431}
432
433static int ctrl_freq_is_dirty(struct pvr2_ctrl *cptr)
434{
435 return cptr->hdw->freqDirty != 0;
436}
437
438static void ctrl_freq_clear_dirty(struct pvr2_ctrl *cptr)
439{
440 cptr->hdw->freqDirty = 0;
441}
442
443static int ctrl_freq_set(struct pvr2_ctrl *cptr,int m,int v)
444{
Mike Isely1bde0282006-12-27 23:30:13 -0300445 pvr2_hdw_set_cur_freq(cptr->hdw,v);
Mike Iselyd8554972006-06-26 20:58:46 -0300446 return 0;
447}
448
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300449static int ctrl_cropl_min_get(struct pvr2_ctrl *cptr, int *left)
450{
Mike Isely432907f2008-08-31 21:02:20 -0300451 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
452 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
453 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300454 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300455 }
Mike Isely432907f2008-08-31 21:02:20 -0300456 *left = cap->bounds.left;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300457 return 0;
458}
459
460static int ctrl_cropl_max_get(struct pvr2_ctrl *cptr, int *left)
461{
Mike Isely432907f2008-08-31 21:02:20 -0300462 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
463 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
464 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300465 return stat;
466 }
467 *left = cap->bounds.left;
468 if (cap->bounds.width > cptr->hdw->cropw_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300469 *left += cap->bounds.width - cptr->hdw->cropw_val;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300470 }
471 return 0;
472}
473
474static int ctrl_cropt_min_get(struct pvr2_ctrl *cptr, int *top)
475{
Mike Isely432907f2008-08-31 21:02:20 -0300476 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
477 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
478 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300479 return stat;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300480 }
Mike Isely432907f2008-08-31 21:02:20 -0300481 *top = cap->bounds.top;
482 return 0;
483}
484
485static int ctrl_cropt_max_get(struct pvr2_ctrl *cptr, int *top)
486{
487 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
488 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
489 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300490 return stat;
491 }
492 *top = cap->bounds.top;
493 if (cap->bounds.height > cptr->hdw->croph_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300494 *top += cap->bounds.height - cptr->hdw->croph_val;
495 }
496 return 0;
497}
498
499static int ctrl_cropw_max_get(struct pvr2_ctrl *cptr, int *val)
500{
501 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
502 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
503 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300504 return stat;
505 }
506 *val = 0;
507 if (cap->bounds.width > cptr->hdw->cropl_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300508 *val = cap->bounds.width - cptr->hdw->cropl_val;
509 }
510 return 0;
511}
512
513static int ctrl_croph_max_get(struct pvr2_ctrl *cptr, int *val)
514{
515 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
516 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
517 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300518 return stat;
519 }
520 *val = 0;
521 if (cap->bounds.height > cptr->hdw->cropt_val) {
Mike Isely432907f2008-08-31 21:02:20 -0300522 *val = cap->bounds.height - cptr->hdw->cropt_val;
523 }
524 return 0;
525}
526
527static int ctrl_get_cropcapbl(struct pvr2_ctrl *cptr, int *val)
528{
529 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
530 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
531 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300532 return stat;
533 }
534 *val = cap->bounds.left;
535 return 0;
536}
537
538static int ctrl_get_cropcapbt(struct pvr2_ctrl *cptr, int *val)
539{
540 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
541 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
542 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300543 return stat;
544 }
545 *val = cap->bounds.top;
546 return 0;
547}
548
549static int ctrl_get_cropcapbw(struct pvr2_ctrl *cptr, int *val)
550{
551 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
552 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
553 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300554 return stat;
555 }
556 *val = cap->bounds.width;
557 return 0;
558}
559
560static int ctrl_get_cropcapbh(struct pvr2_ctrl *cptr, int *val)
561{
562 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
563 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
564 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300565 return stat;
566 }
567 *val = cap->bounds.height;
568 return 0;
569}
570
571static int ctrl_get_cropcapdl(struct pvr2_ctrl *cptr, int *val)
572{
573 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
574 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
575 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300576 return stat;
577 }
578 *val = cap->defrect.left;
579 return 0;
580}
581
582static int ctrl_get_cropcapdt(struct pvr2_ctrl *cptr, int *val)
583{
584 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
585 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
586 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300587 return stat;
588 }
589 *val = cap->defrect.top;
590 return 0;
591}
592
593static int ctrl_get_cropcapdw(struct pvr2_ctrl *cptr, int *val)
594{
595 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
596 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
597 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300598 return stat;
599 }
600 *val = cap->defrect.width;
601 return 0;
602}
603
604static int ctrl_get_cropcapdh(struct pvr2_ctrl *cptr, int *val)
605{
606 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
607 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
608 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300609 return stat;
610 }
611 *val = cap->defrect.height;
612 return 0;
613}
614
615static int ctrl_get_cropcappan(struct pvr2_ctrl *cptr, int *val)
616{
617 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
618 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
619 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300620 return stat;
621 }
622 *val = cap->pixelaspect.numerator;
623 return 0;
624}
625
626static int ctrl_get_cropcappad(struct pvr2_ctrl *cptr, int *val)
627{
628 struct v4l2_cropcap *cap = &cptr->hdw->cropcap_info;
629 int stat = pvr2_hdw_check_cropcap(cptr->hdw);
630 if (stat != 0) {
Mike Isely432907f2008-08-31 21:02:20 -0300631 return stat;
632 }
633 *val = cap->pixelaspect.denominator;
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -0300634 return 0;
635}
636
Mike Isely3ad9fc32006-09-02 22:37:52 -0300637static int ctrl_vres_max_get(struct pvr2_ctrl *cptr,int *vp)
638{
639 /* Actual maximum depends on the video standard in effect. */
640 if (cptr->hdw->std_mask_cur & V4L2_STD_525_60) {
641 *vp = 480;
642 } else {
643 *vp = 576;
644 }
645 return 0;
646}
647
648static int ctrl_vres_min_get(struct pvr2_ctrl *cptr,int *vp)
649{
Mike Isely989eb152007-11-26 01:53:12 -0300650 /* Actual minimum depends on device digitizer type. */
651 if (cptr->hdw->hdw_desc->flag_has_cx25840) {
Mike Isely3ad9fc32006-09-02 22:37:52 -0300652 *vp = 75;
653 } else {
654 *vp = 17;
655 }
656 return 0;
657}
658
Mike Isely1bde0282006-12-27 23:30:13 -0300659static int ctrl_get_input(struct pvr2_ctrl *cptr,int *vp)
660{
661 *vp = cptr->hdw->input_val;
662 return 0;
663}
664
Mike Isely29bf5b12008-04-22 14:45:37 -0300665static int ctrl_check_input(struct pvr2_ctrl *cptr,int v)
666{
Mike Isely1cb03b72008-04-21 03:47:43 -0300667 return ((1 << v) & cptr->hdw->input_allowed_mask) != 0;
Mike Isely29bf5b12008-04-22 14:45:37 -0300668}
669
Mike Isely1bde0282006-12-27 23:30:13 -0300670static int ctrl_set_input(struct pvr2_ctrl *cptr,int m,int v)
671{
Mike Isely1cb03b72008-04-21 03:47:43 -0300672 return pvr2_hdw_set_input(cptr->hdw,v);
Mike Isely1bde0282006-12-27 23:30:13 -0300673}
674
675static int ctrl_isdirty_input(struct pvr2_ctrl *cptr)
676{
677 return cptr->hdw->input_dirty != 0;
678}
679
680static void ctrl_cleardirty_input(struct pvr2_ctrl *cptr)
681{
682 cptr->hdw->input_dirty = 0;
683}
684
Mike Isely5549f542006-12-27 23:28:54 -0300685
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300686static int ctrl_freq_max_get(struct pvr2_ctrl *cptr, int *vp)
687{
Mike Isely644afdb2007-01-20 00:19:23 -0300688 unsigned long fv;
689 struct pvr2_hdw *hdw = cptr->hdw;
690 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300691 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300692 }
Mike Isely644afdb2007-01-20 00:19:23 -0300693 fv = hdw->tuner_signal_info.rangehigh;
694 if (!fv) {
695 /* Safety fallback */
696 *vp = TV_MAX_FREQ;
697 return 0;
698 }
699 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
700 fv = (fv * 125) / 2;
701 } else {
702 fv = fv * 62500;
703 }
704 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300705 return 0;
706}
707
708static int ctrl_freq_min_get(struct pvr2_ctrl *cptr, int *vp)
709{
Mike Isely644afdb2007-01-20 00:19:23 -0300710 unsigned long fv;
711 struct pvr2_hdw *hdw = cptr->hdw;
712 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -0300713 pvr2_hdw_status_poll(hdw);
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300714 }
Mike Isely644afdb2007-01-20 00:19:23 -0300715 fv = hdw->tuner_signal_info.rangelow;
716 if (!fv) {
717 /* Safety fallback */
718 *vp = TV_MIN_FREQ;
719 return 0;
720 }
721 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
722 fv = (fv * 125) / 2;
723 } else {
724 fv = fv * 62500;
725 }
726 *vp = fv;
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -0300727 return 0;
728}
729
Mike Iselyb30d2442006-06-25 20:05:01 -0300730static int ctrl_cx2341x_is_dirty(struct pvr2_ctrl *cptr)
731{
732 return cptr->hdw->enc_stale != 0;
733}
734
735static void ctrl_cx2341x_clear_dirty(struct pvr2_ctrl *cptr)
736{
737 cptr->hdw->enc_stale = 0;
Mike Isely681c7392007-11-26 01:48:52 -0300738 cptr->hdw->enc_unsafe_stale = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300739}
740
741static int ctrl_cx2341x_get(struct pvr2_ctrl *cptr,int *vp)
742{
743 int ret;
744 struct v4l2_ext_controls cs;
745 struct v4l2_ext_control c1;
746 memset(&cs,0,sizeof(cs));
747 memset(&c1,0,sizeof(c1));
748 cs.controls = &c1;
749 cs.count = 1;
750 c1.id = cptr->info->v4l_id;
Hans Verkuil01f1e442007-08-21 18:32:42 -0300751 ret = cx2341x_ext_ctrls(&cptr->hdw->enc_ctl_state, 0, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300752 VIDIOC_G_EXT_CTRLS);
753 if (ret) return ret;
754 *vp = c1.value;
755 return 0;
756}
757
758static int ctrl_cx2341x_set(struct pvr2_ctrl *cptr,int m,int v)
759{
760 int ret;
Mike Isely681c7392007-11-26 01:48:52 -0300761 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselyb30d2442006-06-25 20:05:01 -0300762 struct v4l2_ext_controls cs;
763 struct v4l2_ext_control c1;
764 memset(&cs,0,sizeof(cs));
765 memset(&c1,0,sizeof(c1));
766 cs.controls = &c1;
767 cs.count = 1;
768 c1.id = cptr->info->v4l_id;
769 c1.value = v;
Mike Isely681c7392007-11-26 01:48:52 -0300770 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
771 hdw->state_encoder_run, &cs,
Mike Iselyb30d2442006-06-25 20:05:01 -0300772 VIDIOC_S_EXT_CTRLS);
Mike Isely681c7392007-11-26 01:48:52 -0300773 if (ret == -EBUSY) {
774 /* Oops. cx2341x is telling us it's not safe to change
775 this control while we're capturing. Make a note of this
776 fact so that the pipeline will be stopped the next time
777 controls are committed. Then go on ahead and store this
778 change anyway. */
779 ret = cx2341x_ext_ctrls(&hdw->enc_ctl_state,
780 0, &cs,
781 VIDIOC_S_EXT_CTRLS);
782 if (!ret) hdw->enc_unsafe_stale = !0;
783 }
Mike Iselyb30d2442006-06-25 20:05:01 -0300784 if (ret) return ret;
Mike Isely681c7392007-11-26 01:48:52 -0300785 hdw->enc_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -0300786 return 0;
787}
788
789static unsigned int ctrl_cx2341x_getv4lflags(struct pvr2_ctrl *cptr)
790{
791 struct v4l2_queryctrl qctrl;
792 struct pvr2_ctl_info *info;
793 qctrl.id = cptr->info->v4l_id;
794 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl);
795 /* Strip out the const so we can adjust a function pointer. It's
796 OK to do this here because we know this is a dynamically created
797 control, so the underlying storage for the info pointer is (a)
798 private to us, and (b) not in read-only storage. Either we do
799 this or we significantly complicate the underlying control
800 implementation. */
801 info = (struct pvr2_ctl_info *)(cptr->info);
802 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) {
803 if (info->set_value) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300804 info->set_value = NULL;
Mike Iselyb30d2442006-06-25 20:05:01 -0300805 }
806 } else {
807 if (!(info->set_value)) {
808 info->set_value = ctrl_cx2341x_set;
809 }
810 }
811 return qctrl.flags;
812}
813
Mike Iselyd8554972006-06-26 20:58:46 -0300814static int ctrl_streamingenabled_get(struct pvr2_ctrl *cptr,int *vp)
815{
Mike Isely681c7392007-11-26 01:48:52 -0300816 *vp = cptr->hdw->state_pipeline_req;
817 return 0;
818}
819
820static int ctrl_masterstate_get(struct pvr2_ctrl *cptr,int *vp)
821{
822 *vp = cptr->hdw->master_state;
Mike Iselyd8554972006-06-26 20:58:46 -0300823 return 0;
824}
825
826static int ctrl_hsm_get(struct pvr2_ctrl *cptr,int *vp)
827{
828 int result = pvr2_hdw_is_hsm(cptr->hdw);
829 *vp = PVR2_CVAL_HSM_FULL;
830 if (result < 0) *vp = PVR2_CVAL_HSM_FAIL;
831 if (result) *vp = PVR2_CVAL_HSM_HIGH;
832 return 0;
833}
834
835static int ctrl_stdavail_get(struct pvr2_ctrl *cptr,int *vp)
836{
837 *vp = cptr->hdw->std_mask_avail;
838 return 0;
839}
840
841static int ctrl_stdavail_set(struct pvr2_ctrl *cptr,int m,int v)
842{
843 struct pvr2_hdw *hdw = cptr->hdw;
844 v4l2_std_id ns;
845 ns = hdw->std_mask_avail;
846 ns = (ns & ~m) | (v & m);
847 if (ns == hdw->std_mask_avail) return 0;
848 hdw->std_mask_avail = ns;
849 pvr2_hdw_internal_set_std_avail(hdw);
850 pvr2_hdw_internal_find_stdenum(hdw);
851 return 0;
852}
853
854static int ctrl_std_val_to_sym(struct pvr2_ctrl *cptr,int msk,int val,
855 char *bufPtr,unsigned int bufSize,
856 unsigned int *len)
857{
858 *len = pvr2_std_id_to_str(bufPtr,bufSize,msk & val);
859 return 0;
860}
861
862static int ctrl_std_sym_to_val(struct pvr2_ctrl *cptr,
863 const char *bufPtr,unsigned int bufSize,
864 int *mskp,int *valp)
865{
866 int ret;
867 v4l2_std_id id;
868 ret = pvr2_std_str_to_id(&id,bufPtr,bufSize);
869 if (ret < 0) return ret;
870 if (mskp) *mskp = id;
871 if (valp) *valp = id;
872 return 0;
873}
874
875static int ctrl_stdcur_get(struct pvr2_ctrl *cptr,int *vp)
876{
877 *vp = cptr->hdw->std_mask_cur;
878 return 0;
879}
880
881static int ctrl_stdcur_set(struct pvr2_ctrl *cptr,int m,int v)
882{
883 struct pvr2_hdw *hdw = cptr->hdw;
884 v4l2_std_id ns;
885 ns = hdw->std_mask_cur;
886 ns = (ns & ~m) | (v & m);
887 if (ns == hdw->std_mask_cur) return 0;
888 hdw->std_mask_cur = ns;
889 hdw->std_dirty = !0;
890 pvr2_hdw_internal_find_stdenum(hdw);
891 return 0;
892}
893
894static int ctrl_stdcur_is_dirty(struct pvr2_ctrl *cptr)
895{
896 return cptr->hdw->std_dirty != 0;
897}
898
899static void ctrl_stdcur_clear_dirty(struct pvr2_ctrl *cptr)
900{
901 cptr->hdw->std_dirty = 0;
902}
903
904static int ctrl_signal_get(struct pvr2_ctrl *cptr,int *vp)
905{
Mike Isely18103c52007-01-20 00:09:47 -0300906 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300907 pvr2_hdw_status_poll(hdw);
Mike Isely18103c52007-01-20 00:09:47 -0300908 *vp = hdw->tuner_signal_info.signal;
909 return 0;
910}
911
912static int ctrl_audio_modes_present_get(struct pvr2_ctrl *cptr,int *vp)
913{
914 int val = 0;
915 unsigned int subchan;
916 struct pvr2_hdw *hdw = cptr->hdw;
Mike Iselya51f5002009-03-06 23:30:37 -0300917 pvr2_hdw_status_poll(hdw);
Mike Isely18103c52007-01-20 00:09:47 -0300918 subchan = hdw->tuner_signal_info.rxsubchans;
919 if (subchan & V4L2_TUNER_SUB_MONO) {
920 val |= (1 << V4L2_TUNER_MODE_MONO);
921 }
922 if (subchan & V4L2_TUNER_SUB_STEREO) {
923 val |= (1 << V4L2_TUNER_MODE_STEREO);
924 }
925 if (subchan & V4L2_TUNER_SUB_LANG1) {
926 val |= (1 << V4L2_TUNER_MODE_LANG1);
927 }
928 if (subchan & V4L2_TUNER_SUB_LANG2) {
929 val |= (1 << V4L2_TUNER_MODE_LANG2);
930 }
931 *vp = val;
Mike Iselyd8554972006-06-26 20:58:46 -0300932 return 0;
933}
934
Mike Iselyd8554972006-06-26 20:58:46 -0300935
936static int ctrl_stdenumcur_set(struct pvr2_ctrl *cptr,int m,int v)
937{
938 struct pvr2_hdw *hdw = cptr->hdw;
939 if (v < 0) return -EINVAL;
940 if (v > hdw->std_enum_cnt) return -EINVAL;
941 hdw->std_enum_cur = v;
942 if (!v) return 0;
943 v--;
944 if (hdw->std_mask_cur == hdw->std_defs[v].id) return 0;
945 hdw->std_mask_cur = hdw->std_defs[v].id;
946 hdw->std_dirty = !0;
947 return 0;
948}
949
950
951static int ctrl_stdenumcur_get(struct pvr2_ctrl *cptr,int *vp)
952{
953 *vp = cptr->hdw->std_enum_cur;
954 return 0;
955}
956
957
958static int ctrl_stdenumcur_is_dirty(struct pvr2_ctrl *cptr)
959{
960 return cptr->hdw->std_dirty != 0;
961}
962
963
964static void ctrl_stdenumcur_clear_dirty(struct pvr2_ctrl *cptr)
965{
966 cptr->hdw->std_dirty = 0;
967}
968
969
970#define DEFINT(vmin,vmax) \
971 .type = pvr2_ctl_int, \
972 .def.type_int.min_value = vmin, \
973 .def.type_int.max_value = vmax
974
975#define DEFENUM(tab) \
976 .type = pvr2_ctl_enum, \
Mike Isely27c7b712007-01-20 00:39:17 -0300977 .def.type_enum.count = ARRAY_SIZE(tab), \
Mike Iselyd8554972006-06-26 20:58:46 -0300978 .def.type_enum.value_names = tab
979
Mike Isely33213962006-06-25 20:04:40 -0300980#define DEFBOOL \
981 .type = pvr2_ctl_bool
982
Mike Iselyd8554972006-06-26 20:58:46 -0300983#define DEFMASK(msk,tab) \
984 .type = pvr2_ctl_bitmask, \
985 .def.type_bitmask.valid_bits = msk, \
986 .def.type_bitmask.bit_names = tab
987
988#define DEFREF(vname) \
989 .set_value = ctrl_set_##vname, \
990 .get_value = ctrl_get_##vname, \
991 .is_dirty = ctrl_isdirty_##vname, \
992 .clear_dirty = ctrl_cleardirty_##vname
993
994
995#define VCREATE_FUNCS(vname) \
996static int ctrl_get_##vname(struct pvr2_ctrl *cptr,int *vp) \
997{*vp = cptr->hdw->vname##_val; return 0;} \
998static int ctrl_set_##vname(struct pvr2_ctrl *cptr,int m,int v) \
999{cptr->hdw->vname##_val = v; cptr->hdw->vname##_dirty = !0; return 0;} \
1000static int ctrl_isdirty_##vname(struct pvr2_ctrl *cptr) \
1001{return cptr->hdw->vname##_dirty != 0;} \
1002static void ctrl_cleardirty_##vname(struct pvr2_ctrl *cptr) \
1003{cptr->hdw->vname##_dirty = 0;}
1004
1005VCREATE_FUNCS(brightness)
1006VCREATE_FUNCS(contrast)
1007VCREATE_FUNCS(saturation)
1008VCREATE_FUNCS(hue)
1009VCREATE_FUNCS(volume)
1010VCREATE_FUNCS(balance)
1011VCREATE_FUNCS(bass)
1012VCREATE_FUNCS(treble)
1013VCREATE_FUNCS(mute)
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001014VCREATE_FUNCS(cropl)
1015VCREATE_FUNCS(cropt)
1016VCREATE_FUNCS(cropw)
1017VCREATE_FUNCS(croph)
Mike Iselyc05c0462006-06-25 20:04:25 -03001018VCREATE_FUNCS(audiomode)
1019VCREATE_FUNCS(res_hor)
1020VCREATE_FUNCS(res_ver)
Mike Iselyd8554972006-06-26 20:58:46 -03001021VCREATE_FUNCS(srate)
Mike Iselyd8554972006-06-26 20:58:46 -03001022
Mike Iselyd8554972006-06-26 20:58:46 -03001023/* Table definition of all controls which can be manipulated */
1024static const struct pvr2_ctl_info control_defs[] = {
1025 {
1026 .v4l_id = V4L2_CID_BRIGHTNESS,
1027 .desc = "Brightness",
1028 .name = "brightness",
1029 .default_value = 128,
1030 DEFREF(brightness),
1031 DEFINT(0,255),
1032 },{
1033 .v4l_id = V4L2_CID_CONTRAST,
1034 .desc = "Contrast",
1035 .name = "contrast",
1036 .default_value = 68,
1037 DEFREF(contrast),
1038 DEFINT(0,127),
1039 },{
1040 .v4l_id = V4L2_CID_SATURATION,
1041 .desc = "Saturation",
1042 .name = "saturation",
1043 .default_value = 64,
1044 DEFREF(saturation),
1045 DEFINT(0,127),
1046 },{
1047 .v4l_id = V4L2_CID_HUE,
1048 .desc = "Hue",
1049 .name = "hue",
1050 .default_value = 0,
1051 DEFREF(hue),
1052 DEFINT(-128,127),
1053 },{
1054 .v4l_id = V4L2_CID_AUDIO_VOLUME,
1055 .desc = "Volume",
1056 .name = "volume",
Mike Isely139eecf2006-12-27 23:36:33 -03001057 .default_value = 62000,
Mike Iselyd8554972006-06-26 20:58:46 -03001058 DEFREF(volume),
1059 DEFINT(0,65535),
1060 },{
1061 .v4l_id = V4L2_CID_AUDIO_BALANCE,
1062 .desc = "Balance",
1063 .name = "balance",
1064 .default_value = 0,
1065 DEFREF(balance),
1066 DEFINT(-32768,32767),
1067 },{
1068 .v4l_id = V4L2_CID_AUDIO_BASS,
1069 .desc = "Bass",
1070 .name = "bass",
1071 .default_value = 0,
1072 DEFREF(bass),
1073 DEFINT(-32768,32767),
1074 },{
1075 .v4l_id = V4L2_CID_AUDIO_TREBLE,
1076 .desc = "Treble",
1077 .name = "treble",
1078 .default_value = 0,
1079 DEFREF(treble),
1080 DEFINT(-32768,32767),
1081 },{
1082 .v4l_id = V4L2_CID_AUDIO_MUTE,
1083 .desc = "Mute",
1084 .name = "mute",
1085 .default_value = 0,
1086 DEFREF(mute),
Mike Isely33213962006-06-25 20:04:40 -03001087 DEFBOOL,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001088 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001089 .desc = "Capture crop left margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001090 .name = "crop_left",
1091 .internal_id = PVR2_CID_CROPL,
1092 .default_value = 0,
1093 DEFREF(cropl),
1094 DEFINT(-129, 340),
1095 .get_min_value = ctrl_cropl_min_get,
1096 .get_max_value = ctrl_cropl_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001097 .get_def_value = ctrl_get_cropcapdl,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001098 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001099 .desc = "Capture crop top margin",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001100 .name = "crop_top",
1101 .internal_id = PVR2_CID_CROPT,
1102 .default_value = 0,
1103 DEFREF(cropt),
1104 DEFINT(-35, 544),
1105 .get_min_value = ctrl_cropt_min_get,
1106 .get_max_value = ctrl_cropt_max_get,
Mike Isely432907f2008-08-31 21:02:20 -03001107 .get_def_value = ctrl_get_cropcapdt,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001108 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001109 .desc = "Capture crop width",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001110 .name = "crop_width",
1111 .internal_id = PVR2_CID_CROPW,
1112 .default_value = 720,
1113 DEFREF(cropw),
Mike Isely432907f2008-08-31 21:02:20 -03001114 .get_max_value = ctrl_cropw_max_get,
1115 .get_def_value = ctrl_get_cropcapdw,
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001116 }, {
Mike Isely432907f2008-08-31 21:02:20 -03001117 .desc = "Capture crop height",
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03001118 .name = "crop_height",
1119 .internal_id = PVR2_CID_CROPH,
1120 .default_value = 480,
1121 DEFREF(croph),
Mike Isely432907f2008-08-31 21:02:20 -03001122 .get_max_value = ctrl_croph_max_get,
1123 .get_def_value = ctrl_get_cropcapdh,
1124 }, {
1125 .desc = "Capture capability pixel aspect numerator",
1126 .name = "cropcap_pixel_numerator",
1127 .internal_id = PVR2_CID_CROPCAPPAN,
1128 .get_value = ctrl_get_cropcappan,
1129 }, {
1130 .desc = "Capture capability pixel aspect denominator",
1131 .name = "cropcap_pixel_denominator",
1132 .internal_id = PVR2_CID_CROPCAPPAD,
1133 .get_value = ctrl_get_cropcappad,
1134 }, {
1135 .desc = "Capture capability bounds top",
1136 .name = "cropcap_bounds_top",
1137 .internal_id = PVR2_CID_CROPCAPBT,
1138 .get_value = ctrl_get_cropcapbt,
1139 }, {
1140 .desc = "Capture capability bounds left",
1141 .name = "cropcap_bounds_left",
1142 .internal_id = PVR2_CID_CROPCAPBL,
1143 .get_value = ctrl_get_cropcapbl,
1144 }, {
1145 .desc = "Capture capability bounds width",
1146 .name = "cropcap_bounds_width",
1147 .internal_id = PVR2_CID_CROPCAPBW,
1148 .get_value = ctrl_get_cropcapbw,
1149 }, {
1150 .desc = "Capture capability bounds height",
1151 .name = "cropcap_bounds_height",
1152 .internal_id = PVR2_CID_CROPCAPBH,
1153 .get_value = ctrl_get_cropcapbh,
Mike Iselyd8554972006-06-26 20:58:46 -03001154 },{
Mike Iselyc05c0462006-06-25 20:04:25 -03001155 .desc = "Video Source",
1156 .name = "input",
1157 .internal_id = PVR2_CID_INPUT,
1158 .default_value = PVR2_CVAL_INPUT_TV,
Mike Isely29bf5b12008-04-22 14:45:37 -03001159 .check_value = ctrl_check_input,
Mike Iselyc05c0462006-06-25 20:04:25 -03001160 DEFREF(input),
1161 DEFENUM(control_values_input),
1162 },{
1163 .desc = "Audio Mode",
1164 .name = "audio_mode",
1165 .internal_id = PVR2_CID_AUDIOMODE,
1166 .default_value = V4L2_TUNER_MODE_STEREO,
1167 DEFREF(audiomode),
1168 DEFENUM(control_values_audiomode),
1169 },{
1170 .desc = "Horizontal capture resolution",
1171 .name = "resolution_hor",
1172 .internal_id = PVR2_CID_HRES,
1173 .default_value = 720,
1174 DEFREF(res_hor),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001175 DEFINT(19,720),
Mike Iselyc05c0462006-06-25 20:04:25 -03001176 },{
1177 .desc = "Vertical capture resolution",
1178 .name = "resolution_ver",
1179 .internal_id = PVR2_CID_VRES,
1180 .default_value = 480,
1181 DEFREF(res_ver),
Mike Isely3ad9fc32006-09-02 22:37:52 -03001182 DEFINT(17,576),
1183 /* Hook in check for video standard and adjust maximum
1184 depending on the standard. */
1185 .get_max_value = ctrl_vres_max_get,
1186 .get_min_value = ctrl_vres_min_get,
Mike Iselyc05c0462006-06-25 20:04:25 -03001187 },{
Mike Iselyb30d2442006-06-25 20:05:01 -03001188 .v4l_id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ,
Mike Isely434449f2006-08-08 09:10:06 -03001189 .default_value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
1190 .desc = "Audio Sampling Frequency",
Mike Iselyd8554972006-06-26 20:58:46 -03001191 .name = "srate",
Mike Iselyd8554972006-06-26 20:58:46 -03001192 DEFREF(srate),
1193 DEFENUM(control_values_srate),
1194 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001195 .desc = "Tuner Frequency (Hz)",
1196 .name = "frequency",
1197 .internal_id = PVR2_CID_FREQUENCY,
Mike Isely1bde0282006-12-27 23:30:13 -03001198 .default_value = 0,
Mike Iselyd8554972006-06-26 20:58:46 -03001199 .set_value = ctrl_freq_set,
1200 .get_value = ctrl_freq_get,
1201 .is_dirty = ctrl_freq_is_dirty,
1202 .clear_dirty = ctrl_freq_clear_dirty,
Mike Isely644afdb2007-01-20 00:19:23 -03001203 DEFINT(0,0),
Pantelis Koukousoulas25d85272006-12-27 23:06:04 -03001204 /* Hook in check for input value (tv/radio) and adjust
1205 max/min values accordingly */
1206 .get_max_value = ctrl_freq_max_get,
1207 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001208 },{
1209 .desc = "Channel",
1210 .name = "channel",
1211 .set_value = ctrl_channel_set,
1212 .get_value = ctrl_channel_get,
1213 DEFINT(0,FREQTABLE_SIZE),
1214 },{
1215 .desc = "Channel Program Frequency",
1216 .name = "freq_table_value",
1217 .set_value = ctrl_channelfreq_set,
1218 .get_value = ctrl_channelfreq_get,
Mike Isely644afdb2007-01-20 00:19:23 -03001219 DEFINT(0,0),
Mike Isely1bde0282006-12-27 23:30:13 -03001220 /* Hook in check for input value (tv/radio) and adjust
1221 max/min values accordingly */
Mike Isely1bde0282006-12-27 23:30:13 -03001222 .get_max_value = ctrl_freq_max_get,
1223 .get_min_value = ctrl_freq_min_get,
Mike Iselyd8554972006-06-26 20:58:46 -03001224 },{
1225 .desc = "Channel Program ID",
1226 .name = "freq_table_channel",
1227 .set_value = ctrl_channelprog_set,
1228 .get_value = ctrl_channelprog_get,
1229 DEFINT(0,FREQTABLE_SIZE),
1230 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001231 .desc = "Streaming Enabled",
1232 .name = "streaming_enabled",
1233 .get_value = ctrl_streamingenabled_get,
Mike Isely33213962006-06-25 20:04:40 -03001234 DEFBOOL,
Mike Iselyd8554972006-06-26 20:58:46 -03001235 },{
1236 .desc = "USB Speed",
1237 .name = "usb_speed",
1238 .get_value = ctrl_hsm_get,
1239 DEFENUM(control_values_hsm),
1240 },{
Mike Isely681c7392007-11-26 01:48:52 -03001241 .desc = "Master State",
1242 .name = "master_state",
1243 .get_value = ctrl_masterstate_get,
1244 DEFENUM(pvr2_state_names),
1245 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001246 .desc = "Signal Present",
1247 .name = "signal_present",
1248 .get_value = ctrl_signal_get,
Mike Isely18103c52007-01-20 00:09:47 -03001249 DEFINT(0,65535),
1250 },{
1251 .desc = "Audio Modes Present",
1252 .name = "audio_modes_present",
1253 .get_value = ctrl_audio_modes_present_get,
1254 /* For this type we "borrow" the V4L2_TUNER_MODE enum from
1255 v4l. Nothing outside of this module cares about this,
1256 but I reuse it in order to also reuse the
1257 control_values_audiomode string table. */
1258 DEFMASK(((1 << V4L2_TUNER_MODE_MONO)|
1259 (1 << V4L2_TUNER_MODE_STEREO)|
1260 (1 << V4L2_TUNER_MODE_LANG1)|
1261 (1 << V4L2_TUNER_MODE_LANG2)),
1262 control_values_audiomode),
Mike Iselyd8554972006-06-26 20:58:46 -03001263 },{
1264 .desc = "Video Standards Available Mask",
1265 .name = "video_standard_mask_available",
1266 .internal_id = PVR2_CID_STDAVAIL,
1267 .skip_init = !0,
1268 .get_value = ctrl_stdavail_get,
1269 .set_value = ctrl_stdavail_set,
1270 .val_to_sym = ctrl_std_val_to_sym,
1271 .sym_to_val = ctrl_std_sym_to_val,
1272 .type = pvr2_ctl_bitmask,
1273 },{
1274 .desc = "Video Standards In Use Mask",
1275 .name = "video_standard_mask_active",
1276 .internal_id = PVR2_CID_STDCUR,
1277 .skip_init = !0,
1278 .get_value = ctrl_stdcur_get,
1279 .set_value = ctrl_stdcur_set,
1280 .is_dirty = ctrl_stdcur_is_dirty,
1281 .clear_dirty = ctrl_stdcur_clear_dirty,
1282 .val_to_sym = ctrl_std_val_to_sym,
1283 .sym_to_val = ctrl_std_sym_to_val,
1284 .type = pvr2_ctl_bitmask,
1285 },{
Mike Iselyd8554972006-06-26 20:58:46 -03001286 .desc = "Video Standard Name",
1287 .name = "video_standard",
1288 .internal_id = PVR2_CID_STDENUM,
1289 .skip_init = !0,
1290 .get_value = ctrl_stdenumcur_get,
1291 .set_value = ctrl_stdenumcur_set,
1292 .is_dirty = ctrl_stdenumcur_is_dirty,
1293 .clear_dirty = ctrl_stdenumcur_clear_dirty,
1294 .type = pvr2_ctl_enum,
1295 }
1296};
1297
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001298#define CTRLDEF_COUNT ARRAY_SIZE(control_defs)
Mike Iselyd8554972006-06-26 20:58:46 -03001299
1300
1301const char *pvr2_config_get_name(enum pvr2_config cfg)
1302{
1303 switch (cfg) {
1304 case pvr2_config_empty: return "empty";
1305 case pvr2_config_mpeg: return "mpeg";
1306 case pvr2_config_vbi: return "vbi";
Mike Isely16eb40d2006-12-30 18:27:32 -03001307 case pvr2_config_pcm: return "pcm";
1308 case pvr2_config_rawvideo: return "raw video";
Mike Iselyd8554972006-06-26 20:58:46 -03001309 }
1310 return "<unknown>";
1311}
1312
1313
1314struct usb_device *pvr2_hdw_get_dev(struct pvr2_hdw *hdw)
1315{
1316 return hdw->usb_dev;
1317}
1318
1319
1320unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *hdw)
1321{
1322 return hdw->serial_number;
1323}
1324
Mike Isely31a18542007-04-08 01:11:47 -03001325
1326const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *hdw)
1327{
1328 return hdw->bus_info;
1329}
1330
1331
Mike Isely13a88792009-01-14 04:22:56 -03001332const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw *hdw)
1333{
1334 return hdw->identifier;
1335}
1336
1337
Mike Isely1bde0282006-12-27 23:30:13 -03001338unsigned long pvr2_hdw_get_cur_freq(struct pvr2_hdw *hdw)
1339{
1340 return hdw->freqSelector ? hdw->freqValTelevision : hdw->freqValRadio;
1341}
1342
1343/* Set the currently tuned frequency and account for all possible
1344 driver-core side effects of this action. */
Adrian Bunkf55a8712008-04-18 05:38:56 -03001345static void pvr2_hdw_set_cur_freq(struct pvr2_hdw *hdw,unsigned long val)
Mike Isely1bde0282006-12-27 23:30:13 -03001346{
Mike Isely7c74e572007-01-20 00:15:41 -03001347 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
Mike Isely1bde0282006-12-27 23:30:13 -03001348 if (hdw->freqSelector) {
1349 /* Swing over to radio frequency selection */
1350 hdw->freqSelector = 0;
1351 hdw->freqDirty = !0;
1352 }
Mike Isely1bde0282006-12-27 23:30:13 -03001353 if (hdw->freqValRadio != val) {
1354 hdw->freqValRadio = val;
1355 hdw->freqSlotRadio = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001356 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001357 }
Mike Isely7c74e572007-01-20 00:15:41 -03001358 } else {
Mike Isely1bde0282006-12-27 23:30:13 -03001359 if (!(hdw->freqSelector)) {
1360 /* Swing over to television frequency selection */
1361 hdw->freqSelector = 1;
1362 hdw->freqDirty = !0;
1363 }
Mike Isely1bde0282006-12-27 23:30:13 -03001364 if (hdw->freqValTelevision != val) {
1365 hdw->freqValTelevision = val;
1366 hdw->freqSlotTelevision = 0;
Mike Isely7c74e572007-01-20 00:15:41 -03001367 hdw->freqDirty = !0;
Mike Isely1bde0282006-12-27 23:30:13 -03001368 }
Mike Isely1bde0282006-12-27 23:30:13 -03001369 }
1370}
1371
Mike Iselyd8554972006-06-26 20:58:46 -03001372int pvr2_hdw_get_unit_number(struct pvr2_hdw *hdw)
1373{
1374 return hdw->unit_number;
1375}
1376
1377
1378/* Attempt to locate one of the given set of files. Messages are logged
1379 appropriate to what has been found. The return value will be 0 or
1380 greater on success (it will be the index of the file name found) and
1381 fw_entry will be filled in. Otherwise a negative error is returned on
1382 failure. If the return value is -ENOENT then no viable firmware file
1383 could be located. */
1384static int pvr2_locate_firmware(struct pvr2_hdw *hdw,
1385 const struct firmware **fw_entry,
1386 const char *fwtypename,
1387 unsigned int fwcount,
1388 const char *fwnames[])
1389{
1390 unsigned int idx;
1391 int ret = -EINVAL;
1392 for (idx = 0; idx < fwcount; idx++) {
1393 ret = request_firmware(fw_entry,
1394 fwnames[idx],
1395 &hdw->usb_dev->dev);
1396 if (!ret) {
1397 trace_firmware("Located %s firmware: %s;"
1398 " uploading...",
1399 fwtypename,
1400 fwnames[idx]);
1401 return idx;
1402 }
1403 if (ret == -ENOENT) continue;
1404 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1405 "request_firmware fatal error with code=%d",ret);
1406 return ret;
1407 }
1408 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1409 "***WARNING***"
1410 " Device %s firmware"
1411 " seems to be missing.",
1412 fwtypename);
1413 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1414 "Did you install the pvrusb2 firmware files"
1415 " in their proper location?");
1416 if (fwcount == 1) {
1417 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1418 "request_firmware unable to locate %s file %s",
1419 fwtypename,fwnames[0]);
1420 } else {
1421 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1422 "request_firmware unable to locate"
1423 " one of the following %s files:",
1424 fwtypename);
1425 for (idx = 0; idx < fwcount; idx++) {
1426 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1427 "request_firmware: Failed to find %s",
1428 fwnames[idx]);
1429 }
1430 }
1431 return ret;
1432}
1433
1434
1435/*
1436 * pvr2_upload_firmware1().
1437 *
1438 * Send the 8051 firmware to the device. After the upload, arrange for
1439 * device to re-enumerate.
1440 *
1441 * NOTE : the pointer to the firmware data given by request_firmware()
1442 * is not suitable for an usb transaction.
1443 *
1444 */
Adrian Bunk07e337e2006-06-30 11:30:20 -03001445static int pvr2_upload_firmware1(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03001446{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001447 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001448 void *fw_ptr;
1449 unsigned int pipe;
1450 int ret;
1451 u16 address;
Mike Isely1d643a32007-09-08 22:18:50 -03001452
Mike Isely989eb152007-11-26 01:53:12 -03001453 if (!hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03001454 hdw->fw1_state = FW1_STATE_OK;
Mike Isely56dcbfa2007-11-26 02:00:51 -03001455 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1456 "Connected device type defines"
1457 " no firmware to upload; ignoring firmware");
1458 return -ENOTTY;
Mike Isely1d643a32007-09-08 22:18:50 -03001459 }
1460
Mike Iselyd8554972006-06-26 20:58:46 -03001461 hdw->fw1_state = FW1_STATE_FAILED; // default result
1462
1463 trace_firmware("pvr2_upload_firmware1");
1464
1465 ret = pvr2_locate_firmware(hdw,&fw_entry,"fx2 controller",
Mike Isely989eb152007-11-26 01:53:12 -03001466 hdw->hdw_desc->fx2_firmware.cnt,
1467 hdw->hdw_desc->fx2_firmware.lst);
Mike Iselyd8554972006-06-26 20:58:46 -03001468 if (ret < 0) {
1469 if (ret == -ENOENT) hdw->fw1_state = FW1_STATE_MISSING;
1470 return ret;
1471 }
1472
Mike Iselyd8554972006-06-26 20:58:46 -03001473 usb_clear_halt(hdw->usb_dev, usb_sndbulkpipe(hdw->usb_dev, 0 & 0x7f));
1474
1475 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
1476
Mike Iselyc21c2db2009-11-25 02:49:21 -03001477 if ((fw_entry->size != 0x2000) &&
1478 (!(hdw->hdw_desc->flag_fx2_16kb && (fw_entry->size == 0x4000)))) {
1479 if (hdw->hdw_desc->flag_fx2_16kb) {
1480 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1481 "Wrong fx2 firmware size"
1482 " (expected 8192 or 16384, got %u)",
1483 fw_entry->size);
1484 } else {
1485 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1486 "Wrong fx2 firmware size"
1487 " (expected 8192, got %u)",
1488 fw_entry->size);
1489 }
Mike Iselyd8554972006-06-26 20:58:46 -03001490 release_firmware(fw_entry);
1491 return -ENOMEM;
1492 }
1493
1494 fw_ptr = kmalloc(0x800, GFP_KERNEL);
1495 if (fw_ptr == NULL){
1496 release_firmware(fw_entry);
1497 return -ENOMEM;
1498 }
1499
1500 /* We have to hold the CPU during firmware upload. */
1501 pvr2_hdw_cpureset_assert(hdw,1);
1502
1503 /* upload the firmware to address 0000-1fff in 2048 (=0x800) bytes
1504 chunk. */
1505
1506 ret = 0;
1507 for(address = 0; address < fw_entry->size; address += 0x800) {
1508 memcpy(fw_ptr, fw_entry->data + address, 0x800);
1509 ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address,
1510 0, fw_ptr, 0x800, HZ);
1511 }
1512
1513 trace_firmware("Upload done, releasing device's CPU");
1514
1515 /* Now release the CPU. It will disconnect and reconnect later. */
1516 pvr2_hdw_cpureset_assert(hdw,0);
1517
1518 kfree(fw_ptr);
1519 release_firmware(fw_entry);
1520
1521 trace_firmware("Upload done (%d bytes sent)",ret);
1522
1523 /* We should have written 8192 bytes */
1524 if (ret == 8192) {
1525 hdw->fw1_state = FW1_STATE_RELOAD;
1526 return 0;
1527 }
1528
1529 return -EIO;
1530}
1531
1532
1533/*
1534 * pvr2_upload_firmware2()
1535 *
1536 * This uploads encoder firmware on endpoint 2.
1537 *
1538 */
1539
1540int pvr2_upload_firmware2(struct pvr2_hdw *hdw)
1541{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03001542 const struct firmware *fw_entry = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03001543 void *fw_ptr;
Mike Isely90060d32007-02-08 02:02:53 -03001544 unsigned int pipe, fw_len, fw_done, bcnt, icnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001545 int actual_length;
1546 int ret = 0;
1547 int fwidx;
1548 static const char *fw_files[] = {
1549 CX2341X_FIRM_ENC_FILENAME,
1550 };
1551
Mike Isely989eb152007-11-26 01:53:12 -03001552 if (hdw->hdw_desc->flag_skip_cx23416_firmware) {
Mike Isely1d643a32007-09-08 22:18:50 -03001553 return 0;
1554 }
1555
Mike Iselyd8554972006-06-26 20:58:46 -03001556 trace_firmware("pvr2_upload_firmware2");
1557
1558 ret = pvr2_locate_firmware(hdw,&fw_entry,"encoder",
Ahmed S. Darwisheca8ebf2007-01-20 00:35:03 -03001559 ARRAY_SIZE(fw_files), fw_files);
Mike Iselyd8554972006-06-26 20:58:46 -03001560 if (ret < 0) return ret;
1561 fwidx = ret;
1562 ret = 0;
Mike Iselyb30d2442006-06-25 20:05:01 -03001563 /* Since we're about to completely reinitialize the encoder,
1564 invalidate our cached copy of its configuration state. Next
1565 time we configure the encoder, then we'll fully configure it. */
1566 hdw->enc_cur_valid = 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001567
Mike Iselyd913d632008-04-06 04:04:35 -03001568 /* Encoder is about to be reset so note that as far as we're
1569 concerned now, the encoder has never been run. */
1570 del_timer_sync(&hdw->encoder_run_timer);
1571 if (hdw->state_encoder_runok) {
1572 hdw->state_encoder_runok = 0;
1573 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
1574 }
1575
Mike Iselyd8554972006-06-26 20:58:46 -03001576 /* First prepare firmware loading */
1577 ret |= pvr2_write_register(hdw, 0x0048, 0xffffffff); /*interrupt mask*/
1578 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000088); /*gpio dir*/
1579 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1580 ret |= pvr2_hdw_cmd_deep_reset(hdw);
1581 ret |= pvr2_write_register(hdw, 0xa064, 0x00000000); /*APU command*/
1582 ret |= pvr2_hdw_gpio_chg_dir(hdw,0xffffffff,0x00000408); /*gpio dir*/
1583 ret |= pvr2_hdw_gpio_chg_out(hdw,0xffffffff,0x00000008); /*gpio output state*/
1584 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffed); /*VPU ctrl*/
1585 ret |= pvr2_write_register(hdw, 0x9054, 0xfffffffd); /*reset hw blocks*/
1586 ret |= pvr2_write_register(hdw, 0x07f8, 0x80000800); /*encoder SDRAM refresh*/
1587 ret |= pvr2_write_register(hdw, 0x07fc, 0x0000001a); /*encoder SDRAM pre-charge*/
1588 ret |= pvr2_write_register(hdw, 0x0700, 0x00000000); /*I2C clock*/
1589 ret |= pvr2_write_register(hdw, 0xaa00, 0x00000000); /*unknown*/
1590 ret |= pvr2_write_register(hdw, 0xaa04, 0x00057810); /*unknown*/
1591 ret |= pvr2_write_register(hdw, 0xaa10, 0x00148500); /*unknown*/
1592 ret |= pvr2_write_register(hdw, 0xaa18, 0x00840000); /*unknown*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001593 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_FWPOST1);
1594 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001595
1596 if (ret) {
1597 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1598 "firmware2 upload prep failed, ret=%d",ret);
1599 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001600 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001601 }
1602
1603 /* Now send firmware */
1604
1605 fw_len = fw_entry->size;
1606
Mike Isely90060d32007-02-08 02:02:53 -03001607 if (fw_len % sizeof(u32)) {
Mike Iselyd8554972006-06-26 20:58:46 -03001608 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1609 "size of %s firmware"
Mike Isely48dc30a2007-03-03 10:13:05 -02001610 " must be a multiple of %zu bytes",
Mike Isely90060d32007-02-08 02:02:53 -03001611 fw_files[fwidx],sizeof(u32));
Mike Iselyd8554972006-06-26 20:58:46 -03001612 release_firmware(fw_entry);
Mike Isely21684ba2008-04-21 03:49:33 -03001613 ret = -EINVAL;
1614 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001615 }
1616
1617 fw_ptr = kmalloc(FIRMWARE_CHUNK_SIZE, GFP_KERNEL);
1618 if (fw_ptr == NULL){
1619 release_firmware(fw_entry);
1620 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1621 "failed to allocate memory for firmware2 upload");
Mike Isely21684ba2008-04-21 03:49:33 -03001622 ret = -ENOMEM;
1623 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001624 }
1625
1626 pipe = usb_sndbulkpipe(hdw->usb_dev, PVR2_FIRMWARE_ENDPOINT);
1627
Mike Isely90060d32007-02-08 02:02:53 -03001628 fw_done = 0;
1629 for (fw_done = 0; fw_done < fw_len;) {
1630 bcnt = fw_len - fw_done;
1631 if (bcnt > FIRMWARE_CHUNK_SIZE) bcnt = FIRMWARE_CHUNK_SIZE;
1632 memcpy(fw_ptr, fw_entry->data + fw_done, bcnt);
1633 /* Usbsnoop log shows that we must swap bytes... */
Mike Isely5f33df12008-08-30 15:09:31 -03001634 /* Some background info: The data being swapped here is a
1635 firmware image destined for the mpeg encoder chip that
1636 lives at the other end of a USB endpoint. The encoder
1637 chip always talks in 32 bit chunks and its storage is
1638 organized into 32 bit words. However from the file
1639 system to the encoder chip everything is purely a byte
1640 stream. The firmware file's contents are always 32 bit
1641 swapped from what the encoder expects. Thus the need
1642 always exists to swap the bytes regardless of the endian
1643 type of the host processor and therefore swab32() makes
1644 the most sense. */
Mike Isely90060d32007-02-08 02:02:53 -03001645 for (icnt = 0; icnt < bcnt/4 ; icnt++)
Harvey Harrison513edce2008-08-18 17:38:01 -03001646 ((u32 *)fw_ptr)[icnt] = swab32(((u32 *)fw_ptr)[icnt]);
Mike Iselyd8554972006-06-26 20:58:46 -03001647
Mike Isely90060d32007-02-08 02:02:53 -03001648 ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt,
Mike Iselyd8554972006-06-26 20:58:46 -03001649 &actual_length, HZ);
Mike Isely90060d32007-02-08 02:02:53 -03001650 ret |= (actual_length != bcnt);
1651 if (ret) break;
1652 fw_done += bcnt;
Mike Iselyd8554972006-06-26 20:58:46 -03001653 }
1654
1655 trace_firmware("upload of %s : %i / %i ",
1656 fw_files[fwidx],fw_done,fw_len);
1657
1658 kfree(fw_ptr);
1659 release_firmware(fw_entry);
1660
1661 if (ret) {
1662 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1663 "firmware2 upload transfer failure");
Mike Isely21684ba2008-04-21 03:49:33 -03001664 goto done;
Mike Iselyd8554972006-06-26 20:58:46 -03001665 }
1666
1667 /* Finish upload */
1668
1669 ret |= pvr2_write_register(hdw, 0x9054, 0xffffffff); /*reset hw blocks*/
1670 ret |= pvr2_write_register(hdw, 0x9058, 0xffffffe8); /*VPU ctrl*/
Mike Isely1c9d10d2008-03-28 05:38:54 -03001671 ret |= pvr2_issue_simple_cmd(hdw,FX2CMD_MEMSEL | (1 << 8) | (0 << 16));
Mike Iselyd8554972006-06-26 20:58:46 -03001672
1673 if (ret) {
1674 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1675 "firmware2 upload post-proc failure");
Mike Iselyd8554972006-06-26 20:58:46 -03001676 }
Mike Isely21684ba2008-04-21 03:49:33 -03001677
1678 done:
Mike Isely1df59f02008-04-21 03:50:39 -03001679 if (hdw->hdw_desc->signal_routing_scheme ==
1680 PVR2_ROUTING_SCHEME_GOTVIEW) {
1681 /* Ensure that GPIO 11 is set to output for GOTVIEW
1682 hardware. */
1683 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
1684 }
Mike Iselyd8554972006-06-26 20:58:46 -03001685 return ret;
1686}
1687
1688
Mike Isely681c7392007-11-26 01:48:52 -03001689static const char *pvr2_get_state_name(unsigned int st)
Mike Iselyd8554972006-06-26 20:58:46 -03001690{
Mike Isely681c7392007-11-26 01:48:52 -03001691 if (st < ARRAY_SIZE(pvr2_state_names)) {
1692 return pvr2_state_names[st];
Mike Iselyd8554972006-06-26 20:58:46 -03001693 }
Mike Isely681c7392007-11-26 01:48:52 -03001694 return "???";
Mike Iselyd8554972006-06-26 20:58:46 -03001695}
1696
Mike Isely681c7392007-11-26 01:48:52 -03001697static int pvr2_decoder_enable(struct pvr2_hdw *hdw,int enablefl)
Mike Iselyd8554972006-06-26 20:58:46 -03001698{
Mike Iselyaf78e162009-03-07 00:21:30 -03001699 /* Even though we really only care about the video decoder chip at
1700 this point, we'll broadcast stream on/off to all sub-devices
1701 anyway, just in case somebody else wants to hear the
1702 command... */
Mike Iselye2605082009-03-07 01:50:48 -03001703 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 stream=%s",
1704 (enablefl ? "on" : "off"));
Mike Iselyaf78e162009-03-07 00:21:30 -03001705 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_stream, enablefl);
1706 if (hdw->decoder_client_id) {
1707 /* We get here if the encoder has been noticed. Otherwise
1708 we'll issue a warning to the user (which should
1709 normally never happen). */
1710 return 0;
1711 }
1712 if (!hdw->flag_decoder_missed) {
1713 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1714 "WARNING: No decoder present");
1715 hdw->flag_decoder_missed = !0;
1716 trace_stbit("flag_decoder_missed",
1717 hdw->flag_decoder_missed);
1718 }
1719 return -EIO;
Mike Iselyd8554972006-06-26 20:58:46 -03001720}
1721
1722
Mike Isely681c7392007-11-26 01:48:52 -03001723int pvr2_hdw_get_state(struct pvr2_hdw *hdw)
1724{
1725 return hdw->master_state;
1726}
1727
1728
1729static int pvr2_hdw_untrip_unlocked(struct pvr2_hdw *hdw)
1730{
1731 if (!hdw->flag_tripped) return 0;
1732 hdw->flag_tripped = 0;
1733 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
1734 "Clearing driver error statuss");
1735 return !0;
1736}
1737
1738
1739int pvr2_hdw_untrip(struct pvr2_hdw *hdw)
1740{
1741 int fl;
1742 LOCK_TAKE(hdw->big_lock); do {
1743 fl = pvr2_hdw_untrip_unlocked(hdw);
1744 } while (0); LOCK_GIVE(hdw->big_lock);
1745 if (fl) pvr2_hdw_state_sched(hdw);
1746 return 0;
1747}
1748
1749
Mike Isely681c7392007-11-26 01:48:52 -03001750
1751
Mike Iselyd8554972006-06-26 20:58:46 -03001752int pvr2_hdw_get_streaming(struct pvr2_hdw *hdw)
1753{
Mike Isely681c7392007-11-26 01:48:52 -03001754 return hdw->state_pipeline_req != 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001755}
1756
1757
1758int pvr2_hdw_set_streaming(struct pvr2_hdw *hdw,int enable_flag)
1759{
Mike Isely681c7392007-11-26 01:48:52 -03001760 int ret,st;
Mike Iselyd8554972006-06-26 20:58:46 -03001761 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03001762 pvr2_hdw_untrip_unlocked(hdw);
1763 if ((!enable_flag) != !(hdw->state_pipeline_req)) {
1764 hdw->state_pipeline_req = enable_flag != 0;
1765 pvr2_trace(PVR2_TRACE_START_STOP,
1766 "/*--TRACE_STREAM--*/ %s",
1767 enable_flag ? "enable" : "disable");
1768 }
1769 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03001770 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001771 if ((ret = pvr2_hdw_wait(hdw,0)) < 0) return ret;
1772 if (enable_flag) {
1773 while ((st = hdw->master_state) != PVR2_STATE_RUN) {
1774 if (st != PVR2_STATE_READY) return -EIO;
1775 if ((ret = pvr2_hdw_wait(hdw,st)) < 0) return ret;
1776 }
1777 }
Mike Iselyd8554972006-06-26 20:58:46 -03001778 return 0;
1779}
1780
1781
1782int pvr2_hdw_set_stream_type(struct pvr2_hdw *hdw,enum pvr2_config config)
1783{
Mike Isely681c7392007-11-26 01:48:52 -03001784 int fl;
Mike Iselyd8554972006-06-26 20:58:46 -03001785 LOCK_TAKE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001786 if ((fl = (hdw->desired_stream_type != config)) != 0) {
1787 hdw->desired_stream_type = config;
1788 hdw->state_pipeline_config = 0;
1789 trace_stbit("state_pipeline_config",
1790 hdw->state_pipeline_config);
1791 pvr2_hdw_state_sched(hdw);
1792 }
Mike Iselyd8554972006-06-26 20:58:46 -03001793 LOCK_GIVE(hdw->big_lock);
Mike Isely681c7392007-11-26 01:48:52 -03001794 if (fl) return 0;
1795 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03001796}
1797
1798
1799static int get_default_tuner_type(struct pvr2_hdw *hdw)
1800{
1801 int unit_number = hdw->unit_number;
1802 int tp = -1;
1803 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1804 tp = tuner[unit_number];
1805 }
1806 if (tp < 0) return -EINVAL;
1807 hdw->tuner_type = tp;
Mike Iselyaaf78842007-11-26 02:04:11 -03001808 hdw->tuner_updated = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03001809 return 0;
1810}
1811
1812
1813static v4l2_std_id get_default_standard(struct pvr2_hdw *hdw)
1814{
1815 int unit_number = hdw->unit_number;
1816 int tp = 0;
1817 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1818 tp = video_std[unit_number];
Mike Isely6a540252007-12-02 23:51:34 -03001819 if (tp) return tp;
Mike Iselyd8554972006-06-26 20:58:46 -03001820 }
Mike Isely6a540252007-12-02 23:51:34 -03001821 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03001822}
1823
1824
1825static unsigned int get_default_error_tolerance(struct pvr2_hdw *hdw)
1826{
1827 int unit_number = hdw->unit_number;
1828 int tp = 0;
1829 if ((unit_number >= 0) && (unit_number < PVR_NUM)) {
1830 tp = tolerance[unit_number];
1831 }
1832 return tp;
1833}
1834
1835
1836static int pvr2_hdw_check_firmware(struct pvr2_hdw *hdw)
1837{
1838 /* Try a harmless request to fetch the eeprom's address over
1839 endpoint 1. See what happens. Only the full FX2 image can
1840 respond to this. If this probe fails then likely the FX2
1841 firmware needs be loaded. */
1842 int result;
1843 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03001844 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03001845 result = pvr2_send_request_ex(hdw,HZ*1,!0,
1846 hdw->cmd_buffer,1,
1847 hdw->cmd_buffer,1);
1848 if (result < 0) break;
1849 } while(0); LOCK_GIVE(hdw->ctl_lock);
1850 if (result) {
1851 pvr2_trace(PVR2_TRACE_INIT,
1852 "Probe of device endpoint 1 result status %d",
1853 result);
1854 } else {
1855 pvr2_trace(PVR2_TRACE_INIT,
1856 "Probe of device endpoint 1 succeeded");
1857 }
1858 return result == 0;
1859}
1860
Mike Isely9f66d4e2007-09-08 22:28:51 -03001861struct pvr2_std_hack {
1862 v4l2_std_id pat; /* Pattern to match */
1863 v4l2_std_id msk; /* Which bits we care about */
1864 v4l2_std_id std; /* What additional standards or default to set */
1865};
1866
1867/* This data structure labels specific combinations of standards from
1868 tveeprom that we'll try to recognize. If we recognize one, then assume
1869 a specified default standard to use. This is here because tveeprom only
1870 tells us about available standards not the intended default standard (if
1871 any) for the device in question. We guess the default based on what has
1872 been reported as available. Note that this is only for guessing a
1873 default - which can always be overridden explicitly - and if the user
1874 has otherwise named a default then that default will always be used in
1875 place of this table. */
Tobias Klauserebff0332008-04-22 14:45:45 -03001876static const struct pvr2_std_hack std_eeprom_maps[] = {
Mike Isely9f66d4e2007-09-08 22:28:51 -03001877 { /* PAL(B/G) */
1878 .pat = V4L2_STD_B|V4L2_STD_GH,
1879 .std = V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_PAL_G,
1880 },
1881 { /* NTSC(M) */
1882 .pat = V4L2_STD_MN,
1883 .std = V4L2_STD_NTSC_M,
1884 },
1885 { /* PAL(I) */
1886 .pat = V4L2_STD_PAL_I,
1887 .std = V4L2_STD_PAL_I,
1888 },
1889 { /* SECAM(L/L') */
1890 .pat = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1891 .std = V4L2_STD_SECAM_L|V4L2_STD_SECAM_LC,
1892 },
1893 { /* PAL(D/D1/K) */
1894 .pat = V4L2_STD_DK,
Roel Kluinea2562d2007-12-02 23:04:57 -03001895 .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001896 },
1897};
1898
Mike Iselyd8554972006-06-26 20:58:46 -03001899static void pvr2_hdw_setup_std(struct pvr2_hdw *hdw)
1900{
1901 char buf[40];
1902 unsigned int bcnt;
Mike Isely3d290bd2007-12-03 01:47:12 -03001903 v4l2_std_id std1,std2,std3;
Mike Iselyd8554972006-06-26 20:58:46 -03001904
1905 std1 = get_default_standard(hdw);
Mike Isely3d290bd2007-12-03 01:47:12 -03001906 std3 = std1 ? 0 : hdw->hdw_desc->default_std_mask;
Mike Iselyd8554972006-06-26 20:58:46 -03001907
1908 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
Mike Isely56585382007-09-08 22:32:12 -03001909 pvr2_trace(PVR2_TRACE_STD,
Mike Isely56dcbfa2007-11-26 02:00:51 -03001910 "Supported video standard(s) reported available"
1911 " in hardware: %.*s",
Mike Iselyd8554972006-06-26 20:58:46 -03001912 bcnt,buf);
1913
1914 hdw->std_mask_avail = hdw->std_mask_eeprom;
1915
Mike Isely3d290bd2007-12-03 01:47:12 -03001916 std2 = (std1|std3) & ~hdw->std_mask_avail;
Mike Iselyd8554972006-06-26 20:58:46 -03001917 if (std2) {
1918 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
Mike Isely56585382007-09-08 22:32:12 -03001919 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001920 "Expanding supported video standards"
1921 " to include: %.*s",
1922 bcnt,buf);
1923 hdw->std_mask_avail |= std2;
1924 }
1925
1926 pvr2_hdw_internal_set_std_avail(hdw);
1927
1928 if (std1) {
1929 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
Mike Isely56585382007-09-08 22:32:12 -03001930 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001931 "Initial video standard forced to %.*s",
1932 bcnt,buf);
1933 hdw->std_mask_cur = std1;
1934 hdw->std_dirty = !0;
1935 pvr2_hdw_internal_find_stdenum(hdw);
1936 return;
1937 }
Mike Isely3d290bd2007-12-03 01:47:12 -03001938 if (std3) {
1939 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1940 pvr2_trace(PVR2_TRACE_STD,
1941 "Initial video standard"
1942 " (determined by device type): %.*s",bcnt,buf);
1943 hdw->std_mask_cur = std3;
1944 hdw->std_dirty = !0;
1945 pvr2_hdw_internal_find_stdenum(hdw);
1946 return;
1947 }
Mike Iselyd8554972006-06-26 20:58:46 -03001948
Mike Isely9f66d4e2007-09-08 22:28:51 -03001949 {
1950 unsigned int idx;
1951 for (idx = 0; idx < ARRAY_SIZE(std_eeprom_maps); idx++) {
1952 if (std_eeprom_maps[idx].msk ?
1953 ((std_eeprom_maps[idx].pat ^
1954 hdw->std_mask_eeprom) &
1955 std_eeprom_maps[idx].msk) :
1956 (std_eeprom_maps[idx].pat !=
1957 hdw->std_mask_eeprom)) continue;
1958 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1959 std_eeprom_maps[idx].std);
Mike Isely56585382007-09-08 22:32:12 -03001960 pvr2_trace(PVR2_TRACE_STD,
Mike Isely9f66d4e2007-09-08 22:28:51 -03001961 "Initial video standard guessed as %.*s",
1962 bcnt,buf);
1963 hdw->std_mask_cur = std_eeprom_maps[idx].std;
1964 hdw->std_dirty = !0;
1965 pvr2_hdw_internal_find_stdenum(hdw);
1966 return;
1967 }
1968 }
1969
Mike Iselyd8554972006-06-26 20:58:46 -03001970 if (hdw->std_enum_cnt > 1) {
1971 // Autoselect the first listed standard
1972 hdw->std_enum_cur = 1;
1973 hdw->std_mask_cur = hdw->std_defs[hdw->std_enum_cur-1].id;
1974 hdw->std_dirty = !0;
Mike Isely56585382007-09-08 22:32:12 -03001975 pvr2_trace(PVR2_TRACE_STD,
Mike Iselyd8554972006-06-26 20:58:46 -03001976 "Initial video standard auto-selected to %s",
1977 hdw->std_defs[hdw->std_enum_cur-1].name);
1978 return;
1979 }
1980
Mike Isely0885ba12006-06-25 21:30:47 -03001981 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Iselyd8554972006-06-26 20:58:46 -03001982 "Unable to select a viable initial video standard");
1983}
1984
1985
Mike Iselye9c64a72009-03-06 23:42:20 -03001986static unsigned int pvr2_copy_i2c_addr_list(
1987 unsigned short *dst, const unsigned char *src,
1988 unsigned int dst_max)
1989{
Mike Isely3ab8d292009-03-07 01:37:58 -03001990 unsigned int cnt = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03001991 if (!src) return 0;
1992 while (src[cnt] && (cnt + 1) < dst_max) {
1993 dst[cnt] = src[cnt];
1994 cnt++;
1995 }
1996 dst[cnt] = I2C_CLIENT_END;
1997 return cnt;
1998}
1999
2000
Mike Iselye17d7872009-06-20 14:45:52 -03002001static void pvr2_hdw_cx25840_vbi_hack(struct pvr2_hdw *hdw)
2002{
2003 /*
2004 Mike Isely <isely@pobox.com> 19-Nov-2006 - This bit of nuttiness
2005 for cx25840 causes that module to correctly set up its video
2006 scaling. This is really a problem in the cx25840 module itself,
2007 but we work around it here. The problem has not been seen in
2008 ivtv because there VBI is supported and set up. We don't do VBI
2009 here (at least not yet) and thus we never attempted to even set
2010 it up.
2011 */
2012 struct v4l2_format fmt;
2013 if (hdw->decoder_client_id != PVR2_CLIENT_ID_CX25840) {
2014 /* We're not using a cx25840 so don't enable the hack */
2015 return;
2016 }
2017
2018 pvr2_trace(PVR2_TRACE_INIT,
2019 "Module ID %u:"
2020 " Executing cx25840 VBI hack",
2021 hdw->decoder_client_id);
2022 memset(&fmt, 0, sizeof(fmt));
2023 fmt.type = V4L2_BUF_TYPE_SLICED_VBI_CAPTURE;
2024 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
2025 video, s_fmt, &fmt);
2026}
2027
2028
Mike Isely1ab5e742009-03-07 00:24:24 -03002029static int pvr2_hdw_load_subdev(struct pvr2_hdw *hdw,
2030 const struct pvr2_device_client_desc *cd)
Mike Iselye9c64a72009-03-06 23:42:20 -03002031{
2032 const char *fname;
2033 unsigned char mid;
2034 struct v4l2_subdev *sd;
2035 unsigned int i2ccnt;
2036 const unsigned char *p;
2037 /* Arbitrary count - max # i2c addresses we will probe */
2038 unsigned short i2caddr[25];
2039
2040 mid = cd->module_id;
2041 fname = (mid < ARRAY_SIZE(module_names)) ? module_names[mid] : NULL;
2042 if (!fname) {
2043 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely27108142009-10-12 00:21:20 -03002044 "Module ID %u for device %s has no name?"
2045 " The driver might have a configuration problem.",
Mike Iselye9c64a72009-03-06 23:42:20 -03002046 mid,
2047 hdw->hdw_desc->description);
Mike Isely1ab5e742009-03-07 00:24:24 -03002048 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002049 }
Mike Iselybd14d4f2009-03-07 00:56:52 -03002050 pvr2_trace(PVR2_TRACE_INIT,
2051 "Module ID %u (%s) for device %s being loaded...",
2052 mid, fname,
2053 hdw->hdw_desc->description);
Mike Iselye9c64a72009-03-06 23:42:20 -03002054
2055 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, cd->i2c_address_list,
2056 ARRAY_SIZE(i2caddr));
2057 if (!i2ccnt && ((p = (mid < ARRAY_SIZE(module_i2c_addresses)) ?
2058 module_i2c_addresses[mid] : NULL) != NULL)) {
2059 /* Second chance: Try default i2c address list */
2060 i2ccnt = pvr2_copy_i2c_addr_list(i2caddr, p,
2061 ARRAY_SIZE(i2caddr));
Mike Iselybd14d4f2009-03-07 00:56:52 -03002062 if (i2ccnt) {
2063 pvr2_trace(PVR2_TRACE_INIT,
2064 "Module ID %u:"
2065 " Using default i2c address list",
2066 mid);
2067 }
Mike Iselye9c64a72009-03-06 23:42:20 -03002068 }
2069
2070 if (!i2ccnt) {
2071 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely1ab5e742009-03-07 00:24:24 -03002072 "Module ID %u (%s) for device %s:"
Mike Isely27108142009-10-12 00:21:20 -03002073 " No i2c addresses."
2074 " The driver might have a configuration problem.",
Mike Isely1ab5e742009-03-07 00:24:24 -03002075 mid, fname, hdw->hdw_desc->description);
2076 return -EINVAL;
Mike Iselye9c64a72009-03-06 23:42:20 -03002077 }
2078
Hans Verkuil53dacb12009-08-10 02:49:08 -03002079 /* Note how the 2nd and 3rd arguments are the same for
2080 * v4l2_i2c_new_subdev(). Why?
Mike Iselye9c64a72009-03-06 23:42:20 -03002081 * Well the 2nd argument is the module name to load, while the 3rd
2082 * argument is documented in the framework as being the "chipid" -
2083 * and every other place where I can find examples of this, the
2084 * "chipid" appears to just be the module name again. So here we
2085 * just do the same thing. */
2086 if (i2ccnt == 1) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002087 pvr2_trace(PVR2_TRACE_INIT,
2088 "Module ID %u:"
2089 " Setting up with specified i2c address 0x%x",
2090 mid, i2caddr[0]);
Hans Verkuile6574f22009-04-01 03:57:53 -03002091 sd = v4l2_i2c_new_subdev(&hdw->v4l2_dev, &hdw->i2c_adap,
Mike Iselye9c64a72009-03-06 23:42:20 -03002092 fname, fname,
Hans Verkuil53dacb12009-08-10 02:49:08 -03002093 i2caddr[0], NULL);
Mike Iselye9c64a72009-03-06 23:42:20 -03002094 } else {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002095 pvr2_trace(PVR2_TRACE_INIT,
2096 "Module ID %u:"
2097 " Setting up with address probe list",
2098 mid);
Hans Verkuil53dacb12009-08-10 02:49:08 -03002099 sd = v4l2_i2c_new_subdev(&hdw->v4l2_dev, &hdw->i2c_adap,
Mike Iselye9c64a72009-03-06 23:42:20 -03002100 fname, fname,
Hans Verkuil53dacb12009-08-10 02:49:08 -03002101 0, i2caddr);
Mike Iselye9c64a72009-03-06 23:42:20 -03002102 }
2103
Mike Isely446dfdc2009-03-06 23:58:15 -03002104 if (!sd) {
2105 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
Mike Isely27108142009-10-12 00:21:20 -03002106 "Module ID %u (%s) for device %s failed to load."
2107 " Possible missing sub-device kernel module or"
2108 " initialization failure within module.",
Mike Isely1ab5e742009-03-07 00:24:24 -03002109 mid, fname, hdw->hdw_desc->description);
2110 return -EIO;
Mike Isely446dfdc2009-03-06 23:58:15 -03002111 }
2112
2113 /* Tag this sub-device instance with the module ID we know about.
2114 In other places we'll use that tag to determine if the instance
2115 requires special handling. */
2116 sd->grp_id = mid;
2117
Mike Iselybd14d4f2009-03-07 00:56:52 -03002118 pvr2_trace(PVR2_TRACE_INFO, "Attached sub-driver %s", fname);
Mike Iselya932f502009-03-06 23:47:10 -03002119
Mike Iselye9c64a72009-03-06 23:42:20 -03002120
Mike Isely00e5f732009-03-07 00:17:11 -03002121 /* client-specific setup... */
2122 switch (mid) {
2123 case PVR2_CLIENT_ID_CX25840:
Mike Isely00e5f732009-03-07 00:17:11 -03002124 case PVR2_CLIENT_ID_SAA7115:
2125 hdw->decoder_client_id = mid;
2126 break;
2127 default: break;
2128 }
Mike Isely1ab5e742009-03-07 00:24:24 -03002129
2130 return 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002131}
2132
2133
2134static void pvr2_hdw_load_modules(struct pvr2_hdw *hdw)
2135{
2136 unsigned int idx;
2137 const struct pvr2_string_table *cm;
2138 const struct pvr2_device_client_table *ct;
Mike Isely1ab5e742009-03-07 00:24:24 -03002139 int okFl = !0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002140
2141 cm = &hdw->hdw_desc->client_modules;
2142 for (idx = 0; idx < cm->cnt; idx++) {
2143 request_module(cm->lst[idx]);
2144 }
2145
2146 ct = &hdw->hdw_desc->client_table;
2147 for (idx = 0; idx < ct->cnt; idx++) {
Mike Iselybd14d4f2009-03-07 00:56:52 -03002148 if (pvr2_hdw_load_subdev(hdw, &ct->lst[idx]) < 0) okFl = 0;
Mike Iselye9c64a72009-03-06 23:42:20 -03002149 }
Mike Isely27108142009-10-12 00:21:20 -03002150 if (!okFl) {
2151 hdw->flag_modulefail = !0;
2152 pvr2_hdw_render_useless(hdw);
2153 }
Mike Iselye9c64a72009-03-06 23:42:20 -03002154}
2155
2156
Mike Iselyd8554972006-06-26 20:58:46 -03002157static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
2158{
2159 int ret;
2160 unsigned int idx;
2161 struct pvr2_ctrl *cptr;
2162 int reloadFl = 0;
Mike Isely989eb152007-11-26 01:53:12 -03002163 if (hdw->hdw_desc->fx2_firmware.cnt) {
Mike Isely1d643a32007-09-08 22:18:50 -03002164 if (!reloadFl) {
2165 reloadFl =
2166 (hdw->usb_intf->cur_altsetting->desc.bNumEndpoints
2167 == 0);
2168 if (reloadFl) {
2169 pvr2_trace(PVR2_TRACE_INIT,
2170 "USB endpoint config looks strange"
2171 "; possibly firmware needs to be"
2172 " loaded");
2173 }
2174 }
2175 if (!reloadFl) {
2176 reloadFl = !pvr2_hdw_check_firmware(hdw);
2177 if (reloadFl) {
2178 pvr2_trace(PVR2_TRACE_INIT,
2179 "Check for FX2 firmware failed"
2180 "; possibly firmware needs to be"
2181 " loaded");
2182 }
2183 }
Mike Iselyd8554972006-06-26 20:58:46 -03002184 if (reloadFl) {
Mike Isely1d643a32007-09-08 22:18:50 -03002185 if (pvr2_upload_firmware1(hdw) != 0) {
2186 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2187 "Failure uploading firmware1");
2188 }
2189 return;
Mike Iselyd8554972006-06-26 20:58:46 -03002190 }
2191 }
Mike Iselyd8554972006-06-26 20:58:46 -03002192 hdw->fw1_state = FW1_STATE_OK;
2193
Mike Iselyd8554972006-06-26 20:58:46 -03002194 if (!pvr2_hdw_dev_ok(hdw)) return;
2195
Mike Isely27764722009-03-07 01:57:25 -03002196 hdw->force_dirty = !0;
2197
Mike Isely989eb152007-11-26 01:53:12 -03002198 if (!hdw->hdw_desc->flag_no_powerup) {
Mike Isely1d643a32007-09-08 22:18:50 -03002199 pvr2_hdw_cmd_powerup(hdw);
2200 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002201 }
2202
Mike Isely31335b12008-07-25 19:35:31 -03002203 /* Take the IR chip out of reset, if appropriate */
Mike Isely27eab382009-04-06 01:51:38 -03002204 if (hdw->ir_scheme_active == PVR2_IR_SCHEME_ZILOG) {
Mike Isely31335b12008-07-25 19:35:31 -03002205 pvr2_issue_simple_cmd(hdw,
2206 FX2CMD_HCW_ZILOG_RESET |
2207 (1 << 8) |
2208 ((0) << 16));
2209 }
2210
Mike Iselyd8554972006-06-26 20:58:46 -03002211 // This step MUST happen after the earlier powerup step.
2212 pvr2_i2c_core_init(hdw);
2213 if (!pvr2_hdw_dev_ok(hdw)) return;
2214
Mike Iselye9c64a72009-03-06 23:42:20 -03002215 pvr2_hdw_load_modules(hdw);
Mike Isely1ab5e742009-03-07 00:24:24 -03002216 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselye9c64a72009-03-06 23:42:20 -03002217
Hans Verkuilcc26b072009-03-29 19:20:26 -03002218 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, load_fw);
Mike Isely5c6cb4e2009-03-07 01:59:34 -03002219
Mike Iselyc05c0462006-06-25 20:04:25 -03002220 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002221 cptr = hdw->controls + idx;
2222 if (cptr->info->skip_init) continue;
2223 if (!cptr->info->set_value) continue;
2224 cptr->info->set_value(cptr,~0,cptr->info->default_value);
2225 }
2226
Mike Iselye17d7872009-06-20 14:45:52 -03002227 pvr2_hdw_cx25840_vbi_hack(hdw);
2228
Mike Isely1bde0282006-12-27 23:30:13 -03002229 /* Set up special default values for the television and radio
2230 frequencies here. It's not really important what these defaults
2231 are, but I set them to something usable in the Chicago area just
2232 to make driver testing a little easier. */
2233
Michael Krufky5a4f5da62008-05-11 16:37:50 -03002234 hdw->freqValTelevision = default_tv_freq;
2235 hdw->freqValRadio = default_radio_freq;
Mike Isely1bde0282006-12-27 23:30:13 -03002236
Mike Iselyd8554972006-06-26 20:58:46 -03002237 // Do not use pvr2_reset_ctl_endpoints() here. It is not
2238 // thread-safe against the normal pvr2_send_request() mechanism.
2239 // (We should make it thread safe).
2240
Mike Iselyaaf78842007-11-26 02:04:11 -03002241 if (hdw->hdw_desc->flag_has_hauppauge_rom) {
2242 ret = pvr2_hdw_get_eeprom_addr(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002243 if (!pvr2_hdw_dev_ok(hdw)) return;
Mike Iselyaaf78842007-11-26 02:04:11 -03002244 if (ret < 0) {
2245 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2246 "Unable to determine location of eeprom,"
2247 " skipping");
2248 } else {
2249 hdw->eeprom_addr = ret;
2250 pvr2_eeprom_analyze(hdw);
2251 if (!pvr2_hdw_dev_ok(hdw)) return;
2252 }
2253 } else {
2254 hdw->tuner_type = hdw->hdw_desc->default_tuner_type;
2255 hdw->tuner_updated = !0;
2256 hdw->std_mask_eeprom = V4L2_STD_ALL;
Mike Iselyd8554972006-06-26 20:58:46 -03002257 }
2258
Mike Isely13a88792009-01-14 04:22:56 -03002259 if (hdw->serial_number) {
2260 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2261 "sn-%lu", hdw->serial_number);
2262 } else if (hdw->unit_number >= 0) {
2263 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2264 "unit-%c",
2265 hdw->unit_number + 'a');
2266 } else {
2267 idx = scnprintf(hdw->identifier, sizeof(hdw->identifier) - 1,
2268 "unit-??");
2269 }
2270 hdw->identifier[idx] = 0;
2271
Mike Iselyd8554972006-06-26 20:58:46 -03002272 pvr2_hdw_setup_std(hdw);
2273
2274 if (!get_default_tuner_type(hdw)) {
2275 pvr2_trace(PVR2_TRACE_INIT,
2276 "pvr2_hdw_setup: Tuner type overridden to %d",
2277 hdw->tuner_type);
2278 }
2279
Mike Iselyd8554972006-06-26 20:58:46 -03002280
2281 if (!pvr2_hdw_dev_ok(hdw)) return;
2282
Mike Isely1df59f02008-04-21 03:50:39 -03002283 if (hdw->hdw_desc->signal_routing_scheme ==
2284 PVR2_ROUTING_SCHEME_GOTVIEW) {
2285 /* Ensure that GPIO 11 is set to output for GOTVIEW
2286 hardware. */
2287 pvr2_hdw_gpio_chg_dir(hdw,(1 << 11),~0);
2288 }
2289
Mike Isely681c7392007-11-26 01:48:52 -03002290 pvr2_hdw_commit_setup(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002291
2292 hdw->vid_stream = pvr2_stream_create();
2293 if (!pvr2_hdw_dev_ok(hdw)) return;
2294 pvr2_trace(PVR2_TRACE_INIT,
2295 "pvr2_hdw_setup: video stream is %p",hdw->vid_stream);
2296 if (hdw->vid_stream) {
2297 idx = get_default_error_tolerance(hdw);
2298 if (idx) {
2299 pvr2_trace(PVR2_TRACE_INIT,
2300 "pvr2_hdw_setup: video stream %p"
2301 " setting tolerance %u",
2302 hdw->vid_stream,idx);
2303 }
2304 pvr2_stream_setup(hdw->vid_stream,hdw->usb_dev,
2305 PVR2_VID_ENDPOINT,idx);
2306 }
2307
2308 if (!pvr2_hdw_dev_ok(hdw)) return;
2309
Mike Iselyd8554972006-06-26 20:58:46 -03002310 hdw->flag_init_ok = !0;
Mike Isely681c7392007-11-26 01:48:52 -03002311
2312 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002313}
2314
2315
Mike Isely681c7392007-11-26 01:48:52 -03002316/* Set up the structure and attempt to put the device into a usable state.
2317 This can be a time-consuming operation, which is why it is not done
2318 internally as part of the create() step. */
2319static void pvr2_hdw_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002320{
2321 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) begin",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002322 do {
Mike Iselyd8554972006-06-26 20:58:46 -03002323 pvr2_hdw_setup_low(hdw);
2324 pvr2_trace(PVR2_TRACE_INIT,
2325 "pvr2_hdw_setup(hdw=%p) done, ok=%d init_ok=%d",
Mike Isely681c7392007-11-26 01:48:52 -03002326 hdw,pvr2_hdw_dev_ok(hdw),hdw->flag_init_ok);
Mike Iselyd8554972006-06-26 20:58:46 -03002327 if (pvr2_hdw_dev_ok(hdw)) {
Mike Isely681c7392007-11-26 01:48:52 -03002328 if (hdw->flag_init_ok) {
Mike Iselyd8554972006-06-26 20:58:46 -03002329 pvr2_trace(
2330 PVR2_TRACE_INFO,
2331 "Device initialization"
2332 " completed successfully.");
2333 break;
2334 }
2335 if (hdw->fw1_state == FW1_STATE_RELOAD) {
2336 pvr2_trace(
2337 PVR2_TRACE_INFO,
2338 "Device microcontroller firmware"
2339 " (re)loaded; it should now reset"
2340 " and reconnect.");
2341 break;
2342 }
2343 pvr2_trace(
2344 PVR2_TRACE_ERROR_LEGS,
2345 "Device initialization was not successful.");
2346 if (hdw->fw1_state == FW1_STATE_MISSING) {
2347 pvr2_trace(
2348 PVR2_TRACE_ERROR_LEGS,
2349 "Giving up since device"
2350 " microcontroller firmware"
2351 " appears to be missing.");
2352 break;
2353 }
2354 }
Mike Isely27108142009-10-12 00:21:20 -03002355 if (hdw->flag_modulefail) {
2356 pvr2_trace(
2357 PVR2_TRACE_ERROR_LEGS,
2358 "***WARNING*** pvrusb2 driver initialization"
2359 " failed due to the failure of one or more"
2360 " sub-device kernel modules.");
2361 pvr2_trace(
2362 PVR2_TRACE_ERROR_LEGS,
2363 "You need to resolve the failing condition"
2364 " before this driver can function. There"
2365 " should be some earlier messages giving more"
2366 " information about the problem.");
Mike Isely515ebf72009-10-12 00:27:38 -03002367 break;
Mike Isely27108142009-10-12 00:21:20 -03002368 }
Mike Iselyd8554972006-06-26 20:58:46 -03002369 if (procreload) {
2370 pvr2_trace(
2371 PVR2_TRACE_ERROR_LEGS,
2372 "Attempting pvrusb2 recovery by reloading"
2373 " primary firmware.");
2374 pvr2_trace(
2375 PVR2_TRACE_ERROR_LEGS,
2376 "If this works, device should disconnect"
2377 " and reconnect in a sane state.");
2378 hdw->fw1_state = FW1_STATE_UNKNOWN;
2379 pvr2_upload_firmware1(hdw);
2380 } else {
2381 pvr2_trace(
2382 PVR2_TRACE_ERROR_LEGS,
2383 "***WARNING*** pvrusb2 device hardware"
2384 " appears to be jammed"
2385 " and I can't clear it.");
2386 pvr2_trace(
2387 PVR2_TRACE_ERROR_LEGS,
2388 "You might need to power cycle"
2389 " the pvrusb2 device"
2390 " in order to recover.");
2391 }
Mike Isely681c7392007-11-26 01:48:52 -03002392 } while (0);
Mike Iselyd8554972006-06-26 20:58:46 -03002393 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_setup(hdw=%p) end",hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002394}
2395
2396
Mike Iselyc4a88282008-04-22 14:45:44 -03002397/* Perform second stage initialization. Set callback pointer first so that
2398 we can avoid a possible initialization race (if the kernel thread runs
2399 before the callback has been set). */
Mike Isely794b1602008-04-22 14:45:45 -03002400int pvr2_hdw_initialize(struct pvr2_hdw *hdw,
2401 void (*callback_func)(void *),
2402 void *callback_data)
Mike Iselyc4a88282008-04-22 14:45:44 -03002403{
2404 LOCK_TAKE(hdw->big_lock); do {
Mike Isely97f26ff2008-04-07 02:22:43 -03002405 if (hdw->flag_disconnected) {
2406 /* Handle a race here: If we're already
2407 disconnected by this point, then give up. If we
2408 get past this then we'll remain connected for
2409 the duration of initialization since the entire
2410 initialization sequence is now protected by the
2411 big_lock. */
2412 break;
2413 }
Mike Iselyc4a88282008-04-22 14:45:44 -03002414 hdw->state_data = callback_data;
2415 hdw->state_func = callback_func;
Mike Isely97f26ff2008-04-07 02:22:43 -03002416 pvr2_hdw_setup(hdw);
Mike Iselyc4a88282008-04-22 14:45:44 -03002417 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely794b1602008-04-22 14:45:45 -03002418 return hdw->flag_init_ok;
Mike Iselyc4a88282008-04-22 14:45:44 -03002419}
2420
2421
2422/* Create, set up, and return a structure for interacting with the
2423 underlying hardware. */
Mike Iselyd8554972006-06-26 20:58:46 -03002424struct pvr2_hdw *pvr2_hdw_create(struct usb_interface *intf,
2425 const struct usb_device_id *devid)
2426{
Mike Isely7fb20fa2008-04-22 14:45:37 -03002427 unsigned int idx,cnt1,cnt2,m;
Mike Iselyfe15f132008-08-30 18:11:40 -03002428 struct pvr2_hdw *hdw = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002429 int valid_std_mask;
2430 struct pvr2_ctrl *cptr;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002431 struct usb_device *usb_dev;
Mike Isely989eb152007-11-26 01:53:12 -03002432 const struct pvr2_device_desc *hdw_desc;
Mike Iselyd8554972006-06-26 20:58:46 -03002433 __u8 ifnum;
Mike Iselyb30d2442006-06-25 20:05:01 -03002434 struct v4l2_queryctrl qctrl;
2435 struct pvr2_ctl_info *ciptr;
Mike Iselyd8554972006-06-26 20:58:46 -03002436
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002437 usb_dev = interface_to_usbdev(intf);
2438
Mike Iselyd130fa82007-12-08 17:20:06 -03002439 hdw_desc = (const struct pvr2_device_desc *)(devid->driver_info);
Mike Iselyd8554972006-06-26 20:58:46 -03002440
Mike Iselyfe15f132008-08-30 18:11:40 -03002441 if (hdw_desc == NULL) {
2442 pvr2_trace(PVR2_TRACE_INIT, "pvr2_hdw_create:"
2443 " No device description pointer,"
2444 " unable to continue.");
2445 pvr2_trace(PVR2_TRACE_INIT, "If you have a new device type,"
2446 " please contact Mike Isely <isely@pobox.com>"
2447 " to get it included in the driver\n");
2448 goto fail;
2449 }
2450
Mike Iselyca545f72007-01-20 00:37:11 -03002451 hdw = kzalloc(sizeof(*hdw),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -03002452 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_create: hdw=%p, type \"%s\"",
Mike Isely989eb152007-11-26 01:53:12 -03002453 hdw,hdw_desc->description);
Mike Iselye67e3762009-10-12 00:28:19 -03002454 pvr2_trace(PVR2_TRACE_INFO, "Hardware description: %s",
Mike Isely00970be2009-10-12 00:23:37 -03002455 hdw_desc->description);
Mike Iselyd8554972006-06-26 20:58:46 -03002456 if (!hdw) goto fail;
Mike Isely681c7392007-11-26 01:48:52 -03002457
2458 init_timer(&hdw->quiescent_timer);
2459 hdw->quiescent_timer.data = (unsigned long)hdw;
2460 hdw->quiescent_timer.function = pvr2_hdw_quiescent_timeout;
2461
2462 init_timer(&hdw->encoder_wait_timer);
2463 hdw->encoder_wait_timer.data = (unsigned long)hdw;
2464 hdw->encoder_wait_timer.function = pvr2_hdw_encoder_wait_timeout;
2465
Mike Iselyd913d632008-04-06 04:04:35 -03002466 init_timer(&hdw->encoder_run_timer);
2467 hdw->encoder_run_timer.data = (unsigned long)hdw;
2468 hdw->encoder_run_timer.function = pvr2_hdw_encoder_run_timeout;
2469
Mike Isely681c7392007-11-26 01:48:52 -03002470 hdw->master_state = PVR2_STATE_DEAD;
2471
2472 init_waitqueue_head(&hdw->state_wait_data);
2473
Mike Isely18103c52007-01-20 00:09:47 -03002474 hdw->tuner_signal_stale = !0;
Mike Iselyb30d2442006-06-25 20:05:01 -03002475 cx2341x_fill_defaults(&hdw->enc_ctl_state);
Mike Iselyd8554972006-06-26 20:58:46 -03002476
Mike Isely7fb20fa2008-04-22 14:45:37 -03002477 /* Calculate which inputs are OK */
2478 m = 0;
2479 if (hdw_desc->flag_has_analogtuner) m |= 1 << PVR2_CVAL_INPUT_TV;
Mike Iselye8f5bac2008-04-22 14:45:40 -03002480 if (hdw_desc->digital_control_scheme != PVR2_DIGITAL_SCHEME_NONE) {
2481 m |= 1 << PVR2_CVAL_INPUT_DTV;
2482 }
Mike Isely7fb20fa2008-04-22 14:45:37 -03002483 if (hdw_desc->flag_has_svideo) m |= 1 << PVR2_CVAL_INPUT_SVIDEO;
2484 if (hdw_desc->flag_has_composite) m |= 1 << PVR2_CVAL_INPUT_COMPOSITE;
2485 if (hdw_desc->flag_has_fmradio) m |= 1 << PVR2_CVAL_INPUT_RADIO;
2486 hdw->input_avail_mask = m;
Mike Isely1cb03b72008-04-21 03:47:43 -03002487 hdw->input_allowed_mask = hdw->input_avail_mask;
Mike Isely7fb20fa2008-04-22 14:45:37 -03002488
Mike Isely62433e32008-04-22 14:45:40 -03002489 /* If not a hybrid device, pathway_state never changes. So
2490 initialize it here to what it should forever be. */
2491 if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_DTV))) {
2492 hdw->pathway_state = PVR2_PATHWAY_ANALOG;
2493 } else if (!(hdw->input_avail_mask & (1 << PVR2_CVAL_INPUT_TV))) {
2494 hdw->pathway_state = PVR2_PATHWAY_DIGITAL;
2495 }
2496
Mike Iselyc05c0462006-06-25 20:04:25 -03002497 hdw->control_cnt = CTRLDEF_COUNT;
Mike Iselyb30d2442006-06-25 20:05:01 -03002498 hdw->control_cnt += MPEGDEF_COUNT;
Mike Iselyca545f72007-01-20 00:37:11 -03002499 hdw->controls = kzalloc(sizeof(struct pvr2_ctrl) * hdw->control_cnt,
Mike Iselyd8554972006-06-26 20:58:46 -03002500 GFP_KERNEL);
2501 if (!hdw->controls) goto fail;
Mike Isely989eb152007-11-26 01:53:12 -03002502 hdw->hdw_desc = hdw_desc;
Mike Isely27eab382009-04-06 01:51:38 -03002503 hdw->ir_scheme_active = hdw->hdw_desc->ir_scheme;
Mike Iselyc05c0462006-06-25 20:04:25 -03002504 for (idx = 0; idx < hdw->control_cnt; idx++) {
2505 cptr = hdw->controls + idx;
2506 cptr->hdw = hdw;
2507 }
Mike Iselyd8554972006-06-26 20:58:46 -03002508 for (idx = 0; idx < 32; idx++) {
2509 hdw->std_mask_ptrs[idx] = hdw->std_mask_names[idx];
2510 }
Mike Iselyc05c0462006-06-25 20:04:25 -03002511 for (idx = 0; idx < CTRLDEF_COUNT; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002512 cptr = hdw->controls + idx;
Mike Iselyd8554972006-06-26 20:58:46 -03002513 cptr->info = control_defs+idx;
2514 }
Mike Iselydbc40a02008-04-22 14:45:39 -03002515
2516 /* Ensure that default input choice is a valid one. */
2517 m = hdw->input_avail_mask;
2518 if (m) for (idx = 0; idx < (sizeof(m) << 3); idx++) {
2519 if (!((1 << idx) & m)) continue;
2520 hdw->input_val = idx;
2521 break;
2522 }
2523
Mike Iselyb30d2442006-06-25 20:05:01 -03002524 /* Define and configure additional controls from cx2341x module. */
Mike Iselyca545f72007-01-20 00:37:11 -03002525 hdw->mpeg_ctrl_info = kzalloc(
Mike Iselyb30d2442006-06-25 20:05:01 -03002526 sizeof(*(hdw->mpeg_ctrl_info)) * MPEGDEF_COUNT, GFP_KERNEL);
2527 if (!hdw->mpeg_ctrl_info) goto fail;
Mike Iselyb30d2442006-06-25 20:05:01 -03002528 for (idx = 0; idx < MPEGDEF_COUNT; idx++) {
2529 cptr = hdw->controls + idx + CTRLDEF_COUNT;
2530 ciptr = &(hdw->mpeg_ctrl_info[idx].info);
2531 ciptr->desc = hdw->mpeg_ctrl_info[idx].desc;
2532 ciptr->name = mpeg_ids[idx].strid;
2533 ciptr->v4l_id = mpeg_ids[idx].id;
2534 ciptr->skip_init = !0;
2535 ciptr->get_value = ctrl_cx2341x_get;
2536 ciptr->get_v4lflags = ctrl_cx2341x_getv4lflags;
2537 ciptr->is_dirty = ctrl_cx2341x_is_dirty;
2538 if (!idx) ciptr->clear_dirty = ctrl_cx2341x_clear_dirty;
2539 qctrl.id = ciptr->v4l_id;
2540 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl);
2541 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) {
2542 ciptr->set_value = ctrl_cx2341x_set;
2543 }
2544 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name,
2545 PVR2_CTLD_INFO_DESC_SIZE);
2546 hdw->mpeg_ctrl_info[idx].desc[PVR2_CTLD_INFO_DESC_SIZE-1] = 0;
2547 ciptr->default_value = qctrl.default_value;
2548 switch (qctrl.type) {
2549 default:
2550 case V4L2_CTRL_TYPE_INTEGER:
2551 ciptr->type = pvr2_ctl_int;
2552 ciptr->def.type_int.min_value = qctrl.minimum;
2553 ciptr->def.type_int.max_value = qctrl.maximum;
2554 break;
2555 case V4L2_CTRL_TYPE_BOOLEAN:
2556 ciptr->type = pvr2_ctl_bool;
2557 break;
2558 case V4L2_CTRL_TYPE_MENU:
2559 ciptr->type = pvr2_ctl_enum;
2560 ciptr->def.type_enum.value_names =
Hans Verkuile0e31cd2008-06-22 12:03:28 -03002561 cx2341x_ctrl_get_menu(&hdw->enc_ctl_state,
2562 ciptr->v4l_id);
Mike Iselyb30d2442006-06-25 20:05:01 -03002563 for (cnt1 = 0;
2564 ciptr->def.type_enum.value_names[cnt1] != NULL;
2565 cnt1++) { }
2566 ciptr->def.type_enum.count = cnt1;
2567 break;
2568 }
2569 cptr->info = ciptr;
2570 }
Mike Iselyd8554972006-06-26 20:58:46 -03002571
2572 // Initialize video standard enum dynamic control
2573 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDENUM);
2574 if (cptr) {
2575 memcpy(&hdw->std_info_enum,cptr->info,
2576 sizeof(hdw->std_info_enum));
2577 cptr->info = &hdw->std_info_enum;
2578
2579 }
2580 // Initialize control data regarding video standard masks
2581 valid_std_mask = pvr2_std_get_usable();
2582 for (idx = 0; idx < 32; idx++) {
2583 if (!(valid_std_mask & (1 << idx))) continue;
2584 cnt1 = pvr2_std_id_to_str(
2585 hdw->std_mask_names[idx],
2586 sizeof(hdw->std_mask_names[idx])-1,
2587 1 << idx);
2588 hdw->std_mask_names[idx][cnt1] = 0;
2589 }
2590 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDAVAIL);
2591 if (cptr) {
2592 memcpy(&hdw->std_info_avail,cptr->info,
2593 sizeof(hdw->std_info_avail));
2594 cptr->info = &hdw->std_info_avail;
2595 hdw->std_info_avail.def.type_bitmask.bit_names =
2596 hdw->std_mask_ptrs;
2597 hdw->std_info_avail.def.type_bitmask.valid_bits =
2598 valid_std_mask;
2599 }
2600 cptr = pvr2_hdw_get_ctrl_by_id(hdw,PVR2_CID_STDCUR);
2601 if (cptr) {
2602 memcpy(&hdw->std_info_cur,cptr->info,
2603 sizeof(hdw->std_info_cur));
2604 cptr->info = &hdw->std_info_cur;
2605 hdw->std_info_cur.def.type_bitmask.bit_names =
2606 hdw->std_mask_ptrs;
2607 hdw->std_info_avail.def.type_bitmask.valid_bits =
2608 valid_std_mask;
2609 }
2610
Mike Isely432907f2008-08-31 21:02:20 -03002611 hdw->cropcap_stale = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002612 hdw->eeprom_addr = -1;
2613 hdw->unit_number = -1;
Mike Isely80793842006-12-27 23:12:28 -03002614 hdw->v4l_minor_number_video = -1;
2615 hdw->v4l_minor_number_vbi = -1;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03002616 hdw->v4l_minor_number_radio = -1;
Mike Iselyd8554972006-06-26 20:58:46 -03002617 hdw->ctl_write_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2618 if (!hdw->ctl_write_buffer) goto fail;
2619 hdw->ctl_read_buffer = kmalloc(PVR2_CTL_BUFFSIZE,GFP_KERNEL);
2620 if (!hdw->ctl_read_buffer) goto fail;
2621 hdw->ctl_write_urb = usb_alloc_urb(0,GFP_KERNEL);
2622 if (!hdw->ctl_write_urb) goto fail;
2623 hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
2624 if (!hdw->ctl_read_urb) goto fail;
2625
Janne Grunau70ad6382009-04-01 08:46:50 -03002626 if (v4l2_device_register(&intf->dev, &hdw->v4l2_dev) != 0) {
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002627 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
2628 "Error registering with v4l core, giving up");
2629 goto fail;
2630 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002631 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002632 for (idx = 0; idx < PVR_NUM; idx++) {
2633 if (unit_pointers[idx]) continue;
2634 hdw->unit_number = idx;
2635 unit_pointers[idx] = hdw;
2636 break;
2637 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002638 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mike Iselyd8554972006-06-26 20:58:46 -03002639
2640 cnt1 = 0;
2641 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2");
2642 cnt1 += cnt2;
2643 if (hdw->unit_number >= 0) {
2644 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c",
2645 ('a' + hdw->unit_number));
2646 cnt1 += cnt2;
2647 }
2648 if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1;
2649 hdw->name[cnt1] = 0;
2650
Mike Isely681c7392007-11-26 01:48:52 -03002651 hdw->workqueue = create_singlethread_workqueue(hdw->name);
2652 INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll);
Mike Isely681c7392007-11-26 01:48:52 -03002653
Mike Iselyd8554972006-06-26 20:58:46 -03002654 pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s",
2655 hdw->unit_number,hdw->name);
2656
2657 hdw->tuner_type = -1;
2658 hdw->flag_ok = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03002659
2660 hdw->usb_intf = intf;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002661 hdw->usb_dev = usb_dev;
Mike Iselyd8554972006-06-26 20:58:46 -03002662
Mike Isely87e34952009-01-23 01:20:24 -03002663 usb_make_path(hdw->usb_dev, hdw->bus_info, sizeof(hdw->bus_info));
Mike Isely31a18542007-04-08 01:11:47 -03002664
Mike Iselyd8554972006-06-26 20:58:46 -03002665 ifnum = hdw->usb_intf->cur_altsetting->desc.bInterfaceNumber;
2666 usb_set_interface(hdw->usb_dev,ifnum,0);
2667
2668 mutex_init(&hdw->ctl_lock_mutex);
2669 mutex_init(&hdw->big_lock_mutex);
2670
2671 return hdw;
2672 fail:
2673 if (hdw) {
Mike Isely681c7392007-11-26 01:48:52 -03002674 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002675 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03002676 del_timer_sync(&hdw->encoder_wait_timer);
2677 if (hdw->workqueue) {
2678 flush_workqueue(hdw->workqueue);
2679 destroy_workqueue(hdw->workqueue);
2680 hdw->workqueue = NULL;
2681 }
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01002682 usb_free_urb(hdw->ctl_read_urb);
2683 usb_free_urb(hdw->ctl_write_urb);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002684 kfree(hdw->ctl_read_buffer);
2685 kfree(hdw->ctl_write_buffer);
2686 kfree(hdw->controls);
2687 kfree(hdw->mpeg_ctrl_info);
Mike Isely681c7392007-11-26 01:48:52 -03002688 kfree(hdw->std_defs);
2689 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002690 kfree(hdw);
2691 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002692 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002693}
2694
2695
2696/* Remove _all_ associations between this driver and the underlying USB
2697 layer. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03002698static void pvr2_hdw_remove_usb_stuff(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002699{
2700 if (hdw->flag_disconnected) return;
2701 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_remove_usb_stuff: hdw=%p",hdw);
2702 if (hdw->ctl_read_urb) {
2703 usb_kill_urb(hdw->ctl_read_urb);
2704 usb_free_urb(hdw->ctl_read_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002705 hdw->ctl_read_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002706 }
2707 if (hdw->ctl_write_urb) {
2708 usb_kill_urb(hdw->ctl_write_urb);
2709 usb_free_urb(hdw->ctl_write_urb);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002710 hdw->ctl_write_urb = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002711 }
2712 if (hdw->ctl_read_buffer) {
2713 kfree(hdw->ctl_read_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002714 hdw->ctl_read_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002715 }
2716 if (hdw->ctl_write_buffer) {
2717 kfree(hdw->ctl_write_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002718 hdw->ctl_write_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002719 }
Mike Iselyd8554972006-06-26 20:58:46 -03002720 hdw->flag_disconnected = !0;
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002721 /* If we don't do this, then there will be a dangling struct device
2722 reference to our disappearing device persisting inside the V4L
2723 core... */
Mike Iselydc070bc2009-03-25 00:30:45 -03002724 v4l2_device_disconnect(&hdw->v4l2_dev);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002725 hdw->usb_dev = NULL;
2726 hdw->usb_intf = NULL;
Mike Isely681c7392007-11-26 01:48:52 -03002727 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03002728}
2729
2730
2731/* Destroy hardware interaction structure */
2732void pvr2_hdw_destroy(struct pvr2_hdw *hdw)
2733{
Mike Isely401c27c2007-09-08 22:11:46 -03002734 if (!hdw) return;
Mike Iselyd8554972006-06-26 20:58:46 -03002735 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_destroy: hdw=%p",hdw);
Mike Isely681c7392007-11-26 01:48:52 -03002736 if (hdw->workqueue) {
2737 flush_workqueue(hdw->workqueue);
2738 destroy_workqueue(hdw->workqueue);
2739 hdw->workqueue = NULL;
2740 }
Mike Isely8f591002008-04-22 14:45:45 -03002741 del_timer_sync(&hdw->quiescent_timer);
Mike Iselyd913d632008-04-06 04:04:35 -03002742 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely8f591002008-04-22 14:45:45 -03002743 del_timer_sync(&hdw->encoder_wait_timer);
Mike Iselyd8554972006-06-26 20:58:46 -03002744 if (hdw->fw_buffer) {
2745 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002746 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002747 }
2748 if (hdw->vid_stream) {
2749 pvr2_stream_destroy(hdw->vid_stream);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002750 hdw->vid_stream = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002751 }
Mike Iselyd8554972006-06-26 20:58:46 -03002752 pvr2_i2c_core_done(hdw);
Mike Iselyb72b7bf2009-03-06 23:20:31 -03002753 v4l2_device_unregister(&hdw->v4l2_dev);
Mike Iselyd8554972006-06-26 20:58:46 -03002754 pvr2_hdw_remove_usb_stuff(hdw);
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002755 mutex_lock(&pvr2_unit_mtx); do {
Mike Iselyd8554972006-06-26 20:58:46 -03002756 if ((hdw->unit_number >= 0) &&
2757 (hdw->unit_number < PVR_NUM) &&
2758 (unit_pointers[hdw->unit_number] == hdw)) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002759 unit_pointers[hdw->unit_number] = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002760 }
Matthias Kaehlcke8df0c872007-04-28 20:00:18 -03002761 } while (0); mutex_unlock(&pvr2_unit_mtx);
Mariusz Kozlowski22071a42007-01-07 10:33:39 -03002762 kfree(hdw->controls);
2763 kfree(hdw->mpeg_ctrl_info);
2764 kfree(hdw->std_defs);
2765 kfree(hdw->std_enum_names);
Mike Iselyd8554972006-06-26 20:58:46 -03002766 kfree(hdw);
2767}
2768
2769
Mike Iselyd8554972006-06-26 20:58:46 -03002770int pvr2_hdw_dev_ok(struct pvr2_hdw *hdw)
2771{
2772 return (hdw && hdw->flag_ok);
2773}
2774
2775
2776/* Called when hardware has been unplugged */
2777void pvr2_hdw_disconnect(struct pvr2_hdw *hdw)
2778{
2779 pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw);
2780 LOCK_TAKE(hdw->big_lock);
2781 LOCK_TAKE(hdw->ctl_lock);
2782 pvr2_hdw_remove_usb_stuff(hdw);
2783 LOCK_GIVE(hdw->ctl_lock);
2784 LOCK_GIVE(hdw->big_lock);
2785}
2786
2787
2788// Attempt to autoselect an appropriate value for std_enum_cur given
2789// whatever is currently in std_mask_cur
Adrian Bunk07e337e2006-06-30 11:30:20 -03002790static void pvr2_hdw_internal_find_stdenum(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002791{
2792 unsigned int idx;
2793 for (idx = 1; idx < hdw->std_enum_cnt; idx++) {
2794 if (hdw->std_defs[idx-1].id == hdw->std_mask_cur) {
2795 hdw->std_enum_cur = idx;
2796 return;
2797 }
2798 }
2799 hdw->std_enum_cur = 0;
2800}
2801
2802
2803// Calculate correct set of enumerated standards based on currently known
2804// set of available standards bits.
Adrian Bunk07e337e2006-06-30 11:30:20 -03002805static void pvr2_hdw_internal_set_std_avail(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03002806{
2807 struct v4l2_standard *newstd;
2808 unsigned int std_cnt;
2809 unsigned int idx;
2810
2811 newstd = pvr2_std_create_enum(&std_cnt,hdw->std_mask_avail);
2812
2813 if (hdw->std_defs) {
2814 kfree(hdw->std_defs);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002815 hdw->std_defs = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002816 }
2817 hdw->std_enum_cnt = 0;
2818 if (hdw->std_enum_names) {
2819 kfree(hdw->std_enum_names);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002820 hdw->std_enum_names = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002821 }
2822
2823 if (!std_cnt) {
2824 pvr2_trace(
2825 PVR2_TRACE_ERROR_LEGS,
2826 "WARNING: Failed to identify any viable standards");
2827 }
2828 hdw->std_enum_names = kmalloc(sizeof(char *)*(std_cnt+1),GFP_KERNEL);
2829 hdw->std_enum_names[0] = "none";
2830 for (idx = 0; idx < std_cnt; idx++) {
2831 hdw->std_enum_names[idx+1] =
2832 newstd[idx].name;
2833 }
2834 // Set up the dynamic control for this standard
2835 hdw->std_info_enum.def.type_enum.value_names = hdw->std_enum_names;
2836 hdw->std_info_enum.def.type_enum.count = std_cnt+1;
2837 hdw->std_defs = newstd;
2838 hdw->std_enum_cnt = std_cnt+1;
2839 hdw->std_enum_cur = 0;
2840 hdw->std_info_cur.def.type_bitmask.valid_bits = hdw->std_mask_avail;
2841}
2842
2843
2844int pvr2_hdw_get_stdenum_value(struct pvr2_hdw *hdw,
2845 struct v4l2_standard *std,
2846 unsigned int idx)
2847{
2848 int ret = -EINVAL;
2849 if (!idx) return ret;
2850 LOCK_TAKE(hdw->big_lock); do {
2851 if (idx >= hdw->std_enum_cnt) break;
2852 idx--;
2853 memcpy(std,hdw->std_defs+idx,sizeof(*std));
2854 ret = 0;
2855 } while (0); LOCK_GIVE(hdw->big_lock);
2856 return ret;
2857}
2858
2859
2860/* Get the number of defined controls */
2861unsigned int pvr2_hdw_get_ctrl_count(struct pvr2_hdw *hdw)
2862{
Mike Iselyc05c0462006-06-25 20:04:25 -03002863 return hdw->control_cnt;
Mike Iselyd8554972006-06-26 20:58:46 -03002864}
2865
2866
2867/* Retrieve a control handle given its index (0..count-1) */
2868struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_index(struct pvr2_hdw *hdw,
2869 unsigned int idx)
2870{
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002871 if (idx >= hdw->control_cnt) return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002872 return hdw->controls + idx;
2873}
2874
2875
2876/* Retrieve a control handle given its index (0..count-1) */
2877struct pvr2_ctrl *pvr2_hdw_get_ctrl_by_id(struct pvr2_hdw *hdw,
2878 unsigned int ctl_id)
2879{
2880 struct pvr2_ctrl *cptr;
2881 unsigned int idx;
2882 int i;
2883
2884 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002885 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002886 cptr = hdw->controls + idx;
2887 i = cptr->info->internal_id;
2888 if (i && (i == ctl_id)) return cptr;
2889 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002890 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002891}
2892
2893
Mike Iselya761f432006-06-25 20:04:44 -03002894/* Given a V4L ID, retrieve the control structure associated with it. */
Mike Iselyd8554972006-06-26 20:58:46 -03002895struct pvr2_ctrl *pvr2_hdw_get_ctrl_v4l(struct pvr2_hdw *hdw,unsigned int ctl_id)
2896{
2897 struct pvr2_ctrl *cptr;
2898 unsigned int idx;
2899 int i;
2900
2901 /* This could be made a lot more efficient, but for now... */
Mike Iselyc05c0462006-06-25 20:04:25 -03002902 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03002903 cptr = hdw->controls + idx;
2904 i = cptr->info->v4l_id;
2905 if (i && (i == ctl_id)) return cptr;
2906 }
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002907 return NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03002908}
2909
2910
Mike Iselya761f432006-06-25 20:04:44 -03002911/* Given a V4L ID for its immediate predecessor, retrieve the control
2912 structure associated with it. */
2913struct pvr2_ctrl *pvr2_hdw_get_ctrl_nextv4l(struct pvr2_hdw *hdw,
2914 unsigned int ctl_id)
2915{
2916 struct pvr2_ctrl *cptr,*cp2;
2917 unsigned int idx;
2918 int i;
2919
2920 /* This could be made a lot more efficient, but for now... */
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002921 cp2 = NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002922 for (idx = 0; idx < hdw->control_cnt; idx++) {
2923 cptr = hdw->controls + idx;
2924 i = cptr->info->v4l_id;
2925 if (!i) continue;
2926 if (i <= ctl_id) continue;
2927 if (cp2 && (cp2->info->v4l_id < i)) continue;
2928 cp2 = cptr;
2929 }
2930 return cp2;
Mike Iselya0fd1cb2006-06-30 11:35:28 -03002931 return NULL;
Mike Iselya761f432006-06-25 20:04:44 -03002932}
2933
2934
Mike Iselyd8554972006-06-26 20:58:46 -03002935static const char *get_ctrl_typename(enum pvr2_ctl_type tp)
2936{
2937 switch (tp) {
2938 case pvr2_ctl_int: return "integer";
2939 case pvr2_ctl_enum: return "enum";
Mike Isely33213962006-06-25 20:04:40 -03002940 case pvr2_ctl_bool: return "boolean";
Mike Iselyd8554972006-06-26 20:58:46 -03002941 case pvr2_ctl_bitmask: return "bitmask";
2942 }
2943 return "";
2944}
2945
2946
Mike Isely2641df32009-03-07 00:13:25 -03002947static void pvr2_subdev_set_control(struct pvr2_hdw *hdw, int id,
2948 const char *name, int val)
2949{
2950 struct v4l2_control ctrl;
2951 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 %s=%d", name, val);
2952 memset(&ctrl, 0, sizeof(ctrl));
2953 ctrl.id = id;
2954 ctrl.value = val;
2955 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, s_ctrl, &ctrl);
2956}
2957
2958#define PVR2_SUBDEV_SET_CONTROL(hdw, id, lab) \
Mike Isely27764722009-03-07 01:57:25 -03002959 if ((hdw)->lab##_dirty || (hdw)->force_dirty) { \
Mike Isely2641df32009-03-07 00:13:25 -03002960 pvr2_subdev_set_control(hdw, id, #lab, (hdw)->lab##_val); \
2961 }
2962
Mike Isely5ceaad12009-03-07 00:01:20 -03002963/* Execute whatever commands are required to update the state of all the
Mike Isely2641df32009-03-07 00:13:25 -03002964 sub-devices so that they match our current control values. */
Mike Isely5ceaad12009-03-07 00:01:20 -03002965static void pvr2_subdev_update(struct pvr2_hdw *hdw)
2966{
Mike Iselyedb9dcb2009-03-07 00:37:10 -03002967 struct v4l2_subdev *sd;
2968 unsigned int id;
2969 pvr2_subdev_update_func fp;
2970
Mike Isely75212a02009-03-07 01:48:42 -03002971 pvr2_trace(PVR2_TRACE_CHIPS, "subdev update...");
2972
Mike Isely27764722009-03-07 01:57:25 -03002973 if (hdw->tuner_updated || hdw->force_dirty) {
Mike Isely75212a02009-03-07 01:48:42 -03002974 struct tuner_setup setup;
2975 pvr2_trace(PVR2_TRACE_CHIPS, "subdev tuner set_type(%d)",
2976 hdw->tuner_type);
2977 if (((int)(hdw->tuner_type)) >= 0) {
Mike Iselyfcd62cf2009-04-01 01:55:26 -03002978 memset(&setup, 0, sizeof(setup));
Mike Isely75212a02009-03-07 01:48:42 -03002979 setup.addr = ADDR_UNSET;
2980 setup.type = hdw->tuner_type;
2981 setup.mode_mask = T_RADIO | T_ANALOG_TV;
2982 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2983 tuner, s_type_addr, &setup);
2984 }
2985 }
2986
Mike Isely27764722009-03-07 01:57:25 -03002987 if (hdw->input_dirty || hdw->std_dirty || hdw->force_dirty) {
Mike Iselyb4818802009-03-07 01:46:17 -03002988 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_standard");
Mike Isely2641df32009-03-07 00:13:25 -03002989 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
2990 v4l2_device_call_all(&hdw->v4l2_dev, 0,
2991 tuner, s_radio);
2992 } else {
2993 v4l2_std_id vs;
2994 vs = hdw->std_mask_cur;
2995 v4l2_device_call_all(&hdw->v4l2_dev, 0,
Hans Verkuilf41737e2009-04-01 03:52:39 -03002996 core, s_std, vs);
Mike Iselya6862da2009-06-20 14:50:14 -03002997 pvr2_hdw_cx25840_vbi_hack(hdw);
Mike Isely2641df32009-03-07 00:13:25 -03002998 }
2999 hdw->tuner_signal_stale = !0;
3000 hdw->cropcap_stale = !0;
3001 }
3002
3003 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_BRIGHTNESS, brightness);
3004 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_CONTRAST, contrast);
3005 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_SATURATION, saturation);
3006 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_HUE, hue);
3007 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_MUTE, mute);
3008 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_VOLUME, volume);
3009 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BALANCE, balance);
3010 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_BASS, bass);
3011 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_AUDIO_TREBLE, treble);
3012
Mike Isely27764722009-03-07 01:57:25 -03003013 if (hdw->input_dirty || hdw->audiomode_dirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03003014 struct v4l2_tuner vt;
3015 memset(&vt, 0, sizeof(vt));
3016 vt.audmode = hdw->audiomode_val;
3017 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, s_tuner, &vt);
3018 }
3019
Mike Isely27764722009-03-07 01:57:25 -03003020 if (hdw->freqDirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03003021 unsigned long fv;
3022 struct v4l2_frequency freq;
3023 fv = pvr2_hdw_get_cur_freq(hdw);
3024 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_freq(%lu)", fv);
3025 if (hdw->tuner_signal_stale) pvr2_hdw_status_poll(hdw);
3026 memset(&freq, 0, sizeof(freq));
3027 if (hdw->tuner_signal_info.capability & V4L2_TUNER_CAP_LOW) {
3028 /* ((fv * 1000) / 62500) */
3029 freq.frequency = (fv * 2) / 125;
3030 } else {
3031 freq.frequency = fv / 62500;
3032 }
3033 /* tuner-core currently doesn't seem to care about this, but
3034 let's set it anyway for completeness. */
3035 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
3036 freq.type = V4L2_TUNER_RADIO;
3037 } else {
3038 freq.type = V4L2_TUNER_ANALOG_TV;
3039 }
3040 freq.tuner = 0;
3041 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner,
3042 s_frequency, &freq);
3043 }
3044
Mike Isely27764722009-03-07 01:57:25 -03003045 if (hdw->res_hor_dirty || hdw->res_ver_dirty || hdw->force_dirty) {
Mike Isely2641df32009-03-07 00:13:25 -03003046 struct v4l2_format fmt;
3047 memset(&fmt, 0, sizeof(fmt));
3048 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3049 fmt.fmt.pix.width = hdw->res_hor_val;
3050 fmt.fmt.pix.height = hdw->res_ver_val;
Mike Isely7dfdf1e2009-03-07 02:11:12 -03003051 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_size(%dx%d)",
Mike Isely2641df32009-03-07 00:13:25 -03003052 fmt.fmt.pix.width, fmt.fmt.pix.height);
3053 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_fmt, &fmt);
3054 }
3055
Mike Isely27764722009-03-07 01:57:25 -03003056 if (hdw->srate_dirty || hdw->force_dirty) {
Mike Isely01c59df2009-03-07 00:48:09 -03003057 u32 val;
3058 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_audio %d",
3059 hdw->srate_val);
3060 switch (hdw->srate_val) {
3061 default:
3062 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000:
3063 val = 48000;
3064 break;
3065 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_44100:
3066 val = 44100;
3067 break;
3068 case V4L2_MPEG_AUDIO_SAMPLING_FREQ_32000:
3069 val = 32000;
3070 break;
3071 }
3072 v4l2_device_call_all(&hdw->v4l2_dev, 0,
3073 audio, s_clock_freq, val);
3074 }
3075
Mike Isely2641df32009-03-07 00:13:25 -03003076 /* Unable to set crop parameters; there is apparently no equivalent
3077 for VIDIOC_S_CROP */
3078
Mike Iselyedb9dcb2009-03-07 00:37:10 -03003079 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
3080 id = sd->grp_id;
3081 if (id >= ARRAY_SIZE(pvr2_module_update_functions)) continue;
3082 fp = pvr2_module_update_functions[id];
3083 if (!fp) continue;
3084 (*fp)(hdw, sd);
3085 }
Mike Isely2641df32009-03-07 00:13:25 -03003086
Mike Isely27764722009-03-07 01:57:25 -03003087 if (hdw->tuner_signal_stale || hdw->cropcap_stale) {
Mike Isely2641df32009-03-07 00:13:25 -03003088 pvr2_hdw_status_poll(hdw);
3089 }
Mike Isely5ceaad12009-03-07 00:01:20 -03003090}
3091
3092
Mike Isely681c7392007-11-26 01:48:52 -03003093/* Figure out if we need to commit control changes. If so, mark internal
3094 state flags to indicate this fact and return true. Otherwise do nothing
3095 else and return false. */
3096static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003097{
Mike Iselyd8554972006-06-26 20:58:46 -03003098 unsigned int idx;
3099 struct pvr2_ctrl *cptr;
3100 int value;
Mike Isely27764722009-03-07 01:57:25 -03003101 int commit_flag = hdw->force_dirty;
Mike Iselyd8554972006-06-26 20:58:46 -03003102 char buf[100];
3103 unsigned int bcnt,ccnt;
3104
Mike Iselyc05c0462006-06-25 20:04:25 -03003105 for (idx = 0; idx < hdw->control_cnt; idx++) {
Mike Iselyd8554972006-06-26 20:58:46 -03003106 cptr = hdw->controls + idx;
Al Viro5fa12472008-03-29 03:07:38 +00003107 if (!cptr->info->is_dirty) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003108 if (!cptr->info->is_dirty(cptr)) continue;
Mike Iselyfe23a282007-01-20 00:10:55 -03003109 commit_flag = !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003110
Mike Iselyfe23a282007-01-20 00:10:55 -03003111 if (!(pvrusb2_debug & PVR2_TRACE_CTL)) continue;
Mike Iselyd8554972006-06-26 20:58:46 -03003112 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
3113 cptr->info->name);
3114 value = 0;
3115 cptr->info->get_value(cptr,&value);
3116 pvr2_ctrl_value_to_sym_internal(cptr,~0,value,
3117 buf+bcnt,
3118 sizeof(buf)-bcnt,&ccnt);
3119 bcnt += ccnt;
3120 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
3121 get_ctrl_typename(cptr->info->type));
3122 pvr2_trace(PVR2_TRACE_CTL,
3123 "/*--TRACE_COMMIT--*/ %.*s",
3124 bcnt,buf);
3125 }
3126
3127 if (!commit_flag) {
3128 /* Nothing has changed */
3129 return 0;
3130 }
3131
Mike Isely681c7392007-11-26 01:48:52 -03003132 hdw->state_pipeline_config = 0;
3133 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3134 pvr2_hdw_state_sched(hdw);
3135
3136 return !0;
3137}
3138
3139
3140/* Perform all operations needed to commit all control changes. This must
3141 be performed in synchronization with the pipeline state and is thus
3142 expected to be called as part of the driver's worker thread. Return
3143 true if commit successful, otherwise return false to indicate that
3144 commit isn't possible at this time. */
3145static int pvr2_hdw_commit_execute(struct pvr2_hdw *hdw)
3146{
3147 unsigned int idx;
3148 struct pvr2_ctrl *cptr;
3149 int disruptive_change;
3150
Mike Iselyab062fe2008-06-30 03:32:35 -03003151 /* Handle some required side effects when the video standard is
3152 changed.... */
Mike Iselyd8554972006-06-26 20:58:46 -03003153 if (hdw->std_dirty) {
Mike Iselyd8554972006-06-26 20:58:46 -03003154 int nvres;
Mike Isely00528d92008-06-30 03:35:52 -03003155 int gop_size;
Mike Iselyd8554972006-06-26 20:58:46 -03003156 if (hdw->std_mask_cur & V4L2_STD_525_60) {
3157 nvres = 480;
Mike Isely00528d92008-06-30 03:35:52 -03003158 gop_size = 15;
Mike Iselyd8554972006-06-26 20:58:46 -03003159 } else {
3160 nvres = 576;
Mike Isely00528d92008-06-30 03:35:52 -03003161 gop_size = 12;
Mike Iselyd8554972006-06-26 20:58:46 -03003162 }
Mike Isely00528d92008-06-30 03:35:52 -03003163 /* Rewrite the vertical resolution to be appropriate to the
3164 video standard that has been selected. */
Mike Iselyd8554972006-06-26 20:58:46 -03003165 if (nvres != hdw->res_ver_val) {
3166 hdw->res_ver_val = nvres;
3167 hdw->res_ver_dirty = !0;
3168 }
Mike Isely00528d92008-06-30 03:35:52 -03003169 /* Rewrite the GOP size to be appropriate to the video
3170 standard that has been selected. */
3171 if (gop_size != hdw->enc_ctl_state.video_gop_size) {
3172 struct v4l2_ext_controls cs;
3173 struct v4l2_ext_control c1;
3174 memset(&cs, 0, sizeof(cs));
3175 memset(&c1, 0, sizeof(c1));
3176 cs.controls = &c1;
3177 cs.count = 1;
3178 c1.id = V4L2_CID_MPEG_VIDEO_GOP_SIZE;
3179 c1.value = gop_size;
3180 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,
3181 VIDIOC_S_EXT_CTRLS);
3182 }
Mike Iselyd8554972006-06-26 20:58:46 -03003183 }
3184
Mike Isely38d9a2c2008-03-28 05:30:48 -03003185 if (hdw->input_dirty && hdw->state_pathway_ok &&
Mike Isely62433e32008-04-22 14:45:40 -03003186 (((hdw->input_val == PVR2_CVAL_INPUT_DTV) ?
3187 PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG) !=
3188 hdw->pathway_state)) {
3189 /* Change of mode being asked for... */
3190 hdw->state_pathway_ok = 0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03003191 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03003192 }
3193 if (!hdw->state_pathway_ok) {
3194 /* Can't commit anything until pathway is ok. */
3195 return 0;
3196 }
vdb128@picaros.orge784bfb2008-08-30 18:26:39 -03003197 /* The broadcast decoder can only scale down, so if
3198 * res_*_dirty && crop window < output format ==> enlarge crop.
3199 *
3200 * The mpeg encoder receives fields of res_hor_val dots and
3201 * res_ver_val halflines. Limits: hor<=720, ver<=576.
3202 */
3203 if (hdw->res_hor_dirty && hdw->cropw_val < hdw->res_hor_val) {
3204 hdw->cropw_val = hdw->res_hor_val;
3205 hdw->cropw_dirty = !0;
3206 } else if (hdw->cropw_dirty) {
3207 hdw->res_hor_dirty = !0; /* must rescale */
3208 hdw->res_hor_val = min(720, hdw->cropw_val);
3209 }
3210 if (hdw->res_ver_dirty && hdw->croph_val < hdw->res_ver_val) {
3211 hdw->croph_val = hdw->res_ver_val;
3212 hdw->croph_dirty = !0;
3213 } else if (hdw->croph_dirty) {
3214 int nvres = hdw->std_mask_cur & V4L2_STD_525_60 ? 480 : 576;
3215 hdw->res_ver_dirty = !0;
3216 hdw->res_ver_val = min(nvres, hdw->croph_val);
3217 }
3218
Mike Isely681c7392007-11-26 01:48:52 -03003219 /* If any of the below has changed, then we can't do the update
3220 while the pipeline is running. Pipeline must be paused first
3221 and decoder -> encoder connection be made quiescent before we
3222 can proceed. */
3223 disruptive_change =
3224 (hdw->std_dirty ||
3225 hdw->enc_unsafe_stale ||
3226 hdw->srate_dirty ||
3227 hdw->res_ver_dirty ||
3228 hdw->res_hor_dirty ||
Mike Isely755879c2008-08-31 20:50:59 -03003229 hdw->cropw_dirty ||
3230 hdw->croph_dirty ||
Mike Isely681c7392007-11-26 01:48:52 -03003231 hdw->input_dirty ||
3232 (hdw->active_stream_type != hdw->desired_stream_type));
3233 if (disruptive_change && !hdw->state_pipeline_idle) {
3234 /* Pipeline is not idle; we can't proceed. Arrange to
3235 cause pipeline to stop so that we can try this again
3236 later.... */
3237 hdw->state_pipeline_pause = !0;
3238 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003239 }
3240
Mike Iselyb30d2442006-06-25 20:05:01 -03003241 if (hdw->srate_dirty) {
3242 /* Write new sample rate into control structure since
3243 * the master copy is stale. We must track srate
3244 * separate from the mpeg control structure because
3245 * other logic also uses this value. */
3246 struct v4l2_ext_controls cs;
3247 struct v4l2_ext_control c1;
3248 memset(&cs,0,sizeof(cs));
3249 memset(&c1,0,sizeof(c1));
3250 cs.controls = &c1;
3251 cs.count = 1;
3252 c1.id = V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ;
3253 c1.value = hdw->srate_val;
Hans Verkuil01f1e442007-08-21 18:32:42 -03003254 cx2341x_ext_ctrls(&hdw->enc_ctl_state, 0, &cs,VIDIOC_S_EXT_CTRLS);
Mike Iselyb30d2442006-06-25 20:05:01 -03003255 }
Mike Iselyc05c0462006-06-25 20:04:25 -03003256
Mike Isely681c7392007-11-26 01:48:52 -03003257 if (hdw->active_stream_type != hdw->desired_stream_type) {
3258 /* Handle any side effects of stream config here */
3259 hdw->active_stream_type = hdw->desired_stream_type;
3260 }
3261
Mike Isely1df59f02008-04-21 03:50:39 -03003262 if (hdw->hdw_desc->signal_routing_scheme ==
3263 PVR2_ROUTING_SCHEME_GOTVIEW) {
3264 u32 b;
3265 /* Handle GOTVIEW audio switching */
3266 pvr2_hdw_gpio_get_out(hdw,&b);
3267 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
3268 /* Set GPIO 11 */
3269 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),~0);
3270 } else {
3271 /* Clear GPIO 11 */
3272 pvr2_hdw_gpio_chg_out(hdw,(1 << 11),0);
3273 }
3274 }
3275
Mike Iselye68a6192009-03-07 01:45:10 -03003276 /* Check and update state for all sub-devices. */
3277 pvr2_subdev_update(hdw);
3278
Mike Isely75212a02009-03-07 01:48:42 -03003279 hdw->tuner_updated = 0;
Mike Isely27764722009-03-07 01:57:25 -03003280 hdw->force_dirty = 0;
Mike Isely5ceaad12009-03-07 00:01:20 -03003281 for (idx = 0; idx < hdw->control_cnt; idx++) {
3282 cptr = hdw->controls + idx;
3283 if (!cptr->info->clear_dirty) continue;
3284 cptr->info->clear_dirty(cptr);
3285 }
3286
Mike Isely62433e32008-04-22 14:45:40 -03003287 if ((hdw->pathway_state == PVR2_PATHWAY_ANALOG) &&
3288 hdw->state_encoder_run) {
3289 /* If encoder isn't running or it can't be touched, then
3290 this will get worked out later when we start the
3291 encoder. */
Mike Isely681c7392007-11-26 01:48:52 -03003292 if (pvr2_encoder_adjust(hdw) < 0) return !0;
3293 }
Mike Iselyd8554972006-06-26 20:58:46 -03003294
Mike Isely681c7392007-11-26 01:48:52 -03003295 hdw->state_pipeline_config = !0;
Mike Isely432907f2008-08-31 21:02:20 -03003296 /* Hardware state may have changed in a way to cause the cropping
3297 capabilities to have changed. So mark it stale, which will
3298 cause a later re-fetch. */
Mike Isely681c7392007-11-26 01:48:52 -03003299 trace_stbit("state_pipeline_config",hdw->state_pipeline_config);
3300 return !0;
Mike Iselyd8554972006-06-26 20:58:46 -03003301}
3302
3303
3304int pvr2_hdw_commit_ctl(struct pvr2_hdw *hdw)
3305{
Mike Isely681c7392007-11-26 01:48:52 -03003306 int fl;
3307 LOCK_TAKE(hdw->big_lock);
3308 fl = pvr2_hdw_commit_setup(hdw);
3309 LOCK_GIVE(hdw->big_lock);
3310 if (!fl) return 0;
3311 return pvr2_hdw_wait(hdw,0);
Mike Iselyd8554972006-06-26 20:58:46 -03003312}
3313
3314
Mike Isely681c7392007-11-26 01:48:52 -03003315static void pvr2_hdw_worker_poll(struct work_struct *work)
Mike Iselyd8554972006-06-26 20:58:46 -03003316{
Mike Isely681c7392007-11-26 01:48:52 -03003317 int fl = 0;
3318 struct pvr2_hdw *hdw = container_of(work,struct pvr2_hdw,workpoll);
Mike Iselyd8554972006-06-26 20:58:46 -03003319 LOCK_TAKE(hdw->big_lock); do {
Mike Isely681c7392007-11-26 01:48:52 -03003320 fl = pvr2_hdw_state_eval(hdw);
3321 } while (0); LOCK_GIVE(hdw->big_lock);
3322 if (fl && hdw->state_func) {
3323 hdw->state_func(hdw->state_data);
3324 }
3325}
3326
3327
Mike Isely681c7392007-11-26 01:48:52 -03003328static int pvr2_hdw_wait(struct pvr2_hdw *hdw,int state)
Mike Iselyd8554972006-06-26 20:58:46 -03003329{
Mike Isely681c7392007-11-26 01:48:52 -03003330 return wait_event_interruptible(
3331 hdw->state_wait_data,
3332 (hdw->state_stale == 0) &&
3333 (!state || (hdw->master_state != state)));
Mike Iselyd8554972006-06-26 20:58:46 -03003334}
3335
Mike Isely681c7392007-11-26 01:48:52 -03003336
Mike Iselyd8554972006-06-26 20:58:46 -03003337/* Return name for this driver instance */
3338const char *pvr2_hdw_get_driver_name(struct pvr2_hdw *hdw)
3339{
3340 return hdw->name;
3341}
3342
3343
Mike Isely78a47102007-11-26 01:58:20 -03003344const char *pvr2_hdw_get_desc(struct pvr2_hdw *hdw)
3345{
3346 return hdw->hdw_desc->description;
3347}
3348
3349
3350const char *pvr2_hdw_get_type(struct pvr2_hdw *hdw)
3351{
3352 return hdw->hdw_desc->shortname;
3353}
3354
3355
Mike Iselyd8554972006-06-26 20:58:46 -03003356int pvr2_hdw_is_hsm(struct pvr2_hdw *hdw)
3357{
3358 int result;
3359 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03003360 hdw->cmd_buffer[0] = FX2CMD_GET_USB_SPEED;
Mike Iselyd8554972006-06-26 20:58:46 -03003361 result = pvr2_send_request(hdw,
3362 hdw->cmd_buffer,1,
3363 hdw->cmd_buffer,1);
3364 if (result < 0) break;
3365 result = (hdw->cmd_buffer[0] != 0);
3366 } while(0); LOCK_GIVE(hdw->ctl_lock);
3367 return result;
3368}
3369
3370
Mike Isely18103c52007-01-20 00:09:47 -03003371/* Execute poll of tuner status */
3372void pvr2_hdw_execute_tuner_poll(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03003373{
Mike Iselyd8554972006-06-26 20:58:46 -03003374 LOCK_TAKE(hdw->big_lock); do {
Mike Iselya51f5002009-03-06 23:30:37 -03003375 pvr2_hdw_status_poll(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003376 } while (0); LOCK_GIVE(hdw->big_lock);
Mike Isely18103c52007-01-20 00:09:47 -03003377}
3378
3379
Mike Isely432907f2008-08-31 21:02:20 -03003380static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw)
3381{
3382 if (!hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003383 return 0;
3384 }
Mike Iselya51f5002009-03-06 23:30:37 -03003385 pvr2_hdw_status_poll(hdw);
Mike Isely432907f2008-08-31 21:02:20 -03003386 if (hdw->cropcap_stale) {
Mike Isely432907f2008-08-31 21:02:20 -03003387 return -EIO;
3388 }
3389 return 0;
3390}
3391
3392
3393/* Return information about cropping capabilities */
3394int pvr2_hdw_get_cropcap(struct pvr2_hdw *hdw, struct v4l2_cropcap *pp)
3395{
3396 int stat = 0;
3397 LOCK_TAKE(hdw->big_lock);
3398 stat = pvr2_hdw_check_cropcap(hdw);
3399 if (!stat) {
Mike Isely432907f2008-08-31 21:02:20 -03003400 memcpy(pp, &hdw->cropcap_info, sizeof(hdw->cropcap_info));
3401 }
3402 LOCK_GIVE(hdw->big_lock);
3403 return stat;
3404}
3405
3406
Mike Isely18103c52007-01-20 00:09:47 -03003407/* Return information about the tuner */
3408int pvr2_hdw_get_tuner_status(struct pvr2_hdw *hdw,struct v4l2_tuner *vtp)
3409{
3410 LOCK_TAKE(hdw->big_lock); do {
3411 if (hdw->tuner_signal_stale) {
Mike Iselya51f5002009-03-06 23:30:37 -03003412 pvr2_hdw_status_poll(hdw);
Mike Isely18103c52007-01-20 00:09:47 -03003413 }
3414 memcpy(vtp,&hdw->tuner_signal_info,sizeof(struct v4l2_tuner));
3415 } while (0); LOCK_GIVE(hdw->big_lock);
3416 return 0;
Mike Iselyd8554972006-06-26 20:58:46 -03003417}
3418
3419
3420/* Get handle to video output stream */
3421struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
3422{
3423 return hp->vid_stream;
3424}
3425
3426
3427void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
3428{
Mike Isely4f1a3e52006-06-25 20:04:31 -03003429 int nr = pvr2_hdw_get_unit_number(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003430 LOCK_TAKE(hdw->big_lock); do {
Mike Isely4f1a3e52006-06-25 20:04:31 -03003431 printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
Mike Iselyed3261a2009-03-07 00:02:33 -03003432 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, log_status);
Mike Iselyb30d2442006-06-25 20:05:01 -03003433 pvr2_trace(PVR2_TRACE_INFO,"cx2341x config:");
Hans Verkuil99eb44f2006-06-26 18:24:05 -03003434 cx2341x_log_status(&hdw->enc_ctl_state, "pvrusb2");
Mike Isely681c7392007-11-26 01:48:52 -03003435 pvr2_hdw_state_log_state(hdw);
Mike Isely4f1a3e52006-06-25 20:04:31 -03003436 printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
Mike Iselyd8554972006-06-26 20:58:46 -03003437 } while (0); LOCK_GIVE(hdw->big_lock);
3438}
3439
Mike Isely4db666c2007-09-08 22:16:27 -03003440
3441/* Grab EEPROM contents, needed for direct method. */
3442#define EEPROM_SIZE 8192
3443#define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
3444static u8 *pvr2_full_eeprom_fetch(struct pvr2_hdw *hdw)
3445{
3446 struct i2c_msg msg[2];
3447 u8 *eeprom;
3448 u8 iadd[2];
3449 u8 addr;
3450 u16 eepromSize;
3451 unsigned int offs;
3452 int ret;
3453 int mode16 = 0;
3454 unsigned pcnt,tcnt;
3455 eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
3456 if (!eeprom) {
3457 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3458 "Failed to allocate memory"
3459 " required to read eeprom");
3460 return NULL;
3461 }
3462
3463 trace_eeprom("Value for eeprom addr from controller was 0x%x",
3464 hdw->eeprom_addr);
3465 addr = hdw->eeprom_addr;
3466 /* Seems that if the high bit is set, then the *real* eeprom
3467 address is shifted right now bit position (noticed this in
3468 newer PVR USB2 hardware) */
3469 if (addr & 0x80) addr >>= 1;
3470
3471 /* FX2 documentation states that a 16bit-addressed eeprom is
3472 expected if the I2C address is an odd number (yeah, this is
3473 strange but it's what they do) */
3474 mode16 = (addr & 1);
3475 eepromSize = (mode16 ? EEPROM_SIZE : 256);
3476 trace_eeprom("Examining %d byte eeprom at location 0x%x"
3477 " using %d bit addressing",eepromSize,addr,
3478 mode16 ? 16 : 8);
3479
3480 msg[0].addr = addr;
3481 msg[0].flags = 0;
3482 msg[0].len = mode16 ? 2 : 1;
3483 msg[0].buf = iadd;
3484 msg[1].addr = addr;
3485 msg[1].flags = I2C_M_RD;
3486
3487 /* We have to do the actual eeprom data fetch ourselves, because
3488 (1) we're only fetching part of the eeprom, and (2) if we were
3489 getting the whole thing our I2C driver can't grab it in one
3490 pass - which is what tveeprom is otherwise going to attempt */
3491 memset(eeprom,0,EEPROM_SIZE);
3492 for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
3493 pcnt = 16;
3494 if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
3495 offs = tcnt + (eepromSize - EEPROM_SIZE);
3496 if (mode16) {
3497 iadd[0] = offs >> 8;
3498 iadd[1] = offs;
3499 } else {
3500 iadd[0] = offs;
3501 }
3502 msg[1].len = pcnt;
3503 msg[1].buf = eeprom+tcnt;
3504 if ((ret = i2c_transfer(&hdw->i2c_adap,
3505 msg,ARRAY_SIZE(msg))) != 2) {
3506 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3507 "eeprom fetch set offs err=%d",ret);
3508 kfree(eeprom);
3509 return NULL;
3510 }
3511 }
3512 return eeprom;
3513}
3514
3515
3516void pvr2_hdw_cpufw_set_enabled(struct pvr2_hdw *hdw,
Mike Isely568efaa2009-11-25 02:52:06 -03003517 int mode,
Mike Isely4db666c2007-09-08 22:16:27 -03003518 int enable_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003519{
3520 int ret;
3521 u16 address;
3522 unsigned int pipe;
3523 LOCK_TAKE(hdw->big_lock); do {
Al Viro5fa12472008-03-29 03:07:38 +00003524 if ((hdw->fw_buffer == NULL) == !enable_flag) break;
Mike Iselyd8554972006-06-26 20:58:46 -03003525
3526 if (!enable_flag) {
3527 pvr2_trace(PVR2_TRACE_FIRMWARE,
3528 "Cleaning up after CPU firmware fetch");
3529 kfree(hdw->fw_buffer);
Mike Iselya0fd1cb2006-06-30 11:35:28 -03003530 hdw->fw_buffer = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003531 hdw->fw_size = 0;
Mike Isely4db666c2007-09-08 22:16:27 -03003532 if (hdw->fw_cpu_flag) {
3533 /* Now release the CPU. It will disconnect
3534 and reconnect later. */
3535 pvr2_hdw_cpureset_assert(hdw,0);
3536 }
Mike Iselyd8554972006-06-26 20:58:46 -03003537 break;
3538 }
3539
Mike Isely568efaa2009-11-25 02:52:06 -03003540 hdw->fw_cpu_flag = (mode != 2);
Mike Isely4db666c2007-09-08 22:16:27 -03003541 if (hdw->fw_cpu_flag) {
Mike Isely568efaa2009-11-25 02:52:06 -03003542 hdw->fw_size = (mode == 1) ? 0x4000 : 0x2000;
Mike Isely4db666c2007-09-08 22:16:27 -03003543 pvr2_trace(PVR2_TRACE_FIRMWARE,
Mike Isely568efaa2009-11-25 02:52:06 -03003544 "Preparing to suck out CPU firmware"
3545 " (size=%u)", hdw->fw_size);
Mike Isely4db666c2007-09-08 22:16:27 -03003546 hdw->fw_buffer = kzalloc(hdw->fw_size,GFP_KERNEL);
3547 if (!hdw->fw_buffer) {
3548 hdw->fw_size = 0;
3549 break;
3550 }
3551
3552 /* We have to hold the CPU during firmware upload. */
3553 pvr2_hdw_cpureset_assert(hdw,1);
3554
3555 /* download the firmware from address 0000-1fff in 2048
3556 (=0x800) bytes chunk. */
3557
3558 pvr2_trace(PVR2_TRACE_FIRMWARE,
3559 "Grabbing CPU firmware");
3560 pipe = usb_rcvctrlpipe(hdw->usb_dev, 0);
3561 for(address = 0; address < hdw->fw_size;
3562 address += 0x800) {
3563 ret = usb_control_msg(hdw->usb_dev,pipe,
3564 0xa0,0xc0,
3565 address,0,
3566 hdw->fw_buffer+address,
3567 0x800,HZ);
3568 if (ret < 0) break;
3569 }
3570
3571 pvr2_trace(PVR2_TRACE_FIRMWARE,
3572 "Done grabbing CPU firmware");
3573 } else {
3574 pvr2_trace(PVR2_TRACE_FIRMWARE,
3575 "Sucking down EEPROM contents");
3576 hdw->fw_buffer = pvr2_full_eeprom_fetch(hdw);
3577 if (!hdw->fw_buffer) {
3578 pvr2_trace(PVR2_TRACE_FIRMWARE,
3579 "EEPROM content suck failed.");
3580 break;
3581 }
3582 hdw->fw_size = EEPROM_SIZE;
3583 pvr2_trace(PVR2_TRACE_FIRMWARE,
3584 "Done sucking down EEPROM contents");
Mike Iselyd8554972006-06-26 20:58:46 -03003585 }
3586
Mike Iselyd8554972006-06-26 20:58:46 -03003587 } while (0); LOCK_GIVE(hdw->big_lock);
3588}
3589
3590
3591/* Return true if we're in a mode for retrieval CPU firmware */
3592int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *hdw)
3593{
Al Viro5fa12472008-03-29 03:07:38 +00003594 return hdw->fw_buffer != NULL;
Mike Iselyd8554972006-06-26 20:58:46 -03003595}
3596
3597
3598int pvr2_hdw_cpufw_get(struct pvr2_hdw *hdw,unsigned int offs,
3599 char *buf,unsigned int cnt)
3600{
3601 int ret = -EINVAL;
3602 LOCK_TAKE(hdw->big_lock); do {
3603 if (!buf) break;
3604 if (!cnt) break;
3605
3606 if (!hdw->fw_buffer) {
3607 ret = -EIO;
3608 break;
3609 }
3610
3611 if (offs >= hdw->fw_size) {
3612 pvr2_trace(PVR2_TRACE_FIRMWARE,
3613 "Read firmware data offs=%d EOF",
3614 offs);
3615 ret = 0;
3616 break;
3617 }
3618
3619 if (offs + cnt > hdw->fw_size) cnt = hdw->fw_size - offs;
3620
3621 memcpy(buf,hdw->fw_buffer+offs,cnt);
3622
3623 pvr2_trace(PVR2_TRACE_FIRMWARE,
3624 "Read firmware data offs=%d cnt=%d",
3625 offs,cnt);
3626 ret = cnt;
3627 } while (0); LOCK_GIVE(hdw->big_lock);
3628
3629 return ret;
3630}
3631
3632
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003633int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003634 enum pvr2_v4l_type index)
Mike Iselyd8554972006-06-26 20:58:46 -03003635{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003636 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003637 case pvr2_v4l_type_video: return hdw->v4l_minor_number_video;
3638 case pvr2_v4l_type_vbi: return hdw->v4l_minor_number_vbi;
3639 case pvr2_v4l_type_radio: return hdw->v4l_minor_number_radio;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003640 default: return -1;
3641 }
Mike Iselyd8554972006-06-26 20:58:46 -03003642}
3643
3644
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -03003645/* Store a v4l minor device number */
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003646void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *hdw,
Mike Isely80793842006-12-27 23:12:28 -03003647 enum pvr2_v4l_type index,int v)
Mike Iselyd8554972006-06-26 20:58:46 -03003648{
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003649 switch (index) {
Mike Isely80793842006-12-27 23:12:28 -03003650 case pvr2_v4l_type_video: hdw->v4l_minor_number_video = v;
3651 case pvr2_v4l_type_vbi: hdw->v4l_minor_number_vbi = v;
3652 case pvr2_v4l_type_radio: hdw->v4l_minor_number_radio = v;
Mike Iselyfd5a75f2006-12-27 23:11:22 -03003653 default: break;
3654 }
Mike Iselyd8554972006-06-26 20:58:46 -03003655}
3656
3657
David Howells7d12e782006-10-05 14:55:46 +01003658static void pvr2_ctl_write_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003659{
3660 struct pvr2_hdw *hdw = urb->context;
3661 hdw->ctl_write_pend_flag = 0;
3662 if (hdw->ctl_read_pend_flag) return;
3663 complete(&hdw->ctl_done);
3664}
3665
3666
David Howells7d12e782006-10-05 14:55:46 +01003667static void pvr2_ctl_read_complete(struct urb *urb)
Mike Iselyd8554972006-06-26 20:58:46 -03003668{
3669 struct pvr2_hdw *hdw = urb->context;
3670 hdw->ctl_read_pend_flag = 0;
3671 if (hdw->ctl_write_pend_flag) return;
3672 complete(&hdw->ctl_done);
3673}
3674
3675
3676static void pvr2_ctl_timeout(unsigned long data)
3677{
3678 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
3679 if (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3680 hdw->ctl_timeout_flag = !0;
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003681 if (hdw->ctl_write_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003682 usb_unlink_urb(hdw->ctl_write_urb);
Mariusz Kozlowski5e55d2c2006-11-08 15:34:31 +01003683 if (hdw->ctl_read_pend_flag)
Mike Iselyd8554972006-06-26 20:58:46 -03003684 usb_unlink_urb(hdw->ctl_read_urb);
Mike Iselyd8554972006-06-26 20:58:46 -03003685 }
3686}
3687
3688
Mike Iselye61b6fc2006-07-18 22:42:18 -03003689/* Issue a command and get a response from the device. This extended
3690 version includes a probe flag (which if set means that device errors
3691 should not be logged or treated as fatal) and a timeout in jiffies.
3692 This can be used to non-lethally probe the health of endpoint 1. */
Adrian Bunk07e337e2006-06-30 11:30:20 -03003693static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
3694 unsigned int timeout,int probe_fl,
3695 void *write_data,unsigned int write_len,
3696 void *read_data,unsigned int read_len)
Mike Iselyd8554972006-06-26 20:58:46 -03003697{
3698 unsigned int idx;
3699 int status = 0;
3700 struct timer_list timer;
3701 if (!hdw->ctl_lock_held) {
3702 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3703 "Attempted to execute control transfer"
3704 " without lock!!");
3705 return -EDEADLK;
3706 }
Mike Isely681c7392007-11-26 01:48:52 -03003707 if (!hdw->flag_ok && !probe_fl) {
Mike Iselyd8554972006-06-26 20:58:46 -03003708 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3709 "Attempted to execute control transfer"
3710 " when device not ok");
3711 return -EIO;
3712 }
3713 if (!(hdw->ctl_read_urb && hdw->ctl_write_urb)) {
3714 if (!probe_fl) {
3715 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3716 "Attempted to execute control transfer"
3717 " when USB is disconnected");
3718 }
3719 return -ENOTTY;
3720 }
3721
3722 /* Ensure that we have sane parameters */
3723 if (!write_data) write_len = 0;
3724 if (!read_data) read_len = 0;
3725 if (write_len > PVR2_CTL_BUFFSIZE) {
3726 pvr2_trace(
3727 PVR2_TRACE_ERROR_LEGS,
3728 "Attempted to execute %d byte"
3729 " control-write transfer (limit=%d)",
3730 write_len,PVR2_CTL_BUFFSIZE);
3731 return -EINVAL;
3732 }
3733 if (read_len > PVR2_CTL_BUFFSIZE) {
3734 pvr2_trace(
3735 PVR2_TRACE_ERROR_LEGS,
3736 "Attempted to execute %d byte"
3737 " control-read transfer (limit=%d)",
3738 write_len,PVR2_CTL_BUFFSIZE);
3739 return -EINVAL;
3740 }
3741 if ((!write_len) && (!read_len)) {
3742 pvr2_trace(
3743 PVR2_TRACE_ERROR_LEGS,
3744 "Attempted to execute null control transfer?");
3745 return -EINVAL;
3746 }
3747
3748
3749 hdw->cmd_debug_state = 1;
3750 if (write_len) {
3751 hdw->cmd_debug_code = ((unsigned char *)write_data)[0];
3752 } else {
3753 hdw->cmd_debug_code = 0;
3754 }
3755 hdw->cmd_debug_write_len = write_len;
3756 hdw->cmd_debug_read_len = read_len;
3757
3758 /* Initialize common stuff */
3759 init_completion(&hdw->ctl_done);
3760 hdw->ctl_timeout_flag = 0;
3761 hdw->ctl_write_pend_flag = 0;
3762 hdw->ctl_read_pend_flag = 0;
3763 init_timer(&timer);
3764 timer.expires = jiffies + timeout;
3765 timer.data = (unsigned long)hdw;
3766 timer.function = pvr2_ctl_timeout;
3767
3768 if (write_len) {
3769 hdw->cmd_debug_state = 2;
3770 /* Transfer write data to internal buffer */
3771 for (idx = 0; idx < write_len; idx++) {
3772 hdw->ctl_write_buffer[idx] =
3773 ((unsigned char *)write_data)[idx];
3774 }
3775 /* Initiate a write request */
3776 usb_fill_bulk_urb(hdw->ctl_write_urb,
3777 hdw->usb_dev,
3778 usb_sndbulkpipe(hdw->usb_dev,
3779 PVR2_CTL_WRITE_ENDPOINT),
3780 hdw->ctl_write_buffer,
3781 write_len,
3782 pvr2_ctl_write_complete,
3783 hdw);
3784 hdw->ctl_write_urb->actual_length = 0;
3785 hdw->ctl_write_pend_flag = !0;
3786 status = usb_submit_urb(hdw->ctl_write_urb,GFP_KERNEL);
3787 if (status < 0) {
3788 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3789 "Failed to submit write-control"
3790 " URB status=%d",status);
3791 hdw->ctl_write_pend_flag = 0;
3792 goto done;
3793 }
3794 }
3795
3796 if (read_len) {
3797 hdw->cmd_debug_state = 3;
3798 memset(hdw->ctl_read_buffer,0x43,read_len);
3799 /* Initiate a read request */
3800 usb_fill_bulk_urb(hdw->ctl_read_urb,
3801 hdw->usb_dev,
3802 usb_rcvbulkpipe(hdw->usb_dev,
3803 PVR2_CTL_READ_ENDPOINT),
3804 hdw->ctl_read_buffer,
3805 read_len,
3806 pvr2_ctl_read_complete,
3807 hdw);
3808 hdw->ctl_read_urb->actual_length = 0;
3809 hdw->ctl_read_pend_flag = !0;
3810 status = usb_submit_urb(hdw->ctl_read_urb,GFP_KERNEL);
3811 if (status < 0) {
3812 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3813 "Failed to submit read-control"
3814 " URB status=%d",status);
3815 hdw->ctl_read_pend_flag = 0;
3816 goto done;
3817 }
3818 }
3819
3820 /* Start timer */
3821 add_timer(&timer);
3822
3823 /* Now wait for all I/O to complete */
3824 hdw->cmd_debug_state = 4;
3825 while (hdw->ctl_write_pend_flag || hdw->ctl_read_pend_flag) {
3826 wait_for_completion(&hdw->ctl_done);
3827 }
3828 hdw->cmd_debug_state = 5;
3829
3830 /* Stop timer */
3831 del_timer_sync(&timer);
3832
3833 hdw->cmd_debug_state = 6;
3834 status = 0;
3835
3836 if (hdw->ctl_timeout_flag) {
3837 status = -ETIMEDOUT;
3838 if (!probe_fl) {
3839 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3840 "Timed out control-write");
3841 }
3842 goto done;
3843 }
3844
3845 if (write_len) {
3846 /* Validate results of write request */
3847 if ((hdw->ctl_write_urb->status != 0) &&
3848 (hdw->ctl_write_urb->status != -ENOENT) &&
3849 (hdw->ctl_write_urb->status != -ESHUTDOWN) &&
3850 (hdw->ctl_write_urb->status != -ECONNRESET)) {
3851 /* USB subsystem is reporting some kind of failure
3852 on the write */
3853 status = hdw->ctl_write_urb->status;
3854 if (!probe_fl) {
3855 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3856 "control-write URB failure,"
3857 " status=%d",
3858 status);
3859 }
3860 goto done;
3861 }
3862 if (hdw->ctl_write_urb->actual_length < write_len) {
3863 /* Failed to write enough data */
3864 status = -EIO;
3865 if (!probe_fl) {
3866 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3867 "control-write URB short,"
3868 " expected=%d got=%d",
3869 write_len,
3870 hdw->ctl_write_urb->actual_length);
3871 }
3872 goto done;
3873 }
3874 }
3875 if (read_len) {
3876 /* Validate results of read request */
3877 if ((hdw->ctl_read_urb->status != 0) &&
3878 (hdw->ctl_read_urb->status != -ENOENT) &&
3879 (hdw->ctl_read_urb->status != -ESHUTDOWN) &&
3880 (hdw->ctl_read_urb->status != -ECONNRESET)) {
3881 /* USB subsystem is reporting some kind of failure
3882 on the read */
3883 status = hdw->ctl_read_urb->status;
3884 if (!probe_fl) {
3885 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3886 "control-read URB failure,"
3887 " status=%d",
3888 status);
3889 }
3890 goto done;
3891 }
3892 if (hdw->ctl_read_urb->actual_length < read_len) {
3893 /* Failed to read enough data */
3894 status = -EIO;
3895 if (!probe_fl) {
3896 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
3897 "control-read URB short,"
3898 " expected=%d got=%d",
3899 read_len,
3900 hdw->ctl_read_urb->actual_length);
3901 }
3902 goto done;
3903 }
3904 /* Transfer retrieved data out from internal buffer */
3905 for (idx = 0; idx < read_len; idx++) {
3906 ((unsigned char *)read_data)[idx] =
3907 hdw->ctl_read_buffer[idx];
3908 }
3909 }
3910
3911 done:
3912
3913 hdw->cmd_debug_state = 0;
3914 if ((status < 0) && (!probe_fl)) {
Mike Isely681c7392007-11-26 01:48:52 -03003915 pvr2_hdw_render_useless(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03003916 }
3917 return status;
3918}
3919
3920
3921int pvr2_send_request(struct pvr2_hdw *hdw,
3922 void *write_data,unsigned int write_len,
3923 void *read_data,unsigned int read_len)
3924{
3925 return pvr2_send_request_ex(hdw,HZ*4,0,
3926 write_data,write_len,
3927 read_data,read_len);
3928}
3929
Mike Isely1c9d10d2008-03-28 05:38:54 -03003930
3931static int pvr2_issue_simple_cmd(struct pvr2_hdw *hdw,u32 cmdcode)
3932{
3933 int ret;
3934 unsigned int cnt = 1;
3935 unsigned int args = 0;
3936 LOCK_TAKE(hdw->ctl_lock);
3937 hdw->cmd_buffer[0] = cmdcode & 0xffu;
3938 args = (cmdcode >> 8) & 0xffu;
3939 args = (args > 2) ? 2 : args;
3940 if (args) {
3941 cnt += args;
3942 hdw->cmd_buffer[1] = (cmdcode >> 16) & 0xffu;
3943 if (args > 1) {
3944 hdw->cmd_buffer[2] = (cmdcode >> 24) & 0xffu;
3945 }
3946 }
3947 if (pvrusb2_debug & PVR2_TRACE_INIT) {
3948 unsigned int idx;
3949 unsigned int ccnt,bcnt;
3950 char tbuf[50];
3951 cmdcode &= 0xffu;
3952 bcnt = 0;
3953 ccnt = scnprintf(tbuf+bcnt,
3954 sizeof(tbuf)-bcnt,
3955 "Sending FX2 command 0x%x",cmdcode);
3956 bcnt += ccnt;
3957 for (idx = 0; idx < ARRAY_SIZE(pvr2_fx2cmd_desc); idx++) {
3958 if (pvr2_fx2cmd_desc[idx].id == cmdcode) {
3959 ccnt = scnprintf(tbuf+bcnt,
3960 sizeof(tbuf)-bcnt,
3961 " \"%s\"",
3962 pvr2_fx2cmd_desc[idx].desc);
3963 bcnt += ccnt;
3964 break;
3965 }
3966 }
3967 if (args) {
3968 ccnt = scnprintf(tbuf+bcnt,
3969 sizeof(tbuf)-bcnt,
3970 " (%u",hdw->cmd_buffer[1]);
3971 bcnt += ccnt;
3972 if (args > 1) {
3973 ccnt = scnprintf(tbuf+bcnt,
3974 sizeof(tbuf)-bcnt,
3975 ",%u",hdw->cmd_buffer[2]);
3976 bcnt += ccnt;
3977 }
3978 ccnt = scnprintf(tbuf+bcnt,
3979 sizeof(tbuf)-bcnt,
3980 ")");
3981 bcnt += ccnt;
3982 }
3983 pvr2_trace(PVR2_TRACE_INIT,"%.*s",bcnt,tbuf);
3984 }
3985 ret = pvr2_send_request(hdw,hdw->cmd_buffer,cnt,NULL,0);
3986 LOCK_GIVE(hdw->ctl_lock);
3987 return ret;
3988}
3989
3990
Mike Iselyd8554972006-06-26 20:58:46 -03003991int pvr2_write_register(struct pvr2_hdw *hdw, u16 reg, u32 data)
3992{
3993 int ret;
3994
3995 LOCK_TAKE(hdw->ctl_lock);
3996
Michael Krufky8d364362007-01-22 02:17:55 -03003997 hdw->cmd_buffer[0] = FX2CMD_REG_WRITE; /* write register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03003998 PVR2_DECOMPOSE_LE(hdw->cmd_buffer,1,data);
3999 hdw->cmd_buffer[5] = 0;
4000 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
4001 hdw->cmd_buffer[7] = reg & 0xff;
4002
4003
4004 ret = pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 0);
4005
4006 LOCK_GIVE(hdw->ctl_lock);
4007
4008 return ret;
4009}
4010
4011
Adrian Bunk07e337e2006-06-30 11:30:20 -03004012static int pvr2_read_register(struct pvr2_hdw *hdw, u16 reg, u32 *data)
Mike Iselyd8554972006-06-26 20:58:46 -03004013{
4014 int ret = 0;
4015
4016 LOCK_TAKE(hdw->ctl_lock);
4017
Michael Krufky8d364362007-01-22 02:17:55 -03004018 hdw->cmd_buffer[0] = FX2CMD_REG_READ; /* read register prefix */
Mike Iselyd8554972006-06-26 20:58:46 -03004019 hdw->cmd_buffer[1] = 0;
4020 hdw->cmd_buffer[2] = 0;
4021 hdw->cmd_buffer[3] = 0;
4022 hdw->cmd_buffer[4] = 0;
4023 hdw->cmd_buffer[5] = 0;
4024 hdw->cmd_buffer[6] = (reg >> 8) & 0xff;
4025 hdw->cmd_buffer[7] = reg & 0xff;
4026
4027 ret |= pvr2_send_request(hdw, hdw->cmd_buffer, 8, hdw->cmd_buffer, 4);
4028 *data = PVR2_COMPOSE_LE(hdw->cmd_buffer,0);
4029
4030 LOCK_GIVE(hdw->ctl_lock);
4031
4032 return ret;
4033}
4034
4035
Mike Isely681c7392007-11-26 01:48:52 -03004036void pvr2_hdw_render_useless(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03004037{
4038 if (!hdw->flag_ok) return;
Mike Isely681c7392007-11-26 01:48:52 -03004039 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4040 "Device being rendered inoperable");
Mike Iselyd8554972006-06-26 20:58:46 -03004041 if (hdw->vid_stream) {
Mike Iselya0fd1cb2006-06-30 11:35:28 -03004042 pvr2_stream_setup(hdw->vid_stream,NULL,0,0);
Mike Iselyd8554972006-06-26 20:58:46 -03004043 }
Mike Isely681c7392007-11-26 01:48:52 -03004044 hdw->flag_ok = 0;
4045 trace_stbit("flag_ok",hdw->flag_ok);
4046 pvr2_hdw_state_sched(hdw);
Mike Iselyd8554972006-06-26 20:58:46 -03004047}
4048
4049
4050void pvr2_hdw_device_reset(struct pvr2_hdw *hdw)
4051{
4052 int ret;
4053 pvr2_trace(PVR2_TRACE_INIT,"Performing a device reset...");
Mike Iselya0fd1cb2006-06-30 11:35:28 -03004054 ret = usb_lock_device_for_reset(hdw->usb_dev,NULL);
Alan Stern011b15d2008-11-04 11:29:27 -05004055 if (ret == 0) {
Mike Iselyd8554972006-06-26 20:58:46 -03004056 ret = usb_reset_device(hdw->usb_dev);
4057 usb_unlock_device(hdw->usb_dev);
4058 } else {
4059 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4060 "Failed to lock USB device ret=%d",ret);
4061 }
4062 if (init_pause_msec) {
4063 pvr2_trace(PVR2_TRACE_INFO,
4064 "Waiting %u msec for hardware to settle",
4065 init_pause_msec);
4066 msleep(init_pause_msec);
4067 }
4068
4069}
4070
4071
4072void pvr2_hdw_cpureset_assert(struct pvr2_hdw *hdw,int val)
4073{
4074 char da[1];
4075 unsigned int pipe;
4076 int ret;
4077
4078 if (!hdw->usb_dev) return;
4079
4080 pvr2_trace(PVR2_TRACE_INIT,"cpureset_assert(%d)",val);
4081
4082 da[0] = val ? 0x01 : 0x00;
4083
4084 /* Write the CPUCS register on the 8051. The lsb of the register
4085 is the reset bit; a 1 asserts reset while a 0 clears it. */
4086 pipe = usb_sndctrlpipe(hdw->usb_dev, 0);
4087 ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ);
4088 if (ret < 0) {
4089 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
4090 "cpureset_assert(%d) error=%d",val,ret);
4091 pvr2_hdw_render_useless(hdw);
4092 }
4093}
4094
4095
4096int pvr2_hdw_cmd_deep_reset(struct pvr2_hdw *hdw)
4097{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004098 return pvr2_issue_simple_cmd(hdw,FX2CMD_DEEP_RESET);
Mike Iselyd8554972006-06-26 20:58:46 -03004099}
4100
4101
Michael Krufkye1edb192008-04-22 14:45:39 -03004102int pvr2_hdw_cmd_powerup(struct pvr2_hdw *hdw)
4103{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004104 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_ON);
Michael Krufkye1edb192008-04-22 14:45:39 -03004105}
4106
Mike Isely1c9d10d2008-03-28 05:38:54 -03004107
Michael Krufkye1edb192008-04-22 14:45:39 -03004108int pvr2_hdw_cmd_powerdown(struct pvr2_hdw *hdw)
4109{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004110 return pvr2_issue_simple_cmd(hdw,FX2CMD_POWER_OFF);
Michael Krufkye1edb192008-04-22 14:45:39 -03004111}
4112
Mike Iselyd8554972006-06-26 20:58:46 -03004113
4114int pvr2_hdw_cmd_decoder_reset(struct pvr2_hdw *hdw)
4115{
Mike Iselyd8554972006-06-26 20:58:46 -03004116 pvr2_trace(PVR2_TRACE_INIT,
4117 "Requesting decoder reset");
Mike Iselyaf78e162009-03-07 00:21:30 -03004118 if (hdw->decoder_client_id) {
4119 v4l2_device_call_all(&hdw->v4l2_dev, hdw->decoder_client_id,
4120 core, reset, 0);
Mike Iselye17d7872009-06-20 14:45:52 -03004121 pvr2_hdw_cx25840_vbi_hack(hdw);
Mike Iselyaf78e162009-03-07 00:21:30 -03004122 return 0;
4123 }
4124 pvr2_trace(PVR2_TRACE_INIT,
4125 "Unable to reset decoder: nothing attached");
4126 return -ENOTTY;
Mike Iselyd8554972006-06-26 20:58:46 -03004127}
4128
4129
Mike Isely62433e32008-04-22 14:45:40 -03004130static int pvr2_hdw_cmd_hcw_demod_reset(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004131{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004132 hdw->flag_ok = !0;
4133 return pvr2_issue_simple_cmd(hdw,
4134 FX2CMD_HCW_DEMOD_RESETIN |
4135 (1 << 8) |
4136 ((onoff ? 1 : 0) << 16));
Mike Isely84147f32008-04-22 14:45:40 -03004137}
4138
Mike Isely84147f32008-04-22 14:45:40 -03004139
Mike Isely62433e32008-04-22 14:45:40 -03004140static int pvr2_hdw_cmd_onair_fe_power_ctrl(struct pvr2_hdw *hdw, int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004141{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004142 hdw->flag_ok = !0;
4143 return pvr2_issue_simple_cmd(hdw,(onoff ?
4144 FX2CMD_ONAIR_DTV_POWER_ON :
4145 FX2CMD_ONAIR_DTV_POWER_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004146}
4147
Mike Isely62433e32008-04-22 14:45:40 -03004148
4149static int pvr2_hdw_cmd_onair_digital_path_ctrl(struct pvr2_hdw *hdw,
4150 int onoff)
Mike Isely84147f32008-04-22 14:45:40 -03004151{
Mike Isely1c9d10d2008-03-28 05:38:54 -03004152 return pvr2_issue_simple_cmd(hdw,(onoff ?
4153 FX2CMD_ONAIR_DTV_STREAMING_ON :
4154 FX2CMD_ONAIR_DTV_STREAMING_OFF));
Mike Isely84147f32008-04-22 14:45:40 -03004155}
4156
Mike Isely62433e32008-04-22 14:45:40 -03004157
4158static void pvr2_hdw_cmd_modeswitch(struct pvr2_hdw *hdw,int digitalFl)
4159{
4160 int cmode;
4161 /* Compare digital/analog desired setting with current setting. If
4162 they don't match, fix it... */
4163 cmode = (digitalFl ? PVR2_PATHWAY_DIGITAL : PVR2_PATHWAY_ANALOG);
4164 if (cmode == hdw->pathway_state) {
4165 /* They match; nothing to do */
4166 return;
4167 }
4168
4169 switch (hdw->hdw_desc->digital_control_scheme) {
4170 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4171 pvr2_hdw_cmd_hcw_demod_reset(hdw,digitalFl);
4172 if (cmode == PVR2_PATHWAY_ANALOG) {
4173 /* If moving to analog mode, also force the decoder
4174 to reset. If no decoder is attached, then it's
4175 ok to ignore this because if/when the decoder
4176 attaches, it will reset itself at that time. */
4177 pvr2_hdw_cmd_decoder_reset(hdw);
4178 }
4179 break;
4180 case PVR2_DIGITAL_SCHEME_ONAIR:
4181 /* Supposedly we should always have the power on whether in
4182 digital or analog mode. But for now do what appears to
4183 work... */
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004184 pvr2_hdw_cmd_onair_fe_power_ctrl(hdw,digitalFl);
Mike Isely62433e32008-04-22 14:45:40 -03004185 break;
4186 default: break;
4187 }
4188
Mike Isely1b9c18c2008-04-22 14:45:41 -03004189 pvr2_hdw_untrip_unlocked(hdw);
Mike Isely62433e32008-04-22 14:45:40 -03004190 hdw->pathway_state = cmode;
4191}
4192
4193
Adrian Bunke9b59f62008-05-10 04:35:24 -03004194static void pvr2_led_ctrl_hauppauge(struct pvr2_hdw *hdw, int onoff)
Mike Iselyc55a97d2008-04-22 14:45:41 -03004195{
4196 /* change some GPIO data
4197 *
4198 * note: bit d7 of dir appears to control the LED,
4199 * so we shut it off here.
4200 *
Mike Iselyc55a97d2008-04-22 14:45:41 -03004201 */
Mike Isely40381cb2008-04-22 14:45:42 -03004202 if (onoff) {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004203 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000481);
Mike Isely40381cb2008-04-22 14:45:42 -03004204 } else {
Mike Iselyc55a97d2008-04-22 14:45:41 -03004205 pvr2_hdw_gpio_chg_dir(hdw, 0xffffffff, 0x00000401);
Mike Isely40381cb2008-04-22 14:45:42 -03004206 }
Mike Iselyc55a97d2008-04-22 14:45:41 -03004207 pvr2_hdw_gpio_chg_out(hdw, 0xffffffff, 0x00000000);
Mike Isely40381cb2008-04-22 14:45:42 -03004208}
Mike Iselyc55a97d2008-04-22 14:45:41 -03004209
Mike Isely40381cb2008-04-22 14:45:42 -03004210
4211typedef void (*led_method_func)(struct pvr2_hdw *,int);
4212
4213static led_method_func led_methods[] = {
4214 [PVR2_LED_SCHEME_HAUPPAUGE] = pvr2_led_ctrl_hauppauge,
4215};
4216
4217
4218/* Toggle LED */
4219static void pvr2_led_ctrl(struct pvr2_hdw *hdw,int onoff)
4220{
4221 unsigned int scheme_id;
4222 led_method_func fp;
4223
4224 if ((!onoff) == (!hdw->led_on)) return;
4225
4226 hdw->led_on = onoff != 0;
4227
4228 scheme_id = hdw->hdw_desc->led_scheme;
4229 if (scheme_id < ARRAY_SIZE(led_methods)) {
4230 fp = led_methods[scheme_id];
4231 } else {
4232 fp = NULL;
4233 }
4234
4235 if (fp) (*fp)(hdw,onoff);
Mike Iselyc55a97d2008-04-22 14:45:41 -03004236}
4237
4238
Mike Iselye61b6fc2006-07-18 22:42:18 -03004239/* Stop / start video stream transport */
Adrian Bunk07e337e2006-06-30 11:30:20 -03004240static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl)
Mike Iselyd8554972006-06-26 20:58:46 -03004241{
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004242 int ret;
4243
4244 /* If we're in analog mode, then just issue the usual analog
4245 command. */
4246 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4247 return pvr2_issue_simple_cmd(hdw,
4248 (runFl ?
4249 FX2CMD_STREAMING_ON :
4250 FX2CMD_STREAMING_OFF));
4251 /*Note: Not reached */
Mike Isely62433e32008-04-22 14:45:40 -03004252 }
Mike Iselybb0c2fe2008-03-28 05:41:19 -03004253
4254 if (hdw->pathway_state != PVR2_PATHWAY_DIGITAL) {
4255 /* Whoops, we don't know what mode we're in... */
4256 return -EINVAL;
4257 }
4258
4259 /* To get here we have to be in digital mode. The mechanism here
4260 is unfortunately different for different vendors. So we switch
4261 on the device's digital scheme attribute in order to figure out
4262 what to do. */
4263 switch (hdw->hdw_desc->digital_control_scheme) {
4264 case PVR2_DIGITAL_SCHEME_HAUPPAUGE:
4265 return pvr2_issue_simple_cmd(hdw,
4266 (runFl ?
4267 FX2CMD_HCW_DTV_STREAMING_ON :
4268 FX2CMD_HCW_DTV_STREAMING_OFF));
4269 case PVR2_DIGITAL_SCHEME_ONAIR:
4270 ret = pvr2_issue_simple_cmd(hdw,
4271 (runFl ?
4272 FX2CMD_STREAMING_ON :
4273 FX2CMD_STREAMING_OFF));
4274 if (ret) return ret;
4275 return pvr2_hdw_cmd_onair_digital_path_ctrl(hdw,runFl);
4276 default:
4277 return -EINVAL;
4278 }
Mike Iselyd8554972006-06-26 20:58:46 -03004279}
4280
4281
Mike Isely62433e32008-04-22 14:45:40 -03004282/* Evaluate whether or not state_pathway_ok can change */
4283static int state_eval_pathway_ok(struct pvr2_hdw *hdw)
4284{
4285 if (hdw->state_pathway_ok) {
4286 /* Nothing to do if pathway is already ok */
4287 return 0;
4288 }
4289 if (!hdw->state_pipeline_idle) {
4290 /* Not allowed to change anything if pipeline is not idle */
4291 return 0;
4292 }
4293 pvr2_hdw_cmd_modeswitch(hdw,hdw->input_val == PVR2_CVAL_INPUT_DTV);
4294 hdw->state_pathway_ok = !0;
Mike Iselye9db1ff2008-04-22 14:45:41 -03004295 trace_stbit("state_pathway_ok",hdw->state_pathway_ok);
Mike Isely62433e32008-04-22 14:45:40 -03004296 return !0;
4297}
4298
4299
Mike Isely681c7392007-11-26 01:48:52 -03004300/* Evaluate whether or not state_encoder_ok can change */
4301static int state_eval_encoder_ok(struct pvr2_hdw *hdw)
4302{
4303 if (hdw->state_encoder_ok) return 0;
4304 if (hdw->flag_tripped) return 0;
4305 if (hdw->state_encoder_run) return 0;
4306 if (hdw->state_encoder_config) return 0;
4307 if (hdw->state_decoder_run) return 0;
4308 if (hdw->state_usbstream_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004309 if (hdw->pathway_state == PVR2_PATHWAY_DIGITAL) {
4310 if (!hdw->hdw_desc->flag_digital_requires_cx23416) return 0;
4311 } else if (hdw->pathway_state != PVR2_PATHWAY_ANALOG) {
4312 return 0;
4313 }
4314
Mike Isely681c7392007-11-26 01:48:52 -03004315 if (pvr2_upload_firmware2(hdw) < 0) {
4316 hdw->flag_tripped = !0;
4317 trace_stbit("flag_tripped",hdw->flag_tripped);
4318 return !0;
4319 }
4320 hdw->state_encoder_ok = !0;
4321 trace_stbit("state_encoder_ok",hdw->state_encoder_ok);
4322 return !0;
4323}
4324
4325
4326/* Evaluate whether or not state_encoder_config can change */
4327static int state_eval_encoder_config(struct pvr2_hdw *hdw)
4328{
4329 if (hdw->state_encoder_config) {
4330 if (hdw->state_encoder_ok) {
4331 if (hdw->state_pipeline_req &&
4332 !hdw->state_pipeline_pause) return 0;
4333 }
4334 hdw->state_encoder_config = 0;
4335 hdw->state_encoder_waitok = 0;
4336 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4337 /* paranoia - solve race if timer just completed */
4338 del_timer_sync(&hdw->encoder_wait_timer);
4339 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004340 if (!hdw->state_pathway_ok ||
4341 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4342 !hdw->state_encoder_ok ||
Mike Isely681c7392007-11-26 01:48:52 -03004343 !hdw->state_pipeline_idle ||
4344 hdw->state_pipeline_pause ||
4345 !hdw->state_pipeline_req ||
4346 !hdw->state_pipeline_config) {
4347 /* We must reset the enforced wait interval if
4348 anything has happened that might have disturbed
4349 the encoder. This should be a rare case. */
4350 if (timer_pending(&hdw->encoder_wait_timer)) {
4351 del_timer_sync(&hdw->encoder_wait_timer);
4352 }
4353 if (hdw->state_encoder_waitok) {
4354 /* Must clear the state - therefore we did
4355 something to a state bit and must also
4356 return true. */
4357 hdw->state_encoder_waitok = 0;
4358 trace_stbit("state_encoder_waitok",
4359 hdw->state_encoder_waitok);
4360 return !0;
4361 }
4362 return 0;
4363 }
4364 if (!hdw->state_encoder_waitok) {
4365 if (!timer_pending(&hdw->encoder_wait_timer)) {
4366 /* waitok flag wasn't set and timer isn't
4367 running. Check flag once more to avoid
4368 a race then start the timer. This is
4369 the point when we measure out a minimal
4370 quiet interval before doing something to
4371 the encoder. */
4372 if (!hdw->state_encoder_waitok) {
4373 hdw->encoder_wait_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004374 jiffies +
4375 (HZ * TIME_MSEC_ENCODER_WAIT
4376 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004377 add_timer(&hdw->encoder_wait_timer);
4378 }
4379 }
4380 /* We can't continue until we know we have been
4381 quiet for the interval measured by this
4382 timer. */
4383 return 0;
4384 }
4385 pvr2_encoder_configure(hdw);
4386 if (hdw->state_encoder_ok) hdw->state_encoder_config = !0;
4387 }
4388 trace_stbit("state_encoder_config",hdw->state_encoder_config);
4389 return !0;
4390}
4391
4392
Mike Iselyd913d632008-04-06 04:04:35 -03004393/* Return true if the encoder should not be running. */
4394static int state_check_disable_encoder_run(struct pvr2_hdw *hdw)
4395{
4396 if (!hdw->state_encoder_ok) {
4397 /* Encoder isn't healthy at the moment, so stop it. */
4398 return !0;
4399 }
4400 if (!hdw->state_pathway_ok) {
4401 /* Mode is not understood at the moment (i.e. it wants to
4402 change), so encoder must be stopped. */
4403 return !0;
4404 }
4405
4406 switch (hdw->pathway_state) {
4407 case PVR2_PATHWAY_ANALOG:
4408 if (!hdw->state_decoder_run) {
4409 /* We're in analog mode and the decoder is not
4410 running; thus the encoder should be stopped as
4411 well. */
4412 return !0;
4413 }
4414 break;
4415 case PVR2_PATHWAY_DIGITAL:
4416 if (hdw->state_encoder_runok) {
4417 /* This is a funny case. We're in digital mode so
4418 really the encoder should be stopped. However
4419 if it really is running, only kill it after
4420 runok has been set. This gives a chance for the
4421 onair quirk to function (encoder must run
4422 briefly first, at least once, before onair
4423 digital streaming can work). */
4424 return !0;
4425 }
4426 break;
4427 default:
4428 /* Unknown mode; so encoder should be stopped. */
4429 return !0;
4430 }
4431
4432 /* If we get here, we haven't found a reason to stop the
4433 encoder. */
4434 return 0;
4435}
4436
4437
4438/* Return true if the encoder should be running. */
4439static int state_check_enable_encoder_run(struct pvr2_hdw *hdw)
4440{
4441 if (!hdw->state_encoder_ok) {
4442 /* Don't run the encoder if it isn't healthy... */
4443 return 0;
4444 }
4445 if (!hdw->state_pathway_ok) {
4446 /* Don't run the encoder if we don't (yet) know what mode
4447 we need to be in... */
4448 return 0;
4449 }
4450
4451 switch (hdw->pathway_state) {
4452 case PVR2_PATHWAY_ANALOG:
4453 if (hdw->state_decoder_run) {
4454 /* In analog mode, if the decoder is running, then
4455 run the encoder. */
4456 return !0;
4457 }
4458 break;
4459 case PVR2_PATHWAY_DIGITAL:
4460 if ((hdw->hdw_desc->digital_control_scheme ==
4461 PVR2_DIGITAL_SCHEME_ONAIR) &&
4462 !hdw->state_encoder_runok) {
4463 /* This is a quirk. OnAir hardware won't stream
4464 digital until the encoder has been run at least
4465 once, for a minimal period of time (empiricially
4466 measured to be 1/4 second). So if we're on
4467 OnAir hardware and the encoder has never been
4468 run at all, then start the encoder. Normal
4469 state machine logic in the driver will
4470 automatically handle the remaining bits. */
4471 return !0;
4472 }
4473 break;
4474 default:
4475 /* For completeness (unknown mode; encoder won't run ever) */
4476 break;
4477 }
4478 /* If we get here, then we haven't found any reason to run the
4479 encoder, so don't run it. */
4480 return 0;
4481}
4482
4483
Mike Isely681c7392007-11-26 01:48:52 -03004484/* Evaluate whether or not state_encoder_run can change */
4485static int state_eval_encoder_run(struct pvr2_hdw *hdw)
4486{
4487 if (hdw->state_encoder_run) {
Mike Iselyd913d632008-04-06 04:04:35 -03004488 if (!state_check_disable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004489 if (hdw->state_encoder_ok) {
Mike Iselyd913d632008-04-06 04:04:35 -03004490 del_timer_sync(&hdw->encoder_run_timer);
Mike Isely681c7392007-11-26 01:48:52 -03004491 if (pvr2_encoder_stop(hdw) < 0) return !0;
4492 }
4493 hdw->state_encoder_run = 0;
4494 } else {
Mike Iselyd913d632008-04-06 04:04:35 -03004495 if (!state_check_enable_encoder_run(hdw)) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004496 if (pvr2_encoder_start(hdw) < 0) return !0;
4497 hdw->state_encoder_run = !0;
Mike Iselyd913d632008-04-06 04:04:35 -03004498 if (!hdw->state_encoder_runok) {
4499 hdw->encoder_run_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004500 jiffies + (HZ * TIME_MSEC_ENCODER_OK / 1000);
Mike Iselyd913d632008-04-06 04:04:35 -03004501 add_timer(&hdw->encoder_run_timer);
4502 }
Mike Isely681c7392007-11-26 01:48:52 -03004503 }
4504 trace_stbit("state_encoder_run",hdw->state_encoder_run);
4505 return !0;
4506}
4507
4508
4509/* Timeout function for quiescent timer. */
4510static void pvr2_hdw_quiescent_timeout(unsigned long data)
4511{
4512 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4513 hdw->state_decoder_quiescent = !0;
4514 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4515 hdw->state_stale = !0;
4516 queue_work(hdw->workqueue,&hdw->workpoll);
4517}
4518
4519
4520/* Timeout function for encoder wait timer. */
4521static void pvr2_hdw_encoder_wait_timeout(unsigned long data)
4522{
4523 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4524 hdw->state_encoder_waitok = !0;
4525 trace_stbit("state_encoder_waitok",hdw->state_encoder_waitok);
4526 hdw->state_stale = !0;
4527 queue_work(hdw->workqueue,&hdw->workpoll);
4528}
4529
4530
Mike Iselyd913d632008-04-06 04:04:35 -03004531/* Timeout function for encoder run timer. */
4532static void pvr2_hdw_encoder_run_timeout(unsigned long data)
4533{
4534 struct pvr2_hdw *hdw = (struct pvr2_hdw *)data;
4535 if (!hdw->state_encoder_runok) {
4536 hdw->state_encoder_runok = !0;
4537 trace_stbit("state_encoder_runok",hdw->state_encoder_runok);
4538 hdw->state_stale = !0;
4539 queue_work(hdw->workqueue,&hdw->workpoll);
4540 }
4541}
4542
4543
Mike Isely681c7392007-11-26 01:48:52 -03004544/* Evaluate whether or not state_decoder_run can change */
4545static int state_eval_decoder_run(struct pvr2_hdw *hdw)
4546{
4547 if (hdw->state_decoder_run) {
4548 if (hdw->state_encoder_ok) {
4549 if (hdw->state_pipeline_req &&
Mike Isely62433e32008-04-22 14:45:40 -03004550 !hdw->state_pipeline_pause &&
4551 hdw->state_pathway_ok) return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004552 }
4553 if (!hdw->flag_decoder_missed) {
4554 pvr2_decoder_enable(hdw,0);
4555 }
4556 hdw->state_decoder_quiescent = 0;
4557 hdw->state_decoder_run = 0;
4558 /* paranoia - solve race if timer just completed */
4559 del_timer_sync(&hdw->quiescent_timer);
4560 } else {
4561 if (!hdw->state_decoder_quiescent) {
4562 if (!timer_pending(&hdw->quiescent_timer)) {
4563 /* We don't do something about the
4564 quiescent timer until right here because
4565 we also want to catch cases where the
4566 decoder was already not running (like
4567 after initialization) as opposed to
4568 knowing that we had just stopped it.
4569 The second flag check is here to cover a
4570 race - the timer could have run and set
4571 this flag just after the previous check
4572 but before we did the pending check. */
4573 if (!hdw->state_decoder_quiescent) {
4574 hdw->quiescent_timer.expires =
Mike Isely83ce57a2008-05-26 05:51:57 -03004575 jiffies +
4576 (HZ * TIME_MSEC_DECODER_WAIT
4577 / 1000);
Mike Isely681c7392007-11-26 01:48:52 -03004578 add_timer(&hdw->quiescent_timer);
4579 }
4580 }
4581 /* Don't allow decoder to start again until it has
4582 been quiesced first. This little detail should
4583 hopefully further stabilize the encoder. */
4584 return 0;
4585 }
Mike Isely62433e32008-04-22 14:45:40 -03004586 if (!hdw->state_pathway_ok ||
4587 (hdw->pathway_state != PVR2_PATHWAY_ANALOG) ||
4588 !hdw->state_pipeline_req ||
Mike Isely681c7392007-11-26 01:48:52 -03004589 hdw->state_pipeline_pause ||
4590 !hdw->state_pipeline_config ||
4591 !hdw->state_encoder_config ||
4592 !hdw->state_encoder_ok) return 0;
4593 del_timer_sync(&hdw->quiescent_timer);
4594 if (hdw->flag_decoder_missed) return 0;
4595 if (pvr2_decoder_enable(hdw,!0) < 0) return 0;
4596 hdw->state_decoder_quiescent = 0;
4597 hdw->state_decoder_run = !0;
4598 }
4599 trace_stbit("state_decoder_quiescent",hdw->state_decoder_quiescent);
4600 trace_stbit("state_decoder_run",hdw->state_decoder_run);
4601 return !0;
4602}
4603
4604
4605/* Evaluate whether or not state_usbstream_run can change */
4606static int state_eval_usbstream_run(struct pvr2_hdw *hdw)
4607{
4608 if (hdw->state_usbstream_run) {
Mike Isely72998b72008-04-03 04:51:19 -03004609 int fl = !0;
Mike Isely62433e32008-04-22 14:45:40 -03004610 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
Mike Isely72998b72008-04-03 04:51:19 -03004611 fl = (hdw->state_encoder_ok &&
4612 hdw->state_encoder_run);
4613 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4614 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4615 fl = hdw->state_encoder_ok;
4616 }
4617 if (fl &&
4618 hdw->state_pipeline_req &&
4619 !hdw->state_pipeline_pause &&
4620 hdw->state_pathway_ok) {
4621 return 0;
Mike Isely681c7392007-11-26 01:48:52 -03004622 }
4623 pvr2_hdw_cmd_usbstream(hdw,0);
4624 hdw->state_usbstream_run = 0;
4625 } else {
Mike Isely62433e32008-04-22 14:45:40 -03004626 if (!hdw->state_pipeline_req ||
4627 hdw->state_pipeline_pause ||
4628 !hdw->state_pathway_ok) return 0;
4629 if (hdw->pathway_state == PVR2_PATHWAY_ANALOG) {
4630 if (!hdw->state_encoder_ok ||
4631 !hdw->state_encoder_run) return 0;
Mike Isely72998b72008-04-03 04:51:19 -03004632 } else if ((hdw->pathway_state == PVR2_PATHWAY_DIGITAL) &&
4633 (hdw->hdw_desc->flag_digital_requires_cx23416)) {
4634 if (!hdw->state_encoder_ok) return 0;
Mike Iselyd913d632008-04-06 04:04:35 -03004635 if (hdw->state_encoder_run) return 0;
4636 if (hdw->hdw_desc->digital_control_scheme ==
4637 PVR2_DIGITAL_SCHEME_ONAIR) {
4638 /* OnAir digital receivers won't stream
4639 unless the analog encoder has run first.
4640 Why? I have no idea. But don't even
4641 try until we know the analog side is
4642 known to have run. */
4643 if (!hdw->state_encoder_runok) return 0;
4644 }
Mike Isely62433e32008-04-22 14:45:40 -03004645 }
Mike Isely681c7392007-11-26 01:48:52 -03004646 if (pvr2_hdw_cmd_usbstream(hdw,!0) < 0) return 0;
4647 hdw->state_usbstream_run = !0;
4648 }
4649 trace_stbit("state_usbstream_run",hdw->state_usbstream_run);
4650 return !0;
4651}
4652
4653
4654/* Attempt to configure pipeline, if needed */
4655static int state_eval_pipeline_config(struct pvr2_hdw *hdw)
4656{
4657 if (hdw->state_pipeline_config ||
4658 hdw->state_pipeline_pause) return 0;
4659 pvr2_hdw_commit_execute(hdw);
4660 return !0;
4661}
4662
4663
4664/* Update pipeline idle and pipeline pause tracking states based on other
4665 inputs. This must be called whenever the other relevant inputs have
4666 changed. */
4667static int state_update_pipeline_state(struct pvr2_hdw *hdw)
4668{
4669 unsigned int st;
4670 int updatedFl = 0;
4671 /* Update pipeline state */
4672 st = !(hdw->state_encoder_run ||
4673 hdw->state_decoder_run ||
4674 hdw->state_usbstream_run ||
4675 (!hdw->state_decoder_quiescent));
4676 if (!st != !hdw->state_pipeline_idle) {
4677 hdw->state_pipeline_idle = st;
4678 updatedFl = !0;
4679 }
4680 if (hdw->state_pipeline_idle && hdw->state_pipeline_pause) {
4681 hdw->state_pipeline_pause = 0;
4682 updatedFl = !0;
4683 }
4684 return updatedFl;
4685}
4686
4687
4688typedef int (*state_eval_func)(struct pvr2_hdw *);
4689
4690/* Set of functions to be run to evaluate various states in the driver. */
Tobias Klauserebff0332008-04-22 14:45:45 -03004691static const state_eval_func eval_funcs[] = {
Mike Isely62433e32008-04-22 14:45:40 -03004692 state_eval_pathway_ok,
Mike Isely681c7392007-11-26 01:48:52 -03004693 state_eval_pipeline_config,
4694 state_eval_encoder_ok,
4695 state_eval_encoder_config,
4696 state_eval_decoder_run,
4697 state_eval_encoder_run,
4698 state_eval_usbstream_run,
4699};
4700
4701
4702/* Process various states and return true if we did anything interesting. */
4703static int pvr2_hdw_state_update(struct pvr2_hdw *hdw)
4704{
4705 unsigned int i;
4706 int state_updated = 0;
4707 int check_flag;
4708
4709 if (!hdw->state_stale) return 0;
4710 if ((hdw->fw1_state != FW1_STATE_OK) ||
4711 !hdw->flag_ok) {
4712 hdw->state_stale = 0;
4713 return !0;
4714 }
4715 /* This loop is the heart of the entire driver. It keeps trying to
4716 evaluate various bits of driver state until nothing changes for
4717 one full iteration. Each "bit of state" tracks some global
4718 aspect of the driver, e.g. whether decoder should run, if
4719 pipeline is configured, usb streaming is on, etc. We separately
4720 evaluate each of those questions based on other driver state to
4721 arrive at the correct running configuration. */
4722 do {
4723 check_flag = 0;
4724 state_update_pipeline_state(hdw);
4725 /* Iterate over each bit of state */
4726 for (i = 0; (i<ARRAY_SIZE(eval_funcs)) && hdw->flag_ok; i++) {
4727 if ((*eval_funcs[i])(hdw)) {
4728 check_flag = !0;
4729 state_updated = !0;
4730 state_update_pipeline_state(hdw);
4731 }
4732 }
4733 } while (check_flag && hdw->flag_ok);
4734 hdw->state_stale = 0;
4735 trace_stbit("state_stale",hdw->state_stale);
4736 return state_updated;
4737}
4738
4739
Mike Isely1cb03b72008-04-21 03:47:43 -03004740static unsigned int print_input_mask(unsigned int msk,
4741 char *buf,unsigned int acnt)
4742{
4743 unsigned int idx,ccnt;
4744 unsigned int tcnt = 0;
4745 for (idx = 0; idx < ARRAY_SIZE(control_values_input); idx++) {
4746 if (!((1 << idx) & msk)) continue;
4747 ccnt = scnprintf(buf+tcnt,
4748 acnt-tcnt,
4749 "%s%s",
4750 (tcnt ? ", " : ""),
4751 control_values_input[idx]);
4752 tcnt += ccnt;
4753 }
4754 return tcnt;
4755}
4756
4757
Mike Isely62433e32008-04-22 14:45:40 -03004758static const char *pvr2_pathway_state_name(int id)
4759{
4760 switch (id) {
4761 case PVR2_PATHWAY_ANALOG: return "analog";
4762 case PVR2_PATHWAY_DIGITAL: return "digital";
4763 default: return "unknown";
4764 }
4765}
4766
4767
Mike Isely681c7392007-11-26 01:48:52 -03004768static unsigned int pvr2_hdw_report_unlocked(struct pvr2_hdw *hdw,int which,
4769 char *buf,unsigned int acnt)
4770{
4771 switch (which) {
4772 case 0:
4773 return scnprintf(
4774 buf,acnt,
Mike Iselye9db1ff2008-04-22 14:45:41 -03004775 "driver:%s%s%s%s%s <mode=%s>",
Mike Isely681c7392007-11-26 01:48:52 -03004776 (hdw->flag_ok ? " <ok>" : " <fail>"),
4777 (hdw->flag_init_ok ? " <init>" : " <uninitialized>"),
4778 (hdw->flag_disconnected ? " <disconnected>" :
4779 " <connected>"),
4780 (hdw->flag_tripped ? " <tripped>" : ""),
Mike Isely62433e32008-04-22 14:45:40 -03004781 (hdw->flag_decoder_missed ? " <no decoder>" : ""),
4782 pvr2_pathway_state_name(hdw->pathway_state));
4783
Mike Isely681c7392007-11-26 01:48:52 -03004784 case 1:
4785 return scnprintf(
4786 buf,acnt,
4787 "pipeline:%s%s%s%s",
4788 (hdw->state_pipeline_idle ? " <idle>" : ""),
4789 (hdw->state_pipeline_config ?
4790 " <configok>" : " <stale>"),
4791 (hdw->state_pipeline_req ? " <req>" : ""),
4792 (hdw->state_pipeline_pause ? " <pause>" : ""));
4793 case 2:
4794 return scnprintf(
4795 buf,acnt,
Mike Isely62433e32008-04-22 14:45:40 -03004796 "worker:%s%s%s%s%s%s%s",
Mike Isely681c7392007-11-26 01:48:52 -03004797 (hdw->state_decoder_run ?
4798 " <decode:run>" :
4799 (hdw->state_decoder_quiescent ?
4800 "" : " <decode:stop>")),
4801 (hdw->state_decoder_quiescent ?
4802 " <decode:quiescent>" : ""),
4803 (hdw->state_encoder_ok ?
4804 "" : " <encode:init>"),
4805 (hdw->state_encoder_run ?
Mike Iselyd913d632008-04-06 04:04:35 -03004806 (hdw->state_encoder_runok ?
4807 " <encode:run>" :
4808 " <encode:firstrun>") :
4809 (hdw->state_encoder_runok ?
4810 " <encode:stop>" :
4811 " <encode:virgin>")),
Mike Isely681c7392007-11-26 01:48:52 -03004812 (hdw->state_encoder_config ?
4813 " <encode:configok>" :
4814 (hdw->state_encoder_waitok ?
Mike Iselyb9a37d92008-03-28 05:31:40 -03004815 "" : " <encode:waitok>")),
Mike Isely681c7392007-11-26 01:48:52 -03004816 (hdw->state_usbstream_run ?
Mike Isely62433e32008-04-22 14:45:40 -03004817 " <usb:run>" : " <usb:stop>"),
4818 (hdw->state_pathway_ok ?
Mike Iselye9db1ff2008-04-22 14:45:41 -03004819 " <pathway:ok>" : ""));
Mike Isely681c7392007-11-26 01:48:52 -03004820 case 3:
4821 return scnprintf(
4822 buf,acnt,
4823 "state: %s",
4824 pvr2_get_state_name(hdw->master_state));
Mike Iselyad0992e2008-03-28 05:34:45 -03004825 case 4: {
Mike Isely1cb03b72008-04-21 03:47:43 -03004826 unsigned int tcnt = 0;
4827 unsigned int ccnt;
4828
4829 ccnt = scnprintf(buf,
4830 acnt,
4831 "Hardware supported inputs: ");
4832 tcnt += ccnt;
4833 tcnt += print_input_mask(hdw->input_avail_mask,
4834 buf+tcnt,
4835 acnt-tcnt);
4836 if (hdw->input_avail_mask != hdw->input_allowed_mask) {
4837 ccnt = scnprintf(buf+tcnt,
4838 acnt-tcnt,
4839 "; allowed inputs: ");
4840 tcnt += ccnt;
4841 tcnt += print_input_mask(hdw->input_allowed_mask,
4842 buf+tcnt,
4843 acnt-tcnt);
4844 }
4845 return tcnt;
4846 }
4847 case 5: {
Mike Iselyad0992e2008-03-28 05:34:45 -03004848 struct pvr2_stream_stats stats;
4849 if (!hdw->vid_stream) break;
4850 pvr2_stream_get_stats(hdw->vid_stream,
4851 &stats,
4852 0);
4853 return scnprintf(
4854 buf,acnt,
4855 "Bytes streamed=%u"
4856 " URBs: queued=%u idle=%u ready=%u"
4857 " processed=%u failed=%u",
4858 stats.bytes_processed,
4859 stats.buffers_in_queue,
4860 stats.buffers_in_idle,
4861 stats.buffers_in_ready,
4862 stats.buffers_processed,
4863 stats.buffers_failed);
4864 }
Mike Isely27eab382009-04-06 01:51:38 -03004865 case 6: {
4866 unsigned int id = hdw->ir_scheme_active;
4867 return scnprintf(buf, acnt, "ir scheme: id=%d %s", id,
4868 (id >= ARRAY_SIZE(ir_scheme_names) ?
4869 "?" : ir_scheme_names[id]));
4870 }
Mike Isely681c7392007-11-26 01:48:52 -03004871 default: break;
4872 }
4873 return 0;
4874}
4875
4876
Mike Isely2eb563b2009-03-08 18:25:46 -03004877/* Generate report containing info about attached sub-devices and attached
4878 i2c clients, including an indication of which attached i2c clients are
4879 actually sub-devices. */
4880static unsigned int pvr2_hdw_report_clients(struct pvr2_hdw *hdw,
4881 char *buf, unsigned int acnt)
4882{
4883 struct v4l2_subdev *sd;
4884 unsigned int tcnt = 0;
4885 unsigned int ccnt;
4886 struct i2c_client *client;
Mike Isely2eb563b2009-03-08 18:25:46 -03004887 const char *p;
4888 unsigned int id;
4889
Jean Delvarefa7ce762009-05-02 00:22:27 -03004890 ccnt = scnprintf(buf, acnt, "Associated v4l2-subdev drivers and I2C clients:\n");
Mike Isely2eb563b2009-03-08 18:25:46 -03004891 tcnt += ccnt;
4892 v4l2_device_for_each_subdev(sd, &hdw->v4l2_dev) {
4893 id = sd->grp_id;
4894 p = NULL;
4895 if (id < ARRAY_SIZE(module_names)) p = module_names[id];
4896 if (p) {
Jean Delvarefa7ce762009-05-02 00:22:27 -03004897 ccnt = scnprintf(buf + tcnt, acnt - tcnt, " %s:", p);
Mike Isely2eb563b2009-03-08 18:25:46 -03004898 tcnt += ccnt;
4899 } else {
4900 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
Jean Delvarefa7ce762009-05-02 00:22:27 -03004901 " (unknown id=%u):", id);
4902 tcnt += ccnt;
4903 }
4904 client = v4l2_get_subdevdata(sd);
4905 if (client) {
4906 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4907 " %s @ %02x\n", client->name,
4908 client->addr);
4909 tcnt += ccnt;
4910 } else {
4911 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4912 " no i2c client\n");
Mike Isely2eb563b2009-03-08 18:25:46 -03004913 tcnt += ccnt;
4914 }
4915 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004916 return tcnt;
4917}
4918
4919
Mike Isely681c7392007-11-26 01:48:52 -03004920unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
4921 char *buf,unsigned int acnt)
4922{
4923 unsigned int bcnt,ccnt,idx;
4924 bcnt = 0;
4925 LOCK_TAKE(hdw->big_lock);
4926 for (idx = 0; ; idx++) {
4927 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4928 if (!ccnt) break;
4929 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4930 if (!acnt) break;
4931 buf[0] = '\n'; ccnt = 1;
4932 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4933 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004934 ccnt = pvr2_hdw_report_clients(hdw, buf, acnt);
4935 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
Mike Isely681c7392007-11-26 01:48:52 -03004936 LOCK_GIVE(hdw->big_lock);
4937 return bcnt;
4938}
4939
4940
4941static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
4942{
Mike Isely2eb563b2009-03-08 18:25:46 -03004943 char buf[256];
4944 unsigned int idx, ccnt;
4945 unsigned int lcnt, ucnt;
Mike Isely681c7392007-11-26 01:48:52 -03004946
4947 for (idx = 0; ; idx++) {
4948 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
4949 if (!ccnt) break;
4950 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
4951 }
Mike Isely2eb563b2009-03-08 18:25:46 -03004952 ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
4953 ucnt = 0;
4954 while (ucnt < ccnt) {
4955 lcnt = 0;
4956 while ((lcnt + ucnt < ccnt) && (buf[lcnt + ucnt] != '\n')) {
4957 lcnt++;
4958 }
4959 printk(KERN_INFO "%s %.*s\n", hdw->name, lcnt, buf + ucnt);
4960 ucnt += lcnt + 1;
4961 }
Mike Isely681c7392007-11-26 01:48:52 -03004962}
4963
4964
4965/* Evaluate and update the driver's current state, taking various actions
4966 as appropriate for the update. */
4967static int pvr2_hdw_state_eval(struct pvr2_hdw *hdw)
4968{
4969 unsigned int st;
4970 int state_updated = 0;
4971 int callback_flag = 0;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004972 int analog_mode;
Mike Isely681c7392007-11-26 01:48:52 -03004973
4974 pvr2_trace(PVR2_TRACE_STBITS,
4975 "Drive state check START");
4976 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
4977 pvr2_hdw_state_log_state(hdw);
4978 }
4979
4980 /* Process all state and get back over disposition */
4981 state_updated = pvr2_hdw_state_update(hdw);
4982
Mike Isely1b9c18c2008-04-22 14:45:41 -03004983 analog_mode = (hdw->pathway_state != PVR2_PATHWAY_DIGITAL);
4984
Mike Isely681c7392007-11-26 01:48:52 -03004985 /* Update master state based upon all other states. */
4986 if (!hdw->flag_ok) {
4987 st = PVR2_STATE_DEAD;
4988 } else if (hdw->fw1_state != FW1_STATE_OK) {
4989 st = PVR2_STATE_COLD;
Mike Isely72998b72008-04-03 04:51:19 -03004990 } else if ((analog_mode ||
4991 hdw->hdw_desc->flag_digital_requires_cx23416) &&
4992 !hdw->state_encoder_ok) {
Mike Isely681c7392007-11-26 01:48:52 -03004993 st = PVR2_STATE_WARM;
Mike Isely1b9c18c2008-04-22 14:45:41 -03004994 } else if (hdw->flag_tripped ||
4995 (analog_mode && hdw->flag_decoder_missed)) {
Mike Isely681c7392007-11-26 01:48:52 -03004996 st = PVR2_STATE_ERROR;
Mike Isely62433e32008-04-22 14:45:40 -03004997 } else if (hdw->state_usbstream_run &&
Mike Isely1b9c18c2008-04-22 14:45:41 -03004998 (!analog_mode ||
Mike Isely62433e32008-04-22 14:45:40 -03004999 (hdw->state_encoder_run && hdw->state_decoder_run))) {
Mike Isely681c7392007-11-26 01:48:52 -03005000 st = PVR2_STATE_RUN;
5001 } else {
5002 st = PVR2_STATE_READY;
5003 }
5004 if (hdw->master_state != st) {
5005 pvr2_trace(PVR2_TRACE_STATE,
5006 "Device state change from %s to %s",
5007 pvr2_get_state_name(hdw->master_state),
5008 pvr2_get_state_name(st));
Mike Isely40381cb2008-04-22 14:45:42 -03005009 pvr2_led_ctrl(hdw,st == PVR2_STATE_RUN);
Mike Isely681c7392007-11-26 01:48:52 -03005010 hdw->master_state = st;
5011 state_updated = !0;
5012 callback_flag = !0;
5013 }
5014 if (state_updated) {
5015 /* Trigger anyone waiting on any state changes here. */
5016 wake_up(&hdw->state_wait_data);
5017 }
5018
5019 if (pvrusb2_debug & PVR2_TRACE_STBITS) {
5020 pvr2_hdw_state_log_state(hdw);
5021 }
5022 pvr2_trace(PVR2_TRACE_STBITS,
5023 "Drive state check DONE callback=%d",callback_flag);
5024
5025 return callback_flag;
5026}
5027
5028
5029/* Cause kernel thread to check / update driver state */
5030static void pvr2_hdw_state_sched(struct pvr2_hdw *hdw)
5031{
5032 if (hdw->state_stale) return;
5033 hdw->state_stale = !0;
5034 trace_stbit("state_stale",hdw->state_stale);
5035 queue_work(hdw->workqueue,&hdw->workpoll);
5036}
5037
5038
Mike Iselyd8554972006-06-26 20:58:46 -03005039int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *dp)
5040{
5041 return pvr2_read_register(hdw,PVR2_GPIO_DIR,dp);
5042}
5043
5044
5045int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *dp)
5046{
5047 return pvr2_read_register(hdw,PVR2_GPIO_OUT,dp);
5048}
5049
5050
5051int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *dp)
5052{
5053 return pvr2_read_register(hdw,PVR2_GPIO_IN,dp);
5054}
5055
5056
5057int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val)
5058{
5059 u32 cval,nval;
5060 int ret;
5061 if (~msk) {
5062 ret = pvr2_read_register(hdw,PVR2_GPIO_DIR,&cval);
5063 if (ret) return ret;
5064 nval = (cval & ~msk) | (val & msk);
5065 pvr2_trace(PVR2_TRACE_GPIO,
5066 "GPIO direction changing 0x%x:0x%x"
5067 " from 0x%x to 0x%x",
5068 msk,val,cval,nval);
5069 } else {
5070 nval = val;
5071 pvr2_trace(PVR2_TRACE_GPIO,
5072 "GPIO direction changing to 0x%x",nval);
5073 }
5074 return pvr2_write_register(hdw,PVR2_GPIO_DIR,nval);
5075}
5076
5077
5078int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val)
5079{
5080 u32 cval,nval;
5081 int ret;
5082 if (~msk) {
5083 ret = pvr2_read_register(hdw,PVR2_GPIO_OUT,&cval);
5084 if (ret) return ret;
5085 nval = (cval & ~msk) | (val & msk);
5086 pvr2_trace(PVR2_TRACE_GPIO,
5087 "GPIO output changing 0x%x:0x%x from 0x%x to 0x%x",
5088 msk,val,cval,nval);
5089 } else {
5090 nval = val;
5091 pvr2_trace(PVR2_TRACE_GPIO,
5092 "GPIO output changing to 0x%x",nval);
5093 }
5094 return pvr2_write_register(hdw,PVR2_GPIO_OUT,nval);
5095}
5096
5097
Mike Iselya51f5002009-03-06 23:30:37 -03005098void pvr2_hdw_status_poll(struct pvr2_hdw *hdw)
5099{
Mike Isely40f07112009-03-07 00:08:17 -03005100 struct v4l2_tuner *vtp = &hdw->tuner_signal_info;
5101 memset(vtp, 0, sizeof(*vtp));
Mike Isely2641df32009-03-07 00:13:25 -03005102 hdw->tuner_signal_stale = 0;
Mike Isely40f07112009-03-07 00:08:17 -03005103 /* Note: There apparently is no replacement for VIDIOC_CROPCAP
5104 using v4l2-subdev - therefore we can't support that AT ALL right
5105 now. (Of course, no sub-drivers seem to implement it either.
5106 But now it's a a chicken and egg problem...) */
5107 v4l2_device_call_all(&hdw->v4l2_dev, 0, tuner, g_tuner,
5108 &hdw->tuner_signal_info);
Mike Isely2641df32009-03-07 00:13:25 -03005109 pvr2_trace(PVR2_TRACE_CHIPS, "subdev status poll"
Mike Isely40f07112009-03-07 00:08:17 -03005110 " type=%u strength=%u audio=0x%x cap=0x%x"
5111 " low=%u hi=%u",
5112 vtp->type,
5113 vtp->signal, vtp->rxsubchans, vtp->capability,
5114 vtp->rangelow, vtp->rangehigh);
Mike Isely2641df32009-03-07 00:13:25 -03005115
5116 /* We have to do this to avoid getting into constant polling if
5117 there's nobody to answer a poll of cropcap info. */
5118 hdw->cropcap_stale = 0;
Mike Iselya51f5002009-03-06 23:30:37 -03005119}
5120
5121
Mike Isely7fb20fa2008-04-22 14:45:37 -03005122unsigned int pvr2_hdw_get_input_available(struct pvr2_hdw *hdw)
5123{
5124 return hdw->input_avail_mask;
5125}
5126
5127
Mike Isely1cb03b72008-04-21 03:47:43 -03005128unsigned int pvr2_hdw_get_input_allowed(struct pvr2_hdw *hdw)
5129{
5130 return hdw->input_allowed_mask;
5131}
5132
5133
5134static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v)
5135{
5136 if (hdw->input_val != v) {
5137 hdw->input_val = v;
5138 hdw->input_dirty = !0;
5139 }
5140
5141 /* Handle side effects - if we switch to a mode that needs the RF
5142 tuner, then select the right frequency choice as well and mark
5143 it dirty. */
5144 if (hdw->input_val == PVR2_CVAL_INPUT_RADIO) {
5145 hdw->freqSelector = 0;
5146 hdw->freqDirty = !0;
5147 } else if ((hdw->input_val == PVR2_CVAL_INPUT_TV) ||
5148 (hdw->input_val == PVR2_CVAL_INPUT_DTV)) {
5149 hdw->freqSelector = 1;
5150 hdw->freqDirty = !0;
5151 }
5152 return 0;
5153}
5154
5155
5156int pvr2_hdw_set_input_allowed(struct pvr2_hdw *hdw,
5157 unsigned int change_mask,
5158 unsigned int change_val)
5159{
5160 int ret = 0;
5161 unsigned int nv,m,idx;
5162 LOCK_TAKE(hdw->big_lock);
5163 do {
5164 nv = hdw->input_allowed_mask & ~change_mask;
5165 nv |= (change_val & change_mask);
5166 nv &= hdw->input_avail_mask;
5167 if (!nv) {
5168 /* No legal modes left; return error instead. */
5169 ret = -EPERM;
5170 break;
5171 }
5172 hdw->input_allowed_mask = nv;
5173 if ((1 << hdw->input_val) & hdw->input_allowed_mask) {
5174 /* Current mode is still in the allowed mask, so
5175 we're done. */
5176 break;
5177 }
5178 /* Select and switch to a mode that is still in the allowed
5179 mask */
5180 if (!hdw->input_allowed_mask) {
5181 /* Nothing legal; give up */
5182 break;
5183 }
5184 m = hdw->input_allowed_mask;
5185 for (idx = 0; idx < (sizeof(m) << 3); idx++) {
5186 if (!((1 << idx) & m)) continue;
5187 pvr2_hdw_set_input(hdw,idx);
5188 break;
5189 }
5190 } while (0);
5191 LOCK_GIVE(hdw->big_lock);
5192 return ret;
5193}
5194
5195
Mike Iselye61b6fc2006-07-18 22:42:18 -03005196/* Find I2C address of eeprom */
Adrian Bunk07e337e2006-06-30 11:30:20 -03005197static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw)
Mike Iselyd8554972006-06-26 20:58:46 -03005198{
5199 int result;
5200 LOCK_TAKE(hdw->ctl_lock); do {
Michael Krufky8d364362007-01-22 02:17:55 -03005201 hdw->cmd_buffer[0] = FX2CMD_GET_EEPROM_ADDR;
Mike Iselyd8554972006-06-26 20:58:46 -03005202 result = pvr2_send_request(hdw,
5203 hdw->cmd_buffer,1,
5204 hdw->cmd_buffer,1);
5205 if (result < 0) break;
5206 result = hdw->cmd_buffer[0];
5207 } while(0); LOCK_GIVE(hdw->ctl_lock);
5208 return result;
5209}
5210
5211
Mike Isely32ffa9a2006-09-23 22:26:52 -03005212int pvr2_hdw_register_access(struct pvr2_hdw *hdw,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005213 struct v4l2_dbg_match *match, u64 reg_id,
5214 int setFl, u64 *val_ptr)
Mike Isely32ffa9a2006-09-23 22:26:52 -03005215{
5216#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005217 struct v4l2_dbg_register req;
Mike Isely6d988162006-09-28 17:53:49 -03005218 int stat = 0;
5219 int okFl = 0;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005220
Mike Isely201f5c92007-01-28 16:08:36 -03005221 if (!capable(CAP_SYS_ADMIN)) return -EPERM;
5222
Hans Verkuilaecde8b2008-12-30 07:14:19 -03005223 req.match = *match;
Mike Isely32ffa9a2006-09-23 22:26:52 -03005224 req.reg = reg_id;
5225 if (setFl) req.val = *val_ptr;
Mike Iselyd8f5b9b2009-03-07 00:05:00 -03005226 /* It would be nice to know if a sub-device answered the request */
5227 v4l2_device_call_all(&hdw->v4l2_dev, 0, core, g_register, &req);
5228 if (!setFl) *val_ptr = req.val;
Mike Isely6d988162006-09-28 17:53:49 -03005229 if (okFl) {
5230 return stat;
5231 }
Mike Isely32ffa9a2006-09-23 22:26:52 -03005232 return -EINVAL;
5233#else
5234 return -ENOSYS;
5235#endif
5236}
5237
5238
Mike Iselyd8554972006-06-26 20:58:46 -03005239/*
5240 Stuff for Emacs to see, in order to encourage consistent editing style:
5241 *** Local Variables: ***
5242 *** mode: c ***
5243 *** fill-column: 75 ***
5244 *** tab-width: 8 ***
5245 *** c-basic-offset: 8 ***
5246 *** End: ***
5247 */