drm_edid.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * Copyright © 2007-2008 Intel Corporation
  3. * Jesse Barnes <jesse.barnes@intel.com>
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in
  13. * all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  19. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  20. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  21. * OTHER DEALINGS IN THE SOFTWARE.
  22. */
  23. #ifndef __DRM_EDID_H__
  24. #define __DRM_EDID_H__
  25. #include <linux/types.h>
  26. #define EDID_LENGTH 128
  27. #define DDC_ADDR 0x50
  28. #define CEA_EXT 0x02
  29. #define VTB_EXT 0x10
  30. #define DI_EXT 0x40
  31. #define LS_EXT 0x50
  32. #define MI_EXT 0x60
  33. struct est_timings {
  34. u8 t1;
  35. u8 t2;
  36. u8 mfg_rsvd;
  37. } __attribute__((packed));
  38. /* 00=16:10, 01=4:3, 10=5:4, 11=16:9 */
  39. #define EDID_TIMING_ASPECT_SHIFT 6
  40. #define EDID_TIMING_ASPECT_MASK (0x3 << EDID_TIMING_ASPECT_SHIFT)
  41. /* need to add 60 */
  42. #define EDID_TIMING_VFREQ_SHIFT 0
  43. #define EDID_TIMING_VFREQ_MASK (0x3f << EDID_TIMING_VFREQ_SHIFT)
  44. struct std_timing {
  45. u8 hsize; /* need to multiply by 8 then add 248 */
  46. u8 vfreq_aspect;
  47. } __attribute__((packed));
  48. #define DRM_EDID_PT_HSYNC_POSITIVE (1 << 1)
  49. #define DRM_EDID_PT_VSYNC_POSITIVE (1 << 2)
  50. #define DRM_EDID_PT_SEPARATE_SYNC (3 << 3)
  51. #define DRM_EDID_PT_STEREO (1 << 5)
  52. #define DRM_EDID_PT_INTERLACED (1 << 7)
  53. /* If detailed data is pixel timing */
  54. struct detailed_pixel_timing {
  55. u8 hactive_lo;
  56. u8 hblank_lo;
  57. u8 hactive_hblank_hi;
  58. u8 vactive_lo;
  59. u8 vblank_lo;
  60. u8 vactive_vblank_hi;
  61. u8 hsync_offset_lo;
  62. u8 hsync_pulse_width_lo;
  63. u8 vsync_offset_pulse_width_lo;
  64. u8 hsync_vsync_offset_pulse_width_hi;
  65. u8 width_mm_lo;
  66. u8 height_mm_lo;
  67. u8 width_height_mm_hi;
  68. u8 hborder;
  69. u8 vborder;
  70. u8 misc;
  71. } __attribute__((packed));
  72. /* If it's not pixel timing, it'll be one of the below */
  73. struct detailed_data_string {
  74. u8 str[13];
  75. } __attribute__((packed));
  76. struct detailed_data_monitor_range {
  77. u8 min_vfreq;
  78. u8 max_vfreq;
  79. u8 min_hfreq_khz;
  80. u8 max_hfreq_khz;
  81. u8 pixel_clock_mhz; /* need to multiply by 10 */
  82. u8 flags;
  83. union {
  84. struct {
  85. u8 reserved;
  86. u8 hfreq_start_khz; /* need to multiply by 2 */
  87. u8 c; /* need to divide by 2 */
  88. __le16 m;
  89. u8 k;
  90. u8 j; /* need to divide by 2 */
  91. } __attribute__((packed)) gtf2;
  92. struct {
  93. u8 version;
  94. u8 data1; /* high 6 bits: extra clock resolution */
  95. u8 data2; /* plus low 2 of above: max hactive */
  96. u8 supported_aspects;
  97. u8 flags; /* preferred aspect and blanking support */
  98. u8 supported_scalings;
  99. u8 preferred_refresh;
  100. } __attribute__((packed)) cvt;
  101. } formula;
  102. } __attribute__((packed));
  103. struct detailed_data_wpindex {
  104. u8 white_yx_lo; /* Lower 2 bits each */
  105. u8 white_x_hi;
  106. u8 white_y_hi;
  107. u8 gamma; /* need to divide by 100 then add 1 */
  108. } __attribute__((packed));
  109. struct detailed_data_color_point {
  110. u8 windex1;
  111. u8 wpindex1[3];
  112. u8 windex2;
  113. u8 wpindex2[3];
  114. } __attribute__((packed));
  115. struct cvt_timing {
  116. u8 code[3];
  117. } __attribute__((packed));
  118. struct detailed_non_pixel {
  119. u8 pad1;
  120. u8 type; /* ff=serial, fe=string, fd=monitor range, fc=monitor name
  121. fb=color point data, fa=standard timing data,
  122. f9=undefined, f8=mfg. reserved */
  123. u8 pad2;
  124. union {
  125. struct detailed_data_string str;
  126. struct detailed_data_monitor_range range;
  127. struct detailed_data_wpindex color;
  128. struct std_timing timings[6];
  129. struct cvt_timing cvt[4];
  130. } data;
  131. } __attribute__((packed));
  132. #define EDID_DETAIL_EST_TIMINGS 0xf7
  133. #define EDID_DETAIL_CVT_3BYTE 0xf8
  134. #define EDID_DETAIL_COLOR_MGMT_DATA 0xf9
  135. #define EDID_DETAIL_STD_MODES 0xfa
  136. #define EDID_DETAIL_MONITOR_CPDATA 0xfb
  137. #define EDID_DETAIL_MONITOR_NAME 0xfc
  138. #define EDID_DETAIL_MONITOR_RANGE 0xfd
  139. #define EDID_DETAIL_MONITOR_STRING 0xfe
  140. #define EDID_DETAIL_MONITOR_SERIAL 0xff
  141. struct detailed_timing {
  142. __le16 pixel_clock; /* need to multiply by 10 KHz */
  143. union {
  144. struct detailed_pixel_timing pixel_data;
  145. struct detailed_non_pixel other_data;
  146. } data;
  147. } __attribute__((packed));
  148. #define DRM_EDID_INPUT_SERRATION_VSYNC (1 << 0)
  149. #define DRM_EDID_INPUT_SYNC_ON_GREEN (1 << 1)
  150. #define DRM_EDID_INPUT_COMPOSITE_SYNC (1 << 2)
  151. #define DRM_EDID_INPUT_SEPARATE_SYNCS (1 << 3)
  152. #define DRM_EDID_INPUT_BLANK_TO_BLACK (1 << 4)
  153. #define DRM_EDID_INPUT_VIDEO_LEVEL (3 << 5)
  154. #define DRM_EDID_INPUT_DIGITAL (1 << 7)
  155. #define DRM_EDID_DIGITAL_DEPTH_MASK (7 << 4)
  156. #define DRM_EDID_DIGITAL_DEPTH_UNDEF (0 << 4)
  157. #define DRM_EDID_DIGITAL_DEPTH_6 (1 << 4)
  158. #define DRM_EDID_DIGITAL_DEPTH_8 (2 << 4)
  159. #define DRM_EDID_DIGITAL_DEPTH_10 (3 << 4)
  160. #define DRM_EDID_DIGITAL_DEPTH_12 (4 << 4)
  161. #define DRM_EDID_DIGITAL_DEPTH_14 (5 << 4)
  162. #define DRM_EDID_DIGITAL_DEPTH_16 (6 << 4)
  163. #define DRM_EDID_DIGITAL_DEPTH_RSVD (7 << 4)
  164. #define DRM_EDID_DIGITAL_TYPE_UNDEF (0)
  165. #define DRM_EDID_DIGITAL_TYPE_DVI (1)
  166. #define DRM_EDID_DIGITAL_TYPE_HDMI_A (2)
  167. #define DRM_EDID_DIGITAL_TYPE_HDMI_B (3)
  168. #define DRM_EDID_DIGITAL_TYPE_MDDI (4)
  169. #define DRM_EDID_DIGITAL_TYPE_DP (5)
  170. #define DRM_EDID_FEATURE_DEFAULT_GTF (1 << 0)
  171. #define DRM_EDID_FEATURE_PREFERRED_TIMING (1 << 1)
  172. #define DRM_EDID_FEATURE_STANDARD_COLOR (1 << 2)
  173. /* If analog */
  174. #define DRM_EDID_FEATURE_DISPLAY_TYPE (3 << 3) /* 00=mono, 01=rgb, 10=non-rgb, 11=unknown */
  175. /* If digital */
  176. #define DRM_EDID_FEATURE_COLOR_MASK (3 << 3)
  177. #define DRM_EDID_FEATURE_RGB (0 << 3)
  178. #define DRM_EDID_FEATURE_RGB_YCRCB444 (1 << 3)
  179. #define DRM_EDID_FEATURE_RGB_YCRCB422 (2 << 3)
  180. #define DRM_EDID_FEATURE_RGB_YCRCB (3 << 3) /* both 4:4:4 and 4:2:2 */
  181. #define DRM_EDID_FEATURE_PM_ACTIVE_OFF (1 << 5)
  182. #define DRM_EDID_FEATURE_PM_SUSPEND (1 << 6)
  183. #define DRM_EDID_FEATURE_PM_STANDBY (1 << 7)
  184. struct edid {
  185. u8 header[8];
  186. /* Vendor & product info */
  187. u8 mfg_id[2];
  188. u8 prod_code[2];
  189. u32 serial; /* FIXME: byte order */
  190. u8 mfg_week;
  191. u8 mfg_year;
  192. /* EDID version */
  193. u8 version;
  194. u8 revision;
  195. /* Display info: */
  196. u8 input;
  197. u8 width_cm;
  198. u8 height_cm;
  199. u8 gamma;
  200. u8 features;
  201. /* Color characteristics */
  202. u8 red_green_lo;
  203. u8 black_white_lo;
  204. u8 red_x;
  205. u8 red_y;
  206. u8 green_x;
  207. u8 green_y;
  208. u8 blue_x;
  209. u8 blue_y;
  210. u8 white_x;
  211. u8 white_y;
  212. /* Est. timings and mfg rsvd timings*/
  213. struct est_timings established_timings;
  214. /* Standard timings 1-8*/
  215. struct std_timing standard_timings[8];
  216. /* Detailing timings 1-4 */
  217. struct detailed_timing detailed_timings[4];
  218. /* Number of 128 byte ext. blocks */
  219. u8 extensions;
  220. /* Checksum */
  221. u8 checksum;
  222. } __attribute__((packed));
  223. #define EDID_PRODUCT_ID(e) ((e)->prod_code[0] | ((e)->prod_code[1] << 8))
  224. struct drm_encoder;
  225. struct drm_connector;
  226. struct drm_display_mode;
  227. void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid);
  228. int drm_av_sync_delay(struct drm_connector *connector,
  229. struct drm_display_mode *mode);
  230. struct drm_connector *drm_select_eld(struct drm_encoder *encoder,
  231. struct drm_display_mode *mode);
  232. int drm_load_edid_firmware(struct drm_connector *connector);
  233. #endif /* __DRM_EDID_H__ */