drm_edid.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. #define DRM_EDID_HDMI_DC_48 (1 << 6)
  185. #define DRM_EDID_HDMI_DC_36 (1 << 5)
  186. #define DRM_EDID_HDMI_DC_30 (1 << 4)
  187. #define DRM_EDID_HDMI_DC_Y444 (1 << 3)
  188. /* ELD Header Block */
  189. #define DRM_ELD_HEADER_BLOCK_SIZE 4
  190. #define DRM_ELD_VER 0
  191. # define DRM_ELD_VER_SHIFT 3
  192. # define DRM_ELD_VER_MASK (0x1f << 3)
  193. #define DRM_ELD_BASELINE_ELD_LEN 2 /* in dwords! */
  194. /* ELD Baseline Block for ELD_Ver == 2 */
  195. #define DRM_ELD_CEA_EDID_VER_MNL 4
  196. # define DRM_ELD_CEA_EDID_VER_SHIFT 5
  197. # define DRM_ELD_CEA_EDID_VER_MASK (7 << 5)
  198. # define DRM_ELD_CEA_EDID_VER_NONE (0 << 5)
  199. # define DRM_ELD_CEA_EDID_VER_CEA861 (1 << 5)
  200. # define DRM_ELD_CEA_EDID_VER_CEA861A (2 << 5)
  201. # define DRM_ELD_CEA_EDID_VER_CEA861BCD (3 << 5)
  202. # define DRM_ELD_MNL_SHIFT 0
  203. # define DRM_ELD_MNL_MASK (0x1f << 0)
  204. #define DRM_ELD_SAD_COUNT_CONN_TYPE 5
  205. # define DRM_ELD_SAD_COUNT_SHIFT 4
  206. # define DRM_ELD_SAD_COUNT_MASK (0xf << 4)
  207. # define DRM_ELD_CONN_TYPE_SHIFT 2
  208. # define DRM_ELD_CONN_TYPE_MASK (3 << 2)
  209. # define DRM_ELD_CONN_TYPE_HDMI (0 << 2)
  210. # define DRM_ELD_CONN_TYPE_DP (1 << 2)
  211. # define DRM_ELD_SUPPORTS_AI (1 << 1)
  212. # define DRM_ELD_SUPPORTS_HDCP (1 << 0)
  213. #define DRM_ELD_AUD_SYNCH_DELAY 6 /* in units of 2 ms */
  214. # define DRM_ELD_AUD_SYNCH_DELAY_MAX 0xfa /* 500 ms */
  215. #define DRM_ELD_SPEAKER 7
  216. # define DRM_ELD_SPEAKER_RLRC (1 << 6)
  217. # define DRM_ELD_SPEAKER_FLRC (1 << 5)
  218. # define DRM_ELD_SPEAKER_RC (1 << 4)
  219. # define DRM_ELD_SPEAKER_RLR (1 << 3)
  220. # define DRM_ELD_SPEAKER_FC (1 << 2)
  221. # define DRM_ELD_SPEAKER_LFE (1 << 1)
  222. # define DRM_ELD_SPEAKER_FLR (1 << 0)
  223. #define DRM_ELD_PORT_ID 8 /* offsets 8..15 inclusive */
  224. # define DRM_ELD_PORT_ID_LEN 8
  225. #define DRM_ELD_MANUFACTURER_NAME0 16
  226. #define DRM_ELD_MANUFACTURER_NAME1 17
  227. #define DRM_ELD_PRODUCT_CODE0 18
  228. #define DRM_ELD_PRODUCT_CODE1 19
  229. #define DRM_ELD_MONITOR_NAME_STRING 20 /* offsets 20..(20+mnl-1) inclusive */
  230. #define DRM_ELD_CEA_SAD(mnl, sad) (20 + (mnl) + 3 * (sad))
  231. struct edid {
  232. u8 header[8];
  233. /* Vendor & product info */
  234. u8 mfg_id[2];
  235. u8 prod_code[2];
  236. u32 serial; /* FIXME: byte order */
  237. u8 mfg_week;
  238. u8 mfg_year;
  239. /* EDID version */
  240. u8 version;
  241. u8 revision;
  242. /* Display info: */
  243. u8 input;
  244. u8 width_cm;
  245. u8 height_cm;
  246. u8 gamma;
  247. u8 features;
  248. /* Color characteristics */
  249. u8 red_green_lo;
  250. u8 black_white_lo;
  251. u8 red_x;
  252. u8 red_y;
  253. u8 green_x;
  254. u8 green_y;
  255. u8 blue_x;
  256. u8 blue_y;
  257. u8 white_x;
  258. u8 white_y;
  259. /* Est. timings and mfg rsvd timings*/
  260. struct est_timings established_timings;
  261. /* Standard timings 1-8*/
  262. struct std_timing standard_timings[8];
  263. /* Detailing timings 1-4 */
  264. struct detailed_timing detailed_timings[4];
  265. /* Number of 128 byte ext. blocks */
  266. u8 extensions;
  267. /* Checksum */
  268. u8 checksum;
  269. } __attribute__((packed));
  270. #define EDID_PRODUCT_ID(e) ((e)->prod_code[0] | ((e)->prod_code[1] << 8))
  271. /* Short Audio Descriptor */
  272. struct cea_sad {
  273. u8 format;
  274. u8 channels; /* max number of channels - 1 */
  275. u8 freq;
  276. u8 byte2; /* meaning depends on format */
  277. };
  278. struct drm_encoder;
  279. struct drm_connector;
  280. struct drm_display_mode;
  281. struct hdmi_avi_infoframe;
  282. struct hdmi_vendor_infoframe;
  283. void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid);
  284. int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads);
  285. int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb);
  286. int drm_av_sync_delay(struct drm_connector *connector,
  287. struct drm_display_mode *mode);
  288. struct drm_connector *drm_select_eld(struct drm_encoder *encoder,
  289. struct drm_display_mode *mode);
  290. int drm_load_edid_firmware(struct drm_connector *connector);
  291. int
  292. drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
  293. const struct drm_display_mode *mode);
  294. int
  295. drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
  296. const struct drm_display_mode *mode);
  297. /**
  298. * drm_eld_mnl - Get ELD monitor name length in bytes.
  299. * @eld: pointer to an eld memory structure with mnl set
  300. */
  301. static inline int drm_eld_mnl(const uint8_t *eld)
  302. {
  303. return (eld[DRM_ELD_CEA_EDID_VER_MNL] & DRM_ELD_MNL_MASK) >> DRM_ELD_MNL_SHIFT;
  304. }
  305. /**
  306. * drm_eld_sad_count - Get ELD SAD count.
  307. * @eld: pointer to an eld memory structure with sad_count set
  308. */
  309. static inline int drm_eld_sad_count(const uint8_t *eld)
  310. {
  311. return (eld[DRM_ELD_SAD_COUNT_CONN_TYPE] & DRM_ELD_SAD_COUNT_MASK) >>
  312. DRM_ELD_SAD_COUNT_SHIFT;
  313. }
  314. /**
  315. * drm_eld_calc_baseline_block_size - Calculate baseline block size in bytes
  316. * @eld: pointer to an eld memory structure with mnl and sad_count set
  317. *
  318. * This is a helper for determining the payload size of the baseline block, in
  319. * bytes, for e.g. setting the Baseline_ELD_Len field in the ELD header block.
  320. */
  321. static inline int drm_eld_calc_baseline_block_size(const uint8_t *eld)
  322. {
  323. return DRM_ELD_MONITOR_NAME_STRING - DRM_ELD_HEADER_BLOCK_SIZE +
  324. drm_eld_mnl(eld) + drm_eld_sad_count(eld) * 3;
  325. }
  326. /**
  327. * drm_eld_size - Get ELD size in bytes
  328. * @eld: pointer to a complete eld memory structure
  329. *
  330. * The returned value does not include the vendor block. It's vendor specific,
  331. * and comprises of the remaining bytes in the ELD memory buffer after
  332. * drm_eld_size() bytes of header and baseline block.
  333. *
  334. * The returned value is guaranteed to be a multiple of 4.
  335. */
  336. static inline int drm_eld_size(const uint8_t *eld)
  337. {
  338. return DRM_ELD_HEADER_BLOCK_SIZE + eld[DRM_ELD_BASELINE_ELD_LEN] * 4;
  339. }
  340. struct edid *drm_do_get_edid(struct drm_connector *connector,
  341. int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
  342. size_t len),
  343. void *data);
  344. #endif /* __DRM_EDID_H__ */