blob: 5b8e2fcb9c3a73bedc1a987344fc10d97f4b7285 [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_G_DV_TIMINGS:
Markus Heiser5377d912016-06-30 15:18:56 +02004
5**********************************************
6ioctl VIDIOC_G_DV_TIMINGS, VIDIOC_S_DV_TIMINGS
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_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
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_G_DV_TIMINGS, struct v4l2_dv_timings *argp )
19 :name: VIDIOC_G_DV_TIMINGS
20
21.. c:function:: int ioctl( int fd, VIDIOC_S_DV_TIMINGS, struct v4l2_dv_timings *argp )
22 :name: VIDIOC_S_DV_TIMINGS
23
24.. c:function:: int ioctl( int fd, VIDIOC_SUBDEV_G_DV_TIMINGS, struct v4l2_dv_timings *argp )
25 :name: VIDIOC_SUBDEV_G_DV_TIMINGS
26
27.. c:function:: int ioctl( int fd, VIDIOC_SUBDEV_S_DV_TIMINGS, struct v4l2_dv_timings *argp )
28 :name: VIDIOC_SUBDEV_S_DV_TIMINGS
Markus Heiser5377d912016-06-30 15:18:56 +020029
Mauro Carvalho Chehab586027c2016-07-05 07:58:48 -030030
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030031Arguments
Markus Heiser5377d912016-06-30 15:18:56 +020032=========
33
34``fd``
35 File descriptor returned by :ref:`open() <func-open>`.
36
Markus Heiser5377d912016-06-30 15:18:56 +020037``argp``
38
39
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030040Description
Markus Heiser5377d912016-06-30 15:18:56 +020041===========
42
43To set DV timings for the input or output, applications use the
Mauro Carvalho Chehab2212ff22016-07-01 14:33:56 -030044:ref:`VIDIOC_S_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>` ioctl and to get the current timings,
Mauro Carvalho Chehab4e03cb72016-07-03 10:02:29 -030045applications use the :ref:`VIDIOC_G_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>` ioctl. The detailed timing
Markus Heiser5377d912016-06-30 15:18:56 +020046information is filled in using the structure struct
Mauro Carvalho Chehabe8be7e92016-08-29 17:37:59 -030047:c:type:`v4l2_dv_timings`. These ioctls take a
48pointer to the struct :c:type:`v4l2_dv_timings`
Markus Heiser5377d912016-06-30 15:18:56 +020049structure as argument. If the ioctl is not supported or the timing
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030050values are not correct, the driver returns ``EINVAL`` error code.
Markus Heiser5377d912016-06-30 15:18:56 +020051
52The ``linux/v4l2-dv-timings.h`` header can be used to get the timings of
53the formats in the :ref:`cea861` and :ref:`vesadmt` standards. If
54the current input or output does not support DV timings (e.g. if
Mauro Carvalho Chehab73470812016-07-01 13:58:44 -030055:ref:`VIDIOC_ENUMINPUT` does not set the
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030056``V4L2_IN_CAP_DV_TIMINGS`` flag), then ``ENODATA`` error code is returned.
Markus Heiser5377d912016-06-30 15:18:56 +020057
58
Mauro Carvalho Chehab15e7d612016-07-05 15:14:35 -030059Return Value
Markus Heiser5377d912016-06-30 15:18:56 +020060============
61
62On success 0 is returned, on error -1 and the ``errno`` variable is set
63appropriately. The generic error codes are described at the
64:ref:`Generic Error Codes <gen-errors>` chapter.
65
66EINVAL
Mauro Carvalho Chehab2212ff22016-07-01 14:33:56 -030067 This ioctl is not supported, or the :ref:`VIDIOC_S_DV_TIMINGS <VIDIOC_G_DV_TIMINGS>`
Markus Heiser5377d912016-06-30 15:18:56 +020068 parameter was unsuitable.
69
70ENODATA
71 Digital video timings are not supported for this input or output.
72
73EBUSY
74 The device is busy and therefore can not change the timings.
75
76
Mauro Carvalho Chehab5bd4bb72016-08-17 08:14:19 -030077.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
78
Mauro Carvalho Chehabe8be7e92016-08-29 17:37:59 -030079.. c:type:: v4l2_bt_timings
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -030080
Markus Heiser5377d912016-06-30 15:18:56 +020081.. flat-table:: struct v4l2_bt_timings
82 :header-rows: 0
83 :stub-columns: 0
84 :widths: 1 1 2
85
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -030086 * - __u32
87 - ``width``
88 - Width of the active video in pixels.
89 * - __u32
90 - ``height``
91 - Height of the active video frame in lines. So for interlaced
92 formats the height of the active video in each field is
93 ``height``/2.
94 * - __u32
95 - ``interlaced``
96 - Progressive (``V4L2_DV_PROGRESSIVE``) or interlaced (``V4L2_DV_INTERLACED``).
97 * - __u32
98 - ``polarities``
99 - This is a bit mask that defines polarities of sync signals. bit 0
100 (``V4L2_DV_VSYNC_POS_POL``) is for vertical sync polarity and bit
101 1 (``V4L2_DV_HSYNC_POS_POL``) is for horizontal sync polarity. If
102 the bit is set (1) it is positive polarity and if is cleared (0),
103 it is negative polarity.
104 * - __u64
105 - ``pixelclock``
106 - Pixel clock in Hz. Ex. 74.25MHz->74250000
107 * - __u32
108 - ``hfrontporch``
109 - Horizontal front porch in pixels
110 * - __u32
111 - ``hsync``
112 - Horizontal sync length in pixels
113 * - __u32
114 - ``hbackporch``
115 - Horizontal back porch in pixels
116 * - __u32
117 - ``vfrontporch``
118 - Vertical front porch in lines. For interlaced formats this refers
119 to the odd field (aka field 1).
120 * - __u32
121 - ``vsync``
122 - Vertical sync length in lines. For interlaced formats this refers
123 to the odd field (aka field 1).
124 * - __u32
125 - ``vbackporch``
126 - Vertical back porch in lines. For interlaced formats this refers
127 to the odd field (aka field 1).
128 * - __u32
129 - ``il_vfrontporch``
130 - Vertical front porch in lines for the even field (aka field 2) of
131 interlaced field formats. Must be 0 for progressive formats.
132 * - __u32
133 - ``il_vsync``
134 - Vertical sync length in lines for the even field (aka field 2) of
135 interlaced field formats. Must be 0 for progressive formats.
136 * - __u32
137 - ``il_vbackporch``
138 - Vertical back porch in lines for the even field (aka field 2) of
139 interlaced field formats. Must be 0 for progressive formats.
140 * - __u32
141 - ``standards``
142 - The video standard(s) this format belongs to. This will be filled
143 in by the driver. Applications must set this to 0. See
144 :ref:`dv-bt-standards` for a list of standards.
145 * - __u32
146 - ``flags``
147 - Several flags giving more information about the format. See
148 :ref:`dv-bt-flags` for a description of the flags.
Hans Verkuil3406e892017-02-10 06:19:14 -0200149 * - struct :c:type:`v4l2_fract`
150 - ``picture_aspect``
151 - The picture aspect if the pixels are not square. Only valid if the
152 ``V4L2_DV_FL_HAS_PICTURE_ASPECT`` flag is set.
153 * - __u8
154 - ``cea861_vic``
155 - The Video Identification Code according to the CEA-861 standard.
156 Only valid if the ``V4L2_DV_FL_HAS_CEA861_VIC`` flag is set.
157 * - __u8
158 - ``hdmi_vic``
159 - The Video Identification Code according to the HDMI standard.
160 Only valid if the ``V4L2_DV_FL_HAS_HDMI_VIC`` flag is set.
161 * - __u8
162 - ``reserved[46]``
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -0300163 - Reserved for future extensions. Drivers and applications must set
164 the array to zero.
Markus Heiser5377d912016-06-30 15:18:56 +0200165
166
Mauro Carvalho Chehab5bd4bb72016-08-17 08:14:19 -0300167.. tabularcolumns:: |p{3.5cm}|p{3.5cm}|p{7.0cm}|p{3.5cm}|
168
Mauro Carvalho Chehabe8be7e92016-08-29 17:37:59 -0300169.. c:type:: v4l2_dv_timings
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -0300170
Markus Heiser5377d912016-06-30 15:18:56 +0200171.. flat-table:: struct v4l2_dv_timings
172 :header-rows: 0
173 :stub-columns: 0
174 :widths: 1 1 2 1
175
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -0300176 * - __u32
177 - ``type``
178 -
179 - Type of DV timings as listed in :ref:`dv-timing-types`.
180 * - union
181 -
182 -
183 * -
184 - struct :c:type:`v4l2_bt_timings`
185 - ``bt``
186 - Timings defined by BT.656/1120 specifications
187 * -
188 - __u32
189 - ``reserved``\ [32]
190 -
Markus Heiser5377d912016-06-30 15:18:56 +0200191
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -0300192.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
Markus Heiser5377d912016-06-30 15:18:56 +0200193
194.. _dv-timing-types:
195
196.. flat-table:: DV Timing types
197 :header-rows: 0
198 :stub-columns: 0
199 :widths: 1 1 2
200
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -0300201 * - Timing type
202 - value
203 - Description
204 * -
205 -
206 -
207 * - ``V4L2_DV_BT_656_1120``
208 - 0
209 - BT.656/1120 timings
Markus Heiser5377d912016-06-30 15:18:56 +0200210
Mauro Carvalho Chehab70b074d2017-08-26 05:28:26 -0400211.. tabularcolumns:: |p{4.5cm}|p{12.8cm}|
Markus Heiser5377d912016-06-30 15:18:56 +0200212
213.. _dv-bt-standards:
214
215.. flat-table:: DV BT Timing standards
216 :header-rows: 0
217 :stub-columns: 0
218
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -0300219 * - Timing standard
220 - Description
221 * - ``V4L2_DV_BT_STD_CEA861``
222 - The timings follow the CEA-861 Digital TV Profile standard
223 * - ``V4L2_DV_BT_STD_DMT``
224 - The timings follow the VESA Discrete Monitor Timings standard
225 * - ``V4L2_DV_BT_STD_CVT``
226 - The timings follow the VESA Coordinated Video Timings standard
227 * - ``V4L2_DV_BT_STD_GTF``
228 - The timings follow the VESA Generalized Timings Formula standard
229 * - ``V4L2_DV_BT_STD_SDI``
230 - The timings follow the SDI Timings standard.
231 There are no horizontal syncs/porches at all in this format.
232 Total blanking timings must be set in hsync or vsync fields only.
Markus Heiser5377d912016-06-30 15:18:56 +0200233
Mauro Carvalho Chehab70b074d2017-08-26 05:28:26 -0400234.. tabularcolumns:: |p{7.0cm}|p{10.5cm}|
Markus Heiser5377d912016-06-30 15:18:56 +0200235
236.. _dv-bt-flags:
237
238.. flat-table:: DV BT Timing flags
239 :header-rows: 0
240 :stub-columns: 0
241
Laurent Pinchartc2b66ca2016-09-05 08:44:34 -0300242 * - Flag
243 - Description
244 * - ``V4L2_DV_FL_REDUCED_BLANKING``
245 - CVT/GTF specific: the timings use reduced blanking (CVT) or the
246 'Secondary GTF' curve (GTF). In both cases the horizontal and/or
247 vertical blanking intervals are reduced, allowing a higher
248 resolution over the same bandwidth. This is a read-only flag,
249 applications must not set this.
250 * - ``V4L2_DV_FL_CAN_REDUCE_FPS``
251 - CEA-861 specific: set for CEA-861 formats with a framerate that is
252 a multiple of six. These formats can be optionally played at 1 /
253 1.001 speed to be compatible with 60 Hz based standards such as
254 NTSC and PAL-M that use a framerate of 29.97 frames per second. If
255 the transmitter can't generate such frequencies, then the flag
256 will also be cleared. This is a read-only flag, applications must
257 not set this.
258 * - ``V4L2_DV_FL_REDUCED_FPS``
259 - CEA-861 specific: only valid for video transmitters, the flag is
260 cleared by receivers. It is also only valid for formats with the
261 ``V4L2_DV_FL_CAN_REDUCE_FPS`` flag set, for other formats the
262 flag will be cleared by the driver. If the application sets this
263 flag, then the pixelclock used to set up the transmitter is
264 divided by 1.001 to make it compatible with NTSC framerates. If
265 the transmitter can't generate such frequencies, then the flag
266 will also be cleared.
267 * - ``V4L2_DV_FL_HALF_LINE``
268 - Specific to interlaced formats: if set, then the vertical
269 frontporch of field 1 (aka the odd field) is really one half-line
270 longer and the vertical backporch of field 2 (aka the even field)
271 is really one half-line shorter, so each field has exactly the
272 same number of half-lines. Whether half-lines can be detected or
273 used depends on the hardware.
274 * - ``V4L2_DV_FL_IS_CE_VIDEO``
275 - If set, then this is a Consumer Electronics (CE) video format.
276 Such formats differ from other formats (commonly called IT
277 formats) in that if R'G'B' encoding is used then by default the
278 R'G'B' values use limited range (i.e. 16-235) as opposed to full
279 range (i.e. 0-255). All formats defined in CEA-861 except for the
280 640x480p59.94 format are CE formats.
281 * - ``V4L2_DV_FL_FIRST_FIELD_EXTRA_LINE``
282 - Some formats like SMPTE-125M have an interlaced signal with a odd
283 total height. For these formats, if this flag is set, the first
284 field has the extra line. Else, it is the second field.
Hans Verkuila5e18f12016-09-16 07:38:04 -0300285 * - ``V4L2_DV_FL_HAS_PICTURE_ASPECT``
286 - If set, then the picture_aspect field is valid. Otherwise assume that
287 the pixels are square, so the picture aspect ratio is the same as the
288 width to height ratio.
289 * - ``V4L2_DV_FL_HAS_CEA861_VIC``
290 - If set, then the cea861_vic field is valid and contains the Video
291 Identification Code as per the CEA-861 standard.
292 * - ``V4L2_DV_FL_HAS_HDMI_VIC``
293 - If set, then the hdmi_vic field is valid and contains the Video
294 Identification Code as per the HDMI standard (HDMI Vendor Specific
295 InfoFrame).