blob: bc0531eb56fab456d5d3756dd9332e072b1924f7 [file] [log] [blame]
Markus Heiser5377d912016-06-30 15:18:56 +02001.. -*- coding: utf-8; mode: rst -*-
2
Mauro Carvalho Chehabaf4a4d02016-07-01 13:42:29 -03003.. _VIDIOC_SUBDEV_ENUM_MBUS_CODE:
Markus Heiser5377d912016-06-30 15:18:56 +02004
5**********************************
6ioctl VIDIOC_SUBDEV_ENUM_MBUS_CODE
7**********************************
8
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -03009Name
Mauro Carvalho Chehab586027c2016-07-05 07:58:48 -030010====
Markus Heiser5377d912016-06-30 15:18:56 +020011
Mauro Carvalho Chehab586027c2016-07-05 07:58:48 -030012VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats
Markus Heiser5377d912016-06-30 15:18:56 +020013
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030014
15Synopsis
Markus Heiser5377d912016-06-30 15:18:56 +020016========
17
Mauro Carvalho Chehabb7e67f62016-07-02 09:49:16 -030018.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_mbus_code_enum * argp )
Markus Heiser5377d912016-06-30 15:18:56 +020019
Mauro Carvalho Chehab586027c2016-07-05 07:58:48 -030020
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030021Arguments
Markus Heiser5377d912016-06-30 15:18:56 +020022=========
23
24``fd``
25 File descriptor returned by :ref:`open() <func-open>`.
26
27``request``
28 VIDIOC_SUBDEV_ENUM_MBUS_CODE
29
30``argp``
31
32
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030033Description
Markus Heiser5377d912016-06-30 15:18:56 +020034===========
35
36To enumerate media bus formats available at a given sub-device pad
37applications initialize the ``pad``, ``which`` and ``index`` fields of
38struct
39:ref:`v4l2_subdev_mbus_code_enum <v4l2-subdev-mbus-code-enum>` and
Mauro Carvalho Chehab2212ff22016-07-01 14:33:56 -030040call the :ref:`VIDIOC_SUBDEV_ENUM_MBUS_CODE` ioctl with a pointer to this
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030041structure. Drivers fill the rest of the structure or return an ``EINVAL``
Markus Heiser5377d912016-06-30 15:18:56 +020042error code if either the ``pad`` or ``index`` are invalid. All media bus
43formats are enumerable by beginning at index zero and incrementing by
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030044one until ``EINVAL`` is returned.
Markus Heiser5377d912016-06-30 15:18:56 +020045
46Available media bus formats may depend on the current 'try' formats at
47other pads of the sub-device, as well as on the current active links.
Mauro Carvalho Chehab73470812016-07-01 13:58:44 -030048See :ref:`VIDIOC_SUBDEV_G_FMT` for more
Markus Heiser5377d912016-06-30 15:18:56 +020049information about the try formats.
50
51
52.. _v4l2-subdev-mbus-code-enum:
53
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
Mauro Carvalho Chehab0579e6e2016-07-04 16:25:48 -030083 :ref:`v4l2-mbus-format`.
Markus Heiser5377d912016-06-30 15:18:56 +020084
85 - .. row 4
86
87 - __u32
88
89 - ``which``
90
91 - Media bus format codes to be enumerated, from enum
Mauro Carvalho Chehab0579e6e2016-07-04 16:25:48 -030092 :ref:`v4l2_subdev_format_whence <v4l2-subdev-format-whence>`.
Markus Heiser5377d912016-06-30 15:18:56 +020093
94 - .. row 5
95
96 - __u32
97
Mauro Carvalho Chehab8968da92016-07-13 08:43:30 -030098 - ``reserved``\ [8]
Markus Heiser5377d912016-06-30 15:18:56 +020099
100 - Reserved for future extensions. Applications and drivers must set
Mauro Carvalho Chehab0579e6e2016-07-04 16:25:48 -0300101 the array to zero.
Markus Heiser5377d912016-06-30 15:18:56 +0200102
103
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -0300104Return Value
Markus Heiser5377d912016-06-30 15:18:56 +0200105============
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
113 :ref:`v4l2_subdev_mbus_code_enum <v4l2-subdev-mbus-code-enum>`
114 ``pad`` references a non-existing pad, or the ``index`` field is out
115 of bounds.