]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/video/cx18/cx18-streams.c
V4L/DVB (10755): cx18: Convert the integrated A/V decoder core interface to a v4l2_subdev
[mirror_ubuntu-artful-kernel.git] / drivers / media / video / cx18 / cx18-streams.c
CommitLineData
1c1e45d1
HV
1/*
2 * cx18 init/start/stop/exit stream functions
3 *
4 * Derived from ivtv-streams.c
5 *
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
1ed9dcc8 7 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
1c1e45d1
HV
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 * 02111-1307 USA
23 */
24
25#include "cx18-driver.h"
b1526421 26#include "cx18-io.h"
1c1e45d1
HV
27#include "cx18-fileops.h"
28#include "cx18-mailbox.h"
29#include "cx18-i2c.h"
30#include "cx18-queue.h"
31#include "cx18-ioctl.h"
32#include "cx18-streams.h"
33#include "cx18-cards.h"
34#include "cx18-scb.h"
35#include "cx18-av-core.h"
36#include "cx18-dvb.h"
37
38#define CX18_DSP0_INTERRUPT_MASK 0xd0004C
39
bec43661 40static struct v4l2_file_operations cx18_v4l2_enc_fops = {
daf20d95
HV
41 .owner = THIS_MODULE,
42 .read = cx18_v4l2_read,
43 .open = cx18_v4l2_open,
3b6fe58f 44 /* FIXME change to video_ioctl2 if serialization lock can be removed */
daf20d95 45 .ioctl = cx18_v4l2_ioctl,
daf20d95
HV
46 .release = cx18_v4l2_close,
47 .poll = cx18_v4l2_enc_poll,
1c1e45d1
HV
48};
49
50/* offset from 0 to register ts v4l2 minors on */
51#define CX18_V4L2_ENC_TS_OFFSET 16
52/* offset from 0 to register pcm v4l2 minors on */
53#define CX18_V4L2_ENC_PCM_OFFSET 24
54/* offset from 0 to register yuv v4l2 minors on */
55#define CX18_V4L2_ENC_YUV_OFFSET 32
56
57static struct {
58 const char *name;
59 int vfl_type;
dd89601d 60 int num_offset;
1c1e45d1
HV
61 int dma;
62 enum v4l2_buf_type buf_type;
1c1e45d1
HV
63} cx18_stream_info[] = {
64 { /* CX18_ENC_STREAM_TYPE_MPG */
65 "encoder MPEG",
66 VFL_TYPE_GRABBER, 0,
67 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
1c1e45d1
HV
68 },
69 { /* CX18_ENC_STREAM_TYPE_TS */
70 "TS",
71 VFL_TYPE_GRABBER, -1,
72 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
1c1e45d1
HV
73 },
74 { /* CX18_ENC_STREAM_TYPE_YUV */
75 "encoder YUV",
76 VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET,
77 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
1c1e45d1
HV
78 },
79 { /* CX18_ENC_STREAM_TYPE_VBI */
80 "encoder VBI",
81 VFL_TYPE_VBI, 0,
82 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VBI_CAPTURE,
1c1e45d1
HV
83 },
84 { /* CX18_ENC_STREAM_TYPE_PCM */
85 "encoder PCM audio",
86 VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET,
87 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_PRIVATE,
1c1e45d1
HV
88 },
89 { /* CX18_ENC_STREAM_TYPE_IDX */
90 "encoder IDX",
91 VFL_TYPE_GRABBER, -1,
92 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
1c1e45d1
HV
93 },
94 { /* CX18_ENC_STREAM_TYPE_RAD */
95 "encoder radio",
96 VFL_TYPE_RADIO, 0,
97 PCI_DMA_NONE, V4L2_BUF_TYPE_PRIVATE,
1c1e45d1
HV
98 },
99};
100
101static void cx18_stream_init(struct cx18 *cx, int type)
102{
103 struct cx18_stream *s = &cx->streams[type];
3d05913d 104 struct video_device *video_dev = s->video_dev;
1c1e45d1 105
3d05913d 106 /* we need to keep video_dev, so restore it afterwards */
1c1e45d1 107 memset(s, 0, sizeof(*s));
3d05913d 108 s->video_dev = video_dev;
1c1e45d1
HV
109
110 /* initialize cx18_stream fields */
111 s->cx = cx;
112 s->type = type;
113 s->name = cx18_stream_info[type].name;
d3c5e707 114 s->handle = CX18_INVALID_TASK_HANDLE;
1c1e45d1
HV
115
116 s->dma = cx18_stream_info[type].dma;
6ecd86dc 117 s->buffers = cx->stream_buffers[type];
1c1e45d1 118 s->buf_size = cx->stream_buf_size[type];
6ecd86dc 119
f576ceef 120 mutex_init(&s->qlock);
1c1e45d1
HV
121 init_waitqueue_head(&s->waitq);
122 s->id = -1;
123 cx18_queue_init(&s->q_free);
66c2a6b0 124 cx18_queue_init(&s->q_busy);
1c1e45d1 125 cx18_queue_init(&s->q_full);
1c1e45d1
HV
126}
127
128static int cx18_prep_dev(struct cx18 *cx, int type)
129{
130 struct cx18_stream *s = &cx->streams[type];
131 u32 cap = cx->v4l2_cap;
dd89601d
HV
132 int num_offset = cx18_stream_info[type].num_offset;
133 int num = cx->num + cx18_first_minor + num_offset;
1c1e45d1 134
3d05913d 135 /* These four fields are always initialized. If video_dev == NULL, then
1c1e45d1
HV
136 this stream is not in use. In that case no other fields but these
137 four can be used. */
3d05913d 138 s->video_dev = NULL;
1c1e45d1
HV
139 s->cx = cx;
140 s->type = type;
141 s->name = cx18_stream_info[type].name;
142
143 /* Check whether the radio is supported */
144 if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO))
145 return 0;
146
147 /* Check whether VBI is supported */
148 if (type == CX18_ENC_STREAM_TYPE_VBI &&
149 !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE)))
150 return 0;
151
1c1e45d1
HV
152 /* User explicitly selected 0 buffers for these streams, so don't
153 create them. */
154 if (cx18_stream_info[type].dma != PCI_DMA_NONE &&
6ecd86dc 155 cx->stream_buffers[type] == 0) {
1c1e45d1
HV
156 CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name);
157 return 0;
158 }
159
160 cx18_stream_init(cx, type);
161
dd89601d 162 if (num_offset == -1)
1c1e45d1
HV
163 return 0;
164
165 /* allocate and initialize the v4l2 video device structure */
3d05913d
AW
166 s->video_dev = video_device_alloc();
167 if (s->video_dev == NULL) {
1c1e45d1
HV
168 CX18_ERR("Couldn't allocate v4l2 video_device for %s\n",
169 s->name);
170 return -ENOMEM;
171 }
172
3d05913d 173 snprintf(s->video_dev->name, sizeof(s->video_dev->name), "cx18-%d",
37f89f95 174 cx->num);
1c1e45d1 175
3d05913d
AW
176 s->video_dev->num = num;
177 s->video_dev->parent = &cx->pci_dev->dev;
178 s->video_dev->fops = &cx18_v4l2_enc_fops;
179 s->video_dev->release = video_device_release;
180 s->video_dev->tvnorms = V4L2_STD_ALL;
181 cx18_set_funcs(s->video_dev);
1c1e45d1
HV
182 return 0;
183}
184
185/* Initialize v4l2 variables and register v4l2 devices */
186int cx18_streams_setup(struct cx18 *cx)
187{
9b4a7c8a 188 int type, ret;
1c1e45d1
HV
189
190 /* Setup V4L2 Devices */
191 for (type = 0; type < CX18_MAX_STREAMS; type++) {
192 /* Prepare device */
9b4a7c8a
AW
193 ret = cx18_prep_dev(cx, type);
194 if (ret < 0)
1c1e45d1
HV
195 break;
196
197 /* Allocate Stream */
9b4a7c8a
AW
198 ret = cx18_stream_alloc(&cx->streams[type]);
199 if (ret < 0)
1c1e45d1
HV
200 break;
201 }
202 if (type == CX18_MAX_STREAMS)
203 return 0;
204
205 /* One or more streams could not be initialized. Clean 'em all up. */
3f98387e 206 cx18_streams_cleanup(cx, 0);
9b4a7c8a 207 return ret;
1c1e45d1
HV
208}
209
210static int cx18_reg_dev(struct cx18 *cx, int type)
211{
212 struct cx18_stream *s = &cx->streams[type];
213 int vfl_type = cx18_stream_info[type].vfl_type;
9b4a7c8a 214 int num, ret;
1c1e45d1
HV
215
216 /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something?
217 * We need a VFL_TYPE_TS defined.
218 */
219 if (strcmp("TS", s->name) == 0) {
220 /* just return if no DVB is supported */
221 if ((cx->card->hw_all & CX18_HW_DVB) == 0)
222 return 0;
9b4a7c8a
AW
223 ret = cx18_dvb_register(s);
224 if (ret < 0) {
1c1e45d1 225 CX18_ERR("DVB failed to register\n");
9b4a7c8a 226 return ret;
1c1e45d1
HV
227 }
228 }
229
3d05913d 230 if (s->video_dev == NULL)
1c1e45d1
HV
231 return 0;
232
3d05913d 233 num = s->video_dev->num;
dd89601d
HV
234 /* card number + user defined offset + device offset */
235 if (type != CX18_ENC_STREAM_TYPE_MPG) {
236 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG];
237
3d05913d
AW
238 if (s_mpg->video_dev)
239 num = s_mpg->video_dev->num
240 + cx18_stream_info[type].num_offset;
dd89601d 241 }
1c1e45d1
HV
242
243 /* Register device. First try the desired minor, then any free one. */
3d05913d 244 ret = video_register_device(s->video_dev, vfl_type, num);
9b4a7c8a 245 if (ret < 0) {
dd89601d
HV
246 CX18_ERR("Couldn't register v4l2 device for %s kernel number %d\n",
247 s->name, num);
3d05913d
AW
248 video_device_release(s->video_dev);
249 s->video_dev = NULL;
9b4a7c8a 250 return ret;
1c1e45d1 251 }
3d05913d 252 num = s->video_dev->num;
1c1e45d1
HV
253
254 switch (vfl_type) {
255 case VFL_TYPE_GRABBER:
6ecd86dc
AW
256 CX18_INFO("Registered device video%d for %s (%d x %d kB)\n",
257 num, s->name, cx->stream_buffers[type],
258 cx->stream_buf_size[type]/1024);
1c1e45d1
HV
259 break;
260
261 case VFL_TYPE_RADIO:
262 CX18_INFO("Registered device radio%d for %s\n",
dd89601d 263 num, s->name);
1c1e45d1
HV
264 break;
265
266 case VFL_TYPE_VBI:
6ecd86dc
AW
267 if (cx->stream_buffers[type])
268 CX18_INFO("Registered device vbi%d for %s "
269 "(%d x %d bytes)\n",
270 num, s->name, cx->stream_buffers[type],
271 cx->stream_buf_size[type]);
1c1e45d1
HV
272 else
273 CX18_INFO("Registered device vbi%d for %s\n",
dd89601d 274 num, s->name);
1c1e45d1
HV
275 break;
276 }
277
278 return 0;
279}
280
281/* Register v4l2 devices */
282int cx18_streams_register(struct cx18 *cx)
283{
284 int type;
9b4a7c8a
AW
285 int err;
286 int ret = 0;
1c1e45d1
HV
287
288 /* Register V4L2 devices */
9b4a7c8a
AW
289 for (type = 0; type < CX18_MAX_STREAMS; type++) {
290 err = cx18_reg_dev(cx, type);
291 if (err && ret == 0)
292 ret = err;
293 }
1c1e45d1 294
9b4a7c8a 295 if (ret == 0)
1c1e45d1
HV
296 return 0;
297
298 /* One or more streams could not be initialized. Clean 'em all up. */
3f98387e 299 cx18_streams_cleanup(cx, 1);
9b4a7c8a 300 return ret;
1c1e45d1
HV
301}
302
303/* Unregister v4l2 devices */
3f98387e 304void cx18_streams_cleanup(struct cx18 *cx, int unregister)
1c1e45d1
HV
305{
306 struct video_device *vdev;
307 int type;
308
309 /* Teardown all streams */
310 for (type = 0; type < CX18_MAX_STREAMS; type++) {
fac3639d 311 if (cx->streams[type].dvb.enabled) {
1c1e45d1 312 cx18_dvb_unregister(&cx->streams[type]);
fac3639d
HV
313 cx->streams[type].dvb.enabled = false;
314 }
1c1e45d1 315
3d05913d 316 vdev = cx->streams[type].video_dev;
1c1e45d1 317
3d05913d 318 cx->streams[type].video_dev = NULL;
1c1e45d1
HV
319 if (vdev == NULL)
320 continue;
321
322 cx18_stream_free(&cx->streams[type]);
323
3f98387e
HV
324 /* Unregister or release device */
325 if (unregister)
326 video_unregister_device(vdev);
327 else
328 video_device_release(vdev);
1c1e45d1
HV
329 }
330}
331
332static void cx18_vbi_setup(struct cx18_stream *s)
333{
334 struct cx18 *cx = s->cx;
dd073434 335 int raw = cx18_raw_vbi(cx);
1c1e45d1
HV
336 u32 data[CX2341X_MBOX_MAX_DATA];
337 int lines;
338
339 if (cx->is_60hz) {
340 cx->vbi.count = 12;
341 cx->vbi.start[0] = 10;
342 cx->vbi.start[1] = 273;
343 } else { /* PAL/SECAM */
344 cx->vbi.count = 18;
345 cx->vbi.start[0] = 6;
346 cx->vbi.start[1] = 318;
347 }
348
349 /* setup VBI registers */
350 cx18_av_cmd(cx, VIDIOC_S_FMT, &cx->vbi.in);
351
dcc0ef88
AW
352 /*
353 * Send the CX18_CPU_SET_RAW_VBI_PARAM API command to setup Encoder Raw
354 * VBI when the first analog capture channel starts, as once it starts
355 * (e.g. MPEG), we can't effect any change in the Encoder Raw VBI setup
356 * (i.e. for the VBI capture channels). We also send it for each
357 * analog capture channel anyway just to make sure we get the proper
358 * behavior
359 */
1c1e45d1
HV
360 if (raw) {
361 lines = cx->vbi.count * 2;
362 } else {
812b1f9d
AW
363 /*
364 * For 525/60 systems, according to the VIP 2 & BT.656 std:
365 * The EAV RP code's Field bit toggles on line 4, a few lines
366 * after the Vertcal Blank bit has already toggled.
367 * Tell the encoder to capture 21-4+1=18 lines per field,
368 * since we want lines 10 through 21.
369 *
370 * FIXME - revisit for 625/50 systems
371 */
372 lines = cx->is_60hz ? (21 - 4 + 1) * 2 : 38;
1c1e45d1
HV
373 }
374
1c1e45d1
HV
375 data[0] = s->handle;
376 /* Lines per field */
377 data[1] = (lines / 2) | ((lines / 2) << 16);
378 /* bytes per line */
302df970
AW
379 data[2] = (raw ? vbi_active_samples
380 : (cx->is_60hz ? vbi_hblank_samples_60Hz
381 : vbi_hblank_samples_50Hz));
1c1e45d1
HV
382 /* Every X number of frames a VBI interrupt arrives
383 (frames as in 25 or 30 fps) */
384 data[3] = 1;
302df970
AW
385 /*
386 * Set the SAV/EAV RP codes to look for as start/stop points
387 * when in VIP-1.1 mode
388 */
1c1e45d1 389 if (raw) {
302df970
AW
390 /*
391 * Start codes for beginning of "active" line in vertical blank
392 * 0x20 ( VerticalBlank )
393 * 0x60 ( EvenField VerticalBlank )
394 */
1c1e45d1 395 data[4] = 0x20602060;
302df970
AW
396 /*
397 * End codes for end of "active" raw lines and regular lines
398 * 0x30 ( VerticalBlank HorizontalBlank)
399 * 0x70 ( EvenField VerticalBlank HorizontalBlank)
400 * 0x90 (Task HorizontalBlank)
401 * 0xd0 (Task EvenField HorizontalBlank)
402 */
af009cf6 403 data[5] = 0x307090d0;
1c1e45d1 404 } else {
302df970
AW
405 /*
406 * End codes for active video, we want data in the hblank region
407 * 0xb0 (Task 0 VerticalBlank HorizontalBlank)
408 * 0xf0 (Task EvenField VerticalBlank HorizontalBlank)
409 *
410 * Since the V bit is only allowed to toggle in the EAV RP code,
411 * just before the first active region line, these two
812b1f9d 412 * are problematic:
302df970
AW
413 * 0x90 (Task HorizontalBlank)
414 * 0xd0 (Task EvenField HorizontalBlank)
812b1f9d
AW
415 *
416 * We have set the digitzer to consider the first active line
417 * as part of VerticalBlank as well so we don't have to look for
418 * these problem codes nor lose the last line of sliced data.
302df970 419 */
1c1e45d1 420 data[4] = 0xB0F0B0F0;
302df970
AW
421 /*
422 * Start codes for beginning of active line in vertical blank
423 * 0xa0 (Task VerticalBlank )
424 * 0xe0 (Task EvenField VerticalBlank )
425 */
1c1e45d1
HV
426 data[5] = 0xA0E0A0E0;
427 }
428
429 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n",
430 data[0], data[1], data[2], data[3], data[4], data[5]);
431
dcc0ef88 432 cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data);
1c1e45d1
HV
433}
434
66c2a6b0
AW
435struct cx18_queue *cx18_stream_put_buf_fw(struct cx18_stream *s,
436 struct cx18_buffer *buf)
437{
438 struct cx18 *cx = s->cx;
439 struct cx18_queue *q;
440
441 /* Don't give it to the firmware, if we're not running a capture */
442 if (s->handle == CX18_INVALID_TASK_HANDLE ||
443 !test_bit(CX18_F_S_STREAMING, &s->s_flags))
444 return cx18_enqueue(s, buf, &s->q_free);
445
446 q = cx18_enqueue(s, buf, &s->q_busy);
447 if (q != &s->q_busy)
448 return q; /* The firmware has the max buffers it can handle */
449
450 cx18_buf_sync_for_device(s, buf);
451 cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle,
452 (void __iomem *) &cx->scb->cpu_mdl[buf->id] - cx->enc_mem,
453 1, buf->id, s->buf_size);
454 return q;
455}
456
abb096de 457void cx18_stream_load_fw_queue(struct cx18_stream *s)
66c2a6b0 458{
abb096de 459 struct cx18_queue *q;
66c2a6b0 460 struct cx18_buffer *buf;
66c2a6b0 461
abb096de 462 if (atomic_read(&s->q_free.buffers) == 0 ||
0ef02892 463 atomic_read(&s->q_busy.buffers) >= CX18_MAX_FW_MDLS_PER_STREAM)
abb096de
AW
464 return;
465
466 /* Move from q_free to q_busy notifying the firmware, until the limit */
467 do {
468 buf = cx18_dequeue(s, &s->q_free);
469 if (buf == NULL)
470 break;
471 q = cx18_stream_put_buf_fw(s, buf);
0ef02892
AW
472 } while (atomic_read(&s->q_busy.buffers) < CX18_MAX_FW_MDLS_PER_STREAM
473 && q == &s->q_busy);
66c2a6b0
AW
474}
475
1c1e45d1
HV
476int cx18_start_v4l2_encode_stream(struct cx18_stream *s)
477{
478 u32 data[MAX_MB_ARGUMENTS];
479 struct cx18 *cx = s->cx;
66c2a6b0 480 struct cx18_buffer *buf;
1c1e45d1 481 int captype = 0;
dcc0ef88 482 struct cx18_api_func_private priv;
1c1e45d1 483
3d05913d 484 if (s->video_dev == NULL && s->dvb.enabled == 0)
1c1e45d1
HV
485 return -EINVAL;
486
487 CX18_DEBUG_INFO("Start encoder stream %s\n", s->name);
488
489 switch (s->type) {
490 case CX18_ENC_STREAM_TYPE_MPG:
491 captype = CAPTURE_CHANNEL_TYPE_MPEG;
492 cx->mpg_data_received = cx->vbi_data_inserted = 0;
493 cx->dualwatch_jiffies = jiffies;
494 cx->dualwatch_stereo_mode = cx->params.audio_properties & 0x300;
495 cx->search_pack_header = 0;
496 break;
497
498 case CX18_ENC_STREAM_TYPE_TS:
499 captype = CAPTURE_CHANNEL_TYPE_TS;
1c1e45d1
HV
500 break;
501 case CX18_ENC_STREAM_TYPE_YUV:
502 captype = CAPTURE_CHANNEL_TYPE_YUV;
503 break;
504 case CX18_ENC_STREAM_TYPE_PCM:
505 captype = CAPTURE_CHANNEL_TYPE_PCM;
506 break;
507 case CX18_ENC_STREAM_TYPE_VBI:
dcc0ef88 508#ifdef CX18_ENCODER_PARSES_SLICED
dd073434
AW
509 captype = cx18_raw_vbi(cx) ?
510 CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI;
dcc0ef88
AW
511#else
512 /*
513 * Currently we set things up so that Sliced VBI from the
514 * digitizer is handled as Raw VBI by the encoder
515 */
516 captype = CAPTURE_CHANNEL_TYPE_VBI;
517#endif
1c1e45d1
HV
518 cx->vbi.frame = 0;
519 cx->vbi.inserted_frame = 0;
520 memset(cx->vbi.sliced_mpeg_size,
521 0, sizeof(cx->vbi.sliced_mpeg_size));
522 break;
523 default:
524 return -EINVAL;
525 }
1c1e45d1 526
1c1e45d1
HV
527 /* Clear Streamoff flags in case left from last capture */
528 clear_bit(CX18_F_S_STREAMOFF, &s->s_flags);
529
530 cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE);
531 s->handle = data[0];
532 cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype);
533
dcc0ef88
AW
534 /*
535 * For everything but CAPTURE_CHANNEL_TYPE_TS, play it safe and
536 * set up all the parameters, as it is not obvious which parameters the
537 * firmware shares across capture channel types and which it does not.
538 *
539 * Some of the cx18_vapi() calls below apply to only certain capture
540 * channel types. We're hoping there's no harm in calling most of them
541 * anyway, as long as the values are all consistent. Setting some
542 * shared parameters will have no effect once an analog capture channel
543 * has started streaming.
544 */
545 if (captype != CAPTURE_CHANNEL_TYPE_TS) {
1c1e45d1
HV
546 cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0);
547 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1);
548 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0);
549 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1);
1c1e45d1 550
dcc0ef88
AW
551 /*
552 * Audio related reset according to
553 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
554 */
555 if (atomic_read(&cx->ana_capturing) == 0)
556 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2,
557 s->handle, 12);
558
559 /*
560 * Number of lines for Field 1 & Field 2 according to
561 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
f37aa511
AW
562 * Field 1 is 312 for 625 line systems in BT.656
563 * Field 2 is 313 for 625 line systems in BT.656
dcc0ef88 564 */
1c1e45d1 565 cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3,
f37aa511 566 s->handle, 312, 313);
1c1e45d1 567
1c1e45d1
HV
568 if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE)
569 cx18_vbi_setup(s);
570
dcc0ef88
AW
571 /*
572 * assign program index info.
573 * Mask 7: select I/P/B, Num_req: 400 max
574 * FIXME - currently we have this hardcoded as disabled
575 */
1c1e45d1
HV
576 cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 1, 0);
577
dcc0ef88 578 /* Call out to the common CX2341x API setup for user controls */
50b86bac
AW
579 priv.cx = cx;
580 priv.s = s;
581 cx2341x_update(&priv, cx18_api_func, NULL, &cx->params);
dcc0ef88
AW
582
583 /*
584 * When starting a capture and we're set for radio,
585 * ensure the video is muted, despite the user control.
586 */
587 if (!cx->params.video_mute &&
588 test_bit(CX18_F_I_RADIO_USER, &cx->i_flags))
589 cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2, s->handle,
590 (cx->params.video_mute_yuv << 8) | 1);
1c1e45d1
HV
591 }
592
31554ae5 593 if (atomic_read(&cx->tot_capturing) == 0) {
1c1e45d1 594 clear_bit(CX18_F_I_EOS, &cx->i_flags);
b1526421 595 cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK);
1c1e45d1
HV
596 }
597
598 cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle,
990c81c8
AV
599 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem,
600 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem);
1c1e45d1 601
66c2a6b0
AW
602 /* Init all the cpu_mdls for this stream */
603 cx18_flush_queues(s);
604 mutex_lock(&s->qlock);
f6b181ac 605 list_for_each_entry(buf, &s->q_free.list, list) {
b1526421
AW
606 cx18_writel(cx, buf->dma_handle,
607 &cx->scb->cpu_mdl[buf->id].paddr);
608 cx18_writel(cx, s->buf_size, &cx->scb->cpu_mdl[buf->id].length);
1c1e45d1 609 }
66c2a6b0 610 mutex_unlock(&s->qlock);
abb096de 611 cx18_stream_load_fw_queue(s);
66c2a6b0 612
1c1e45d1
HV
613 /* begin_capture */
614 if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) {
615 CX18_DEBUG_WARN("Error starting capture!\n");
3b5df8ea
AW
616 /* Ensure we're really not capturing before releasing MDLs */
617 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
618 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1);
619 else
620 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
66c2a6b0
AW
621 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
622 /* FIXME - CX18_F_S_STREAMOFF as well? */
3b5df8ea 623 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
1c1e45d1 624 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
66c2a6b0
AW
625 s->handle = CX18_INVALID_TASK_HANDLE;
626 if (atomic_read(&cx->tot_capturing) == 0) {
627 set_bit(CX18_F_I_EOS, &cx->i_flags);
628 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
629 }
1c1e45d1
HV
630 return -EINVAL;
631 }
632
633 /* you're live! sit back and await interrupts :) */
dcc0ef88 634 if (captype != CAPTURE_CHANNEL_TYPE_TS)
31554ae5
HV
635 atomic_inc(&cx->ana_capturing);
636 atomic_inc(&cx->tot_capturing);
1c1e45d1
HV
637 return 0;
638}
639
640void cx18_stop_all_captures(struct cx18 *cx)
641{
642 int i;
643
644 for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) {
645 struct cx18_stream *s = &cx->streams[i];
646
3d05913d 647 if (s->video_dev == NULL && s->dvb.enabled == 0)
1c1e45d1
HV
648 continue;
649 if (test_bit(CX18_F_S_STREAMING, &s->s_flags))
650 cx18_stop_v4l2_encode_stream(s, 0);
651 }
652}
653
654int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end)
655{
656 struct cx18 *cx = s->cx;
657 unsigned long then;
658
3d05913d 659 if (s->video_dev == NULL && s->dvb.enabled == 0)
1c1e45d1
HV
660 return -EINVAL;
661
662 /* This function assumes that you are allowed to stop the capture
663 and that we are actually capturing */
664
665 CX18_DEBUG_INFO("Stop Capture\n");
666
31554ae5 667 if (atomic_read(&cx->tot_capturing) == 0)
1c1e45d1
HV
668 return 0;
669
670 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
671 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end);
672 else
673 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
674
675 then = jiffies;
676
677 if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) {
678 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n");
679 }
680
31554ae5
HV
681 if (s->type != CX18_ENC_STREAM_TYPE_TS)
682 atomic_dec(&cx->ana_capturing);
683 atomic_dec(&cx->tot_capturing);
1c1e45d1
HV
684
685 /* Clear capture and no-read bits */
686 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
687
f68d0cf5
AW
688 /* Tell the CX23418 it can't use our buffers anymore */
689 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
690
1c1e45d1 691 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
d3c5e707 692 s->handle = CX18_INVALID_TASK_HANDLE;
1c1e45d1 693
31554ae5 694 if (atomic_read(&cx->tot_capturing) > 0)
1c1e45d1
HV
695 return 0;
696
b1526421 697 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
1c1e45d1
HV
698 wake_up(&s->waitq);
699
700 return 0;
701}
702
703u32 cx18_find_handle(struct cx18 *cx)
704{
705 int i;
706
707 /* find first available handle to be used for global settings */
708 for (i = 0; i < CX18_MAX_STREAMS; i++) {
709 struct cx18_stream *s = &cx->streams[i];
710
3d05913d 711 if (s->video_dev && (s->handle != CX18_INVALID_TASK_HANDLE))
1c1e45d1
HV
712 return s->handle;
713 }
d3c5e707 714 return CX18_INVALID_TASK_HANDLE;
1c1e45d1 715}
ee2d64f5
AW
716
717struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle)
718{
719 int i;
720 struct cx18_stream *s;
721
722 if (handle == CX18_INVALID_TASK_HANDLE)
723 return NULL;
724
725 for (i = 0; i < CX18_MAX_STREAMS; i++) {
726 s = &cx->streams[i];
727 if (s->handle != handle)
728 continue;
3d05913d 729 if (s->video_dev || s->dvb.enabled)
ee2d64f5
AW
730 return s;
731 }
732 return NULL;
733}