2 * Copyright © 2007-2008 Intel Corporation
3 * Jesse Barnes <jesse.barnes@intel.com>
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
23 #ifndef __DRM_EDID_H__
24 #define __DRM_EDID_H__
26 #include <linux/types.h>
27 #include <linux/hdmi.h>
32 #define EDID_LENGTH 128
34 #define DDC_ADDR2 0x52 /* E-DDC 1.2 - where DisplayID can hide */
41 #define DISPLAYID_EXT 0x70
47 } __attribute__((packed
));
49 /* 00=16:10, 01=4:3, 10=5:4, 11=16:9 */
50 #define EDID_TIMING_ASPECT_SHIFT 6
51 #define EDID_TIMING_ASPECT_MASK (0x3 << EDID_TIMING_ASPECT_SHIFT)
54 #define EDID_TIMING_VFREQ_SHIFT 0
55 #define EDID_TIMING_VFREQ_MASK (0x3f << EDID_TIMING_VFREQ_SHIFT)
58 u8 hsize
; /* need to multiply by 8 then add 248 */
60 } __attribute__((packed
));
62 #define DRM_EDID_PT_HSYNC_POSITIVE (1 << 1)
63 #define DRM_EDID_PT_VSYNC_POSITIVE (1 << 2)
64 #define DRM_EDID_PT_SEPARATE_SYNC (3 << 3)
65 #define DRM_EDID_PT_STEREO (1 << 5)
66 #define DRM_EDID_PT_INTERLACED (1 << 7)
68 /* If detailed data is pixel timing */
69 struct detailed_pixel_timing
{
77 u8 hsync_pulse_width_lo
;
78 u8 vsync_offset_pulse_width_lo
;
79 u8 hsync_vsync_offset_pulse_width_hi
;
82 u8 width_height_mm_hi
;
86 } __attribute__((packed
));
88 /* If it's not pixel timing, it'll be one of the below */
89 struct detailed_data_string
{
91 } __attribute__((packed
));
93 struct detailed_data_monitor_range
{
98 u8 pixel_clock_mhz
; /* need to multiply by 10 */
103 u8 hfreq_start_khz
; /* need to multiply by 2 */
104 u8 c
; /* need to divide by 2 */
107 u8 j
; /* need to divide by 2 */
108 } __attribute__((packed
)) gtf2
;
111 u8 data1
; /* high 6 bits: extra clock resolution */
112 u8 data2
; /* plus low 2 of above: max hactive */
113 u8 supported_aspects
;
114 u8 flags
; /* preferred aspect and blanking support */
115 u8 supported_scalings
;
116 u8 preferred_refresh
;
117 } __attribute__((packed
)) cvt
;
119 } __attribute__((packed
));
121 struct detailed_data_wpindex
{
122 u8 white_yx_lo
; /* Lower 2 bits each */
125 u8 gamma
; /* need to divide by 100 then add 1 */
126 } __attribute__((packed
));
128 struct detailed_data_color_point
{
133 } __attribute__((packed
));
137 } __attribute__((packed
));
139 struct detailed_non_pixel
{
141 u8 type
; /* ff=serial, fe=string, fd=monitor range, fc=monitor name
142 fb=color point data, fa=standard timing data,
143 f9=undefined, f8=mfg. reserved */
146 struct detailed_data_string str
;
147 struct detailed_data_monitor_range range
;
148 struct detailed_data_wpindex color
;
149 struct std_timing timings
[6];
150 struct cvt_timing cvt
[4];
152 } __attribute__((packed
));
154 #define EDID_DETAIL_EST_TIMINGS 0xf7
155 #define EDID_DETAIL_CVT_3BYTE 0xf8
156 #define EDID_DETAIL_COLOR_MGMT_DATA 0xf9
157 #define EDID_DETAIL_STD_MODES 0xfa
158 #define EDID_DETAIL_MONITOR_CPDATA 0xfb
159 #define EDID_DETAIL_MONITOR_NAME 0xfc
160 #define EDID_DETAIL_MONITOR_RANGE 0xfd
161 #define EDID_DETAIL_MONITOR_STRING 0xfe
162 #define EDID_DETAIL_MONITOR_SERIAL 0xff
164 struct detailed_timing
{
165 __le16 pixel_clock
; /* need to multiply by 10 KHz */
167 struct detailed_pixel_timing pixel_data
;
168 struct detailed_non_pixel other_data
;
170 } __attribute__((packed
));
172 #define DRM_EDID_INPUT_SERRATION_VSYNC (1 << 0)
173 #define DRM_EDID_INPUT_SYNC_ON_GREEN (1 << 1)
174 #define DRM_EDID_INPUT_COMPOSITE_SYNC (1 << 2)
175 #define DRM_EDID_INPUT_SEPARATE_SYNCS (1 << 3)
176 #define DRM_EDID_INPUT_BLANK_TO_BLACK (1 << 4)
177 #define DRM_EDID_INPUT_VIDEO_LEVEL (3 << 5)
178 #define DRM_EDID_INPUT_DIGITAL (1 << 7)
179 #define DRM_EDID_DIGITAL_DEPTH_MASK (7 << 4)
180 #define DRM_EDID_DIGITAL_DEPTH_UNDEF (0 << 4)
181 #define DRM_EDID_DIGITAL_DEPTH_6 (1 << 4)
182 #define DRM_EDID_DIGITAL_DEPTH_8 (2 << 4)
183 #define DRM_EDID_DIGITAL_DEPTH_10 (3 << 4)
184 #define DRM_EDID_DIGITAL_DEPTH_12 (4 << 4)
185 #define DRM_EDID_DIGITAL_DEPTH_14 (5 << 4)
186 #define DRM_EDID_DIGITAL_DEPTH_16 (6 << 4)
187 #define DRM_EDID_DIGITAL_DEPTH_RSVD (7 << 4)
188 #define DRM_EDID_DIGITAL_TYPE_UNDEF (0)
189 #define DRM_EDID_DIGITAL_TYPE_DVI (1)
190 #define DRM_EDID_DIGITAL_TYPE_HDMI_A (2)
191 #define DRM_EDID_DIGITAL_TYPE_HDMI_B (3)
192 #define DRM_EDID_DIGITAL_TYPE_MDDI (4)
193 #define DRM_EDID_DIGITAL_TYPE_DP (5)
195 #define DRM_EDID_FEATURE_DEFAULT_GTF (1 << 0)
196 #define DRM_EDID_FEATURE_PREFERRED_TIMING (1 << 1)
197 #define DRM_EDID_FEATURE_STANDARD_COLOR (1 << 2)
199 #define DRM_EDID_FEATURE_DISPLAY_TYPE (3 << 3) /* 00=mono, 01=rgb, 10=non-rgb, 11=unknown */
201 #define DRM_EDID_FEATURE_COLOR_MASK (3 << 3)
202 #define DRM_EDID_FEATURE_RGB (0 << 3)
203 #define DRM_EDID_FEATURE_RGB_YCRCB444 (1 << 3)
204 #define DRM_EDID_FEATURE_RGB_YCRCB422 (2 << 3)
205 #define DRM_EDID_FEATURE_RGB_YCRCB (3 << 3) /* both 4:4:4 and 4:2:2 */
207 #define DRM_EDID_FEATURE_PM_ACTIVE_OFF (1 << 5)
208 #define DRM_EDID_FEATURE_PM_SUSPEND (1 << 6)
209 #define DRM_EDID_FEATURE_PM_STANDBY (1 << 7)
211 #define DRM_EDID_HDMI_DC_48 (1 << 6)
212 #define DRM_EDID_HDMI_DC_36 (1 << 5)
213 #define DRM_EDID_HDMI_DC_30 (1 << 4)
214 #define DRM_EDID_HDMI_DC_Y444 (1 << 3)
216 /* YCBCR 420 deep color modes */
217 #define DRM_EDID_YCBCR420_DC_48 (1 << 2)
218 #define DRM_EDID_YCBCR420_DC_36 (1 << 1)
219 #define DRM_EDID_YCBCR420_DC_30 (1 << 0)
220 #define DRM_EDID_YCBCR420_DC_MASK (DRM_EDID_YCBCR420_DC_48 | \
221 DRM_EDID_YCBCR420_DC_36 | \
222 DRM_EDID_YCBCR420_DC_30)
224 /* ELD Header Block */
225 #define DRM_ELD_HEADER_BLOCK_SIZE 4
227 #define DRM_ELD_VER 0
228 # define DRM_ELD_VER_SHIFT 3
229 # define DRM_ELD_VER_MASK (0x1f << 3)
230 # define DRM_ELD_VER_CEA861D (2 << 3) /* supports 861D or below */
231 # define DRM_ELD_VER_CANNED (0x1f << 3)
233 #define DRM_ELD_BASELINE_ELD_LEN 2 /* in dwords! */
235 /* ELD Baseline Block for ELD_Ver == 2 */
236 #define DRM_ELD_CEA_EDID_VER_MNL 4
237 # define DRM_ELD_CEA_EDID_VER_SHIFT 5
238 # define DRM_ELD_CEA_EDID_VER_MASK (7 << 5)
239 # define DRM_ELD_CEA_EDID_VER_NONE (0 << 5)
240 # define DRM_ELD_CEA_EDID_VER_CEA861 (1 << 5)
241 # define DRM_ELD_CEA_EDID_VER_CEA861A (2 << 5)
242 # define DRM_ELD_CEA_EDID_VER_CEA861BCD (3 << 5)
243 # define DRM_ELD_MNL_SHIFT 0
244 # define DRM_ELD_MNL_MASK (0x1f << 0)
246 #define DRM_ELD_SAD_COUNT_CONN_TYPE 5
247 # define DRM_ELD_SAD_COUNT_SHIFT 4
248 # define DRM_ELD_SAD_COUNT_MASK (0xf << 4)
249 # define DRM_ELD_CONN_TYPE_SHIFT 2
250 # define DRM_ELD_CONN_TYPE_MASK (3 << 2)
251 # define DRM_ELD_CONN_TYPE_HDMI (0 << 2)
252 # define DRM_ELD_CONN_TYPE_DP (1 << 2)
253 # define DRM_ELD_SUPPORTS_AI (1 << 1)
254 # define DRM_ELD_SUPPORTS_HDCP (1 << 0)
256 #define DRM_ELD_AUD_SYNCH_DELAY 6 /* in units of 2 ms */
257 # define DRM_ELD_AUD_SYNCH_DELAY_MAX 0xfa /* 500 ms */
259 #define DRM_ELD_SPEAKER 7
260 # define DRM_ELD_SPEAKER_MASK 0x7f
261 # define DRM_ELD_SPEAKER_RLRC (1 << 6)
262 # define DRM_ELD_SPEAKER_FLRC (1 << 5)
263 # define DRM_ELD_SPEAKER_RC (1 << 4)
264 # define DRM_ELD_SPEAKER_RLR (1 << 3)
265 # define DRM_ELD_SPEAKER_FC (1 << 2)
266 # define DRM_ELD_SPEAKER_LFE (1 << 1)
267 # define DRM_ELD_SPEAKER_FLR (1 << 0)
269 #define DRM_ELD_PORT_ID 8 /* offsets 8..15 inclusive */
270 # define DRM_ELD_PORT_ID_LEN 8
272 #define DRM_ELD_MANUFACTURER_NAME0 16
273 #define DRM_ELD_MANUFACTURER_NAME1 17
275 #define DRM_ELD_PRODUCT_CODE0 18
276 #define DRM_ELD_PRODUCT_CODE1 19
278 #define DRM_ELD_MONITOR_NAME_STRING 20 /* offsets 20..(20+mnl-1) inclusive */
280 #define DRM_ELD_CEA_SAD(mnl, sad) (20 + (mnl) + 3 * (sad))
284 /* Vendor & product info */
287 u32 serial
; /* FIXME: byte order */
299 /* Color characteristics */
310 /* Est. timings and mfg rsvd timings*/
311 struct est_timings established_timings
;
312 /* Standard timings 1-8*/
313 struct std_timing standard_timings
[8];
314 /* Detailing timings 1-4 */
315 struct detailed_timing detailed_timings
[4];
316 /* Number of 128 byte ext. blocks */
320 } __attribute__((packed
));
322 #define EDID_PRODUCT_ID(e) ((e)->prod_code[0] | ((e)->prod_code[1] << 8))
324 /* Short Audio Descriptor */
327 u8 channels
; /* max number of channels - 1 */
329 u8 byte2
; /* meaning depends on format */
333 struct drm_connector
;
334 struct drm_display_mode
;
336 void drm_edid_to_eld(struct drm_connector
*connector
, struct edid
*edid
);
337 int drm_edid_to_sad(struct edid
*edid
, struct cea_sad
**sads
);
338 int drm_edid_to_speaker_allocation(struct edid
*edid
, u8
**sadb
);
339 int drm_av_sync_delay(struct drm_connector
*connector
,
340 const struct drm_display_mode
*mode
);
342 #ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
343 struct edid
*drm_load_edid_firmware(struct drm_connector
*connector
);
345 static inline struct edid
*
346 drm_load_edid_firmware(struct drm_connector
*connector
)
348 return ERR_PTR(-ENOENT
);
353 drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe
*frame
,
354 const struct drm_display_mode
*mode
,
357 drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe
*frame
,
358 const struct drm_display_mode
*mode
);
360 drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe
*frame
,
361 const struct drm_display_mode
*mode
,
362 enum hdmi_quantization_range rgb_quant_range
,
363 bool rgb_quant_range_selectable
,
367 * drm_eld_mnl - Get ELD monitor name length in bytes.
368 * @eld: pointer to an eld memory structure with mnl set
370 static inline int drm_eld_mnl(const uint8_t *eld
)
372 return (eld
[DRM_ELD_CEA_EDID_VER_MNL
] & DRM_ELD_MNL_MASK
) >> DRM_ELD_MNL_SHIFT
;
376 * drm_eld_sad - Get ELD SAD structures.
377 * @eld: pointer to an eld memory structure with sad_count set
379 static inline const uint8_t *drm_eld_sad(const uint8_t *eld
)
381 unsigned int ver
, mnl
;
383 ver
= (eld
[DRM_ELD_VER
] & DRM_ELD_VER_MASK
) >> DRM_ELD_VER_SHIFT
;
384 if (ver
!= 2 && ver
!= 31)
387 mnl
= drm_eld_mnl(eld
);
391 return eld
+ DRM_ELD_CEA_SAD(mnl
, 0);
395 * drm_eld_sad_count - Get ELD SAD count.
396 * @eld: pointer to an eld memory structure with sad_count set
398 static inline int drm_eld_sad_count(const uint8_t *eld
)
400 return (eld
[DRM_ELD_SAD_COUNT_CONN_TYPE
] & DRM_ELD_SAD_COUNT_MASK
) >>
401 DRM_ELD_SAD_COUNT_SHIFT
;
405 * drm_eld_calc_baseline_block_size - Calculate baseline block size in bytes
406 * @eld: pointer to an eld memory structure with mnl and sad_count set
408 * This is a helper for determining the payload size of the baseline block, in
409 * bytes, for e.g. setting the Baseline_ELD_Len field in the ELD header block.
411 static inline int drm_eld_calc_baseline_block_size(const uint8_t *eld
)
413 return DRM_ELD_MONITOR_NAME_STRING
- DRM_ELD_HEADER_BLOCK_SIZE
+
414 drm_eld_mnl(eld
) + drm_eld_sad_count(eld
) * 3;
418 * drm_eld_size - Get ELD size in bytes
419 * @eld: pointer to a complete eld memory structure
421 * The returned value does not include the vendor block. It's vendor specific,
422 * and comprises of the remaining bytes in the ELD memory buffer after
423 * drm_eld_size() bytes of header and baseline block.
425 * The returned value is guaranteed to be a multiple of 4.
427 static inline int drm_eld_size(const uint8_t *eld
)
429 return DRM_ELD_HEADER_BLOCK_SIZE
+ eld
[DRM_ELD_BASELINE_ELD_LEN
] * 4;
433 * drm_eld_get_spk_alloc - Get speaker allocation
434 * @eld: pointer to an ELD memory structure
436 * The returned value is the speakers mask. User has to use %DRM_ELD_SPEAKER
437 * field definitions to identify speakers.
439 static inline u8
drm_eld_get_spk_alloc(const uint8_t *eld
)
441 return eld
[DRM_ELD_SPEAKER
] & DRM_ELD_SPEAKER_MASK
;
445 * drm_eld_get_conn_type - Get device type hdmi/dp connected
446 * @eld: pointer to an ELD memory structure
448 * The caller need to use %DRM_ELD_CONN_TYPE_HDMI or %DRM_ELD_CONN_TYPE_DP to
449 * identify the display type connected.
451 static inline u8
drm_eld_get_conn_type(const uint8_t *eld
)
453 return eld
[DRM_ELD_SAD_COUNT_CONN_TYPE
] & DRM_ELD_CONN_TYPE_MASK
;
456 bool drm_probe_ddc(struct i2c_adapter
*adapter
);
457 struct edid
*drm_do_get_edid(struct drm_connector
*connector
,
458 int (*get_edid_block
)(void *data
, u8
*buf
, unsigned int block
,
461 struct edid
*drm_get_edid(struct drm_connector
*connector
,
462 struct i2c_adapter
*adapter
);
463 struct edid
*drm_get_edid_switcheroo(struct drm_connector
*connector
,
464 struct i2c_adapter
*adapter
);
465 struct edid
*drm_edid_duplicate(const struct edid
*edid
);
466 int drm_add_edid_modes(struct drm_connector
*connector
, struct edid
*edid
);
468 u8
drm_match_cea_mode(const struct drm_display_mode
*to_match
);
469 enum hdmi_picture_aspect
drm_get_cea_aspect_ratio(const u8 video_code
);
470 bool drm_detect_hdmi_monitor(struct edid
*edid
);
471 bool drm_detect_monitor_audio(struct edid
*edid
);
472 bool drm_rgb_quant_range_selectable(struct edid
*edid
);
473 enum hdmi_quantization_range
474 drm_default_rgb_quant_range(const struct drm_display_mode
*mode
);
475 int drm_add_modes_noedid(struct drm_connector
*connector
,
476 int hdisplay
, int vdisplay
);
477 void drm_set_preferred_mode(struct drm_connector
*connector
,
478 int hpref
, int vpref
);
480 int drm_edid_header_is_valid(const u8
*raw_edid
);
481 bool drm_edid_block_valid(u8
*raw_edid
, int block
, bool print_bad_edid
,
483 bool drm_edid_is_valid(struct edid
*edid
);
484 void drm_edid_get_monitor_name(struct edid
*edid
, char *name
,
486 struct drm_display_mode
*drm_mode_find_dmt(struct drm_device
*dev
,
487 int hsize
, int vsize
, int fresh
,
489 #endif /* __DRM_EDID_H__ */