2 * cx18 init/start/stop/exit stream functions
4 * Derived from ivtv-streams.c
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
7 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
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.
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.
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
25 #include "cx18-driver.h"
27 #include "cx18-fileops.h"
28 #include "cx18-mailbox.h"
30 #include "cx18-queue.h"
31 #include "cx18-ioctl.h"
32 #include "cx18-streams.h"
33 #include "cx18-cards.h"
35 #include "cx18-av-core.h"
38 #define CX18_DSP0_INTERRUPT_MASK 0xd0004C
40 static struct file_operations cx18_v4l2_enc_fops = {
42 .read = cx18_v4l2_read,
43 .open = cx18_v4l2_open,
44 /* FIXME change to video_ioctl2 if serialization lock can be removed */
45 .ioctl = cx18_v4l2_ioctl,
46 .compat_ioctl = v4l_compat_ioctl32,
47 .release = cx18_v4l2_close,
48 .poll = cx18_v4l2_enc_poll,
51 /* offset from 0 to register ts v4l2 minors on */
52 #define CX18_V4L2_ENC_TS_OFFSET 16
53 /* offset from 0 to register pcm v4l2 minors on */
54 #define CX18_V4L2_ENC_PCM_OFFSET 24
55 /* offset from 0 to register yuv v4l2 minors on */
56 #define CX18_V4L2_ENC_YUV_OFFSET 32
63 enum v4l2_buf_type buf_type;
64 struct file_operations *fops;
65 } cx18_stream_info[] = {
66 { /* CX18_ENC_STREAM_TYPE_MPG */
69 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
72 { /* CX18_ENC_STREAM_TYPE_TS */
75 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
78 { /* CX18_ENC_STREAM_TYPE_YUV */
80 VFL_TYPE_GRABBER, CX18_V4L2_ENC_YUV_OFFSET,
81 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
84 { /* CX18_ENC_STREAM_TYPE_VBI */
87 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VBI_CAPTURE,
90 { /* CX18_ENC_STREAM_TYPE_PCM */
92 VFL_TYPE_GRABBER, CX18_V4L2_ENC_PCM_OFFSET,
93 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_PRIVATE,
96 { /* CX18_ENC_STREAM_TYPE_IDX */
99 PCI_DMA_FROMDEVICE, V4L2_BUF_TYPE_VIDEO_CAPTURE,
102 { /* CX18_ENC_STREAM_TYPE_RAD */
105 PCI_DMA_NONE, V4L2_BUF_TYPE_PRIVATE,
110 static void cx18_stream_init(struct cx18 *cx, int type)
112 struct cx18_stream *s = &cx->streams[type];
113 struct video_device *dev = s->v4l2dev;
115 /* we need to keep v4l2dev, so restore it afterwards */
116 memset(s, 0, sizeof(*s));
119 /* initialize cx18_stream fields */
122 s->name = cx18_stream_info[type].name;
123 s->handle = CX18_INVALID_TASK_HANDLE;
125 s->dma = cx18_stream_info[type].dma;
126 s->buffers = cx->stream_buffers[type];
127 s->buf_size = cx->stream_buf_size[type];
129 mutex_init(&s->qlock);
130 init_waitqueue_head(&s->waitq);
132 cx18_queue_init(&s->q_free);
133 cx18_queue_init(&s->q_busy);
134 cx18_queue_init(&s->q_full);
137 static int cx18_prep_dev(struct cx18 *cx, int type)
139 struct cx18_stream *s = &cx->streams[type];
140 u32 cap = cx->v4l2_cap;
141 int num_offset = cx18_stream_info[type].num_offset;
142 int num = cx->num + cx18_first_minor + num_offset;
144 /* These four fields are always initialized. If v4l2dev == NULL, then
145 this stream is not in use. In that case no other fields but these
150 s->name = cx18_stream_info[type].name;
152 /* Check whether the radio is supported */
153 if (type == CX18_ENC_STREAM_TYPE_RAD && !(cap & V4L2_CAP_RADIO))
156 /* Check whether VBI is supported */
157 if (type == CX18_ENC_STREAM_TYPE_VBI &&
158 !(cap & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE)))
161 /* User explicitly selected 0 buffers for these streams, so don't
163 if (cx18_stream_info[type].dma != PCI_DMA_NONE &&
164 cx->stream_buffers[type] == 0) {
165 CX18_INFO("Disabled %s device\n", cx18_stream_info[type].name);
169 cx18_stream_init(cx, type);
171 if (num_offset == -1)
174 /* allocate and initialize the v4l2 video device structure */
175 s->v4l2dev = video_device_alloc();
176 if (s->v4l2dev == NULL) {
177 CX18_ERR("Couldn't allocate v4l2 video_device for %s\n",
182 snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "cx18-%d",
185 s->v4l2dev->num = num;
186 s->v4l2dev->parent = &cx->dev->dev;
187 s->v4l2dev->fops = cx18_stream_info[type].fops;
188 s->v4l2dev->release = video_device_release;
189 s->v4l2dev->tvnorms = V4L2_STD_ALL;
190 cx18_set_funcs(s->v4l2dev);
194 /* Initialize v4l2 variables and register v4l2 devices */
195 int cx18_streams_setup(struct cx18 *cx)
199 /* Setup V4L2 Devices */
200 for (type = 0; type < CX18_MAX_STREAMS; type++) {
202 ret = cx18_prep_dev(cx, type);
206 /* Allocate Stream */
207 ret = cx18_stream_alloc(&cx->streams[type]);
211 if (type == CX18_MAX_STREAMS)
214 /* One or more streams could not be initialized. Clean 'em all up. */
215 cx18_streams_cleanup(cx, 0);
219 static int cx18_reg_dev(struct cx18 *cx, int type)
221 struct cx18_stream *s = &cx->streams[type];
222 int vfl_type = cx18_stream_info[type].vfl_type;
225 /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something?
226 * We need a VFL_TYPE_TS defined.
228 if (strcmp("TS", s->name) == 0) {
229 /* just return if no DVB is supported */
230 if ((cx->card->hw_all & CX18_HW_DVB) == 0)
232 ret = cx18_dvb_register(s);
234 CX18_ERR("DVB failed to register\n");
239 if (s->v4l2dev == NULL)
242 num = s->v4l2dev->num;
243 /* card number + user defined offset + device offset */
244 if (type != CX18_ENC_STREAM_TYPE_MPG) {
245 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MPG];
248 num = s_mpg->v4l2dev->num + cx18_stream_info[type].num_offset;
251 /* Register device. First try the desired minor, then any free one. */
252 ret = video_register_device(s->v4l2dev, vfl_type, num);
254 CX18_ERR("Couldn't register v4l2 device for %s kernel number %d\n",
256 video_device_release(s->v4l2dev);
260 num = s->v4l2dev->num;
263 case VFL_TYPE_GRABBER:
264 CX18_INFO("Registered device video%d for %s (%d x %d kB)\n",
265 num, s->name, cx->stream_buffers[type],
266 cx->stream_buf_size[type]/1024);
270 CX18_INFO("Registered device radio%d for %s\n",
275 if (cx->stream_buffers[type])
276 CX18_INFO("Registered device vbi%d for %s "
278 num, s->name, cx->stream_buffers[type],
279 cx->stream_buf_size[type]);
281 CX18_INFO("Registered device vbi%d for %s\n",
289 /* Register v4l2 devices */
290 int cx18_streams_register(struct cx18 *cx)
296 /* Register V4L2 devices */
297 for (type = 0; type < CX18_MAX_STREAMS; type++) {
298 err = cx18_reg_dev(cx, type);
306 /* One or more streams could not be initialized. Clean 'em all up. */
307 cx18_streams_cleanup(cx, 1);
311 /* Unregister v4l2 devices */
312 void cx18_streams_cleanup(struct cx18 *cx, int unregister)
314 struct video_device *vdev;
317 /* Teardown all streams */
318 for (type = 0; type < CX18_MAX_STREAMS; type++) {
319 if (cx->streams[type].dvb.enabled) {
320 cx18_dvb_unregister(&cx->streams[type]);
321 cx->streams[type].dvb.enabled = false;
324 vdev = cx->streams[type].v4l2dev;
326 cx->streams[type].v4l2dev = NULL;
330 cx18_stream_free(&cx->streams[type]);
332 /* Unregister or release device */
334 video_unregister_device(vdev);
336 video_device_release(vdev);
340 static void cx18_vbi_setup(struct cx18_stream *s)
342 struct cx18 *cx = s->cx;
343 int raw = cx18_raw_vbi(cx);
344 u32 data[CX2341X_MBOX_MAX_DATA];
349 cx->vbi.start[0] = 10;
350 cx->vbi.start[1] = 273;
351 } else { /* PAL/SECAM */
353 cx->vbi.start[0] = 6;
354 cx->vbi.start[1] = 318;
357 /* setup VBI registers */
358 cx18_av_cmd(cx, VIDIOC_S_FMT, &cx->vbi.in);
360 /* determine number of lines and total number of VBI bytes.
361 A raw line takes 1444 bytes: 4 byte SAV code + 2 * 720
362 A sliced line takes 51 bytes: 4 byte frame header, 4 byte internal
363 header, 42 data bytes + checksum (to be confirmed) */
365 lines = cx->vbi.count * 2;
367 lines = cx->is_60hz ? 24 : 38;
372 cx->vbi.enc_size = lines *
373 (raw ? cx->vbi.raw_size : cx->vbi.sliced_size);
376 /* Lines per field */
377 data[1] = (lines / 2) | ((lines / 2) << 16);
379 data[2] = (raw ? cx->vbi.raw_decoder_line_size
380 : cx->vbi.sliced_decoder_line_size);
381 /* Every X number of frames a VBI interrupt arrives
382 (frames as in 25 or 30 fps) */
384 /* Setup VBI for the cx25840 digitizer */
386 data[4] = 0x20602060;
387 data[5] = 0x307090d0;
389 data[4] = 0xB0F0B0F0;
390 data[5] = 0xA0E0A0E0;
393 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n",
394 data[0], data[1], data[2], data[3], data[4], data[5]);
396 if (s->type == CX18_ENC_STREAM_TYPE_VBI)
397 cx18_api(cx, CX18_CPU_SET_RAW_VBI_PARAM, 6, data);
400 struct cx18_queue *cx18_stream_put_buf_fw(struct cx18_stream *s,
401 struct cx18_buffer *buf)
403 struct cx18 *cx = s->cx;
404 struct cx18_queue *q;
406 /* Don't give it to the firmware, if we're not running a capture */
407 if (s->handle == CX18_INVALID_TASK_HANDLE ||
408 !test_bit(CX18_F_S_STREAMING, &s->s_flags))
409 return cx18_enqueue(s, buf, &s->q_free);
411 q = cx18_enqueue(s, buf, &s->q_busy);
413 return q; /* The firmware has the max buffers it can handle */
415 cx18_buf_sync_for_device(s, buf);
416 cx18_vapi(cx, CX18_CPU_DE_SET_MDL, 5, s->handle,
417 (void __iomem *) &cx->scb->cpu_mdl[buf->id] - cx->enc_mem,
418 1, buf->id, s->buf_size);
422 void cx18_stream_load_fw_queue(struct cx18_stream *s)
424 struct cx18_queue *q;
425 struct cx18_buffer *buf;
427 if (atomic_read(&s->q_free.buffers) == 0 ||
428 atomic_read(&s->q_busy.buffers) >= CX18_MAX_FW_MDLS_PER_STREAM)
431 /* Move from q_free to q_busy notifying the firmware, until the limit */
433 buf = cx18_dequeue(s, &s->q_free);
436 q = cx18_stream_put_buf_fw(s, buf);
437 } while (atomic_read(&s->q_busy.buffers) < CX18_MAX_FW_MDLS_PER_STREAM
441 int cx18_start_v4l2_encode_stream(struct cx18_stream *s)
443 u32 data[MAX_MB_ARGUMENTS];
444 struct cx18 *cx = s->cx;
445 struct cx18_buffer *buf;
449 if (s->v4l2dev == NULL && s->dvb.enabled == 0)
452 CX18_DEBUG_INFO("Start encoder stream %s\n", s->name);
455 case CX18_ENC_STREAM_TYPE_MPG:
456 captype = CAPTURE_CHANNEL_TYPE_MPEG;
457 cx->mpg_data_received = cx->vbi_data_inserted = 0;
458 cx->dualwatch_jiffies = jiffies;
459 cx->dualwatch_stereo_mode = cx->params.audio_properties & 0x300;
460 cx->search_pack_header = 0;
463 case CX18_ENC_STREAM_TYPE_TS:
464 captype = CAPTURE_CHANNEL_TYPE_TS;
467 case CX18_ENC_STREAM_TYPE_YUV:
468 captype = CAPTURE_CHANNEL_TYPE_YUV;
470 case CX18_ENC_STREAM_TYPE_PCM:
471 captype = CAPTURE_CHANNEL_TYPE_PCM;
473 case CX18_ENC_STREAM_TYPE_VBI:
474 captype = cx18_raw_vbi(cx) ?
475 CAPTURE_CHANNEL_TYPE_VBI : CAPTURE_CHANNEL_TYPE_SLICED_VBI;
477 cx->vbi.inserted_frame = 0;
478 memset(cx->vbi.sliced_mpeg_size,
479 0, sizeof(cx->vbi.sliced_mpeg_size));
485 /* mute/unmute video */
486 cx18_vapi(cx, CX18_CPU_SET_VIDEO_MUTE, 2,
487 s->handle, !!test_bit(CX18_F_I_RADIO_USER, &cx->i_flags));
489 /* Clear Streamoff flags in case left from last capture */
490 clear_bit(CX18_F_S_STREAMOFF, &s->s_flags);
492 cx18_vapi_result(cx, data, CX18_CREATE_TASK, 1, CPU_CMD_MASK_CAPTURE);
494 cx18_vapi(cx, CX18_CPU_SET_CHANNEL_TYPE, 2, s->handle, captype);
496 if (atomic_read(&cx->ana_capturing) == 0 && !ts) {
497 struct cx18_api_func_private priv;
499 /* Stuff from Windows, we don't know what it is */
500 cx18_vapi(cx, CX18_CPU_SET_VER_CROP_LINE, 2, s->handle, 0);
501 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 3, 1);
502 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 8, 0);
503 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 3, s->handle, 4, 1);
504 cx18_vapi(cx, CX18_CPU_SET_MISC_PARAMETERS, 2, s->handle, 12);
506 cx18_vapi(cx, CX18_CPU_SET_CAPTURE_LINE_NO, 3,
507 s->handle, cx->digitizer, cx->digitizer);
510 if (cx->v4l2_cap & V4L2_CAP_VBI_CAPTURE)
513 /* assign program index info.
514 Mask 7: select I/P/B, Num_req: 400 max */
515 cx18_vapi_result(cx, data, CX18_CPU_SET_INDEXTABLE, 1, 0);
517 /* Setup API for Stream */
520 cx2341x_update(&priv, cx18_api_func, NULL, &cx->params);
523 if (atomic_read(&cx->tot_capturing) == 0) {
524 clear_bit(CX18_F_I_EOS, &cx->i_flags);
525 cx18_write_reg(cx, 7, CX18_DSP0_INTERRUPT_MASK);
528 cx18_vapi(cx, CX18_CPU_DE_SET_MDL_ACK, 3, s->handle,
529 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][0] - cx->enc_mem,
530 (void __iomem *)&cx->scb->cpu_mdl_ack[s->type][1] - cx->enc_mem);
532 /* Init all the cpu_mdls for this stream */
533 cx18_flush_queues(s);
534 mutex_lock(&s->qlock);
535 list_for_each_entry(buf, &s->q_free.list, list) {
536 cx18_writel(cx, buf->dma_handle,
537 &cx->scb->cpu_mdl[buf->id].paddr);
538 cx18_writel(cx, s->buf_size, &cx->scb->cpu_mdl[buf->id].length);
540 mutex_unlock(&s->qlock);
541 cx18_stream_load_fw_queue(s);
544 if (cx18_vapi(cx, CX18_CPU_CAPTURE_START, 1, s->handle)) {
545 CX18_DEBUG_WARN("Error starting capture!\n");
546 /* Ensure we're really not capturing before releasing MDLs */
547 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
548 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, 1);
550 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
551 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
552 /* FIXME - CX18_F_S_STREAMOFF as well? */
553 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
554 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
555 s->handle = CX18_INVALID_TASK_HANDLE;
556 if (atomic_read(&cx->tot_capturing) == 0) {
557 set_bit(CX18_F_I_EOS, &cx->i_flags);
558 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
563 /* you're live! sit back and await interrupts :) */
565 atomic_inc(&cx->ana_capturing);
566 atomic_inc(&cx->tot_capturing);
570 void cx18_stop_all_captures(struct cx18 *cx)
574 for (i = CX18_MAX_STREAMS - 1; i >= 0; i--) {
575 struct cx18_stream *s = &cx->streams[i];
577 if (s->v4l2dev == NULL && s->dvb.enabled == 0)
579 if (test_bit(CX18_F_S_STREAMING, &s->s_flags))
580 cx18_stop_v4l2_encode_stream(s, 0);
584 int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end)
586 struct cx18 *cx = s->cx;
589 if (s->v4l2dev == NULL && s->dvb.enabled == 0)
592 /* This function assumes that you are allowed to stop the capture
593 and that we are actually capturing */
595 CX18_DEBUG_INFO("Stop Capture\n");
597 if (atomic_read(&cx->tot_capturing) == 0)
600 if (s->type == CX18_ENC_STREAM_TYPE_MPG)
601 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 2, s->handle, !gop_end);
603 cx18_vapi(cx, CX18_CPU_CAPTURE_STOP, 1, s->handle);
607 if (s->type == CX18_ENC_STREAM_TYPE_MPG && gop_end) {
608 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n");
611 if (s->type != CX18_ENC_STREAM_TYPE_TS)
612 atomic_dec(&cx->ana_capturing);
613 atomic_dec(&cx->tot_capturing);
615 /* Clear capture and no-read bits */
616 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
618 /* Tell the CX23418 it can't use our buffers anymore */
619 cx18_vapi(cx, CX18_CPU_DE_RELEASE_MDL, 1, s->handle);
621 cx18_vapi(cx, CX18_DESTROY_TASK, 1, s->handle);
622 s->handle = CX18_INVALID_TASK_HANDLE;
624 if (atomic_read(&cx->tot_capturing) > 0)
627 cx18_write_reg(cx, 5, CX18_DSP0_INTERRUPT_MASK);
633 u32 cx18_find_handle(struct cx18 *cx)
637 /* find first available handle to be used for global settings */
638 for (i = 0; i < CX18_MAX_STREAMS; i++) {
639 struct cx18_stream *s = &cx->streams[i];
641 if (s->v4l2dev && (s->handle != CX18_INVALID_TASK_HANDLE))
644 return CX18_INVALID_TASK_HANDLE;
647 struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle)
650 struct cx18_stream *s;
652 if (handle == CX18_INVALID_TASK_HANDLE)
655 for (i = 0; i < CX18_MAX_STREAMS; i++) {
657 if (s->handle != handle)
659 if (s->v4l2dev || s->dvb.enabled)