xref: /openbmc/linux/drivers/gpu/drm/drm_edid.c (revision f2d8e15b)
1 /*
2  * Copyright (c) 2006 Luc Verhaegen (quirks list)
3  * Copyright (c) 2007-2008 Intel Corporation
4  *   Jesse Barnes <jesse.barnes@intel.com>
5  * Copyright 2010 Red Hat, Inc.
6  *
7  * DDC probing routines (drm_ddc_read & drm_do_probe_ddc_edid) originally from
8  * FB layer.
9  *   Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com>
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and associated documentation files (the "Software"),
13  * to deal in the Software without restriction, including without limitation
14  * the rights to use, copy, modify, merge, publish, distribute, sub license,
15  * and/or sell copies of the Software, and to permit persons to whom the
16  * Software is furnished to do so, subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice (including the
19  * next paragraph) shall be included in all copies or substantial portions
20  * of the Software.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
25  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28  * DEALINGS IN THE SOFTWARE.
29  */
30 
31 #include <linux/bitfield.h>
32 #include <linux/hdmi.h>
33 #include <linux/i2c.h>
34 #include <linux/kernel.h>
35 #include <linux/module.h>
36 #include <linux/pci.h>
37 #include <linux/slab.h>
38 #include <linux/vga_switcheroo.h>
39 
40 #include <drm/drm_displayid.h>
41 #include <drm/drm_drv.h>
42 #include <drm/drm_edid.h>
43 #include <drm/drm_encoder.h>
44 #include <drm/drm_print.h>
45 
46 #include "drm_crtc_internal.h"
47 
48 static int oui(u8 first, u8 second, u8 third)
49 {
50 	return (first << 16) | (second << 8) | third;
51 }
52 
53 #define EDID_EST_TIMINGS 16
54 #define EDID_STD_TIMINGS 8
55 #define EDID_DETAILED_TIMINGS 4
56 
57 /*
58  * EDID blocks out in the wild have a variety of bugs, try to collect
59  * them here (note that userspace may work around broken monitors first,
60  * but fixes should make their way here so that the kernel "just works"
61  * on as many displays as possible).
62  */
63 
64 /* First detailed mode wrong, use largest 60Hz mode */
65 #define EDID_QUIRK_PREFER_LARGE_60		(1 << 0)
66 /* Reported 135MHz pixel clock is too high, needs adjustment */
67 #define EDID_QUIRK_135_CLOCK_TOO_HIGH		(1 << 1)
68 /* Prefer the largest mode at 75 Hz */
69 #define EDID_QUIRK_PREFER_LARGE_75		(1 << 2)
70 /* Detail timing is in cm not mm */
71 #define EDID_QUIRK_DETAILED_IN_CM		(1 << 3)
72 /* Detailed timing descriptors have bogus size values, so just take the
73  * maximum size and use that.
74  */
75 #define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE	(1 << 4)
76 /* use +hsync +vsync for detailed mode */
77 #define EDID_QUIRK_DETAILED_SYNC_PP		(1 << 6)
78 /* Force reduced-blanking timings for detailed modes */
79 #define EDID_QUIRK_FORCE_REDUCED_BLANKING	(1 << 7)
80 /* Force 8bpc */
81 #define EDID_QUIRK_FORCE_8BPC			(1 << 8)
82 /* Force 12bpc */
83 #define EDID_QUIRK_FORCE_12BPC			(1 << 9)
84 /* Force 6bpc */
85 #define EDID_QUIRK_FORCE_6BPC			(1 << 10)
86 /* Force 10bpc */
87 #define EDID_QUIRK_FORCE_10BPC			(1 << 11)
88 /* Non desktop display (i.e. HMD) */
89 #define EDID_QUIRK_NON_DESKTOP			(1 << 12)
90 
91 #define MICROSOFT_IEEE_OUI	0xca125c
92 
93 struct detailed_mode_closure {
94 	struct drm_connector *connector;
95 	const struct drm_edid *drm_edid;
96 	bool preferred;
97 	u32 quirks;
98 	int modes;
99 };
100 
101 #define LEVEL_DMT	0
102 #define LEVEL_GTF	1
103 #define LEVEL_GTF2	2
104 #define LEVEL_CVT	3
105 
106 #define EDID_QUIRK(vend_chr_0, vend_chr_1, vend_chr_2, product_id, _quirks) \
107 { \
108 	.panel_id = drm_edid_encode_panel_id(vend_chr_0, vend_chr_1, vend_chr_2, \
109 					     product_id), \
110 	.quirks = _quirks \
111 }
112 
113 static const struct edid_quirk {
114 	u32 panel_id;
115 	u32 quirks;
116 } edid_quirk_list[] = {
117 	/* Acer AL1706 */
118 	EDID_QUIRK('A', 'C', 'R', 44358, EDID_QUIRK_PREFER_LARGE_60),
119 	/* Acer F51 */
120 	EDID_QUIRK('A', 'P', 'I', 0x7602, EDID_QUIRK_PREFER_LARGE_60),
121 
122 	/* AEO model 0 reports 8 bpc, but is a 6 bpc panel */
123 	EDID_QUIRK('A', 'E', 'O', 0, EDID_QUIRK_FORCE_6BPC),
124 
125 	/* BOE model on HP Pavilion 15-n233sl reports 8 bpc, but is a 6 bpc panel */
126 	EDID_QUIRK('B', 'O', 'E', 0x78b, EDID_QUIRK_FORCE_6BPC),
127 
128 	/* CPT panel of Asus UX303LA reports 8 bpc, but is a 6 bpc panel */
129 	EDID_QUIRK('C', 'P', 'T', 0x17df, EDID_QUIRK_FORCE_6BPC),
130 
131 	/* SDC panel of Lenovo B50-80 reports 8 bpc, but is a 6 bpc panel */
132 	EDID_QUIRK('S', 'D', 'C', 0x3652, EDID_QUIRK_FORCE_6BPC),
133 
134 	/* BOE model 0x0771 reports 8 bpc, but is a 6 bpc panel */
135 	EDID_QUIRK('B', 'O', 'E', 0x0771, EDID_QUIRK_FORCE_6BPC),
136 
137 	/* Belinea 10 15 55 */
138 	EDID_QUIRK('M', 'A', 'X', 1516, EDID_QUIRK_PREFER_LARGE_60),
139 	EDID_QUIRK('M', 'A', 'X', 0x77e, EDID_QUIRK_PREFER_LARGE_60),
140 
141 	/* Envision Peripherals, Inc. EN-7100e */
142 	EDID_QUIRK('E', 'P', 'I', 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH),
143 	/* Envision EN2028 */
144 	EDID_QUIRK('E', 'P', 'I', 8232, EDID_QUIRK_PREFER_LARGE_60),
145 
146 	/* Funai Electronics PM36B */
147 	EDID_QUIRK('F', 'C', 'M', 13600, EDID_QUIRK_PREFER_LARGE_75 |
148 				       EDID_QUIRK_DETAILED_IN_CM),
149 
150 	/* LGD panel of HP zBook 17 G2, eDP 10 bpc, but reports unknown bpc */
151 	EDID_QUIRK('L', 'G', 'D', 764, EDID_QUIRK_FORCE_10BPC),
152 
153 	/* LG Philips LCD LP154W01-A5 */
154 	EDID_QUIRK('L', 'P', 'L', 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE),
155 	EDID_QUIRK('L', 'P', 'L', 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE),
156 
157 	/* Samsung SyncMaster 205BW.  Note: irony */
158 	EDID_QUIRK('S', 'A', 'M', 541, EDID_QUIRK_DETAILED_SYNC_PP),
159 	/* Samsung SyncMaster 22[5-6]BW */
160 	EDID_QUIRK('S', 'A', 'M', 596, EDID_QUIRK_PREFER_LARGE_60),
161 	EDID_QUIRK('S', 'A', 'M', 638, EDID_QUIRK_PREFER_LARGE_60),
162 
163 	/* Sony PVM-2541A does up to 12 bpc, but only reports max 8 bpc */
164 	EDID_QUIRK('S', 'N', 'Y', 0x2541, EDID_QUIRK_FORCE_12BPC),
165 
166 	/* ViewSonic VA2026w */
167 	EDID_QUIRK('V', 'S', 'C', 5020, EDID_QUIRK_FORCE_REDUCED_BLANKING),
168 
169 	/* Medion MD 30217 PG */
170 	EDID_QUIRK('M', 'E', 'D', 0x7b8, EDID_QUIRK_PREFER_LARGE_75),
171 
172 	/* Lenovo G50 */
173 	EDID_QUIRK('S', 'D', 'C', 18514, EDID_QUIRK_FORCE_6BPC),
174 
175 	/* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
176 	EDID_QUIRK('S', 'E', 'C', 0xd033, EDID_QUIRK_FORCE_8BPC),
177 
178 	/* Rotel RSX-1058 forwards sink's EDID but only does HDMI 1.1*/
179 	EDID_QUIRK('E', 'T', 'R', 13896, EDID_QUIRK_FORCE_8BPC),
180 
181 	/* Valve Index Headset */
182 	EDID_QUIRK('V', 'L', 'V', 0x91a8, EDID_QUIRK_NON_DESKTOP),
183 	EDID_QUIRK('V', 'L', 'V', 0x91b0, EDID_QUIRK_NON_DESKTOP),
184 	EDID_QUIRK('V', 'L', 'V', 0x91b1, EDID_QUIRK_NON_DESKTOP),
185 	EDID_QUIRK('V', 'L', 'V', 0x91b2, EDID_QUIRK_NON_DESKTOP),
186 	EDID_QUIRK('V', 'L', 'V', 0x91b3, EDID_QUIRK_NON_DESKTOP),
187 	EDID_QUIRK('V', 'L', 'V', 0x91b4, EDID_QUIRK_NON_DESKTOP),
188 	EDID_QUIRK('V', 'L', 'V', 0x91b5, EDID_QUIRK_NON_DESKTOP),
189 	EDID_QUIRK('V', 'L', 'V', 0x91b6, EDID_QUIRK_NON_DESKTOP),
190 	EDID_QUIRK('V', 'L', 'V', 0x91b7, EDID_QUIRK_NON_DESKTOP),
191 	EDID_QUIRK('V', 'L', 'V', 0x91b8, EDID_QUIRK_NON_DESKTOP),
192 	EDID_QUIRK('V', 'L', 'V', 0x91b9, EDID_QUIRK_NON_DESKTOP),
193 	EDID_QUIRK('V', 'L', 'V', 0x91ba, EDID_QUIRK_NON_DESKTOP),
194 	EDID_QUIRK('V', 'L', 'V', 0x91bb, EDID_QUIRK_NON_DESKTOP),
195 	EDID_QUIRK('V', 'L', 'V', 0x91bc, EDID_QUIRK_NON_DESKTOP),
196 	EDID_QUIRK('V', 'L', 'V', 0x91bd, EDID_QUIRK_NON_DESKTOP),
197 	EDID_QUIRK('V', 'L', 'V', 0x91be, EDID_QUIRK_NON_DESKTOP),
198 	EDID_QUIRK('V', 'L', 'V', 0x91bf, EDID_QUIRK_NON_DESKTOP),
199 
200 	/* HTC Vive and Vive Pro VR Headsets */
201 	EDID_QUIRK('H', 'V', 'R', 0xaa01, EDID_QUIRK_NON_DESKTOP),
202 	EDID_QUIRK('H', 'V', 'R', 0xaa02, EDID_QUIRK_NON_DESKTOP),
203 
204 	/* Oculus Rift DK1, DK2, CV1 and Rift S VR Headsets */
205 	EDID_QUIRK('O', 'V', 'R', 0x0001, EDID_QUIRK_NON_DESKTOP),
206 	EDID_QUIRK('O', 'V', 'R', 0x0003, EDID_QUIRK_NON_DESKTOP),
207 	EDID_QUIRK('O', 'V', 'R', 0x0004, EDID_QUIRK_NON_DESKTOP),
208 	EDID_QUIRK('O', 'V', 'R', 0x0012, EDID_QUIRK_NON_DESKTOP),
209 
210 	/* Windows Mixed Reality Headsets */
211 	EDID_QUIRK('A', 'C', 'R', 0x7fce, EDID_QUIRK_NON_DESKTOP),
212 	EDID_QUIRK('L', 'E', 'N', 0x0408, EDID_QUIRK_NON_DESKTOP),
213 	EDID_QUIRK('F', 'U', 'J', 0x1970, EDID_QUIRK_NON_DESKTOP),
214 	EDID_QUIRK('D', 'E', 'L', 0x7fce, EDID_QUIRK_NON_DESKTOP),
215 	EDID_QUIRK('S', 'E', 'C', 0x144a, EDID_QUIRK_NON_DESKTOP),
216 	EDID_QUIRK('A', 'U', 'S', 0xc102, EDID_QUIRK_NON_DESKTOP),
217 
218 	/* Sony PlayStation VR Headset */
219 	EDID_QUIRK('S', 'N', 'Y', 0x0704, EDID_QUIRK_NON_DESKTOP),
220 
221 	/* Sensics VR Headsets */
222 	EDID_QUIRK('S', 'E', 'N', 0x1019, EDID_QUIRK_NON_DESKTOP),
223 
224 	/* OSVR HDK and HDK2 VR Headsets */
225 	EDID_QUIRK('S', 'V', 'R', 0x1019, EDID_QUIRK_NON_DESKTOP),
226 };
227 
228 /*
229  * Autogenerated from the DMT spec.
230  * This table is copied from xfree86/modes/xf86EdidModes.c.
231  */
232 static const struct drm_display_mode drm_dmt_modes[] = {
233 	/* 0x01 - 640x350@85Hz */
234 	{ DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
235 		   736, 832, 0, 350, 382, 385, 445, 0,
236 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
237 	/* 0x02 - 640x400@85Hz */
238 	{ DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
239 		   736, 832, 0, 400, 401, 404, 445, 0,
240 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
241 	/* 0x03 - 720x400@85Hz */
242 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
243 		   828, 936, 0, 400, 401, 404, 446, 0,
244 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
245 	/* 0x04 - 640x480@60Hz */
246 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
247 		   752, 800, 0, 480, 490, 492, 525, 0,
248 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
249 	/* 0x05 - 640x480@72Hz */
250 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
251 		   704, 832, 0, 480, 489, 492, 520, 0,
252 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
253 	/* 0x06 - 640x480@75Hz */
254 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
255 		   720, 840, 0, 480, 481, 484, 500, 0,
256 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
257 	/* 0x07 - 640x480@85Hz */
258 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
259 		   752, 832, 0, 480, 481, 484, 509, 0,
260 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
261 	/* 0x08 - 800x600@56Hz */
262 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
263 		   896, 1024, 0, 600, 601, 603, 625, 0,
264 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
265 	/* 0x09 - 800x600@60Hz */
266 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
267 		   968, 1056, 0, 600, 601, 605, 628, 0,
268 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
269 	/* 0x0a - 800x600@72Hz */
270 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
271 		   976, 1040, 0, 600, 637, 643, 666, 0,
272 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
273 	/* 0x0b - 800x600@75Hz */
274 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
275 		   896, 1056, 0, 600, 601, 604, 625, 0,
276 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
277 	/* 0x0c - 800x600@85Hz */
278 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
279 		   896, 1048, 0, 600, 601, 604, 631, 0,
280 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
281 	/* 0x0d - 800x600@120Hz RB */
282 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 73250, 800, 848,
283 		   880, 960, 0, 600, 603, 607, 636, 0,
284 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
285 	/* 0x0e - 848x480@60Hz */
286 	{ DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
287 		   976, 1088, 0, 480, 486, 494, 517, 0,
288 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
289 	/* 0x0f - 1024x768@43Hz, interlace */
290 	{ DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
291 		   1208, 1264, 0, 768, 768, 776, 817, 0,
292 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
293 		   DRM_MODE_FLAG_INTERLACE) },
294 	/* 0x10 - 1024x768@60Hz */
295 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
296 		   1184, 1344, 0, 768, 771, 777, 806, 0,
297 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
298 	/* 0x11 - 1024x768@70Hz */
299 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
300 		   1184, 1328, 0, 768, 771, 777, 806, 0,
301 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
302 	/* 0x12 - 1024x768@75Hz */
303 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
304 		   1136, 1312, 0, 768, 769, 772, 800, 0,
305 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
306 	/* 0x13 - 1024x768@85Hz */
307 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
308 		   1168, 1376, 0, 768, 769, 772, 808, 0,
309 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
310 	/* 0x14 - 1024x768@120Hz RB */
311 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 115500, 1024, 1072,
312 		   1104, 1184, 0, 768, 771, 775, 813, 0,
313 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
314 	/* 0x15 - 1152x864@75Hz */
315 	{ DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
316 		   1344, 1600, 0, 864, 865, 868, 900, 0,
317 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
318 	/* 0x55 - 1280x720@60Hz */
319 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
320 		   1430, 1650, 0, 720, 725, 730, 750, 0,
321 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
322 	/* 0x16 - 1280x768@60Hz RB */
323 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 68250, 1280, 1328,
324 		   1360, 1440, 0, 768, 771, 778, 790, 0,
325 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
326 	/* 0x17 - 1280x768@60Hz */
327 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
328 		   1472, 1664, 0, 768, 771, 778, 798, 0,
329 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
330 	/* 0x18 - 1280x768@75Hz */
331 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
332 		   1488, 1696, 0, 768, 771, 778, 805, 0,
333 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
334 	/* 0x19 - 1280x768@85Hz */
335 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
336 		   1496, 1712, 0, 768, 771, 778, 809, 0,
337 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
338 	/* 0x1a - 1280x768@120Hz RB */
339 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 140250, 1280, 1328,
340 		   1360, 1440, 0, 768, 771, 778, 813, 0,
341 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
342 	/* 0x1b - 1280x800@60Hz RB */
343 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 71000, 1280, 1328,
344 		   1360, 1440, 0, 800, 803, 809, 823, 0,
345 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
346 	/* 0x1c - 1280x800@60Hz */
347 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
348 		   1480, 1680, 0, 800, 803, 809, 831, 0,
349 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
350 	/* 0x1d - 1280x800@75Hz */
351 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
352 		   1488, 1696, 0, 800, 803, 809, 838, 0,
353 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
354 	/* 0x1e - 1280x800@85Hz */
355 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
356 		   1496, 1712, 0, 800, 803, 809, 843, 0,
357 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
358 	/* 0x1f - 1280x800@120Hz RB */
359 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 146250, 1280, 1328,
360 		   1360, 1440, 0, 800, 803, 809, 847, 0,
361 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
362 	/* 0x20 - 1280x960@60Hz */
363 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
364 		   1488, 1800, 0, 960, 961, 964, 1000, 0,
365 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
366 	/* 0x21 - 1280x960@85Hz */
367 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
368 		   1504, 1728, 0, 960, 961, 964, 1011, 0,
369 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
370 	/* 0x22 - 1280x960@120Hz RB */
371 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 175500, 1280, 1328,
372 		   1360, 1440, 0, 960, 963, 967, 1017, 0,
373 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
374 	/* 0x23 - 1280x1024@60Hz */
375 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
376 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
377 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
378 	/* 0x24 - 1280x1024@75Hz */
379 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
380 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
381 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
382 	/* 0x25 - 1280x1024@85Hz */
383 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
384 		   1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
385 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
386 	/* 0x26 - 1280x1024@120Hz RB */
387 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 187250, 1280, 1328,
388 		   1360, 1440, 0, 1024, 1027, 1034, 1084, 0,
389 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
390 	/* 0x27 - 1360x768@60Hz */
391 	{ DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
392 		   1536, 1792, 0, 768, 771, 777, 795, 0,
393 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
394 	/* 0x28 - 1360x768@120Hz RB */
395 	{ DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 148250, 1360, 1408,
396 		   1440, 1520, 0, 768, 771, 776, 813, 0,
397 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
398 	/* 0x51 - 1366x768@60Hz */
399 	{ DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 85500, 1366, 1436,
400 		   1579, 1792, 0, 768, 771, 774, 798, 0,
401 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
402 	/* 0x56 - 1366x768@60Hz */
403 	{ DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 72000, 1366, 1380,
404 		   1436, 1500, 0, 768, 769, 772, 800, 0,
405 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
406 	/* 0x29 - 1400x1050@60Hz RB */
407 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 101000, 1400, 1448,
408 		   1480, 1560, 0, 1050, 1053, 1057, 1080, 0,
409 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
410 	/* 0x2a - 1400x1050@60Hz */
411 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
412 		   1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
413 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
414 	/* 0x2b - 1400x1050@75Hz */
415 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
416 		   1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
417 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
418 	/* 0x2c - 1400x1050@85Hz */
419 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
420 		   1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
421 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
422 	/* 0x2d - 1400x1050@120Hz RB */
423 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 208000, 1400, 1448,
424 		   1480, 1560, 0, 1050, 1053, 1057, 1112, 0,
425 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
426 	/* 0x2e - 1440x900@60Hz RB */
427 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 88750, 1440, 1488,
428 		   1520, 1600, 0, 900, 903, 909, 926, 0,
429 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
430 	/* 0x2f - 1440x900@60Hz */
431 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
432 		   1672, 1904, 0, 900, 903, 909, 934, 0,
433 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
434 	/* 0x30 - 1440x900@75Hz */
435 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
436 		   1688, 1936, 0, 900, 903, 909, 942, 0,
437 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
438 	/* 0x31 - 1440x900@85Hz */
439 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
440 		   1696, 1952, 0, 900, 903, 909, 948, 0,
441 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
442 	/* 0x32 - 1440x900@120Hz RB */
443 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 182750, 1440, 1488,
444 		   1520, 1600, 0, 900, 903, 909, 953, 0,
445 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
446 	/* 0x53 - 1600x900@60Hz */
447 	{ DRM_MODE("1600x900", DRM_MODE_TYPE_DRIVER, 108000, 1600, 1624,
448 		   1704, 1800, 0, 900, 901, 904, 1000, 0,
449 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
450 	/* 0x33 - 1600x1200@60Hz */
451 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
452 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
453 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
454 	/* 0x34 - 1600x1200@65Hz */
455 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
456 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
457 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
458 	/* 0x35 - 1600x1200@70Hz */
459 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
460 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
461 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
462 	/* 0x36 - 1600x1200@75Hz */
463 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
464 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
465 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
466 	/* 0x37 - 1600x1200@85Hz */
467 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
468 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
469 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
470 	/* 0x38 - 1600x1200@120Hz RB */
471 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 268250, 1600, 1648,
472 		   1680, 1760, 0, 1200, 1203, 1207, 1271, 0,
473 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
474 	/* 0x39 - 1680x1050@60Hz RB */
475 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 119000, 1680, 1728,
476 		   1760, 1840, 0, 1050, 1053, 1059, 1080, 0,
477 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
478 	/* 0x3a - 1680x1050@60Hz */
479 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
480 		   1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
481 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
482 	/* 0x3b - 1680x1050@75Hz */
483 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
484 		   1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
485 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
486 	/* 0x3c - 1680x1050@85Hz */
487 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
488 		   1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
489 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
490 	/* 0x3d - 1680x1050@120Hz RB */
491 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 245500, 1680, 1728,
492 		   1760, 1840, 0, 1050, 1053, 1059, 1112, 0,
493 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
494 	/* 0x3e - 1792x1344@60Hz */
495 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
496 		   2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
497 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
498 	/* 0x3f - 1792x1344@75Hz */
499 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
500 		   2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
501 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
502 	/* 0x40 - 1792x1344@120Hz RB */
503 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 333250, 1792, 1840,
504 		   1872, 1952, 0, 1344, 1347, 1351, 1423, 0,
505 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
506 	/* 0x41 - 1856x1392@60Hz */
507 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
508 		   2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
509 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
510 	/* 0x42 - 1856x1392@75Hz */
511 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
512 		   2208, 2560, 0, 1392, 1393, 1396, 1500, 0,
513 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
514 	/* 0x43 - 1856x1392@120Hz RB */
515 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 356500, 1856, 1904,
516 		   1936, 2016, 0, 1392, 1395, 1399, 1474, 0,
517 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
518 	/* 0x52 - 1920x1080@60Hz */
519 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
520 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
521 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
522 	/* 0x44 - 1920x1200@60Hz RB */
523 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 154000, 1920, 1968,
524 		   2000, 2080, 0, 1200, 1203, 1209, 1235, 0,
525 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
526 	/* 0x45 - 1920x1200@60Hz */
527 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
528 		   2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
529 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
530 	/* 0x46 - 1920x1200@75Hz */
531 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
532 		   2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
533 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
534 	/* 0x47 - 1920x1200@85Hz */
535 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
536 		   2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
537 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
538 	/* 0x48 - 1920x1200@120Hz RB */
539 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 317000, 1920, 1968,
540 		   2000, 2080, 0, 1200, 1203, 1209, 1271, 0,
541 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
542 	/* 0x49 - 1920x1440@60Hz */
543 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
544 		   2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
545 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
546 	/* 0x4a - 1920x1440@75Hz */
547 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
548 		   2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
549 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
550 	/* 0x4b - 1920x1440@120Hz RB */
551 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 380500, 1920, 1968,
552 		   2000, 2080, 0, 1440, 1443, 1447, 1525, 0,
553 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
554 	/* 0x54 - 2048x1152@60Hz */
555 	{ DRM_MODE("2048x1152", DRM_MODE_TYPE_DRIVER, 162000, 2048, 2074,
556 		   2154, 2250, 0, 1152, 1153, 1156, 1200, 0,
557 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
558 	/* 0x4c - 2560x1600@60Hz RB */
559 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 268500, 2560, 2608,
560 		   2640, 2720, 0, 1600, 1603, 1609, 1646, 0,
561 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
562 	/* 0x4d - 2560x1600@60Hz */
563 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
564 		   3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
565 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
566 	/* 0x4e - 2560x1600@75Hz */
567 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
568 		   3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
569 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
570 	/* 0x4f - 2560x1600@85Hz */
571 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
572 		   3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
573 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
574 	/* 0x50 - 2560x1600@120Hz RB */
575 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 552750, 2560, 2608,
576 		   2640, 2720, 0, 1600, 1603, 1609, 1694, 0,
577 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
578 	/* 0x57 - 4096x2160@60Hz RB */
579 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556744, 4096, 4104,
580 		   4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
581 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
582 	/* 0x58 - 4096x2160@59.94Hz RB */
583 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556188, 4096, 4104,
584 		   4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
585 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
586 };
587 
588 /*
589  * These more or less come from the DMT spec.  The 720x400 modes are
590  * inferred from historical 80x25 practice.  The 640x480@67 and 832x624@75
591  * modes are old-school Mac modes.  The EDID spec says the 1152x864@75 mode
592  * should be 1152x870, again for the Mac, but instead we use the x864 DMT
593  * mode.
594  *
595  * The DMT modes have been fact-checked; the rest are mild guesses.
596  */
597 static const struct drm_display_mode edid_est_modes[] = {
598 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
599 		   968, 1056, 0, 600, 601, 605, 628, 0,
600 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
601 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
602 		   896, 1024, 0, 600, 601, 603,  625, 0,
603 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
604 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
605 		   720, 840, 0, 480, 481, 484, 500, 0,
606 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
607 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
608 		   704,  832, 0, 480, 489, 492, 520, 0,
609 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
610 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
611 		   768,  864, 0, 480, 483, 486, 525, 0,
612 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
613 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
614 		   752, 800, 0, 480, 490, 492, 525, 0,
615 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
616 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
617 		   846, 900, 0, 400, 421, 423,  449, 0,
618 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
619 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
620 		   846,  900, 0, 400, 412, 414, 449, 0,
621 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
622 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
623 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
624 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
625 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
626 		   1136, 1312, 0,  768, 769, 772, 800, 0,
627 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
628 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
629 		   1184, 1328, 0,  768, 771, 777, 806, 0,
630 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
631 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
632 		   1184, 1344, 0,  768, 771, 777, 806, 0,
633 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
634 	{ DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
635 		   1208, 1264, 0, 768, 768, 776, 817, 0,
636 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
637 	{ DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
638 		   928, 1152, 0, 624, 625, 628, 667, 0,
639 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
640 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
641 		   896, 1056, 0, 600, 601, 604,  625, 0,
642 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
643 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
644 		   976, 1040, 0, 600, 637, 643, 666, 0,
645 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
646 	{ DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
647 		   1344, 1600, 0,  864, 865, 868, 900, 0,
648 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
649 };
650 
651 struct minimode {
652 	short w;
653 	short h;
654 	short r;
655 	short rb;
656 };
657 
658 static const struct minimode est3_modes[] = {
659 	/* byte 6 */
660 	{ 640, 350, 85, 0 },
661 	{ 640, 400, 85, 0 },
662 	{ 720, 400, 85, 0 },
663 	{ 640, 480, 85, 0 },
664 	{ 848, 480, 60, 0 },
665 	{ 800, 600, 85, 0 },
666 	{ 1024, 768, 85, 0 },
667 	{ 1152, 864, 75, 0 },
668 	/* byte 7 */
669 	{ 1280, 768, 60, 1 },
670 	{ 1280, 768, 60, 0 },
671 	{ 1280, 768, 75, 0 },
672 	{ 1280, 768, 85, 0 },
673 	{ 1280, 960, 60, 0 },
674 	{ 1280, 960, 85, 0 },
675 	{ 1280, 1024, 60, 0 },
676 	{ 1280, 1024, 85, 0 },
677 	/* byte 8 */
678 	{ 1360, 768, 60, 0 },
679 	{ 1440, 900, 60, 1 },
680 	{ 1440, 900, 60, 0 },
681 	{ 1440, 900, 75, 0 },
682 	{ 1440, 900, 85, 0 },
683 	{ 1400, 1050, 60, 1 },
684 	{ 1400, 1050, 60, 0 },
685 	{ 1400, 1050, 75, 0 },
686 	/* byte 9 */
687 	{ 1400, 1050, 85, 0 },
688 	{ 1680, 1050, 60, 1 },
689 	{ 1680, 1050, 60, 0 },
690 	{ 1680, 1050, 75, 0 },
691 	{ 1680, 1050, 85, 0 },
692 	{ 1600, 1200, 60, 0 },
693 	{ 1600, 1200, 65, 0 },
694 	{ 1600, 1200, 70, 0 },
695 	/* byte 10 */
696 	{ 1600, 1200, 75, 0 },
697 	{ 1600, 1200, 85, 0 },
698 	{ 1792, 1344, 60, 0 },
699 	{ 1792, 1344, 75, 0 },
700 	{ 1856, 1392, 60, 0 },
701 	{ 1856, 1392, 75, 0 },
702 	{ 1920, 1200, 60, 1 },
703 	{ 1920, 1200, 60, 0 },
704 	/* byte 11 */
705 	{ 1920, 1200, 75, 0 },
706 	{ 1920, 1200, 85, 0 },
707 	{ 1920, 1440, 60, 0 },
708 	{ 1920, 1440, 75, 0 },
709 };
710 
711 static const struct minimode extra_modes[] = {
712 	{ 1024, 576,  60, 0 },
713 	{ 1366, 768,  60, 0 },
714 	{ 1600, 900,  60, 0 },
715 	{ 1680, 945,  60, 0 },
716 	{ 1920, 1080, 60, 0 },
717 	{ 2048, 1152, 60, 0 },
718 	{ 2048, 1536, 60, 0 },
719 };
720 
721 /*
722  * From CEA/CTA-861 spec.
723  *
724  * Do not access directly, instead always use cea_mode_for_vic().
725  */
726 static const struct drm_display_mode edid_cea_modes_1[] = {
727 	/* 1 - 640x480@60Hz 4:3 */
728 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
729 		   752, 800, 0, 480, 490, 492, 525, 0,
730 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
731 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
732 	/* 2 - 720x480@60Hz 4:3 */
733 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
734 		   798, 858, 0, 480, 489, 495, 525, 0,
735 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
736 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
737 	/* 3 - 720x480@60Hz 16:9 */
738 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
739 		   798, 858, 0, 480, 489, 495, 525, 0,
740 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
741 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
742 	/* 4 - 1280x720@60Hz 16:9 */
743 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
744 		   1430, 1650, 0, 720, 725, 730, 750, 0,
745 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
746 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
747 	/* 5 - 1920x1080i@60Hz 16:9 */
748 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
749 		   2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
750 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
751 		   DRM_MODE_FLAG_INTERLACE),
752 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
753 	/* 6 - 720(1440)x480i@60Hz 4:3 */
754 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
755 		   801, 858, 0, 480, 488, 494, 525, 0,
756 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
757 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
758 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
759 	/* 7 - 720(1440)x480i@60Hz 16:9 */
760 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
761 		   801, 858, 0, 480, 488, 494, 525, 0,
762 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
763 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
764 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
765 	/* 8 - 720(1440)x240@60Hz 4:3 */
766 	{ DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
767 		   801, 858, 0, 240, 244, 247, 262, 0,
768 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
769 		   DRM_MODE_FLAG_DBLCLK),
770 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
771 	/* 9 - 720(1440)x240@60Hz 16:9 */
772 	{ DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
773 		   801, 858, 0, 240, 244, 247, 262, 0,
774 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
775 		   DRM_MODE_FLAG_DBLCLK),
776 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
777 	/* 10 - 2880x480i@60Hz 4:3 */
778 	{ DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
779 		   3204, 3432, 0, 480, 488, 494, 525, 0,
780 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
781 		   DRM_MODE_FLAG_INTERLACE),
782 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
783 	/* 11 - 2880x480i@60Hz 16:9 */
784 	{ DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
785 		   3204, 3432, 0, 480, 488, 494, 525, 0,
786 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
787 		   DRM_MODE_FLAG_INTERLACE),
788 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
789 	/* 12 - 2880x240@60Hz 4:3 */
790 	{ DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
791 		   3204, 3432, 0, 240, 244, 247, 262, 0,
792 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
793 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
794 	/* 13 - 2880x240@60Hz 16:9 */
795 	{ DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
796 		   3204, 3432, 0, 240, 244, 247, 262, 0,
797 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
798 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
799 	/* 14 - 1440x480@60Hz 4:3 */
800 	{ DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
801 		   1596, 1716, 0, 480, 489, 495, 525, 0,
802 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
803 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
804 	/* 15 - 1440x480@60Hz 16:9 */
805 	{ DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
806 		   1596, 1716, 0, 480, 489, 495, 525, 0,
807 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
808 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
809 	/* 16 - 1920x1080@60Hz 16:9 */
810 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
811 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
812 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
813 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
814 	/* 17 - 720x576@50Hz 4:3 */
815 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
816 		   796, 864, 0, 576, 581, 586, 625, 0,
817 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
818 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
819 	/* 18 - 720x576@50Hz 16:9 */
820 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
821 		   796, 864, 0, 576, 581, 586, 625, 0,
822 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
823 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
824 	/* 19 - 1280x720@50Hz 16:9 */
825 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
826 		   1760, 1980, 0, 720, 725, 730, 750, 0,
827 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
828 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
829 	/* 20 - 1920x1080i@50Hz 16:9 */
830 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
831 		   2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
832 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
833 		   DRM_MODE_FLAG_INTERLACE),
834 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
835 	/* 21 - 720(1440)x576i@50Hz 4:3 */
836 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
837 		   795, 864, 0, 576, 580, 586, 625, 0,
838 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
839 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
840 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
841 	/* 22 - 720(1440)x576i@50Hz 16:9 */
842 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
843 		   795, 864, 0, 576, 580, 586, 625, 0,
844 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
845 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
846 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
847 	/* 23 - 720(1440)x288@50Hz 4:3 */
848 	{ DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
849 		   795, 864, 0, 288, 290, 293, 312, 0,
850 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
851 		   DRM_MODE_FLAG_DBLCLK),
852 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
853 	/* 24 - 720(1440)x288@50Hz 16:9 */
854 	{ DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
855 		   795, 864, 0, 288, 290, 293, 312, 0,
856 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
857 		   DRM_MODE_FLAG_DBLCLK),
858 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
859 	/* 25 - 2880x576i@50Hz 4:3 */
860 	{ DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
861 		   3180, 3456, 0, 576, 580, 586, 625, 0,
862 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
863 		   DRM_MODE_FLAG_INTERLACE),
864 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
865 	/* 26 - 2880x576i@50Hz 16:9 */
866 	{ DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
867 		   3180, 3456, 0, 576, 580, 586, 625, 0,
868 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
869 		   DRM_MODE_FLAG_INTERLACE),
870 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
871 	/* 27 - 2880x288@50Hz 4:3 */
872 	{ DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
873 		   3180, 3456, 0, 288, 290, 293, 312, 0,
874 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
875 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
876 	/* 28 - 2880x288@50Hz 16:9 */
877 	{ DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
878 		   3180, 3456, 0, 288, 290, 293, 312, 0,
879 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
880 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
881 	/* 29 - 1440x576@50Hz 4:3 */
882 	{ DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
883 		   1592, 1728, 0, 576, 581, 586, 625, 0,
884 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
885 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
886 	/* 30 - 1440x576@50Hz 16:9 */
887 	{ DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
888 		   1592, 1728, 0, 576, 581, 586, 625, 0,
889 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
890 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
891 	/* 31 - 1920x1080@50Hz 16:9 */
892 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
893 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
894 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
895 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
896 	/* 32 - 1920x1080@24Hz 16:9 */
897 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
898 		   2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
899 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
900 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
901 	/* 33 - 1920x1080@25Hz 16:9 */
902 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
903 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
904 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
905 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
906 	/* 34 - 1920x1080@30Hz 16:9 */
907 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
908 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
909 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
910 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
911 	/* 35 - 2880x480@60Hz 4:3 */
912 	{ DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
913 		   3192, 3432, 0, 480, 489, 495, 525, 0,
914 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
915 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
916 	/* 36 - 2880x480@60Hz 16:9 */
917 	{ DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
918 		   3192, 3432, 0, 480, 489, 495, 525, 0,
919 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
920 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
921 	/* 37 - 2880x576@50Hz 4:3 */
922 	{ DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
923 		   3184, 3456, 0, 576, 581, 586, 625, 0,
924 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
925 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
926 	/* 38 - 2880x576@50Hz 16:9 */
927 	{ DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
928 		   3184, 3456, 0, 576, 581, 586, 625, 0,
929 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
930 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
931 	/* 39 - 1920x1080i@50Hz 16:9 */
932 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 72000, 1920, 1952,
933 		   2120, 2304, 0, 1080, 1126, 1136, 1250, 0,
934 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC |
935 		   DRM_MODE_FLAG_INTERLACE),
936 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
937 	/* 40 - 1920x1080i@100Hz 16:9 */
938 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
939 		   2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
940 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
941 		   DRM_MODE_FLAG_INTERLACE),
942 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
943 	/* 41 - 1280x720@100Hz 16:9 */
944 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
945 		   1760, 1980, 0, 720, 725, 730, 750, 0,
946 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
947 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
948 	/* 42 - 720x576@100Hz 4:3 */
949 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
950 		   796, 864, 0, 576, 581, 586, 625, 0,
951 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
952 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
953 	/* 43 - 720x576@100Hz 16:9 */
954 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
955 		   796, 864, 0, 576, 581, 586, 625, 0,
956 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
957 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
958 	/* 44 - 720(1440)x576i@100Hz 4:3 */
959 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
960 		   795, 864, 0, 576, 580, 586, 625, 0,
961 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
962 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
963 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
964 	/* 45 - 720(1440)x576i@100Hz 16:9 */
965 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
966 		   795, 864, 0, 576, 580, 586, 625, 0,
967 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
968 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
969 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
970 	/* 46 - 1920x1080i@120Hz 16:9 */
971 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
972 		   2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
973 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
974 		   DRM_MODE_FLAG_INTERLACE),
975 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
976 	/* 47 - 1280x720@120Hz 16:9 */
977 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
978 		   1430, 1650, 0, 720, 725, 730, 750, 0,
979 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
980 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
981 	/* 48 - 720x480@120Hz 4:3 */
982 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
983 		   798, 858, 0, 480, 489, 495, 525, 0,
984 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
985 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
986 	/* 49 - 720x480@120Hz 16:9 */
987 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
988 		   798, 858, 0, 480, 489, 495, 525, 0,
989 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
990 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
991 	/* 50 - 720(1440)x480i@120Hz 4:3 */
992 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
993 		   801, 858, 0, 480, 488, 494, 525, 0,
994 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
995 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
996 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
997 	/* 51 - 720(1440)x480i@120Hz 16:9 */
998 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
999 		   801, 858, 0, 480, 488, 494, 525, 0,
1000 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
1001 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
1002 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1003 	/* 52 - 720x576@200Hz 4:3 */
1004 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1005 		   796, 864, 0, 576, 581, 586, 625, 0,
1006 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
1007 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
1008 	/* 53 - 720x576@200Hz 16:9 */
1009 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1010 		   796, 864, 0, 576, 581, 586, 625, 0,
1011 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
1012 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1013 	/* 54 - 720(1440)x576i@200Hz 4:3 */
1014 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1015 		   795, 864, 0, 576, 580, 586, 625, 0,
1016 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
1017 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
1018 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
1019 	/* 55 - 720(1440)x576i@200Hz 16:9 */
1020 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1021 		   795, 864, 0, 576, 580, 586, 625, 0,
1022 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
1023 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
1024 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1025 	/* 56 - 720x480@240Hz 4:3 */
1026 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1027 		   798, 858, 0, 480, 489, 495, 525, 0,
1028 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
1029 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
1030 	/* 57 - 720x480@240Hz 16:9 */
1031 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1032 		   798, 858, 0, 480, 489, 495, 525, 0,
1033 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
1034 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1035 	/* 58 - 720(1440)x480i@240Hz 4:3 */
1036 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1037 		   801, 858, 0, 480, 488, 494, 525, 0,
1038 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
1039 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
1040 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
1041 	/* 59 - 720(1440)x480i@240Hz 16:9 */
1042 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1043 		   801, 858, 0, 480, 488, 494, 525, 0,
1044 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
1045 		   DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
1046 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1047 	/* 60 - 1280x720@24Hz 16:9 */
1048 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1049 		   3080, 3300, 0, 720, 725, 730, 750, 0,
1050 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1051 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1052 	/* 61 - 1280x720@25Hz 16:9 */
1053 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1054 		   3740, 3960, 0, 720, 725, 730, 750, 0,
1055 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1056 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1057 	/* 62 - 1280x720@30Hz 16:9 */
1058 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1059 		   3080, 3300, 0, 720, 725, 730, 750, 0,
1060 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1061 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1062 	/* 63 - 1920x1080@120Hz 16:9 */
1063 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1064 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1065 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1066 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1067 	/* 64 - 1920x1080@100Hz 16:9 */
1068 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1069 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1070 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1071 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1072 	/* 65 - 1280x720@24Hz 64:27 */
1073 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1074 		   3080, 3300, 0, 720, 725, 730, 750, 0,
1075 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1076 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1077 	/* 66 - 1280x720@25Hz 64:27 */
1078 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1079 		   3740, 3960, 0, 720, 725, 730, 750, 0,
1080 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1081 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1082 	/* 67 - 1280x720@30Hz 64:27 */
1083 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1084 		   3080, 3300, 0, 720, 725, 730, 750, 0,
1085 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1086 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1087 	/* 68 - 1280x720@50Hz 64:27 */
1088 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
1089 		   1760, 1980, 0, 720, 725, 730, 750, 0,
1090 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1091 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1092 	/* 69 - 1280x720@60Hz 64:27 */
1093 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
1094 		   1430, 1650, 0, 720, 725, 730, 750, 0,
1095 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1096 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1097 	/* 70 - 1280x720@100Hz 64:27 */
1098 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
1099 		   1760, 1980, 0, 720, 725, 730, 750, 0,
1100 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1101 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1102 	/* 71 - 1280x720@120Hz 64:27 */
1103 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
1104 		   1430, 1650, 0, 720, 725, 730, 750, 0,
1105 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1106 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1107 	/* 72 - 1920x1080@24Hz 64:27 */
1108 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
1109 		   2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1110 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1111 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1112 	/* 73 - 1920x1080@25Hz 64:27 */
1113 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
1114 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1115 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1116 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1117 	/* 74 - 1920x1080@30Hz 64:27 */
1118 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
1119 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1120 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1121 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1122 	/* 75 - 1920x1080@50Hz 64:27 */
1123 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
1124 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1125 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1126 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1127 	/* 76 - 1920x1080@60Hz 64:27 */
1128 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
1129 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1130 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1131 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1132 	/* 77 - 1920x1080@100Hz 64:27 */
1133 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1134 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1135 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1136 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1137 	/* 78 - 1920x1080@120Hz 64:27 */
1138 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1139 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1140 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1141 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1142 	/* 79 - 1680x720@24Hz 64:27 */
1143 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 3040,
1144 		   3080, 3300, 0, 720, 725, 730, 750, 0,
1145 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1146 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1147 	/* 80 - 1680x720@25Hz 64:27 */
1148 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2908,
1149 		   2948, 3168, 0, 720, 725, 730, 750, 0,
1150 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1151 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1152 	/* 81 - 1680x720@30Hz 64:27 */
1153 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2380,
1154 		   2420, 2640, 0, 720, 725, 730, 750, 0,
1155 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1156 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1157 	/* 82 - 1680x720@50Hz 64:27 */
1158 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 82500, 1680, 1940,
1159 		   1980, 2200, 0, 720, 725, 730, 750, 0,
1160 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1161 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1162 	/* 83 - 1680x720@60Hz 64:27 */
1163 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 1940,
1164 		   1980, 2200, 0, 720, 725, 730, 750, 0,
1165 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1166 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1167 	/* 84 - 1680x720@100Hz 64:27 */
1168 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 165000, 1680, 1740,
1169 		   1780, 2000, 0, 720, 725, 730, 825, 0,
1170 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1171 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1172 	/* 85 - 1680x720@120Hz 64:27 */
1173 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 198000, 1680, 1740,
1174 		   1780, 2000, 0, 720, 725, 730, 825, 0,
1175 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1176 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1177 	/* 86 - 2560x1080@24Hz 64:27 */
1178 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 99000, 2560, 3558,
1179 		   3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1180 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1181 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1182 	/* 87 - 2560x1080@25Hz 64:27 */
1183 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 90000, 2560, 3008,
1184 		   3052, 3200, 0, 1080, 1084, 1089, 1125, 0,
1185 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1186 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1187 	/* 88 - 2560x1080@30Hz 64:27 */
1188 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 118800, 2560, 3328,
1189 		   3372, 3520, 0, 1080, 1084, 1089, 1125, 0,
1190 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1191 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1192 	/* 89 - 2560x1080@50Hz 64:27 */
1193 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 185625, 2560, 3108,
1194 		   3152, 3300, 0, 1080, 1084, 1089, 1125, 0,
1195 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1196 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1197 	/* 90 - 2560x1080@60Hz 64:27 */
1198 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 2808,
1199 		   2852, 3000, 0, 1080, 1084, 1089, 1100, 0,
1200 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1201 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1202 	/* 91 - 2560x1080@100Hz 64:27 */
1203 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 371250, 2560, 2778,
1204 		   2822, 2970, 0, 1080, 1084, 1089, 1250, 0,
1205 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1206 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1207 	/* 92 - 2560x1080@120Hz 64:27 */
1208 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 495000, 2560, 3108,
1209 		   3152, 3300, 0, 1080, 1084, 1089, 1250, 0,
1210 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1211 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1212 	/* 93 - 3840x2160@24Hz 16:9 */
1213 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1214 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1215 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1216 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1217 	/* 94 - 3840x2160@25Hz 16:9 */
1218 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1219 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1220 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1221 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1222 	/* 95 - 3840x2160@30Hz 16:9 */
1223 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1224 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1225 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1226 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1227 	/* 96 - 3840x2160@50Hz 16:9 */
1228 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1229 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1230 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1231 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1232 	/* 97 - 3840x2160@60Hz 16:9 */
1233 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1234 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1235 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1236 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1237 	/* 98 - 4096x2160@24Hz 256:135 */
1238 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5116,
1239 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1240 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1241 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1242 	/* 99 - 4096x2160@25Hz 256:135 */
1243 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5064,
1244 		   5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1245 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1246 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1247 	/* 100 - 4096x2160@30Hz 256:135 */
1248 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 4184,
1249 		   4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1250 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1251 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1252 	/* 101 - 4096x2160@50Hz 256:135 */
1253 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5064,
1254 		   5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1255 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1256 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1257 	/* 102 - 4096x2160@60Hz 256:135 */
1258 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 4184,
1259 		   4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1260 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1261 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1262 	/* 103 - 3840x2160@24Hz 64:27 */
1263 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1264 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1265 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1266 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1267 	/* 104 - 3840x2160@25Hz 64:27 */
1268 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1269 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1270 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1271 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1272 	/* 105 - 3840x2160@30Hz 64:27 */
1273 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1274 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1275 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1276 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1277 	/* 106 - 3840x2160@50Hz 64:27 */
1278 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1279 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1280 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1281 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1282 	/* 107 - 3840x2160@60Hz 64:27 */
1283 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1284 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1285 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1286 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1287 	/* 108 - 1280x720@48Hz 16:9 */
1288 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1289 		   2280, 2500, 0, 720, 725, 730, 750, 0,
1290 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1291 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1292 	/* 109 - 1280x720@48Hz 64:27 */
1293 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1294 		   2280, 2500, 0, 720, 725, 730, 750, 0,
1295 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1296 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1297 	/* 110 - 1680x720@48Hz 64:27 */
1298 	{ DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 2490,
1299 		   2530, 2750, 0, 720, 725, 730, 750, 0,
1300 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1301 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1302 	/* 111 - 1920x1080@48Hz 16:9 */
1303 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1304 		   2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1305 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1306 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1307 	/* 112 - 1920x1080@48Hz 64:27 */
1308 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1309 		   2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1310 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1311 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1312 	/* 113 - 2560x1080@48Hz 64:27 */
1313 	{ DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 3558,
1314 		   3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1315 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1316 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1317 	/* 114 - 3840x2160@48Hz 16:9 */
1318 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1319 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1320 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1321 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1322 	/* 115 - 4096x2160@48Hz 256:135 */
1323 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5116,
1324 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1325 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1326 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1327 	/* 116 - 3840x2160@48Hz 64:27 */
1328 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1329 		   5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1330 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1331 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1332 	/* 117 - 3840x2160@100Hz 16:9 */
1333 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1334 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1335 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1336 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1337 	/* 118 - 3840x2160@120Hz 16:9 */
1338 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1339 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1340 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1341 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1342 	/* 119 - 3840x2160@100Hz 64:27 */
1343 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1344 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1345 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1346 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1347 	/* 120 - 3840x2160@120Hz 64:27 */
1348 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1349 		   4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1350 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1351 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1352 	/* 121 - 5120x2160@24Hz 64:27 */
1353 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 7116,
1354 		   7204, 7500, 0, 2160, 2168, 2178, 2200, 0,
1355 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1356 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1357 	/* 122 - 5120x2160@25Hz 64:27 */
1358 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 6816,
1359 		   6904, 7200, 0, 2160, 2168, 2178, 2200, 0,
1360 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1361 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1362 	/* 123 - 5120x2160@30Hz 64:27 */
1363 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 5784,
1364 		   5872, 6000, 0, 2160, 2168, 2178, 2200, 0,
1365 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1366 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1367 	/* 124 - 5120x2160@48Hz 64:27 */
1368 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5866,
1369 		   5954, 6250, 0, 2160, 2168, 2178, 2475, 0,
1370 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1371 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1372 	/* 125 - 5120x2160@50Hz 64:27 */
1373 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 6216,
1374 		   6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1375 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1376 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1377 	/* 126 - 5120x2160@60Hz 64:27 */
1378 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5284,
1379 		   5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1380 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1381 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1382 	/* 127 - 5120x2160@100Hz 64:27 */
1383 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 6216,
1384 		   6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1385 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1386 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1387 };
1388 
1389 /*
1390  * From CEA/CTA-861 spec.
1391  *
1392  * Do not access directly, instead always use cea_mode_for_vic().
1393  */
1394 static const struct drm_display_mode edid_cea_modes_193[] = {
1395 	/* 193 - 5120x2160@120Hz 64:27 */
1396 	{ DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 5284,
1397 		   5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1398 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1399 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1400 	/* 194 - 7680x4320@24Hz 16:9 */
1401 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1402 		   10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1403 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1404 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1405 	/* 195 - 7680x4320@25Hz 16:9 */
1406 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1407 		   10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1408 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1409 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1410 	/* 196 - 7680x4320@30Hz 16:9 */
1411 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1412 		   8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1413 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1414 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1415 	/* 197 - 7680x4320@48Hz 16:9 */
1416 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1417 		   10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1418 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1419 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1420 	/* 198 - 7680x4320@50Hz 16:9 */
1421 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1422 		   10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1423 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1424 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1425 	/* 199 - 7680x4320@60Hz 16:9 */
1426 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1427 		   8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1428 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1429 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1430 	/* 200 - 7680x4320@100Hz 16:9 */
1431 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1432 		   9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1433 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1434 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1435 	/* 201 - 7680x4320@120Hz 16:9 */
1436 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1437 		   8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1438 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1439 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1440 	/* 202 - 7680x4320@24Hz 64:27 */
1441 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1442 		   10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1443 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1444 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1445 	/* 203 - 7680x4320@25Hz 64:27 */
1446 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1447 		   10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1448 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1449 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1450 	/* 204 - 7680x4320@30Hz 64:27 */
1451 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1452 		   8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1453 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1454 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1455 	/* 205 - 7680x4320@48Hz 64:27 */
1456 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1457 		   10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1458 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1459 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1460 	/* 206 - 7680x4320@50Hz 64:27 */
1461 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1462 		   10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1463 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1464 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1465 	/* 207 - 7680x4320@60Hz 64:27 */
1466 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1467 		   8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1468 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1469 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1470 	/* 208 - 7680x4320@100Hz 64:27 */
1471 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1472 		   9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1473 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1474 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1475 	/* 209 - 7680x4320@120Hz 64:27 */
1476 	{ DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1477 		   8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1478 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1479 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1480 	/* 210 - 10240x4320@24Hz 64:27 */
1481 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 11732,
1482 		   11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1483 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1484 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1485 	/* 211 - 10240x4320@25Hz 64:27 */
1486 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 12732,
1487 		   12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1488 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1489 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1490 	/* 212 - 10240x4320@30Hz 64:27 */
1491 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 10528,
1492 		   10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1493 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1494 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1495 	/* 213 - 10240x4320@48Hz 64:27 */
1496 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 11732,
1497 		   11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1498 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1499 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1500 	/* 214 - 10240x4320@50Hz 64:27 */
1501 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 12732,
1502 		   12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1503 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1504 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1505 	/* 215 - 10240x4320@60Hz 64:27 */
1506 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 10528,
1507 		   10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1508 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1509 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1510 	/* 216 - 10240x4320@100Hz 64:27 */
1511 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 12432,
1512 		   12608, 13200, 0, 4320, 4336, 4356, 4500, 0,
1513 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1514 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1515 	/* 217 - 10240x4320@120Hz 64:27 */
1516 	{ DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 10528,
1517 		   10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1518 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1519 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
1520 	/* 218 - 4096x2160@100Hz 256:135 */
1521 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4896,
1522 		   4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1523 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1524 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1525 	/* 219 - 4096x2160@120Hz 256:135 */
1526 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4184,
1527 		   4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1528 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1529 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1530 };
1531 
1532 /*
1533  * HDMI 1.4 4k modes. Index using the VIC.
1534  */
1535 static const struct drm_display_mode edid_4k_modes[] = {
1536 	/* 0 - dummy, VICs start at 1 */
1537 	{ },
1538 	/* 1 - 3840x2160@30Hz */
1539 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1540 		   3840, 4016, 4104, 4400, 0,
1541 		   2160, 2168, 2178, 2250, 0,
1542 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1543 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1544 	/* 2 - 3840x2160@25Hz */
1545 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1546 		   3840, 4896, 4984, 5280, 0,
1547 		   2160, 2168, 2178, 2250, 0,
1548 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1549 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1550 	/* 3 - 3840x2160@24Hz */
1551 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1552 		   3840, 5116, 5204, 5500, 0,
1553 		   2160, 2168, 2178, 2250, 0,
1554 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1555 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1556 	/* 4 - 4096x2160@24Hz (SMPTE) */
1557 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000,
1558 		   4096, 5116, 5204, 5500, 0,
1559 		   2160, 2168, 2178, 2250, 0,
1560 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1561 	  .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
1562 };
1563 
1564 /*** DDC fetch and block validation ***/
1565 
1566 /*
1567  * The opaque EDID type, internal to drm_edid.c.
1568  */
1569 struct drm_edid {
1570 	/* Size allocated for edid */
1571 	size_t size;
1572 	const struct edid *edid;
1573 };
1574 
1575 static int edid_hfeeodb_extension_block_count(const struct edid *edid);
1576 
1577 static int edid_hfeeodb_block_count(const struct edid *edid)
1578 {
1579 	int eeodb = edid_hfeeodb_extension_block_count(edid);
1580 
1581 	return eeodb ? eeodb + 1 : 0;
1582 }
1583 
1584 static int edid_extension_block_count(const struct edid *edid)
1585 {
1586 	return edid->extensions;
1587 }
1588 
1589 static int edid_block_count(const struct edid *edid)
1590 {
1591 	return edid_extension_block_count(edid) + 1;
1592 }
1593 
1594 static int edid_size_by_blocks(int num_blocks)
1595 {
1596 	return num_blocks * EDID_LENGTH;
1597 }
1598 
1599 static int edid_size(const struct edid *edid)
1600 {
1601 	return edid_size_by_blocks(edid_block_count(edid));
1602 }
1603 
1604 static const void *edid_block_data(const struct edid *edid, int index)
1605 {
1606 	BUILD_BUG_ON(sizeof(*edid) != EDID_LENGTH);
1607 
1608 	return edid + index;
1609 }
1610 
1611 static const void *edid_extension_block_data(const struct edid *edid, int index)
1612 {
1613 	return edid_block_data(edid, index + 1);
1614 }
1615 
1616 static int drm_edid_block_count(const struct drm_edid *drm_edid)
1617 {
1618 	int num_blocks;
1619 
1620 	/* Starting point */
1621 	num_blocks = edid_block_count(drm_edid->edid);
1622 
1623 	/* HF-EEODB override */
1624 	if (drm_edid->size >= edid_size_by_blocks(2)) {
1625 		int eeodb;
1626 
1627 		/*
1628 		 * Note: HF-EEODB may specify a smaller extension count than the
1629 		 * regular one. Unlike in buffer allocation, here we can use it.
1630 		 */
1631 		eeodb = edid_hfeeodb_block_count(drm_edid->edid);
1632 		if (eeodb)
1633 			num_blocks = eeodb;
1634 	}
1635 
1636 	/* Limit by allocated size */
1637 	num_blocks = min(num_blocks, (int)drm_edid->size / EDID_LENGTH);
1638 
1639 	return num_blocks;
1640 }
1641 
1642 static int drm_edid_extension_block_count(const struct drm_edid *drm_edid)
1643 {
1644 	return drm_edid_block_count(drm_edid) - 1;
1645 }
1646 
1647 static const void *drm_edid_block_data(const struct drm_edid *drm_edid, int index)
1648 {
1649 	return edid_block_data(drm_edid->edid, index);
1650 }
1651 
1652 static const void *drm_edid_extension_block_data(const struct drm_edid *drm_edid,
1653 						 int index)
1654 {
1655 	return edid_extension_block_data(drm_edid->edid, index);
1656 }
1657 
1658 /*
1659  * Initializer helper for legacy interfaces, where we have no choice but to
1660  * trust edid size. Not for general purpose use.
1661  */
1662 static const struct drm_edid *drm_edid_legacy_init(struct drm_edid *drm_edid,
1663 						   const struct edid *edid)
1664 {
1665 	if (!edid)
1666 		return NULL;
1667 
1668 	memset(drm_edid, 0, sizeof(*drm_edid));
1669 
1670 	drm_edid->edid = edid;
1671 	drm_edid->size = edid_size(edid);
1672 
1673 	return drm_edid;
1674 }
1675 
1676 /*
1677  * EDID base and extension block iterator.
1678  *
1679  * struct drm_edid_iter iter;
1680  * const u8 *block;
1681  *
1682  * drm_edid_iter_begin(drm_edid, &iter);
1683  * drm_edid_iter_for_each(block, &iter) {
1684  *         // do stuff with block
1685  * }
1686  * drm_edid_iter_end(&iter);
1687  */
1688 struct drm_edid_iter {
1689 	const struct drm_edid *drm_edid;
1690 
1691 	/* Current block index. */
1692 	int index;
1693 };
1694 
1695 static void drm_edid_iter_begin(const struct drm_edid *drm_edid,
1696 				struct drm_edid_iter *iter)
1697 {
1698 	memset(iter, 0, sizeof(*iter));
1699 
1700 	iter->drm_edid = drm_edid;
1701 }
1702 
1703 static const void *__drm_edid_iter_next(struct drm_edid_iter *iter)
1704 {
1705 	const void *block = NULL;
1706 
1707 	if (!iter->drm_edid)
1708 		return NULL;
1709 
1710 	if (iter->index < drm_edid_block_count(iter->drm_edid))
1711 		block = drm_edid_block_data(iter->drm_edid, iter->index++);
1712 
1713 	return block;
1714 }
1715 
1716 #define drm_edid_iter_for_each(__block, __iter)			\
1717 	while (((__block) = __drm_edid_iter_next(__iter)))
1718 
1719 static void drm_edid_iter_end(struct drm_edid_iter *iter)
1720 {
1721 	memset(iter, 0, sizeof(*iter));
1722 }
1723 
1724 static const u8 edid_header[] = {
1725 	0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
1726 };
1727 
1728 static void edid_header_fix(void *edid)
1729 {
1730 	memcpy(edid, edid_header, sizeof(edid_header));
1731 }
1732 
1733 /**
1734  * drm_edid_header_is_valid - sanity check the header of the base EDID block
1735  * @_edid: pointer to raw base EDID block
1736  *
1737  * Sanity check the header of the base EDID block.
1738  *
1739  * Return: 8 if the header is perfect, down to 0 if it's totally wrong.
1740  */
1741 int drm_edid_header_is_valid(const void *_edid)
1742 {
1743 	const struct edid *edid = _edid;
1744 	int i, score = 0;
1745 
1746 	for (i = 0; i < sizeof(edid_header); i++) {
1747 		if (edid->header[i] == edid_header[i])
1748 			score++;
1749 	}
1750 
1751 	return score;
1752 }
1753 EXPORT_SYMBOL(drm_edid_header_is_valid);
1754 
1755 static int edid_fixup __read_mostly = 6;
1756 module_param_named(edid_fixup, edid_fixup, int, 0400);
1757 MODULE_PARM_DESC(edid_fixup,
1758 		 "Minimum number of valid EDID header bytes (0-8, default 6)");
1759 
1760 static int edid_block_compute_checksum(const void *_block)
1761 {
1762 	const u8 *block = _block;
1763 	int i;
1764 	u8 csum = 0, crc = 0;
1765 
1766 	for (i = 0; i < EDID_LENGTH - 1; i++)
1767 		csum += block[i];
1768 
1769 	crc = 0x100 - csum;
1770 
1771 	return crc;
1772 }
1773 
1774 static int edid_block_get_checksum(const void *_block)
1775 {
1776 	const struct edid *block = _block;
1777 
1778 	return block->checksum;
1779 }
1780 
1781 static int edid_block_tag(const void *_block)
1782 {
1783 	const u8 *block = _block;
1784 
1785 	return block[0];
1786 }
1787 
1788 static bool edid_block_is_zero(const void *edid)
1789 {
1790 	return !memchr_inv(edid, 0, EDID_LENGTH);
1791 }
1792 
1793 /**
1794  * drm_edid_are_equal - compare two edid blobs.
1795  * @edid1: pointer to first blob
1796  * @edid2: pointer to second blob
1797  * This helper can be used during probing to determine if
1798  * edid had changed.
1799  */
1800 bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2)
1801 {
1802 	int edid1_len, edid2_len;
1803 	bool edid1_present = edid1 != NULL;
1804 	bool edid2_present = edid2 != NULL;
1805 
1806 	if (edid1_present != edid2_present)
1807 		return false;
1808 
1809 	if (edid1) {
1810 		edid1_len = edid_size(edid1);
1811 		edid2_len = edid_size(edid2);
1812 
1813 		if (edid1_len != edid2_len)
1814 			return false;
1815 
1816 		if (memcmp(edid1, edid2, edid1_len))
1817 			return false;
1818 	}
1819 
1820 	return true;
1821 }
1822 EXPORT_SYMBOL(drm_edid_are_equal);
1823 
1824 enum edid_block_status {
1825 	EDID_BLOCK_OK = 0,
1826 	EDID_BLOCK_READ_FAIL,
1827 	EDID_BLOCK_NULL,
1828 	EDID_BLOCK_ZERO,
1829 	EDID_BLOCK_HEADER_CORRUPT,
1830 	EDID_BLOCK_HEADER_REPAIR,
1831 	EDID_BLOCK_HEADER_FIXED,
1832 	EDID_BLOCK_CHECKSUM,
1833 	EDID_BLOCK_VERSION,
1834 };
1835 
1836 static enum edid_block_status edid_block_check(const void *_block,
1837 					       bool is_base_block)
1838 {
1839 	const struct edid *block = _block;
1840 
1841 	if (!block)
1842 		return EDID_BLOCK_NULL;
1843 
1844 	if (is_base_block) {
1845 		int score = drm_edid_header_is_valid(block);
1846 
1847 		if (score < clamp(edid_fixup, 0, 8)) {
1848 			if (edid_block_is_zero(block))
1849 				return EDID_BLOCK_ZERO;
1850 			else
1851 				return EDID_BLOCK_HEADER_CORRUPT;
1852 		}
1853 
1854 		if (score < 8)
1855 			return EDID_BLOCK_HEADER_REPAIR;
1856 	}
1857 
1858 	if (edid_block_compute_checksum(block) != edid_block_get_checksum(block)) {
1859 		if (edid_block_is_zero(block))
1860 			return EDID_BLOCK_ZERO;
1861 		else
1862 			return EDID_BLOCK_CHECKSUM;
1863 	}
1864 
1865 	if (is_base_block) {
1866 		if (block->version != 1)
1867 			return EDID_BLOCK_VERSION;
1868 	}
1869 
1870 	return EDID_BLOCK_OK;
1871 }
1872 
1873 static bool edid_block_status_valid(enum edid_block_status status, int tag)
1874 {
1875 	return status == EDID_BLOCK_OK ||
1876 		status == EDID_BLOCK_HEADER_FIXED ||
1877 		(status == EDID_BLOCK_CHECKSUM && tag == CEA_EXT);
1878 }
1879 
1880 static bool edid_block_valid(const void *block, bool base)
1881 {
1882 	return edid_block_status_valid(edid_block_check(block, base),
1883 				       edid_block_tag(block));
1884 }
1885 
1886 static void edid_block_status_print(enum edid_block_status status,
1887 				    const struct edid *block,
1888 				    int block_num)
1889 {
1890 	switch (status) {
1891 	case EDID_BLOCK_OK:
1892 		break;
1893 	case EDID_BLOCK_READ_FAIL:
1894 		pr_debug("EDID block %d read failed\n", block_num);
1895 		break;
1896 	case EDID_BLOCK_NULL:
1897 		pr_debug("EDID block %d pointer is NULL\n", block_num);
1898 		break;
1899 	case EDID_BLOCK_ZERO:
1900 		pr_notice("EDID block %d is all zeroes\n", block_num);
1901 		break;
1902 	case EDID_BLOCK_HEADER_CORRUPT:
1903 		pr_notice("EDID has corrupt header\n");
1904 		break;
1905 	case EDID_BLOCK_HEADER_REPAIR:
1906 		pr_debug("EDID corrupt header needs repair\n");
1907 		break;
1908 	case EDID_BLOCK_HEADER_FIXED:
1909 		pr_debug("EDID corrupt header fixed\n");
1910 		break;
1911 	case EDID_BLOCK_CHECKSUM:
1912 		if (edid_block_status_valid(status, edid_block_tag(block))) {
1913 			pr_debug("EDID block %d (tag 0x%02x) checksum is invalid, remainder is %d, ignoring\n",
1914 				 block_num, edid_block_tag(block),
1915 				 edid_block_compute_checksum(block));
1916 		} else {
1917 			pr_notice("EDID block %d (tag 0x%02x) checksum is invalid, remainder is %d\n",
1918 				  block_num, edid_block_tag(block),
1919 				  edid_block_compute_checksum(block));
1920 		}
1921 		break;
1922 	case EDID_BLOCK_VERSION:
1923 		pr_notice("EDID has major version %d, instead of 1\n",
1924 			  block->version);
1925 		break;
1926 	default:
1927 		WARN(1, "EDID block %d unknown edid block status code %d\n",
1928 		     block_num, status);
1929 		break;
1930 	}
1931 }
1932 
1933 static void edid_block_dump(const char *level, const void *block, int block_num)
1934 {
1935 	enum edid_block_status status;
1936 	char prefix[20];
1937 
1938 	status = edid_block_check(block, block_num == 0);
1939 	if (status == EDID_BLOCK_ZERO)
1940 		sprintf(prefix, "\t[%02x] ZERO ", block_num);
1941 	else if (!edid_block_status_valid(status, edid_block_tag(block)))
1942 		sprintf(prefix, "\t[%02x] BAD  ", block_num);
1943 	else
1944 		sprintf(prefix, "\t[%02x] GOOD ", block_num);
1945 
1946 	print_hex_dump(level, prefix, DUMP_PREFIX_NONE, 16, 1,
1947 		       block, EDID_LENGTH, false);
1948 }
1949 
1950 /**
1951  * drm_edid_block_valid - Sanity check the EDID block (base or extension)
1952  * @_block: pointer to raw EDID block
1953  * @block_num: type of block to validate (0 for base, extension otherwise)
1954  * @print_bad_edid: if true, dump bad EDID blocks to the console
1955  * @edid_corrupt: if true, the header or checksum is invalid
1956  *
1957  * Validate a base or extension EDID block and optionally dump bad blocks to
1958  * the console.
1959  *
1960  * Return: True if the block is valid, false otherwise.
1961  */
1962 bool drm_edid_block_valid(u8 *_block, int block_num, bool print_bad_edid,
1963 			  bool *edid_corrupt)
1964 {
1965 	struct edid *block = (struct edid *)_block;
1966 	enum edid_block_status status;
1967 	bool is_base_block = block_num == 0;
1968 	bool valid;
1969 
1970 	if (WARN_ON(!block))
1971 		return false;
1972 
1973 	status = edid_block_check(block, is_base_block);
1974 	if (status == EDID_BLOCK_HEADER_REPAIR) {
1975 		DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1976 		edid_header_fix(block);
1977 
1978 		/* Retry with fixed header, update status if that worked. */
1979 		status = edid_block_check(block, is_base_block);
1980 		if (status == EDID_BLOCK_OK)
1981 			status = EDID_BLOCK_HEADER_FIXED;
1982 	}
1983 
1984 	if (edid_corrupt) {
1985 		/*
1986 		 * Unknown major version isn't corrupt but we can't use it. Only
1987 		 * the base block can reset edid_corrupt to false.
1988 		 */
1989 		if (is_base_block &&
1990 		    (status == EDID_BLOCK_OK || status == EDID_BLOCK_VERSION))
1991 			*edid_corrupt = false;
1992 		else if (status != EDID_BLOCK_OK)
1993 			*edid_corrupt = true;
1994 	}
1995 
1996 	edid_block_status_print(status, block, block_num);
1997 
1998 	/* Determine whether we can use this block with this status. */
1999 	valid = edid_block_status_valid(status, edid_block_tag(block));
2000 
2001 	if (!valid && print_bad_edid && status != EDID_BLOCK_ZERO) {
2002 		pr_notice("Raw EDID:\n");
2003 		edid_block_dump(KERN_NOTICE, block, block_num);
2004 	}
2005 
2006 	return valid;
2007 }
2008 EXPORT_SYMBOL(drm_edid_block_valid);
2009 
2010 /**
2011  * drm_edid_is_valid - sanity check EDID data
2012  * @edid: EDID data
2013  *
2014  * Sanity-check an entire EDID record (including extensions)
2015  *
2016  * Return: True if the EDID data is valid, false otherwise.
2017  */
2018 bool drm_edid_is_valid(struct edid *edid)
2019 {
2020 	int i;
2021 
2022 	if (!edid)
2023 		return false;
2024 
2025 	for (i = 0; i < edid_block_count(edid); i++) {
2026 		void *block = (void *)edid_block_data(edid, i);
2027 
2028 		if (!drm_edid_block_valid(block, i, true, NULL))
2029 			return false;
2030 	}
2031 
2032 	return true;
2033 }
2034 EXPORT_SYMBOL(drm_edid_is_valid);
2035 
2036 static struct edid *edid_filter_invalid_blocks(struct edid *edid,
2037 					       size_t *alloc_size)
2038 {
2039 	struct edid *new;
2040 	int i, valid_blocks = 0;
2041 
2042 	/*
2043 	 * Note: If the EDID uses HF-EEODB, but has invalid blocks, we'll revert
2044 	 * back to regular extension count here. We don't want to start
2045 	 * modifying the HF-EEODB extension too.
2046 	 */
2047 	for (i = 0; i < edid_block_count(edid); i++) {
2048 		const void *src_block = edid_block_data(edid, i);
2049 
2050 		if (edid_block_valid(src_block, i == 0)) {
2051 			void *dst_block = (void *)edid_block_data(edid, valid_blocks);
2052 
2053 			memmove(dst_block, src_block, EDID_LENGTH);
2054 			valid_blocks++;
2055 		}
2056 	}
2057 
2058 	/* We already trusted the base block to be valid here... */
2059 	if (WARN_ON(!valid_blocks)) {
2060 		kfree(edid);
2061 		return NULL;
2062 	}
2063 
2064 	edid->extensions = valid_blocks - 1;
2065 	edid->checksum = edid_block_compute_checksum(edid);
2066 
2067 	*alloc_size = edid_size_by_blocks(valid_blocks);
2068 
2069 	new = krealloc(edid, *alloc_size, GFP_KERNEL);
2070 	if (!new)
2071 		kfree(edid);
2072 
2073 	return new;
2074 }
2075 
2076 #define DDC_SEGMENT_ADDR 0x30
2077 /**
2078  * drm_do_probe_ddc_edid() - get EDID information via I2C
2079  * @data: I2C device adapter
2080  * @buf: EDID data buffer to be filled
2081  * @block: 128 byte EDID block to start fetching from
2082  * @len: EDID data buffer length to fetch
2083  *
2084  * Try to fetch EDID information by calling I2C driver functions.
2085  *
2086  * Return: 0 on success or -1 on failure.
2087  */
2088 static int
2089 drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
2090 {
2091 	struct i2c_adapter *adapter = data;
2092 	unsigned char start = block * EDID_LENGTH;
2093 	unsigned char segment = block >> 1;
2094 	unsigned char xfers = segment ? 3 : 2;
2095 	int ret, retries = 5;
2096 
2097 	/*
2098 	 * The core I2C driver will automatically retry the transfer if the
2099 	 * adapter reports EAGAIN. However, we find that bit-banging transfers
2100 	 * are susceptible to errors under a heavily loaded machine and
2101 	 * generate spurious NAKs and timeouts. Retrying the transfer
2102 	 * of the individual block a few times seems to overcome this.
2103 	 */
2104 	do {
2105 		struct i2c_msg msgs[] = {
2106 			{
2107 				.addr	= DDC_SEGMENT_ADDR,
2108 				.flags	= 0,
2109 				.len	= 1,
2110 				.buf	= &segment,
2111 			}, {
2112 				.addr	= DDC_ADDR,
2113 				.flags	= 0,
2114 				.len	= 1,
2115 				.buf	= &start,
2116 			}, {
2117 				.addr	= DDC_ADDR,
2118 				.flags	= I2C_M_RD,
2119 				.len	= len,
2120 				.buf	= buf,
2121 			}
2122 		};
2123 
2124 		/*
2125 		 * Avoid sending the segment addr to not upset non-compliant
2126 		 * DDC monitors.
2127 		 */
2128 		ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
2129 
2130 		if (ret == -ENXIO) {
2131 			DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
2132 					adapter->name);
2133 			break;
2134 		}
2135 	} while (ret != xfers && --retries);
2136 
2137 	return ret == xfers ? 0 : -1;
2138 }
2139 
2140 static void connector_bad_edid(struct drm_connector *connector,
2141 			       const struct edid *edid, int num_blocks)
2142 {
2143 	int i;
2144 	u8 last_block;
2145 
2146 	/*
2147 	 * 0x7e in the EDID is the number of extension blocks. The EDID
2148 	 * is 1 (base block) + num_ext_blocks big. That means we can think
2149 	 * of 0x7e in the EDID of the _index_ of the last block in the
2150 	 * combined chunk of memory.
2151 	 */
2152 	last_block = edid->extensions;
2153 
2154 	/* Calculate real checksum for the last edid extension block data */
2155 	if (last_block < num_blocks)
2156 		connector->real_edid_checksum =
2157 			edid_block_compute_checksum(edid + last_block);
2158 
2159 	if (connector->bad_edid_counter++ && !drm_debug_enabled(DRM_UT_KMS))
2160 		return;
2161 
2162 	drm_dbg_kms(connector->dev, "%s: EDID is invalid:\n", connector->name);
2163 	for (i = 0; i < num_blocks; i++)
2164 		edid_block_dump(KERN_DEBUG, edid + i, i);
2165 }
2166 
2167 /* Get override or firmware EDID */
2168 static struct edid *drm_get_override_edid(struct drm_connector *connector,
2169 					  size_t *alloc_size)
2170 {
2171 	struct edid *override = NULL;
2172 
2173 	if (connector->override_edid)
2174 		override = drm_edid_duplicate(connector->edid_blob_ptr->data);
2175 
2176 	if (!override)
2177 		override = drm_load_edid_firmware(connector);
2178 
2179 	/* FIXME: Get alloc size from deeper down the stack */
2180 	if (!IS_ERR_OR_NULL(override) && alloc_size)
2181 		*alloc_size = edid_size(override);
2182 
2183 	return IS_ERR(override) ? NULL : override;
2184 }
2185 
2186 /* For debugfs edid_override implementation */
2187 int drm_edid_override_set(struct drm_connector *connector, const void *edid,
2188 			  size_t size)
2189 {
2190 	int ret;
2191 
2192 	if (size < EDID_LENGTH || edid_size(edid) > size)
2193 		return -EINVAL;
2194 
2195 	connector->override_edid = false;
2196 
2197 	ret = drm_connector_update_edid_property(connector, edid);
2198 	if (!ret)
2199 		connector->override_edid = true;
2200 
2201 	return ret;
2202 }
2203 
2204 /* For debugfs edid_override implementation */
2205 int drm_edid_override_reset(struct drm_connector *connector)
2206 {
2207 	connector->override_edid = false;
2208 
2209 	return drm_connector_update_edid_property(connector, NULL);
2210 }
2211 
2212 /**
2213  * drm_add_override_edid_modes - add modes from override/firmware EDID
2214  * @connector: connector we're probing
2215  *
2216  * Add modes from the override/firmware EDID, if available. Only to be used from
2217  * drm_helper_probe_single_connector_modes() as a fallback for when DDC probe
2218  * failed during drm_get_edid() and caused the override/firmware EDID to be
2219  * skipped.
2220  *
2221  * Return: The number of modes added or 0 if we couldn't find any.
2222  */
2223 int drm_add_override_edid_modes(struct drm_connector *connector)
2224 {
2225 	struct edid *override;
2226 	int num_modes = 0;
2227 
2228 	override = drm_get_override_edid(connector, NULL);
2229 	if (override) {
2230 		drm_connector_update_edid_property(connector, override);
2231 		num_modes = drm_add_edid_modes(connector, override);
2232 		kfree(override);
2233 
2234 		DRM_DEBUG_KMS("[CONNECTOR:%d:%s] adding %d modes via fallback override/firmware EDID\n",
2235 			      connector->base.id, connector->name, num_modes);
2236 	}
2237 
2238 	return num_modes;
2239 }
2240 EXPORT_SYMBOL(drm_add_override_edid_modes);
2241 
2242 typedef int read_block_fn(void *context, u8 *buf, unsigned int block, size_t len);
2243 
2244 static enum edid_block_status edid_block_read(void *block, unsigned int block_num,
2245 					      read_block_fn read_block,
2246 					      void *context)
2247 {
2248 	enum edid_block_status status;
2249 	bool is_base_block = block_num == 0;
2250 	int try;
2251 
2252 	for (try = 0; try < 4; try++) {
2253 		if (read_block(context, block, block_num, EDID_LENGTH))
2254 			return EDID_BLOCK_READ_FAIL;
2255 
2256 		status = edid_block_check(block, is_base_block);
2257 		if (status == EDID_BLOCK_HEADER_REPAIR) {
2258 			edid_header_fix(block);
2259 
2260 			/* Retry with fixed header, update status if that worked. */
2261 			status = edid_block_check(block, is_base_block);
2262 			if (status == EDID_BLOCK_OK)
2263 				status = EDID_BLOCK_HEADER_FIXED;
2264 		}
2265 
2266 		if (edid_block_status_valid(status, edid_block_tag(block)))
2267 			break;
2268 
2269 		/* Fail early for unrepairable base block all zeros. */
2270 		if (try == 0 && is_base_block && status == EDID_BLOCK_ZERO)
2271 			break;
2272 	}
2273 
2274 	return status;
2275 }
2276 
2277 static struct edid *_drm_do_get_edid(struct drm_connector *connector,
2278 				     read_block_fn read_block, void *context,
2279 				     size_t *size)
2280 {
2281 	enum edid_block_status status;
2282 	int i, num_blocks, invalid_blocks = 0;
2283 	struct edid *edid, *new;
2284 	size_t alloc_size = EDID_LENGTH;
2285 
2286 	edid = drm_get_override_edid(connector, &alloc_size);
2287 	if (edid)
2288 		goto ok;
2289 
2290 	edid = kmalloc(alloc_size, GFP_KERNEL);
2291 	if (!edid)
2292 		return NULL;
2293 
2294 	status = edid_block_read(edid, 0, read_block, context);
2295 
2296 	edid_block_status_print(status, edid, 0);
2297 
2298 	if (status == EDID_BLOCK_READ_FAIL)
2299 		goto fail;
2300 
2301 	/* FIXME: Clarify what a corrupt EDID actually means. */
2302 	if (status == EDID_BLOCK_OK || status == EDID_BLOCK_VERSION)
2303 		connector->edid_corrupt = false;
2304 	else
2305 		connector->edid_corrupt = true;
2306 
2307 	if (!edid_block_status_valid(status, edid_block_tag(edid))) {
2308 		if (status == EDID_BLOCK_ZERO)
2309 			connector->null_edid_counter++;
2310 
2311 		connector_bad_edid(connector, edid, 1);
2312 		goto fail;
2313 	}
2314 
2315 	if (!edid_extension_block_count(edid))
2316 		goto ok;
2317 
2318 	alloc_size = edid_size(edid);
2319 	new = krealloc(edid, alloc_size, GFP_KERNEL);
2320 	if (!new)
2321 		goto fail;
2322 	edid = new;
2323 
2324 	num_blocks = edid_block_count(edid);
2325 	for (i = 1; i < num_blocks; i++) {
2326 		void *block = (void *)edid_block_data(edid, i);
2327 
2328 		status = edid_block_read(block, i, read_block, context);
2329 
2330 		edid_block_status_print(status, block, i);
2331 
2332 		if (!edid_block_status_valid(status, edid_block_tag(block))) {
2333 			if (status == EDID_BLOCK_READ_FAIL)
2334 				goto fail;
2335 			invalid_blocks++;
2336 		} else if (i == 1) {
2337 			/*
2338 			 * If the first EDID extension is a CTA extension, and
2339 			 * the first Data Block is HF-EEODB, override the
2340 			 * extension block count.
2341 			 *
2342 			 * Note: HF-EEODB could specify a smaller extension
2343 			 * count too, but we can't risk allocating a smaller
2344 			 * amount.
2345 			 */
2346 			int eeodb = edid_hfeeodb_block_count(edid);
2347 
2348 			if (eeodb > num_blocks) {
2349 				num_blocks = eeodb;
2350 				alloc_size = edid_size_by_blocks(num_blocks);
2351 				new = krealloc(edid, alloc_size, GFP_KERNEL);
2352 				if (!new)
2353 					goto fail;
2354 				edid = new;
2355 			}
2356 		}
2357 	}
2358 
2359 	if (invalid_blocks) {
2360 		connector_bad_edid(connector, edid, num_blocks);
2361 
2362 		edid = edid_filter_invalid_blocks(edid, &alloc_size);
2363 	}
2364 
2365 ok:
2366 	if (size)
2367 		*size = alloc_size;
2368 
2369 	return edid;
2370 
2371 fail:
2372 	kfree(edid);
2373 	return NULL;
2374 }
2375 
2376 /**
2377  * drm_do_get_edid - get EDID data using a custom EDID block read function
2378  * @connector: connector we're probing
2379  * @read_block: EDID block read function
2380  * @context: private data passed to the block read function
2381  *
2382  * When the I2C adapter connected to the DDC bus is hidden behind a device that
2383  * exposes a different interface to read EDID blocks this function can be used
2384  * to get EDID data using a custom block read function.
2385  *
2386  * As in the general case the DDC bus is accessible by the kernel at the I2C
2387  * level, drivers must make all reasonable efforts to expose it as an I2C
2388  * adapter and use drm_get_edid() instead of abusing this function.
2389  *
2390  * The EDID may be overridden using debugfs override_edid or firmware EDID
2391  * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
2392  * order. Having either of them bypasses actual EDID reads.
2393  *
2394  * Return: Pointer to valid EDID or NULL if we couldn't find any.
2395  */
2396 struct edid *drm_do_get_edid(struct drm_connector *connector,
2397 			     read_block_fn read_block,
2398 			     void *context)
2399 {
2400 	return _drm_do_get_edid(connector, read_block, context, NULL);
2401 }
2402 EXPORT_SYMBOL_GPL(drm_do_get_edid);
2403 
2404 /**
2405  * drm_edid_raw - Get a pointer to the raw EDID data.
2406  * @drm_edid: drm_edid container
2407  *
2408  * Get a pointer to the raw EDID data.
2409  *
2410  * This is for transition only. Avoid using this like the plague.
2411  *
2412  * Return: Pointer to raw EDID data.
2413  */
2414 const struct edid *drm_edid_raw(const struct drm_edid *drm_edid)
2415 {
2416 	if (!drm_edid || !drm_edid->size)
2417 		return NULL;
2418 
2419 	/*
2420 	 * Do not return pointers where relying on EDID extension count would
2421 	 * lead to buffer overflow.
2422 	 */
2423 	if (WARN_ON(edid_size(drm_edid->edid) > drm_edid->size))
2424 		return NULL;
2425 
2426 	return drm_edid->edid;
2427 }
2428 EXPORT_SYMBOL(drm_edid_raw);
2429 
2430 /* Allocate struct drm_edid container *without* duplicating the edid data */
2431 static const struct drm_edid *_drm_edid_alloc(const void *edid, size_t size)
2432 {
2433 	struct drm_edid *drm_edid;
2434 
2435 	if (!edid || !size || size < EDID_LENGTH)
2436 		return NULL;
2437 
2438 	drm_edid = kzalloc(sizeof(*drm_edid), GFP_KERNEL);
2439 	if (drm_edid) {
2440 		drm_edid->edid = edid;
2441 		drm_edid->size = size;
2442 	}
2443 
2444 	return drm_edid;
2445 }
2446 
2447 /**
2448  * drm_edid_alloc - Allocate a new drm_edid container
2449  * @edid: Pointer to raw EDID data
2450  * @size: Size of memory allocated for EDID
2451  *
2452  * Allocate a new drm_edid container. Do not calculate edid size from edid, pass
2453  * the actual size that has been allocated for the data. There is no validation
2454  * of the raw EDID data against the size, but at least the EDID base block must
2455  * fit in the buffer.
2456  *
2457  * The returned pointer must be freed using drm_edid_free().
2458  *
2459  * Return: drm_edid container, or NULL on errors
2460  */
2461 const struct drm_edid *drm_edid_alloc(const void *edid, size_t size)
2462 {
2463 	const struct drm_edid *drm_edid;
2464 
2465 	if (!edid || !size || size < EDID_LENGTH)
2466 		return NULL;
2467 
2468 	edid = kmemdup(edid, size, GFP_KERNEL);
2469 	if (!edid)
2470 		return NULL;
2471 
2472 	drm_edid = _drm_edid_alloc(edid, size);
2473 	if (!drm_edid)
2474 		kfree(edid);
2475 
2476 	return drm_edid;
2477 }
2478 EXPORT_SYMBOL(drm_edid_alloc);
2479 
2480 /**
2481  * drm_edid_dup - Duplicate a drm_edid container
2482  * @drm_edid: EDID to duplicate
2483  *
2484  * The returned pointer must be freed using drm_edid_free().
2485  *
2486  * Returns: drm_edid container copy, or NULL on errors
2487  */
2488 const struct drm_edid *drm_edid_dup(const struct drm_edid *drm_edid)
2489 {
2490 	if (!drm_edid)
2491 		return NULL;
2492 
2493 	return drm_edid_alloc(drm_edid->edid, drm_edid->size);
2494 }
2495 EXPORT_SYMBOL(drm_edid_dup);
2496 
2497 /**
2498  * drm_edid_free - Free the drm_edid container
2499  * @drm_edid: EDID to free
2500  */
2501 void drm_edid_free(const struct drm_edid *drm_edid)
2502 {
2503 	if (!drm_edid)
2504 		return;
2505 
2506 	kfree(drm_edid->edid);
2507 	kfree(drm_edid);
2508 }
2509 EXPORT_SYMBOL(drm_edid_free);
2510 
2511 /**
2512  * drm_probe_ddc() - probe DDC presence
2513  * @adapter: I2C adapter to probe
2514  *
2515  * Return: True on success, false on failure.
2516  */
2517 bool
2518 drm_probe_ddc(struct i2c_adapter *adapter)
2519 {
2520 	unsigned char out;
2521 
2522 	return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
2523 }
2524 EXPORT_SYMBOL(drm_probe_ddc);
2525 
2526 /**
2527  * drm_get_edid - get EDID data, if available
2528  * @connector: connector we're probing
2529  * @adapter: I2C adapter to use for DDC
2530  *
2531  * Poke the given I2C channel to grab EDID data if possible.  If found,
2532  * attach it to the connector.
2533  *
2534  * Return: Pointer to valid EDID or NULL if we couldn't find any.
2535  */
2536 struct edid *drm_get_edid(struct drm_connector *connector,
2537 			  struct i2c_adapter *adapter)
2538 {
2539 	struct edid *edid;
2540 
2541 	if (connector->force == DRM_FORCE_OFF)
2542 		return NULL;
2543 
2544 	if (connector->force == DRM_FORCE_UNSPECIFIED && !drm_probe_ddc(adapter))
2545 		return NULL;
2546 
2547 	edid = _drm_do_get_edid(connector, drm_do_probe_ddc_edid, adapter, NULL);
2548 	drm_connector_update_edid_property(connector, edid);
2549 	return edid;
2550 }
2551 EXPORT_SYMBOL(drm_get_edid);
2552 
2553 /**
2554  * drm_edid_read_custom - Read EDID data using given EDID block read function
2555  * @connector: Connector to use
2556  * @read_block: EDID block read function
2557  * @context: Private data passed to the block read function
2558  *
2559  * When the I2C adapter connected to the DDC bus is hidden behind a device that
2560  * exposes a different interface to read EDID blocks this function can be used
2561  * to get EDID data using a custom block read function.
2562  *
2563  * As in the general case the DDC bus is accessible by the kernel at the I2C
2564  * level, drivers must make all reasonable efforts to expose it as an I2C
2565  * adapter and use drm_edid_read() or drm_edid_read_ddc() instead of abusing
2566  * this function.
2567  *
2568  * The EDID may be overridden using debugfs override_edid or firmware EDID
2569  * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
2570  * order. Having either of them bypasses actual EDID reads.
2571  *
2572  * The returned pointer must be freed using drm_edid_free().
2573  *
2574  * Return: Pointer to EDID, or NULL if probe/read failed.
2575  */
2576 const struct drm_edid *drm_edid_read_custom(struct drm_connector *connector,
2577 					    read_block_fn read_block,
2578 					    void *context)
2579 {
2580 	const struct drm_edid *drm_edid;
2581 	struct edid *edid;
2582 	size_t size = 0;
2583 
2584 	edid = _drm_do_get_edid(connector, read_block, context, &size);
2585 	if (!edid)
2586 		return NULL;
2587 
2588 	/* Sanity check for now */
2589 	drm_WARN_ON(connector->dev, !size);
2590 
2591 	drm_edid = _drm_edid_alloc(edid, size);
2592 	if (!drm_edid)
2593 		kfree(edid);
2594 
2595 	return drm_edid;
2596 }
2597 EXPORT_SYMBOL(drm_edid_read_custom);
2598 
2599 /**
2600  * drm_edid_read_ddc - Read EDID data using given I2C adapter
2601  * @connector: Connector to use
2602  * @adapter: I2C adapter to use for DDC
2603  *
2604  * Read EDID using the given I2C adapter.
2605  *
2606  * The EDID may be overridden using debugfs override_edid or firmware EDID
2607  * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
2608  * order. Having either of them bypasses actual EDID reads.
2609  *
2610  * Prefer initializing connector->ddc with drm_connector_init_with_ddc() and
2611  * using drm_edid_read() instead of this function.
2612  *
2613  * The returned pointer must be freed using drm_edid_free().
2614  *
2615  * Return: Pointer to EDID, or NULL if probe/read failed.
2616  */
2617 const struct drm_edid *drm_edid_read_ddc(struct drm_connector *connector,
2618 					 struct i2c_adapter *adapter)
2619 {
2620 	const struct drm_edid *drm_edid;
2621 
2622 	if (connector->force == DRM_FORCE_OFF)
2623 		return NULL;
2624 
2625 	if (connector->force == DRM_FORCE_UNSPECIFIED && !drm_probe_ddc(adapter))
2626 		return NULL;
2627 
2628 	drm_edid = drm_edid_read_custom(connector, drm_do_probe_ddc_edid, adapter);
2629 
2630 	/* Note: Do *not* call connector updates here. */
2631 
2632 	return drm_edid;
2633 }
2634 EXPORT_SYMBOL(drm_edid_read_ddc);
2635 
2636 /**
2637  * drm_edid_read - Read EDID data using connector's I2C adapter
2638  * @connector: Connector to use
2639  *
2640  * Read EDID using the connector's I2C adapter.
2641  *
2642  * The EDID may be overridden using debugfs override_edid or firmware EDID
2643  * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
2644  * order. Having either of them bypasses actual EDID reads.
2645  *
2646  * The returned pointer must be freed using drm_edid_free().
2647  *
2648  * Return: Pointer to EDID, or NULL if probe/read failed.
2649  */
2650 const struct drm_edid *drm_edid_read(struct drm_connector *connector)
2651 {
2652 	if (drm_WARN_ON(connector->dev, !connector->ddc))
2653 		return NULL;
2654 
2655 	return drm_edid_read_ddc(connector, connector->ddc);
2656 }
2657 EXPORT_SYMBOL(drm_edid_read);
2658 
2659 static u32 edid_extract_panel_id(const struct edid *edid)
2660 {
2661 	/*
2662 	 * We represent the ID as a 32-bit number so it can easily be compared
2663 	 * with "==".
2664 	 *
2665 	 * NOTE that we deal with endianness differently for the top half
2666 	 * of this ID than for the bottom half. The bottom half (the product
2667 	 * id) gets decoded as little endian by the EDID_PRODUCT_ID because
2668 	 * that's how everyone seems to interpret it. The top half (the mfg_id)
2669 	 * gets stored as big endian because that makes
2670 	 * drm_edid_encode_panel_id() and drm_edid_decode_panel_id() easier
2671 	 * to write (it's easier to extract the ASCII). It doesn't really
2672 	 * matter, though, as long as the number here is unique.
2673 	 */
2674 	return (u32)edid->mfg_id[0] << 24   |
2675 	       (u32)edid->mfg_id[1] << 16   |
2676 	       (u32)EDID_PRODUCT_ID(edid);
2677 }
2678 
2679 /**
2680  * drm_edid_get_panel_id - Get a panel's ID through DDC
2681  * @adapter: I2C adapter to use for DDC
2682  *
2683  * This function reads the first block of the EDID of a panel and (assuming
2684  * that the EDID is valid) extracts the ID out of it. The ID is a 32-bit value
2685  * (16 bits of manufacturer ID and 16 bits of per-manufacturer ID) that's
2686  * supposed to be different for each different modem of panel.
2687  *
2688  * This function is intended to be used during early probing on devices where
2689  * more than one panel might be present. Because of its intended use it must
2690  * assume that the EDID of the panel is correct, at least as far as the ID
2691  * is concerned (in other words, we don't process any overrides here).
2692  *
2693  * NOTE: it's expected that this function and drm_do_get_edid() will both
2694  * be read the EDID, but there is no caching between them. Since we're only
2695  * reading the first block, hopefully this extra overhead won't be too big.
2696  *
2697  * Return: A 32-bit ID that should be different for each make/model of panel.
2698  *         See the functions drm_edid_encode_panel_id() and
2699  *         drm_edid_decode_panel_id() for some details on the structure of this
2700  *         ID.
2701  */
2702 
2703 u32 drm_edid_get_panel_id(struct i2c_adapter *adapter)
2704 {
2705 	enum edid_block_status status;
2706 	void *base_block;
2707 	u32 panel_id = 0;
2708 
2709 	/*
2710 	 * There are no manufacturer IDs of 0, so if there is a problem reading
2711 	 * the EDID then we'll just return 0.
2712 	 */
2713 
2714 	base_block = kmalloc(EDID_LENGTH, GFP_KERNEL);
2715 	if (!base_block)
2716 		return 0;
2717 
2718 	status = edid_block_read(base_block, 0, drm_do_probe_ddc_edid, adapter);
2719 
2720 	edid_block_status_print(status, base_block, 0);
2721 
2722 	if (edid_block_status_valid(status, edid_block_tag(base_block)))
2723 		panel_id = edid_extract_panel_id(base_block);
2724 
2725 	kfree(base_block);
2726 
2727 	return panel_id;
2728 }
2729 EXPORT_SYMBOL(drm_edid_get_panel_id);
2730 
2731 /**
2732  * drm_get_edid_switcheroo - get EDID data for a vga_switcheroo output
2733  * @connector: connector we're probing
2734  * @adapter: I2C adapter to use for DDC
2735  *
2736  * Wrapper around drm_get_edid() for laptops with dual GPUs using one set of
2737  * outputs. The wrapper adds the requisite vga_switcheroo calls to temporarily
2738  * switch DDC to the GPU which is retrieving EDID.
2739  *
2740  * Return: Pointer to valid EDID or %NULL if we couldn't find any.
2741  */
2742 struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
2743 				     struct i2c_adapter *adapter)
2744 {
2745 	struct drm_device *dev = connector->dev;
2746 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2747 	struct edid *edid;
2748 
2749 	if (drm_WARN_ON_ONCE(dev, !dev_is_pci(dev->dev)))
2750 		return NULL;
2751 
2752 	vga_switcheroo_lock_ddc(pdev);
2753 	edid = drm_get_edid(connector, adapter);
2754 	vga_switcheroo_unlock_ddc(pdev);
2755 
2756 	return edid;
2757 }
2758 EXPORT_SYMBOL(drm_get_edid_switcheroo);
2759 
2760 /**
2761  * drm_edid_duplicate - duplicate an EDID and the extensions
2762  * @edid: EDID to duplicate
2763  *
2764  * Return: Pointer to duplicated EDID or NULL on allocation failure.
2765  */
2766 struct edid *drm_edid_duplicate(const struct edid *edid)
2767 {
2768 	return kmemdup(edid, edid_size(edid), GFP_KERNEL);
2769 }
2770 EXPORT_SYMBOL(drm_edid_duplicate);
2771 
2772 /*** EDID parsing ***/
2773 
2774 /**
2775  * edid_get_quirks - return quirk flags for a given EDID
2776  * @drm_edid: EDID to process
2777  *
2778  * This tells subsequent routines what fixes they need to apply.
2779  */
2780 static u32 edid_get_quirks(const struct drm_edid *drm_edid)
2781 {
2782 	u32 panel_id = edid_extract_panel_id(drm_edid->edid);
2783 	const struct edid_quirk *quirk;
2784 	int i;
2785 
2786 	for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
2787 		quirk = &edid_quirk_list[i];
2788 		if (quirk->panel_id == panel_id)
2789 			return quirk->quirks;
2790 	}
2791 
2792 	return 0;
2793 }
2794 
2795 #define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
2796 #define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
2797 
2798 /*
2799  * Walk the mode list for connector, clearing the preferred status on existing
2800  * modes and setting it anew for the right mode ala quirks.
2801  */
2802 static void edid_fixup_preferred(struct drm_connector *connector,
2803 				 u32 quirks)
2804 {
2805 	struct drm_display_mode *t, *cur_mode, *preferred_mode;
2806 	int target_refresh = 0;
2807 	int cur_vrefresh, preferred_vrefresh;
2808 
2809 	if (list_empty(&connector->probed_modes))
2810 		return;
2811 
2812 	if (quirks & EDID_QUIRK_PREFER_LARGE_60)
2813 		target_refresh = 60;
2814 	if (quirks & EDID_QUIRK_PREFER_LARGE_75)
2815 		target_refresh = 75;
2816 
2817 	preferred_mode = list_first_entry(&connector->probed_modes,
2818 					  struct drm_display_mode, head);
2819 
2820 	list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
2821 		cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
2822 
2823 		if (cur_mode == preferred_mode)
2824 			continue;
2825 
2826 		/* Largest mode is preferred */
2827 		if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
2828 			preferred_mode = cur_mode;
2829 
2830 		cur_vrefresh = drm_mode_vrefresh(cur_mode);
2831 		preferred_vrefresh = drm_mode_vrefresh(preferred_mode);
2832 		/* At a given size, try to get closest to target refresh */
2833 		if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
2834 		    MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
2835 		    MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
2836 			preferred_mode = cur_mode;
2837 		}
2838 	}
2839 
2840 	preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
2841 }
2842 
2843 static bool
2844 mode_is_rb(const struct drm_display_mode *mode)
2845 {
2846 	return (mode->htotal - mode->hdisplay == 160) &&
2847 	       (mode->hsync_end - mode->hdisplay == 80) &&
2848 	       (mode->hsync_end - mode->hsync_start == 32) &&
2849 	       (mode->vsync_start - mode->vdisplay == 3);
2850 }
2851 
2852 /*
2853  * drm_mode_find_dmt - Create a copy of a mode if present in DMT
2854  * @dev: Device to duplicate against
2855  * @hsize: Mode width
2856  * @vsize: Mode height
2857  * @fresh: Mode refresh rate
2858  * @rb: Mode reduced-blanking-ness
2859  *
2860  * Walk the DMT mode list looking for a match for the given parameters.
2861  *
2862  * Return: A newly allocated copy of the mode, or NULL if not found.
2863  */
2864 struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
2865 					   int hsize, int vsize, int fresh,
2866 					   bool rb)
2867 {
2868 	int i;
2869 
2870 	for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
2871 		const struct drm_display_mode *ptr = &drm_dmt_modes[i];
2872 
2873 		if (hsize != ptr->hdisplay)
2874 			continue;
2875 		if (vsize != ptr->vdisplay)
2876 			continue;
2877 		if (fresh != drm_mode_vrefresh(ptr))
2878 			continue;
2879 		if (rb != mode_is_rb(ptr))
2880 			continue;
2881 
2882 		return drm_mode_duplicate(dev, ptr);
2883 	}
2884 
2885 	return NULL;
2886 }
2887 EXPORT_SYMBOL(drm_mode_find_dmt);
2888 
2889 static bool is_display_descriptor(const struct detailed_timing *descriptor, u8 type)
2890 {
2891 	BUILD_BUG_ON(offsetof(typeof(*descriptor), pixel_clock) != 0);
2892 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.pad1) != 2);
2893 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.type) != 3);
2894 
2895 	return descriptor->pixel_clock == 0 &&
2896 		descriptor->data.other_data.pad1 == 0 &&
2897 		descriptor->data.other_data.type == type;
2898 }
2899 
2900 static bool is_detailed_timing_descriptor(const struct detailed_timing *descriptor)
2901 {
2902 	BUILD_BUG_ON(offsetof(typeof(*descriptor), pixel_clock) != 0);
2903 
2904 	return descriptor->pixel_clock != 0;
2905 }
2906 
2907 typedef void detailed_cb(const struct detailed_timing *timing, void *closure);
2908 
2909 static void
2910 cea_for_each_detailed_block(const u8 *ext, detailed_cb *cb, void *closure)
2911 {
2912 	int i, n;
2913 	u8 d = ext[0x02];
2914 	const u8 *det_base = ext + d;
2915 
2916 	if (d < 4 || d > 127)
2917 		return;
2918 
2919 	n = (127 - d) / 18;
2920 	for (i = 0; i < n; i++)
2921 		cb((const struct detailed_timing *)(det_base + 18 * i), closure);
2922 }
2923 
2924 static void
2925 vtb_for_each_detailed_block(const u8 *ext, detailed_cb *cb, void *closure)
2926 {
2927 	unsigned int i, n = min((int)ext[0x02], 6);
2928 	const u8 *det_base = ext + 5;
2929 
2930 	if (ext[0x01] != 1)
2931 		return; /* unknown version */
2932 
2933 	for (i = 0; i < n; i++)
2934 		cb((const struct detailed_timing *)(det_base + 18 * i), closure);
2935 }
2936 
2937 static void drm_for_each_detailed_block(const struct drm_edid *drm_edid,
2938 					detailed_cb *cb, void *closure)
2939 {
2940 	struct drm_edid_iter edid_iter;
2941 	const u8 *ext;
2942 	int i;
2943 
2944 	if (!drm_edid)
2945 		return;
2946 
2947 	for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
2948 		cb(&drm_edid->edid->detailed_timings[i], closure);
2949 
2950 	drm_edid_iter_begin(drm_edid, &edid_iter);
2951 	drm_edid_iter_for_each(ext, &edid_iter) {
2952 		switch (*ext) {
2953 		case CEA_EXT:
2954 			cea_for_each_detailed_block(ext, cb, closure);
2955 			break;
2956 		case VTB_EXT:
2957 			vtb_for_each_detailed_block(ext, cb, closure);
2958 			break;
2959 		default:
2960 			break;
2961 		}
2962 	}
2963 	drm_edid_iter_end(&edid_iter);
2964 }
2965 
2966 static void
2967 is_rb(const struct detailed_timing *descriptor, void *data)
2968 {
2969 	bool *res = data;
2970 
2971 	if (!is_display_descriptor(descriptor, EDID_DETAIL_MONITOR_RANGE))
2972 		return;
2973 
2974 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.flags) != 10);
2975 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.cvt.flags) != 15);
2976 
2977 	if (descriptor->data.other_data.data.range.flags == DRM_EDID_CVT_SUPPORT_FLAG &&
2978 	    descriptor->data.other_data.data.range.formula.cvt.flags & DRM_EDID_CVT_FLAGS_REDUCED_BLANKING)
2979 		*res = true;
2980 }
2981 
2982 /* EDID 1.4 defines this explicitly.  For EDID 1.3, we guess, badly. */
2983 static bool
2984 drm_monitor_supports_rb(const struct drm_edid *drm_edid)
2985 {
2986 	if (drm_edid->edid->revision >= 4) {
2987 		bool ret = false;
2988 
2989 		drm_for_each_detailed_block(drm_edid, is_rb, &ret);
2990 		return ret;
2991 	}
2992 
2993 	return ((drm_edid->edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
2994 }
2995 
2996 static void
2997 find_gtf2(const struct detailed_timing *descriptor, void *data)
2998 {
2999 	const struct detailed_timing **res = data;
3000 
3001 	if (!is_display_descriptor(descriptor, EDID_DETAIL_MONITOR_RANGE))
3002 		return;
3003 
3004 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.flags) != 10);
3005 
3006 	if (descriptor->data.other_data.data.range.flags == DRM_EDID_SECONDARY_GTF_SUPPORT_FLAG)
3007 		*res = descriptor;
3008 }
3009 
3010 /* Secondary GTF curve kicks in above some break frequency */
3011 static int
3012 drm_gtf2_hbreak(const struct drm_edid *drm_edid)
3013 {
3014 	const struct detailed_timing *descriptor = NULL;
3015 
3016 	drm_for_each_detailed_block(drm_edid, find_gtf2, &descriptor);
3017 
3018 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.gtf2.hfreq_start_khz) != 12);
3019 
3020 	return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.hfreq_start_khz * 2 : 0;
3021 }
3022 
3023 static int
3024 drm_gtf2_2c(const struct drm_edid *drm_edid)
3025 {
3026 	const struct detailed_timing *descriptor = NULL;
3027 
3028 	drm_for_each_detailed_block(drm_edid, find_gtf2, &descriptor);
3029 
3030 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.gtf2.c) != 13);
3031 
3032 	return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.c : 0;
3033 }
3034 
3035 static int
3036 drm_gtf2_m(const struct drm_edid *drm_edid)
3037 {
3038 	const struct detailed_timing *descriptor = NULL;
3039 
3040 	drm_for_each_detailed_block(drm_edid, find_gtf2, &descriptor);
3041 
3042 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.gtf2.m) != 14);
3043 
3044 	return descriptor ? le16_to_cpu(descriptor->data.other_data.data.range.formula.gtf2.m) : 0;
3045 }
3046 
3047 static int
3048 drm_gtf2_k(const struct drm_edid *drm_edid)
3049 {
3050 	const struct detailed_timing *descriptor = NULL;
3051 
3052 	drm_for_each_detailed_block(drm_edid, find_gtf2, &descriptor);
3053 
3054 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.gtf2.k) != 16);
3055 
3056 	return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.k : 0;
3057 }
3058 
3059 static int
3060 drm_gtf2_2j(const struct drm_edid *drm_edid)
3061 {
3062 	const struct detailed_timing *descriptor = NULL;
3063 
3064 	drm_for_each_detailed_block(drm_edid, find_gtf2, &descriptor);
3065 
3066 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.gtf2.j) != 17);
3067 
3068 	return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.j : 0;
3069 }
3070 
3071 static void
3072 get_timing_level(const struct detailed_timing *descriptor, void *data)
3073 {
3074 	int *res = data;
3075 
3076 	if (!is_display_descriptor(descriptor, EDID_DETAIL_MONITOR_RANGE))
3077 		return;
3078 
3079 	BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.flags) != 10);
3080 
3081 	switch (descriptor->data.other_data.data.range.flags) {
3082 	case DRM_EDID_DEFAULT_GTF_SUPPORT_FLAG:
3083 		*res = LEVEL_GTF;
3084 		break;
3085 	case DRM_EDID_SECONDARY_GTF_SUPPORT_FLAG:
3086 		*res = LEVEL_GTF2;
3087 		break;
3088 	case DRM_EDID_CVT_SUPPORT_FLAG:
3089 		*res = LEVEL_CVT;
3090 		break;
3091 	default:
3092 		break;
3093 	}
3094 }
3095 
3096 /* Get standard timing level (CVT/GTF/DMT). */
3097 static int standard_timing_level(const struct drm_edid *drm_edid)
3098 {
3099 	const struct edid *edid = drm_edid->edid;
3100 
3101 	if (edid->revision >= 4) {
3102 		/*
3103 		 * If the range descriptor doesn't
3104 		 * indicate otherwise default to CVT
3105 		 */
3106 		int ret = LEVEL_CVT;
3107 
3108 		drm_for_each_detailed_block(drm_edid, get_timing_level, &ret);
3109 
3110 		return ret;
3111 	} else if (edid->revision >= 3 && drm_gtf2_hbreak(drm_edid)) {
3112 		return LEVEL_GTF2;
3113 	} else if (edid->revision >= 2) {
3114 		return LEVEL_GTF;
3115 	} else {
3116 		return LEVEL_DMT;
3117 	}
3118 }
3119 
3120 /*
3121  * 0 is reserved.  The spec says 0x01 fill for unused timings.  Some old
3122  * monitors fill with ascii space (0x20) instead.
3123  */
3124 static int
3125 bad_std_timing(u8 a, u8 b)
3126 {
3127 	return (a == 0x00 && b == 0x00) ||
3128 	       (a == 0x01 && b == 0x01) ||
3129 	       (a == 0x20 && b == 0x20);
3130 }
3131 
3132 static int drm_mode_hsync(const struct drm_display_mode *mode)
3133 {
3134 	if (mode->htotal <= 0)
3135 		return 0;
3136 
3137 	return DIV_ROUND_CLOSEST(mode->clock, mode->htotal);
3138 }
3139 
3140 static struct drm_display_mode *
3141 drm_gtf2_mode(struct drm_device *dev,
3142 	      const struct drm_edid *drm_edid,
3143 	      int hsize, int vsize, int vrefresh_rate)
3144 {
3145 	struct drm_display_mode *mode;
3146 
3147 	/*
3148 	 * This is potentially wrong if there's ever a monitor with
3149 	 * more than one ranges section, each claiming a different
3150 	 * secondary GTF curve.  Please don't do that.
3151 	 */
3152 	mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
3153 	if (!mode)
3154 		return NULL;
3155 
3156 	if (drm_mode_hsync(mode) > drm_gtf2_hbreak(drm_edid)) {
3157 		drm_mode_destroy(dev, mode);
3158 		mode = drm_gtf_mode_complex(dev, hsize, vsize,
3159 					    vrefresh_rate, 0, 0,
3160 					    drm_gtf2_m(drm_edid),
3161 					    drm_gtf2_2c(drm_edid),
3162 					    drm_gtf2_k(drm_edid),
3163 					    drm_gtf2_2j(drm_edid));
3164 	}
3165 
3166 	return mode;
3167 }
3168 
3169 /*
3170  * Take the standard timing params (in this case width, aspect, and refresh)
3171  * and convert them into a real mode using CVT/GTF/DMT.
3172  */
3173 static struct drm_display_mode *drm_mode_std(struct drm_connector *connector,
3174 					     const struct drm_edid *drm_edid,
3175 					     const struct std_timing *t)
3176 {
3177 	struct drm_device *dev = connector->dev;
3178 	struct drm_display_mode *m, *mode = NULL;
3179 	int hsize, vsize;
3180 	int vrefresh_rate;
3181 	unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
3182 		>> EDID_TIMING_ASPECT_SHIFT;
3183 	unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
3184 		>> EDID_TIMING_VFREQ_SHIFT;
3185 	int timing_level = standard_timing_level(drm_edid);
3186 
3187 	if (bad_std_timing(t->hsize, t->vfreq_aspect))
3188 		return NULL;
3189 
3190 	/* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
3191 	hsize = t->hsize * 8 + 248;
3192 	/* vrefresh_rate = vfreq + 60 */
3193 	vrefresh_rate = vfreq + 60;
3194 	/* the vdisplay is calculated based on the aspect ratio */
3195 	if (aspect_ratio == 0) {
3196 		if (drm_edid->edid->revision < 3)
3197 			vsize = hsize;
3198 		else
3199 			vsize = (hsize * 10) / 16;
3200 	} else if (aspect_ratio == 1)
3201 		vsize = (hsize * 3) / 4;
3202 	else if (aspect_ratio == 2)
3203 		vsize = (hsize * 4) / 5;
3204 	else
3205 		vsize = (hsize * 9) / 16;
3206 
3207 	/* HDTV hack, part 1 */
3208 	if (vrefresh_rate == 60 &&
3209 	    ((hsize == 1360 && vsize == 765) ||
3210 	     (hsize == 1368 && vsize == 769))) {
3211 		hsize = 1366;
3212 		vsize = 768;
3213 	}
3214 
3215 	/*
3216 	 * If this connector already has a mode for this size and refresh
3217 	 * rate (because it came from detailed or CVT info), use that
3218 	 * instead.  This way we don't have to guess at interlace or
3219 	 * reduced blanking.
3220 	 */
3221 	list_for_each_entry(m, &connector->probed_modes, head)
3222 		if (m->hdisplay == hsize && m->vdisplay == vsize &&
3223 		    drm_mode_vrefresh(m) == vrefresh_rate)
3224 			return NULL;
3225 
3226 	/* HDTV hack, part 2 */
3227 	if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
3228 		mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
3229 				    false);
3230 		if (!mode)
3231 			return NULL;
3232 		mode->hdisplay = 1366;
3233 		mode->hsync_start = mode->hsync_start - 1;
3234 		mode->hsync_end = mode->hsync_end - 1;
3235 		return mode;
3236 	}
3237 
3238 	/* check whether it can be found in default mode table */
3239 	if (drm_monitor_supports_rb(drm_edid)) {
3240 		mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
3241 					 true);
3242 		if (mode)
3243 			return mode;
3244 	}
3245 	mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
3246 	if (mode)
3247 		return mode;
3248 
3249 	/* okay, generate it */
3250 	switch (timing_level) {
3251 	case LEVEL_DMT:
3252 		break;
3253 	case LEVEL_GTF:
3254 		mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
3255 		break;
3256 	case LEVEL_GTF2:
3257 		mode = drm_gtf2_mode(dev, drm_edid, hsize, vsize, vrefresh_rate);
3258 		break;
3259 	case LEVEL_CVT:
3260 		mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
3261 				    false);
3262 		break;
3263 	}
3264 	return mode;
3265 }
3266 
3267 /*
3268  * EDID is delightfully ambiguous about how interlaced modes are to be
3269  * encoded.  Our internal representation is of frame height, but some
3270  * HDTV detailed timings are encoded as field height.
3271  *
3272  * The format list here is from CEA, in frame size.  Technically we
3273  * should be checking refresh rate too.  Whatever.
3274  */
3275 static void
3276 drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
3277 			    const struct detailed_pixel_timing *pt)
3278 {
3279 	int i;
3280 	static const struct {
3281 		int w, h;
3282 	} cea_interlaced[] = {
3283 		{ 1920, 1080 },
3284 		{  720,  480 },
3285 		{ 1440,  480 },
3286 		{ 2880,  480 },
3287 		{  720,  576 },
3288 		{ 1440,  576 },
3289 		{ 2880,  576 },
3290 	};
3291 
3292 	if (!(pt->misc & DRM_EDID_PT_INTERLACED))
3293 		return;
3294 
3295 	for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
3296 		if ((mode->hdisplay == cea_interlaced[i].w) &&
3297 		    (mode->vdisplay == cea_interlaced[i].h / 2)) {
3298 			mode->vdisplay *= 2;
3299 			mode->vsync_start *= 2;
3300 			mode->vsync_end *= 2;
3301 			mode->vtotal *= 2;
3302 			mode->vtotal |= 1;
3303 		}
3304 	}
3305 
3306 	mode->flags |= DRM_MODE_FLAG_INTERLACE;
3307 }
3308 
3309 /*
3310  * Create a new mode from an EDID detailed timing section. An EDID detailed
3311  * timing block contains enough info for us to create and return a new struct
3312  * drm_display_mode.
3313  */
3314 static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
3315 						  const struct drm_edid *drm_edid,
3316 						  const struct detailed_timing *timing,
3317 						  u32 quirks)
3318 {
3319 	struct drm_display_mode *mode;
3320 	const struct detailed_pixel_timing *pt = &timing->data.pixel_data;
3321 	unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
3322 	unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
3323 	unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
3324 	unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
3325 	unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
3326 	unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
3327 	unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) << 2 | pt->vsync_offset_pulse_width_lo >> 4;
3328 	unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);
3329 
3330 	/* ignore tiny modes */
3331 	if (hactive < 64 || vactive < 64)
3332 		return NULL;
3333 
3334 	if (pt->misc & DRM_EDID_PT_STEREO) {
3335 		DRM_DEBUG_KMS("stereo mode not supported\n");
3336 		return NULL;
3337 	}
3338 	if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
3339 		DRM_DEBUG_KMS("composite sync not supported\n");
3340 	}
3341 
3342 	/* it is incorrect if hsync/vsync width is zero */
3343 	if (!hsync_pulse_width || !vsync_pulse_width) {
3344 		DRM_DEBUG_KMS("Incorrect Detailed timing. "
3345 				"Wrong Hsync/Vsync pulse width\n");
3346 		return NULL;
3347 	}
3348 
3349 	if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
3350 		mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
3351 		if (!mode)
3352 			return NULL;
3353 
3354 		goto set_size;
3355 	}
3356 
3357 	mode = drm_mode_create(dev);
3358 	if (!mode)
3359 		return NULL;
3360 
3361 	if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
3362 		mode->clock = 1088 * 10;
3363 	else
3364 		mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
3365 
3366 	mode->hdisplay = hactive;
3367 	mode->hsync_start = mode->hdisplay + hsync_offset;
3368 	mode->hsync_end = mode->hsync_start + hsync_pulse_width;
3369 	mode->htotal = mode->hdisplay + hblank;
3370 
3371 	mode->vdisplay = vactive;
3372 	mode->vsync_start = mode->vdisplay + vsync_offset;
3373 	mode->vsync_end = mode->vsync_start + vsync_pulse_width;
3374 	mode->vtotal = mode->vdisplay + vblank;
3375 
3376 	/* Some EDIDs have bogus h/vtotal values */
3377 	if (mode->hsync_end > mode->htotal)
3378 		mode->htotal = mode->hsync_end + 1;
3379 	if (mode->vsync_end > mode->vtotal)
3380 		mode->vtotal = mode->vsync_end + 1;
3381 
3382 	drm_mode_do_interlace_quirk(mode, pt);
3383 
3384 	if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
3385 		mode->flags |= DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC;
3386 	} else {
3387 		mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
3388 			DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
3389 		mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
3390 			DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
3391 	}
3392 
3393 set_size:
3394 	mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
3395 	mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
3396 
3397 	if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
3398 		mode->width_mm *= 10;
3399 		mode->height_mm *= 10;
3400 	}
3401 
3402 	if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
3403 		mode->width_mm = drm_edid->edid->width_cm * 10;
3404 		mode->height_mm = drm_edid->edid->height_cm * 10;
3405 	}
3406 
3407 	mode->type = DRM_MODE_TYPE_DRIVER;
3408 	drm_mode_set_name(mode);
3409 
3410 	return mode;
3411 }
3412 
3413 static bool
3414 mode_in_hsync_range(const struct drm_display_mode *mode,
3415 		    const struct edid *edid, const u8 *t)
3416 {
3417 	int hsync, hmin, hmax;
3418 
3419 	hmin = t[7];
3420 	if (edid->revision >= 4)
3421 	    hmin += ((t[4] & 0x04) ? 255 : 0);
3422 	hmax = t[8];
3423 	if (edid->revision >= 4)
3424 	    hmax += ((t[4] & 0x08) ? 255 : 0);
3425 	hsync = drm_mode_hsync(mode);
3426 
3427 	return (hsync <= hmax && hsync >= hmin);
3428 }
3429 
3430 static bool
3431 mode_in_vsync_range(const struct drm_display_mode *mode,
3432 		    const struct edid *edid, const u8 *t)
3433 {
3434 	int vsync, vmin, vmax;
3435 
3436 	vmin = t[5];
3437 	if (edid->revision >= 4)
3438 	    vmin += ((t[4] & 0x01) ? 255 : 0);
3439 	vmax = t[6];
3440 	if (edid->revision >= 4)
3441 	    vmax += ((t[4] & 0x02) ? 255 : 0);
3442 	vsync = drm_mode_vrefresh(mode);
3443 
3444 	return (vsync <= vmax && vsync >= vmin);
3445 }
3446 
3447 static u32
3448 range_pixel_clock(const struct edid *edid, const u8 *t)
3449 {
3450 	/* unspecified */
3451 	if (t[9] == 0 || t[9] == 255)
3452 		return 0;
3453 
3454 	/* 1.4 with CVT support gives us real precision, yay */
3455 	if (edid->revision >= 4 && t[10] == DRM_EDID_CVT_SUPPORT_FLAG)
3456 		return (t[9] * 10000) - ((t[12] >> 2) * 250);
3457 
3458 	/* 1.3 is pathetic, so fuzz up a bit */
3459 	return t[9] * 10000 + 5001;
3460 }
3461 
3462 static bool mode_in_range(const struct drm_display_mode *mode,
3463 			  const struct drm_edid *drm_edid,
3464 			  const struct detailed_timing *timing)
3465 {
3466 	const struct edid *edid = drm_edid->edid;
3467 	u32 max_clock;
3468 	const u8 *t = (const u8 *)timing;
3469 
3470 	if (!mode_in_hsync_range(mode, edid, t))
3471 		return false;
3472 
3473 	if (!mode_in_vsync_range(mode, edid, t))
3474 		return false;
3475 
3476 	if ((max_clock = range_pixel_clock(edid, t)))
3477 		if (mode->clock > max_clock)
3478 			return false;
3479 
3480 	/* 1.4 max horizontal check */
3481 	if (edid->revision >= 4 && t[10] == DRM_EDID_CVT_SUPPORT_FLAG)
3482 		if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
3483 			return false;
3484 
3485 	if (mode_is_rb(mode) && !drm_monitor_supports_rb(drm_edid))
3486 		return false;
3487 
3488 	return true;
3489 }
3490 
3491 static bool valid_inferred_mode(const struct drm_connector *connector,
3492 				const struct drm_display_mode *mode)
3493 {
3494 	const struct drm_display_mode *m;
3495 	bool ok = false;
3496 
3497 	list_for_each_entry(m, &connector->probed_modes, head) {
3498 		if (mode->hdisplay == m->hdisplay &&
3499 		    mode->vdisplay == m->vdisplay &&
3500 		    drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
3501 			return false; /* duplicated */
3502 		if (mode->hdisplay <= m->hdisplay &&
3503 		    mode->vdisplay <= m->vdisplay)
3504 			ok = true;
3505 	}
3506 	return ok;
3507 }
3508 
3509 static int drm_dmt_modes_for_range(struct drm_connector *connector,
3510 				   const struct drm_edid *drm_edid,
3511 				   const struct detailed_timing *timing)
3512 {
3513 	int i, modes = 0;
3514 	struct drm_display_mode *newmode;
3515 	struct drm_device *dev = connector->dev;
3516 
3517 	for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
3518 		if (mode_in_range(drm_dmt_modes + i, drm_edid, timing) &&
3519 		    valid_inferred_mode(connector, drm_dmt_modes + i)) {
3520 			newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
3521 			if (newmode) {
3522 				drm_mode_probed_add(connector, newmode);
3523 				modes++;
3524 			}
3525 		}
3526 	}
3527 
3528 	return modes;
3529 }
3530 
3531 /* fix up 1366x768 mode from 1368x768;
3532  * GFT/CVT can't express 1366 width which isn't dividable by 8
3533  */
3534 void drm_mode_fixup_1366x768(struct drm_display_mode *mode)
3535 {
3536 	if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
3537 		mode->hdisplay = 1366;
3538 		mode->hsync_start--;
3539 		mode->hsync_end--;
3540 		drm_mode_set_name(mode);
3541 	}
3542 }
3543 
3544 static int drm_gtf_modes_for_range(struct drm_connector *connector,
3545 				   const struct drm_edid *drm_edid,
3546 				   const struct detailed_timing *timing)
3547 {
3548 	int i, modes = 0;
3549 	struct drm_display_mode *newmode;
3550 	struct drm_device *dev = connector->dev;
3551 
3552 	for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
3553 		const struct minimode *m = &extra_modes[i];
3554 
3555 		newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
3556 		if (!newmode)
3557 			return modes;
3558 
3559 		drm_mode_fixup_1366x768(newmode);
3560 		if (!mode_in_range(newmode, drm_edid, timing) ||
3561 		    !valid_inferred_mode(connector, newmode)) {
3562 			drm_mode_destroy(dev, newmode);
3563 			continue;
3564 		}
3565 
3566 		drm_mode_probed_add(connector, newmode);
3567 		modes++;
3568 	}
3569 
3570 	return modes;
3571 }
3572 
3573 static int drm_gtf2_modes_for_range(struct drm_connector *connector,
3574 				    const struct drm_edid *drm_edid,
3575 				    const struct detailed_timing *timing)
3576 {
3577 	int i, modes = 0;
3578 	struct drm_display_mode *newmode;
3579 	struct drm_device *dev = connector->dev;
3580 
3581 	for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
3582 		const struct minimode *m = &extra_modes[i];
3583 
3584 		newmode = drm_gtf2_mode(dev, drm_edid, m->w, m->h, m->r);
3585 		if (!newmode)
3586 			return modes;
3587 
3588 		drm_mode_fixup_1366x768(newmode);
3589 		if (!mode_in_range(newmode, drm_edid, timing) ||
3590 		    !valid_inferred_mode(connector, newmode)) {
3591 			drm_mode_destroy(dev, newmode);
3592 			continue;
3593 		}
3594 
3595 		drm_mode_probed_add(connector, newmode);
3596 		modes++;
3597 	}
3598 
3599 	return modes;
3600 }
3601 
3602 static int drm_cvt_modes_for_range(struct drm_connector *connector,
3603 				   const struct drm_edid *drm_edid,
3604 				   const struct detailed_timing *timing)
3605 {
3606 	int i, modes = 0;
3607 	struct drm_display_mode *newmode;
3608 	struct drm_device *dev = connector->dev;
3609 	bool rb = drm_monitor_supports_rb(drm_edid);
3610 
3611 	for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
3612 		const struct minimode *m = &extra_modes[i];
3613 
3614 		newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
3615 		if (!newmode)
3616 			return modes;
3617 
3618 		drm_mode_fixup_1366x768(newmode);
3619 		if (!mode_in_range(newmode, drm_edid, timing) ||
3620 		    !valid_inferred_mode(connector, newmode)) {
3621 			drm_mode_destroy(dev, newmode);
3622 			continue;
3623 		}
3624 
3625 		drm_mode_probed_add(connector, newmode);
3626 		modes++;
3627 	}
3628 
3629 	return modes;
3630 }
3631 
3632 static void
3633 do_inferred_modes(const struct detailed_timing *timing, void *c)
3634 {
3635 	struct detailed_mode_closure *closure = c;
3636 	const struct detailed_non_pixel *data = &timing->data.other_data;
3637 	const struct detailed_data_monitor_range *range = &data->data.range;
3638 
3639 	if (!is_display_descriptor(timing, EDID_DETAIL_MONITOR_RANGE))
3640 		return;
3641 
3642 	closure->modes += drm_dmt_modes_for_range(closure->connector,
3643 						  closure->drm_edid,
3644 						  timing);
3645 
3646 	if (closure->drm_edid->edid->revision < 2)
3647 		return; /* GTF not defined yet */
3648 
3649 	switch (range->flags) {
3650 	case DRM_EDID_SECONDARY_GTF_SUPPORT_FLAG:
3651 		closure->modes += drm_gtf2_modes_for_range(closure->connector,
3652 							   closure->drm_edid,
3653 							   timing);
3654 		break;
3655 	case DRM_EDID_DEFAULT_GTF_SUPPORT_FLAG:
3656 		closure->modes += drm_gtf_modes_for_range(closure->connector,
3657 							  closure->drm_edid,
3658 							  timing);
3659 		break;
3660 	case DRM_EDID_CVT_SUPPORT_FLAG:
3661 		if (closure->drm_edid->edid->revision < 4)
3662 			break;
3663 
3664 		closure->modes += drm_cvt_modes_for_range(closure->connector,
3665 							  closure->drm_edid,
3666 							  timing);
3667 		break;
3668 	case DRM_EDID_RANGE_LIMITS_ONLY_FLAG:
3669 	default:
3670 		break;
3671 	}
3672 }
3673 
3674 static int add_inferred_modes(struct drm_connector *connector,
3675 			      const struct drm_edid *drm_edid)
3676 {
3677 	struct detailed_mode_closure closure = {
3678 		.connector = connector,
3679 		.drm_edid = drm_edid,
3680 	};
3681 
3682 	if (drm_edid->edid->revision >= 1)
3683 		drm_for_each_detailed_block(drm_edid, do_inferred_modes, &closure);
3684 
3685 	return closure.modes;
3686 }
3687 
3688 static int
3689 drm_est3_modes(struct drm_connector *connector, const struct detailed_timing *timing)
3690 {
3691 	int i, j, m, modes = 0;
3692 	struct drm_display_mode *mode;
3693 	const u8 *est = ((const u8 *)timing) + 6;
3694 
3695 	for (i = 0; i < 6; i++) {
3696 		for (j = 7; j >= 0; j--) {
3697 			m = (i * 8) + (7 - j);
3698 			if (m >= ARRAY_SIZE(est3_modes))
3699 				break;
3700 			if (est[i] & (1 << j)) {
3701 				mode = drm_mode_find_dmt(connector->dev,
3702 							 est3_modes[m].w,
3703 							 est3_modes[m].h,
3704 							 est3_modes[m].r,
3705 							 est3_modes[m].rb);
3706 				if (mode) {
3707 					drm_mode_probed_add(connector, mode);
3708 					modes++;
3709 				}
3710 			}
3711 		}
3712 	}
3713 
3714 	return modes;
3715 }
3716 
3717 static void
3718 do_established_modes(const struct detailed_timing *timing, void *c)
3719 {
3720 	struct detailed_mode_closure *closure = c;
3721 
3722 	if (!is_display_descriptor(timing, EDID_DETAIL_EST_TIMINGS))
3723 		return;
3724 
3725 	closure->modes += drm_est3_modes(closure->connector, timing);
3726 }
3727 
3728 /*
3729  * Get established modes from EDID and add them. Each EDID block contains a
3730  * bitmap of the supported "established modes" list (defined above). Tease them
3731  * out and add them to the global modes list.
3732  */
3733 static int add_established_modes(struct drm_connector *connector,
3734 				 const struct drm_edid *drm_edid)
3735 {
3736 	struct drm_device *dev = connector->dev;
3737 	const struct edid *edid = drm_edid->edid;
3738 	unsigned long est_bits = edid->established_timings.t1 |
3739 		(edid->established_timings.t2 << 8) |
3740 		((edid->established_timings.mfg_rsvd & 0x80) << 9);
3741 	int i, modes = 0;
3742 	struct detailed_mode_closure closure = {
3743 		.connector = connector,
3744 		.drm_edid = drm_edid,
3745 	};
3746 
3747 	for (i = 0; i <= EDID_EST_TIMINGS; i++) {
3748 		if (est_bits & (1<<i)) {
3749 			struct drm_display_mode *newmode;
3750 
3751 			newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
3752 			if (newmode) {
3753 				drm_mode_probed_add(connector, newmode);
3754 				modes++;
3755 			}
3756 		}
3757 	}
3758 
3759 	if (edid->revision >= 1)
3760 		drm_for_each_detailed_block(drm_edid, do_established_modes,
3761 					    &closure);
3762 
3763 	return modes + closure.modes;
3764 }
3765 
3766 static void
3767 do_standard_modes(const struct detailed_timing *timing, void *c)
3768 {
3769 	struct detailed_mode_closure *closure = c;
3770 	const struct detailed_non_pixel *data = &timing->data.other_data;
3771 	struct drm_connector *connector = closure->connector;
3772 	int i;
3773 
3774 	if (!is_display_descriptor(timing, EDID_DETAIL_STD_MODES))
3775 		return;
3776 
3777 	for (i = 0; i < 6; i++) {
3778 		const struct std_timing *std = &data->data.timings[i];
3779 		struct drm_display_mode *newmode;
3780 
3781 		newmode = drm_mode_std(connector, closure->drm_edid, std);
3782 		if (newmode) {
3783 			drm_mode_probed_add(connector, newmode);
3784 			closure->modes++;
3785 		}
3786 	}
3787 }
3788 
3789 /*
3790  * Get standard modes from EDID and add them. Standard modes can be calculated
3791  * using the appropriate standard (DMT, GTF, or CVT). Grab them from EDID and
3792  * add them to the list.
3793  */
3794 static int add_standard_modes(struct drm_connector *connector,
3795 			      const struct drm_edid *drm_edid)
3796 {
3797 	int i, modes = 0;
3798 	struct detailed_mode_closure closure = {
3799 		.connector = connector,
3800 		.drm_edid = drm_edid,
3801 	};
3802 
3803 	for (i = 0; i < EDID_STD_TIMINGS; i++) {
3804 		struct drm_display_mode *newmode;
3805 
3806 		newmode = drm_mode_std(connector, drm_edid,
3807 				       &drm_edid->edid->standard_timings[i]);
3808 		if (newmode) {
3809 			drm_mode_probed_add(connector, newmode);
3810 			modes++;
3811 		}
3812 	}
3813 
3814 	if (drm_edid->edid->revision >= 1)
3815 		drm_for_each_detailed_block(drm_edid, do_standard_modes,
3816 					    &closure);
3817 
3818 	/* XXX should also look for standard codes in VTB blocks */
3819 
3820 	return modes + closure.modes;
3821 }
3822 
3823 static int drm_cvt_modes(struct drm_connector *connector,
3824 			 const struct detailed_timing *timing)
3825 {
3826 	int i, j, modes = 0;
3827 	struct drm_display_mode *newmode;
3828 	struct drm_device *dev = connector->dev;
3829 	const struct cvt_timing *cvt;
3830 	const int rates[] = { 60, 85, 75, 60, 50 };
3831 	const u8 empty[3] = { 0, 0, 0 };
3832 
3833 	for (i = 0; i < 4; i++) {
3834 		int width, height;
3835 
3836 		cvt = &(timing->data.other_data.data.cvt[i]);
3837 
3838 		if (!memcmp(cvt->code, empty, 3))
3839 			continue;
3840 
3841 		height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
3842 		switch (cvt->code[1] & 0x0c) {
3843 		/* default - because compiler doesn't see that we've enumerated all cases */
3844 		default:
3845 		case 0x00:
3846 			width = height * 4 / 3;
3847 			break;
3848 		case 0x04:
3849 			width = height * 16 / 9;
3850 			break;
3851 		case 0x08:
3852 			width = height * 16 / 10;
3853 			break;
3854 		case 0x0c:
3855 			width = height * 15 / 9;
3856 			break;
3857 		}
3858 
3859 		for (j = 1; j < 5; j++) {
3860 			if (cvt->code[2] & (1 << j)) {
3861 				newmode = drm_cvt_mode(dev, width, height,
3862 						       rates[j], j == 0,
3863 						       false, false);
3864 				if (newmode) {
3865 					drm_mode_probed_add(connector, newmode);
3866 					modes++;
3867 				}
3868 			}
3869 		}
3870 	}
3871 
3872 	return modes;
3873 }
3874 
3875 static void
3876 do_cvt_mode(const struct detailed_timing *timing, void *c)
3877 {
3878 	struct detailed_mode_closure *closure = c;
3879 
3880 	if (!is_display_descriptor(timing, EDID_DETAIL_CVT_3BYTE))
3881 		return;
3882 
3883 	closure->modes += drm_cvt_modes(closure->connector, timing);
3884 }
3885 
3886 static int
3887 add_cvt_modes(struct drm_connector *connector, const struct drm_edid *drm_edid)
3888 {
3889 	struct detailed_mode_closure closure = {
3890 		.connector = connector,
3891 		.drm_edid = drm_edid,
3892 	};
3893 
3894 	if (drm_edid->edid->revision >= 3)
3895 		drm_for_each_detailed_block(drm_edid, do_cvt_mode, &closure);
3896 
3897 	/* XXX should also look for CVT codes in VTB blocks */
3898 
3899 	return closure.modes;
3900 }
3901 
3902 static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode);
3903 
3904 static void
3905 do_detailed_mode(const struct detailed_timing *timing, void *c)
3906 {
3907 	struct detailed_mode_closure *closure = c;
3908 	struct drm_display_mode *newmode;
3909 
3910 	if (!is_detailed_timing_descriptor(timing))
3911 		return;
3912 
3913 	newmode = drm_mode_detailed(closure->connector->dev,
3914 				    closure->drm_edid, timing,
3915 				    closure->quirks);
3916 	if (!newmode)
3917 		return;
3918 
3919 	if (closure->preferred)
3920 		newmode->type |= DRM_MODE_TYPE_PREFERRED;
3921 
3922 	/*
3923 	 * Detailed modes are limited to 10kHz pixel clock resolution,
3924 	 * so fix up anything that looks like CEA/HDMI mode, but the clock
3925 	 * is just slightly off.
3926 	 */
3927 	fixup_detailed_cea_mode_clock(newmode);
3928 
3929 	drm_mode_probed_add(closure->connector, newmode);
3930 	closure->modes++;
3931 	closure->preferred = false;
3932 }
3933 
3934 /*
3935  * add_detailed_modes - Add modes from detailed timings
3936  * @connector: attached connector
3937  * @drm_edid: EDID block to scan
3938  * @quirks: quirks to apply
3939  */
3940 static int add_detailed_modes(struct drm_connector *connector,
3941 			      const struct drm_edid *drm_edid, u32 quirks)
3942 {
3943 	struct detailed_mode_closure closure = {
3944 		.connector = connector,
3945 		.drm_edid = drm_edid,
3946 		.quirks = quirks,
3947 	};
3948 
3949 	if (drm_edid->edid->revision >= 4)
3950 		closure.preferred = true; /* first detailed timing is always preferred */
3951 	else
3952 		closure.preferred =
3953 			drm_edid->edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING;
3954 
3955 	drm_for_each_detailed_block(drm_edid, do_detailed_mode, &closure);
3956 
3957 	return closure.modes;
3958 }
3959 
3960 /* CTA-861-H Table 60 - CTA Tag Codes */
3961 #define CTA_DB_AUDIO			1
3962 #define CTA_DB_VIDEO			2
3963 #define CTA_DB_VENDOR			3
3964 #define CTA_DB_SPEAKER			4
3965 #define CTA_DB_EXTENDED_TAG		7
3966 
3967 /* CTA-861-H Table 62 - CTA Extended Tag Codes */
3968 #define CTA_EXT_DB_VIDEO_CAP		0
3969 #define CTA_EXT_DB_VENDOR		1
3970 #define CTA_EXT_DB_HDR_STATIC_METADATA	6
3971 #define CTA_EXT_DB_420_VIDEO_DATA	14
3972 #define CTA_EXT_DB_420_VIDEO_CAP_MAP	15
3973 #define CTA_EXT_DB_HF_EEODB		0x78
3974 #define CTA_EXT_DB_HF_SCDB		0x79
3975 
3976 #define EDID_BASIC_AUDIO	(1 << 6)
3977 #define EDID_CEA_YCRCB444	(1 << 5)
3978 #define EDID_CEA_YCRCB422	(1 << 4)
3979 #define EDID_CEA_VCDB_QS	(1 << 6)
3980 
3981 /*
3982  * Search EDID for CEA extension block.
3983  *
3984  * FIXME: Prefer not returning pointers to raw EDID data.
3985  */
3986 const u8 *drm_find_edid_extension(const struct drm_edid *drm_edid,
3987 				  int ext_id, int *ext_index)
3988 {
3989 	const u8 *edid_ext = NULL;
3990 	int i;
3991 
3992 	/* No EDID or EDID extensions */
3993 	if (!drm_edid || !drm_edid_extension_block_count(drm_edid))
3994 		return NULL;
3995 
3996 	/* Find CEA extension */
3997 	for (i = *ext_index; i < drm_edid_extension_block_count(drm_edid); i++) {
3998 		edid_ext = drm_edid_extension_block_data(drm_edid, i);
3999 		if (edid_block_tag(edid_ext) == ext_id)
4000 			break;
4001 	}
4002 
4003 	if (i >= drm_edid_extension_block_count(drm_edid))
4004 		return NULL;
4005 
4006 	*ext_index = i + 1;
4007 
4008 	return edid_ext;
4009 }
4010 
4011 /* Return true if the EDID has a CTA extension or a DisplayID CTA data block */
4012 static bool drm_edid_has_cta_extension(const struct drm_edid *drm_edid)
4013 {
4014 	const struct displayid_block *block;
4015 	struct displayid_iter iter;
4016 	int ext_index = 0;
4017 	bool found = false;
4018 
4019 	/* Look for a top level CEA extension block */
4020 	if (drm_find_edid_extension(drm_edid, CEA_EXT, &ext_index))
4021 		return true;
4022 
4023 	/* CEA blocks can also be found embedded in a DisplayID block */
4024 	displayid_iter_edid_begin(drm_edid, &iter);
4025 	displayid_iter_for_each(block, &iter) {
4026 		if (block->tag == DATA_BLOCK_CTA) {
4027 			found = true;
4028 			break;
4029 		}
4030 	}
4031 	displayid_iter_end(&iter);
4032 
4033 	return found;
4034 }
4035 
4036 static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic)
4037 {
4038 	BUILD_BUG_ON(1 + ARRAY_SIZE(edid_cea_modes_1) - 1 != 127);
4039 	BUILD_BUG_ON(193 + ARRAY_SIZE(edid_cea_modes_193) - 1 != 219);
4040 
4041 	if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1))
4042 		return &edid_cea_modes_1[vic - 1];
4043 	if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193))
4044 		return &edid_cea_modes_193[vic - 193];
4045 	return NULL;
4046 }
4047 
4048 static u8 cea_num_vics(void)
4049 {
4050 	return 193 + ARRAY_SIZE(edid_cea_modes_193);
4051 }
4052 
4053 static u8 cea_next_vic(u8 vic)
4054 {
4055 	if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1))
4056 		vic = 193;
4057 	return vic;
4058 }
4059 
4060 /*
4061  * Calculate the alternate clock for the CEA mode
4062  * (60Hz vs. 59.94Hz etc.)
4063  */
4064 static unsigned int
4065 cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
4066 {
4067 	unsigned int clock = cea_mode->clock;
4068 
4069 	if (drm_mode_vrefresh(cea_mode) % 6 != 0)
4070 		return clock;
4071 
4072 	/*
4073 	 * edid_cea_modes contains the 59.94Hz
4074 	 * variant for 240 and 480 line modes,
4075 	 * and the 60Hz variant otherwise.
4076 	 */
4077 	if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
4078 		clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
4079 	else
4080 		clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
4081 
4082 	return clock;
4083 }
4084 
4085 static bool
4086 cea_mode_alternate_timings(u8 vic, struct drm_display_mode *mode)
4087 {
4088 	/*
4089 	 * For certain VICs the spec allows the vertical
4090 	 * front porch to vary by one or two lines.
4091 	 *
4092 	 * cea_modes[] stores the variant with the shortest
4093 	 * vertical front porch. We can adjust the mode to
4094 	 * get the other variants by simply increasing the
4095 	 * vertical front porch length.
4096 	 */
4097 	BUILD_BUG_ON(cea_mode_for_vic(8)->vtotal != 262 ||
4098 		     cea_mode_for_vic(9)->vtotal != 262 ||
4099 		     cea_mode_for_vic(12)->vtotal != 262 ||
4100 		     cea_mode_for_vic(13)->vtotal != 262 ||
4101 		     cea_mode_for_vic(23)->vtotal != 312 ||
4102 		     cea_mode_for_vic(24)->vtotal != 312 ||
4103 		     cea_mode_for_vic(27)->vtotal != 312 ||
4104 		     cea_mode_for_vic(28)->vtotal != 312);
4105 
4106 	if (((vic == 8 || vic == 9 ||
4107 	      vic == 12 || vic == 13) && mode->vtotal < 263) ||
4108 	    ((vic == 23 || vic == 24 ||
4109 	      vic == 27 || vic == 28) && mode->vtotal < 314)) {
4110 		mode->vsync_start++;
4111 		mode->vsync_end++;
4112 		mode->vtotal++;
4113 
4114 		return true;
4115 	}
4116 
4117 	return false;
4118 }
4119 
4120 static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match,
4121 					     unsigned int clock_tolerance)
4122 {
4123 	unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
4124 	u8 vic;
4125 
4126 	if (!to_match->clock)
4127 		return 0;
4128 
4129 	if (to_match->picture_aspect_ratio)
4130 		match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
4131 
4132 	for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
4133 		struct drm_display_mode cea_mode;
4134 		unsigned int clock1, clock2;
4135 
4136 		drm_mode_init(&cea_mode, cea_mode_for_vic(vic));
4137 
4138 		/* Check both 60Hz and 59.94Hz */
4139 		clock1 = cea_mode.clock;
4140 		clock2 = cea_mode_alternate_clock(&cea_mode);
4141 
4142 		if (abs(to_match->clock - clock1) > clock_tolerance &&
4143 		    abs(to_match->clock - clock2) > clock_tolerance)
4144 			continue;
4145 
4146 		do {
4147 			if (drm_mode_match(to_match, &cea_mode, match_flags))
4148 				return vic;
4149 		} while (cea_mode_alternate_timings(vic, &cea_mode));
4150 	}
4151 
4152 	return 0;
4153 }
4154 
4155 /**
4156  * drm_match_cea_mode - look for a CEA mode matching given mode
4157  * @to_match: display mode
4158  *
4159  * Return: The CEA Video ID (VIC) of the mode or 0 if it isn't a CEA-861
4160  * mode.
4161  */
4162 u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
4163 {
4164 	unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
4165 	u8 vic;
4166 
4167 	if (!to_match->clock)
4168 		return 0;
4169 
4170 	if (to_match->picture_aspect_ratio)
4171 		match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
4172 
4173 	for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
4174 		struct drm_display_mode cea_mode;
4175 		unsigned int clock1, clock2;
4176 
4177 		drm_mode_init(&cea_mode, cea_mode_for_vic(vic));
4178 
4179 		/* Check both 60Hz and 59.94Hz */
4180 		clock1 = cea_mode.clock;
4181 		clock2 = cea_mode_alternate_clock(&cea_mode);
4182 
4183 		if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) &&
4184 		    KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock2))
4185 			continue;
4186 
4187 		do {
4188 			if (drm_mode_match(to_match, &cea_mode, match_flags))
4189 				return vic;
4190 		} while (cea_mode_alternate_timings(vic, &cea_mode));
4191 	}
4192 
4193 	return 0;
4194 }
4195 EXPORT_SYMBOL(drm_match_cea_mode);
4196 
4197 static bool drm_valid_cea_vic(u8 vic)
4198 {
4199 	return cea_mode_for_vic(vic) != NULL;
4200 }
4201 
4202 static enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
4203 {
4204 	const struct drm_display_mode *mode = cea_mode_for_vic(video_code);
4205 
4206 	if (mode)
4207 		return mode->picture_aspect_ratio;
4208 
4209 	return HDMI_PICTURE_ASPECT_NONE;
4210 }
4211 
4212 static enum hdmi_picture_aspect drm_get_hdmi_aspect_ratio(const u8 video_code)
4213 {
4214 	return edid_4k_modes[video_code].picture_aspect_ratio;
4215 }
4216 
4217 /*
4218  * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
4219  * specific block).
4220  */
4221 static unsigned int
4222 hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
4223 {
4224 	return cea_mode_alternate_clock(hdmi_mode);
4225 }
4226 
4227 static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_match,
4228 					      unsigned int clock_tolerance)
4229 {
4230 	unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
4231 	u8 vic;
4232 
4233 	if (!to_match->clock)
4234 		return 0;
4235 
4236 	if (to_match->picture_aspect_ratio)
4237 		match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
4238 
4239 	for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
4240 		const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
4241 		unsigned int clock1, clock2;
4242 
4243 		/* Make sure to also match alternate clocks */
4244 		clock1 = hdmi_mode->clock;
4245 		clock2 = hdmi_mode_alternate_clock(hdmi_mode);
4246 
4247 		if (abs(to_match->clock - clock1) > clock_tolerance &&
4248 		    abs(to_match->clock - clock2) > clock_tolerance)
4249 			continue;
4250 
4251 		if (drm_mode_match(to_match, hdmi_mode, match_flags))
4252 			return vic;
4253 	}
4254 
4255 	return 0;
4256 }
4257 
4258 /*
4259  * drm_match_hdmi_mode - look for a HDMI mode matching given mode
4260  * @to_match: display mode
4261  *
4262  * An HDMI mode is one defined in the HDMI vendor specific block.
4263  *
4264  * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
4265  */
4266 static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
4267 {
4268 	unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
4269 	u8 vic;
4270 
4271 	if (!to_match->clock)
4272 		return 0;
4273 
4274 	if (to_match->picture_aspect_ratio)
4275 		match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
4276 
4277 	for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
4278 		const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
4279 		unsigned int clock1, clock2;
4280 
4281 		/* Make sure to also match alternate clocks */
4282 		clock1 = hdmi_mode->clock;
4283 		clock2 = hdmi_mode_alternate_clock(hdmi_mode);
4284 
4285 		if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
4286 		     KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
4287 		    drm_mode_match(to_match, hdmi_mode, match_flags))
4288 			return vic;
4289 	}
4290 	return 0;
4291 }
4292 
4293 static bool drm_valid_hdmi_vic(u8 vic)
4294 {
4295 	return vic > 0 && vic < ARRAY_SIZE(edid_4k_modes);
4296 }
4297 
4298 static int add_alternate_cea_modes(struct drm_connector *connector,
4299 				   const struct drm_edid *drm_edid)
4300 {
4301 	struct drm_device *dev = connector->dev;
4302 	struct drm_display_mode *mode, *tmp;
4303 	LIST_HEAD(list);
4304 	int modes = 0;
4305 
4306 	/* Don't add CTA modes if the CTA extension block is missing */
4307 	if (!drm_edid_has_cta_extension(drm_edid))
4308 		return 0;
4309 
4310 	/*
4311 	 * Go through all probed modes and create a new mode
4312 	 * with the alternate clock for certain CEA modes.
4313 	 */
4314 	list_for_each_entry(mode, &connector->probed_modes, head) {
4315 		const struct drm_display_mode *cea_mode = NULL;
4316 		struct drm_display_mode *newmode;
4317 		u8 vic = drm_match_cea_mode(mode);
4318 		unsigned int clock1, clock2;
4319 
4320 		if (drm_valid_cea_vic(vic)) {
4321 			cea_mode = cea_mode_for_vic(vic);
4322 			clock2 = cea_mode_alternate_clock(cea_mode);
4323 		} else {
4324 			vic = drm_match_hdmi_mode(mode);
4325 			if (drm_valid_hdmi_vic(vic)) {
4326 				cea_mode = &edid_4k_modes[vic];
4327 				clock2 = hdmi_mode_alternate_clock(cea_mode);
4328 			}
4329 		}
4330 
4331 		if (!cea_mode)
4332 			continue;
4333 
4334 		clock1 = cea_mode->clock;
4335 
4336 		if (clock1 == clock2)
4337 			continue;
4338 
4339 		if (mode->clock != clock1 && mode->clock != clock2)
4340 			continue;
4341 
4342 		newmode = drm_mode_duplicate(dev, cea_mode);
4343 		if (!newmode)
4344 			continue;
4345 
4346 		/* Carry over the stereo flags */
4347 		newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
4348 
4349 		/*
4350 		 * The current mode could be either variant. Make
4351 		 * sure to pick the "other" clock for the new mode.
4352 		 */
4353 		if (mode->clock != clock1)
4354 			newmode->clock = clock1;
4355 		else
4356 			newmode->clock = clock2;
4357 
4358 		list_add_tail(&newmode->head, &list);
4359 	}
4360 
4361 	list_for_each_entry_safe(mode, tmp, &list, head) {
4362 		list_del(&mode->head);
4363 		drm_mode_probed_add(connector, mode);
4364 		modes++;
4365 	}
4366 
4367 	return modes;
4368 }
4369 
4370 static u8 svd_to_vic(u8 svd)
4371 {
4372 	/* 0-6 bit vic, 7th bit native mode indicator */
4373 	if ((svd >= 1 &&  svd <= 64) || (svd >= 129 && svd <= 192))
4374 		return svd & 127;
4375 
4376 	return svd;
4377 }
4378 
4379 static struct drm_display_mode *
4380 drm_display_mode_from_vic_index(struct drm_connector *connector,
4381 				const u8 *video_db, u8 video_len,
4382 				u8 video_index)
4383 {
4384 	struct drm_device *dev = connector->dev;
4385 	struct drm_display_mode *newmode;
4386 	u8 vic;
4387 
4388 	if (video_db == NULL || video_index >= video_len)
4389 		return NULL;
4390 
4391 	/* CEA modes are numbered 1..127 */
4392 	vic = svd_to_vic(video_db[video_index]);
4393 	if (!drm_valid_cea_vic(vic))
4394 		return NULL;
4395 
4396 	newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
4397 	if (!newmode)
4398 		return NULL;
4399 
4400 	return newmode;
4401 }
4402 
4403 /*
4404  * do_y420vdb_modes - Parse YCBCR 420 only modes
4405  * @connector: connector corresponding to the HDMI sink
4406  * @svds: start of the data block of CEA YCBCR 420 VDB
4407  * @len: length of the CEA YCBCR 420 VDB
4408  *
4409  * Parse the CEA-861-F YCBCR 420 Video Data Block (Y420VDB)
4410  * which contains modes which can be supported in YCBCR 420
4411  * output format only.
4412  */
4413 static int do_y420vdb_modes(struct drm_connector *connector,
4414 			    const u8 *svds, u8 svds_len)
4415 {
4416 	int modes = 0, i;
4417 	struct drm_device *dev = connector->dev;
4418 	struct drm_display_info *info = &connector->display_info;
4419 	struct drm_hdmi_info *hdmi = &info->hdmi;
4420 
4421 	for (i = 0; i < svds_len; i++) {
4422 		u8 vic = svd_to_vic(svds[i]);
4423 		struct drm_display_mode *newmode;
4424 
4425 		if (!drm_valid_cea_vic(vic))
4426 			continue;
4427 
4428 		newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
4429 		if (!newmode)
4430 			break;
4431 		bitmap_set(hdmi->y420_vdb_modes, vic, 1);
4432 		drm_mode_probed_add(connector, newmode);
4433 		modes++;
4434 	}
4435 
4436 	if (modes > 0)
4437 		info->color_formats |= DRM_COLOR_FORMAT_YCBCR420;
4438 	return modes;
4439 }
4440 
4441 /*
4442  * drm_add_cmdb_modes - Add a YCBCR 420 mode into bitmap
4443  * @connector: connector corresponding to the HDMI sink
4444  * @vic: CEA vic for the video mode to be added in the map
4445  *
4446  * Makes an entry for a videomode in the YCBCR 420 bitmap
4447  */
4448 static void
4449 drm_add_cmdb_modes(struct drm_connector *connector, u8 svd)
4450 {
4451 	u8 vic = svd_to_vic(svd);
4452 	struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
4453 
4454 	if (!drm_valid_cea_vic(vic))
4455 		return;
4456 
4457 	bitmap_set(hdmi->y420_cmdb_modes, vic, 1);
4458 }
4459 
4460 /**
4461  * drm_display_mode_from_cea_vic() - return a mode for CEA VIC
4462  * @dev: DRM device
4463  * @video_code: CEA VIC of the mode
4464  *
4465  * Creates a new mode matching the specified CEA VIC.
4466  *
4467  * Returns: A new drm_display_mode on success or NULL on failure
4468  */
4469 struct drm_display_mode *
4470 drm_display_mode_from_cea_vic(struct drm_device *dev,
4471 			      u8 video_code)
4472 {
4473 	const struct drm_display_mode *cea_mode;
4474 	struct drm_display_mode *newmode;
4475 
4476 	cea_mode = cea_mode_for_vic(video_code);
4477 	if (!cea_mode)
4478 		return NULL;
4479 
4480 	newmode = drm_mode_duplicate(dev, cea_mode);
4481 	if (!newmode)
4482 		return NULL;
4483 
4484 	return newmode;
4485 }
4486 EXPORT_SYMBOL(drm_display_mode_from_cea_vic);
4487 
4488 static int
4489 do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
4490 {
4491 	int i, modes = 0;
4492 	struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
4493 
4494 	for (i = 0; i < len; i++) {
4495 		struct drm_display_mode *mode;
4496 
4497 		mode = drm_display_mode_from_vic_index(connector, db, len, i);
4498 		if (mode) {
4499 			/*
4500 			 * YCBCR420 capability block contains a bitmap which
4501 			 * gives the index of CEA modes from CEA VDB, which
4502 			 * can support YCBCR 420 sampling output also (apart
4503 			 * from RGB/YCBCR444 etc).
4504 			 * For example, if the bit 0 in bitmap is set,
4505 			 * first mode in VDB can support YCBCR420 output too.
4506 			 * Add YCBCR420 modes only if sink is HDMI 2.0 capable.
4507 			 */
4508 			if (i < 64 && hdmi->y420_cmdb_map & (1ULL << i))
4509 				drm_add_cmdb_modes(connector, db[i]);
4510 
4511 			drm_mode_probed_add(connector, mode);
4512 			modes++;
4513 		}
4514 	}
4515 
4516 	return modes;
4517 }
4518 
4519 struct stereo_mandatory_mode {
4520 	int width, height, vrefresh;
4521 	unsigned int flags;
4522 };
4523 
4524 static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
4525 	{ 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
4526 	{ 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
4527 	{ 1920, 1080, 50,
4528 	  DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
4529 	{ 1920, 1080, 60,
4530 	  DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
4531 	{ 1280, 720,  50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
4532 	{ 1280, 720,  50, DRM_MODE_FLAG_3D_FRAME_PACKING },
4533 	{ 1280, 720,  60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
4534 	{ 1280, 720,  60, DRM_MODE_FLAG_3D_FRAME_PACKING }
4535 };
4536 
4537 static bool
4538 stereo_match_mandatory(const struct drm_display_mode *mode,
4539 		       const struct stereo_mandatory_mode *stereo_mode)
4540 {
4541 	unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
4542 
4543 	return mode->hdisplay == stereo_mode->width &&
4544 	       mode->vdisplay == stereo_mode->height &&
4545 	       interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
4546 	       drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
4547 }
4548 
4549 static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
4550 {
4551 	struct drm_device *dev = connector->dev;
4552 	const struct drm_display_mode *mode;
4553 	struct list_head stereo_modes;
4554 	int modes = 0, i;
4555 
4556 	INIT_LIST_HEAD(&stereo_modes);
4557 
4558 	list_for_each_entry(mode, &connector->probed_modes, head) {
4559 		for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
4560 			const struct stereo_mandatory_mode *mandatory;
4561 			struct drm_display_mode *new_mode;
4562 
4563 			if (!stereo_match_mandatory(mode,
4564 						    &stereo_mandatory_modes[i]))
4565 				continue;
4566 
4567 			mandatory = &stereo_mandatory_modes[i];
4568 			new_mode = drm_mode_duplicate(dev, mode);
4569 			if (!new_mode)
4570 				continue;
4571 
4572 			new_mode->flags |= mandatory->flags;
4573 			list_add_tail(&new_mode->head, &stereo_modes);
4574 			modes++;
4575 		}
4576 	}
4577 
4578 	list_splice_tail(&stereo_modes, &connector->probed_modes);
4579 
4580 	return modes;
4581 }
4582 
4583 static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
4584 {
4585 	struct drm_device *dev = connector->dev;
4586 	struct drm_display_mode *newmode;
4587 
4588 	if (!drm_valid_hdmi_vic(vic)) {
4589 		DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
4590 		return 0;
4591 	}
4592 
4593 	newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
4594 	if (!newmode)
4595 		return 0;
4596 
4597 	drm_mode_probed_add(connector, newmode);
4598 
4599 	return 1;
4600 }
4601 
4602 static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
4603 			       const u8 *video_db, u8 video_len, u8 video_index)
4604 {
4605 	struct drm_display_mode *newmode;
4606 	int modes = 0;
4607 
4608 	if (structure & (1 << 0)) {
4609 		newmode = drm_display_mode_from_vic_index(connector, video_db,
4610 							  video_len,
4611 							  video_index);
4612 		if (newmode) {
4613 			newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
4614 			drm_mode_probed_add(connector, newmode);
4615 			modes++;
4616 		}
4617 	}
4618 	if (structure & (1 << 6)) {
4619 		newmode = drm_display_mode_from_vic_index(connector, video_db,
4620 							  video_len,
4621 							  video_index);
4622 		if (newmode) {
4623 			newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
4624 			drm_mode_probed_add(connector, newmode);
4625 			modes++;
4626 		}
4627 	}
4628 	if (structure & (1 << 8)) {
4629 		newmode = drm_display_mode_from_vic_index(connector, video_db,
4630 							  video_len,
4631 							  video_index);
4632 		if (newmode) {
4633 			newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
4634 			drm_mode_probed_add(connector, newmode);
4635 			modes++;
4636 		}
4637 	}
4638 
4639 	return modes;
4640 }
4641 
4642 /*
4643  * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
4644  * @connector: connector corresponding to the HDMI sink
4645  * @db: start of the CEA vendor specific block
4646  * @len: length of the CEA block payload, ie. one can access up to db[len]
4647  *
4648  * Parses the HDMI VSDB looking for modes to add to @connector. This function
4649  * also adds the stereo 3d modes when applicable.
4650  */
4651 static int
4652 do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
4653 		   const u8 *video_db, u8 video_len)
4654 {
4655 	struct drm_display_info *info = &connector->display_info;
4656 	int modes = 0, offset = 0, i, multi_present = 0, multi_len;
4657 	u8 vic_len, hdmi_3d_len = 0;
4658 	u16 mask;
4659 	u16 structure_all;
4660 
4661 	if (len < 8)
4662 		goto out;
4663 
4664 	/* no HDMI_Video_Present */
4665 	if (!(db[8] & (1 << 5)))
4666 		goto out;
4667 
4668 	/* Latency_Fields_Present */
4669 	if (db[8] & (1 << 7))
4670 		offset += 2;
4671 
4672 	/* I_Latency_Fields_Present */
4673 	if (db[8] & (1 << 6))
4674 		offset += 2;
4675 
4676 	/* the declared length is not long enough for the 2 first bytes
4677 	 * of additional video format capabilities */
4678 	if (len < (8 + offset + 2))
4679 		goto out;
4680 
4681 	/* 3D_Present */
4682 	offset++;
4683 	if (db[8 + offset] & (1 << 7)) {
4684 		modes += add_hdmi_mandatory_stereo_modes(connector);
4685 
4686 		/* 3D_Multi_present */
4687 		multi_present = (db[8 + offset] & 0x60) >> 5;
4688 	}
4689 
4690 	offset++;
4691 	vic_len = db[8 + offset] >> 5;
4692 	hdmi_3d_len = db[8 + offset] & 0x1f;
4693 
4694 	for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
4695 		u8 vic;
4696 
4697 		vic = db[9 + offset + i];
4698 		modes += add_hdmi_mode(connector, vic);
4699 	}
4700 	offset += 1 + vic_len;
4701 
4702 	if (multi_present == 1)
4703 		multi_len = 2;
4704 	else if (multi_present == 2)
4705 		multi_len = 4;
4706 	else
4707 		multi_len = 0;
4708 
4709 	if (len < (8 + offset + hdmi_3d_len - 1))
4710 		goto out;
4711 
4712 	if (hdmi_3d_len < multi_len)
4713 		goto out;
4714 
4715 	if (multi_present == 1 || multi_present == 2) {
4716 		/* 3D_Structure_ALL */
4717 		structure_all = (db[8 + offset] << 8) | db[9 + offset];
4718 
4719 		/* check if 3D_MASK is present */
4720 		if (multi_present == 2)
4721 			mask = (db[10 + offset] << 8) | db[11 + offset];
4722 		else
4723 			mask = 0xffff;
4724 
4725 		for (i = 0; i < 16; i++) {
4726 			if (mask & (1 << i))
4727 				modes += add_3d_struct_modes(connector,
4728 						structure_all,
4729 						video_db,
4730 						video_len, i);
4731 		}
4732 	}
4733 
4734 	offset += multi_len;
4735 
4736 	for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
4737 		int vic_index;
4738 		struct drm_display_mode *newmode = NULL;
4739 		unsigned int newflag = 0;
4740 		bool detail_present;
4741 
4742 		detail_present = ((db[8 + offset + i] & 0x0f) > 7);
4743 
4744 		if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
4745 			break;
4746 
4747 		/* 2D_VIC_order_X */
4748 		vic_index = db[8 + offset + i] >> 4;
4749 
4750 		/* 3D_Structure_X */
4751 		switch (db[8 + offset + i] & 0x0f) {
4752 		case 0:
4753 			newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
4754 			break;
4755 		case 6:
4756 			newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
4757 			break;
4758 		case 8:
4759 			/* 3D_Detail_X */
4760 			if ((db[9 + offset + i] >> 4) == 1)
4761 				newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
4762 			break;
4763 		}
4764 
4765 		if (newflag != 0) {
4766 			newmode = drm_display_mode_from_vic_index(connector,
4767 								  video_db,
4768 								  video_len,
4769 								  vic_index);
4770 
4771 			if (newmode) {
4772 				newmode->flags |= newflag;
4773 				drm_mode_probed_add(connector, newmode);
4774 				modes++;
4775 			}
4776 		}
4777 
4778 		if (detail_present)
4779 			i++;
4780 	}
4781 
4782 out:
4783 	if (modes > 0)
4784 		info->has_hdmi_infoframe = true;
4785 	return modes;
4786 }
4787 
4788 static int
4789 cea_revision(const u8 *cea)
4790 {
4791 	/*
4792 	 * FIXME is this correct for the DispID variant?
4793 	 * The DispID spec doesn't really specify whether
4794 	 * this is the revision of the CEA extension or
4795 	 * the DispID CEA data block. And the only value
4796 	 * given as an example is 0.
4797 	 */
4798 	return cea[1];
4799 }
4800 
4801 /*
4802  * CTA Data Block iterator.
4803  *
4804  * Iterate through all CTA Data Blocks in both EDID CTA Extensions and DisplayID
4805  * CTA Data Blocks.
4806  *
4807  * struct cea_db *db:
4808  * struct cea_db_iter iter;
4809  *
4810  * cea_db_iter_edid_begin(edid, &iter);
4811  * cea_db_iter_for_each(db, &iter) {
4812  *         // do stuff with db
4813  * }
4814  * cea_db_iter_end(&iter);
4815  */
4816 struct cea_db_iter {
4817 	struct drm_edid_iter edid_iter;
4818 	struct displayid_iter displayid_iter;
4819 
4820 	/* Current Data Block Collection. */
4821 	const u8 *collection;
4822 
4823 	/* Current Data Block index in current collection. */
4824 	int index;
4825 
4826 	/* End index in current collection. */
4827 	int end;
4828 };
4829 
4830 /* CTA-861-H section 7.4 CTA Data BLock Collection */
4831 struct cea_db {
4832 	u8 tag_length;
4833 	u8 data[];
4834 } __packed;
4835 
4836 static int cea_db_tag(const struct cea_db *db)
4837 {
4838 	return db->tag_length >> 5;
4839 }
4840 
4841 static int cea_db_payload_len(const void *_db)
4842 {
4843 	/* FIXME: Transition to passing struct cea_db * everywhere. */
4844 	const struct cea_db *db = _db;
4845 
4846 	return db->tag_length & 0x1f;
4847 }
4848 
4849 static const void *cea_db_data(const struct cea_db *db)
4850 {
4851 	return db->data;
4852 }
4853 
4854 static bool cea_db_is_extended_tag(const struct cea_db *db, int tag)
4855 {
4856 	return cea_db_tag(db) == CTA_DB_EXTENDED_TAG &&
4857 		cea_db_payload_len(db) >= 1 &&
4858 		db->data[0] == tag;
4859 }
4860 
4861 static bool cea_db_is_vendor(const struct cea_db *db, int vendor_oui)
4862 {
4863 	const u8 *data = cea_db_data(db);
4864 
4865 	return cea_db_tag(db) == CTA_DB_VENDOR &&
4866 		cea_db_payload_len(db) >= 3 &&
4867 		oui(data[2], data[1], data[0]) == vendor_oui;
4868 }
4869 
4870 static void cea_db_iter_edid_begin(const struct drm_edid *drm_edid,
4871 				   struct cea_db_iter *iter)
4872 {
4873 	memset(iter, 0, sizeof(*iter));
4874 
4875 	drm_edid_iter_begin(drm_edid, &iter->edid_iter);
4876 	displayid_iter_edid_begin(drm_edid, &iter->displayid_iter);
4877 }
4878 
4879 static const struct cea_db *
4880 __cea_db_iter_current_block(const struct cea_db_iter *iter)
4881 {
4882 	const struct cea_db *db;
4883 
4884 	if (!iter->collection)
4885 		return NULL;
4886 
4887 	db = (const struct cea_db *)&iter->collection[iter->index];
4888 
4889 	if (iter->index + sizeof(*db) <= iter->end &&
4890 	    iter->index + sizeof(*db) + cea_db_payload_len(db) <= iter->end)
4891 		return db;
4892 
4893 	return NULL;
4894 }
4895 
4896 /*
4897  * References:
4898  * - CTA-861-H section 7.3.3 CTA Extension Version 3
4899  */
4900 static int cea_db_collection_size(const u8 *cta)
4901 {
4902 	u8 d = cta[2];
4903 
4904 	if (d < 4 || d > 127)
4905 		return 0;
4906 
4907 	return d - 4;
4908 }
4909 
4910 /*
4911  * References:
4912  * - VESA E-EDID v1.4
4913  * - CTA-861-H section 7.3.3 CTA Extension Version 3
4914  */
4915 static const void *__cea_db_iter_edid_next(struct cea_db_iter *iter)
4916 {
4917 	const u8 *ext;
4918 
4919 	drm_edid_iter_for_each(ext, &iter->edid_iter) {
4920 		int size;
4921 
4922 		/* Only support CTA Extension revision 3+ */
4923 		if (ext[0] != CEA_EXT || cea_revision(ext) < 3)
4924 			continue;
4925 
4926 		size = cea_db_collection_size(ext);
4927 		if (!size)
4928 			continue;
4929 
4930 		iter->index = 4;
4931 		iter->end = iter->index + size;
4932 
4933 		return ext;
4934 	}
4935 
4936 	return NULL;
4937 }
4938 
4939 /*
4940  * References:
4941  * - DisplayID v1.3 Appendix C: CEA Data Block within a DisplayID Data Block
4942  * - DisplayID v2.0 section 4.10 CTA DisplayID Data Block
4943  *
4944  * Note that the above do not specify any connection between DisplayID Data
4945  * Block revision and CTA Extension versions.
4946  */
4947 static const void *__cea_db_iter_displayid_next(struct cea_db_iter *iter)
4948 {
4949 	const struct displayid_block *block;
4950 
4951 	displayid_iter_for_each(block, &iter->displayid_iter) {
4952 		if (block->tag != DATA_BLOCK_CTA)
4953 			continue;
4954 
4955 		/*
4956 		 * The displayid iterator has already verified the block bounds
4957 		 * in displayid_iter_block().
4958 		 */
4959 		iter->index = sizeof(*block);
4960 		iter->end = iter->index + block->num_bytes;
4961 
4962 		return block;
4963 	}
4964 
4965 	return NULL;
4966 }
4967 
4968 static const struct cea_db *__cea_db_iter_next(struct cea_db_iter *iter)
4969 {
4970 	const struct cea_db *db;
4971 
4972 	if (iter->collection) {
4973 		/* Current collection should always be valid. */
4974 		db = __cea_db_iter_current_block(iter);
4975 		if (WARN_ON(!db)) {
4976 			iter->collection = NULL;
4977 			return NULL;
4978 		}
4979 
4980 		/* Next block in CTA Data Block Collection */
4981 		iter->index += sizeof(*db) + cea_db_payload_len(db);
4982 
4983 		db = __cea_db_iter_current_block(iter);
4984 		if (db)
4985 			return db;
4986 	}
4987 
4988 	for (;;) {
4989 		/*
4990 		 * Find the next CTA Data Block Collection. First iterate all
4991 		 * the EDID CTA Extensions, then all the DisplayID CTA blocks.
4992 		 *
4993 		 * Per DisplayID v1.3 Appendix B: DisplayID as an EDID
4994 		 * Extension, it's recommended that DisplayID extensions are
4995 		 * exposed after all of the CTA Extensions.
4996 		 */
4997 		iter->collection = __cea_db_iter_edid_next(iter);
4998 		if (!iter->collection)
4999 			iter->collection = __cea_db_iter_displayid_next(iter);
5000 
5001 		if (!iter->collection)
5002 			return NULL;
5003 
5004 		db = __cea_db_iter_current_block(iter);
5005 		if (db)
5006 			return db;
5007 	}
5008 }
5009 
5010 #define cea_db_iter_for_each(__db, __iter) \
5011 	while (((__db) = __cea_db_iter_next(__iter)))
5012 
5013 static void cea_db_iter_end(struct cea_db_iter *iter)
5014 {
5015 	displayid_iter_end(&iter->displayid_iter);
5016 	drm_edid_iter_end(&iter->edid_iter);
5017 
5018 	memset(iter, 0, sizeof(*iter));
5019 }
5020 
5021 static bool cea_db_is_hdmi_vsdb(const struct cea_db *db)
5022 {
5023 	return cea_db_is_vendor(db, HDMI_IEEE_OUI) &&
5024 		cea_db_payload_len(db) >= 5;
5025 }
5026 
5027 static bool cea_db_is_hdmi_forum_vsdb(const struct cea_db *db)
5028 {
5029 	return cea_db_is_vendor(db, HDMI_FORUM_IEEE_OUI) &&
5030 		cea_db_payload_len(db) >= 7;
5031 }
5032 
5033 static bool cea_db_is_hdmi_forum_eeodb(const void *db)
5034 {
5035 	return cea_db_is_extended_tag(db, CTA_EXT_DB_HF_EEODB) &&
5036 		cea_db_payload_len(db) >= 2;
5037 }
5038 
5039 static bool cea_db_is_microsoft_vsdb(const struct cea_db *db)
5040 {
5041 	return cea_db_is_vendor(db, MICROSOFT_IEEE_OUI) &&
5042 		cea_db_payload_len(db) == 21;
5043 }
5044 
5045 static bool cea_db_is_vcdb(const struct cea_db *db)
5046 {
5047 	return cea_db_is_extended_tag(db, CTA_EXT_DB_VIDEO_CAP) &&
5048 		cea_db_payload_len(db) == 2;
5049 }
5050 
5051 static bool cea_db_is_hdmi_forum_scdb(const struct cea_db *db)
5052 {
5053 	return cea_db_is_extended_tag(db, CTA_EXT_DB_HF_SCDB) &&
5054 		cea_db_payload_len(db) >= 7;
5055 }
5056 
5057 static bool cea_db_is_y420cmdb(const struct cea_db *db)
5058 {
5059 	return cea_db_is_extended_tag(db, CTA_EXT_DB_420_VIDEO_CAP_MAP);
5060 }
5061 
5062 static bool cea_db_is_y420vdb(const struct cea_db *db)
5063 {
5064 	return cea_db_is_extended_tag(db, CTA_EXT_DB_420_VIDEO_DATA);
5065 }
5066 
5067 static bool cea_db_is_hdmi_hdr_metadata_block(const struct cea_db *db)
5068 {
5069 	return cea_db_is_extended_tag(db, CTA_EXT_DB_HDR_STATIC_METADATA) &&
5070 		cea_db_payload_len(db) >= 3;
5071 }
5072 
5073 /*
5074  * Get the HF-EEODB override extension block count from EDID.
5075  *
5076  * The passed in EDID may be partially read, as long as it has at least two
5077  * blocks (base block and one extension block) if EDID extension count is > 0.
5078  *
5079  * Note that this is *not* how you should parse CTA Data Blocks in general; this
5080  * is only to handle partially read EDIDs. Normally, use the CTA Data Block
5081  * iterators instead.
5082  *
5083  * References:
5084  * - HDMI 2.1 section 10.3.6 HDMI Forum EDID Extension Override Data Block
5085  */
5086 static int edid_hfeeodb_extension_block_count(const struct edid *edid)
5087 {
5088 	const u8 *cta;
5089 
5090 	/* No extensions according to base block, no HF-EEODB. */
5091 	if (!edid_extension_block_count(edid))
5092 		return 0;
5093 
5094 	/* HF-EEODB is always in the first EDID extension block only */
5095 	cta = edid_extension_block_data(edid, 0);
5096 	if (edid_block_tag(cta) != CEA_EXT || cea_revision(cta) < 3)
5097 		return 0;
5098 
5099 	/* Need to have the data block collection, and at least 3 bytes. */
5100 	if (cea_db_collection_size(cta) < 3)
5101 		return 0;
5102 
5103 	/*
5104 	 * Sinks that include the HF-EEODB in their E-EDID shall include one and
5105 	 * only one instance of the HF-EEODB in the E-EDID, occupying bytes 4
5106 	 * through 6 of Block 1 of the E-EDID.
5107 	 */
5108 	if (!cea_db_is_hdmi_forum_eeodb(&cta[4]))
5109 		return 0;
5110 
5111 	return cta[4 + 2];
5112 }
5113 
5114 static void drm_parse_y420cmdb_bitmap(struct drm_connector *connector,
5115 				      const u8 *db)
5116 {
5117 	struct drm_display_info *info = &connector->display_info;
5118 	struct drm_hdmi_info *hdmi = &info->hdmi;
5119 	u8 map_len = cea_db_payload_len(db) - 1;
5120 	u8 count;
5121 	u64 map = 0;
5122 
5123 	if (map_len == 0) {
5124 		/* All CEA modes support ycbcr420 sampling also.*/
5125 		hdmi->y420_cmdb_map = U64_MAX;
5126 		info->color_formats |= DRM_COLOR_FORMAT_YCBCR420;
5127 		return;
5128 	}
5129 
5130 	/*
5131 	 * This map indicates which of the existing CEA block modes
5132 	 * from VDB can support YCBCR420 output too. So if bit=0 is
5133 	 * set, first mode from VDB can support YCBCR420 output too.
5134 	 * We will parse and keep this map, before parsing VDB itself
5135 	 * to avoid going through the same block again and again.
5136 	 *
5137 	 * Spec is not clear about max possible size of this block.
5138 	 * Clamping max bitmap block size at 8 bytes. Every byte can
5139 	 * address 8 CEA modes, in this way this map can address
5140 	 * 8*8 = first 64 SVDs.
5141 	 */
5142 	if (WARN_ON_ONCE(map_len > 8))
5143 		map_len = 8;
5144 
5145 	for (count = 0; count < map_len; count++)
5146 		map |= (u64)db[2 + count] << (8 * count);
5147 
5148 	if (map)
5149 		info->color_formats |= DRM_COLOR_FORMAT_YCBCR420;
5150 
5151 	hdmi->y420_cmdb_map = map;
5152 }
5153 
5154 static int add_cea_modes(struct drm_connector *connector,
5155 			 const struct drm_edid *drm_edid)
5156 {
5157 	const struct cea_db *db;
5158 	struct cea_db_iter iter;
5159 	int modes = 0;
5160 
5161 	cea_db_iter_edid_begin(drm_edid, &iter);
5162 	cea_db_iter_for_each(db, &iter) {
5163 		const u8 *hdmi = NULL, *video = NULL;
5164 		u8 hdmi_len = 0, video_len = 0;
5165 
5166 		if (cea_db_tag(db) == CTA_DB_VIDEO) {
5167 			video = cea_db_data(db);
5168 			video_len = cea_db_payload_len(db);
5169 			modes += do_cea_modes(connector, video, video_len);
5170 		} else if (cea_db_is_hdmi_vsdb(db)) {
5171 			/* FIXME: Switch to use cea_db_data() */
5172 			hdmi = (const u8 *)db;
5173 			hdmi_len = cea_db_payload_len(db);
5174 		} else if (cea_db_is_y420vdb(db)) {
5175 			const u8 *vdb420 = cea_db_data(db) + 1;
5176 
5177 			/* Add 4:2:0(only) modes present in EDID */
5178 			modes += do_y420vdb_modes(connector, vdb420,
5179 						  cea_db_payload_len(db) - 1);
5180 		}
5181 
5182 		/*
5183 		 * We parse the HDMI VSDB after having added the cea modes as we
5184 		 * will be patching their flags when the sink supports stereo
5185 		 * 3D.
5186 		 */
5187 		if (hdmi)
5188 			modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len,
5189 						    video, video_len);
5190 	}
5191 	cea_db_iter_end(&iter);
5192 
5193 	return modes;
5194 }
5195 
5196 static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode)
5197 {
5198 	const struct drm_display_mode *cea_mode;
5199 	int clock1, clock2, clock;
5200 	u8 vic;
5201 	const char *type;
5202 
5203 	/*
5204 	 * allow 5kHz clock difference either way to account for
5205 	 * the 10kHz clock resolution limit of detailed timings.
5206 	 */
5207 	vic = drm_match_cea_mode_clock_tolerance(mode, 5);
5208 	if (drm_valid_cea_vic(vic)) {
5209 		type = "CEA";
5210 		cea_mode = cea_mode_for_vic(vic);
5211 		clock1 = cea_mode->clock;
5212 		clock2 = cea_mode_alternate_clock(cea_mode);
5213 	} else {
5214 		vic = drm_match_hdmi_mode_clock_tolerance(mode, 5);
5215 		if (drm_valid_hdmi_vic(vic)) {
5216 			type = "HDMI";
5217 			cea_mode = &edid_4k_modes[vic];
5218 			clock1 = cea_mode->clock;
5219 			clock2 = hdmi_mode_alternate_clock(cea_mode);
5220 		} else {
5221 			return;
5222 		}
5223 	}
5224 
5225 	/* pick whichever is closest */
5226 	if (abs(mode->clock - clock1) < abs(mode->clock - clock2))
5227 		clock = clock1;
5228 	else
5229 		clock = clock2;
5230 
5231 	if (mode->clock == clock)
5232 		return;
5233 
5234 	DRM_DEBUG("detailed mode matches %s VIC %d, adjusting clock %d -> %d\n",
5235 		  type, vic, mode->clock, clock);
5236 	mode->clock = clock;
5237 }
5238 
5239 static void drm_calculate_luminance_range(struct drm_connector *connector)
5240 {
5241 	struct hdr_static_metadata *hdr_metadata = &connector->hdr_sink_metadata.hdmi_type1;
5242 	struct drm_luminance_range_info *luminance_range =
5243 		&connector->display_info.luminance_range;
5244 	static const u8 pre_computed_values[] = {
5245 		50, 51, 52, 53, 55, 56, 57, 58, 59, 61, 62, 63, 65, 66, 68, 69,
5246 		71, 72, 74, 75, 77, 79, 81, 82, 84, 86, 88, 90, 92, 94, 96, 98
5247 	};
5248 	u32 max_avg, min_cll, max, min, q, r;
5249 
5250 	if (!(hdr_metadata->metadata_type & BIT(HDMI_STATIC_METADATA_TYPE1)))
5251 		return;
5252 
5253 	max_avg = hdr_metadata->max_fall;
5254 	min_cll = hdr_metadata->min_cll;
5255 
5256 	/*
5257 	 * From the specification (CTA-861-G), for calculating the maximum
5258 	 * luminance we need to use:
5259 	 *	Luminance = 50*2**(CV/32)
5260 	 * Where CV is a one-byte value.
5261 	 * For calculating this expression we may need float point precision;
5262 	 * to avoid this complexity level, we take advantage that CV is divided
5263 	 * by a constant. From the Euclids division algorithm, we know that CV
5264 	 * can be written as: CV = 32*q + r. Next, we replace CV in the
5265 	 * Luminance expression and get 50*(2**q)*(2**(r/32)), hence we just
5266 	 * need to pre-compute the value of r/32. For pre-computing the values
5267 	 * We just used the following Ruby line:
5268 	 *	(0...32).each {|cv| puts (50*2**(cv/32.0)).round}
5269 	 * The results of the above expressions can be verified at
5270 	 * pre_computed_values.
5271 	 */
5272 	q = max_avg >> 5;
5273 	r = max_avg % 32;
5274 	max = (1 << q) * pre_computed_values[r];
5275 
5276 	/* min luminance: maxLum * (CV/255)^2 / 100 */
5277 	q = DIV_ROUND_CLOSEST(min_cll, 255);
5278 	min = max * DIV_ROUND_CLOSEST((q * q), 100);
5279 
5280 	luminance_range->min_luminance = min;
5281 	luminance_range->max_luminance = max;
5282 }
5283 
5284 static uint8_t eotf_supported(const u8 *edid_ext)
5285 {
5286 	return edid_ext[2] &
5287 		(BIT(HDMI_EOTF_TRADITIONAL_GAMMA_SDR) |
5288 		 BIT(HDMI_EOTF_TRADITIONAL_GAMMA_HDR) |
5289 		 BIT(HDMI_EOTF_SMPTE_ST2084) |
5290 		 BIT(HDMI_EOTF_BT_2100_HLG));
5291 }
5292 
5293 static uint8_t hdr_metadata_type(const u8 *edid_ext)
5294 {
5295 	return edid_ext[3] &
5296 		BIT(HDMI_STATIC_METADATA_TYPE1);
5297 }
5298 
5299 static void
5300 drm_parse_hdr_metadata_block(struct drm_connector *connector, const u8 *db)
5301 {
5302 	u16 len;
5303 
5304 	len = cea_db_payload_len(db);
5305 
5306 	connector->hdr_sink_metadata.hdmi_type1.eotf =
5307 						eotf_supported(db);
5308 	connector->hdr_sink_metadata.hdmi_type1.metadata_type =
5309 						hdr_metadata_type(db);
5310 
5311 	if (len >= 4)
5312 		connector->hdr_sink_metadata.hdmi_type1.max_cll = db[4];
5313 	if (len >= 5)
5314 		connector->hdr_sink_metadata.hdmi_type1.max_fall = db[5];
5315 	if (len >= 6) {
5316 		connector->hdr_sink_metadata.hdmi_type1.min_cll = db[6];
5317 
5318 		/* Calculate only when all values are available */
5319 		drm_calculate_luminance_range(connector);
5320 	}
5321 }
5322 
5323 static void
5324 drm_parse_hdmi_vsdb_audio(struct drm_connector *connector, const u8 *db)
5325 {
5326 	u8 len = cea_db_payload_len(db);
5327 
5328 	if (len >= 6 && (db[6] & (1 << 7)))
5329 		connector->eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_SUPPORTS_AI;
5330 	if (len >= 8) {
5331 		connector->latency_present[0] = db[8] >> 7;
5332 		connector->latency_present[1] = (db[8] >> 6) & 1;
5333 	}
5334 	if (len >= 9)
5335 		connector->video_latency[0] = db[9];
5336 	if (len >= 10)
5337 		connector->audio_latency[0] = db[10];
5338 	if (len >= 11)
5339 		connector->video_latency[1] = db[11];
5340 	if (len >= 12)
5341 		connector->audio_latency[1] = db[12];
5342 
5343 	DRM_DEBUG_KMS("HDMI: latency present %d %d, "
5344 		      "video latency %d %d, "
5345 		      "audio latency %d %d\n",
5346 		      connector->latency_present[0],
5347 		      connector->latency_present[1],
5348 		      connector->video_latency[0],
5349 		      connector->video_latency[1],
5350 		      connector->audio_latency[0],
5351 		      connector->audio_latency[1]);
5352 }
5353 
5354 static void
5355 monitor_name(const struct detailed_timing *timing, void *data)
5356 {
5357 	const char **res = data;
5358 
5359 	if (!is_display_descriptor(timing, EDID_DETAIL_MONITOR_NAME))
5360 		return;
5361 
5362 	*res = timing->data.other_data.data.str.str;
5363 }
5364 
5365 static int get_monitor_name(const struct drm_edid *drm_edid, char name[13])
5366 {
5367 	const char *edid_name = NULL;
5368 	int mnl;
5369 
5370 	if (!drm_edid || !name)
5371 		return 0;
5372 
5373 	drm_for_each_detailed_block(drm_edid, monitor_name, &edid_name);
5374 	for (mnl = 0; edid_name && mnl < 13; mnl++) {
5375 		if (edid_name[mnl] == 0x0a)
5376 			break;
5377 
5378 		name[mnl] = edid_name[mnl];
5379 	}
5380 
5381 	return mnl;
5382 }
5383 
5384 /**
5385  * drm_edid_get_monitor_name - fetch the monitor name from the edid
5386  * @edid: monitor EDID information
5387  * @name: pointer to a character array to hold the name of the monitor
5388  * @bufsize: The size of the name buffer (should be at least 14 chars.)
5389  *
5390  */
5391 void drm_edid_get_monitor_name(const struct edid *edid, char *name, int bufsize)
5392 {
5393 	int name_length = 0;
5394 
5395 	if (bufsize <= 0)
5396 		return;
5397 
5398 	if (edid) {
5399 		char buf[13];
5400 		struct drm_edid drm_edid = {
5401 			.edid = edid,
5402 			.size = edid_size(edid),
5403 		};
5404 
5405 		name_length = min(get_monitor_name(&drm_edid, buf), bufsize - 1);
5406 		memcpy(name, buf, name_length);
5407 	}
5408 
5409 	name[name_length] = '\0';
5410 }
5411 EXPORT_SYMBOL(drm_edid_get_monitor_name);
5412 
5413 static void clear_eld(struct drm_connector *connector)
5414 {
5415 	memset(connector->eld, 0, sizeof(connector->eld));
5416 
5417 	connector->latency_present[0] = false;
5418 	connector->latency_present[1] = false;
5419 	connector->video_latency[0] = 0;
5420 	connector->audio_latency[0] = 0;
5421 	connector->video_latency[1] = 0;
5422 	connector->audio_latency[1] = 0;
5423 }
5424 
5425 /*
5426  * drm_edid_to_eld - build ELD from EDID
5427  * @connector: connector corresponding to the HDMI/DP sink
5428  * @drm_edid: EDID to parse
5429  *
5430  * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
5431  * HDCP and Port_ID ELD fields are left for the graphics driver to fill in.
5432  */
5433 static void drm_edid_to_eld(struct drm_connector *connector,
5434 			    const struct drm_edid *drm_edid)
5435 {
5436 	const struct drm_display_info *info = &connector->display_info;
5437 	const struct cea_db *db;
5438 	struct cea_db_iter iter;
5439 	uint8_t *eld = connector->eld;
5440 	int total_sad_count = 0;
5441 	int mnl;
5442 
5443 	clear_eld(connector);
5444 
5445 	if (!drm_edid)
5446 		return;
5447 
5448 	mnl = get_monitor_name(drm_edid, &eld[DRM_ELD_MONITOR_NAME_STRING]);
5449 	DRM_DEBUG_KMS("ELD monitor %s\n", &eld[DRM_ELD_MONITOR_NAME_STRING]);
5450 
5451 	eld[DRM_ELD_CEA_EDID_VER_MNL] = info->cea_rev << DRM_ELD_CEA_EDID_VER_SHIFT;
5452 	eld[DRM_ELD_CEA_EDID_VER_MNL] |= mnl;
5453 
5454 	eld[DRM_ELD_VER] = DRM_ELD_VER_CEA861D;
5455 
5456 	eld[DRM_ELD_MANUFACTURER_NAME0] = drm_edid->edid->mfg_id[0];
5457 	eld[DRM_ELD_MANUFACTURER_NAME1] = drm_edid->edid->mfg_id[1];
5458 	eld[DRM_ELD_PRODUCT_CODE0] = drm_edid->edid->prod_code[0];
5459 	eld[DRM_ELD_PRODUCT_CODE1] = drm_edid->edid->prod_code[1];
5460 
5461 	cea_db_iter_edid_begin(drm_edid, &iter);
5462 	cea_db_iter_for_each(db, &iter) {
5463 		const u8 *data = cea_db_data(db);
5464 		int len = cea_db_payload_len(db);
5465 		int sad_count;
5466 
5467 		switch (cea_db_tag(db)) {
5468 		case CTA_DB_AUDIO:
5469 			/* Audio Data Block, contains SADs */
5470 			sad_count = min(len / 3, 15 - total_sad_count);
5471 			if (sad_count >= 1)
5472 				memcpy(&eld[DRM_ELD_CEA_SAD(mnl, total_sad_count)],
5473 				       data, sad_count * 3);
5474 			total_sad_count += sad_count;
5475 			break;
5476 		case CTA_DB_SPEAKER:
5477 			/* Speaker Allocation Data Block */
5478 			if (len >= 1)
5479 				eld[DRM_ELD_SPEAKER] = data[0];
5480 			break;
5481 		case CTA_DB_VENDOR:
5482 			/* HDMI Vendor-Specific Data Block */
5483 			if (cea_db_is_hdmi_vsdb(db))
5484 				drm_parse_hdmi_vsdb_audio(connector, (const u8 *)db);
5485 			break;
5486 		default:
5487 			break;
5488 		}
5489 	}
5490 	cea_db_iter_end(&iter);
5491 
5492 	eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= total_sad_count << DRM_ELD_SAD_COUNT_SHIFT;
5493 
5494 	if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
5495 	    connector->connector_type == DRM_MODE_CONNECTOR_eDP)
5496 		eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_DP;
5497 	else
5498 		eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_HDMI;
5499 
5500 	eld[DRM_ELD_BASELINE_ELD_LEN] =
5501 		DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
5502 
5503 	DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
5504 		      drm_eld_size(eld), total_sad_count);
5505 }
5506 
5507 static int _drm_edid_to_sad(const struct drm_edid *drm_edid,
5508 			    struct cea_sad **sads)
5509 {
5510 	const struct cea_db *db;
5511 	struct cea_db_iter iter;
5512 	int count = 0;
5513 
5514 	cea_db_iter_edid_begin(drm_edid, &iter);
5515 	cea_db_iter_for_each(db, &iter) {
5516 		if (cea_db_tag(db) == CTA_DB_AUDIO) {
5517 			int j;
5518 
5519 			count = cea_db_payload_len(db) / 3; /* SAD is 3B */
5520 			*sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
5521 			if (!*sads)
5522 				return -ENOMEM;
5523 			for (j = 0; j < count; j++) {
5524 				const u8 *sad = &db->data[j * 3];
5525 
5526 				(*sads)[j].format = (sad[0] & 0x78) >> 3;
5527 				(*sads)[j].channels = sad[0] & 0x7;
5528 				(*sads)[j].freq = sad[1] & 0x7F;
5529 				(*sads)[j].byte2 = sad[2];
5530 			}
5531 			break;
5532 		}
5533 	}
5534 	cea_db_iter_end(&iter);
5535 
5536 	DRM_DEBUG_KMS("Found %d Short Audio Descriptors\n", count);
5537 
5538 	return count;
5539 }
5540 
5541 /**
5542  * drm_edid_to_sad - extracts SADs from EDID
5543  * @edid: EDID to parse
5544  * @sads: pointer that will be set to the extracted SADs
5545  *
5546  * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
5547  *
5548  * Note: The returned pointer needs to be freed using kfree().
5549  *
5550  * Return: The number of found SADs or negative number on error.
5551  */
5552 int drm_edid_to_sad(const struct edid *edid, struct cea_sad **sads)
5553 {
5554 	struct drm_edid drm_edid;
5555 
5556 	return _drm_edid_to_sad(drm_edid_legacy_init(&drm_edid, edid), sads);
5557 }
5558 EXPORT_SYMBOL(drm_edid_to_sad);
5559 
5560 static int _drm_edid_to_speaker_allocation(const struct drm_edid *drm_edid,
5561 					   u8 **sadb)
5562 {
5563 	const struct cea_db *db;
5564 	struct cea_db_iter iter;
5565 	int count = 0;
5566 
5567 	cea_db_iter_edid_begin(drm_edid, &iter);
5568 	cea_db_iter_for_each(db, &iter) {
5569 		if (cea_db_tag(db) == CTA_DB_SPEAKER &&
5570 		    cea_db_payload_len(db) == 3) {
5571 			*sadb = kmemdup(db->data, cea_db_payload_len(db),
5572 					GFP_KERNEL);
5573 			if (!*sadb)
5574 				return -ENOMEM;
5575 			count = cea_db_payload_len(db);
5576 			break;
5577 		}
5578 	}
5579 	cea_db_iter_end(&iter);
5580 
5581 	DRM_DEBUG_KMS("Found %d Speaker Allocation Data Blocks\n", count);
5582 
5583 	return count;
5584 }
5585 
5586 /**
5587  * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
5588  * @edid: EDID to parse
5589  * @sadb: pointer to the speaker block
5590  *
5591  * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
5592  *
5593  * Note: The returned pointer needs to be freed using kfree().
5594  *
5595  * Return: The number of found Speaker Allocation Blocks or negative number on
5596  * error.
5597  */
5598 int drm_edid_to_speaker_allocation(const struct edid *edid, u8 **sadb)
5599 {
5600 	struct drm_edid drm_edid;
5601 
5602 	return _drm_edid_to_speaker_allocation(drm_edid_legacy_init(&drm_edid, edid),
5603 					       sadb);
5604 }
5605 EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
5606 
5607 /**
5608  * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
5609  * @connector: connector associated with the HDMI/DP sink
5610  * @mode: the display mode
5611  *
5612  * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
5613  * the sink doesn't support audio or video.
5614  */
5615 int drm_av_sync_delay(struct drm_connector *connector,
5616 		      const struct drm_display_mode *mode)
5617 {
5618 	int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
5619 	int a, v;
5620 
5621 	if (!connector->latency_present[0])
5622 		return 0;
5623 	if (!connector->latency_present[1])
5624 		i = 0;
5625 
5626 	a = connector->audio_latency[i];
5627 	v = connector->video_latency[i];
5628 
5629 	/*
5630 	 * HDMI/DP sink doesn't support audio or video?
5631 	 */
5632 	if (a == 255 || v == 255)
5633 		return 0;
5634 
5635 	/*
5636 	 * Convert raw EDID values to millisecond.
5637 	 * Treat unknown latency as 0ms.
5638 	 */
5639 	if (a)
5640 		a = min(2 * (a - 1), 500);
5641 	if (v)
5642 		v = min(2 * (v - 1), 500);
5643 
5644 	return max(v - a, 0);
5645 }
5646 EXPORT_SYMBOL(drm_av_sync_delay);
5647 
5648 static bool _drm_detect_hdmi_monitor(const struct drm_edid *drm_edid)
5649 {
5650 	const struct cea_db *db;
5651 	struct cea_db_iter iter;
5652 	bool hdmi = false;
5653 
5654 	/*
5655 	 * Because HDMI identifier is in Vendor Specific Block,
5656 	 * search it from all data blocks of CEA extension.
5657 	 */
5658 	cea_db_iter_edid_begin(drm_edid, &iter);
5659 	cea_db_iter_for_each(db, &iter) {
5660 		if (cea_db_is_hdmi_vsdb(db)) {
5661 			hdmi = true;
5662 			break;
5663 		}
5664 	}
5665 	cea_db_iter_end(&iter);
5666 
5667 	return hdmi;
5668 }
5669 
5670 /**
5671  * drm_detect_hdmi_monitor - detect whether monitor is HDMI
5672  * @edid: monitor EDID information
5673  *
5674  * Parse the CEA extension according to CEA-861-B.
5675  *
5676  * Drivers that have added the modes parsed from EDID to drm_display_info
5677  * should use &drm_display_info.is_hdmi instead of calling this function.
5678  *
5679  * Return: True if the monitor is HDMI, false if not or unknown.
5680  */
5681 bool drm_detect_hdmi_monitor(const struct edid *edid)
5682 {
5683 	struct drm_edid drm_edid;
5684 
5685 	return _drm_detect_hdmi_monitor(drm_edid_legacy_init(&drm_edid, edid));
5686 }
5687 EXPORT_SYMBOL(drm_detect_hdmi_monitor);
5688 
5689 static bool _drm_detect_monitor_audio(const struct drm_edid *drm_edid)
5690 {
5691 	struct drm_edid_iter edid_iter;
5692 	const struct cea_db *db;
5693 	struct cea_db_iter iter;
5694 	const u8 *edid_ext;
5695 	bool has_audio = false;
5696 
5697 	drm_edid_iter_begin(drm_edid, &edid_iter);
5698 	drm_edid_iter_for_each(edid_ext, &edid_iter) {
5699 		if (edid_ext[0] == CEA_EXT) {
5700 			has_audio = edid_ext[3] & EDID_BASIC_AUDIO;
5701 			if (has_audio)
5702 				break;
5703 		}
5704 	}
5705 	drm_edid_iter_end(&edid_iter);
5706 
5707 	if (has_audio) {
5708 		DRM_DEBUG_KMS("Monitor has basic audio support\n");
5709 		goto end;
5710 	}
5711 
5712 	cea_db_iter_edid_begin(drm_edid, &iter);
5713 	cea_db_iter_for_each(db, &iter) {
5714 		if (cea_db_tag(db) == CTA_DB_AUDIO) {
5715 			const u8 *data = cea_db_data(db);
5716 			int i;
5717 
5718 			for (i = 0; i < cea_db_payload_len(db); i += 3)
5719 				DRM_DEBUG_KMS("CEA audio format %d\n",
5720 					      (data[i] >> 3) & 0xf);
5721 			has_audio = true;
5722 			break;
5723 		}
5724 	}
5725 	cea_db_iter_end(&iter);
5726 
5727 end:
5728 	return has_audio;
5729 }
5730 
5731 /**
5732  * drm_detect_monitor_audio - check monitor audio capability
5733  * @edid: EDID block to scan
5734  *
5735  * Monitor should have CEA extension block.
5736  * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
5737  * audio' only. If there is any audio extension block and supported
5738  * audio format, assume at least 'basic audio' support, even if 'basic
5739  * audio' is not defined in EDID.
5740  *
5741  * Return: True if the monitor supports audio, false otherwise.
5742  */
5743 bool drm_detect_monitor_audio(const struct edid *edid)
5744 {
5745 	struct drm_edid drm_edid;
5746 
5747 	return _drm_detect_monitor_audio(drm_edid_legacy_init(&drm_edid, edid));
5748 }
5749 EXPORT_SYMBOL(drm_detect_monitor_audio);
5750 
5751 
5752 /**
5753  * drm_default_rgb_quant_range - default RGB quantization range
5754  * @mode: display mode
5755  *
5756  * Determine the default RGB quantization range for the mode,
5757  * as specified in CEA-861.
5758  *
5759  * Return: The default RGB quantization range for the mode
5760  */
5761 enum hdmi_quantization_range
5762 drm_default_rgb_quant_range(const struct drm_display_mode *mode)
5763 {
5764 	/* All CEA modes other than VIC 1 use limited quantization range. */
5765 	return drm_match_cea_mode(mode) > 1 ?
5766 		HDMI_QUANTIZATION_RANGE_LIMITED :
5767 		HDMI_QUANTIZATION_RANGE_FULL;
5768 }
5769 EXPORT_SYMBOL(drm_default_rgb_quant_range);
5770 
5771 static void drm_parse_vcdb(struct drm_connector *connector, const u8 *db)
5772 {
5773 	struct drm_display_info *info = &connector->display_info;
5774 
5775 	DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", db[2]);
5776 
5777 	if (db[2] & EDID_CEA_VCDB_QS)
5778 		info->rgb_quant_range_selectable = true;
5779 }
5780 
5781 static
5782 void drm_get_max_frl_rate(int max_frl_rate, u8 *max_lanes, u8 *max_rate_per_lane)
5783 {
5784 	switch (max_frl_rate) {
5785 	case 1:
5786 		*max_lanes = 3;
5787 		*max_rate_per_lane = 3;
5788 		break;
5789 	case 2:
5790 		*max_lanes = 3;
5791 		*max_rate_per_lane = 6;
5792 		break;
5793 	case 3:
5794 		*max_lanes = 4;
5795 		*max_rate_per_lane = 6;
5796 		break;
5797 	case 4:
5798 		*max_lanes = 4;
5799 		*max_rate_per_lane = 8;
5800 		break;
5801 	case 5:
5802 		*max_lanes = 4;
5803 		*max_rate_per_lane = 10;
5804 		break;
5805 	case 6:
5806 		*max_lanes = 4;
5807 		*max_rate_per_lane = 12;
5808 		break;
5809 	case 0:
5810 	default:
5811 		*max_lanes = 0;
5812 		*max_rate_per_lane = 0;
5813 	}
5814 }
5815 
5816 static void drm_parse_ycbcr420_deep_color_info(struct drm_connector *connector,
5817 					       const u8 *db)
5818 {
5819 	u8 dc_mask;
5820 	struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
5821 
5822 	dc_mask = db[7] & DRM_EDID_YCBCR420_DC_MASK;
5823 	hdmi->y420_dc_modes = dc_mask;
5824 }
5825 
5826 static void drm_parse_dsc_info(struct drm_hdmi_dsc_cap *hdmi_dsc,
5827 			       const u8 *hf_scds)
5828 {
5829 	hdmi_dsc->v_1p2 = hf_scds[11] & DRM_EDID_DSC_1P2;
5830 
5831 	if (!hdmi_dsc->v_1p2)
5832 		return;
5833 
5834 	hdmi_dsc->native_420 = hf_scds[11] & DRM_EDID_DSC_NATIVE_420;
5835 	hdmi_dsc->all_bpp = hf_scds[11] & DRM_EDID_DSC_ALL_BPP;
5836 
5837 	if (hf_scds[11] & DRM_EDID_DSC_16BPC)
5838 		hdmi_dsc->bpc_supported = 16;
5839 	else if (hf_scds[11] & DRM_EDID_DSC_12BPC)
5840 		hdmi_dsc->bpc_supported = 12;
5841 	else if (hf_scds[11] & DRM_EDID_DSC_10BPC)
5842 		hdmi_dsc->bpc_supported = 10;
5843 	else
5844 		/* Supports min 8 BPC if DSC 1.2 is supported*/
5845 		hdmi_dsc->bpc_supported = 8;
5846 
5847 	if (cea_db_payload_len(hf_scds) >= 12 && hf_scds[12]) {
5848 		u8 dsc_max_slices;
5849 		u8 dsc_max_frl_rate;
5850 
5851 		dsc_max_frl_rate = (hf_scds[12] & DRM_EDID_DSC_MAX_FRL_RATE_MASK) >> 4;
5852 		drm_get_max_frl_rate(dsc_max_frl_rate, &hdmi_dsc->max_lanes,
5853 				     &hdmi_dsc->max_frl_rate_per_lane);
5854 
5855 		dsc_max_slices = hf_scds[12] & DRM_EDID_DSC_MAX_SLICES;
5856 
5857 		switch (dsc_max_slices) {
5858 		case 1:
5859 			hdmi_dsc->max_slices = 1;
5860 			hdmi_dsc->clk_per_slice = 340;
5861 			break;
5862 		case 2:
5863 			hdmi_dsc->max_slices = 2;
5864 			hdmi_dsc->clk_per_slice = 340;
5865 			break;
5866 		case 3:
5867 			hdmi_dsc->max_slices = 4;
5868 			hdmi_dsc->clk_per_slice = 340;
5869 			break;
5870 		case 4:
5871 			hdmi_dsc->max_slices = 8;
5872 			hdmi_dsc->clk_per_slice = 340;
5873 			break;
5874 		case 5:
5875 			hdmi_dsc->max_slices = 8;
5876 			hdmi_dsc->clk_per_slice = 400;
5877 			break;
5878 		case 6:
5879 			hdmi_dsc->max_slices = 12;
5880 			hdmi_dsc->clk_per_slice = 400;
5881 			break;
5882 		case 7:
5883 			hdmi_dsc->max_slices = 16;
5884 			hdmi_dsc->clk_per_slice = 400;
5885 			break;
5886 		case 0:
5887 		default:
5888 			hdmi_dsc->max_slices = 0;
5889 			hdmi_dsc->clk_per_slice = 0;
5890 		}
5891 	}
5892 
5893 	if (cea_db_payload_len(hf_scds) >= 13 && hf_scds[13])
5894 		hdmi_dsc->total_chunk_kbytes = hf_scds[13] & DRM_EDID_DSC_TOTAL_CHUNK_KBYTES;
5895 }
5896 
5897 /* Sink Capability Data Structure */
5898 static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
5899 				      const u8 *hf_scds)
5900 {
5901 	struct drm_display_info *display = &connector->display_info;
5902 	struct drm_hdmi_info *hdmi = &display->hdmi;
5903 	struct drm_hdmi_dsc_cap *hdmi_dsc = &hdmi->dsc_cap;
5904 	int max_tmds_clock = 0;
5905 	u8 max_frl_rate = 0;
5906 	bool dsc_support = false;
5907 
5908 	display->has_hdmi_infoframe = true;
5909 
5910 	if (hf_scds[6] & 0x80) {
5911 		hdmi->scdc.supported = true;
5912 		if (hf_scds[6] & 0x40)
5913 			hdmi->scdc.read_request = true;
5914 	}
5915 
5916 	/*
5917 	 * All HDMI 2.0 monitors must support scrambling at rates > 340 MHz.
5918 	 * And as per the spec, three factors confirm this:
5919 	 * * Availability of a HF-VSDB block in EDID (check)
5920 	 * * Non zero Max_TMDS_Char_Rate filed in HF-VSDB (let's check)
5921 	 * * SCDC support available (let's check)
5922 	 * Lets check it out.
5923 	 */
5924 
5925 	if (hf_scds[5]) {
5926 		struct drm_scdc *scdc = &hdmi->scdc;
5927 
5928 		/* max clock is 5000 KHz times block value */
5929 		max_tmds_clock = hf_scds[5] * 5000;
5930 
5931 		if (max_tmds_clock > 340000) {
5932 			display->max_tmds_clock = max_tmds_clock;
5933 		}
5934 
5935 		if (scdc->supported) {
5936 			scdc->scrambling.supported = true;
5937 
5938 			/* Few sinks support scrambling for clocks < 340M */
5939 			if ((hf_scds[6] & 0x8))
5940 				scdc->scrambling.low_rates = true;
5941 		}
5942 	}
5943 
5944 	if (hf_scds[7]) {
5945 		max_frl_rate = (hf_scds[7] & DRM_EDID_MAX_FRL_RATE_MASK) >> 4;
5946 		drm_get_max_frl_rate(max_frl_rate, &hdmi->max_lanes,
5947 				     &hdmi->max_frl_rate_per_lane);
5948 	}
5949 
5950 	drm_parse_ycbcr420_deep_color_info(connector, hf_scds);
5951 
5952 	if (cea_db_payload_len(hf_scds) >= 11 && hf_scds[11]) {
5953 		drm_parse_dsc_info(hdmi_dsc, hf_scds);
5954 		dsc_support = true;
5955 	}
5956 
5957 	drm_dbg_kms(connector->dev,
5958 		    "HF-VSDB: max TMDS clock: %d KHz, HDMI 2.1 support: %s, DSC 1.2 support: %s\n",
5959 		    max_tmds_clock, str_yes_no(max_frl_rate), str_yes_no(dsc_support));
5960 }
5961 
5962 static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
5963 					   const u8 *hdmi)
5964 {
5965 	struct drm_display_info *info = &connector->display_info;
5966 	unsigned int dc_bpc = 0;
5967 
5968 	/* HDMI supports at least 8 bpc */
5969 	info->bpc = 8;
5970 
5971 	if (cea_db_payload_len(hdmi) < 6)
5972 		return;
5973 
5974 	if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
5975 		dc_bpc = 10;
5976 		info->edid_hdmi_rgb444_dc_modes |= DRM_EDID_HDMI_DC_30;
5977 		DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
5978 			  connector->name);
5979 	}
5980 
5981 	if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
5982 		dc_bpc = 12;
5983 		info->edid_hdmi_rgb444_dc_modes |= DRM_EDID_HDMI_DC_36;
5984 		DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
5985 			  connector->name);
5986 	}
5987 
5988 	if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
5989 		dc_bpc = 16;
5990 		info->edid_hdmi_rgb444_dc_modes |= DRM_EDID_HDMI_DC_48;
5991 		DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
5992 			  connector->name);
5993 	}
5994 
5995 	if (dc_bpc == 0) {
5996 		DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
5997 			  connector->name);
5998 		return;
5999 	}
6000 
6001 	DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
6002 		  connector->name, dc_bpc);
6003 	info->bpc = dc_bpc;
6004 
6005 	/* YCRCB444 is optional according to spec. */
6006 	if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
6007 		info->edid_hdmi_ycbcr444_dc_modes = info->edid_hdmi_rgb444_dc_modes;
6008 		DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
6009 			  connector->name);
6010 	}
6011 
6012 	/*
6013 	 * Spec says that if any deep color mode is supported at all,
6014 	 * then deep color 36 bit must be supported.
6015 	 */
6016 	if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
6017 		DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
6018 			  connector->name);
6019 	}
6020 }
6021 
6022 static void
6023 drm_parse_hdmi_vsdb_video(struct drm_connector *connector, const u8 *db)
6024 {
6025 	struct drm_display_info *info = &connector->display_info;
6026 	u8 len = cea_db_payload_len(db);
6027 
6028 	info->is_hdmi = true;
6029 
6030 	if (len >= 6)
6031 		info->dvi_dual = db[6] & 1;
6032 	if (len >= 7)
6033 		info->max_tmds_clock = db[7] * 5000;
6034 
6035 	DRM_DEBUG_KMS("HDMI: DVI dual %d, "
6036 		      "max TMDS clock %d kHz\n",
6037 		      info->dvi_dual,
6038 		      info->max_tmds_clock);
6039 
6040 	drm_parse_hdmi_deep_color_info(connector, db);
6041 }
6042 
6043 /*
6044  * See EDID extension for head-mounted and specialized monitors, specified at:
6045  * https://docs.microsoft.com/en-us/windows-hardware/drivers/display/specialized-monitors-edid-extension
6046  */
6047 static void drm_parse_microsoft_vsdb(struct drm_connector *connector,
6048 				     const u8 *db)
6049 {
6050 	struct drm_display_info *info = &connector->display_info;
6051 	u8 version = db[4];
6052 	bool desktop_usage = db[5] & BIT(6);
6053 
6054 	/* Version 1 and 2 for HMDs, version 3 flags desktop usage explicitly */
6055 	if (version == 1 || version == 2 || (version == 3 && !desktop_usage))
6056 		info->non_desktop = true;
6057 
6058 	drm_dbg_kms(connector->dev, "HMD or specialized display VSDB version %u: 0x%02x\n",
6059 		    version, db[5]);
6060 }
6061 
6062 static void drm_parse_cea_ext(struct drm_connector *connector,
6063 			      const struct drm_edid *drm_edid)
6064 {
6065 	struct drm_display_info *info = &connector->display_info;
6066 	struct drm_edid_iter edid_iter;
6067 	const struct cea_db *db;
6068 	struct cea_db_iter iter;
6069 	const u8 *edid_ext;
6070 
6071 	drm_edid_iter_begin(drm_edid, &edid_iter);
6072 	drm_edid_iter_for_each(edid_ext, &edid_iter) {
6073 		if (edid_ext[0] != CEA_EXT)
6074 			continue;
6075 
6076 		if (!info->cea_rev)
6077 			info->cea_rev = edid_ext[1];
6078 
6079 		if (info->cea_rev != edid_ext[1])
6080 			DRM_DEBUG_KMS("CEA extension version mismatch %u != %u\n",
6081 				      info->cea_rev, edid_ext[1]);
6082 
6083 		/* The existence of a CTA extension should imply RGB support */
6084 		info->color_formats = DRM_COLOR_FORMAT_RGB444;
6085 		if (edid_ext[3] & EDID_CEA_YCRCB444)
6086 			info->color_formats |= DRM_COLOR_FORMAT_YCBCR444;
6087 		if (edid_ext[3] & EDID_CEA_YCRCB422)
6088 			info->color_formats |= DRM_COLOR_FORMAT_YCBCR422;
6089 	}
6090 	drm_edid_iter_end(&edid_iter);
6091 
6092 	cea_db_iter_edid_begin(drm_edid, &iter);
6093 	cea_db_iter_for_each(db, &iter) {
6094 		/* FIXME: convert parsers to use struct cea_db */
6095 		const u8 *data = (const u8 *)db;
6096 
6097 		if (cea_db_is_hdmi_vsdb(db))
6098 			drm_parse_hdmi_vsdb_video(connector, data);
6099 		else if (cea_db_is_hdmi_forum_vsdb(db) ||
6100 			 cea_db_is_hdmi_forum_scdb(db))
6101 			drm_parse_hdmi_forum_scds(connector, data);
6102 		else if (cea_db_is_microsoft_vsdb(db))
6103 			drm_parse_microsoft_vsdb(connector, data);
6104 		else if (cea_db_is_y420cmdb(db))
6105 			drm_parse_y420cmdb_bitmap(connector, data);
6106 		else if (cea_db_is_vcdb(db))
6107 			drm_parse_vcdb(connector, data);
6108 		else if (cea_db_is_hdmi_hdr_metadata_block(db))
6109 			drm_parse_hdr_metadata_block(connector, data);
6110 	}
6111 	cea_db_iter_end(&iter);
6112 }
6113 
6114 static
6115 void get_monitor_range(const struct detailed_timing *timing,
6116 		       void *info_monitor_range)
6117 {
6118 	struct drm_monitor_range_info *monitor_range = info_monitor_range;
6119 	const struct detailed_non_pixel *data = &timing->data.other_data;
6120 	const struct detailed_data_monitor_range *range = &data->data.range;
6121 
6122 	if (!is_display_descriptor(timing, EDID_DETAIL_MONITOR_RANGE))
6123 		return;
6124 
6125 	/*
6126 	 * These limits are used to determine the VRR refresh
6127 	 * rate range. Only the "range limits only" variant
6128 	 * of the range descriptor seems to guarantee that
6129 	 * any and all timings are accepted by the sink, as
6130 	 * opposed to just timings conforming to the indicated
6131 	 * formula (GTF/GTF2/CVT). Thus other variants of the
6132 	 * range descriptor are not accepted here.
6133 	 */
6134 	if (range->flags != DRM_EDID_RANGE_LIMITS_ONLY_FLAG)
6135 		return;
6136 
6137 	monitor_range->min_vfreq = range->min_vfreq;
6138 	monitor_range->max_vfreq = range->max_vfreq;
6139 }
6140 
6141 static void drm_get_monitor_range(struct drm_connector *connector,
6142 				  const struct drm_edid *drm_edid)
6143 {
6144 	struct drm_display_info *info = &connector->display_info;
6145 
6146 	if (drm_edid->edid->revision < 4)
6147 		return;
6148 
6149 	if (!(drm_edid->edid->features & DRM_EDID_FEATURE_CONTINUOUS_FREQ))
6150 		return;
6151 
6152 	drm_for_each_detailed_block(drm_edid, get_monitor_range,
6153 				    &info->monitor_range);
6154 
6155 	DRM_DEBUG_KMS("Supported Monitor Refresh rate range is %d Hz - %d Hz\n",
6156 		      info->monitor_range.min_vfreq,
6157 		      info->monitor_range.max_vfreq);
6158 }
6159 
6160 static void drm_parse_vesa_mso_data(struct drm_connector *connector,
6161 				    const struct displayid_block *block)
6162 {
6163 	struct displayid_vesa_vendor_specific_block *vesa =
6164 		(struct displayid_vesa_vendor_specific_block *)block;
6165 	struct drm_display_info *info = &connector->display_info;
6166 
6167 	if (block->num_bytes < 3) {
6168 		drm_dbg_kms(connector->dev, "Unexpected vendor block size %u\n",
6169 			    block->num_bytes);
6170 		return;
6171 	}
6172 
6173 	if (oui(vesa->oui[0], vesa->oui[1], vesa->oui[2]) != VESA_IEEE_OUI)
6174 		return;
6175 
6176 	if (sizeof(*vesa) != sizeof(*block) + block->num_bytes) {
6177 		drm_dbg_kms(connector->dev, "Unexpected VESA vendor block size\n");
6178 		return;
6179 	}
6180 
6181 	switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
6182 	default:
6183 		drm_dbg_kms(connector->dev, "Reserved MSO mode value\n");
6184 		fallthrough;
6185 	case 0:
6186 		info->mso_stream_count = 0;
6187 		break;
6188 	case 1:
6189 		info->mso_stream_count = 2; /* 2 or 4 links */
6190 		break;
6191 	case 2:
6192 		info->mso_stream_count = 4; /* 4 links */
6193 		break;
6194 	}
6195 
6196 	if (!info->mso_stream_count) {
6197 		info->mso_pixel_overlap = 0;
6198 		return;
6199 	}
6200 
6201 	info->mso_pixel_overlap = FIELD_GET(DISPLAYID_VESA_MSO_OVERLAP, vesa->mso);
6202 	if (info->mso_pixel_overlap > 8) {
6203 		drm_dbg_kms(connector->dev, "Reserved MSO pixel overlap value %u\n",
6204 			    info->mso_pixel_overlap);
6205 		info->mso_pixel_overlap = 8;
6206 	}
6207 
6208 	drm_dbg_kms(connector->dev, "MSO stream count %u, pixel overlap %u\n",
6209 		    info->mso_stream_count, info->mso_pixel_overlap);
6210 }
6211 
6212 static void drm_update_mso(struct drm_connector *connector,
6213 			   const struct drm_edid *drm_edid)
6214 {
6215 	const struct displayid_block *block;
6216 	struct displayid_iter iter;
6217 
6218 	displayid_iter_edid_begin(drm_edid, &iter);
6219 	displayid_iter_for_each(block, &iter) {
6220 		if (block->tag == DATA_BLOCK_2_VENDOR_SPECIFIC)
6221 			drm_parse_vesa_mso_data(connector, block);
6222 	}
6223 	displayid_iter_end(&iter);
6224 }
6225 
6226 /* A connector has no EDID information, so we've got no EDID to compute quirks from. Reset
6227  * all of the values which would have been set from EDID
6228  */
6229 static void drm_reset_display_info(struct drm_connector *connector)
6230 {
6231 	struct drm_display_info *info = &connector->display_info;
6232 
6233 	info->width_mm = 0;
6234 	info->height_mm = 0;
6235 
6236 	info->bpc = 0;
6237 	info->color_formats = 0;
6238 	info->cea_rev = 0;
6239 	info->max_tmds_clock = 0;
6240 	info->dvi_dual = false;
6241 	info->is_hdmi = false;
6242 	info->has_hdmi_infoframe = false;
6243 	info->rgb_quant_range_selectable = false;
6244 	memset(&info->hdmi, 0, sizeof(info->hdmi));
6245 
6246 	info->edid_hdmi_rgb444_dc_modes = 0;
6247 	info->edid_hdmi_ycbcr444_dc_modes = 0;
6248 
6249 	info->non_desktop = 0;
6250 	memset(&info->monitor_range, 0, sizeof(info->monitor_range));
6251 	memset(&info->luminance_range, 0, sizeof(info->luminance_range));
6252 
6253 	info->mso_stream_count = 0;
6254 	info->mso_pixel_overlap = 0;
6255 }
6256 
6257 static u32 update_display_info(struct drm_connector *connector,
6258 			       const struct drm_edid *drm_edid)
6259 {
6260 	struct drm_display_info *info = &connector->display_info;
6261 	const struct edid *edid = drm_edid->edid;
6262 
6263 	u32 quirks = edid_get_quirks(drm_edid);
6264 
6265 	drm_reset_display_info(connector);
6266 
6267 	info->width_mm = edid->width_cm * 10;
6268 	info->height_mm = edid->height_cm * 10;
6269 
6270 	drm_get_monitor_range(connector, drm_edid);
6271 
6272 	if (edid->revision < 3)
6273 		goto out;
6274 
6275 	if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
6276 		goto out;
6277 
6278 	info->color_formats |= DRM_COLOR_FORMAT_RGB444;
6279 	drm_parse_cea_ext(connector, drm_edid);
6280 
6281 	/*
6282 	 * Digital sink with "DFP 1.x compliant TMDS" according to EDID 1.3?
6283 	 *
6284 	 * For such displays, the DFP spec 1.0, section 3.10 "EDID support"
6285 	 * tells us to assume 8 bpc color depth if the EDID doesn't have
6286 	 * extensions which tell otherwise.
6287 	 */
6288 	if (info->bpc == 0 && edid->revision == 3 &&
6289 	    edid->input & DRM_EDID_DIGITAL_DFP_1_X) {
6290 		info->bpc = 8;
6291 		DRM_DEBUG("%s: Assigning DFP sink color depth as %d bpc.\n",
6292 			  connector->name, info->bpc);
6293 	}
6294 
6295 	/* Only defined for 1.4 with digital displays */
6296 	if (edid->revision < 4)
6297 		goto out;
6298 
6299 	switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
6300 	case DRM_EDID_DIGITAL_DEPTH_6:
6301 		info->bpc = 6;
6302 		break;
6303 	case DRM_EDID_DIGITAL_DEPTH_8:
6304 		info->bpc = 8;
6305 		break;
6306 	case DRM_EDID_DIGITAL_DEPTH_10:
6307 		info->bpc = 10;
6308 		break;
6309 	case DRM_EDID_DIGITAL_DEPTH_12:
6310 		info->bpc = 12;
6311 		break;
6312 	case DRM_EDID_DIGITAL_DEPTH_14:
6313 		info->bpc = 14;
6314 		break;
6315 	case DRM_EDID_DIGITAL_DEPTH_16:
6316 		info->bpc = 16;
6317 		break;
6318 	case DRM_EDID_DIGITAL_DEPTH_UNDEF:
6319 	default:
6320 		info->bpc = 0;
6321 		break;
6322 	}
6323 
6324 	DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
6325 			  connector->name, info->bpc);
6326 
6327 	if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
6328 		info->color_formats |= DRM_COLOR_FORMAT_YCBCR444;
6329 	if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
6330 		info->color_formats |= DRM_COLOR_FORMAT_YCBCR422;
6331 
6332 	drm_update_mso(connector, drm_edid);
6333 
6334 out:
6335 	if (quirks & EDID_QUIRK_NON_DESKTOP) {
6336 		drm_dbg_kms(connector->dev, "Non-desktop display%s\n",
6337 			    info->non_desktop ? " (redundant quirk)" : "");
6338 		info->non_desktop = true;
6339 	}
6340 
6341 	return quirks;
6342 }
6343 
6344 static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
6345 							    struct displayid_detailed_timings_1 *timings,
6346 							    bool type_7)
6347 {
6348 	struct drm_display_mode *mode;
6349 	unsigned pixel_clock = (timings->pixel_clock[0] |
6350 				(timings->pixel_clock[1] << 8) |
6351 				(timings->pixel_clock[2] << 16)) + 1;
6352 	unsigned hactive = (timings->hactive[0] | timings->hactive[1] << 8) + 1;
6353 	unsigned hblank = (timings->hblank[0] | timings->hblank[1] << 8) + 1;
6354 	unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1;
6355 	unsigned hsync_width = (timings->hsw[0] | timings->hsw[1] << 8) + 1;
6356 	unsigned vactive = (timings->vactive[0] | timings->vactive[1] << 8) + 1;
6357 	unsigned vblank = (timings->vblank[0] | timings->vblank[1] << 8) + 1;
6358 	unsigned vsync = (timings->vsync[0] | (timings->vsync[1] & 0x7f) << 8) + 1;
6359 	unsigned vsync_width = (timings->vsw[0] | timings->vsw[1] << 8) + 1;
6360 	bool hsync_positive = (timings->hsync[1] >> 7) & 0x1;
6361 	bool vsync_positive = (timings->vsync[1] >> 7) & 0x1;
6362 
6363 	mode = drm_mode_create(dev);
6364 	if (!mode)
6365 		return NULL;
6366 
6367 	/* resolution is kHz for type VII, and 10 kHz for type I */
6368 	mode->clock = type_7 ? pixel_clock : pixel_clock * 10;
6369 	mode->hdisplay = hactive;
6370 	mode->hsync_start = mode->hdisplay + hsync;
6371 	mode->hsync_end = mode->hsync_start + hsync_width;
6372 	mode->htotal = mode->hdisplay + hblank;
6373 
6374 	mode->vdisplay = vactive;
6375 	mode->vsync_start = mode->vdisplay + vsync;
6376 	mode->vsync_end = mode->vsync_start + vsync_width;
6377 	mode->vtotal = mode->vdisplay + vblank;
6378 
6379 	mode->flags = 0;
6380 	mode->flags |= hsync_positive ? DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
6381 	mode->flags |= vsync_positive ? DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
6382 	mode->type = DRM_MODE_TYPE_DRIVER;
6383 
6384 	if (timings->flags & 0x80)
6385 		mode->type |= DRM_MODE_TYPE_PREFERRED;
6386 	drm_mode_set_name(mode);
6387 
6388 	return mode;
6389 }
6390 
6391 static int add_displayid_detailed_1_modes(struct drm_connector *connector,
6392 					  const struct displayid_block *block)
6393 {
6394 	struct displayid_detailed_timing_block *det = (struct displayid_detailed_timing_block *)block;
6395 	int i;
6396 	int num_timings;
6397 	struct drm_display_mode *newmode;
6398 	int num_modes = 0;
6399 	bool type_7 = block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING;
6400 	/* blocks must be multiple of 20 bytes length */
6401 	if (block->num_bytes % 20)
6402 		return 0;
6403 
6404 	num_timings = block->num_bytes / 20;
6405 	for (i = 0; i < num_timings; i++) {
6406 		struct displayid_detailed_timings_1 *timings = &det->timings[i];
6407 
6408 		newmode = drm_mode_displayid_detailed(connector->dev, timings, type_7);
6409 		if (!newmode)
6410 			continue;
6411 
6412 		drm_mode_probed_add(connector, newmode);
6413 		num_modes++;
6414 	}
6415 	return num_modes;
6416 }
6417 
6418 static int add_displayid_detailed_modes(struct drm_connector *connector,
6419 					const struct drm_edid *drm_edid)
6420 {
6421 	const struct displayid_block *block;
6422 	struct displayid_iter iter;
6423 	int num_modes = 0;
6424 
6425 	displayid_iter_edid_begin(drm_edid, &iter);
6426 	displayid_iter_for_each(block, &iter) {
6427 		if (block->tag == DATA_BLOCK_TYPE_1_DETAILED_TIMING ||
6428 		    block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING)
6429 			num_modes += add_displayid_detailed_1_modes(connector, block);
6430 	}
6431 	displayid_iter_end(&iter);
6432 
6433 	return num_modes;
6434 }
6435 
6436 static int _drm_edid_connector_update(struct drm_connector *connector,
6437 				      const struct drm_edid *drm_edid)
6438 {
6439 	int num_modes = 0;
6440 	u32 quirks;
6441 
6442 	if (!drm_edid) {
6443 		drm_reset_display_info(connector);
6444 		clear_eld(connector);
6445 		return 0;
6446 	}
6447 
6448 	/*
6449 	 * CEA-861-F adds ycbcr capability map block, for HDMI 2.0 sinks.
6450 	 * To avoid multiple parsing of same block, lets parse that map
6451 	 * from sink info, before parsing CEA modes.
6452 	 */
6453 	quirks = update_display_info(connector, drm_edid);
6454 
6455 	/* Depends on info->cea_rev set by update_display_info() above */
6456 	drm_edid_to_eld(connector, drm_edid);
6457 
6458 	/*
6459 	 * EDID spec says modes should be preferred in this order:
6460 	 * - preferred detailed mode
6461 	 * - other detailed modes from base block
6462 	 * - detailed modes from extension blocks
6463 	 * - CVT 3-byte code modes
6464 	 * - standard timing codes
6465 	 * - established timing codes
6466 	 * - modes inferred from GTF or CVT range information
6467 	 *
6468 	 * We get this pretty much right.
6469 	 *
6470 	 * XXX order for additional mode types in extension blocks?
6471 	 */
6472 	num_modes += add_detailed_modes(connector, drm_edid, quirks);
6473 	num_modes += add_cvt_modes(connector, drm_edid);
6474 	num_modes += add_standard_modes(connector, drm_edid);
6475 	num_modes += add_established_modes(connector, drm_edid);
6476 	num_modes += add_cea_modes(connector, drm_edid);
6477 	num_modes += add_alternate_cea_modes(connector, drm_edid);
6478 	num_modes += add_displayid_detailed_modes(connector, drm_edid);
6479 	if (drm_edid->edid->features & DRM_EDID_FEATURE_CONTINUOUS_FREQ)
6480 		num_modes += add_inferred_modes(connector, drm_edid);
6481 
6482 	if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
6483 		edid_fixup_preferred(connector, quirks);
6484 
6485 	if (quirks & EDID_QUIRK_FORCE_6BPC)
6486 		connector->display_info.bpc = 6;
6487 
6488 	if (quirks & EDID_QUIRK_FORCE_8BPC)
6489 		connector->display_info.bpc = 8;
6490 
6491 	if (quirks & EDID_QUIRK_FORCE_10BPC)
6492 		connector->display_info.bpc = 10;
6493 
6494 	if (quirks & EDID_QUIRK_FORCE_12BPC)
6495 		connector->display_info.bpc = 12;
6496 
6497 	return num_modes;
6498 }
6499 
6500 static void _drm_update_tile_info(struct drm_connector *connector,
6501 				  const struct drm_edid *drm_edid);
6502 
6503 static int _drm_edid_connector_property_update(struct drm_connector *connector,
6504 					       const struct drm_edid *drm_edid)
6505 {
6506 	struct drm_device *dev = connector->dev;
6507 	int ret;
6508 
6509 	if (connector->edid_blob_ptr) {
6510 		const struct edid *old_edid = connector->edid_blob_ptr->data;
6511 
6512 		if (old_edid) {
6513 			if (!drm_edid_are_equal(drm_edid ? drm_edid->edid : NULL, old_edid)) {
6514 				connector->epoch_counter++;
6515 				drm_dbg_kms(dev, "[CONNECTOR:%d:%s] EDID changed, epoch counter %llu\n",
6516 					    connector->base.id, connector->name,
6517 					    connector->epoch_counter);
6518 			}
6519 		}
6520 	}
6521 
6522 	ret = drm_property_replace_global_blob(dev,
6523 					       &connector->edid_blob_ptr,
6524 					       drm_edid ? drm_edid->size : 0,
6525 					       drm_edid ? drm_edid->edid : NULL,
6526 					       &connector->base,
6527 					       dev->mode_config.edid_property);
6528 	if (ret) {
6529 		drm_dbg_kms(dev, "[CONNECTOR:%d:%s] EDID property update failed (%d)\n",
6530 			    connector->base.id, connector->name, ret);
6531 		goto out;
6532 	}
6533 
6534 	ret = drm_object_property_set_value(&connector->base,
6535 					    dev->mode_config.non_desktop_property,
6536 					    connector->display_info.non_desktop);
6537 	if (ret) {
6538 		drm_dbg_kms(dev, "[CONNECTOR:%d:%s] Non-desktop property update failed (%d)\n",
6539 			    connector->base.id, connector->name, ret);
6540 		goto out;
6541 	}
6542 
6543 	ret = drm_connector_set_tile_property(connector);
6544 	if (ret) {
6545 		drm_dbg_kms(dev, "[CONNECTOR:%d:%s] Tile property update failed (%d)\n",
6546 			    connector->base.id, connector->name, ret);
6547 		goto out;
6548 	}
6549 
6550 out:
6551 	return ret;
6552 }
6553 
6554 /**
6555  * drm_edid_connector_update - Update connector information from EDID
6556  * @connector: Connector
6557  * @drm_edid: EDID
6558  *
6559  * Update the connector mode list, display info, ELD, HDR metadata, relevant
6560  * properties, etc. from the passed in EDID.
6561  *
6562  * If EDID is NULL, reset the information.
6563  *
6564  * Return: The number of modes added or 0 if we couldn't find any.
6565  */
6566 int drm_edid_connector_update(struct drm_connector *connector,
6567 			      const struct drm_edid *drm_edid)
6568 {
6569 	int count;
6570 
6571 	/*
6572 	 * FIXME: Reconcile the differences in override_edid handling between
6573 	 * this and drm_connector_update_edid_property().
6574 	 *
6575 	 * If override_edid is set, and the EDID passed in here originates from
6576 	 * drm_edid_read() and friends, it will be the override EDID, and there
6577 	 * are no issues. drm_connector_update_edid_property() ignoring requests
6578 	 * to set the EDID dates back to a time when override EDID was not
6579 	 * handled at the low level EDID read.
6580 	 *
6581 	 * The only way the EDID passed in here can be different from the
6582 	 * override EDID is when a driver passes in an EDID that does *not*
6583 	 * originate from drm_edid_read() and friends, or passes in a stale
6584 	 * cached version. This, in turn, is a question of when an override EDID
6585 	 * set via debugfs should take effect.
6586 	 */
6587 
6588 	count = _drm_edid_connector_update(connector, drm_edid);
6589 
6590 	_drm_update_tile_info(connector, drm_edid);
6591 
6592 	/* Note: Ignore errors for now. */
6593 	_drm_edid_connector_property_update(connector, drm_edid);
6594 
6595 	return count;
6596 }
6597 EXPORT_SYMBOL(drm_edid_connector_update);
6598 
6599 static int _drm_connector_update_edid_property(struct drm_connector *connector,
6600 					       const struct drm_edid *drm_edid)
6601 {
6602 	/* ignore requests to set edid when overridden */
6603 	if (connector->override_edid)
6604 		return 0;
6605 
6606 	/*
6607 	 * Set the display info, using edid if available, otherwise resetting
6608 	 * the values to defaults. This duplicates the work done in
6609 	 * drm_add_edid_modes, but that function is not consistently called
6610 	 * before this one in all drivers and the computation is cheap enough
6611 	 * that it seems better to duplicate it rather than attempt to ensure
6612 	 * some arbitrary ordering of calls.
6613 	 */
6614 	if (drm_edid)
6615 		update_display_info(connector, drm_edid);
6616 	else
6617 		drm_reset_display_info(connector);
6618 
6619 	_drm_update_tile_info(connector, drm_edid);
6620 
6621 	return _drm_edid_connector_property_update(connector, drm_edid);
6622 }
6623 
6624 /**
6625  * drm_connector_update_edid_property - update the edid property of a connector
6626  * @connector: drm connector
6627  * @edid: new value of the edid property
6628  *
6629  * This function creates a new blob modeset object and assigns its id to the
6630  * connector's edid property.
6631  * Since we also parse tile information from EDID's displayID block, we also
6632  * set the connector's tile property here. See drm_connector_set_tile_property()
6633  * for more details.
6634  *
6635  * This function is deprecated. Use drm_edid_connector_update() instead.
6636  *
6637  * Returns:
6638  * Zero on success, negative errno on failure.
6639  */
6640 int drm_connector_update_edid_property(struct drm_connector *connector,
6641 				       const struct edid *edid)
6642 {
6643 	struct drm_edid drm_edid;
6644 
6645 	return _drm_connector_update_edid_property(connector,
6646 						   drm_edid_legacy_init(&drm_edid, edid));
6647 }
6648 EXPORT_SYMBOL(drm_connector_update_edid_property);
6649 
6650 /**
6651  * drm_add_edid_modes - add modes from EDID data, if available
6652  * @connector: connector we're probing
6653  * @edid: EDID data
6654  *
6655  * Add the specified modes to the connector's mode list. Also fills out the
6656  * &drm_display_info structure and ELD in @connector with any information which
6657  * can be derived from the edid.
6658  *
6659  * This function is deprecated. Use drm_edid_connector_update() instead.
6660  *
6661  * Return: The number of modes added or 0 if we couldn't find any.
6662  */
6663 int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
6664 {
6665 	struct drm_edid drm_edid;
6666 
6667 	if (edid && !drm_edid_is_valid(edid)) {
6668 		drm_warn(connector->dev, "%s: EDID invalid.\n",
6669 			 connector->name);
6670 		edid = NULL;
6671 	}
6672 
6673 	return _drm_edid_connector_update(connector,
6674 					  drm_edid_legacy_init(&drm_edid, edid));
6675 }
6676 EXPORT_SYMBOL(drm_add_edid_modes);
6677 
6678 /**
6679  * drm_add_modes_noedid - add modes for the connectors without EDID
6680  * @connector: connector we're probing
6681  * @hdisplay: the horizontal display limit
6682  * @vdisplay: the vertical display limit
6683  *
6684  * Add the specified modes to the connector's mode list. Only when the
6685  * hdisplay/vdisplay is not beyond the given limit, it will be added.
6686  *
6687  * Return: The number of modes added or 0 if we couldn't find any.
6688  */
6689 int drm_add_modes_noedid(struct drm_connector *connector,
6690 			int hdisplay, int vdisplay)
6691 {
6692 	int i, count, num_modes = 0;
6693 	struct drm_display_mode *mode;
6694 	struct drm_device *dev = connector->dev;
6695 
6696 	count = ARRAY_SIZE(drm_dmt_modes);
6697 	if (hdisplay < 0)
6698 		hdisplay = 0;
6699 	if (vdisplay < 0)
6700 		vdisplay = 0;
6701 
6702 	for (i = 0; i < count; i++) {
6703 		const struct drm_display_mode *ptr = &drm_dmt_modes[i];
6704 
6705 		if (hdisplay && vdisplay) {
6706 			/*
6707 			 * Only when two are valid, they will be used to check
6708 			 * whether the mode should be added to the mode list of
6709 			 * the connector.
6710 			 */
6711 			if (ptr->hdisplay > hdisplay ||
6712 					ptr->vdisplay > vdisplay)
6713 				continue;
6714 		}
6715 		if (drm_mode_vrefresh(ptr) > 61)
6716 			continue;
6717 		mode = drm_mode_duplicate(dev, ptr);
6718 		if (mode) {
6719 			drm_mode_probed_add(connector, mode);
6720 			num_modes++;
6721 		}
6722 	}
6723 	return num_modes;
6724 }
6725 EXPORT_SYMBOL(drm_add_modes_noedid);
6726 
6727 /**
6728  * drm_set_preferred_mode - Sets the preferred mode of a connector
6729  * @connector: connector whose mode list should be processed
6730  * @hpref: horizontal resolution of preferred mode
6731  * @vpref: vertical resolution of preferred mode
6732  *
6733  * Marks a mode as preferred if it matches the resolution specified by @hpref
6734  * and @vpref.
6735  */
6736 void drm_set_preferred_mode(struct drm_connector *connector,
6737 			   int hpref, int vpref)
6738 {
6739 	struct drm_display_mode *mode;
6740 
6741 	list_for_each_entry(mode, &connector->probed_modes, head) {
6742 		if (mode->hdisplay == hpref &&
6743 		    mode->vdisplay == vpref)
6744 			mode->type |= DRM_MODE_TYPE_PREFERRED;
6745 	}
6746 }
6747 EXPORT_SYMBOL(drm_set_preferred_mode);
6748 
6749 static bool is_hdmi2_sink(const struct drm_connector *connector)
6750 {
6751 	/*
6752 	 * FIXME: sil-sii8620 doesn't have a connector around when
6753 	 * we need one, so we have to be prepared for a NULL connector.
6754 	 */
6755 	if (!connector)
6756 		return true;
6757 
6758 	return connector->display_info.hdmi.scdc.supported ||
6759 		connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR420;
6760 }
6761 
6762 static u8 drm_mode_hdmi_vic(const struct drm_connector *connector,
6763 			    const struct drm_display_mode *mode)
6764 {
6765 	bool has_hdmi_infoframe = connector ?
6766 		connector->display_info.has_hdmi_infoframe : false;
6767 
6768 	if (!has_hdmi_infoframe)
6769 		return 0;
6770 
6771 	/* No HDMI VIC when signalling 3D video format */
6772 	if (mode->flags & DRM_MODE_FLAG_3D_MASK)
6773 		return 0;
6774 
6775 	return drm_match_hdmi_mode(mode);
6776 }
6777 
6778 static u8 drm_mode_cea_vic(const struct drm_connector *connector,
6779 			   const struct drm_display_mode *mode)
6780 {
6781 	u8 vic;
6782 
6783 	/*
6784 	 * HDMI spec says if a mode is found in HDMI 1.4b 4K modes
6785 	 * we should send its VIC in vendor infoframes, else send the
6786 	 * VIC in AVI infoframes. Lets check if this mode is present in
6787 	 * HDMI 1.4b 4K modes
6788 	 */
6789 	if (drm_mode_hdmi_vic(connector, mode))
6790 		return 0;
6791 
6792 	vic = drm_match_cea_mode(mode);
6793 
6794 	/*
6795 	 * HDMI 1.4 VIC range: 1 <= VIC <= 64 (CEA-861-D) but
6796 	 * HDMI 2.0 VIC range: 1 <= VIC <= 107 (CEA-861-F). So we
6797 	 * have to make sure we dont break HDMI 1.4 sinks.
6798 	 */
6799 	if (!is_hdmi2_sink(connector) && vic > 64)
6800 		return 0;
6801 
6802 	return vic;
6803 }
6804 
6805 /**
6806  * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
6807  *                                              data from a DRM display mode
6808  * @frame: HDMI AVI infoframe
6809  * @connector: the connector
6810  * @mode: DRM display mode
6811  *
6812  * Return: 0 on success or a negative error code on failure.
6813  */
6814 int
6815 drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
6816 					 const struct drm_connector *connector,
6817 					 const struct drm_display_mode *mode)
6818 {
6819 	enum hdmi_picture_aspect picture_aspect;
6820 	u8 vic, hdmi_vic;
6821 
6822 	if (!frame || !mode)
6823 		return -EINVAL;
6824 
6825 	hdmi_avi_infoframe_init(frame);
6826 
6827 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
6828 		frame->pixel_repeat = 1;
6829 
6830 	vic = drm_mode_cea_vic(connector, mode);
6831 	hdmi_vic = drm_mode_hdmi_vic(connector, mode);
6832 
6833 	frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
6834 
6835 	/*
6836 	 * As some drivers don't support atomic, we can't use connector state.
6837 	 * So just initialize the frame with default values, just the same way
6838 	 * as it's done with other properties here.
6839 	 */
6840 	frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
6841 	frame->itc = 0;
6842 
6843 	/*
6844 	 * Populate picture aspect ratio from either
6845 	 * user input (if specified) or from the CEA/HDMI mode lists.
6846 	 */
6847 	picture_aspect = mode->picture_aspect_ratio;
6848 	if (picture_aspect == HDMI_PICTURE_ASPECT_NONE) {
6849 		if (vic)
6850 			picture_aspect = drm_get_cea_aspect_ratio(vic);
6851 		else if (hdmi_vic)
6852 			picture_aspect = drm_get_hdmi_aspect_ratio(hdmi_vic);
6853 	}
6854 
6855 	/*
6856 	 * The infoframe can't convey anything but none, 4:3
6857 	 * and 16:9, so if the user has asked for anything else
6858 	 * we can only satisfy it by specifying the right VIC.
6859 	 */
6860 	if (picture_aspect > HDMI_PICTURE_ASPECT_16_9) {
6861 		if (vic) {
6862 			if (picture_aspect != drm_get_cea_aspect_ratio(vic))
6863 				return -EINVAL;
6864 		} else if (hdmi_vic) {
6865 			if (picture_aspect != drm_get_hdmi_aspect_ratio(hdmi_vic))
6866 				return -EINVAL;
6867 		} else {
6868 			return -EINVAL;
6869 		}
6870 
6871 		picture_aspect = HDMI_PICTURE_ASPECT_NONE;
6872 	}
6873 
6874 	frame->video_code = vic;
6875 	frame->picture_aspect = picture_aspect;
6876 	frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
6877 	frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
6878 
6879 	return 0;
6880 }
6881 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
6882 
6883 /**
6884  * drm_hdmi_avi_infoframe_quant_range() - fill the HDMI AVI infoframe
6885  *                                        quantization range information
6886  * @frame: HDMI AVI infoframe
6887  * @connector: the connector
6888  * @mode: DRM display mode
6889  * @rgb_quant_range: RGB quantization range (Q)
6890  */
6891 void
6892 drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe *frame,
6893 				   const struct drm_connector *connector,
6894 				   const struct drm_display_mode *mode,
6895 				   enum hdmi_quantization_range rgb_quant_range)
6896 {
6897 	const struct drm_display_info *info = &connector->display_info;
6898 
6899 	/*
6900 	 * CEA-861:
6901 	 * "A Source shall not send a non-zero Q value that does not correspond
6902 	 *  to the default RGB Quantization Range for the transmitted Picture
6903 	 *  unless the Sink indicates support for the Q bit in a Video
6904 	 *  Capabilities Data Block."
6905 	 *
6906 	 * HDMI 2.0 recommends sending non-zero Q when it does match the
6907 	 * default RGB quantization range for the mode, even when QS=0.
6908 	 */
6909 	if (info->rgb_quant_range_selectable ||
6910 	    rgb_quant_range == drm_default_rgb_quant_range(mode))
6911 		frame->quantization_range = rgb_quant_range;
6912 	else
6913 		frame->quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
6914 
6915 	/*
6916 	 * CEA-861-F:
6917 	 * "When transmitting any RGB colorimetry, the Source should set the
6918 	 *  YQ-field to match the RGB Quantization Range being transmitted
6919 	 *  (e.g., when Limited Range RGB, set YQ=0 or when Full Range RGB,
6920 	 *  set YQ=1) and the Sink shall ignore the YQ-field."
6921 	 *
6922 	 * Unfortunate certain sinks (eg. VIZ Model 67/E261VA) get confused
6923 	 * by non-zero YQ when receiving RGB. There doesn't seem to be any
6924 	 * good way to tell which version of CEA-861 the sink supports, so
6925 	 * we limit non-zero YQ to HDMI 2.0 sinks only as HDMI 2.0 is based
6926 	 * on CEA-861-F.
6927 	 */
6928 	if (!is_hdmi2_sink(connector) ||
6929 	    rgb_quant_range == HDMI_QUANTIZATION_RANGE_LIMITED)
6930 		frame->ycc_quantization_range =
6931 			HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
6932 	else
6933 		frame->ycc_quantization_range =
6934 			HDMI_YCC_QUANTIZATION_RANGE_FULL;
6935 }
6936 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_quant_range);
6937 
6938 static enum hdmi_3d_structure
6939 s3d_structure_from_display_mode(const struct drm_display_mode *mode)
6940 {
6941 	u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
6942 
6943 	switch (layout) {
6944 	case DRM_MODE_FLAG_3D_FRAME_PACKING:
6945 		return HDMI_3D_STRUCTURE_FRAME_PACKING;
6946 	case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
6947 		return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
6948 	case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
6949 		return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
6950 	case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
6951 		return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
6952 	case DRM_MODE_FLAG_3D_L_DEPTH:
6953 		return HDMI_3D_STRUCTURE_L_DEPTH;
6954 	case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
6955 		return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
6956 	case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
6957 		return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
6958 	case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
6959 		return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
6960 	default:
6961 		return HDMI_3D_STRUCTURE_INVALID;
6962 	}
6963 }
6964 
6965 /**
6966  * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
6967  * data from a DRM display mode
6968  * @frame: HDMI vendor infoframe
6969  * @connector: the connector
6970  * @mode: DRM display mode
6971  *
6972  * Note that there's is a need to send HDMI vendor infoframes only when using a
6973  * 4k or stereoscopic 3D mode. So when giving any other mode as input this
6974  * function will return -EINVAL, error that can be safely ignored.
6975  *
6976  * Return: 0 on success or a negative error code on failure.
6977  */
6978 int
6979 drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
6980 					    const struct drm_connector *connector,
6981 					    const struct drm_display_mode *mode)
6982 {
6983 	/*
6984 	 * FIXME: sil-sii8620 doesn't have a connector around when
6985 	 * we need one, so we have to be prepared for a NULL connector.
6986 	 */
6987 	bool has_hdmi_infoframe = connector ?
6988 		connector->display_info.has_hdmi_infoframe : false;
6989 	int err;
6990 
6991 	if (!frame || !mode)
6992 		return -EINVAL;
6993 
6994 	if (!has_hdmi_infoframe)
6995 		return -EINVAL;
6996 
6997 	err = hdmi_vendor_infoframe_init(frame);
6998 	if (err < 0)
6999 		return err;
7000 
7001 	/*
7002 	 * Even if it's not absolutely necessary to send the infoframe
7003 	 * (ie.vic==0 and s3d_struct==0) we will still send it if we
7004 	 * know that the sink can handle it. This is based on a
7005 	 * suggestion in HDMI 2.0 Appendix F. Apparently some sinks
7006 	 * have trouble realizing that they should switch from 3D to 2D
7007 	 * mode if the source simply stops sending the infoframe when
7008 	 * it wants to switch from 3D to 2D.
7009 	 */
7010 	frame->vic = drm_mode_hdmi_vic(connector, mode);
7011 	frame->s3d_struct = s3d_structure_from_display_mode(mode);
7012 
7013 	return 0;
7014 }
7015 EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
7016 
7017 static void drm_parse_tiled_block(struct drm_connector *connector,
7018 				  const struct displayid_block *block)
7019 {
7020 	const struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
7021 	u16 w, h;
7022 	u8 tile_v_loc, tile_h_loc;
7023 	u8 num_v_tile, num_h_tile;
7024 	struct drm_tile_group *tg;
7025 
7026 	w = tile->tile_size[0] | tile->tile_size[1] << 8;
7027 	h = tile->tile_size[2] | tile->tile_size[3] << 8;
7028 
7029 	num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
7030 	num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
7031 	tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
7032 	tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
7033 
7034 	connector->has_tile = true;
7035 	if (tile->tile_cap & 0x80)
7036 		connector->tile_is_single_monitor = true;
7037 
7038 	connector->num_h_tile = num_h_tile + 1;
7039 	connector->num_v_tile = num_v_tile + 1;
7040 	connector->tile_h_loc = tile_h_loc;
7041 	connector->tile_v_loc = tile_v_loc;
7042 	connector->tile_h_size = w + 1;
7043 	connector->tile_v_size = h + 1;
7044 
7045 	DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
7046 	DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
7047 	DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
7048 		      num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
7049 	DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
7050 
7051 	tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
7052 	if (!tg)
7053 		tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
7054 	if (!tg)
7055 		return;
7056 
7057 	if (connector->tile_group != tg) {
7058 		/* if we haven't got a pointer,
7059 		   take the reference, drop ref to old tile group */
7060 		if (connector->tile_group)
7061 			drm_mode_put_tile_group(connector->dev, connector->tile_group);
7062 		connector->tile_group = tg;
7063 	} else {
7064 		/* if same tile group, then release the ref we just took. */
7065 		drm_mode_put_tile_group(connector->dev, tg);
7066 	}
7067 }
7068 
7069 static void _drm_update_tile_info(struct drm_connector *connector,
7070 				  const struct drm_edid *drm_edid)
7071 {
7072 	const struct displayid_block *block;
7073 	struct displayid_iter iter;
7074 
7075 	connector->has_tile = false;
7076 
7077 	displayid_iter_edid_begin(drm_edid, &iter);
7078 	displayid_iter_for_each(block, &iter) {
7079 		if (block->tag == DATA_BLOCK_TILED_DISPLAY)
7080 			drm_parse_tiled_block(connector, block);
7081 	}
7082 	displayid_iter_end(&iter);
7083 
7084 	if (!connector->has_tile && connector->tile_group) {
7085 		drm_mode_put_tile_group(connector->dev, connector->tile_group);
7086 		connector->tile_group = NULL;
7087 	}
7088 }
7089