]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/pci/cx18/cx18-streams.h
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / drivers / media / pci / cx18 / cx18-streams.h
CommitLineData
1c1e45d1
HV
1/*
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>
6afdeaf8 7 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.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.
1c1e45d1
HV
18 */
19
20u32 cx18_find_handle(struct cx18 *cx);
ee2d64f5 21struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle);
1c1e45d1
HV
22int cx18_streams_setup(struct cx18 *cx);
23int cx18_streams_register(struct cx18 *cx);
3f98387e 24void cx18_streams_cleanup(struct cx18 *cx, int unregister);
1c1e45d1 25
ef991797
AW
26#define CX18_ENC_STREAM_TYPE_IDX_FW_MDL_MIN (3)
27void cx18_stream_rotate_idx_mdls(struct cx18 *cx);
28
79f3e960
AW
29static inline bool cx18_stream_enabled(struct cx18_stream *s)
30{
08569d64 31 return s->video_dev.v4l2_dev ||
754f9969 32 (s->dvb && s->dvb->enabled) ||
79f3e960
AW
33 (s->type == CX18_ENC_STREAM_TYPE_IDX &&
34 s->cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] != 0);
35}
36
52fcb3ec 37/* Related to submission of mdls to firmware */
21a278b8
AW
38static inline void cx18_stream_load_fw_queue(struct cx18_stream *s)
39{
a3bc5e33 40 schedule_work(&s->out_work_order);
21a278b8
AW
41}
42
52fcb3ec
AW
43static inline void cx18_stream_put_mdl_fw(struct cx18_stream *s,
44 struct cx18_mdl *mdl)
21a278b8 45{
52fcb3ec
AW
46 /* Put mdl on q_free; the out work handler will move mdl(s) to q_busy */
47 cx18_enqueue(s, mdl, &s->q_free);
21a278b8
AW
48 cx18_stream_load_fw_queue(s);
49}
50
87116159
AW
51void cx18_out_work_handler(struct work_struct *work);
52
53/* Capture related */
1c1e45d1
HV
54int cx18_start_v4l2_encode_stream(struct cx18_stream *s);
55int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end);
56
57void cx18_stop_all_captures(struct cx18 *cx);