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"
37 #define CX18_DSP0_INTERRUPT_MASK 0xd0004C
39 static struct v4l2_file_operations cx18_v4l2_enc_fops
= {
41 .read
= cx18_v4l2_read
,
42 .open
= cx18_v4l2_open
,
43 /* FIXME change to video_ioctl2 if serialization lock can be removed */
44 .ioctl
= cx18_v4l2_ioctl
,
45 .release
= cx18_v4l2_close
,
46 .poll
= cx18_v4l2_enc_poll
,
49 /* offset from 0 to register ts v4l2 minors on */
50 #define CX18_V4L2_ENC_TS_OFFSET 16
51 /* offset from 0 to register pcm v4l2 minors on */
52 #define CX18_V4L2_ENC_PCM_OFFSET 24
53 /* offset from 0 to register yuv v4l2 minors on */
54 #define CX18_V4L2_ENC_YUV_OFFSET 32
61 enum v4l2_buf_type buf_type
;
62 } cx18_stream_info
[] = {
63 { /* CX18_ENC_STREAM_TYPE_MPG */
66 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_VIDEO_CAPTURE
,
68 { /* CX18_ENC_STREAM_TYPE_TS */
71 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_VIDEO_CAPTURE
,
73 { /* CX18_ENC_STREAM_TYPE_YUV */
75 VFL_TYPE_GRABBER
, CX18_V4L2_ENC_YUV_OFFSET
,
76 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_VIDEO_CAPTURE
,
78 { /* CX18_ENC_STREAM_TYPE_VBI */
81 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_VBI_CAPTURE
,
83 { /* CX18_ENC_STREAM_TYPE_PCM */
85 VFL_TYPE_GRABBER
, CX18_V4L2_ENC_PCM_OFFSET
,
86 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_PRIVATE
,
88 { /* CX18_ENC_STREAM_TYPE_IDX */
91 PCI_DMA_FROMDEVICE
, V4L2_BUF_TYPE_VIDEO_CAPTURE
,
93 { /* CX18_ENC_STREAM_TYPE_RAD */
96 PCI_DMA_NONE
, V4L2_BUF_TYPE_PRIVATE
,
100 static void cx18_stream_init(struct cx18
*cx
, int type
)
102 struct cx18_stream
*s
= &cx
->streams
[type
];
103 struct video_device
*video_dev
= s
->video_dev
;
105 /* we need to keep video_dev, so restore it afterwards */
106 memset(s
, 0, sizeof(*s
));
107 s
->video_dev
= video_dev
;
109 /* initialize cx18_stream fields */
112 s
->name
= cx18_stream_info
[type
].name
;
113 s
->handle
= CX18_INVALID_TASK_HANDLE
;
115 s
->dma
= cx18_stream_info
[type
].dma
;
116 s
->buffers
= cx
->stream_buffers
[type
];
117 s
->buf_size
= cx
->stream_buf_size
[type
];
118 INIT_LIST_HEAD(&s
->buf_pool
);
120 s
->mdl_size
= s
->buf_size
* s
->bufs_per_mdl
;
122 init_waitqueue_head(&s
->waitq
);
124 spin_lock_init(&s
->q_free
.lock
);
125 cx18_queue_init(&s
->q_free
);
126 spin_lock_init(&s
->q_busy
.lock
);
127 cx18_queue_init(&s
->q_busy
);
128 spin_lock_init(&s
->q_full
.lock
);
129 cx18_queue_init(&s
->q_full
);
130 spin_lock_init(&s
->q_idle
.lock
);
131 cx18_queue_init(&s
->q_idle
);
133 INIT_WORK(&s
->out_work_order
, cx18_out_work_handler
);
136 static int cx18_prep_dev(struct cx18
*cx
, int type
)
138 struct cx18_stream
*s
= &cx
->streams
[type
];
139 u32 cap
= cx
->v4l2_cap
;
140 int num_offset
= cx18_stream_info
[type
].num_offset
;
141 int num
= cx
->instance
+ cx18_first_minor
+ num_offset
;
143 /* These four fields are always initialized. If video_dev == NULL, then
144 this stream is not in use. In that case no other fields but these
149 s
->name
= cx18_stream_info
[type
].name
;
151 /* Check whether the radio is supported */
152 if (type
== CX18_ENC_STREAM_TYPE_RAD
&& !(cap
& V4L2_CAP_RADIO
))
155 /* Check whether VBI is supported */
156 if (type
== CX18_ENC_STREAM_TYPE_VBI
&&
157 !(cap
& (V4L2_CAP_VBI_CAPTURE
| V4L2_CAP_SLICED_VBI_CAPTURE
)))
160 /* User explicitly selected 0 buffers for these streams, so don't
162 if (cx18_stream_info
[type
].dma
!= PCI_DMA_NONE
&&
163 cx
->stream_buffers
[type
] == 0) {
164 CX18_INFO("Disabled %s device\n", cx18_stream_info
[type
].name
);
168 cx18_stream_init(cx
, type
);
170 if (num_offset
== -1)
173 /* allocate and initialize the v4l2 video device structure */
174 s
->video_dev
= video_device_alloc();
175 if (s
->video_dev
== NULL
) {
176 CX18_ERR("Couldn't allocate v4l2 video_device for %s\n",
181 snprintf(s
->video_dev
->name
, sizeof(s
->video_dev
->name
), "%s %s",
182 cx
->v4l2_dev
.name
, s
->name
);
184 s
->video_dev
->num
= num
;
185 s
->video_dev
->v4l2_dev
= &cx
->v4l2_dev
;
186 s
->video_dev
->fops
= &cx18_v4l2_enc_fops
;
187 s
->video_dev
->release
= video_device_release
;
188 s
->video_dev
->tvnorms
= V4L2_STD_ALL
;
189 cx18_set_funcs(s
->video_dev
);
193 /* Initialize v4l2 variables and register v4l2 devices */
194 int cx18_streams_setup(struct cx18
*cx
)
198 /* Setup V4L2 Devices */
199 for (type
= 0; type
< CX18_MAX_STREAMS
; type
++) {
201 ret
= cx18_prep_dev(cx
, type
);
205 /* Allocate Stream */
206 ret
= cx18_stream_alloc(&cx
->streams
[type
]);
210 if (type
== CX18_MAX_STREAMS
)
213 /* One or more streams could not be initialized. Clean 'em all up. */
214 cx18_streams_cleanup(cx
, 0);
218 static int cx18_reg_dev(struct cx18
*cx
, int type
)
220 struct cx18_stream
*s
= &cx
->streams
[type
];
221 int vfl_type
= cx18_stream_info
[type
].vfl_type
;
224 /* TODO: Shouldn't this be a VFL_TYPE_TRANSPORT or something?
225 * We need a VFL_TYPE_TS defined.
227 if (strcmp("TS", s
->name
) == 0) {
228 /* just return if no DVB is supported */
229 if ((cx
->card
->hw_all
& CX18_HW_DVB
) == 0)
231 ret
= cx18_dvb_register(s
);
233 CX18_ERR("DVB failed to register\n");
238 if (s
->video_dev
== NULL
)
241 num
= s
->video_dev
->num
;
242 /* card number + user defined offset + device offset */
243 if (type
!= CX18_ENC_STREAM_TYPE_MPG
) {
244 struct cx18_stream
*s_mpg
= &cx
->streams
[CX18_ENC_STREAM_TYPE_MPG
];
246 if (s_mpg
->video_dev
)
247 num
= s_mpg
->video_dev
->num
248 + cx18_stream_info
[type
].num_offset
;
250 video_set_drvdata(s
->video_dev
, s
);
252 /* Register device. First try the desired minor, then any free one. */
253 ret
= video_register_device_no_warn(s
->video_dev
, vfl_type
, num
);
255 CX18_ERR("Couldn't register v4l2 device for %s (device node number %d)\n",
257 video_device_release(s
->video_dev
);
261 num
= s
->video_dev
->num
;
264 case VFL_TYPE_GRABBER
:
265 CX18_INFO("Registered device video%d for %s (%d x %d kB)\n",
266 num
, s
->name
, cx
->stream_buffers
[type
],
267 cx
->stream_buf_size
[type
]/1024);
271 CX18_INFO("Registered device radio%d for %s\n",
276 if (cx
->stream_buffers
[type
])
277 CX18_INFO("Registered device vbi%d for %s "
279 num
, s
->name
, cx
->stream_buffers
[type
],
280 cx
->stream_buf_size
[type
]);
282 CX18_INFO("Registered device vbi%d for %s\n",
290 /* Register v4l2 devices */
291 int cx18_streams_register(struct cx18
*cx
)
297 /* Register V4L2 devices */
298 for (type
= 0; type
< CX18_MAX_STREAMS
; type
++) {
299 err
= cx18_reg_dev(cx
, type
);
307 /* One or more streams could not be initialized. Clean 'em all up. */
308 cx18_streams_cleanup(cx
, 1);
312 /* Unregister v4l2 devices */
313 void cx18_streams_cleanup(struct cx18
*cx
, int unregister
)
315 struct video_device
*vdev
;
318 /* Teardown all streams */
319 for (type
= 0; type
< CX18_MAX_STREAMS
; type
++) {
320 if (cx
->streams
[type
].dvb
.enabled
) {
321 cx18_dvb_unregister(&cx
->streams
[type
]);
322 cx
->streams
[type
].dvb
.enabled
= false;
325 vdev
= cx
->streams
[type
].video_dev
;
327 cx
->streams
[type
].video_dev
= NULL
;
331 cx18_stream_free(&cx
->streams
[type
]);
333 /* Unregister or release device */
335 video_unregister_device(vdev
);
337 video_device_release(vdev
);
341 static void cx18_vbi_setup(struct cx18_stream
*s
)
343 struct cx18
*cx
= s
->cx
;
344 int raw
= cx18_raw_vbi(cx
);
345 u32 data
[CX2341X_MBOX_MAX_DATA
];
350 cx
->vbi
.start
[0] = 10;
351 cx
->vbi
.start
[1] = 273;
352 } else { /* PAL/SECAM */
354 cx
->vbi
.start
[0] = 6;
355 cx
->vbi
.start
[1] = 318;
358 /* setup VBI registers */
359 v4l2_subdev_call(cx
->sd_av
, video
, s_fmt
, &cx
->vbi
.in
);
362 * Send the CX18_CPU_SET_RAW_VBI_PARAM API command to setup Encoder Raw
363 * VBI when the first analog capture channel starts, as once it starts
364 * (e.g. MPEG), we can't effect any change in the Encoder Raw VBI setup
365 * (i.e. for the VBI capture channels). We also send it for each
366 * analog capture channel anyway just to make sure we get the proper
370 lines
= cx
->vbi
.count
* 2;
373 * For 525/60 systems, according to the VIP 2 & BT.656 std:
374 * The EAV RP code's Field bit toggles on line 4, a few lines
375 * after the Vertcal Blank bit has already toggled.
376 * Tell the encoder to capture 21-4+1=18 lines per field,
377 * since we want lines 10 through 21.
379 * For 625/50 systems, according to the VIP 2 & BT.656 std:
380 * The EAV RP code's Field bit toggles on line 1, a few lines
381 * after the Vertcal Blank bit has already toggled.
382 * (We've actually set the digitizer so that the Field bit
383 * toggles on line 2.) Tell the encoder to capture 23-2+1=22
384 * lines per field, since we want lines 6 through 23.
386 lines
= cx
->is_60hz
? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2;
390 /* Lines per field */
391 data
[1] = (lines
/ 2) | ((lines
/ 2) << 16);
393 data
[2] = (raw
? vbi_active_samples
394 : (cx
->is_60hz
? vbi_hblank_samples_60Hz
395 : vbi_hblank_samples_50Hz
));
396 /* Every X number of frames a VBI interrupt arrives
397 (frames as in 25 or 30 fps) */
400 * Set the SAV/EAV RP codes to look for as start/stop points
401 * when in VIP-1.1 mode
405 * Start codes for beginning of "active" line in vertical blank
406 * 0x20 ( VerticalBlank )
407 * 0x60 ( EvenField VerticalBlank )
409 data
[4] = 0x20602060;
411 * End codes for end of "active" raw lines and regular lines
412 * 0x30 ( VerticalBlank HorizontalBlank)
413 * 0x70 ( EvenField VerticalBlank HorizontalBlank)
414 * 0x90 (Task HorizontalBlank)
415 * 0xd0 (Task EvenField HorizontalBlank)
417 data
[5] = 0x307090d0;
420 * End codes for active video, we want data in the hblank region
421 * 0xb0 (Task 0 VerticalBlank HorizontalBlank)
422 * 0xf0 (Task EvenField VerticalBlank HorizontalBlank)
424 * Since the V bit is only allowed to toggle in the EAV RP code,
425 * just before the first active region line, these two
427 * 0x90 (Task HorizontalBlank)
428 * 0xd0 (Task EvenField HorizontalBlank)
430 * We have set the digitzer such that we don't have to worry
431 * about these problem codes.
433 data
[4] = 0xB0F0B0F0;
435 * Start codes for beginning of active line in vertical blank
436 * 0xa0 (Task VerticalBlank )
437 * 0xe0 (Task EvenField VerticalBlank )
439 data
[5] = 0xA0E0A0E0;
442 CX18_DEBUG_INFO("Setup VBI h: %d lines %x bpl %d fr %d %x %x\n",
443 data
[0], data
[1], data
[2], data
[3], data
[4], data
[5]);
445 cx18_api(cx
, CX18_CPU_SET_RAW_VBI_PARAM
, 6, data
);
449 struct cx18_queue
*_cx18_stream_put_mdl_fw(struct cx18_stream
*s
,
450 struct cx18_mdl
*mdl
)
452 struct cx18
*cx
= s
->cx
;
453 struct cx18_queue
*q
;
455 /* Don't give it to the firmware, if we're not running a capture */
456 if (s
->handle
== CX18_INVALID_TASK_HANDLE
||
457 test_bit(CX18_F_S_STOPPING
, &s
->s_flags
) ||
458 !test_bit(CX18_F_S_STREAMING
, &s
->s_flags
))
459 return cx18_enqueue(s
, mdl
, &s
->q_free
);
461 q
= cx18_enqueue(s
, mdl
, &s
->q_busy
);
463 return q
; /* The firmware has the max MDLs it can handle */
465 cx18_mdl_sync_for_device(s
, mdl
);
466 cx18_vapi(cx
, CX18_CPU_DE_SET_MDL
, 5, s
->handle
,
467 (void __iomem
*) &cx
->scb
->cpu_mdl
[mdl
->id
] - cx
->enc_mem
,
468 s
->bufs_per_mdl
, mdl
->id
, s
->mdl_size
);
473 void _cx18_stream_load_fw_queue(struct cx18_stream
*s
)
475 struct cx18_queue
*q
;
476 struct cx18_mdl
*mdl
;
478 if (atomic_read(&s
->q_free
.depth
) == 0 ||
479 atomic_read(&s
->q_busy
.depth
) >= CX18_MAX_FW_MDLS_PER_STREAM
)
482 /* Move from q_free to q_busy notifying the firmware, until the limit */
484 mdl
= cx18_dequeue(s
, &s
->q_free
);
487 q
= _cx18_stream_put_mdl_fw(s
, mdl
);
488 } while (atomic_read(&s
->q_busy
.depth
) < CX18_MAX_FW_MDLS_PER_STREAM
492 void cx18_out_work_handler(struct work_struct
*work
)
494 struct cx18_stream
*s
=
495 container_of(work
, struct cx18_stream
, out_work_order
);
497 _cx18_stream_load_fw_queue(s
);
500 static void cx18_stream_configure_mdls(struct cx18_stream
*s
)
502 cx18_unload_queues(s
);
506 s
->mdl_size
= s
->buf_size
* s
->bufs_per_mdl
;
511 int cx18_start_v4l2_encode_stream(struct cx18_stream
*s
)
513 u32 data
[MAX_MB_ARGUMENTS
];
514 struct cx18
*cx
= s
->cx
;
516 struct cx18_api_func_private priv
;
518 if (s
->video_dev
== NULL
&& s
->dvb
.enabled
== 0)
521 CX18_DEBUG_INFO("Start encoder stream %s\n", s
->name
);
524 case CX18_ENC_STREAM_TYPE_MPG
:
525 captype
= CAPTURE_CHANNEL_TYPE_MPEG
;
526 cx
->mpg_data_received
= cx
->vbi_data_inserted
= 0;
527 cx
->dualwatch_jiffies
= jiffies
;
528 cx
->dualwatch_stereo_mode
= cx
->params
.audio_properties
& 0x300;
529 cx
->search_pack_header
= 0;
532 case CX18_ENC_STREAM_TYPE_TS
:
533 captype
= CAPTURE_CHANNEL_TYPE_TS
;
535 case CX18_ENC_STREAM_TYPE_YUV
:
536 captype
= CAPTURE_CHANNEL_TYPE_YUV
;
538 case CX18_ENC_STREAM_TYPE_PCM
:
539 captype
= CAPTURE_CHANNEL_TYPE_PCM
;
541 case CX18_ENC_STREAM_TYPE_VBI
:
542 #ifdef CX18_ENCODER_PARSES_SLICED
543 captype
= cx18_raw_vbi(cx
) ?
544 CAPTURE_CHANNEL_TYPE_VBI
: CAPTURE_CHANNEL_TYPE_SLICED_VBI
;
547 * Currently we set things up so that Sliced VBI from the
548 * digitizer is handled as Raw VBI by the encoder
550 captype
= CAPTURE_CHANNEL_TYPE_VBI
;
553 cx
->vbi
.inserted_frame
= 0;
554 memset(cx
->vbi
.sliced_mpeg_size
,
555 0, sizeof(cx
->vbi
.sliced_mpeg_size
));
561 /* Clear Streamoff flags in case left from last capture */
562 clear_bit(CX18_F_S_STREAMOFF
, &s
->s_flags
);
564 cx18_vapi_result(cx
, data
, CX18_CREATE_TASK
, 1, CPU_CMD_MASK_CAPTURE
);
566 cx18_vapi(cx
, CX18_CPU_SET_CHANNEL_TYPE
, 2, s
->handle
, captype
);
569 * For everything but CAPTURE_CHANNEL_TYPE_TS, play it safe and
570 * set up all the parameters, as it is not obvious which parameters the
571 * firmware shares across capture channel types and which it does not.
573 * Some of the cx18_vapi() calls below apply to only certain capture
574 * channel types. We're hoping there's no harm in calling most of them
575 * anyway, as long as the values are all consistent. Setting some
576 * shared parameters will have no effect once an analog capture channel
577 * has started streaming.
579 if (captype
!= CAPTURE_CHANNEL_TYPE_TS
) {
580 cx18_vapi(cx
, CX18_CPU_SET_VER_CROP_LINE
, 2, s
->handle
, 0);
581 cx18_vapi(cx
, CX18_CPU_SET_MISC_PARAMETERS
, 3, s
->handle
, 3, 1);
582 cx18_vapi(cx
, CX18_CPU_SET_MISC_PARAMETERS
, 3, s
->handle
, 8, 0);
583 cx18_vapi(cx
, CX18_CPU_SET_MISC_PARAMETERS
, 3, s
->handle
, 4, 1);
586 * Audio related reset according to
587 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
589 if (atomic_read(&cx
->ana_capturing
) == 0)
590 cx18_vapi(cx
, CX18_CPU_SET_MISC_PARAMETERS
, 2,
594 * Number of lines for Field 1 & Field 2 according to
595 * Documentation/video4linux/cx2341x/fw-encoder-api.txt
596 * Field 1 is 312 for 625 line systems in BT.656
597 * Field 2 is 313 for 625 line systems in BT.656
599 cx18_vapi(cx
, CX18_CPU_SET_CAPTURE_LINE_NO
, 3,
600 s
->handle
, 312, 313);
602 if (cx
->v4l2_cap
& V4L2_CAP_VBI_CAPTURE
)
606 * assign program index info.
607 * Mask 7: select I/P/B, Num_req: 400 max
608 * FIXME - currently we have this hardcoded as disabled
610 cx18_vapi_result(cx
, data
, CX18_CPU_SET_INDEXTABLE
, 1, 0);
612 /* Call out to the common CX2341x API setup for user controls */
615 cx2341x_update(&priv
, cx18_api_func
, NULL
, &cx
->params
);
618 * When starting a capture and we're set for radio,
619 * ensure the video is muted, despite the user control.
621 if (!cx
->params
.video_mute
&&
622 test_bit(CX18_F_I_RADIO_USER
, &cx
->i_flags
))
623 cx18_vapi(cx
, CX18_CPU_SET_VIDEO_MUTE
, 2, s
->handle
,
624 (cx
->params
.video_mute_yuv
<< 8) | 1);
627 if (atomic_read(&cx
->tot_capturing
) == 0) {
628 clear_bit(CX18_F_I_EOS
, &cx
->i_flags
);
629 cx18_write_reg(cx
, 7, CX18_DSP0_INTERRUPT_MASK
);
632 cx18_vapi(cx
, CX18_CPU_DE_SET_MDL_ACK
, 3, s
->handle
,
633 (void __iomem
*)&cx
->scb
->cpu_mdl_ack
[s
->type
][0] - cx
->enc_mem
,
634 (void __iomem
*)&cx
->scb
->cpu_mdl_ack
[s
->type
][1] - cx
->enc_mem
);
636 /* Init all the cpu_mdls for this stream */
637 cx18_stream_configure_mdls(s
);
638 _cx18_stream_load_fw_queue(s
);
641 if (cx18_vapi(cx
, CX18_CPU_CAPTURE_START
, 1, s
->handle
)) {
642 CX18_DEBUG_WARN("Error starting capture!\n");
643 /* Ensure we're really not capturing before releasing MDLs */
644 set_bit(CX18_F_S_STOPPING
, &s
->s_flags
);
645 if (s
->type
== CX18_ENC_STREAM_TYPE_MPG
)
646 cx18_vapi(cx
, CX18_CPU_CAPTURE_STOP
, 2, s
->handle
, 1);
648 cx18_vapi(cx
, CX18_CPU_CAPTURE_STOP
, 1, s
->handle
);
649 clear_bit(CX18_F_S_STREAMING
, &s
->s_flags
);
650 /* FIXME - CX18_F_S_STREAMOFF as well? */
651 cx18_vapi(cx
, CX18_CPU_DE_RELEASE_MDL
, 1, s
->handle
);
652 cx18_vapi(cx
, CX18_DESTROY_TASK
, 1, s
->handle
);
653 s
->handle
= CX18_INVALID_TASK_HANDLE
;
654 clear_bit(CX18_F_S_STOPPING
, &s
->s_flags
);
655 if (atomic_read(&cx
->tot_capturing
) == 0) {
656 set_bit(CX18_F_I_EOS
, &cx
->i_flags
);
657 cx18_write_reg(cx
, 5, CX18_DSP0_INTERRUPT_MASK
);
662 /* you're live! sit back and await interrupts :) */
663 if (captype
!= CAPTURE_CHANNEL_TYPE_TS
)
664 atomic_inc(&cx
->ana_capturing
);
665 atomic_inc(&cx
->tot_capturing
);
669 void cx18_stop_all_captures(struct cx18
*cx
)
673 for (i
= CX18_MAX_STREAMS
- 1; i
>= 0; i
--) {
674 struct cx18_stream
*s
= &cx
->streams
[i
];
676 if (s
->video_dev
== NULL
&& s
->dvb
.enabled
== 0)
678 if (test_bit(CX18_F_S_STREAMING
, &s
->s_flags
))
679 cx18_stop_v4l2_encode_stream(s
, 0);
683 int cx18_stop_v4l2_encode_stream(struct cx18_stream
*s
, int gop_end
)
685 struct cx18
*cx
= s
->cx
;
688 if (s
->video_dev
== NULL
&& s
->dvb
.enabled
== 0)
691 /* This function assumes that you are allowed to stop the capture
692 and that we are actually capturing */
694 CX18_DEBUG_INFO("Stop Capture\n");
696 if (atomic_read(&cx
->tot_capturing
) == 0)
699 set_bit(CX18_F_S_STOPPING
, &s
->s_flags
);
700 if (s
->type
== CX18_ENC_STREAM_TYPE_MPG
)
701 cx18_vapi(cx
, CX18_CPU_CAPTURE_STOP
, 2, s
->handle
, !gop_end
);
703 cx18_vapi(cx
, CX18_CPU_CAPTURE_STOP
, 1, s
->handle
);
707 if (s
->type
== CX18_ENC_STREAM_TYPE_MPG
&& gop_end
) {
708 CX18_INFO("ignoring gop_end: not (yet?) supported by the firmware\n");
711 if (s
->type
!= CX18_ENC_STREAM_TYPE_TS
)
712 atomic_dec(&cx
->ana_capturing
);
713 atomic_dec(&cx
->tot_capturing
);
715 /* Clear capture and no-read bits */
716 clear_bit(CX18_F_S_STREAMING
, &s
->s_flags
);
718 /* Tell the CX23418 it can't use our buffers anymore */
719 cx18_vapi(cx
, CX18_CPU_DE_RELEASE_MDL
, 1, s
->handle
);
721 cx18_vapi(cx
, CX18_DESTROY_TASK
, 1, s
->handle
);
722 s
->handle
= CX18_INVALID_TASK_HANDLE
;
723 clear_bit(CX18_F_S_STOPPING
, &s
->s_flags
);
725 if (atomic_read(&cx
->tot_capturing
) > 0)
728 cx18_write_reg(cx
, 5, CX18_DSP0_INTERRUPT_MASK
);
734 u32
cx18_find_handle(struct cx18
*cx
)
738 /* find first available handle to be used for global settings */
739 for (i
= 0; i
< CX18_MAX_STREAMS
; i
++) {
740 struct cx18_stream
*s
= &cx
->streams
[i
];
742 if (s
->video_dev
&& (s
->handle
!= CX18_INVALID_TASK_HANDLE
))
745 return CX18_INVALID_TASK_HANDLE
;
748 struct cx18_stream
*cx18_handle_to_stream(struct cx18
*cx
, u32 handle
)
751 struct cx18_stream
*s
;
753 if (handle
== CX18_INVALID_TASK_HANDLE
)
756 for (i
= 0; i
< CX18_MAX_STREAMS
; i
++) {
758 if (s
->handle
!= handle
)
760 if (s
->video_dev
|| s
->dvb
.enabled
)