blob: 759328a5eeb201aa966a6b65d0c661d8ac546122 [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
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
26#include <linux/types.h>
Ville Syrjälä00147932017-01-11 14:57:21 +020027#include <linux/hdmi.h>
Uma Shankar2cdbfd62019-05-16 19:40:09 +053028#include <drm/drm_mode.h>
Dave Airlief453ba02008-11-07 14:05:41 -080029
Daniel Vettercdc3d092016-08-31 18:09:06 +020030struct drm_device;
31struct i2c_adapter;
32
Dave Airlief453ba02008-11-07 14:05:41 -080033#define EDID_LENGTH 128
34#define DDC_ADDR 0x50
Dave Airlieb49b55b2014-10-20 16:13:19 +100035#define DDC_ADDR2 0x52 /* E-DDC 1.2 - where DisplayID can hide */
Dave Airlief453ba02008-11-07 14:05:41 -080036
Adam Jackson4d76a222010-08-03 14:38:17 -040037#define CEA_EXT 0x02
38#define VTB_EXT 0x10
39#define DI_EXT 0x40
40#define LS_EXT 0x50
41#define MI_EXT 0x60
Dave Airlieb49b55b2014-10-20 16:13:19 +100042#define DISPLAYID_EXT 0x70
Adam Jackson4d76a222010-08-03 14:38:17 -040043
Dave Airlief453ba02008-11-07 14:05:41 -080044struct est_timings {
45 u8 t1;
46 u8 t2;
47 u8 mfg_rsvd;
48} __attribute__((packed));
49
Michel Dänzer0454bea2009-06-15 16:56:07 +020050/* 00=16:10, 01=4:3, 10=5:4, 11=16:9 */
Michel Dänzere14cbee2009-06-23 12:36:32 +020051#define EDID_TIMING_ASPECT_SHIFT 6
Michel Dänzer0454bea2009-06-15 16:56:07 +020052#define EDID_TIMING_ASPECT_MASK (0x3 << EDID_TIMING_ASPECT_SHIFT)
53
54/* need to add 60 */
Michel Dänzere14cbee2009-06-23 12:36:32 +020055#define EDID_TIMING_VFREQ_SHIFT 0
Michel Dänzer0454bea2009-06-15 16:56:07 +020056#define EDID_TIMING_VFREQ_MASK (0x3f << EDID_TIMING_VFREQ_SHIFT)
57
Dave Airlief453ba02008-11-07 14:05:41 -080058struct std_timing {
59 u8 hsize; /* need to multiply by 8 then add 248 */
Michel Dänzer0454bea2009-06-15 16:56:07 +020060 u8 vfreq_aspect;
Dave Airlief453ba02008-11-07 14:05:41 -080061} __attribute__((packed));
62
Michel Dänzere14cbee2009-06-23 12:36:32 +020063#define DRM_EDID_PT_HSYNC_POSITIVE (1 << 1)
64#define DRM_EDID_PT_VSYNC_POSITIVE (1 << 2)
Michel Dänzer0454bea2009-06-15 16:56:07 +020065#define DRM_EDID_PT_SEPARATE_SYNC (3 << 3)
Michel Dänzere14cbee2009-06-23 12:36:32 +020066#define DRM_EDID_PT_STEREO (1 << 5)
67#define DRM_EDID_PT_INTERLACED (1 << 7)
Michel Dänzer0454bea2009-06-15 16:56:07 +020068
Dave Airlief453ba02008-11-07 14:05:41 -080069/* If detailed data is pixel timing */
70struct detailed_pixel_timing {
71 u8 hactive_lo;
72 u8 hblank_lo;
Michel Dänzer0454bea2009-06-15 16:56:07 +020073 u8 hactive_hblank_hi;
Dave Airlief453ba02008-11-07 14:05:41 -080074 u8 vactive_lo;
75 u8 vblank_lo;
Michel Dänzer0454bea2009-06-15 16:56:07 +020076 u8 vactive_vblank_hi;
Dave Airlief453ba02008-11-07 14:05:41 -080077 u8 hsync_offset_lo;
78 u8 hsync_pulse_width_lo;
Michel Dänzer0454bea2009-06-15 16:56:07 +020079 u8 vsync_offset_pulse_width_lo;
80 u8 hsync_vsync_offset_pulse_width_hi;
Dave Airlief453ba02008-11-07 14:05:41 -080081 u8 width_mm_lo;
82 u8 height_mm_lo;
Michel Dänzer0454bea2009-06-15 16:56:07 +020083 u8 width_height_mm_hi;
Dave Airlief453ba02008-11-07 14:05:41 -080084 u8 hborder;
85 u8 vborder;
Michel Dänzer0454bea2009-06-15 16:56:07 +020086 u8 misc;
Dave Airlief453ba02008-11-07 14:05:41 -080087} __attribute__((packed));
88
89/* If it's not pixel timing, it'll be one of the below */
90struct detailed_data_string {
91 u8 str[13];
92} __attribute__((packed));
93
Manasi Navaref1ce9872020-03-10 16:16:50 -070094#define DRM_EDID_DEFAULT_GTF_SUPPORT_FLAG 0x00
95#define DRM_EDID_RANGE_LIMITS_ONLY_FLAG 0x01
96#define DRM_EDID_SECONDARY_GTF_SUPPORT_FLAG 0x02
97#define DRM_EDID_CVT_SUPPORT_FLAG 0x04
98
Dave Airlief453ba02008-11-07 14:05:41 -080099struct detailed_data_monitor_range {
100 u8 min_vfreq;
101 u8 max_vfreq;
102 u8 min_hfreq_khz;
103 u8 max_hfreq_khz;
104 u8 pixel_clock_mhz; /* need to multiply by 10 */
Adam Jacksoneeefa4b2012-04-13 16:33:37 -0400105 u8 flags;
106 union {
107 struct {
108 u8 reserved;
109 u8 hfreq_start_khz; /* need to multiply by 2 */
110 u8 c; /* need to divide by 2 */
111 __le16 m;
112 u8 k;
113 u8 j; /* need to divide by 2 */
Takashi Iwai8353e6c2012-04-23 17:40:49 +0100114 } __attribute__((packed)) gtf2;
Adam Jacksoneeefa4b2012-04-13 16:33:37 -0400115 struct {
116 u8 version;
117 u8 data1; /* high 6 bits: extra clock resolution */
118 u8 data2; /* plus low 2 of above: max hactive */
119 u8 supported_aspects;
120 u8 flags; /* preferred aspect and blanking support */
121 u8 supported_scalings;
122 u8 preferred_refresh;
Takashi Iwai8353e6c2012-04-23 17:40:49 +0100123 } __attribute__((packed)) cvt;
Adam Jacksoneeefa4b2012-04-13 16:33:37 -0400124 } formula;
Dave Airlief453ba02008-11-07 14:05:41 -0800125} __attribute__((packed));
126
127struct detailed_data_wpindex {
Michel Dänzere14cbee2009-06-23 12:36:32 +0200128 u8 white_yx_lo; /* Lower 2 bits each */
Dave Airlief453ba02008-11-07 14:05:41 -0800129 u8 white_x_hi;
130 u8 white_y_hi;
131 u8 gamma; /* need to divide by 100 then add 1 */
132} __attribute__((packed));
133
134struct detailed_data_color_point {
135 u8 windex1;
136 u8 wpindex1[3];
137 u8 windex2;
138 u8 wpindex2[3];
139} __attribute__((packed));
140
Adam Jackson9340d8c2009-12-03 17:44:40 -0500141struct cvt_timing {
142 u8 code[3];
143} __attribute__((packed));
144
Dave Airlief453ba02008-11-07 14:05:41 -0800145struct detailed_non_pixel {
146 u8 pad1;
147 u8 type; /* ff=serial, fe=string, fd=monitor range, fc=monitor name
148 fb=color point data, fa=standard timing data,
149 f9=undefined, f8=mfg. reserved */
150 u8 pad2;
151 union {
152 struct detailed_data_string str;
153 struct detailed_data_monitor_range range;
154 struct detailed_data_wpindex color;
Dan Carpenter96525a22010-05-14 13:06:19 +0200155 struct std_timing timings[6];
Adam Jackson9340d8c2009-12-03 17:44:40 -0500156 struct cvt_timing cvt[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800157 } data;
158} __attribute__((packed));
159
Adam Jackson2dbdc522009-12-03 17:44:39 -0500160#define EDID_DETAIL_EST_TIMINGS 0xf7
161#define EDID_DETAIL_CVT_3BYTE 0xf8
162#define EDID_DETAIL_COLOR_MGMT_DATA 0xf9
Dave Airlief453ba02008-11-07 14:05:41 -0800163#define EDID_DETAIL_STD_MODES 0xfa
164#define EDID_DETAIL_MONITOR_CPDATA 0xfb
165#define EDID_DETAIL_MONITOR_NAME 0xfc
166#define EDID_DETAIL_MONITOR_RANGE 0xfd
167#define EDID_DETAIL_MONITOR_STRING 0xfe
168#define EDID_DETAIL_MONITOR_SERIAL 0xff
169
170struct detailed_timing {
Michel Dänzer0454bea2009-06-15 16:56:07 +0200171 __le16 pixel_clock; /* need to multiply by 10 KHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800172 union {
173 struct detailed_pixel_timing pixel_data;
174 struct detailed_non_pixel other_data;
175 } data;
176} __attribute__((packed));
177
Michel Dänzere14cbee2009-06-23 12:36:32 +0200178#define DRM_EDID_INPUT_SERRATION_VSYNC (1 << 0)
179#define DRM_EDID_INPUT_SYNC_ON_GREEN (1 << 1)
180#define DRM_EDID_INPUT_COMPOSITE_SYNC (1 << 2)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200181#define DRM_EDID_INPUT_SEPARATE_SYNCS (1 << 3)
Michel Dänzere14cbee2009-06-23 12:36:32 +0200182#define DRM_EDID_INPUT_BLANK_TO_BLACK (1 << 4)
183#define DRM_EDID_INPUT_VIDEO_LEVEL (3 << 5)
Jesse Barnes3b112282011-04-15 12:49:23 -0700184#define DRM_EDID_INPUT_DIGITAL (1 << 7)
Ville Syrjälä382d2af2019-05-29 14:02:03 +0300185#define DRM_EDID_DIGITAL_DEPTH_MASK (7 << 4) /* 1.4 */
186#define DRM_EDID_DIGITAL_DEPTH_UNDEF (0 << 4) /* 1.4 */
187#define DRM_EDID_DIGITAL_DEPTH_6 (1 << 4) /* 1.4 */
188#define DRM_EDID_DIGITAL_DEPTH_8 (2 << 4) /* 1.4 */
189#define DRM_EDID_DIGITAL_DEPTH_10 (3 << 4) /* 1.4 */
190#define DRM_EDID_DIGITAL_DEPTH_12 (4 << 4) /* 1.4 */
191#define DRM_EDID_DIGITAL_DEPTH_14 (5 << 4) /* 1.4 */
192#define DRM_EDID_DIGITAL_DEPTH_16 (6 << 4) /* 1.4 */
193#define DRM_EDID_DIGITAL_DEPTH_RSVD (7 << 4) /* 1.4 */
194#define DRM_EDID_DIGITAL_TYPE_MASK (7 << 0) /* 1.4 */
195#define DRM_EDID_DIGITAL_TYPE_UNDEF (0 << 0) /* 1.4 */
196#define DRM_EDID_DIGITAL_TYPE_DVI (1 << 0) /* 1.4 */
197#define DRM_EDID_DIGITAL_TYPE_HDMI_A (2 << 0) /* 1.4 */
198#define DRM_EDID_DIGITAL_TYPE_HDMI_B (3 << 0) /* 1.4 */
199#define DRM_EDID_DIGITAL_TYPE_MDDI (4 << 0) /* 1.4 */
200#define DRM_EDID_DIGITAL_TYPE_DP (5 << 0) /* 1.4 */
201#define DRM_EDID_DIGITAL_DFP_1_X (1 << 0) /* 1.3 */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200202
Michel Dänzere14cbee2009-06-23 12:36:32 +0200203#define DRM_EDID_FEATURE_DEFAULT_GTF (1 << 0)
204#define DRM_EDID_FEATURE_PREFERRED_TIMING (1 << 1)
205#define DRM_EDID_FEATURE_STANDARD_COLOR (1 << 2)
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700206/* If analog */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200207#define DRM_EDID_FEATURE_DISPLAY_TYPE (3 << 3) /* 00=mono, 01=rgb, 10=non-rgb, 11=unknown */
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700208/* If digital */
209#define DRM_EDID_FEATURE_COLOR_MASK (3 << 3)
210#define DRM_EDID_FEATURE_RGB (0 << 3)
211#define DRM_EDID_FEATURE_RGB_YCRCB444 (1 << 3)
212#define DRM_EDID_FEATURE_RGB_YCRCB422 (2 << 3)
213#define DRM_EDID_FEATURE_RGB_YCRCB (3 << 3) /* both 4:4:4 and 4:2:2 */
214
Michel Dänzere14cbee2009-06-23 12:36:32 +0200215#define DRM_EDID_FEATURE_PM_ACTIVE_OFF (1 << 5)
216#define DRM_EDID_FEATURE_PM_SUSPEND (1 << 6)
217#define DRM_EDID_FEATURE_PM_STANDBY (1 << 7)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200218
Mario Kleinerd0c94692014-03-27 19:59:39 +0100219#define DRM_EDID_HDMI_DC_48 (1 << 6)
220#define DRM_EDID_HDMI_DC_36 (1 << 5)
221#define DRM_EDID_HDMI_DC_30 (1 << 4)
222#define DRM_EDID_HDMI_DC_Y444 (1 << 3)
223
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +0530224/* YCBCR 420 deep color modes */
Clint Taylor9068e022018-10-05 14:52:15 -0700225#define DRM_EDID_YCBCR420_DC_48 (1 << 2)
226#define DRM_EDID_YCBCR420_DC_36 (1 << 1)
227#define DRM_EDID_YCBCR420_DC_30 (1 << 0)
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +0530228#define DRM_EDID_YCBCR420_DC_MASK (DRM_EDID_YCBCR420_DC_48 | \
229 DRM_EDID_YCBCR420_DC_36 | \
230 DRM_EDID_YCBCR420_DC_30)
231
Swati Sharma9bb85a62020-12-18 16:07:09 +0530232/* HDMI 2.1 additional fields */
233#define DRM_EDID_MAX_FRL_RATE_MASK 0xf0
234#define DRM_EDID_FAPA_START_LOCATION (1 << 0)
235#define DRM_EDID_ALLM (1 << 1)
236#define DRM_EDID_FVA (1 << 2)
237
238/* Deep Color specific */
239#define DRM_EDID_DC_30BIT_420 (1 << 0)
240#define DRM_EDID_DC_36BIT_420 (1 << 1)
241#define DRM_EDID_DC_48BIT_420 (1 << 2)
242
243/* VRR specific */
244#define DRM_EDID_CNMVRR (1 << 3)
245#define DRM_EDID_CINEMA_VRR (1 << 4)
246#define DRM_EDID_MDELTA (1 << 5)
247#define DRM_EDID_VRR_MAX_UPPER_MASK 0xc0
248#define DRM_EDID_VRR_MAX_LOWER_MASK 0xff
249#define DRM_EDID_VRR_MIN_MASK 0x3f
250
251/* DSC specific */
252#define DRM_EDID_DSC_10BPC (1 << 0)
253#define DRM_EDID_DSC_12BPC (1 << 1)
254#define DRM_EDID_DSC_16BPC (1 << 2)
255#define DRM_EDID_DSC_ALL_BPP (1 << 3)
256#define DRM_EDID_DSC_NATIVE_420 (1 << 6)
257#define DRM_EDID_DSC_1P2 (1 << 7)
258#define DRM_EDID_DSC_MAX_FRL_RATE_MASK 0xf0
259#define DRM_EDID_DSC_MAX_SLICES 0xf
260#define DRM_EDID_DSC_TOTAL_CHUNK_KBYTES 0x3f
261
Jani Nikulababc9492014-10-28 16:20:47 +0200262/* ELD Header Block */
263#define DRM_ELD_HEADER_BLOCK_SIZE 4
264
265#define DRM_ELD_VER 0
266# define DRM_ELD_VER_SHIFT 3
267# define DRM_ELD_VER_MASK (0x1f << 3)
Jani Nikula1b54bdb2015-04-13 10:57:14 +0300268# define DRM_ELD_VER_CEA861D (2 << 3) /* supports 861D or below */
269# define DRM_ELD_VER_CANNED (0x1f << 3)
Jani Nikulababc9492014-10-28 16:20:47 +0200270
271#define DRM_ELD_BASELINE_ELD_LEN 2 /* in dwords! */
272
273/* ELD Baseline Block for ELD_Ver == 2 */
274#define DRM_ELD_CEA_EDID_VER_MNL 4
275# define DRM_ELD_CEA_EDID_VER_SHIFT 5
276# define DRM_ELD_CEA_EDID_VER_MASK (7 << 5)
277# define DRM_ELD_CEA_EDID_VER_NONE (0 << 5)
278# define DRM_ELD_CEA_EDID_VER_CEA861 (1 << 5)
279# define DRM_ELD_CEA_EDID_VER_CEA861A (2 << 5)
280# define DRM_ELD_CEA_EDID_VER_CEA861BCD (3 << 5)
281# define DRM_ELD_MNL_SHIFT 0
282# define DRM_ELD_MNL_MASK (0x1f << 0)
283
284#define DRM_ELD_SAD_COUNT_CONN_TYPE 5
285# define DRM_ELD_SAD_COUNT_SHIFT 4
286# define DRM_ELD_SAD_COUNT_MASK (0xf << 4)
287# define DRM_ELD_CONN_TYPE_SHIFT 2
288# define DRM_ELD_CONN_TYPE_MASK (3 << 2)
289# define DRM_ELD_CONN_TYPE_HDMI (0 << 2)
290# define DRM_ELD_CONN_TYPE_DP (1 << 2)
291# define DRM_ELD_SUPPORTS_AI (1 << 1)
292# define DRM_ELD_SUPPORTS_HDCP (1 << 0)
293
294#define DRM_ELD_AUD_SYNCH_DELAY 6 /* in units of 2 ms */
295# define DRM_ELD_AUD_SYNCH_DELAY_MAX 0xfa /* 500 ms */
296
297#define DRM_ELD_SPEAKER 7
Arnaud Pouliquenc82dbe52017-01-03 16:52:50 +0100298# define DRM_ELD_SPEAKER_MASK 0x7f
Jani Nikulababc9492014-10-28 16:20:47 +0200299# define DRM_ELD_SPEAKER_RLRC (1 << 6)
300# define DRM_ELD_SPEAKER_FLRC (1 << 5)
301# define DRM_ELD_SPEAKER_RC (1 << 4)
302# define DRM_ELD_SPEAKER_RLR (1 << 3)
303# define DRM_ELD_SPEAKER_FC (1 << 2)
304# define DRM_ELD_SPEAKER_LFE (1 << 1)
305# define DRM_ELD_SPEAKER_FLR (1 << 0)
306
307#define DRM_ELD_PORT_ID 8 /* offsets 8..15 inclusive */
308# define DRM_ELD_PORT_ID_LEN 8
309
310#define DRM_ELD_MANUFACTURER_NAME0 16
311#define DRM_ELD_MANUFACTURER_NAME1 17
312
313#define DRM_ELD_PRODUCT_CODE0 18
314#define DRM_ELD_PRODUCT_CODE1 19
315
316#define DRM_ELD_MONITOR_NAME_STRING 20 /* offsets 20..(20+mnl-1) inclusive */
317
318#define DRM_ELD_CEA_SAD(mnl, sad) (20 + (mnl) + 3 * (sad))
319
Dave Airlief453ba02008-11-07 14:05:41 -0800320struct edid {
321 u8 header[8];
322 /* Vendor & product info */
323 u8 mfg_id[2];
324 u8 prod_code[2];
325 u32 serial; /* FIXME: byte order */
326 u8 mfg_week;
327 u8 mfg_year;
328 /* EDID version */
329 u8 version;
330 u8 revision;
331 /* Display info: */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200332 u8 input;
Dave Airlief453ba02008-11-07 14:05:41 -0800333 u8 width_cm;
334 u8 height_cm;
335 u8 gamma;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200336 u8 features;
Dave Airlief453ba02008-11-07 14:05:41 -0800337 /* Color characteristics */
338 u8 red_green_lo;
339 u8 black_white_lo;
340 u8 red_x;
341 u8 red_y;
342 u8 green_x;
343 u8 green_y;
344 u8 blue_x;
345 u8 blue_y;
346 u8 white_x;
347 u8 white_y;
348 /* Est. timings and mfg rsvd timings*/
349 struct est_timings established_timings;
350 /* Standard timings 1-8*/
351 struct std_timing standard_timings[8];
352 /* Detailing timings 1-4 */
353 struct detailed_timing detailed_timings[4];
354 /* Number of 128 byte ext. blocks */
355 u8 extensions;
356 /* Checksum */
357 u8 checksum;
358} __attribute__((packed));
359
Dave Airlief453ba02008-11-07 14:05:41 -0800360#define EDID_PRODUCT_ID(e) ((e)->prod_code[0] | ((e)->prod_code[1] << 8))
361
Rafał Miłeckife214162013-04-19 19:01:25 +0200362/* Short Audio Descriptor */
363struct cea_sad {
364 u8 format;
365 u8 channels; /* max number of channels - 1 */
366 u8 freq;
367 u8 byte2; /* meaning depends on format */
368};
369
Wu Fengguang76adaa342011-09-05 14:23:20 +0800370struct drm_encoder;
371struct drm_connector;
Uma Shankar0d68b882019-02-19 22:43:00 +0530372struct drm_connector_state;
Wu Fengguang76adaa342011-09-05 14:23:20 +0800373struct drm_display_mode;
Thierry Reding10a85122012-11-21 15:31:35 +0100374
Rafał Miłeckife214162013-04-19 19:01:25 +0200375int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads);
Alex Deucherd105f472013-07-25 15:55:32 -0400376int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb);
Wu Fengguang76adaa342011-09-05 14:23:20 +0800377int drm_av_sync_delay(struct drm_connector *connector,
Ville Syrjälä3a818d32015-09-07 18:22:58 +0300378 const struct drm_display_mode *mode);
Ezequiel Garciaba34d582016-04-19 14:40:37 -0300379
380#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
Jani Nikula07c2b842017-02-17 17:20:51 +0200381struct edid *drm_load_edid_firmware(struct drm_connector *connector);
Jani Nikulaac6c35a2017-09-18 21:20:03 +0300382int __drm_set_edid_firmware_path(const char *path);
383int __drm_get_edid_firmware_path(char *buf, size_t bufsize);
Ezequiel Garciaba34d582016-04-19 14:40:37 -0300384#else
Jani Nikula07c2b842017-02-17 17:20:51 +0200385static inline struct edid *
386drm_load_edid_firmware(struct drm_connector *connector)
Ezequiel Garciaba34d582016-04-19 14:40:37 -0300387{
Jani Nikula07c2b842017-02-17 17:20:51 +0200388 return ERR_PTR(-ENOENT);
Ezequiel Garciaba34d582016-04-19 14:40:37 -0300389}
390#endif
Wu Fengguang76adaa342011-09-05 14:23:20 +0800391
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +0530392bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2);
393
Thierry Reding10a85122012-11-21 15:31:35 +0100394int
395drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +0300396 const struct drm_connector *connector,
Ville Syrjälä13d0add2019-01-08 19:28:25 +0200397 const struct drm_display_mode *mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +0100398int
399drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +0300400 const struct drm_connector *connector,
Lespiau, Damien83dd0002013-08-19 16:59:03 +0100401 const struct drm_display_mode *mode);
Uma Shankar0d68b882019-02-19 22:43:00 +0530402
403void
404drm_hdmi_avi_infoframe_colorspace(struct hdmi_avi_infoframe *frame,
405 const struct drm_connector_state *conn_state);
406
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +0200407void
Ville Syrjälä076d9a52019-10-08 19:48:13 +0300408drm_hdmi_avi_infoframe_bars(struct hdmi_avi_infoframe *frame,
409 const struct drm_connector_state *conn_state);
410
411void
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +0200412drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +0300413 const struct drm_connector *connector,
Ville Syrjälä779c4c22017-01-11 14:57:24 +0200414 const struct drm_display_mode *mode,
Ville Syrjälä1581b2d2019-01-08 19:28:28 +0200415 enum hdmi_quantization_range rgb_quant_range);
Thierry Reding10a85122012-11-21 15:31:35 +0100416
Uma Shankar2cdbfd62019-05-16 19:40:09 +0530417int
418drm_hdmi_infoframe_set_hdr_metadata(struct hdmi_drm_infoframe *frame,
419 const struct drm_connector_state *conn_state);
420
Jani Nikulababc9492014-10-28 16:20:47 +0200421/**
422 * drm_eld_mnl - Get ELD monitor name length in bytes.
423 * @eld: pointer to an eld memory structure with mnl set
424 */
425static inline int drm_eld_mnl(const uint8_t *eld)
426{
427 return (eld[DRM_ELD_CEA_EDID_VER_MNL] & DRM_ELD_MNL_MASK) >> DRM_ELD_MNL_SHIFT;
428}
429
430/**
Russell King1c73d3b2015-03-28 18:13:52 +0000431 * drm_eld_sad - Get ELD SAD structures.
432 * @eld: pointer to an eld memory structure with sad_count set
433 */
434static inline const uint8_t *drm_eld_sad(const uint8_t *eld)
435{
436 unsigned int ver, mnl;
437
438 ver = (eld[DRM_ELD_VER] & DRM_ELD_VER_MASK) >> DRM_ELD_VER_SHIFT;
439 if (ver != 2 && ver != 31)
440 return NULL;
441
442 mnl = drm_eld_mnl(eld);
443 if (mnl > 16)
444 return NULL;
445
446 return eld + DRM_ELD_CEA_SAD(mnl, 0);
447}
448
449/**
Jani Nikulababc9492014-10-28 16:20:47 +0200450 * drm_eld_sad_count - Get ELD SAD count.
451 * @eld: pointer to an eld memory structure with sad_count set
452 */
453static inline int drm_eld_sad_count(const uint8_t *eld)
454{
455 return (eld[DRM_ELD_SAD_COUNT_CONN_TYPE] & DRM_ELD_SAD_COUNT_MASK) >>
456 DRM_ELD_SAD_COUNT_SHIFT;
457}
458
459/**
460 * drm_eld_calc_baseline_block_size - Calculate baseline block size in bytes
461 * @eld: pointer to an eld memory structure with mnl and sad_count set
462 *
463 * This is a helper for determining the payload size of the baseline block, in
464 * bytes, for e.g. setting the Baseline_ELD_Len field in the ELD header block.
465 */
466static inline int drm_eld_calc_baseline_block_size(const uint8_t *eld)
467{
468 return DRM_ELD_MONITOR_NAME_STRING - DRM_ELD_HEADER_BLOCK_SIZE +
469 drm_eld_mnl(eld) + drm_eld_sad_count(eld) * 3;
470}
471
472/**
473 * drm_eld_size - Get ELD size in bytes
474 * @eld: pointer to a complete eld memory structure
475 *
476 * The returned value does not include the vendor block. It's vendor specific,
477 * and comprises of the remaining bytes in the ELD memory buffer after
478 * drm_eld_size() bytes of header and baseline block.
479 *
480 * The returned value is guaranteed to be a multiple of 4.
481 */
482static inline int drm_eld_size(const uint8_t *eld)
483{
484 return DRM_ELD_HEADER_BLOCK_SIZE + eld[DRM_ELD_BASELINE_ELD_LEN] * 4;
485}
486
Subhransu S. Prusty1aa8ec22016-02-12 07:46:08 +0530487/**
Arnaud Pouliquenc82dbe52017-01-03 16:52:50 +0100488 * drm_eld_get_spk_alloc - Get speaker allocation
489 * @eld: pointer to an ELD memory structure
490 *
491 * The returned value is the speakers mask. User has to use %DRM_ELD_SPEAKER
492 * field definitions to identify speakers.
493 */
494static inline u8 drm_eld_get_spk_alloc(const uint8_t *eld)
495{
496 return eld[DRM_ELD_SPEAKER] & DRM_ELD_SPEAKER_MASK;
497}
498
499/**
Subhransu S. Prusty1aa8ec22016-02-12 07:46:08 +0530500 * drm_eld_get_conn_type - Get device type hdmi/dp connected
501 * @eld: pointer to an ELD memory structure
502 *
503 * The caller need to use %DRM_ELD_CONN_TYPE_HDMI or %DRM_ELD_CONN_TYPE_DP to
504 * identify the display type connected.
505 */
506static inline u8 drm_eld_get_conn_type(const uint8_t *eld)
507{
508 return eld[DRM_ELD_SAD_COUNT_CONN_TYPE] & DRM_ELD_CONN_TYPE_MASK;
509}
510
Daniel Vettercdc3d092016-08-31 18:09:06 +0200511bool drm_probe_ddc(struct i2c_adapter *adapter);
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +0200512struct edid *drm_do_get_edid(struct drm_connector *connector,
513 int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
514 size_t len),
515 void *data);
Daniel Vettercdc3d092016-08-31 18:09:06 +0200516struct edid *drm_get_edid(struct drm_connector *connector,
517 struct i2c_adapter *adapter);
518struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
519 struct i2c_adapter *adapter);
520struct edid *drm_edid_duplicate(const struct edid *edid);
521int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
Jani Nikula48eaeb72019-06-10 12:30:54 +0300522int drm_add_override_edid_modes(struct drm_connector *connector);
Daniel Vettercdc3d092016-08-31 18:09:06 +0200523
524u8 drm_match_cea_mode(const struct drm_display_mode *to_match);
Daniel Vettercdc3d092016-08-31 18:09:06 +0200525bool drm_detect_hdmi_monitor(struct edid *edid);
526bool drm_detect_monitor_audio(struct edid *edid);
Ville Syrjäläc8127cf02017-01-11 16:18:35 +0200527enum hdmi_quantization_range
528drm_default_rgb_quant_range(const struct drm_display_mode *mode);
Daniel Vettercdc3d092016-08-31 18:09:06 +0200529int drm_add_modes_noedid(struct drm_connector *connector,
530 int hdisplay, int vdisplay);
531void drm_set_preferred_mode(struct drm_connector *connector,
532 int hpref, int vpref);
533
534int drm_edid_header_is_valid(const u8 *raw_edid);
535bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid,
536 bool *edid_corrupt);
537bool drm_edid_is_valid(struct edid *edid);
538void drm_edid_get_monitor_name(struct edid *edid, char *name,
539 int buflen);
540struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
541 int hsize, int vsize, int fresh,
542 bool rb);
Ville Syrjälä7af655b2020-09-04 14:53:49 +0300543struct drm_display_mode *
544drm_display_mode_from_cea_vic(struct drm_device *dev,
545 u8 video_code);
Jani Nikula4cc4f092021-03-29 16:37:16 +0300546const u8 *drm_find_edid_extension(const struct edid *edid,
547 int ext_id, int *ext_index);
548
Ville Syrjälä7af655b2020-09-04 14:53:49 +0300549
Dave Airlief453ba02008-11-07 14:05:41 -0800550#endif /* __DRM_EDID_H__ */