blob: 0dfee3829ee2668be899f6c8da6e06b5547c088b [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 Chehab41d80462016-08-19 16:53:38 -030018.. 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
Markus Heiser5377d912016-06-30 15:18:56 +020020
Mauro Carvalho Chehab586027c2016-07-05 07:58:48 -030021
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030022Arguments
Markus Heiser5377d912016-06-30 15:18:56 +020023=========
24
25``fd``
26 File descriptor returned by :ref:`open() <func-open>`.
27
Markus Heiser5377d912016-06-30 15:18:56 +020028``argp``
29
30
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030031Description
Markus Heiser5377d912016-06-30 15:18:56 +020032===========
33
34To enumerate media bus formats available at a given sub-device pad
35applications initialize the ``pad``, ``which`` and ``index`` fields of
36struct
Mauro Carvalho Chehab56683d72016-09-08 06:41:26 -030037:c:type:`v4l2_subdev_mbus_code_enum` and
Mauro Carvalho Chehab2212ff22016-07-01 14:33:56 -030038call the :ref:`VIDIOC_SUBDEV_ENUM_MBUS_CODE` ioctl with a pointer to this
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030039structure. Drivers fill the rest of the structure or return an ``EINVAL``
Markus Heiser5377d912016-06-30 15:18:56 +020040error code if either the ``pad`` or ``index`` are invalid. All media bus
41formats are enumerable by beginning at index zero and incrementing by
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030042one until ``EINVAL`` is returned.
Markus Heiser5377d912016-06-30 15:18:56 +020043
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.
Mauro Carvalho Chehab73470812016-07-01 13:58:44 -030046See :ref:`VIDIOC_SUBDEV_G_FMT` for more
Markus Heiser5377d912016-06-30 15:18:56 +020047information about the try formats.
48
49
Mauro Carvalho Chehab56683d72016-09-08 06:41:26 -030050.. c:type:: v4l2_subdev_mbus_code_enum
Markus Heiser5377d912016-06-30 15:18:56 +020051
Mauro Carvalho Chehab5bd4bb72016-08-17 08:14:19 -030052.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
53
Markus Heiser5377d912016-06-30 15:18:56 +020054.. flat-table:: struct v4l2_subdev_mbus_code_enum
55 :header-rows: 0
56 :stub-columns: 0
57 :widths: 1 1 2
58
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -030059 * - __u32
60 - ``pad``
61 - Pad number as reported by the media controller API.
62 * - __u32
63 - ``index``
64 - Number of the format in the enumeration, set by the application.
65 * - __u32
66 - ``code``
67 - The media bus format code, as defined in
68 :ref:`v4l2-mbus-format`.
69 * - __u32
70 - ``which``
71 - Media bus format codes to be enumerated, from enum
72 :ref:`v4l2_subdev_format_whence <v4l2-subdev-format-whence>`.
73 * - __u32
74 - ``reserved``\ [8]
75 - Reserved for future extensions. Applications and drivers must set
76 the array to zero.
Markus Heiser5377d912016-06-30 15:18:56 +020077
78
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030079Return Value
Markus Heiser5377d912016-06-30 15:18:56 +020080============
81
82On success 0 is returned, on error -1 and the ``errno`` variable is set
83appropriately. The generic error codes are described at the
84:ref:`Generic Error Codes <gen-errors>` chapter.
85
86EINVAL
87 The struct
Mauro Carvalho Chehab56683d72016-09-08 06:41:26 -030088 :c:type:`v4l2_subdev_mbus_code_enum`
Markus Heiser5377d912016-06-30 15:18:56 +020089 ``pad`` references a non-existing pad, or the ``index`` field is out
90 of bounds.