Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 1 | .. -*- coding: utf-8; mode: rst -*- |
| 2 | |
Mauro Carvalho Chehab | af4a4d0 | 2016-07-01 13:42:29 -0300 | [diff] [blame] | 3 | .. _VIDIOC_SUBDEV_ENUM_MBUS_CODE: |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 4 | |
| 5 | ********************************** |
| 6 | ioctl VIDIOC_SUBDEV_ENUM_MBUS_CODE |
| 7 | ********************************** |
| 8 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 9 | Name |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 10 | ==== |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 11 | |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 12 | VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 13 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 14 | |
| 15 | Synopsis |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 16 | ======== |
| 17 | |
Mauro Carvalho Chehab | 41d8046 | 2016-08-19 16:53:38 -0300 | [diff] [blame] | 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 |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 20 | |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 21 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 22 | Arguments |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 23 | ========= |
| 24 | |
| 25 | ``fd`` |
| 26 | File descriptor returned by :ref:`open() <func-open>`. |
| 27 | |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 28 | ``argp`` |
| 29 | |
| 30 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 31 | Description |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 32 | =========== |
| 33 | |
| 34 | To enumerate media bus formats available at a given sub-device pad |
| 35 | applications initialize the ``pad``, ``which`` and ``index`` fields of |
| 36 | struct |
Mauro Carvalho Chehab | 56683d7 | 2016-09-08 06:41:26 -0300 | [diff] [blame] | 37 | :c:type:`v4l2_subdev_mbus_code_enum` and |
Mauro Carvalho Chehab | 2212ff2 | 2016-07-01 14:33:56 -0300 | [diff] [blame] | 38 | call the :ref:`VIDIOC_SUBDEV_ENUM_MBUS_CODE` ioctl with a pointer to this |
Mauro Carvalho Chehab | cdb4af0 | 2016-07-03 11:53:09 -0300 | [diff] [blame] | 39 | structure. Drivers fill the rest of the structure or return an ``EINVAL`` |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 40 | error code if either the ``pad`` or ``index`` are invalid. All media bus |
| 41 | formats are enumerable by beginning at index zero and incrementing by |
Mauro Carvalho Chehab | cdb4af0 | 2016-07-03 11:53:09 -0300 | [diff] [blame] | 42 | one until ``EINVAL`` is returned. |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 43 | |
| 44 | Available media bus formats may depend on the current 'try' formats at |
| 45 | other pads of the sub-device, as well as on the current active links. |
Mauro Carvalho Chehab | 7347081 | 2016-07-01 13:58:44 -0300 | [diff] [blame] | 46 | See :ref:`VIDIOC_SUBDEV_G_FMT` for more |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 47 | information about the try formats. |
| 48 | |
| 49 | |
Mauro Carvalho Chehab | 56683d7 | 2016-09-08 06:41:26 -0300 | [diff] [blame] | 50 | .. c:type:: v4l2_subdev_mbus_code_enum |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 51 | |
Mauro Carvalho Chehab | 5bd4bb7 | 2016-08-17 08:14:19 -0300 | [diff] [blame] | 52 | .. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}| |
| 53 | |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 54 | .. flat-table:: struct v4l2_subdev_mbus_code_enum |
| 55 | :header-rows: 0 |
| 56 | :stub-columns: 0 |
| 57 | :widths: 1 1 2 |
| 58 | |
Laurent Pinchart | c2b66ca | 2016-09-05 08:44:34 -0300 | [diff] [blame] | 59 | * - __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 Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 77 | |
| 78 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 79 | Return Value |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 80 | ============ |
| 81 | |
| 82 | On success 0 is returned, on error -1 and the ``errno`` variable is set |
| 83 | appropriately. The generic error codes are described at the |
| 84 | :ref:`Generic Error Codes <gen-errors>` chapter. |
| 85 | |
| 86 | EINVAL |
| 87 | The struct |
Mauro Carvalho Chehab | 56683d7 | 2016-09-08 06:41:26 -0300 | [diff] [blame] | 88 | :c:type:`v4l2_subdev_mbus_code_enum` |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 89 | ``pad`` references a non-existing pad, or the ``index`` field is out |
| 90 | of bounds. |