v4l2-dv-timings.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  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. #ifndef __V4L2_DV_TIMINGS_H
  21. #define __V4L2_DV_TIMINGS_H
  22. #include <linux/videodev2.h>
  23. /*
  24. * v4l2_dv_timings_presets: list of all dv_timings presets.
  25. */
  26. extern const struct v4l2_dv_timings v4l2_dv_timings_presets[];
  27. /**
  28. * v4l2_check_dv_timings_fnc - timings check callback
  29. *
  30. * @t: the v4l2_dv_timings struct.
  31. * @handle: a handle from the driver.
  32. *
  33. * Returns true if the given timings are valid.
  34. */
  35. typedef bool v4l2_check_dv_timings_fnc(const struct v4l2_dv_timings *t, void *handle);
  36. /**
  37. * v4l2_valid_dv_timings() - are these timings valid?
  38. *
  39. * @t: the v4l2_dv_timings struct.
  40. * @cap: the v4l2_dv_timings_cap capabilities.
  41. * @fnc: callback to check if this timing is OK. May be NULL.
  42. * @fnc_handle: a handle that is passed on to @fnc.
  43. *
  44. * Returns true if the given dv_timings struct is supported by the
  45. * hardware capabilities and the callback function (if non-NULL), returns
  46. * false otherwise.
  47. */
  48. bool v4l2_valid_dv_timings(const struct v4l2_dv_timings *t,
  49. const struct v4l2_dv_timings_cap *cap,
  50. v4l2_check_dv_timings_fnc fnc,
  51. void *fnc_handle);
  52. /**
  53. * v4l2_enum_dv_timings_cap() - Helper function to enumerate possible DV
  54. * timings based on capabilities
  55. *
  56. * @t: the v4l2_enum_dv_timings struct.
  57. * @cap: the v4l2_dv_timings_cap capabilities.
  58. * @fnc: callback to check if this timing is OK. May be NULL.
  59. * @fnc_handle: a handle that is passed on to @fnc.
  60. *
  61. * This enumerates dv_timings using the full list of possible CEA-861 and DMT
  62. * timings, filtering out any timings that are not supported based on the
  63. * hardware capabilities and the callback function (if non-NULL).
  64. *
  65. * If a valid timing for the given index is found, it will fill in @t and
  66. * return 0, otherwise it returns -EINVAL.
  67. */
  68. int v4l2_enum_dv_timings_cap(struct v4l2_enum_dv_timings *t,
  69. const struct v4l2_dv_timings_cap *cap,
  70. v4l2_check_dv_timings_fnc fnc,
  71. void *fnc_handle);
  72. /**
  73. * v4l2_find_dv_timings_cap() - Find the closest timings struct
  74. *
  75. * @t: the v4l2_enum_dv_timings struct.
  76. * @cap: the v4l2_dv_timings_cap capabilities.
  77. * @pclock_delta: maximum delta between t->pixelclock and the timing struct
  78. * under consideration.
  79. * @fnc: callback to check if a given timings struct is OK. May be NULL.
  80. * @fnc_handle: a handle that is passed on to @fnc.
  81. *
  82. * This function tries to map the given timings to an entry in the
  83. * full list of possible CEA-861 and DMT timings, filtering out any timings
  84. * that are not supported based on the hardware capabilities and the callback
  85. * function (if non-NULL).
  86. *
  87. * On success it will fill in @t with the found timings and it returns true.
  88. * On failure it will return false.
  89. */
  90. bool v4l2_find_dv_timings_cap(struct v4l2_dv_timings *t,
  91. const struct v4l2_dv_timings_cap *cap,
  92. unsigned pclock_delta,
  93. v4l2_check_dv_timings_fnc fnc,
  94. void *fnc_handle);
  95. /**
  96. * v4l2_match_dv_timings() - do two timings match?
  97. *
  98. * @measured: the measured timings data.
  99. * @standard: the timings according to the standard.
  100. * @pclock_delta: maximum delta in Hz between standard->pixelclock and
  101. * the measured timings.
  102. *
  103. * Returns true if the two timings match, returns false otherwise.
  104. */
  105. bool v4l2_match_dv_timings(const struct v4l2_dv_timings *measured,
  106. const struct v4l2_dv_timings *standard,
  107. unsigned pclock_delta);
  108. /**
  109. * v4l2_print_dv_timings() - log the contents of a dv_timings struct
  110. * @dev_prefix:device prefix for each log line.
  111. * @prefix: additional prefix for each log line, may be NULL.
  112. * @t: the timings data.
  113. * @detailed: if true, give a detailed log.
  114. */
  115. void v4l2_print_dv_timings(const char *dev_prefix, const char *prefix,
  116. const struct v4l2_dv_timings *t, bool detailed);
  117. /**
  118. * v4l2_detect_cvt - detect if the given timings follow the CVT standard
  119. *
  120. * @frame_height: the total height of the frame (including blanking) in lines.
  121. * @hfreq: the horizontal frequency in Hz.
  122. * @vsync: the height of the vertical sync in lines.
  123. * @active_width: active width of image (does not include blanking). This
  124. * information is needed only in case of version 2 of reduced blanking.
  125. * In other cases, this parameter does not have any effect on timings.
  126. * @polarities: the horizontal and vertical polarities (same as struct
  127. * v4l2_bt_timings polarities).
  128. * @interlaced: if this flag is true, it indicates interlaced format
  129. * @fmt: the resulting timings.
  130. *
  131. * This function will attempt to detect if the given values correspond to a
  132. * valid CVT format. If so, then it will return true, and fmt will be filled
  133. * in with the found CVT timings.
  134. */
  135. bool v4l2_detect_cvt(unsigned frame_height, unsigned hfreq, unsigned vsync,
  136. unsigned active_width, u32 polarities, bool interlaced,
  137. struct v4l2_dv_timings *fmt);
  138. /**
  139. * v4l2_detect_gtf - detect if the given timings follow the GTF standard
  140. *
  141. * @frame_height: the total height of the frame (including blanking) in lines.
  142. * @hfreq: the horizontal frequency in Hz.
  143. * @vsync: the height of the vertical sync in lines.
  144. * @polarities: the horizontal and vertical polarities (same as struct
  145. * v4l2_bt_timings polarities).
  146. * @interlaced: if this flag is true, it indicates interlaced format
  147. * @aspect: preferred aspect ratio. GTF has no method of determining the
  148. * aspect ratio in order to derive the image width from the
  149. * image height, so it has to be passed explicitly. Usually
  150. * the native screen aspect ratio is used for this. If it
  151. * is not filled in correctly, then 16:9 will be assumed.
  152. * @fmt: the resulting timings.
  153. *
  154. * This function will attempt to detect if the given values correspond to a
  155. * valid GTF format. If so, then it will return true, and fmt will be filled
  156. * in with the found GTF timings.
  157. */
  158. bool v4l2_detect_gtf(unsigned frame_height, unsigned hfreq, unsigned vsync,
  159. u32 polarities, bool interlaced, struct v4l2_fract aspect,
  160. struct v4l2_dv_timings *fmt);
  161. /**
  162. * v4l2_calc_aspect_ratio - calculate the aspect ratio based on bytes
  163. * 0x15 and 0x16 from the EDID.
  164. *
  165. * @hor_landscape: byte 0x15 from the EDID.
  166. * @vert_portrait: byte 0x16 from the EDID.
  167. *
  168. * Determines the aspect ratio from the EDID.
  169. * See VESA Enhanced EDID standard, release A, rev 2, section 3.6.2:
  170. * "Horizontal and Vertical Screen Size or Aspect Ratio"
  171. */
  172. struct v4l2_fract v4l2_calc_aspect_ratio(u8 hor_landscape, u8 vert_portrait);
  173. #endif