1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
4 .. _VIDIOC_G_DV_TIMINGS:
6 **********************************************
7 ioctl VIDIOC_G_DV_TIMINGS, VIDIOC_S_DV_TIMINGS
8 **********************************************
13 VIDIOC_G_DV_TIMINGS - VIDIOC_S_DV_TIMINGS - VIDIOC_SUBDEV_G_DV_TIMINGS - VIDIOC_SUBDEV_S_DV_TIMINGS - Get or set DV timings for input or output
18 .. c:macro:: VIDIOC_G_DV_TIMINGS
20 ``int ioctl(int fd, VIDIOC_G_DV_TIMINGS, struct v4l2_dv_timings *argp)``
22 .. c:macro:: VIDIOC_S_DV_TIMINGS
24 ``int ioctl(int fd, VIDIOC_S_DV_TIMINGS, struct v4l2_dv_timings *argp)``
26 .. c:macro:: VIDIOC_SUBDEV_G_DV_TIMINGS
28 ``int ioctl(int fd, VIDIOC_SUBDEV_G_DV_TIMINGS, struct v4l2_dv_timings *argp)``
30 .. c:macro:: VIDIOC_SUBDEV_S_DV_TIMINGS
32 ``int ioctl(int fd, VIDIOC_SUBDEV_S_DV_TIMINGS, struct v4l2_dv_timings *argp)``
38 File descriptor returned by :c:func:`open()`.
41 Pointer to struct :c:type:`v4l2_dv_timings`.
46 To set DV timings for the input or output, applications use the
47 :ref:`VIDIOC_S_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>` ioctl and to get the current timings,
48 applications use the :ref:`VIDIOC_G_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>` ioctl. The detailed timing
49 information is filled in using the structure struct
50 :c:type:`v4l2_dv_timings`. These ioctls take a
51 pointer to the struct :c:type:`v4l2_dv_timings`
52 structure as argument. If the ioctl is not supported or the timing
53 values are not correct, the driver returns ``EINVAL`` error code.
55 Calling ``VIDIOC_SUBDEV_S_DV_TIMINGS`` on a subdev device node that has been
56 registered in read-only mode is not allowed. An error is returned and the errno
57 variable is set to ``-EPERM``.
59 The ``linux/v4l2-dv-timings.h`` header can be used to get the timings of
60 the formats in the :ref:`cea861` and :ref:`vesadmt` standards. If
61 the current input or output does not support DV timings (e.g. if
62 :ref:`VIDIOC_ENUMINPUT` does not set the
63 ``V4L2_IN_CAP_DV_TIMINGS`` flag), then ``ENODATA`` error code is returned.
68 On success 0 is returned, on error -1 and the ``errno`` variable is set
69 appropriately. The generic error codes are described at the
70 :ref:`Generic Error Codes <gen-errors>` chapter.
73 This ioctl is not supported, or the :ref:`VIDIOC_S_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>`
74 parameter was unsuitable.
77 Digital video timings are not supported for this input or output.
80 The device is busy and therefore can not change the timings.
83 ``VIDIOC_SUBDEV_S_DV_TIMINGS`` has been called on a read-only subdevice.
85 .. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
87 .. c:type:: v4l2_bt_timings
89 .. flat-table:: struct v4l2_bt_timings
96 - Width of the active video in pixels.
99 - Height of the active video frame in lines. So for interlaced
100 formats the height of the active video in each field is
104 - Progressive (``V4L2_DV_PROGRESSIVE``) or interlaced (``V4L2_DV_INTERLACED``).
107 - This is a bit mask that defines polarities of sync signals. bit 0
108 (``V4L2_DV_VSYNC_POS_POL``) is for vertical sync polarity and bit
109 1 (``V4L2_DV_HSYNC_POS_POL``) is for horizontal sync polarity. If
110 the bit is set (1) it is positive polarity and if is cleared (0),
111 it is negative polarity.
114 - Pixel clock in Hz. Ex. 74.25MHz->74250000
117 - Horizontal front porch in pixels
120 - Horizontal sync length in pixels
123 - Horizontal back porch in pixels
126 - Vertical front porch in lines. For interlaced formats this refers
127 to the odd field (aka field 1).
130 - Vertical sync length in lines. For interlaced formats this refers
131 to the odd field (aka field 1).
134 - Vertical back porch in lines. For interlaced formats this refers
135 to the odd field (aka field 1).
138 - Vertical front porch in lines for the even field (aka field 2) of
139 interlaced field formats. Must be 0 for progressive formats.
142 - Vertical sync length in lines for the even field (aka field 2) of
143 interlaced field formats. Must be 0 for progressive formats.
146 - Vertical back porch in lines for the even field (aka field 2) of
147 interlaced field formats. Must be 0 for progressive formats.
150 - The video standard(s) this format belongs to. This will be filled
151 in by the driver. Applications must set this to 0. See
152 :ref:`dv-bt-standards` for a list of standards.
155 - Several flags giving more information about the format. See
156 :ref:`dv-bt-flags` for a description of the flags.
157 * - struct :c:type:`v4l2_fract`
159 - The picture aspect if the pixels are not square. Only valid if the
160 ``V4L2_DV_FL_HAS_PICTURE_ASPECT`` flag is set.
163 - The Video Identification Code according to the CEA-861 standard.
164 Only valid if the ``V4L2_DV_FL_HAS_CEA861_VIC`` flag is set.
167 - The Video Identification Code according to the HDMI standard.
168 Only valid if the ``V4L2_DV_FL_HAS_HDMI_VIC`` flag is set.
171 - Reserved for future extensions. Drivers and applications must set
174 .. tabularcolumns:: |p{3.5cm}|p{3.5cm}|p{7.0cm}|p{3.5cm}|
176 .. c:type:: v4l2_dv_timings
178 .. flat-table:: struct v4l2_dv_timings
185 - Type of DV timings as listed in :ref:`dv-timing-types`.
188 * - struct :c:type:`v4l2_bt_timings`
190 - Timings defined by BT.656/1120 specifications
197 .. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
201 .. flat-table:: DV Timing types
212 * - ``V4L2_DV_BT_656_1120``
214 - BT.656/1120 timings
216 .. tabularcolumns:: |p{4.5cm}|p{12.8cm}|
220 .. flat-table:: DV BT Timing standards
226 * - ``V4L2_DV_BT_STD_CEA861``
227 - The timings follow the CEA-861 Digital TV Profile standard
228 * - ``V4L2_DV_BT_STD_DMT``
229 - The timings follow the VESA Discrete Monitor Timings standard
230 * - ``V4L2_DV_BT_STD_CVT``
231 - The timings follow the VESA Coordinated Video Timings standard
232 * - ``V4L2_DV_BT_STD_GTF``
233 - The timings follow the VESA Generalized Timings Formula standard
234 * - ``V4L2_DV_BT_STD_SDI``
235 - The timings follow the SDI Timings standard.
236 There are no horizontal syncs/porches at all in this format.
237 Total blanking timings must be set in hsync or vsync fields only.
239 .. tabularcolumns:: |p{7.0cm}|p{10.5cm}|
243 .. flat-table:: DV BT Timing flags
249 * - ``V4L2_DV_FL_REDUCED_BLANKING``
250 - CVT/GTF specific: the timings use reduced blanking (CVT) or the
251 'Secondary GTF' curve (GTF). In both cases the horizontal and/or
252 vertical blanking intervals are reduced, allowing a higher
253 resolution over the same bandwidth. This is a read-only flag,
254 applications must not set this.
255 * - ``V4L2_DV_FL_CAN_REDUCE_FPS``
256 - CEA-861 specific: set for CEA-861 formats with a framerate that is
257 a multiple of six. These formats can be optionally played at 1 /
258 1.001 speed to be compatible with 60 Hz based standards such as
259 NTSC and PAL-M that use a framerate of 29.97 frames per second. If
260 the transmitter can't generate such frequencies, then the flag
261 will also be cleared. This is a read-only flag, applications must
263 * - ``V4L2_DV_FL_REDUCED_FPS``
264 - CEA-861 specific: only valid for video transmitters or video
265 receivers that have the ``V4L2_DV_FL_CAN_DETECT_REDUCED_FPS``
266 set. This flag is cleared otherwise. It is also only valid for
267 formats with the ``V4L2_DV_FL_CAN_REDUCE_FPS`` flag set, for other
268 formats the flag will be cleared by the driver.
270 If the application sets this flag for a transmitter, then the
271 pixelclock used to set up the transmitter is divided by 1.001 to
272 make it compatible with NTSC framerates. If the transmitter can't
273 generate such frequencies, then the flag will be cleared.
275 If a video receiver detects that the format uses a reduced framerate,
276 then it will set this flag to signal this to the application.
277 * - ``V4L2_DV_FL_HALF_LINE``
278 - Specific to interlaced formats: if set, then the vertical
279 frontporch of field 1 (aka the odd field) is really one half-line
280 longer and the vertical backporch of field 2 (aka the even field)
281 is really one half-line shorter, so each field has exactly the
282 same number of half-lines. Whether half-lines can be detected or
283 used depends on the hardware.
284 * - ``V4L2_DV_FL_IS_CE_VIDEO``
285 - If set, then this is a Consumer Electronics (CE) video format.
286 Such formats differ from other formats (commonly called IT
287 formats) in that if R'G'B' encoding is used then by default the
288 R'G'B' values use limited range (i.e. 16-235) as opposed to full
289 range (i.e. 0-255). All formats defined in CEA-861 except for the
290 640x480p59.94 format are CE formats.
291 * - ``V4L2_DV_FL_FIRST_FIELD_EXTRA_LINE``
292 - Some formats like SMPTE-125M have an interlaced signal with a odd
293 total height. For these formats, if this flag is set, the first
294 field has the extra line. Else, it is the second field.
295 * - ``V4L2_DV_FL_HAS_PICTURE_ASPECT``
296 - If set, then the picture_aspect field is valid. Otherwise assume that
297 the pixels are square, so the picture aspect ratio is the same as the
298 width to height ratio.
299 * - ``V4L2_DV_FL_HAS_CEA861_VIC``
300 - If set, then the cea861_vic field is valid and contains the Video
301 Identification Code as per the CEA-861 standard.
302 * - ``V4L2_DV_FL_HAS_HDMI_VIC``
303 - If set, then the hdmi_vic field is valid and contains the Video
304 Identification Code as per the HDMI standard (HDMI Vendor Specific
306 * - ``V4L2_DV_FL_CAN_DETECT_REDUCED_FPS``
307 - CEA-861 specific: only valid for video receivers, the flag is
308 cleared by transmitters.
309 If set, then the hardware can detect the difference between
310 regular framerates and framerates reduced by 1000/1001. E.g.:
311 60 vs 59.94 Hz, 30 vs 29.97 Hz or 24 vs 23.976 Hz.