blob: 713b0e61536dd6a8f9edd330d708c0388f13d447 [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 init/start/stop/exit stream functions
3 *
4 * Derived from ivtv-streams.h
5 *
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls6afdeaf2010-05-23 18:53:35 -03007 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03008 *
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
25u32 cx18_find_handle(struct cx18 *cx);
Andy Wallsee2d64f2008-11-16 01:38:19 -030026struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030027int cx18_streams_setup(struct cx18 *cx);
28int cx18_streams_register(struct cx18 *cx);
Hans Verkuil3f983872008-05-01 10:31:12 -030029void cx18_streams_cleanup(struct cx18 *cx, int unregister);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030030
Andy Wallsef991792009-12-31 18:27:13 -030031#define CX18_ENC_STREAM_TYPE_IDX_FW_MDL_MIN (3)
32void cx18_stream_rotate_idx_mdls(struct cx18 *cx);
33
Andy Walls79f3e962009-12-31 17:19:25 -030034static inline bool cx18_stream_enabled(struct cx18_stream *s)
35{
Andy Walls754f9962010-12-11 20:38:20 -030036 return s->video_dev ||
37 (s->dvb && s->dvb->enabled) ||
Andy Walls79f3e962009-12-31 17:19:25 -030038 (s->type == CX18_ENC_STREAM_TYPE_IDX &&
39 s->cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] != 0);
40}
41
Andy Walls52fcb3e2009-11-08 23:45:24 -030042/* Related to submission of mdls to firmware */
Andy Walls21a278b2009-04-15 20:45:10 -030043static inline void cx18_stream_load_fw_queue(struct cx18_stream *s)
44{
Tejun Heoa3bc5e32011-01-03 10:49:34 -030045 schedule_work(&s->out_work_order);
Andy Walls21a278b2009-04-15 20:45:10 -030046}
47
Andy Walls52fcb3e2009-11-08 23:45:24 -030048static inline void cx18_stream_put_mdl_fw(struct cx18_stream *s,
49 struct cx18_mdl *mdl)
Andy Walls21a278b2009-04-15 20:45:10 -030050{
Andy Walls52fcb3e2009-11-08 23:45:24 -030051 /* Put mdl on q_free; the out work handler will move mdl(s) to q_busy */
52 cx18_enqueue(s, mdl, &s->q_free);
Andy Walls21a278b2009-04-15 20:45:10 -030053 cx18_stream_load_fw_queue(s);
54}
55
Andy Walls87116152009-04-13 22:42:43 -030056void cx18_out_work_handler(struct work_struct *work);
57
58/* Capture related */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030059int cx18_start_v4l2_encode_stream(struct cx18_stream *s);
60int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end);
61
62void cx18_stop_all_captures(struct cx18 *cx);