Hans Verkuil | ab15d24 | 2018-02-07 09:05:46 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 2 | /* |
| 3 | * v4l2-dv-timings - Internal header with dv-timings helper functions |
| 4 | * |
| 5 | * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved. |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __V4L2_DV_TIMINGS_H |
| 9 | #define __V4L2_DV_TIMINGS_H |
| 10 | |
| 11 | #include <linux/videodev2.h> |
| 12 | |
Jose Abreu | 87f9ed8 | 2017-03-21 07:49:17 -0400 | [diff] [blame] | 13 | /** |
| 14 | * v4l2_calc_timeperframe - helper function to calculate timeperframe based |
| 15 | * v4l2_dv_timings fields. |
| 16 | * @t: Timings for the video mode. |
| 17 | * |
| 18 | * Calculates the expected timeperframe using the pixel clock value and |
| 19 | * horizontal/vertical measures. This means that v4l2_dv_timings structure |
| 20 | * must be correctly and fully filled. |
| 21 | */ |
| 22 | struct v4l2_fract v4l2_calc_timeperframe(const struct v4l2_dv_timings *t); |
| 23 | |
Mauro Carvalho Chehab | fb91aec | 2015-10-01 09:35:01 -0300 | [diff] [blame] | 24 | /* |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 25 | * v4l2_dv_timings_presets: list of all dv_timings presets. |
Hans Verkuil | d1c65ad | 2013-08-19 10:19:54 -0300 | [diff] [blame] | 26 | */ |
| 27 | extern const struct v4l2_dv_timings v4l2_dv_timings_presets[]; |
| 28 | |
Mauro Carvalho Chehab | f06606e | 2016-08-30 20:11:11 -0300 | [diff] [blame] | 29 | /** |
| 30 | * typedef v4l2_check_dv_timings_fnc - timings check callback |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 31 | * |
Hans Verkuil | b8f0fff | 2013-08-19 11:21:50 -0300 | [diff] [blame] | 32 | * @t: the v4l2_dv_timings struct. |
| 33 | * @handle: a handle from the driver. |
| 34 | * |
| 35 | * Returns true if the given timings are valid. |
| 36 | */ |
| 37 | typedef bool v4l2_check_dv_timings_fnc(const struct v4l2_dv_timings *t, void *handle); |
| 38 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 39 | /** |
| 40 | * v4l2_valid_dv_timings() - are these timings valid? |
| 41 | * |
| 42 | * @t: the v4l2_dv_timings struct. |
| 43 | * @cap: the v4l2_dv_timings_cap capabilities. |
| 44 | * @fnc: callback to check if this timing is OK. May be NULL. |
| 45 | * @fnc_handle: a handle that is passed on to @fnc. |
| 46 | * |
| 47 | * Returns true if the given dv_timings struct is supported by the |
| 48 | * hardware capabilities and the callback function (if non-NULL), returns |
| 49 | * false otherwise. |
| 50 | */ |
Hans Verkuil | 70b6549 | 2013-08-19 10:23:33 -0300 | [diff] [blame] | 51 | bool v4l2_valid_dv_timings(const struct v4l2_dv_timings *t, |
Hans Verkuil | b8f0fff | 2013-08-19 11:21:50 -0300 | [diff] [blame] | 52 | const struct v4l2_dv_timings_cap *cap, |
| 53 | v4l2_check_dv_timings_fnc fnc, |
| 54 | void *fnc_handle); |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 55 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 56 | /** |
| 57 | * v4l2_enum_dv_timings_cap() - Helper function to enumerate possible DV |
| 58 | * timings based on capabilities |
| 59 | * |
| 60 | * @t: the v4l2_enum_dv_timings struct. |
| 61 | * @cap: the v4l2_dv_timings_cap capabilities. |
| 62 | * @fnc: callback to check if this timing is OK. May be NULL. |
| 63 | * @fnc_handle: a handle that is passed on to @fnc. |
| 64 | * |
| 65 | * This enumerates dv_timings using the full list of possible CEA-861 and DMT |
| 66 | * timings, filtering out any timings that are not supported based on the |
| 67 | * hardware capabilities and the callback function (if non-NULL). |
| 68 | * |
| 69 | * If a valid timing for the given index is found, it will fill in @t and |
| 70 | * return 0, otherwise it returns -EINVAL. |
| 71 | */ |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 72 | int v4l2_enum_dv_timings_cap(struct v4l2_enum_dv_timings *t, |
Hans Verkuil | b8f0fff | 2013-08-19 11:21:50 -0300 | [diff] [blame] | 73 | const struct v4l2_dv_timings_cap *cap, |
| 74 | v4l2_check_dv_timings_fnc fnc, |
| 75 | void *fnc_handle); |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 76 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 77 | /** |
| 78 | * v4l2_find_dv_timings_cap() - Find the closest timings struct |
| 79 | * |
| 80 | * @t: the v4l2_enum_dv_timings struct. |
| 81 | * @cap: the v4l2_dv_timings_cap capabilities. |
| 82 | * @pclock_delta: maximum delta between t->pixelclock and the timing struct |
| 83 | * under consideration. |
| 84 | * @fnc: callback to check if a given timings struct is OK. May be NULL. |
| 85 | * @fnc_handle: a handle that is passed on to @fnc. |
| 86 | * |
| 87 | * This function tries to map the given timings to an entry in the |
| 88 | * full list of possible CEA-861 and DMT timings, filtering out any timings |
| 89 | * that are not supported based on the hardware capabilities and the callback |
| 90 | * function (if non-NULL). |
| 91 | * |
| 92 | * On success it will fill in @t with the found timings and it returns true. |
| 93 | * On failure it will return false. |
| 94 | */ |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 95 | bool v4l2_find_dv_timings_cap(struct v4l2_dv_timings *t, |
| 96 | const struct v4l2_dv_timings_cap *cap, |
Hans Verkuil | b8f0fff | 2013-08-19 11:21:50 -0300 | [diff] [blame] | 97 | unsigned pclock_delta, |
| 98 | v4l2_check_dv_timings_fnc fnc, |
| 99 | void *fnc_handle); |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 100 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 101 | /** |
Hans Verkuil | 6524307 | 2016-07-14 07:59:12 -0300 | [diff] [blame] | 102 | * v4l2_find_dv_timings_cea861_vic() - find timings based on CEA-861 VIC |
| 103 | * @t: the timings data. |
| 104 | * @vic: CEA-861 VIC code |
| 105 | * |
| 106 | * On success it will fill in @t with the found timings and it returns true. |
| 107 | * On failure it will return false. |
| 108 | */ |
| 109 | bool v4l2_find_dv_timings_cea861_vic(struct v4l2_dv_timings *t, u8 vic); |
| 110 | |
| 111 | /** |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 112 | * v4l2_match_dv_timings() - do two timings match? |
| 113 | * |
| 114 | * @measured: the measured timings data. |
| 115 | * @standard: the timings according to the standard. |
| 116 | * @pclock_delta: maximum delta in Hz between standard->pixelclock and |
Hans Verkuil | 6524307 | 2016-07-14 07:59:12 -0300 | [diff] [blame] | 117 | * the measured timings. |
Hans Verkuil | 85f9e06 | 2015-11-13 09:46:26 -0200 | [diff] [blame] | 118 | * @match_reduced_fps: if true, then fail if V4L2_DV_FL_REDUCED_FPS does not |
| 119 | * match. |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 120 | * |
| 121 | * Returns true if the two timings match, returns false otherwise. |
| 122 | */ |
Hans Verkuil | ef1ed8f | 2013-08-15 08:28:47 -0300 | [diff] [blame] | 123 | bool v4l2_match_dv_timings(const struct v4l2_dv_timings *measured, |
| 124 | const struct v4l2_dv_timings *standard, |
Hans Verkuil | 85f9e06 | 2015-11-13 09:46:26 -0200 | [diff] [blame] | 125 | unsigned pclock_delta, bool match_reduced_fps); |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 126 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 127 | /** |
| 128 | * v4l2_print_dv_timings() - log the contents of a dv_timings struct |
| 129 | * @dev_prefix:device prefix for each log line. |
| 130 | * @prefix: additional prefix for each log line, may be NULL. |
| 131 | * @t: the timings data. |
| 132 | * @detailed: if true, give a detailed log. |
| 133 | */ |
Hans Verkuil | 0216dc2 | 2013-08-15 08:02:40 -0300 | [diff] [blame] | 134 | void v4l2_print_dv_timings(const char *dev_prefix, const char *prefix, |
| 135 | const struct v4l2_dv_timings *t, bool detailed); |
| 136 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 137 | /** |
| 138 | * v4l2_detect_cvt - detect if the given timings follow the CVT standard |
| 139 | * |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 140 | * @frame_height: the total height of the frame (including blanking) in lines. |
| 141 | * @hfreq: the horizontal frequency in Hz. |
| 142 | * @vsync: the height of the vertical sync in lines. |
| 143 | * @active_width: active width of image (does not include blanking). This |
Prashant Laddha | 5fea1bb | 2015-06-10 13:51:42 -0300 | [diff] [blame] | 144 | * information is needed only in case of version 2 of reduced blanking. |
| 145 | * In other cases, this parameter does not have any effect on timings. |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 146 | * @polarities: the horizontal and vertical polarities (same as struct |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 147 | * v4l2_bt_timings polarities). |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 148 | * @interlaced: if this flag is true, it indicates interlaced format |
| 149 | * @fmt: the resulting timings. |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 150 | * |
| 151 | * This function will attempt to detect if the given values correspond to a |
| 152 | * valid CVT format. If so, then it will return true, and fmt will be filled |
| 153 | * in with the found CVT timings. |
| 154 | */ |
| 155 | bool v4l2_detect_cvt(unsigned frame_height, unsigned hfreq, unsigned vsync, |
Prashant Laddha | 5fea1bb | 2015-06-10 13:51:42 -0300 | [diff] [blame] | 156 | unsigned active_width, u32 polarities, bool interlaced, |
| 157 | struct v4l2_dv_timings *fmt); |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 158 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 159 | /** |
| 160 | * v4l2_detect_gtf - detect if the given timings follow the GTF standard |
| 161 | * |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 162 | * @frame_height: the total height of the frame (including blanking) in lines. |
| 163 | * @hfreq: the horizontal frequency in Hz. |
| 164 | * @vsync: the height of the vertical sync in lines. |
| 165 | * @polarities: the horizontal and vertical polarities (same as struct |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 166 | * v4l2_bt_timings polarities). |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 167 | * @interlaced: if this flag is true, it indicates interlaced format |
| 168 | * @aspect: preferred aspect ratio. GTF has no method of determining the |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 169 | * aspect ratio in order to derive the image width from the |
| 170 | * image height, so it has to be passed explicitly. Usually |
| 171 | * the native screen aspect ratio is used for this. If it |
| 172 | * is not filled in correctly, then 16:9 will be assumed. |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 173 | * @fmt: the resulting timings. |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 174 | * |
| 175 | * This function will attempt to detect if the given values correspond to a |
| 176 | * valid GTF format. If so, then it will return true, and fmt will be filled |
| 177 | * in with the found GTF timings. |
| 178 | */ |
| 179 | bool v4l2_detect_gtf(unsigned frame_height, unsigned hfreq, unsigned vsync, |
Prashant Laddha | 061ddda | 2015-05-22 02:27:34 -0300 | [diff] [blame] | 180 | u32 polarities, bool interlaced, struct v4l2_fract aspect, |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 181 | struct v4l2_dv_timings *fmt); |
| 182 | |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 183 | /** |
| 184 | * v4l2_calc_aspect_ratio - calculate the aspect ratio based on bytes |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 185 | * 0x15 and 0x16 from the EDID. |
Mauro Carvalho Chehab | 506bb54 | 2015-08-22 08:36:13 -0300 | [diff] [blame] | 186 | * |
Geliang Tang | fd4b0d7 | 2015-09-15 09:36:01 -0300 | [diff] [blame] | 187 | * @hor_landscape: byte 0x15 from the EDID. |
| 188 | * @vert_portrait: byte 0x16 from the EDID. |
Hans Verkuil | 2576415 | 2013-07-29 08:40:56 -0300 | [diff] [blame] | 189 | * |
| 190 | * Determines the aspect ratio from the EDID. |
| 191 | * See VESA Enhanced EDID standard, release A, rev 2, section 3.6.2: |
| 192 | * "Horizontal and Vertical Screen Size or Aspect Ratio" |
| 193 | */ |
| 194 | struct v4l2_fract v4l2_calc_aspect_ratio(u8 hor_landscape, u8 vert_portrait); |
| 195 | |
Hans Verkuil | 6524307 | 2016-07-14 07:59:12 -0300 | [diff] [blame] | 196 | /** |
| 197 | * v4l2_dv_timings_aspect_ratio - calculate the aspect ratio based on the |
| 198 | * v4l2_dv_timings information. |
| 199 | * |
| 200 | * @t: the timings data. |
| 201 | */ |
| 202 | struct v4l2_fract v4l2_dv_timings_aspect_ratio(const struct v4l2_dv_timings *t); |
| 203 | |
Mauro Carvalho Chehab | 4ffbf14 | 2017-09-22 12:52:43 -0400 | [diff] [blame] | 204 | /** |
| 205 | * can_reduce_fps - check if conditions for reduced fps are true. |
| 206 | * @bt: v4l2 timing structure |
| 207 | * |
| 208 | * For different timings reduced fps is allowed if the following conditions |
| 209 | * are met: |
| 210 | * |
| 211 | * - For CVT timings: if reduced blanking v2 (vsync == 8) is true. |
| 212 | * - For CEA861 timings: if %V4L2_DV_FL_CAN_REDUCE_FPS flag is true. |
Prashant Laddha | 8d7322f | 2015-09-22 11:27:28 -0300 | [diff] [blame] | 213 | */ |
| 214 | static inline bool can_reduce_fps(struct v4l2_bt_timings *bt) |
| 215 | { |
| 216 | if ((bt->standards & V4L2_DV_BT_STD_CVT) && (bt->vsync == 8)) |
| 217 | return true; |
| 218 | |
| 219 | if ((bt->standards & V4L2_DV_BT_STD_CEA861) && |
| 220 | (bt->flags & V4L2_DV_FL_CAN_REDUCE_FPS)) |
| 221 | return true; |
| 222 | |
| 223 | return false; |
| 224 | } |
| 225 | |
Hans Verkuil | 357a856 | 2018-02-15 12:55:29 -0500 | [diff] [blame] | 226 | /** |
Mauro Carvalho Chehab | b064945 | 2020-10-23 16:08:10 +0200 | [diff] [blame] | 227 | * struct v4l2_hdmi_colorimetry - describes the HDMI colorimetry information |
Hans Verkuil | 357a856 | 2018-02-15 12:55:29 -0500 | [diff] [blame] | 228 | * @colorspace: enum v4l2_colorspace, the colorspace |
| 229 | * @ycbcr_enc: enum v4l2_ycbcr_encoding, Y'CbCr encoding |
| 230 | * @quantization: enum v4l2_quantization, colorspace quantization |
| 231 | * @xfer_func: enum v4l2_xfer_func, colorspace transfer function |
| 232 | */ |
| 233 | struct v4l2_hdmi_colorimetry { |
| 234 | enum v4l2_colorspace colorspace; |
| 235 | enum v4l2_ycbcr_encoding ycbcr_enc; |
| 236 | enum v4l2_quantization quantization; |
| 237 | enum v4l2_xfer_func xfer_func; |
| 238 | }; |
| 239 | |
| 240 | struct hdmi_avi_infoframe; |
| 241 | struct hdmi_vendor_infoframe; |
| 242 | |
| 243 | struct v4l2_hdmi_colorimetry |
| 244 | v4l2_hdmi_rx_colorimetry(const struct hdmi_avi_infoframe *avi, |
| 245 | const struct hdmi_vendor_infoframe *hdmi, |
| 246 | unsigned int height); |
Prashant Laddha | 8d7322f | 2015-09-22 11:27:28 -0300 | [diff] [blame] | 247 | |
Hans Verkuil | 9cfd275 | 2018-09-13 03:40:56 -0400 | [diff] [blame] | 248 | u16 v4l2_get_edid_phys_addr(const u8 *edid, unsigned int size, |
| 249 | unsigned int *offset); |
| 250 | void v4l2_set_edid_phys_addr(u8 *edid, unsigned int size, u16 phys_addr); |
| 251 | u16 v4l2_phys_addr_for_input(u16 phys_addr, u8 input); |
| 252 | int v4l2_phys_addr_validate(u16 phys_addr, u16 *parent, u16 *port); |
| 253 | |
Hans Verkuil | b18787e | 2013-07-29 08:40:55 -0300 | [diff] [blame] | 254 | #endif |