1 /* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */
2 /*
3  * dmx.h
4  *
5  * Copyright (C) 2000 Marcus Metzler <marcus@convergence.de>
6  *                  & Ralph  Metzler <ralph@convergence.de>
7  *                    for convergence integrated media GmbH
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (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 Lesser 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  02111-1307, USA.
22  *
23  */
24 
25 #ifndef _UAPI_DVBDMX_H_
26 #define _UAPI_DVBDMX_H_
27 
28 #include <linux/types.h>
29 #ifndef __KERNEL__
30 #include <time.h>
31 #endif
32 
33 
34 #define DMX_FILTER_SIZE 16
35 
36 /**
37  * enum dmx_output - Output for the demux.
38  *
39  * @DMX_OUT_DECODER:
40  *	Streaming directly to decoder.
41  * @DMX_OUT_TAP:
42  *	Output going to a memory buffer (to be retrieved via the read command).
43  *	Delivers the stream output to the demux device on which the ioctl
44  *	is called.
45  * @DMX_OUT_TS_TAP:
46  *	Output multiplexed into a new TS (to be retrieved by reading from the
47  *	logical DVR device). Routes output to the logical DVR device
48  *	``/dev/dvb/adapter?/dvr?``, which delivers a TS multiplexed from all
49  *	filters for which @DMX_OUT_TS_TAP was specified.
50  * @DMX_OUT_TSDEMUX_TAP:
51  *	Like @DMX_OUT_TS_TAP but retrieved from the DMX device.
52  */
53 enum dmx_output {
54 	DMX_OUT_DECODER,
55 	DMX_OUT_TAP,
56 	DMX_OUT_TS_TAP,
57 	DMX_OUT_TSDEMUX_TAP
58 };
59 
60 
61 /**
62  * enum dmx_input - Input from the demux.
63  *
64  * @DMX_IN_FRONTEND:	Input from a front-end device.
65  * @DMX_IN_DVR:		Input from the logical DVR device.
66  */
67 enum dmx_input {
68 	DMX_IN_FRONTEND,
69 	DMX_IN_DVR
70 };
71 
72 /**
73  * enum dmx_ts_pes - type of the PES filter.
74  *
75  * @DMX_PES_AUDIO0:	first audio PID. Also referred as @DMX_PES_AUDIO.
76  * @DMX_PES_VIDEO0:	first video PID. Also referred as @DMX_PES_VIDEO.
77  * @DMX_PES_TELETEXT0:	first teletext PID. Also referred as @DMX_PES_TELETEXT.
78  * @DMX_PES_SUBTITLE0:	first subtitle PID. Also referred as @DMX_PES_SUBTITLE.
79  * @DMX_PES_PCR0:	first Program Clock Reference PID.
80  *			Also referred as @DMX_PES_PCR.
81  *
82  * @DMX_PES_AUDIO1:	second audio PID.
83  * @DMX_PES_VIDEO1:	second video PID.
84  * @DMX_PES_TELETEXT1:	second teletext PID.
85  * @DMX_PES_SUBTITLE1:	second subtitle PID.
86  * @DMX_PES_PCR1:	second Program Clock Reference PID.
87  *
88  * @DMX_PES_AUDIO2:	third audio PID.
89  * @DMX_PES_VIDEO2:	third video PID.
90  * @DMX_PES_TELETEXT2:	third teletext PID.
91  * @DMX_PES_SUBTITLE2:	third subtitle PID.
92  * @DMX_PES_PCR2:	third Program Clock Reference PID.
93  *
94  * @DMX_PES_AUDIO3:	fourth audio PID.
95  * @DMX_PES_VIDEO3:	fourth video PID.
96  * @DMX_PES_TELETEXT3:	fourth teletext PID.
97  * @DMX_PES_SUBTITLE3:	fourth subtitle PID.
98  * @DMX_PES_PCR3:	fourth Program Clock Reference PID.
99  *
100  * @DMX_PES_OTHER:	any other PID.
101  */
102 
103 enum dmx_ts_pes {
104 	DMX_PES_AUDIO0,
105 	DMX_PES_VIDEO0,
106 	DMX_PES_TELETEXT0,
107 	DMX_PES_SUBTITLE0,
108 	DMX_PES_PCR0,
109 
110 	DMX_PES_AUDIO1,
111 	DMX_PES_VIDEO1,
112 	DMX_PES_TELETEXT1,
113 	DMX_PES_SUBTITLE1,
114 	DMX_PES_PCR1,
115 
116 	DMX_PES_AUDIO2,
117 	DMX_PES_VIDEO2,
118 	DMX_PES_TELETEXT2,
119 	DMX_PES_SUBTITLE2,
120 	DMX_PES_PCR2,
121 
122 	DMX_PES_AUDIO3,
123 	DMX_PES_VIDEO3,
124 	DMX_PES_TELETEXT3,
125 	DMX_PES_SUBTITLE3,
126 	DMX_PES_PCR3,
127 
128 	DMX_PES_OTHER
129 };
130 
131 #define DMX_PES_AUDIO    DMX_PES_AUDIO0
132 #define DMX_PES_VIDEO    DMX_PES_VIDEO0
133 #define DMX_PES_TELETEXT DMX_PES_TELETEXT0
134 #define DMX_PES_SUBTITLE DMX_PES_SUBTITLE0
135 #define DMX_PES_PCR      DMX_PES_PCR0
136 
137 
138 
139 /**
140  * struct dmx_filter - Specifies a section header filter.
141  *
142  * @filter: bit array with bits to be matched at the section header.
143  * @mask: bits that are valid at the filter bit array.
144  * @mode: mode of match: if bit is zero, it will match if equal (positive
145  *	  match); if bit is one, it will match if the bit is negated.
146  *
147  * Note: All arrays in this struct have a size of DMX_FILTER_SIZE (16 bytes).
148  */
149 struct dmx_filter {
150 	uint8_t  filter[DMX_FILTER_SIZE];
151 	uint8_t  mask[DMX_FILTER_SIZE];
152 	uint8_t  mode[DMX_FILTER_SIZE];
153 };
154 
155 /**
156  * struct dmx_sct_filter_params - Specifies a section filter.
157  *
158  * @pid: PID to be filtered.
159  * @filter: section header filter, as defined by &struct dmx_filter.
160  * @timeout: maximum time to filter, in milliseconds.
161  * @flags: extra flags for the section filter.
162  *
163  * Carries the configuration for a MPEG-TS section filter.
164  *
165  * The @flags can be:
166  *
167  *	- %DMX_CHECK_CRC - only deliver sections where the CRC check succeeded;
168  *	- %DMX_ONESHOT - disable the section filter after one section
169  *	  has been delivered;
170  *	- %DMX_IMMEDIATE_START - Start filter immediately without requiring a
171  *	  :ref:`DMX_START`.
172  */
173 struct dmx_sct_filter_params {
174 	uint16_t             pid;
175 	struct dmx_filter filter;
176 	uint32_t             timeout;
177 	uint32_t             flags;
178 #define DMX_CHECK_CRC       1
179 #define DMX_ONESHOT         2
180 #define DMX_IMMEDIATE_START 4
181 };
182 
183 /**
184  * struct dmx_pes_filter_params - Specifies Packetized Elementary Stream (PES)
185  *	filter parameters.
186  *
187  * @pid:	PID to be filtered.
188  * @input:	Demux input, as specified by &enum dmx_input.
189  * @output:	Demux output, as specified by &enum dmx_output.
190  * @pes_type:	Type of the pes filter, as specified by &enum dmx_pes_type.
191  * @flags:	Demux PES flags.
192  */
193 struct dmx_pes_filter_params {
194 	uint16_t           pid;
195 	enum dmx_input  input;
196 	enum dmx_output output;
197 	enum dmx_ts_pes pes_type;
198 	uint32_t           flags;
199 };
200 
201 /**
202  * struct dmx_stc - Stores System Time Counter (STC) information.
203  *
204  * @num: input data: number of the STC, from 0 to N.
205  * @base: output: divisor for STC to get 90 kHz clock.
206  * @stc: output: stc in @base * 90 kHz units.
207  */
208 struct dmx_stc {
209 	unsigned int num;
210 	unsigned int base;
211 	uint64_t stc;
212 };
213 
214 /**
215  * enum dmx_buffer_flags - DMX memory-mapped buffer flags
216  *
217  * @DMX_BUFFER_FLAG_HAD_CRC32_DISCARD:
218  *	Indicates that the Kernel discarded one or more frames due to wrong
219  *	CRC32 checksum.
220  * @DMX_BUFFER_FLAG_TEI:
221  *	Indicates that the Kernel has detected a Transport Error indicator
222  *	(TEI) on a filtered pid.
223  * @DMX_BUFFER_PKT_COUNTER_MISMATCH:
224  *	Indicates that the Kernel has detected a packet counter mismatch
225  *	on a filtered pid.
226  * @DMX_BUFFER_FLAG_DISCONTINUITY_DETECTED:
227  *	Indicates that the Kernel has detected one or more frame discontinuity.
228  * @DMX_BUFFER_FLAG_DISCONTINUITY_INDICATOR:
229  *	Received at least one packet with a frame discontinuity indicator.
230  */
231 
232 enum dmx_buffer_flags {
233 	DMX_BUFFER_FLAG_HAD_CRC32_DISCARD		= 1 << 0,
234 	DMX_BUFFER_FLAG_TEI				= 1 << 1,
235 	DMX_BUFFER_PKT_COUNTER_MISMATCH			= 1 << 2,
236 	DMX_BUFFER_FLAG_DISCONTINUITY_DETECTED		= 1 << 3,
237 	DMX_BUFFER_FLAG_DISCONTINUITY_INDICATOR		= 1 << 4,
238 };
239 
240 /**
241  * struct dmx_buffer - dmx buffer info
242  *
243  * @index:	id number of the buffer
244  * @bytesused:	number of bytes occupied by data in the buffer (payload);
245  * @offset:	for buffers with memory == DMX_MEMORY_MMAP;
246  *		offset from the start of the device memory for this plane,
247  *		(or a "cookie" that should be passed to mmap() as offset)
248  * @length:	size in bytes of the buffer
249  * @flags:	bit array of buffer flags as defined by &enum dmx_buffer_flags.
250  *		Filled only at &DMX_DQBUF.
251  * @count:	monotonic counter for filled buffers. Helps to identify
252  *		data stream loses. Filled only at &DMX_DQBUF.
253  *
254  * Contains data exchanged by application and driver using one of the streaming
255  * I/O methods.
256  *
257  * Please notice that, for &DMX_QBUF, only @index should be filled.
258  * On &DMX_DQBUF calls, all fields will be filled by the Kernel.
259  */
260 struct dmx_buffer {
261 	uint32_t			index;
262 	uint32_t			bytesused;
263 	uint32_t			offset;
264 	uint32_t			length;
265 	uint32_t			flags;
266 	uint32_t			count;
267 };
268 
269 /**
270  * struct dmx_requestbuffers - request dmx buffer information
271  *
272  * @count:	number of requested buffers,
273  * @size:	size in bytes of the requested buffer
274  *
275  * Contains data used for requesting a dmx buffer.
276  * All reserved fields must be set to zero.
277  */
278 struct dmx_requestbuffers {
279 	uint32_t			count;
280 	uint32_t			size;
281 };
282 
283 /**
284  * struct dmx_exportbuffer - export of dmx buffer as DMABUF file descriptor
285  *
286  * @index:	id number of the buffer
287  * @flags:	flags for newly created file, currently only O_CLOEXEC is
288  *		supported, refer to manual of open syscall for more details
289  * @fd:		file descriptor associated with DMABUF (set by driver)
290  *
291  * Contains data used for exporting a dmx buffer as DMABUF file descriptor.
292  * The buffer is identified by a 'cookie' returned by DMX_QUERYBUF
293  * (identical to the cookie used to mmap() the buffer to userspace). All
294  * reserved fields must be set to zero. The field reserved0 is expected to
295  * become a structure 'type' allowing an alternative layout of the structure
296  * content. Therefore this field should not be used for any other extensions.
297  */
298 struct dmx_exportbuffer {
299 	uint32_t		index;
300 	uint32_t		flags;
301 	int32_t		fd;
302 };
303 
304 #define DMX_START                _IO('o', 41)
305 #define DMX_STOP                 _IO('o', 42)
306 #define DMX_SET_FILTER           _IOW('o', 43, struct dmx_sct_filter_params)
307 #define DMX_SET_PES_FILTER       _IOW('o', 44, struct dmx_pes_filter_params)
308 #define DMX_SET_BUFFER_SIZE      _IO('o', 45)
309 #define DMX_GET_PES_PIDS         _IOR('o', 47, uint16_t[5])
310 #define DMX_GET_STC              _IOWR('o', 50, struct dmx_stc)
311 #define DMX_ADD_PID              _IOW('o', 51, uint16_t)
312 #define DMX_REMOVE_PID           _IOW('o', 52, uint16_t)
313 
314 #if !defined(__KERNEL__)
315 
316 /* This is needed for legacy userspace support */
317 typedef enum dmx_output dmx_output_t;
318 typedef enum dmx_input dmx_input_t;
319 typedef enum dmx_ts_pes dmx_pes_type_t;
320 typedef struct dmx_filter dmx_filter_t;
321 
322 #endif
323 
324 #define DMX_REQBUFS              _IOWR('o', 60, struct dmx_requestbuffers)
325 #define DMX_QUERYBUF             _IOWR('o', 61, struct dmx_buffer)
326 #define DMX_EXPBUF               _IOWR('o', 62, struct dmx_exportbuffer)
327 #define DMX_QBUF                 _IOWR('o', 63, struct dmx_buffer)
328 #define DMX_DQBUF                _IOWR('o', 64, struct dmx_buffer)
329 
330 #endif /* _DVBDMX_H_ */
331