Merge remote-tracking branch 'mmc-uh/next'
[deliverable/linux.git] / Documentation / media / uapi / v4l / vidioc-subdev-enum-mbus-code.rst
CommitLineData
5377d91f
MH
1.. -*- coding: utf-8; mode: rst -*-
2
af4a4d0d 3.. _VIDIOC_SUBDEV_ENUM_MBUS_CODE:
5377d91f
MH
4
5**********************************
6ioctl VIDIOC_SUBDEV_ENUM_MBUS_CODE
7**********************************
8
15e7d615 9Name
586027ce 10====
5377d91f 11
586027ce 12VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats
5377d91f 13
15e7d615
MCC
14
15Synopsis
5377d91f
MH
16========
17
41d80465
MCC
18.. c:function:: int ioctl( int fd, VIDIOC_SUBDEV_ENUM_MBUS_CODE, struct v4l2_subdev_mbus_code_enum * argp )
19 :name: VIDIOC_SUBDEV_ENUM_MBUS_CODE
5377d91f 20
586027ce 21
15e7d615 22Arguments
5377d91f
MH
23=========
24
25``fd``
26 File descriptor returned by :ref:`open() <func-open>`.
27
5377d91f
MH
28``argp``
29
30
15e7d615 31Description
5377d91f
MH
32===========
33
34To enumerate media bus formats available at a given sub-device pad
35applications initialize the ``pad``, ``which`` and ``index`` fields of
36struct
56683d7d 37:c:type:`v4l2_subdev_mbus_code_enum` and
2212ff25 38call the :ref:`VIDIOC_SUBDEV_ENUM_MBUS_CODE` ioctl with a pointer to this
cdb4af0f 39structure. Drivers fill the rest of the structure or return an ``EINVAL``
5377d91f
MH
40error code if either the ``pad`` or ``index`` are invalid. All media bus
41formats are enumerable by beginning at index zero and incrementing by
cdb4af0f 42one until ``EINVAL`` is returned.
5377d91f
MH
43
44Available media bus formats may depend on the current 'try' formats at
45other pads of the sub-device, as well as on the current active links.
7347081e 46See :ref:`VIDIOC_SUBDEV_G_FMT` for more
5377d91f
MH
47information about the try formats.
48
49
56683d7d 50.. c:type:: v4l2_subdev_mbus_code_enum
5377d91f 51
5bd4bb78
MCC
52.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
53
5377d91f
MH
54.. flat-table:: struct v4l2_subdev_mbus_code_enum
55 :header-rows: 0
56 :stub-columns: 0
57 :widths: 1 1 2
58
59
60 - .. row 1
61
62 - __u32
63
64 - ``pad``
65
66 - Pad number as reported by the media controller API.
67
68 - .. row 2
69
70 - __u32
71
72 - ``index``
73
74 - Number of the format in the enumeration, set by the application.
75
76 - .. row 3
77
78 - __u32
79
80 - ``code``
81
82 - The media bus format code, as defined in
0579e6e3 83 :ref:`v4l2-mbus-format`.
5377d91f
MH
84
85 - .. row 4
86
87 - __u32
88
89 - ``which``
90
91 - Media bus format codes to be enumerated, from enum
0579e6e3 92 :ref:`v4l2_subdev_format_whence <v4l2-subdev-format-whence>`.
5377d91f
MH
93
94 - .. row 5
95
96 - __u32
97
8968da9b 98 - ``reserved``\ [8]
5377d91f
MH
99
100 - Reserved for future extensions. Applications and drivers must set
0579e6e3 101 the array to zero.
5377d91f
MH
102
103
15e7d615 104Return Value
5377d91f
MH
105============
106
107On success 0 is returned, on error -1 and the ``errno`` variable is set
108appropriately. The generic error codes are described at the
109:ref:`Generic Error Codes <gen-errors>` chapter.
110
111EINVAL
112 The struct
56683d7d 113 :c:type:`v4l2_subdev_mbus_code_enum`
5377d91f
MH
114 ``pad`` references a non-existing pad, or the ``index`` field is out
115 of bounds.
This page took 0.092665 seconds and 5 git commands to generate.