blob: df59edee25d10332ec376373a9dae5f574607c5a [file] [log] [blame]
Laurent Pinchart140d8812010-08-18 11:41:22 -03001/*
2 * Multimedia device API
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
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 version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23#ifndef __LINUX_MEDIA_H
24#define __LINUX_MEDIA_H
25
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -020026#ifndef __KERNEL__
27#include <stdint.h>
28#endif
Laurent Pinchart140d8812010-08-18 11:41:22 -030029#include <linux/ioctl.h>
30#include <linux/types.h>
31#include <linux/version.h>
32
33#define MEDIA_API_VERSION KERNEL_VERSION(0, 1, 0)
34
35struct media_device_info {
36 char driver[16];
37 char model[32];
38 char serial[40];
39 char bus_info[32];
40 __u32 media_version;
41 __u32 hw_revision;
42 __u32 driver_version;
43 __u32 reserved[31];
44};
45
Laurent Pinchart16513332009-12-09 08:40:01 -030046#define MEDIA_ENT_ID_FLAG_NEXT (1 << 31)
47
Mauro Carvalho Chehabb50bde42015-05-07 22:12:38 -030048/*
49 * Initial value to be used when a new entity is created
50 * Drivers should change it to something useful
51 */
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -020052#define MEDIA_ENT_F_UNKNOWN 0x00000000
Mauro Carvalho Chehabb50bde42015-05-07 22:12:38 -030053
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -030054/*
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -020055 * Base number ranges for entity functions
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -030056 *
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -020057 * NOTE: those ranges and entity function number are phased just to
58 * make it easier to maintain this file. Userspace should not rely on
59 * the ranges to identify a group of function types, as newer
60 * functions can be added with any name within the full u32 range.
61 */
62#define MEDIA_ENT_F_BASE 0x00000000
63#define MEDIA_ENT_F_OLD_BASE 0x00010000
64#define MEDIA_ENT_F_OLD_SUBDEV_BASE 0x00020000
65
66/*
67 * DVB entities
68 */
Hans Verkuil58402b6e92016-02-29 09:02:47 +010069#define MEDIA_ENT_F_DTV_DEMOD (MEDIA_ENT_F_BASE + 0x00001)
70#define MEDIA_ENT_F_TS_DEMUX (MEDIA_ENT_F_BASE + 0x00002)
71#define MEDIA_ENT_F_DTV_CA (MEDIA_ENT_F_BASE + 0x00003)
72#define MEDIA_ENT_F_DTV_NET_DECAP (MEDIA_ENT_F_BASE + 0x00004)
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -020073
74/*
Hans Verkuil1f452242016-02-11 12:28:55 -020075 * I/O entities
76 */
Hans Verkuil58402b6e92016-02-29 09:02:47 +010077#define MEDIA_ENT_F_IO_DTV (MEDIA_ENT_F_BASE + 0x01001)
78#define MEDIA_ENT_F_IO_VBI (MEDIA_ENT_F_BASE + 0x01002)
79#define MEDIA_ENT_F_IO_SWRADIO (MEDIA_ENT_F_BASE + 0x01003)
Hans Verkuil1f452242016-02-11 12:28:55 -020080
81/*
Mauro Carvalho Chehab06131932016-01-28 07:28:08 -020082 * Analog TV IF-PLL decoders
83 *
84 * It is a responsibility of the master/bridge drivers to create links
85 * for MEDIA_ENT_F_IF_VID_DECODER and MEDIA_ENT_F_IF_AUD_DECODER.
86 */
Hans Verkuil87294e92016-02-29 05:02:47 -030087#define MEDIA_ENT_F_IF_VID_DECODER (MEDIA_ENT_F_BASE + 0x02001)
88#define MEDIA_ENT_F_IF_AUD_DECODER (MEDIA_ENT_F_BASE + 0x02002)
Mauro Carvalho Chehab8c755c22016-02-16 09:20:45 -020089
90/*
Shuah Khan7a2eba12016-02-11 21:41:20 -020091 * Audio Entity Functions
92 */
Hans Verkuil64bd1972016-03-03 10:47:33 -030093#define MEDIA_ENT_F_AUDIO_CAPTURE (MEDIA_ENT_F_BASE + 0x03001)
94#define MEDIA_ENT_F_AUDIO_PLAYBACK (MEDIA_ENT_F_BASE + 0x03002)
95#define MEDIA_ENT_F_AUDIO_MIXER (MEDIA_ENT_F_BASE + 0x03003)
Shuah Khan7a2eba12016-02-11 21:41:20 -020096
97/*
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -020098 * Connectors
99 */
Mauro Carvalho Chehabb3109d62015-12-11 18:26:53 -0200100/* It is a responsibility of the entity drivers to add connectors and links */
Mauro Carvalho Chehab93125092016-03-03 14:52:51 -0300101#ifdef __KERNEL__
102 /*
103 * For now, it should not be used in userspace, as some
104 * definitions may change
105 */
106
Hans Verkuil58402b6e92016-02-29 09:02:47 +0100107#define MEDIA_ENT_F_CONN_RF (MEDIA_ENT_F_BASE + 0x30001)
108#define MEDIA_ENT_F_CONN_SVIDEO (MEDIA_ENT_F_BASE + 0x30002)
109#define MEDIA_ENT_F_CONN_COMPOSITE (MEDIA_ENT_F_BASE + 0x30003)
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200110
Mauro Carvalho Chehab93125092016-03-03 14:52:51 -0300111#endif
112
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200113/*
114 * Don't touch on those. The ranges MEDIA_ENT_F_OLD_BASE and
115 * MEDIA_ENT_F_OLD_SUBDEV_BASE are kept to keep backward compatibility
116 * with the legacy v1 API.The number range is out of range by purpose:
117 * several previously reserved numbers got excluded from this range.
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -0300118 *
Mauro Carvalho Chehabb50bde42015-05-07 22:12:38 -0300119 * Subdevs are initialized with MEDIA_ENT_T_V4L2_SUBDEV_UNKNOWN,
120 * in order to preserve backward compatibility.
Mauro Carvalho Chehabd1b9da22015-12-11 12:41:12 -0200121 * Drivers must change to the proper subdev type before
Mauro Carvalho Chehabb50bde42015-05-07 22:12:38 -0300122 * registering the entity.
123 */
Mauro Carvalho Chehabfa17b462015-08-21 12:17:40 -0300124
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200125#define MEDIA_ENT_F_IO_V4L (MEDIA_ENT_F_OLD_BASE + 1)
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -0300126
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200127#define MEDIA_ENT_F_CAM_SENSOR (MEDIA_ENT_F_OLD_SUBDEV_BASE + 1)
128#define MEDIA_ENT_F_FLASH (MEDIA_ENT_F_OLD_SUBDEV_BASE + 2)
129#define MEDIA_ENT_F_LENS (MEDIA_ENT_F_OLD_SUBDEV_BASE + 3)
130#define MEDIA_ENT_F_ATV_DECODER (MEDIA_ENT_F_OLD_SUBDEV_BASE + 4)
Mauro Carvalho Chehabb3109d62015-12-11 18:26:53 -0200131/*
Mauro Carvalho Chehab06131932016-01-28 07:28:08 -0200132 * It is a responsibility of the master/bridge drivers to add connectors
133 * and links for MEDIA_ENT_F_TUNER. Please notice that some old tuners
134 * may require the usage of separate I2C chips to decode analog TV signals,
135 * when the master/bridge chipset doesn't have its own TV standard decoder.
136 * On such cases, the IF-PLL staging is mapped via one or two entities:
137 * MEDIA_ENT_F_IF_VID_DECODER and/or MEDIA_ENT_F_IF_AUD_DECODER.
Mauro Carvalho Chehabb3109d62015-12-11 18:26:53 -0200138 */
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200139#define MEDIA_ENT_F_TUNER (MEDIA_ENT_F_OLD_SUBDEV_BASE + 5)
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -0300140
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200141#define MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN MEDIA_ENT_F_OLD_SUBDEV_BASE
Mauro Carvalho Chehab49a11512015-08-31 11:41:29 -0300142
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300143#if !defined(__KERNEL__) || defined(__NEED_MEDIA_LEGACY_API)
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200144
145/*
146 * Legacy symbols used to avoid userspace compilation breakages
147 *
148 * Those symbols map the entity function into types and should be
149 * used only on legacy programs for legacy hardware. Don't rely
150 * on those for MEDIA_IOC_G_TOPOLOGY.
151 */
Laurent Pinchart16513332009-12-09 08:40:01 -0300152#define MEDIA_ENT_TYPE_SHIFT 16
153#define MEDIA_ENT_TYPE_MASK 0x00ff0000
154#define MEDIA_ENT_SUBTYPE_MASK 0x0000ffff
155
Mauro Carvalho Chehabb2cd2742016-03-05 07:13:39 -0300156/* End of the old subdev reserved numberspace */
157#define MEDIA_ENT_T_DEVNODE_UNKNOWN (MEDIA_ENT_T_DEVNODE | \
158 MEDIA_ENT_SUBTYPE_MASK)
159
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200160#define MEDIA_ENT_T_DEVNODE MEDIA_ENT_F_OLD_BASE
161#define MEDIA_ENT_T_DEVNODE_V4L MEDIA_ENT_F_IO_V4L
Laurent Pinchart16513332009-12-09 08:40:01 -0300162#define MEDIA_ENT_T_DEVNODE_FB (MEDIA_ENT_T_DEVNODE + 2)
163#define MEDIA_ENT_T_DEVNODE_ALSA (MEDIA_ENT_T_DEVNODE + 3)
Mauro Carvalho Chehab32fdc0e2015-08-21 11:40:34 -0300164#define MEDIA_ENT_T_DEVNODE_DVB (MEDIA_ENT_T_DEVNODE + 4)
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200165
166#define MEDIA_ENT_T_UNKNOWN MEDIA_ENT_F_UNKNOWN
167#define MEDIA_ENT_T_V4L2_VIDEO MEDIA_ENT_F_IO_V4L
168#define MEDIA_ENT_T_V4L2_SUBDEV MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN
169#define MEDIA_ENT_T_V4L2_SUBDEV_SENSOR MEDIA_ENT_F_CAM_SENSOR
170#define MEDIA_ENT_T_V4L2_SUBDEV_FLASH MEDIA_ENT_F_FLASH
171#define MEDIA_ENT_T_V4L2_SUBDEV_LENS MEDIA_ENT_F_LENS
172#define MEDIA_ENT_T_V4L2_SUBDEV_DECODER MEDIA_ENT_F_ATV_DECODER
173#define MEDIA_ENT_T_V4L2_SUBDEV_TUNER MEDIA_ENT_F_TUNER
Mauro Carvalho Chehab43766792015-08-29 14:50:46 -0300174#endif
Mauro Carvalho Chehab1d20f9f2015-01-03 11:09:39 -0300175
Mauro Carvalho Chehab49a11512015-08-31 11:41:29 -0300176/* Entity flags */
Laurent Pinchart16513332009-12-09 08:40:01 -0300177#define MEDIA_ENT_FL_DEFAULT (1 << 0)
Mauro Carvalho Chehab49a11512015-08-31 11:41:29 -0300178#define MEDIA_ENT_FL_CONNECTOR (1 << 1)
Laurent Pinchart16513332009-12-09 08:40:01 -0300179
180struct media_entity_desc {
181 __u32 id;
182 char name[32];
183 __u32 type;
184 __u32 revision;
185 __u32 flags;
186 __u32 group_id;
187 __u16 pads;
188 __u16 links;
189
190 __u32 reserved[4];
191
192 union {
193 /* Node specifications */
194 struct {
195 __u32 major;
196 __u32 minor;
Mauro Carvalho Chehabe31a0ba2015-01-02 12:18:23 -0300197 } dev;
198
199#if 1
200 /*
Hans Verkuil7e182f72015-02-25 12:05:13 -0300201 * TODO: this shouldn't have been added without
202 * actual drivers that use this. When the first real driver
203 * appears that sets this information, special attention
204 * should be given whether this information is 1) enough, and
205 * 2) can deal with udev rules that rename devices. The struct
206 * dev would not be sufficient for this since that does not
207 * contain the subdevice information. In addition, struct dev
208 * can only refer to a single device, and not to multiple (e.g.
209 * pcm and mixer devices).
210 *
211 * So for now mark this as a to do.
212 */
213 struct {
214 __u32 card;
215 __u32 device;
216 __u32 subdevice;
217 } alsa;
218#endif
219
220#if 1
221 /*
Mauro Carvalho Chehabe31a0ba2015-01-02 12:18:23 -0300222 * DEPRECATED: previous node specifications. Kept just to
223 * avoid breaking compilation, but media_entity_desc.dev
224 * should be used instead. In particular, alsa and dvb
225 * fields below are wrong: for all devnodes, there should
226 * be just major/minor inside the struct, as this is enough
227 * to represent any devnode, no matter what type.
228 */
229 struct {
230 __u32 major;
231 __u32 minor;
Laurent Pinchart16513332009-12-09 08:40:01 -0300232 } v4l;
233 struct {
234 __u32 major;
235 __u32 minor;
236 } fb;
Laurent Pinchart16513332009-12-09 08:40:01 -0300237 int dvb;
Mauro Carvalho Chehabe31a0ba2015-01-02 12:18:23 -0300238#endif
Laurent Pinchart16513332009-12-09 08:40:01 -0300239
240 /* Sub-device specifications */
241 /* Nothing needed yet */
242 __u8 raw[184];
243 };
244};
245
246#define MEDIA_PAD_FL_SINK (1 << 0)
247#define MEDIA_PAD_FL_SOURCE (1 << 1)
Sakari Ailusd0700c52013-10-13 07:58:43 -0300248#define MEDIA_PAD_FL_MUST_CONNECT (1 << 2)
Laurent Pinchart16513332009-12-09 08:40:01 -0300249
250struct media_pad_desc {
251 __u32 entity; /* entity ID */
252 __u16 index; /* pad index */
253 __u32 flags; /* pad flags */
254 __u32 reserved[2];
255};
256
257#define MEDIA_LNK_FL_ENABLED (1 << 0)
258#define MEDIA_LNK_FL_IMMUTABLE (1 << 1)
Laurent Pincharte02188c2010-08-25 09:00:41 -0300259#define MEDIA_LNK_FL_DYNAMIC (1 << 2)
Laurent Pinchart16513332009-12-09 08:40:01 -0300260
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300261#define MEDIA_LNK_FL_LINK_TYPE (0xf << 28)
262# define MEDIA_LNK_FL_DATA_LINK (0 << 28)
263# define MEDIA_LNK_FL_INTERFACE_LINK (1 << 28)
264
Laurent Pinchart16513332009-12-09 08:40:01 -0300265struct media_link_desc {
266 struct media_pad_desc source;
267 struct media_pad_desc sink;
268 __u32 flags;
269 __u32 reserved[2];
270};
271
272struct media_links_enum {
273 __u32 entity;
274 /* Should have enough room for pads elements */
275 struct media_pad_desc __user *pads;
276 /* Should have enough room for links elements */
277 struct media_link_desc __user *links;
278 __u32 reserved[4];
279};
280
Mauro Carvalho Chehaba1d25102015-08-20 07:43:07 -0300281/* Interface type ranges */
282
283#define MEDIA_INTF_T_DVB_BASE 0x00000100
284#define MEDIA_INTF_T_V4L_BASE 0x00000200
Shuah Khan5af557a2016-02-11 21:41:18 -0200285#define MEDIA_INTF_T_ALSA_BASE 0x00000300
Mauro Carvalho Chehaba1d25102015-08-20 07:43:07 -0300286
287/* Interface types */
288
289#define MEDIA_INTF_T_DVB_FE (MEDIA_INTF_T_DVB_BASE)
290#define MEDIA_INTF_T_DVB_DEMUX (MEDIA_INTF_T_DVB_BASE + 1)
291#define MEDIA_INTF_T_DVB_DVR (MEDIA_INTF_T_DVB_BASE + 2)
292#define MEDIA_INTF_T_DVB_CA (MEDIA_INTF_T_DVB_BASE + 3)
293#define MEDIA_INTF_T_DVB_NET (MEDIA_INTF_T_DVB_BASE + 4)
294
295#define MEDIA_INTF_T_V4L_VIDEO (MEDIA_INTF_T_V4L_BASE)
296#define MEDIA_INTF_T_V4L_VBI (MEDIA_INTF_T_V4L_BASE + 1)
297#define MEDIA_INTF_T_V4L_RADIO (MEDIA_INTF_T_V4L_BASE + 2)
298#define MEDIA_INTF_T_V4L_SUBDEV (MEDIA_INTF_T_V4L_BASE + 3)
299#define MEDIA_INTF_T_V4L_SWRADIO (MEDIA_INTF_T_V4L_BASE + 4)
300
Shuah Khan5af557a2016-02-11 21:41:18 -0200301#define MEDIA_INTF_T_ALSA_PCM_CAPTURE (MEDIA_INTF_T_ALSA_BASE)
302#define MEDIA_INTF_T_ALSA_PCM_PLAYBACK (MEDIA_INTF_T_ALSA_BASE + 1)
303#define MEDIA_INTF_T_ALSA_CONTROL (MEDIA_INTF_T_ALSA_BASE + 2)
304#define MEDIA_INTF_T_ALSA_COMPRESS (MEDIA_INTF_T_ALSA_BASE + 3)
305#define MEDIA_INTF_T_ALSA_RAWMIDI (MEDIA_INTF_T_ALSA_BASE + 4)
306#define MEDIA_INTF_T_ALSA_HWDEP (MEDIA_INTF_T_ALSA_BASE + 5)
307#define MEDIA_INTF_T_ALSA_SEQUENCER (MEDIA_INTF_T_ALSA_BASE + 6)
308#define MEDIA_INTF_T_ALSA_TIMER (MEDIA_INTF_T_ALSA_BASE + 7)
309
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300310/*
311 * MC next gen API definitions
312 *
313 * NOTE: The declarations below are close to the MC RFC for the Media
314 * Controller, the next generation. Yet, there are a few adjustments
315 * to do, as we want to be able to have a functional API before
316 * the MC properties change. Those will be properly marked below.
317 * Please also notice that I removed "num_pads", "num_links",
318 * from the proposal, as a proper userspace application will likely
319 * use lists for pads/links, just as we intend to do in Kernelspace.
320 * The API definition should be freed from fields that are bound to
321 * some specific data structure.
322 *
323 * FIXME: Currently, I opted to name the new types as "media_v2", as this
324 * won't cause any conflict with the Kernelspace namespace, nor with
325 * the previous kAPI media_*_desc namespace. This can be changed
326 * later, before the adding this API upstream.
327 */
328
Mauro Carvalho Chehab333a6512016-01-25 07:29:13 -0200329
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300330struct media_v2_entity {
331 __u32 id;
332 char name[64]; /* FIXME: move to a property? (RFC says so) */
Mauro Carvalho Chehabd87cdb82015-09-06 10:59:08 -0300333 __u32 function; /* Main function of the entity */
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300334 __u32 reserved[6];
335} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300336
337/* Should match the specific fields at media_intf_devnode */
338struct media_v2_intf_devnode {
339 __u32 major;
340 __u32 minor;
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300341} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300342
343struct media_v2_interface {
344 __u32 id;
345 __u32 intf_type;
346 __u32 flags;
347 __u32 reserved[9];
348
349 union {
350 struct media_v2_intf_devnode devnode;
351 __u32 raw[16];
352 };
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300353} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300354
355struct media_v2_pad {
356 __u32 id;
357 __u32 entity_id;
358 __u32 flags;
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300359 __u32 reserved[5];
360} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300361
362struct media_v2_link {
363 __u32 id;
364 __u32 source_id;
365 __u32 sink_id;
366 __u32 flags;
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300367 __u32 reserved[6];
368} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300369
370struct media_v2_topology {
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200371 __u64 topology_version;
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300372
Mauro Carvalho Chehab7c9d6732015-12-17 09:07:38 -0200373 __u32 num_entities;
374 __u32 reserved1;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200375 __u64 ptr_entities;
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300376
Mauro Carvalho Chehab7c9d6732015-12-17 09:07:38 -0200377 __u32 num_interfaces;
378 __u32 reserved2;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200379 __u64 ptr_interfaces;
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300380
Mauro Carvalho Chehab7c9d6732015-12-17 09:07:38 -0200381 __u32 num_pads;
382 __u32 reserved3;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200383 __u64 ptr_pads;
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300384
Mauro Carvalho Chehab7c9d6732015-12-17 09:07:38 -0200385 __u32 num_links;
386 __u32 reserved4;
Mauro Carvalho Chehabb3b7a9f2015-12-11 16:07:57 -0200387 __u64 ptr_links;
Sakari Ailusfbe093a2016-03-03 14:20:14 -0300388} __attribute__ ((packed));
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300389
390/* ioctls */
Mauro Carvalho Chehaba1d25102015-08-20 07:43:07 -0300391
Laurent Pinchart474966e2011-03-05 17:14:33 -0300392#define MEDIA_IOC_DEVICE_INFO _IOWR('|', 0x00, struct media_device_info)
393#define MEDIA_IOC_ENUM_ENTITIES _IOWR('|', 0x01, struct media_entity_desc)
394#define MEDIA_IOC_ENUM_LINKS _IOWR('|', 0x02, struct media_links_enum)
395#define MEDIA_IOC_SETUP_LINK _IOWR('|', 0x03, struct media_link_desc)
Mauro Carvalho Chehabc398bb62015-08-23 08:28:21 -0300396#define MEDIA_IOC_G_TOPOLOGY _IOWR('|', 0x04, struct media_v2_topology)
Laurent Pinchart140d8812010-08-18 11:41:22 -0300397
398#endif /* __LINUX_MEDIA_H */