Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux/fpc-iii.git] / Documentation / media / uapi / mediactl / media-ioc-g-topology.rst
blob48c9531f4db0ed65b75fd08e9d437f1c640bd266
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _media_ioc_g_topology:
5 **************************
6 ioctl MEDIA_IOC_G_TOPOLOGY
7 **************************
9 Name
10 ====
12 MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
15 Synopsis
16 ========
18 .. c:function:: int ioctl( int fd, MEDIA_IOC_G_TOPOLOGY, struct media_v2_topology *argp )
19     :name: MEDIA_IOC_G_TOPOLOGY
22 Arguments
23 =========
25 ``fd``
26     File descriptor returned by :ref:`open() <media-func-open>`.
28 ``argp``
31 Description
32 ===========
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
39 and links.
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
54     :header-rows:  0
55     :stub-columns: 0
56     :widths: 1 2 8
59     -  .. row 1
61        -  __u64
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.
69     -  .. row 2
71        -  __u64
73        -  ``num_entities``
75        -  Number of entities in the graph
77     -  .. row 3
79        -  __u64
81        -  ``ptr_entities``
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
86           ``num_entities``
88     -  .. row 4
90        -  __u64
92        -  ``num_interfaces``
94        -  Number of interfaces in the graph
96     -  .. row 5
98        -  __u64
100        -  ``ptr_interfaces``
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
105           ``num_interfaces``
107     -  .. row 6
109        -  __u64
111        -  ``num_pads``
113        -  Total number of pads in the graph
115     -  .. row 7
117        -  __u64
119        -  ``ptr_pads``
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``
125     -  .. row 8
127        -  __u64
129        -  ``num_links``
131        -  Total number of data and interface links in the graph
133     -  .. row 9
135        -  __u64
137        -  ``ptr_links``
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
149     :header-rows:  0
150     :stub-columns: 0
151     :widths: 1 2 8
154     -  .. row 1
156        -  __u32
158        -  ``id``
160        -  Unique ID for the entity.
162     -  .. row 2
164        -  char
166        -  ``name``\ [64]
168        -  Entity name as an UTF-8 NULL-terminated string.
170     -  .. row 3
172        -  __u32
174        -  ``function``
176        -  Entity main function, see :ref:`media-entity-type` for details.
178     -  .. row 4
180        -  __u32
182        -  ``reserved``\ [12]
184        -  Reserved for future extensions. Drivers and applications must set
185           this array to zero.
188 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
190 .. c:type:: media_v2_interface
192 .. flat-table:: struct media_v2_interface
193     :header-rows:  0
194     :stub-columns: 0
195     :widths: 1 2 8
197     -  .. row 1
199        -  __u32
201        -  ``id``
203        -  Unique ID for the interface.
205     -  .. row 2
207        -  __u32
209        -  ``intf_type``
211        -  Interface type, see :ref:`media-intf-type` for details.
213     -  .. row 3
215        -  __u32
217        -  ``flags``
219        -  Interface flags. Currently unused.
221     -  .. row 4
223        -  __u32
225        -  ``reserved``\ [9]
227        -  Reserved for future extensions. Drivers and applications must set
228           this array to zero.
230     -  .. row 5
232        -  struct media_v2_intf_devnode
234        -  ``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
245     :header-rows:  0
246     :stub-columns: 0
247     :widths: 1 2 8
250     -  .. row 1
252        -  __u32
254        -  ``major``
256        -  Device node major number.
258     -  .. row 2
260        -  __u32
262        -  ``minor``
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
272     :header-rows:  0
273     :stub-columns: 0
274     :widths: 1 2 8
277     -  .. row 1
279        -  __u32
281        -  ``id``
283        -  Unique ID for the pad.
285     -  .. row 2
287        -  __u32
289        -  ``entity_id``
291        -  Unique ID for the entity where this pad belongs.
293     -  .. row 3
295        -  __u32
297        -  ``flags``
299        -  Pad flags, see :ref:`media-pad-flag` for more details.
301     -  .. row 4
303        -  __u32
305        -  ``reserved``\ [9]
307        -  Reserved for future extensions. Drivers and applications must set
308           this array to zero.
311 .. tabularcolumns:: |p{1.6cm}|p{3.2cm}|p{12.7cm}|
313 .. c:type:: media_v2_link
315 .. flat-table:: struct media_v2_pad
316     :header-rows:  0
317     :stub-columns: 0
318     :widths: 1 2 8
321     -  .. row 1
323        -  __u32
325        -  ``id``
327        -  Unique ID for the pad.
329     -  .. row 2
331        -  __u32
333        -  ``source_id``
335        -  On pad to pad links: unique ID for the source pad.
337           On interface to entity links: unique ID for the interface.
339     -  .. row 3
341        -  __u32
343        -  ``sink_id``
345        -  On pad to pad links: unique ID for the sink pad.
347           On interface to entity links: unique ID for the entity.
349     -  .. row 4
351        -  __u32
353        -  ``flags``
355        -  Link flags, see :ref:`media-link-flag` for more details.
357     -  .. row 5
359        -  __u32
361        -  ``reserved``\ [5]
363        -  Reserved for future extensions. Drivers and applications must set
364           this array to zero.
367 Return Value
368 ============
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.
374 ENOSPC
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
381     again.