Blame view

include/media/dvb_vb2.h 7.65 KB
57868acc3   Satendra Singh Thakur   media: videobuf2:...
1
  /*
7b361cf00   Mauro Carvalho Chehab   media: dvb_vb2: a...
2
3
   * SPDX-License-Identifier: GPL-2.0
   *
57868acc3   Satendra Singh Thakur   media: videobuf2:...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
   * dvb-vb2.h - DVB driver helper framework for streaming I/O
   *
   * Copyright (C) 2015 Samsung Electronics
   *
   * Author: jh1009.sung@samsung.com
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation.
   */
  
  #ifndef _DVB_VB2_H
  #define _DVB_VB2_H
  
  #include <linux/mutex.h>
  #include <linux/poll.h>
  #include <linux/dvb/dmx.h>
  #include <media/videobuf2-core.h>
  #include <media/videobuf2-dma-contig.h>
  #include <media/videobuf2-vmalloc.h>
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
24
25
26
27
28
29
  /**
   * enum dvb_buf_type - types of Digital TV memory-mapped buffers
   *
   * @DVB_BUF_TYPE_CAPTURE: buffer is filled by the Kernel,
   *			  with a received Digital TV stream
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
30
31
  enum dvb_buf_type {
  	DVB_BUF_TYPE_CAPTURE        = 1,
57868acc3   Satendra Singh Thakur   media: videobuf2:...
32
  };
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  /**
   * enum dvb_vb2_states - states to control VB2 state machine
   * @DVB_VB2_STATE_NONE:
   *	VB2 engine not initialized yet, init failed or VB2 was released.
   * @DVB_VB2_STATE_INIT:
   *	VB2 engine initialized.
   * @DVB_VB2_STATE_REQBUFS:
   *	Buffers were requested
   * @DVB_VB2_STATE_STREAMON:
   *	VB2 is streaming. Callers should not check it directly. Instead,
   *	they should use dvb_vb2_is_streaming().
   *
   * Note:
   *
   * Callers should not touch at the state machine directly. This
   * is handled inside dvb_vb2.c.
   */
  enum dvb_vb2_states {
  	DVB_VB2_STATE_NONE	= 0x0,
  	DVB_VB2_STATE_INIT	= 0x1,
  	DVB_VB2_STATE_REQBUFS	= 0x2,
  	DVB_VB2_STATE_STREAMON	= 0x4,
  };
57868acc3   Satendra Singh Thakur   media: videobuf2:...
56
57
  
  #define DVB_VB2_NAME_MAX (20)
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
58
59
60
61
62
63
  /**
   * struct dvb_buffer - video buffer information for v4l2.
   *
   * @vb:		embedded struct &vb2_buffer.
   * @list:	list of &struct dvb_buffer.
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
64
65
66
67
  struct dvb_buffer {
  	struct vb2_buffer	vb;
  	struct list_head	list;
  };
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  /**
   * struct dvb_vb2_ctx - control struct for VB2 handler
   * @vb_q:	pointer to &struct vb2_queue with videobuf2 queue.
   * @mutex:	mutex to serialize vb2 operations. Used by
   *		vb2 core %wait_prepare and %wait_finish operations.
   * @slock:	spin lock used to protect buffer filling at dvb_vb2.c.
   * @dvb_q:	List of buffers that are not filled yet.
   * @buf:	Pointer to the buffer that are currently being filled.
   * @offset:	index to the next position at the @buf to be filled.
   * @remain:	How many bytes are left to be filled at @buf.
   * @state:	bitmask of buffer states as defined by &enum dvb_vb2_states.
   * @buf_siz:	size of each VB2 buffer.
   * @buf_cnt:	number of VB2 buffers.
   * @nonblocking:
   *		If different than zero, device is operating on non-blocking
   *		mode.
fdbeb9625   Mauro Carvalho Chehab   media: dvb: updat...
84
85
86
87
88
89
   * @flags:	buffer flags as defined by &enum dmx_buffer_flags.
   *		Filled only at &DMX_DQBUF. &DMX_QBUF should zero this field.
   * @count:	monotonic counter for filled buffers. Helps to identify
   *		data stream loses. Filled only at &DMX_DQBUF. &DMX_QBUF should
   *		zero this field.
   *
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
90
91
92
   * @name:	name of the device type. Currently, it can either be
   *		"dvr" or "demux_filter".
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
93
94
95
96
97
98
99
100
101
102
103
104
  struct dvb_vb2_ctx {
  	struct vb2_queue	vb_q;
  	struct mutex		mutex;
  	spinlock_t		slock;
  	struct list_head	dvb_q;
  	struct dvb_buffer	*buf;
  	int	offset;
  	int	remain;
  	int	state;
  	int	buf_siz;
  	int	buf_cnt;
  	int	nonblocking;
fdbeb9625   Mauro Carvalho Chehab   media: dvb: updat...
105
106
107
  
  	enum dmx_buffer_flags flags;
  	u32	count;
57868acc3   Satendra Singh Thakur   media: videobuf2:...
108
109
  	char	name[DVB_VB2_NAME_MAX + 1];
  };
ec5b10046   Arnd Bergmann   media: dvb: fix D...
110
  #ifndef CONFIG_DVB_MMAP
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
111
112
113
114
115
116
117
118
119
120
  static inline int dvb_vb2_init(struct dvb_vb2_ctx *ctx,
  			       const char *name, int non_blocking)
  {
  	return 0;
  };
  static inline int dvb_vb2_release(struct dvb_vb2_ctx *ctx)
  {
  	return 0;
  };
  #define dvb_vb2_is_streaming(ctx) (0)
fdbeb9625   Mauro Carvalho Chehab   media: dvb: updat...
121
  #define dvb_vb2_fill_buffer(ctx, file, wait, flags) (0)
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
122

b46dc8ae1   Stephen Rothwell   media: videobuf2:...
123
124
125
  static inline __poll_t dvb_vb2_poll(struct dvb_vb2_ctx *ctx,
  				    struct file *file,
  				    poll_table *wait)
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
126
127
128
129
  {
  	return 0;
  }
  #else
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
130
131
132
133
134
135
136
137
  /**
   * dvb_vb2_init - initializes VB2 handler
   *
   * @ctx:	control struct for VB2 handler
   * @name:	name for the VB2 handler
   * @non_blocking:
   *		if not zero, it means that the device is at non-blocking mode
   */
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
138
  int dvb_vb2_init(struct dvb_vb2_ctx *ctx, const char *name, int non_blocking);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
139
140
141
142
143
144
  
  /**
   * dvb_vb2_release - Releases the VB2 handler allocated resources and
   *	put @ctx at DVB_VB2_STATE_NONE state.
   * @ctx:	control struct for VB2 handler
   */
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
145
  int dvb_vb2_release(struct dvb_vb2_ctx *ctx);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
146
147
148
149
150
151
152
  
  /**
   * dvb_vb2_is_streaming - checks if the VB2 handler is streaming
   * @ctx:	control struct for VB2 handler
   *
   * Return: 0 if not streaming, 1 otherwise.
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
153
  int dvb_vb2_is_streaming(struct dvb_vb2_ctx *ctx);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
154
155
156
157
158
159
  
  /**
   * dvb_vb2_fill_buffer - fills a VB2 buffer
   * @ctx:	control struct for VB2 handler
   * @src:	place where the data is stored
   * @len:	number of bytes to be copied from @src
fdbeb9625   Mauro Carvalho Chehab   media: dvb: updat...
160
161
162
   * @buffer_flags:
   *		pointer to buffer flags as defined by &enum dmx_buffer_flags.
   *		can be NULL.
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
163
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
164
  int dvb_vb2_fill_buffer(struct dvb_vb2_ctx *ctx,
fdbeb9625   Mauro Carvalho Chehab   media: dvb: updat...
165
166
  			const unsigned char *src, int len,
  			enum dmx_buffer_flags *buffer_flags);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
167
168
169
170
171
172
173
174
175
176
177
178
179
  
  /**
   * dvb_vb2_poll - Wrapper to vb2_core_streamon() for Digital TV
   *      buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @file:	&struct file argument passed to the poll
   *		file operation handler.
   * @wait:	&poll_table wait argument passed to the poll
   *		file operation handler.
   *
   * Implements poll syscall() logic.
   */
b46dc8ae1   Stephen Rothwell   media: videobuf2:...
180
181
  __poll_t dvb_vb2_poll(struct dvb_vb2_ctx *ctx, struct file *file,
  		      poll_table *wait);
4021053ed   Mauro Carvalho Chehab   media: dvb-core: ...
182
  #endif
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  /**
   * dvb_vb2_stream_on() - Wrapper to vb2_core_streamon() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   *
   * Starts dvb streaming
   */
  int dvb_vb2_stream_on(struct dvb_vb2_ctx *ctx);
  /**
   * dvb_vb2_stream_off() - Wrapper to vb2_core_streamoff() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   *
   * Stops dvb streaming
   */
  int dvb_vb2_stream_off(struct dvb_vb2_ctx *ctx);
57868acc3   Satendra Singh Thakur   media: videobuf2:...
201

9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
202
203
204
205
206
207
208
209
210
211
212
  /**
   * dvb_vb2_reqbufs() - Wrapper to vb2_core_reqbufs() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @req:	&struct dmx_requestbuffers passed from userspace in
   *		order to handle &DMX_REQBUFS.
   *
   * Initiate streaming by requesting a number of buffers. Also used to
   * free previously requested buffers, is ``req->count`` is zero.
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
213
  int dvb_vb2_reqbufs(struct dvb_vb2_ctx *ctx, struct dmx_requestbuffers *req);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
214
215
216
217
218
219
220
221
222
  
  /**
   * dvb_vb2_querybuf() - Wrapper to vb2_core_querybuf() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @b:		&struct dmx_buffer passed from userspace in
   *		order to handle &DMX_QUERYBUF.
   *
4a3fad709   Mauro Carvalho Chehab   media: fix usage ...
223
   *
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
224
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
225
  int dvb_vb2_querybuf(struct dvb_vb2_ctx *ctx, struct dmx_buffer *b);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
226
227
228
229
230
231
232
233
234
235
236
  
  /**
   * dvb_vb2_expbuf() - Wrapper to vb2_core_expbuf() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @exp:	&struct dmx_exportbuffer passed from userspace in
   *		order to handle &DMX_EXPBUF.
   *
   * Export a buffer as a file descriptor.
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
237
  int dvb_vb2_expbuf(struct dvb_vb2_ctx *ctx, struct dmx_exportbuffer *exp);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
238
239
240
241
242
243
244
245
246
247
  
  /**
   * dvb_vb2_qbuf() - Wrapper to vb2_core_qbuf() for Digital TV buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @b:		&struct dmx_buffer passed from userspace in
   *		order to handle &DMX_QBUF.
   *
   * Queue a Digital TV buffer as requested by userspace
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
248
  int dvb_vb2_qbuf(struct dvb_vb2_ctx *ctx, struct dmx_buffer *b);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
249
250
251
252
253
254
255
256
257
258
259
  
  /**
   * dvb_vb2_dqbuf() - Wrapper to vb2_core_dqbuf() for Digital TV
   *	buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @b:		&struct dmx_buffer passed from userspace in
   *		order to handle &DMX_DQBUF.
   *
   * Dequeue a Digital TV buffer to the userspace
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
260
  int dvb_vb2_dqbuf(struct dvb_vb2_ctx *ctx, struct dmx_buffer *b);
9f577d6db   Mauro Carvalho Chehab   media: dvb kAPI d...
261
262
263
264
265
266
267
268
269
270
  
  /**
   * dvb_vb2_mmap() - Wrapper to vb2_mmap() for Digital TV buffer handling.
   *
   * @ctx:	control struct for VB2 handler
   * @vma:        pointer to &struct vm_area_struct with the vma passed
   *              to the mmap file operation handler in the driver.
   *
   * map Digital TV video buffers into application address space.
   */
57868acc3   Satendra Singh Thakur   media: videobuf2:...
271
  int dvb_vb2_mmap(struct dvb_vb2_ctx *ctx, struct vm_area_struct *vma);
57868acc3   Satendra Singh Thakur   media: videobuf2:...
272
273
  
  #endif /* _DVB_VB2_H */