blob: e18a653549cdb988539273dd225d673b50ae0c8c [file] [log] [blame]
Hans Verkuilb18787e2013-07-29 08:40:55 -03001/*
2 * v4l2-dv-timings - Internal header with dv-timings helper functions
3 *
4 * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
5 *
6 * This program is free software; you may redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
11 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
12 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
13 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
14 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
15 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17 * SOFTWARE.
18 *
19 */
20
21#ifndef __V4L2_DV_TIMINGS_H
22#define __V4L2_DV_TIMINGS_H
23
24#include <linux/videodev2.h>
25
Hans Verkuild1c65ad2013-08-19 10:19:54 -030026/** v4l2_dv_timings_presets: list of all dv_timings presets.
27 */
28extern const struct v4l2_dv_timings v4l2_dv_timings_presets[];
29
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030030/** v4l2_check_dv_timings_fnc - timings check callback
31 * @t: the v4l2_dv_timings struct.
32 * @handle: a handle from the driver.
33 *
34 * Returns true if the given timings are valid.
35 */
36typedef bool v4l2_check_dv_timings_fnc(const struct v4l2_dv_timings *t, void *handle);
37
Hans Verkuil70b65492013-08-19 10:23:33 -030038/** v4l2_valid_dv_timings() - are these timings valid?
Hans Verkuilb18787e2013-07-29 08:40:55 -030039 * @t: the v4l2_dv_timings struct.
40 * @cap: the v4l2_dv_timings_cap capabilities.
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030041 * @fnc: callback to check if this timing is OK. May be NULL.
42 * @fnc_handle: a handle that is passed on to @fnc.
Hans Verkuilb18787e2013-07-29 08:40:55 -030043 *
44 * Returns true if the given dv_timings struct is supported by the
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030045 * hardware capabilities and the callback function (if non-NULL), returns
46 * false otherwise.
Hans Verkuilb18787e2013-07-29 08:40:55 -030047 */
Hans Verkuil70b65492013-08-19 10:23:33 -030048bool v4l2_valid_dv_timings(const struct v4l2_dv_timings *t,
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030049 const struct v4l2_dv_timings_cap *cap,
50 v4l2_check_dv_timings_fnc fnc,
51 void *fnc_handle);
Hans Verkuilb18787e2013-07-29 08:40:55 -030052
53/** v4l2_enum_dv_timings_cap() - Helper function to enumerate possible DV timings based on capabilities
54 * @t: the v4l2_enum_dv_timings struct.
55 * @cap: the v4l2_dv_timings_cap capabilities.
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030056 * @fnc: callback to check if this timing is OK. May be NULL.
57 * @fnc_handle: a handle that is passed on to @fnc.
Hans Verkuilb18787e2013-07-29 08:40:55 -030058 *
59 * This enumerates dv_timings using the full list of possible CEA-861 and DMT
60 * timings, filtering out any timings that are not supported based on the
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030061 * hardware capabilities and the callback function (if non-NULL).
Hans Verkuilb18787e2013-07-29 08:40:55 -030062 *
63 * If a valid timing for the given index is found, it will fill in @t and
64 * return 0, otherwise it returns -EINVAL.
65 */
66int v4l2_enum_dv_timings_cap(struct v4l2_enum_dv_timings *t,
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030067 const struct v4l2_dv_timings_cap *cap,
68 v4l2_check_dv_timings_fnc fnc,
69 void *fnc_handle);
Hans Verkuilb18787e2013-07-29 08:40:55 -030070
71/** v4l2_find_dv_timings_cap() - Find the closest timings struct
72 * @t: the v4l2_enum_dv_timings struct.
73 * @cap: the v4l2_dv_timings_cap capabilities.
74 * @pclock_delta: maximum delta between t->pixelclock and the timing struct
75 * under consideration.
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030076 * @fnc: callback to check if a given timings struct is OK. May be NULL.
77 * @fnc_handle: a handle that is passed on to @fnc.
Hans Verkuilb18787e2013-07-29 08:40:55 -030078 *
79 * This function tries to map the given timings to an entry in the
80 * full list of possible CEA-861 and DMT timings, filtering out any timings
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030081 * that are not supported based on the hardware capabilities and the callback
82 * function (if non-NULL).
Hans Verkuilb18787e2013-07-29 08:40:55 -030083 *
84 * On success it will fill in @t with the found timings and it returns true.
85 * On failure it will return false.
86 */
87bool v4l2_find_dv_timings_cap(struct v4l2_dv_timings *t,
88 const struct v4l2_dv_timings_cap *cap,
Hans Verkuilb8f0fff2013-08-19 11:21:50 -030089 unsigned pclock_delta,
90 v4l2_check_dv_timings_fnc fnc,
91 void *fnc_handle);
Hans Verkuilb18787e2013-07-29 08:40:55 -030092
Hans Verkuilef1ed8f2013-08-15 08:28:47 -030093/** v4l2_match_dv_timings() - do two timings match?
Hans Verkuil25764152013-07-29 08:40:56 -030094 * @measured: the measured timings data.
95 * @standard: the timings according to the standard.
96 * @pclock_delta: maximum delta in Hz between standard->pixelclock and
97 * the measured timings.
98 *
99 * Returns true if the two timings match, returns false otherwise.
100 */
Hans Verkuilef1ed8f2013-08-15 08:28:47 -0300101bool v4l2_match_dv_timings(const struct v4l2_dv_timings *measured,
102 const struct v4l2_dv_timings *standard,
103 unsigned pclock_delta);
Hans Verkuil25764152013-07-29 08:40:56 -0300104
Hans Verkuil0216dc22013-08-15 08:02:40 -0300105/** v4l2_print_dv_timings() - log the contents of a dv_timings struct
106 * @dev_prefix:device prefix for each log line.
107 * @prefix: additional prefix for each log line, may be NULL.
108 * @t: the timings data.
109 * @detailed: if true, give a detailed log.
110 */
111void v4l2_print_dv_timings(const char *dev_prefix, const char *prefix,
112 const struct v4l2_dv_timings *t, bool detailed);
113
Hans Verkuil25764152013-07-29 08:40:56 -0300114/** v4l2_detect_cvt - detect if the given timings follow the CVT standard
115 * @frame_height - the total height of the frame (including blanking) in lines.
116 * @hfreq - the horizontal frequency in Hz.
117 * @vsync - the height of the vertical sync in lines.
Prashant Laddha5fea1bb2015-06-10 13:51:42 -0300118 * @active_width - active width of image (does not include blanking). This
119 * information is needed only in case of version 2 of reduced blanking.
120 * In other cases, this parameter does not have any effect on timings.
Hans Verkuil25764152013-07-29 08:40:56 -0300121 * @polarities - the horizontal and vertical polarities (same as struct
122 * v4l2_bt_timings polarities).
Prashant Laddha061ddda2015-05-22 02:27:34 -0300123 * @interlaced - if this flag is true, it indicates interlaced format
Hans Verkuil25764152013-07-29 08:40:56 -0300124 * @fmt - the resulting timings.
125 *
126 * This function will attempt to detect if the given values correspond to a
127 * valid CVT format. If so, then it will return true, and fmt will be filled
128 * in with the found CVT timings.
129 */
130bool v4l2_detect_cvt(unsigned frame_height, unsigned hfreq, unsigned vsync,
Prashant Laddha5fea1bb2015-06-10 13:51:42 -0300131 unsigned active_width, u32 polarities, bool interlaced,
132 struct v4l2_dv_timings *fmt);
Hans Verkuil25764152013-07-29 08:40:56 -0300133
134/** v4l2_detect_gtf - detect if the given timings follow the GTF standard
135 * @frame_height - the total height of the frame (including blanking) in lines.
136 * @hfreq - the horizontal frequency in Hz.
137 * @vsync - the height of the vertical sync in lines.
138 * @polarities - the horizontal and vertical polarities (same as struct
139 * v4l2_bt_timings polarities).
Prashant Laddha061ddda2015-05-22 02:27:34 -0300140 * @interlaced - if this flag is true, it indicates interlaced format
Hans Verkuil25764152013-07-29 08:40:56 -0300141 * @aspect - preferred aspect ratio. GTF has no method of determining the
142 * aspect ratio in order to derive the image width from the
143 * image height, so it has to be passed explicitly. Usually
144 * the native screen aspect ratio is used for this. If it
145 * is not filled in correctly, then 16:9 will be assumed.
146 * @fmt - the resulting timings.
147 *
148 * This function will attempt to detect if the given values correspond to a
149 * valid GTF format. If so, then it will return true, and fmt will be filled
150 * in with the found GTF timings.
151 */
152bool v4l2_detect_gtf(unsigned frame_height, unsigned hfreq, unsigned vsync,
Prashant Laddha061ddda2015-05-22 02:27:34 -0300153 u32 polarities, bool interlaced, struct v4l2_fract aspect,
Hans Verkuil25764152013-07-29 08:40:56 -0300154 struct v4l2_dv_timings *fmt);
155
156/** v4l2_calc_aspect_ratio - calculate the aspect ratio based on bytes
157 * 0x15 and 0x16 from the EDID.
158 * @hor_landscape - byte 0x15 from the EDID.
159 * @vert_portrait - byte 0x16 from the EDID.
160 *
161 * Determines the aspect ratio from the EDID.
162 * See VESA Enhanced EDID standard, release A, rev 2, section 3.6.2:
163 * "Horizontal and Vertical Screen Size or Aspect Ratio"
164 */
165struct v4l2_fract v4l2_calc_aspect_ratio(u8 hor_landscape, u8 vert_portrait);
166
Hans Verkuilb18787e2013-07-29 08:40:55 -0300167#endif