1 .. -*- coding: utf-8; mode: rst -*-
3 .. _media_ioc_g_topology:
5 **************************
6 ioctl MEDIA_IOC_G_TOPOLOGY
7 **************************
12 MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
18 .. c:function:: int ioctl( int fd, MEDIA_IOC_G_TOPOLOGY, struct media_v2_topology *argp )
19 :name: MEDIA_IOC_G_TOPOLOGY
26 File descriptor returned by :ref:`open() <media-func-open>`.
34 The typical usage of this ioctl is to call it twice. On the first call,
35 the structure defined at struct
36 :c:type:`media_v2_topology` should be zeroed. At
37 return, if no errors happen, this ioctl will return the
38 ``topology_version`` and the total number of entities, interfaces, pads
41 Before the second call, the userspace should allocate arrays to store
42 the graph elements that are desired, putting the pointers to them at the
43 ptr_entities, ptr_interfaces, ptr_links and/or ptr_pads, keeping the
44 other values untouched.
46 If the ``topology_version`` remains the same, the ioctl should fill the
47 desired arrays with the media graph elements.
49 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
51 .. c:type:: media_v2_topology
53 .. flat-table:: struct media_v2_topology
63 - ``topology_version``
65 - Version of the media graph topology. When the graph is created,
66 this field starts with zero. Every time a graph element is added
67 or removed, this field is incremented.
75 - Number of entities in the graph
83 - A pointer to a memory area where the entities array will be
84 stored, converted to a 64-bits integer. It can be zero. if zero,
85 the ioctl won't store the entities. It will just update
94 - Number of interfaces in the graph
102 - A pointer to a memory area where the interfaces array will be
103 stored, converted to a 64-bits integer. It can be zero. if zero,
104 the ioctl won't store the interfaces. It will just update
113 - Total number of pads in the graph
121 - A pointer to a memory area where the pads array will be stored,
122 converted to a 64-bits integer. It can be zero. if zero, the ioctl
123 won't store the pads. It will just update ``num_pads``
131 - Total number of data and interface links in the graph
139 - A pointer to a memory area where the links array will be stored,
140 converted to a 64-bits integer. It can be zero. if zero, the ioctl
141 won't store the links. It will just update ``num_links``
144 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
146 .. c:type:: media_v2_entity
148 .. flat-table:: struct media_v2_entity
160 - Unique ID for the entity.
168 - Entity name as an UTF-8 NULL-terminated string.
176 - Entity main function, see :ref:`media-entity-type` for details.
184 - Reserved for future extensions. Drivers and applications must set
188 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
190 .. c:type:: media_v2_interface
192 .. flat-table:: struct media_v2_interface
203 - Unique ID for the interface.
211 - Interface type, see :ref:`media-intf-type` for details.
219 - Interface flags. Currently unused.
227 - Reserved for future extensions. Drivers and applications must set
232 - struct media_v2_intf_devnode
236 - Used only for device node interfaces. See
237 :c:type:`media_v2_intf_devnode` for details..
240 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
242 .. c:type:: media_v2_intf_devnode
244 .. flat-table:: struct media_v2_interface
256 - Device node major number.
264 - Device node minor number.
267 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
269 .. c:type:: media_v2_pad
271 .. flat-table:: struct media_v2_pad
283 - Unique ID for the pad.
291 - Unique ID for the entity where this pad belongs.
299 - Pad flags, see :ref:`media-pad-flag` for more details.
307 - Reserved for future extensions. Drivers and applications must set
311 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
313 .. c:type:: media_v2_link
315 .. flat-table:: struct media_v2_pad
327 - Unique ID for the pad.
335 - On pad to pad links: unique ID for the source pad.
337 On interface to entity links: unique ID for the interface.
345 - On pad to pad links: unique ID for the sink pad.
347 On interface to entity links: unique ID for the entity.
355 - Link flags, see :ref:`media-link-flag` for more details.
363 - Reserved for future extensions. Drivers and applications must set
370 On success 0 is returned, on error -1 and the ``errno`` variable is set
371 appropriately. The generic error codes are described at the
372 :ref:`Generic Error Codes <gen-errors>` chapter.
375 This is returned when either one or more of the num_entities,
376 num_interfaces, num_links or num_pads are non-zero and are
377 smaller than the actual number of elements inside the graph. This
378 may happen if the ``topology_version`` changed when compared to the
379 last time this ioctl was called. Userspace should usually free the
380 area for the pointers, zero the struct elements and call this ioctl