• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include <linux/kernel.h>
31 #include <linux/slab.h>
32 #include <linux/hdmi.h>
33 #include <linux/i2c.h>
34 #include <linux/module.h>
35 #include <linux/vga_switcheroo.h>
36 #include <drm/drmP.h>
37 #include <drm/drm_edid.h>
38 #include <drm/drm_displayid.h>
39 
40 #define version_greater(edid, maj, min) \
41 	(((edid)->version > (maj)) || \
42 	 ((edid)->version == (maj) && (edid)->revision > (min)))
43 
44 #define EDID_EST_TIMINGS 16
45 #define EDID_STD_TIMINGS 8
46 #define EDID_DETAILED_TIMINGS 4
47 
48 /*
49  * EDID blocks out in the wild have a variety of bugs, try to collect
50  * them here (note that userspace may work around broken monitors first,
51  * but fixes should make their way here so that the kernel "just works"
52  * on as many displays as possible).
53  */
54 
55 /* First detailed mode wrong, use largest 60Hz mode */
56 #define EDID_QUIRK_PREFER_LARGE_60		(1 << 0)
57 /* Reported 135MHz pixel clock is too high, needs adjustment */
58 #define EDID_QUIRK_135_CLOCK_TOO_HIGH		(1 << 1)
59 /* Prefer the largest mode at 75 Hz */
60 #define EDID_QUIRK_PREFER_LARGE_75		(1 << 2)
61 /* Detail timing is in cm not mm */
62 #define EDID_QUIRK_DETAILED_IN_CM		(1 << 3)
63 /* Detailed timing descriptors have bogus size values, so just take the
64  * maximum size and use that.
65  */
66 #define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE	(1 << 4)
67 /* Monitor forgot to set the first detailed is preferred bit. */
68 #define EDID_QUIRK_FIRST_DETAILED_PREFERRED	(1 << 5)
69 /* use +hsync +vsync for detailed mode */
70 #define EDID_QUIRK_DETAILED_SYNC_PP		(1 << 6)
71 /* Force reduced-blanking timings for detailed modes */
72 #define EDID_QUIRK_FORCE_REDUCED_BLANKING	(1 << 7)
73 /* Force 8bpc */
74 #define EDID_QUIRK_FORCE_8BPC			(1 << 8)
75 /* Force 12bpc */
76 #define EDID_QUIRK_FORCE_12BPC			(1 << 9)
77 /* Force 6bpc */
78 #define EDID_QUIRK_FORCE_6BPC			(1 << 10)
79 /* Force 10bpc */
80 #define EDID_QUIRK_FORCE_10BPC			(1 << 11)
81 
82 struct detailed_mode_closure {
83 	struct drm_connector *connector;
84 	struct edid *edid;
85 	bool preferred;
86 	u32 quirks;
87 	int modes;
88 };
89 
90 #define LEVEL_DMT	0
91 #define LEVEL_GTF	1
92 #define LEVEL_GTF2	2
93 #define LEVEL_CVT	3
94 
95 static const struct edid_quirk {
96 	char vendor[4];
97 	int product_id;
98 	u32 quirks;
99 } edid_quirk_list[] = {
100 	/* Acer AL1706 */
101 	{ "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
102 	/* Acer F51 */
103 	{ "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
104 	/* Unknown Acer */
105 	{ "ACR", 2423, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
106 
107 	/* AEO model 0 reports 8 bpc, but is a 6 bpc panel */
108 	{ "AEO", 0, EDID_QUIRK_FORCE_6BPC },
109 
110 	/* CPT panel of Asus UX303LA reports 8 bpc, but is a 6 bpc panel */
111 	{ "CPT", 0x17df, EDID_QUIRK_FORCE_6BPC },
112 
113 	/* Belinea 10 15 55 */
114 	{ "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
115 	{ "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
116 
117 	/* Envision Peripherals, Inc. EN-7100e */
118 	{ "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
119 	/* Envision EN2028 */
120 	{ "EPI", 8232, EDID_QUIRK_PREFER_LARGE_60 },
121 
122 	/* Funai Electronics PM36B */
123 	{ "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
124 	  EDID_QUIRK_DETAILED_IN_CM },
125 
126 	/* LGD panel of HP zBook 17 G2, eDP 10 bpc, but reports unknown bpc */
127 	{ "LGD", 764, EDID_QUIRK_FORCE_10BPC },
128 
129 	/* LG Philips LCD LP154W01-A5 */
130 	{ "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
131 	{ "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
132 
133 	/* Philips 107p5 CRT */
134 	{ "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
135 
136 	/* Proview AY765C */
137 	{ "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
138 
139 	/* Samsung SyncMaster 205BW.  Note: irony */
140 	{ "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
141 	/* Samsung SyncMaster 22[5-6]BW */
142 	{ "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
143 	{ "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
144 
145 	/* Sony PVM-2541A does up to 12 bpc, but only reports max 8 bpc */
146 	{ "SNY", 0x2541, EDID_QUIRK_FORCE_12BPC },
147 
148 	/* ViewSonic VA2026w */
149 	{ "VSC", 5020, EDID_QUIRK_FORCE_REDUCED_BLANKING },
150 
151 	/* Medion MD 30217 PG */
152 	{ "MED", 0x7b8, EDID_QUIRK_PREFER_LARGE_75 },
153 
154 	/* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
155 	{ "SEC", 0xd033, EDID_QUIRK_FORCE_8BPC },
156 
157 	/* Rotel RSX-1058 forwards sink's EDID but only does HDMI 1.1*/
158 	{ "ETR", 13896, EDID_QUIRK_FORCE_8BPC },
159 };
160 
161 /*
162  * Autogenerated from the DMT spec.
163  * This table is copied from xfree86/modes/xf86EdidModes.c.
164  */
165 static const struct drm_display_mode drm_dmt_modes[] = {
166 	/* 0x01 - 640x350@85Hz */
167 	{ DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
168 		   736, 832, 0, 350, 382, 385, 445, 0,
169 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
170 	/* 0x02 - 640x400@85Hz */
171 	{ DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
172 		   736, 832, 0, 400, 401, 404, 445, 0,
173 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
174 	/* 0x03 - 720x400@85Hz */
175 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
176 		   828, 936, 0, 400, 401, 404, 446, 0,
177 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
178 	/* 0x04 - 640x480@60Hz */
179 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
180 		   752, 800, 0, 480, 490, 492, 525, 0,
181 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
182 	/* 0x05 - 640x480@72Hz */
183 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
184 		   704, 832, 0, 480, 489, 492, 520, 0,
185 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
186 	/* 0x06 - 640x480@75Hz */
187 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
188 		   720, 840, 0, 480, 481, 484, 500, 0,
189 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
190 	/* 0x07 - 640x480@85Hz */
191 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
192 		   752, 832, 0, 480, 481, 484, 509, 0,
193 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
194 	/* 0x08 - 800x600@56Hz */
195 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
196 		   896, 1024, 0, 600, 601, 603, 625, 0,
197 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
198 	/* 0x09 - 800x600@60Hz */
199 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
200 		   968, 1056, 0, 600, 601, 605, 628, 0,
201 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
202 	/* 0x0a - 800x600@72Hz */
203 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
204 		   976, 1040, 0, 600, 637, 643, 666, 0,
205 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
206 	/* 0x0b - 800x600@75Hz */
207 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
208 		   896, 1056, 0, 600, 601, 604, 625, 0,
209 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
210 	/* 0x0c - 800x600@85Hz */
211 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
212 		   896, 1048, 0, 600, 601, 604, 631, 0,
213 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
214 	/* 0x0d - 800x600@120Hz RB */
215 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 73250, 800, 848,
216 		   880, 960, 0, 600, 603, 607, 636, 0,
217 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
218 	/* 0x0e - 848x480@60Hz */
219 	{ DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
220 		   976, 1088, 0, 480, 486, 494, 517, 0,
221 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
222 	/* 0x0f - 1024x768@43Hz, interlace */
223 	{ DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
224 		   1208, 1264, 0, 768, 768, 776, 817, 0,
225 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
226 		   DRM_MODE_FLAG_INTERLACE) },
227 	/* 0x10 - 1024x768@60Hz */
228 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
229 		   1184, 1344, 0, 768, 771, 777, 806, 0,
230 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
231 	/* 0x11 - 1024x768@70Hz */
232 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
233 		   1184, 1328, 0, 768, 771, 777, 806, 0,
234 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
235 	/* 0x12 - 1024x768@75Hz */
236 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
237 		   1136, 1312, 0, 768, 769, 772, 800, 0,
238 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
239 	/* 0x13 - 1024x768@85Hz */
240 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
241 		   1168, 1376, 0, 768, 769, 772, 808, 0,
242 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
243 	/* 0x14 - 1024x768@120Hz RB */
244 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 115500, 1024, 1072,
245 		   1104, 1184, 0, 768, 771, 775, 813, 0,
246 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
247 	/* 0x15 - 1152x864@75Hz */
248 	{ DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
249 		   1344, 1600, 0, 864, 865, 868, 900, 0,
250 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
251 	/* 0x55 - 1280x720@60Hz */
252 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
253 		   1430, 1650, 0, 720, 725, 730, 750, 0,
254 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
255 	/* 0x16 - 1280x768@60Hz RB */
256 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 68250, 1280, 1328,
257 		   1360, 1440, 0, 768, 771, 778, 790, 0,
258 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
259 	/* 0x17 - 1280x768@60Hz */
260 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
261 		   1472, 1664, 0, 768, 771, 778, 798, 0,
262 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
263 	/* 0x18 - 1280x768@75Hz */
264 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
265 		   1488, 1696, 0, 768, 771, 778, 805, 0,
266 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
267 	/* 0x19 - 1280x768@85Hz */
268 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
269 		   1496, 1712, 0, 768, 771, 778, 809, 0,
270 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
271 	/* 0x1a - 1280x768@120Hz RB */
272 	{ DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 140250, 1280, 1328,
273 		   1360, 1440, 0, 768, 771, 778, 813, 0,
274 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
275 	/* 0x1b - 1280x800@60Hz RB */
276 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 71000, 1280, 1328,
277 		   1360, 1440, 0, 800, 803, 809, 823, 0,
278 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
279 	/* 0x1c - 1280x800@60Hz */
280 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
281 		   1480, 1680, 0, 800, 803, 809, 831, 0,
282 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
283 	/* 0x1d - 1280x800@75Hz */
284 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
285 		   1488, 1696, 0, 800, 803, 809, 838, 0,
286 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
287 	/* 0x1e - 1280x800@85Hz */
288 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
289 		   1496, 1712, 0, 800, 803, 809, 843, 0,
290 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
291 	/* 0x1f - 1280x800@120Hz RB */
292 	{ DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 146250, 1280, 1328,
293 		   1360, 1440, 0, 800, 803, 809, 847, 0,
294 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
295 	/* 0x20 - 1280x960@60Hz */
296 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
297 		   1488, 1800, 0, 960, 961, 964, 1000, 0,
298 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
299 	/* 0x21 - 1280x960@85Hz */
300 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
301 		   1504, 1728, 0, 960, 961, 964, 1011, 0,
302 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
303 	/* 0x22 - 1280x960@120Hz RB */
304 	{ DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 175500, 1280, 1328,
305 		   1360, 1440, 0, 960, 963, 967, 1017, 0,
306 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
307 	/* 0x23 - 1280x1024@60Hz */
308 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
309 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
310 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
311 	/* 0x24 - 1280x1024@75Hz */
312 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
313 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
314 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
315 	/* 0x25 - 1280x1024@85Hz */
316 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
317 		   1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
318 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
319 	/* 0x26 - 1280x1024@120Hz RB */
320 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 187250, 1280, 1328,
321 		   1360, 1440, 0, 1024, 1027, 1034, 1084, 0,
322 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
323 	/* 0x27 - 1360x768@60Hz */
324 	{ DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
325 		   1536, 1792, 0, 768, 771, 777, 795, 0,
326 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
327 	/* 0x28 - 1360x768@120Hz RB */
328 	{ DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 148250, 1360, 1408,
329 		   1440, 1520, 0, 768, 771, 776, 813, 0,
330 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
331 	/* 0x51 - 1366x768@60Hz */
332 	{ DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 85500, 1366, 1436,
333 		   1579, 1792, 0, 768, 771, 774, 798, 0,
334 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
335 	/* 0x56 - 1366x768@60Hz */
336 	{ DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 72000, 1366, 1380,
337 		   1436, 1500, 0, 768, 769, 772, 800, 0,
338 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
339 	/* 0x29 - 1400x1050@60Hz RB */
340 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 101000, 1400, 1448,
341 		   1480, 1560, 0, 1050, 1053, 1057, 1080, 0,
342 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
343 	/* 0x2a - 1400x1050@60Hz */
344 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
345 		   1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
346 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
347 	/* 0x2b - 1400x1050@75Hz */
348 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
349 		   1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
350 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
351 	/* 0x2c - 1400x1050@85Hz */
352 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
353 		   1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
354 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
355 	/* 0x2d - 1400x1050@120Hz RB */
356 	{ DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 208000, 1400, 1448,
357 		   1480, 1560, 0, 1050, 1053, 1057, 1112, 0,
358 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
359 	/* 0x2e - 1440x900@60Hz RB */
360 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 88750, 1440, 1488,
361 		   1520, 1600, 0, 900, 903, 909, 926, 0,
362 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
363 	/* 0x2f - 1440x900@60Hz */
364 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
365 		   1672, 1904, 0, 900, 903, 909, 934, 0,
366 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
367 	/* 0x30 - 1440x900@75Hz */
368 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
369 		   1688, 1936, 0, 900, 903, 909, 942, 0,
370 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
371 	/* 0x31 - 1440x900@85Hz */
372 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
373 		   1696, 1952, 0, 900, 903, 909, 948, 0,
374 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
375 	/* 0x32 - 1440x900@120Hz RB */
376 	{ DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 182750, 1440, 1488,
377 		   1520, 1600, 0, 900, 903, 909, 953, 0,
378 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
379 	/* 0x53 - 1600x900@60Hz */
380 	{ DRM_MODE("1600x900", DRM_MODE_TYPE_DRIVER, 108000, 1600, 1624,
381 		   1704, 1800, 0, 900, 901, 904, 1000, 0,
382 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
383 	/* 0x33 - 1600x1200@60Hz */
384 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
385 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
386 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
387 	/* 0x34 - 1600x1200@65Hz */
388 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
389 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
390 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
391 	/* 0x35 - 1600x1200@70Hz */
392 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
393 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
394 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
395 	/* 0x36 - 1600x1200@75Hz */
396 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
397 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
398 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
399 	/* 0x37 - 1600x1200@85Hz */
400 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
401 		   1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
402 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
403 	/* 0x38 - 1600x1200@120Hz RB */
404 	{ DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 268250, 1600, 1648,
405 		   1680, 1760, 0, 1200, 1203, 1207, 1271, 0,
406 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
407 	/* 0x39 - 1680x1050@60Hz RB */
408 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 119000, 1680, 1728,
409 		   1760, 1840, 0, 1050, 1053, 1059, 1080, 0,
410 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
411 	/* 0x3a - 1680x1050@60Hz */
412 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
413 		   1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
414 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
415 	/* 0x3b - 1680x1050@75Hz */
416 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
417 		   1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
418 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
419 	/* 0x3c - 1680x1050@85Hz */
420 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
421 		   1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
422 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
423 	/* 0x3d - 1680x1050@120Hz RB */
424 	{ DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 245500, 1680, 1728,
425 		   1760, 1840, 0, 1050, 1053, 1059, 1112, 0,
426 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
427 	/* 0x3e - 1792x1344@60Hz */
428 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
429 		   2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
430 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
431 	/* 0x3f - 1792x1344@75Hz */
432 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
433 		   2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
434 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
435 	/* 0x40 - 1792x1344@120Hz RB */
436 	{ DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 333250, 1792, 1840,
437 		   1872, 1952, 0, 1344, 1347, 1351, 1423, 0,
438 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
439 	/* 0x41 - 1856x1392@60Hz */
440 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
441 		   2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
442 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
443 	/* 0x42 - 1856x1392@75Hz */
444 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
445 		   2208, 2560, 0, 1392, 1393, 1396, 1500, 0,
446 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
447 	/* 0x43 - 1856x1392@120Hz RB */
448 	{ DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 356500, 1856, 1904,
449 		   1936, 2016, 0, 1392, 1395, 1399, 1474, 0,
450 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
451 	/* 0x52 - 1920x1080@60Hz */
452 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
453 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
454 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
455 	/* 0x44 - 1920x1200@60Hz RB */
456 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 154000, 1920, 1968,
457 		   2000, 2080, 0, 1200, 1203, 1209, 1235, 0,
458 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
459 	/* 0x45 - 1920x1200@60Hz */
460 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
461 		   2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
462 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
463 	/* 0x46 - 1920x1200@75Hz */
464 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
465 		   2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
466 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
467 	/* 0x47 - 1920x1200@85Hz */
468 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
469 		   2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
470 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
471 	/* 0x48 - 1920x1200@120Hz RB */
472 	{ DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 317000, 1920, 1968,
473 		   2000, 2080, 0, 1200, 1203, 1209, 1271, 0,
474 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
475 	/* 0x49 - 1920x1440@60Hz */
476 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
477 		   2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
478 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
479 	/* 0x4a - 1920x1440@75Hz */
480 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
481 		   2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
482 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
483 	/* 0x4b - 1920x1440@120Hz RB */
484 	{ DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 380500, 1920, 1968,
485 		   2000, 2080, 0, 1440, 1443, 1447, 1525, 0,
486 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
487 	/* 0x54 - 2048x1152@60Hz */
488 	{ DRM_MODE("2048x1152", DRM_MODE_TYPE_DRIVER, 162000, 2048, 2074,
489 		   2154, 2250, 0, 1152, 1153, 1156, 1200, 0,
490 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
491 	/* 0x4c - 2560x1600@60Hz RB */
492 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 268500, 2560, 2608,
493 		   2640, 2720, 0, 1600, 1603, 1609, 1646, 0,
494 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
495 	/* 0x4d - 2560x1600@60Hz */
496 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
497 		   3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
498 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
499 	/* 0x4e - 2560x1600@75Hz */
500 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
501 		   3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
502 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
503 	/* 0x4f - 2560x1600@85Hz */
504 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
505 		   3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
506 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
507 	/* 0x50 - 2560x1600@120Hz RB */
508 	{ DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 552750, 2560, 2608,
509 		   2640, 2720, 0, 1600, 1603, 1609, 1694, 0,
510 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
511 	/* 0x57 - 4096x2160@60Hz RB */
512 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556744, 4096, 4104,
513 		   4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
514 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
515 	/* 0x58 - 4096x2160@59.94Hz RB */
516 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556188, 4096, 4104,
517 		   4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
518 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
519 };
520 
521 /*
522  * These more or less come from the DMT spec.  The 720x400 modes are
523  * inferred from historical 80x25 practice.  The 640x480@67 and 832x624@75
524  * modes are old-school Mac modes.  The EDID spec says the 1152x864@75 mode
525  * should be 1152x870, again for the Mac, but instead we use the x864 DMT
526  * mode.
527  *
528  * The DMT modes have been fact-checked; the rest are mild guesses.
529  */
530 static const struct drm_display_mode edid_est_modes[] = {
531 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
532 		   968, 1056, 0, 600, 601, 605, 628, 0,
533 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
534 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
535 		   896, 1024, 0, 600, 601, 603,  625, 0,
536 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
537 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
538 		   720, 840, 0, 480, 481, 484, 500, 0,
539 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
540 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
541 		   704,  832, 0, 480, 489, 492, 520, 0,
542 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
543 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
544 		   768,  864, 0, 480, 483, 486, 525, 0,
545 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
546 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
547 		   752, 800, 0, 480, 490, 492, 525, 0,
548 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
549 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
550 		   846, 900, 0, 400, 421, 423,  449, 0,
551 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
552 	{ DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
553 		   846,  900, 0, 400, 412, 414, 449, 0,
554 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
555 	{ DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
556 		   1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
557 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
558 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
559 		   1136, 1312, 0,  768, 769, 772, 800, 0,
560 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
561 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
562 		   1184, 1328, 0,  768, 771, 777, 806, 0,
563 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
564 	{ DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
565 		   1184, 1344, 0,  768, 771, 777, 806, 0,
566 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
567 	{ DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
568 		   1208, 1264, 0, 768, 768, 776, 817, 0,
569 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
570 	{ DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
571 		   928, 1152, 0, 624, 625, 628, 667, 0,
572 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
573 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
574 		   896, 1056, 0, 600, 601, 604,  625, 0,
575 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
576 	{ DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
577 		   976, 1040, 0, 600, 637, 643, 666, 0,
578 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
579 	{ DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
580 		   1344, 1600, 0,  864, 865, 868, 900, 0,
581 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
582 };
583 
584 struct minimode {
585 	short w;
586 	short h;
587 	short r;
588 	short rb;
589 };
590 
591 static const struct minimode est3_modes[] = {
592 	/* byte 6 */
593 	{ 640, 350, 85, 0 },
594 	{ 640, 400, 85, 0 },
595 	{ 720, 400, 85, 0 },
596 	{ 640, 480, 85, 0 },
597 	{ 848, 480, 60, 0 },
598 	{ 800, 600, 85, 0 },
599 	{ 1024, 768, 85, 0 },
600 	{ 1152, 864, 75, 0 },
601 	/* byte 7 */
602 	{ 1280, 768, 60, 1 },
603 	{ 1280, 768, 60, 0 },
604 	{ 1280, 768, 75, 0 },
605 	{ 1280, 768, 85, 0 },
606 	{ 1280, 960, 60, 0 },
607 	{ 1280, 960, 85, 0 },
608 	{ 1280, 1024, 60, 0 },
609 	{ 1280, 1024, 85, 0 },
610 	/* byte 8 */
611 	{ 1360, 768, 60, 0 },
612 	{ 1440, 900, 60, 1 },
613 	{ 1440, 900, 60, 0 },
614 	{ 1440, 900, 75, 0 },
615 	{ 1440, 900, 85, 0 },
616 	{ 1400, 1050, 60, 1 },
617 	{ 1400, 1050, 60, 0 },
618 	{ 1400, 1050, 75, 0 },
619 	/* byte 9 */
620 	{ 1400, 1050, 85, 0 },
621 	{ 1680, 1050, 60, 1 },
622 	{ 1680, 1050, 60, 0 },
623 	{ 1680, 1050, 75, 0 },
624 	{ 1680, 1050, 85, 0 },
625 	{ 1600, 1200, 60, 0 },
626 	{ 1600, 1200, 65, 0 },
627 	{ 1600, 1200, 70, 0 },
628 	/* byte 10 */
629 	{ 1600, 1200, 75, 0 },
630 	{ 1600, 1200, 85, 0 },
631 	{ 1792, 1344, 60, 0 },
632 	{ 1792, 1344, 75, 0 },
633 	{ 1856, 1392, 60, 0 },
634 	{ 1856, 1392, 75, 0 },
635 	{ 1920, 1200, 60, 1 },
636 	{ 1920, 1200, 60, 0 },
637 	/* byte 11 */
638 	{ 1920, 1200, 75, 0 },
639 	{ 1920, 1200, 85, 0 },
640 	{ 1920, 1440, 60, 0 },
641 	{ 1920, 1440, 75, 0 },
642 };
643 
644 static const struct minimode extra_modes[] = {
645 	{ 1024, 576,  60, 0 },
646 	{ 1366, 768,  60, 0 },
647 	{ 1600, 900,  60, 0 },
648 	{ 1680, 945,  60, 0 },
649 	{ 1920, 1080, 60, 0 },
650 	{ 2048, 1152, 60, 0 },
651 	{ 2048, 1536, 60, 0 },
652 };
653 
654 /*
655  * Probably taken from CEA-861 spec.
656  * This table is converted from xorg's hw/xfree86/modes/xf86EdidModes.c.
657  *
658  * Index using the VIC.
659  */
660 static const struct drm_display_mode edid_cea_modes[] = {
661 	/* 0 - dummy, VICs start at 1 */
662 	{ },
663 	/* 1 - 640x480@60Hz */
664 	{ DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
665 		   752, 800, 0, 480, 490, 492, 525, 0,
666 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
667 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
668 	/* 2 - 720x480@60Hz */
669 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
670 		   798, 858, 0, 480, 489, 495, 525, 0,
671 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
672 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
673 	/* 3 - 720x480@60Hz */
674 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
675 		   798, 858, 0, 480, 489, 495, 525, 0,
676 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
677 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
678 	/* 4 - 1280x720@60Hz */
679 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
680 		   1430, 1650, 0, 720, 725, 730, 750, 0,
681 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
682 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
683 	/* 5 - 1920x1080i@60Hz */
684 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
685 		   2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
686 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
687 			DRM_MODE_FLAG_INTERLACE),
688 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
689 	/* 6 - 720(1440)x480i@60Hz */
690 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
691 		   801, 858, 0, 480, 488, 494, 525, 0,
692 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
693 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
694 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
695 	/* 7 - 720(1440)x480i@60Hz */
696 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
697 		   801, 858, 0, 480, 488, 494, 525, 0,
698 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
699 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
700 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
701 	/* 8 - 720(1440)x240@60Hz */
702 	{ DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
703 		   801, 858, 0, 240, 244, 247, 262, 0,
704 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
705 			DRM_MODE_FLAG_DBLCLK),
706 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
707 	/* 9 - 720(1440)x240@60Hz */
708 	{ DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
709 		   801, 858, 0, 240, 244, 247, 262, 0,
710 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
711 			DRM_MODE_FLAG_DBLCLK),
712 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
713 	/* 10 - 2880x480i@60Hz */
714 	{ DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
715 		   3204, 3432, 0, 480, 488, 494, 525, 0,
716 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
717 			DRM_MODE_FLAG_INTERLACE),
718 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
719 	/* 11 - 2880x480i@60Hz */
720 	{ DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
721 		   3204, 3432, 0, 480, 488, 494, 525, 0,
722 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
723 			DRM_MODE_FLAG_INTERLACE),
724 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
725 	/* 12 - 2880x240@60Hz */
726 	{ DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
727 		   3204, 3432, 0, 240, 244, 247, 262, 0,
728 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
729 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
730 	/* 13 - 2880x240@60Hz */
731 	{ DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
732 		   3204, 3432, 0, 240, 244, 247, 262, 0,
733 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
734 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
735 	/* 14 - 1440x480@60Hz */
736 	{ DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
737 		   1596, 1716, 0, 480, 489, 495, 525, 0,
738 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
739 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
740 	/* 15 - 1440x480@60Hz */
741 	{ DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
742 		   1596, 1716, 0, 480, 489, 495, 525, 0,
743 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
744 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
745 	/* 16 - 1920x1080@60Hz */
746 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
747 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
748 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
749 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
750 	/* 17 - 720x576@50Hz */
751 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
752 		   796, 864, 0, 576, 581, 586, 625, 0,
753 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
754 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
755 	/* 18 - 720x576@50Hz */
756 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
757 		   796, 864, 0, 576, 581, 586, 625, 0,
758 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
759 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
760 	/* 19 - 1280x720@50Hz */
761 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
762 		   1760, 1980, 0, 720, 725, 730, 750, 0,
763 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
764 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
765 	/* 20 - 1920x1080i@50Hz */
766 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
767 		   2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
768 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
769 			DRM_MODE_FLAG_INTERLACE),
770 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
771 	/* 21 - 720(1440)x576i@50Hz */
772 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
773 		   795, 864, 0, 576, 580, 586, 625, 0,
774 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
775 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
776 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
777 	/* 22 - 720(1440)x576i@50Hz */
778 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
779 		   795, 864, 0, 576, 580, 586, 625, 0,
780 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
781 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
782 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
783 	/* 23 - 720(1440)x288@50Hz */
784 	{ DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
785 		   795, 864, 0, 288, 290, 293, 312, 0,
786 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
787 			DRM_MODE_FLAG_DBLCLK),
788 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
789 	/* 24 - 720(1440)x288@50Hz */
790 	{ DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
791 		   795, 864, 0, 288, 290, 293, 312, 0,
792 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
793 			DRM_MODE_FLAG_DBLCLK),
794 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
795 	/* 25 - 2880x576i@50Hz */
796 	{ DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
797 		   3180, 3456, 0, 576, 580, 586, 625, 0,
798 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
799 			DRM_MODE_FLAG_INTERLACE),
800 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
801 	/* 26 - 2880x576i@50Hz */
802 	{ DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
803 		   3180, 3456, 0, 576, 580, 586, 625, 0,
804 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
805 			DRM_MODE_FLAG_INTERLACE),
806 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
807 	/* 27 - 2880x288@50Hz */
808 	{ DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
809 		   3180, 3456, 0, 288, 290, 293, 312, 0,
810 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
811 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
812 	/* 28 - 2880x288@50Hz */
813 	{ DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
814 		   3180, 3456, 0, 288, 290, 293, 312, 0,
815 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
816 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
817 	/* 29 - 1440x576@50Hz */
818 	{ DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
819 		   1592, 1728, 0, 576, 581, 586, 625, 0,
820 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
821 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
822 	/* 30 - 1440x576@50Hz */
823 	{ DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
824 		   1592, 1728, 0, 576, 581, 586, 625, 0,
825 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
826 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
827 	/* 31 - 1920x1080@50Hz */
828 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
829 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
830 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
831 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
832 	/* 32 - 1920x1080@24Hz */
833 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
834 		   2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
835 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
836 	  .vrefresh = 24, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
837 	/* 33 - 1920x1080@25Hz */
838 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
839 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
840 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
841 	  .vrefresh = 25, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
842 	/* 34 - 1920x1080@30Hz */
843 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
844 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
845 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
846 	  .vrefresh = 30, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
847 	/* 35 - 2880x480@60Hz */
848 	{ DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
849 		   3192, 3432, 0, 480, 489, 495, 525, 0,
850 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
851 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
852 	/* 36 - 2880x480@60Hz */
853 	{ DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
854 		   3192, 3432, 0, 480, 489, 495, 525, 0,
855 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
856 	  .vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
857 	/* 37 - 2880x576@50Hz */
858 	{ DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
859 		   3184, 3456, 0, 576, 581, 586, 625, 0,
860 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
861 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
862 	/* 38 - 2880x576@50Hz */
863 	{ DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
864 		   3184, 3456, 0, 576, 581, 586, 625, 0,
865 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
866 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
867 	/* 39 - 1920x1080i@50Hz */
868 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 72000, 1920, 1952,
869 		   2120, 2304, 0, 1080, 1126, 1136, 1250, 0,
870 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC |
871 			DRM_MODE_FLAG_INTERLACE),
872 	  .vrefresh = 50, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
873 	/* 40 - 1920x1080i@100Hz */
874 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
875 		   2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
876 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
877 			DRM_MODE_FLAG_INTERLACE),
878 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
879 	/* 41 - 1280x720@100Hz */
880 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
881 		   1760, 1980, 0, 720, 725, 730, 750, 0,
882 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
883 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
884 	/* 42 - 720x576@100Hz */
885 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
886 		   796, 864, 0, 576, 581, 586, 625, 0,
887 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
888 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
889 	/* 43 - 720x576@100Hz */
890 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
891 		   796, 864, 0, 576, 581, 586, 625, 0,
892 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
893 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
894 	/* 44 - 720(1440)x576i@100Hz */
895 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
896 		   795, 864, 0, 576, 580, 586, 625, 0,
897 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
898 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
899 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
900 	/* 45 - 720(1440)x576i@100Hz */
901 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
902 		   795, 864, 0, 576, 580, 586, 625, 0,
903 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
904 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
905 	  .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
906 	/* 46 - 1920x1080i@120Hz */
907 	{ DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
908 		   2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
909 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
910 			DRM_MODE_FLAG_INTERLACE),
911 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
912 	/* 47 - 1280x720@120Hz */
913 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
914 		   1430, 1650, 0, 720, 725, 730, 750, 0,
915 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
916 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
917 	/* 48 - 720x480@120Hz */
918 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
919 		   798, 858, 0, 480, 489, 495, 525, 0,
920 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
921 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
922 	/* 49 - 720x480@120Hz */
923 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
924 		   798, 858, 0, 480, 489, 495, 525, 0,
925 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
926 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
927 	/* 50 - 720(1440)x480i@120Hz */
928 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
929 		   801, 858, 0, 480, 488, 494, 525, 0,
930 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
931 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
932 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
933 	/* 51 - 720(1440)x480i@120Hz */
934 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
935 		   801, 858, 0, 480, 488, 494, 525, 0,
936 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
937 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
938 	  .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
939 	/* 52 - 720x576@200Hz */
940 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
941 		   796, 864, 0, 576, 581, 586, 625, 0,
942 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
943 	  .vrefresh = 200, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
944 	/* 53 - 720x576@200Hz */
945 	{ DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
946 		   796, 864, 0, 576, 581, 586, 625, 0,
947 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
948 	  .vrefresh = 200, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
949 	/* 54 - 720(1440)x576i@200Hz */
950 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
951 		   795, 864, 0, 576, 580, 586, 625, 0,
952 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
953 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
954 	  .vrefresh = 200, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
955 	/* 55 - 720(1440)x576i@200Hz */
956 	{ DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
957 		   795, 864, 0, 576, 580, 586, 625, 0,
958 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
959 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
960 	  .vrefresh = 200, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
961 	/* 56 - 720x480@240Hz */
962 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
963 		   798, 858, 0, 480, 489, 495, 525, 0,
964 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
965 	  .vrefresh = 240, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
966 	/* 57 - 720x480@240Hz */
967 	{ DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
968 		   798, 858, 0, 480, 489, 495, 525, 0,
969 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
970 	  .vrefresh = 240, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
971 	/* 58 - 720(1440)x480i@240 */
972 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
973 		   801, 858, 0, 480, 488, 494, 525, 0,
974 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
975 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
976 	  .vrefresh = 240, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
977 	/* 59 - 720(1440)x480i@240 */
978 	{ DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
979 		   801, 858, 0, 480, 488, 494, 525, 0,
980 		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
981 			DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
982 	  .vrefresh = 240, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
983 	/* 60 - 1280x720@24Hz */
984 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
985 		   3080, 3300, 0, 720, 725, 730, 750, 0,
986 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
987 	  .vrefresh = 24, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
988 	/* 61 - 1280x720@25Hz */
989 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
990 		   3740, 3960, 0, 720, 725, 730, 750, 0,
991 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
992 	  .vrefresh = 25, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
993 	/* 62 - 1280x720@30Hz */
994 	{ DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
995 		   3080, 3300, 0, 720, 725, 730, 750, 0,
996 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
997 	  .vrefresh = 30, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
998 	/* 63 - 1920x1080@120Hz */
999 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1000 		   2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1001 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1002 	 .vrefresh = 120, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1003 	/* 64 - 1920x1080@100Hz */
1004 	{ DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1005 		   2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1006 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1007 	 .vrefresh = 100, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
1008 };
1009 
1010 /*
1011  * HDMI 1.4 4k modes. Index using the VIC.
1012  */
1013 static const struct drm_display_mode edid_4k_modes[] = {
1014 	/* 0 - dummy, VICs start at 1 */
1015 	{ },
1016 	/* 1 - 3840x2160@30Hz */
1017 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1018 		   3840, 4016, 4104, 4400, 0,
1019 		   2160, 2168, 2178, 2250, 0,
1020 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1021 	  .vrefresh = 30, },
1022 	/* 2 - 3840x2160@25Hz */
1023 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1024 		   3840, 4896, 4984, 5280, 0,
1025 		   2160, 2168, 2178, 2250, 0,
1026 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1027 	  .vrefresh = 25, },
1028 	/* 3 - 3840x2160@24Hz */
1029 	{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1030 		   3840, 5116, 5204, 5500, 0,
1031 		   2160, 2168, 2178, 2250, 0,
1032 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1033 	  .vrefresh = 24, },
1034 	/* 4 - 4096x2160@24Hz (SMPTE) */
1035 	{ DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000,
1036 		   4096, 5116, 5204, 5500, 0,
1037 		   2160, 2168, 2178, 2250, 0,
1038 		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
1039 	  .vrefresh = 24, },
1040 };
1041 
1042 /*** DDC fetch and block validation ***/
1043 
1044 static const u8 edid_header[] = {
1045 	0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
1046 };
1047 
1048 /**
1049  * drm_edid_header_is_valid - sanity check the header of the base EDID block
1050  * @raw_edid: pointer to raw base EDID block
1051  *
1052  * Sanity check the header of the base EDID block.
1053  *
1054  * Return: 8 if the header is perfect, down to 0 if it's totally wrong.
1055  */
drm_edid_header_is_valid(const u8 * raw_edid)1056 int drm_edid_header_is_valid(const u8 *raw_edid)
1057 {
1058 	int i, score = 0;
1059 
1060 	for (i = 0; i < sizeof(edid_header); i++)
1061 		if (raw_edid[i] == edid_header[i])
1062 			score++;
1063 
1064 	return score;
1065 }
1066 EXPORT_SYMBOL(drm_edid_header_is_valid);
1067 
1068 static int edid_fixup __read_mostly = 6;
1069 module_param_named(edid_fixup, edid_fixup, int, 0400);
1070 MODULE_PARM_DESC(edid_fixup,
1071 		 "Minimum number of valid EDID header bytes (0-8, default 6)");
1072 
1073 static void drm_get_displayid(struct drm_connector *connector,
1074 			      struct edid *edid);
1075 
drm_edid_block_checksum(const u8 * raw_edid)1076 static int drm_edid_block_checksum(const u8 *raw_edid)
1077 {
1078 	int i;
1079 	u8 csum = 0;
1080 	for (i = 0; i < EDID_LENGTH; i++)
1081 		csum += raw_edid[i];
1082 
1083 	return csum;
1084 }
1085 
drm_edid_is_zero(const u8 * in_edid,int length)1086 static bool drm_edid_is_zero(const u8 *in_edid, int length)
1087 {
1088 	if (memchr_inv(in_edid, 0, length))
1089 		return false;
1090 
1091 	return true;
1092 }
1093 
1094 /**
1095  * drm_edid_block_valid - Sanity check the EDID block (base or extension)
1096  * @raw_edid: pointer to raw EDID block
1097  * @block: type of block to validate (0 for base, extension otherwise)
1098  * @print_bad_edid: if true, dump bad EDID blocks to the console
1099  * @edid_corrupt: if true, the header or checksum is invalid
1100  *
1101  * Validate a base or extension EDID block and optionally dump bad blocks to
1102  * the console.
1103  *
1104  * Return: True if the block is valid, false otherwise.
1105  */
drm_edid_block_valid(u8 * raw_edid,int block,bool print_bad_edid,bool * edid_corrupt)1106 bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid,
1107 			  bool *edid_corrupt)
1108 {
1109 	u8 csum;
1110 	struct edid *edid = (struct edid *)raw_edid;
1111 
1112 	if (WARN_ON(!raw_edid))
1113 		return false;
1114 
1115 	if (edid_fixup > 8 || edid_fixup < 0)
1116 		edid_fixup = 6;
1117 
1118 	if (block == 0) {
1119 		int score = drm_edid_header_is_valid(raw_edid);
1120 		if (score == 8) {
1121 			if (edid_corrupt)
1122 				*edid_corrupt = false;
1123 		} else if (score >= edid_fixup) {
1124 			/* Displayport Link CTS Core 1.2 rev1.1 test 4.2.2.6
1125 			 * The corrupt flag needs to be set here otherwise, the
1126 			 * fix-up code here will correct the problem, the
1127 			 * checksum is correct and the test fails
1128 			 */
1129 			if (edid_corrupt)
1130 				*edid_corrupt = true;
1131 			DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1132 			memcpy(raw_edid, edid_header, sizeof(edid_header));
1133 		} else {
1134 			if (edid_corrupt)
1135 				*edid_corrupt = true;
1136 			goto bad;
1137 		}
1138 	}
1139 
1140 	csum = drm_edid_block_checksum(raw_edid);
1141 	if (csum) {
1142 		if (print_bad_edid) {
1143 			DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
1144 		}
1145 
1146 		if (edid_corrupt)
1147 			*edid_corrupt = true;
1148 
1149 		/* allow CEA to slide through, switches mangle this */
1150 		if (raw_edid[0] != 0x02)
1151 			goto bad;
1152 	}
1153 
1154 	/* per-block-type checks */
1155 	switch (raw_edid[0]) {
1156 	case 0: /* base */
1157 		if (edid->version != 1) {
1158 			DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
1159 			goto bad;
1160 		}
1161 
1162 		if (edid->revision > 4)
1163 			DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
1164 		break;
1165 
1166 	default:
1167 		break;
1168 	}
1169 
1170 	return true;
1171 
1172 bad:
1173 	if (print_bad_edid) {
1174 		if (drm_edid_is_zero(raw_edid, EDID_LENGTH)) {
1175 			printk(KERN_ERR "EDID block is all zeroes\n");
1176 		} else {
1177 			printk(KERN_ERR "Raw EDID:\n");
1178 			print_hex_dump(KERN_ERR, " \t", DUMP_PREFIX_NONE, 16, 1,
1179 			       raw_edid, EDID_LENGTH, false);
1180 		}
1181 	}
1182 	return false;
1183 }
1184 EXPORT_SYMBOL(drm_edid_block_valid);
1185 
1186 /**
1187  * drm_edid_is_valid - sanity check EDID data
1188  * @edid: EDID data
1189  *
1190  * Sanity-check an entire EDID record (including extensions)
1191  *
1192  * Return: True if the EDID data is valid, false otherwise.
1193  */
drm_edid_is_valid(struct edid * edid)1194 bool drm_edid_is_valid(struct edid *edid)
1195 {
1196 	int i;
1197 	u8 *raw = (u8 *)edid;
1198 
1199 	if (!edid)
1200 		return false;
1201 
1202 	for (i = 0; i <= edid->extensions; i++)
1203 		if (!drm_edid_block_valid(raw + i * EDID_LENGTH, i, true, NULL))
1204 			return false;
1205 
1206 	return true;
1207 }
1208 EXPORT_SYMBOL(drm_edid_is_valid);
1209 
1210 #define DDC_SEGMENT_ADDR 0x30
1211 /**
1212  * drm_do_probe_ddc_edid() - get EDID information via I2C
1213  * @data: I2C device adapter
1214  * @buf: EDID data buffer to be filled
1215  * @block: 128 byte EDID block to start fetching from
1216  * @len: EDID data buffer length to fetch
1217  *
1218  * Try to fetch EDID information by calling I2C driver functions.
1219  *
1220  * Return: 0 on success or -1 on failure.
1221  */
1222 static int
drm_do_probe_ddc_edid(void * data,u8 * buf,unsigned int block,size_t len)1223 drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
1224 {
1225 	struct i2c_adapter *adapter = data;
1226 	unsigned char start = block * EDID_LENGTH;
1227 	unsigned char segment = block >> 1;
1228 	unsigned char xfers = segment ? 3 : 2;
1229 	int ret, retries = 5;
1230 
1231 	/*
1232 	 * The core I2C driver will automatically retry the transfer if the
1233 	 * adapter reports EAGAIN. However, we find that bit-banging transfers
1234 	 * are susceptible to errors under a heavily loaded machine and
1235 	 * generate spurious NAKs and timeouts. Retrying the transfer
1236 	 * of the individual block a few times seems to overcome this.
1237 	 */
1238 	do {
1239 		struct i2c_msg msgs[] = {
1240 			{
1241 				.addr	= DDC_SEGMENT_ADDR,
1242 				.flags	= 0,
1243 				.len	= 1,
1244 				.buf	= &segment,
1245 			}, {
1246 				.addr	= DDC_ADDR,
1247 				.flags	= 0,
1248 				.len	= 1,
1249 				.buf	= &start,
1250 			}, {
1251 				.addr	= DDC_ADDR,
1252 				.flags	= I2C_M_RD,
1253 				.len	= len,
1254 				.buf	= buf,
1255 			}
1256 		};
1257 
1258 		/*
1259 		 * Avoid sending the segment addr to not upset non-compliant
1260 		 * DDC monitors.
1261 		 */
1262 		ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
1263 
1264 		if (ret == -ENXIO) {
1265 			DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
1266 					adapter->name);
1267 			break;
1268 		}
1269 	} while (ret != xfers && --retries);
1270 
1271 	return ret == xfers ? 0 : -1;
1272 }
1273 
1274 /**
1275  * drm_do_get_edid - get EDID data using a custom EDID block read function
1276  * @connector: connector we're probing
1277  * @get_edid_block: EDID block read function
1278  * @data: private data passed to the block read function
1279  *
1280  * When the I2C adapter connected to the DDC bus is hidden behind a device that
1281  * exposes a different interface to read EDID blocks this function can be used
1282  * to get EDID data using a custom block read function.
1283  *
1284  * As in the general case the DDC bus is accessible by the kernel at the I2C
1285  * level, drivers must make all reasonable efforts to expose it as an I2C
1286  * adapter and use drm_get_edid() instead of abusing this function.
1287  *
1288  * Return: Pointer to valid EDID or NULL if we couldn't find any.
1289  */
drm_do_get_edid(struct drm_connector * connector,int (* get_edid_block)(void * data,u8 * buf,unsigned int block,size_t len),void * data)1290 struct edid *drm_do_get_edid(struct drm_connector *connector,
1291 	int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
1292 			      size_t len),
1293 	void *data)
1294 {
1295 	int i, j = 0, valid_extensions = 0;
1296 	u8 *block, *new;
1297 	bool print_bad_edid = !connector->bad_edid_counter || (drm_debug & DRM_UT_KMS);
1298 
1299 	if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
1300 		return NULL;
1301 
1302 	/* base block fetch */
1303 	for (i = 0; i < 4; i++) {
1304 		if (get_edid_block(data, block, 0, EDID_LENGTH))
1305 			goto out;
1306 		if (drm_edid_block_valid(block, 0, print_bad_edid,
1307 					 &connector->edid_corrupt))
1308 			break;
1309 		if (i == 0 && drm_edid_is_zero(block, EDID_LENGTH)) {
1310 			connector->null_edid_counter++;
1311 			goto carp;
1312 		}
1313 	}
1314 	if (i == 4)
1315 		goto carp;
1316 
1317 	/* if there's no extensions, we're done */
1318 	if (block[0x7e] == 0)
1319 		return (struct edid *)block;
1320 
1321 	new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
1322 	if (!new)
1323 		goto out;
1324 	block = new;
1325 
1326 	for (j = 1; j <= block[0x7e]; j++) {
1327 		for (i = 0; i < 4; i++) {
1328 			if (get_edid_block(data,
1329 				  block + (valid_extensions + 1) * EDID_LENGTH,
1330 				  j, EDID_LENGTH))
1331 				goto out;
1332 			if (drm_edid_block_valid(block + (valid_extensions + 1)
1333 						 * EDID_LENGTH, j,
1334 						 print_bad_edid,
1335 						 NULL)) {
1336 				valid_extensions++;
1337 				break;
1338 			}
1339 		}
1340 
1341 		if (i == 4 && print_bad_edid) {
1342 			dev_warn(connector->dev->dev,
1343 			 "%s: Ignoring invalid EDID block %d.\n",
1344 			 connector->name, j);
1345 
1346 			connector->bad_edid_counter++;
1347 		}
1348 	}
1349 
1350 	if (valid_extensions != block[0x7e]) {
1351 		block[EDID_LENGTH-1] += block[0x7e] - valid_extensions;
1352 		block[0x7e] = valid_extensions;
1353 		new = krealloc(block, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1354 		if (!new)
1355 			goto out;
1356 		block = new;
1357 	}
1358 
1359 	return (struct edid *)block;
1360 
1361 carp:
1362 	if (print_bad_edid) {
1363 		dev_warn(connector->dev->dev, "%s: EDID block %d invalid.\n",
1364 			 connector->name, j);
1365 	}
1366 	connector->bad_edid_counter++;
1367 
1368 out:
1369 	kfree(block);
1370 	return NULL;
1371 }
1372 EXPORT_SYMBOL_GPL(drm_do_get_edid);
1373 
1374 /**
1375  * drm_probe_ddc() - probe DDC presence
1376  * @adapter: I2C adapter to probe
1377  *
1378  * Return: True on success, false on failure.
1379  */
1380 bool
drm_probe_ddc(struct i2c_adapter * adapter)1381 drm_probe_ddc(struct i2c_adapter *adapter)
1382 {
1383 	unsigned char out;
1384 
1385 	return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
1386 }
1387 EXPORT_SYMBOL(drm_probe_ddc);
1388 
1389 /**
1390  * drm_get_edid - get EDID data, if available
1391  * @connector: connector we're probing
1392  * @adapter: I2C adapter to use for DDC
1393  *
1394  * Poke the given I2C channel to grab EDID data if possible.  If found,
1395  * attach it to the connector.
1396  *
1397  * Return: Pointer to valid EDID or NULL if we couldn't find any.
1398  */
drm_get_edid(struct drm_connector * connector,struct i2c_adapter * adapter)1399 struct edid *drm_get_edid(struct drm_connector *connector,
1400 			  struct i2c_adapter *adapter)
1401 {
1402 	struct edid *edid;
1403 
1404 	if (!drm_probe_ddc(adapter))
1405 		return NULL;
1406 
1407 	edid = drm_do_get_edid(connector, drm_do_probe_ddc_edid, adapter);
1408 	if (edid)
1409 		drm_get_displayid(connector, edid);
1410 	return edid;
1411 }
1412 EXPORT_SYMBOL(drm_get_edid);
1413 
1414 /**
1415  * drm_get_edid_switcheroo - get EDID data for a vga_switcheroo output
1416  * @connector: connector we're probing
1417  * @adapter: I2C adapter to use for DDC
1418  *
1419  * Wrapper around drm_get_edid() for laptops with dual GPUs using one set of
1420  * outputs. The wrapper adds the requisite vga_switcheroo calls to temporarily
1421  * switch DDC to the GPU which is retrieving EDID.
1422  *
1423  * Return: Pointer to valid EDID or %NULL if we couldn't find any.
1424  */
drm_get_edid_switcheroo(struct drm_connector * connector,struct i2c_adapter * adapter)1425 struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
1426 				     struct i2c_adapter *adapter)
1427 {
1428 	struct pci_dev *pdev = connector->dev->pdev;
1429 	struct edid *edid;
1430 
1431 	vga_switcheroo_lock_ddc(pdev);
1432 	edid = drm_get_edid(connector, adapter);
1433 	vga_switcheroo_unlock_ddc(pdev);
1434 
1435 	return edid;
1436 }
1437 EXPORT_SYMBOL(drm_get_edid_switcheroo);
1438 
1439 /**
1440  * drm_edid_duplicate - duplicate an EDID and the extensions
1441  * @edid: EDID to duplicate
1442  *
1443  * Return: Pointer to duplicated EDID or NULL on allocation failure.
1444  */
drm_edid_duplicate(const struct edid * edid)1445 struct edid *drm_edid_duplicate(const struct edid *edid)
1446 {
1447 	return kmemdup(edid, (edid->extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1448 }
1449 EXPORT_SYMBOL(drm_edid_duplicate);
1450 
1451 /*** EDID parsing ***/
1452 
1453 /**
1454  * edid_vendor - match a string against EDID's obfuscated vendor field
1455  * @edid: EDID to match
1456  * @vendor: vendor string
1457  *
1458  * Returns true if @vendor is in @edid, false otherwise
1459  */
edid_vendor(struct edid * edid,const char * vendor)1460 static bool edid_vendor(struct edid *edid, const char *vendor)
1461 {
1462 	char edid_vendor[3];
1463 
1464 	edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
1465 	edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
1466 			  ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
1467 	edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
1468 
1469 	return !strncmp(edid_vendor, vendor, 3);
1470 }
1471 
1472 /**
1473  * edid_get_quirks - return quirk flags for a given EDID
1474  * @edid: EDID to process
1475  *
1476  * This tells subsequent routines what fixes they need to apply.
1477  */
edid_get_quirks(struct edid * edid)1478 static u32 edid_get_quirks(struct edid *edid)
1479 {
1480 	const struct edid_quirk *quirk;
1481 	int i;
1482 
1483 	for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
1484 		quirk = &edid_quirk_list[i];
1485 
1486 		if (edid_vendor(edid, quirk->vendor) &&
1487 		    (EDID_PRODUCT_ID(edid) == quirk->product_id))
1488 			return quirk->quirks;
1489 	}
1490 
1491 	return 0;
1492 }
1493 
1494 #define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
1495 #define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
1496 
1497 /**
1498  * edid_fixup_preferred - set preferred modes based on quirk list
1499  * @connector: has mode list to fix up
1500  * @quirks: quirks list
1501  *
1502  * Walk the mode list for @connector, clearing the preferred status
1503  * on existing modes and setting it anew for the right mode ala @quirks.
1504  */
edid_fixup_preferred(struct drm_connector * connector,u32 quirks)1505 static void edid_fixup_preferred(struct drm_connector *connector,
1506 				 u32 quirks)
1507 {
1508 	struct drm_display_mode *t, *cur_mode, *preferred_mode;
1509 	int target_refresh = 0;
1510 	int cur_vrefresh, preferred_vrefresh;
1511 
1512 	if (list_empty(&connector->probed_modes))
1513 		return;
1514 
1515 	if (quirks & EDID_QUIRK_PREFER_LARGE_60)
1516 		target_refresh = 60;
1517 	if (quirks & EDID_QUIRK_PREFER_LARGE_75)
1518 		target_refresh = 75;
1519 
1520 	preferred_mode = list_first_entry(&connector->probed_modes,
1521 					  struct drm_display_mode, head);
1522 
1523 	list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
1524 		cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
1525 
1526 		if (cur_mode == preferred_mode)
1527 			continue;
1528 
1529 		/* Largest mode is preferred */
1530 		if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
1531 			preferred_mode = cur_mode;
1532 
1533 		cur_vrefresh = cur_mode->vrefresh ?
1534 			cur_mode->vrefresh : drm_mode_vrefresh(cur_mode);
1535 		preferred_vrefresh = preferred_mode->vrefresh ?
1536 			preferred_mode->vrefresh : drm_mode_vrefresh(preferred_mode);
1537 		/* At a given size, try to get closest to target refresh */
1538 		if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
1539 		    MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
1540 		    MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
1541 			preferred_mode = cur_mode;
1542 		}
1543 	}
1544 
1545 	preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
1546 }
1547 
1548 static bool
mode_is_rb(const struct drm_display_mode * mode)1549 mode_is_rb(const struct drm_display_mode *mode)
1550 {
1551 	return (mode->htotal - mode->hdisplay == 160) &&
1552 	       (mode->hsync_end - mode->hdisplay == 80) &&
1553 	       (mode->hsync_end - mode->hsync_start == 32) &&
1554 	       (mode->vsync_start - mode->vdisplay == 3);
1555 }
1556 
1557 /*
1558  * drm_mode_find_dmt - Create a copy of a mode if present in DMT
1559  * @dev: Device to duplicate against
1560  * @hsize: Mode width
1561  * @vsize: Mode height
1562  * @fresh: Mode refresh rate
1563  * @rb: Mode reduced-blanking-ness
1564  *
1565  * Walk the DMT mode list looking for a match for the given parameters.
1566  *
1567  * Return: A newly allocated copy of the mode, or NULL if not found.
1568  */
drm_mode_find_dmt(struct drm_device * dev,int hsize,int vsize,int fresh,bool rb)1569 struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
1570 					   int hsize, int vsize, int fresh,
1571 					   bool rb)
1572 {
1573 	int i;
1574 
1575 	for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
1576 		const struct drm_display_mode *ptr = &drm_dmt_modes[i];
1577 		if (hsize != ptr->hdisplay)
1578 			continue;
1579 		if (vsize != ptr->vdisplay)
1580 			continue;
1581 		if (fresh != drm_mode_vrefresh(ptr))
1582 			continue;
1583 		if (rb != mode_is_rb(ptr))
1584 			continue;
1585 
1586 		return drm_mode_duplicate(dev, ptr);
1587 	}
1588 
1589 	return NULL;
1590 }
1591 EXPORT_SYMBOL(drm_mode_find_dmt);
1592 
1593 typedef void detailed_cb(struct detailed_timing *timing, void *closure);
1594 
1595 static void
cea_for_each_detailed_block(u8 * ext,detailed_cb * cb,void * closure)1596 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
1597 {
1598 	int i, n = 0;
1599 	u8 d = ext[0x02];
1600 	u8 *det_base = ext + d;
1601 
1602 	n = (127 - d) / 18;
1603 	for (i = 0; i < n; i++)
1604 		cb((struct detailed_timing *)(det_base + 18 * i), closure);
1605 }
1606 
1607 static void
vtb_for_each_detailed_block(u8 * ext,detailed_cb * cb,void * closure)1608 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
1609 {
1610 	unsigned int i, n = min((int)ext[0x02], 6);
1611 	u8 *det_base = ext + 5;
1612 
1613 	if (ext[0x01] != 1)
1614 		return; /* unknown version */
1615 
1616 	for (i = 0; i < n; i++)
1617 		cb((struct detailed_timing *)(det_base + 18 * i), closure);
1618 }
1619 
1620 static void
drm_for_each_detailed_block(u8 * raw_edid,detailed_cb * cb,void * closure)1621 drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
1622 {
1623 	int i;
1624 	struct edid *edid = (struct edid *)raw_edid;
1625 
1626 	if (edid == NULL)
1627 		return;
1628 
1629 	for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
1630 		cb(&(edid->detailed_timings[i]), closure);
1631 
1632 	for (i = 1; i <= raw_edid[0x7e]; i++) {
1633 		u8 *ext = raw_edid + (i * EDID_LENGTH);
1634 		switch (*ext) {
1635 		case CEA_EXT:
1636 			cea_for_each_detailed_block(ext, cb, closure);
1637 			break;
1638 		case VTB_EXT:
1639 			vtb_for_each_detailed_block(ext, cb, closure);
1640 			break;
1641 		default:
1642 			break;
1643 		}
1644 	}
1645 }
1646 
1647 static void
is_rb(struct detailed_timing * t,void * data)1648 is_rb(struct detailed_timing *t, void *data)
1649 {
1650 	u8 *r = (u8 *)t;
1651 	if (r[3] == EDID_DETAIL_MONITOR_RANGE)
1652 		if (r[15] & 0x10)
1653 			*(bool *)data = true;
1654 }
1655 
1656 /* EDID 1.4 defines this explicitly.  For EDID 1.3, we guess, badly. */
1657 static bool
drm_monitor_supports_rb(struct edid * edid)1658 drm_monitor_supports_rb(struct edid *edid)
1659 {
1660 	if (edid->revision >= 4) {
1661 		bool ret = false;
1662 		drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
1663 		return ret;
1664 	}
1665 
1666 	return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
1667 }
1668 
1669 static void
find_gtf2(struct detailed_timing * t,void * data)1670 find_gtf2(struct detailed_timing *t, void *data)
1671 {
1672 	u8 *r = (u8 *)t;
1673 	if (r[3] == EDID_DETAIL_MONITOR_RANGE && r[10] == 0x02)
1674 		*(u8 **)data = r;
1675 }
1676 
1677 /* Secondary GTF curve kicks in above some break frequency */
1678 static int
drm_gtf2_hbreak(struct edid * edid)1679 drm_gtf2_hbreak(struct edid *edid)
1680 {
1681 	u8 *r = NULL;
1682 	drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1683 	return r ? (r[12] * 2) : 0;
1684 }
1685 
1686 static int
drm_gtf2_2c(struct edid * edid)1687 drm_gtf2_2c(struct edid *edid)
1688 {
1689 	u8 *r = NULL;
1690 	drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1691 	return r ? r[13] : 0;
1692 }
1693 
1694 static int
drm_gtf2_m(struct edid * edid)1695 drm_gtf2_m(struct edid *edid)
1696 {
1697 	u8 *r = NULL;
1698 	drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1699 	return r ? (r[15] << 8) + r[14] : 0;
1700 }
1701 
1702 static int
drm_gtf2_k(struct edid * edid)1703 drm_gtf2_k(struct edid *edid)
1704 {
1705 	u8 *r = NULL;
1706 	drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1707 	return r ? r[16] : 0;
1708 }
1709 
1710 static int
drm_gtf2_2j(struct edid * edid)1711 drm_gtf2_2j(struct edid *edid)
1712 {
1713 	u8 *r = NULL;
1714 	drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1715 	return r ? r[17] : 0;
1716 }
1717 
1718 /**
1719  * standard_timing_level - get std. timing level(CVT/GTF/DMT)
1720  * @edid: EDID block to scan
1721  */
standard_timing_level(struct edid * edid)1722 static int standard_timing_level(struct edid *edid)
1723 {
1724 	if (edid->revision >= 2) {
1725 		if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
1726 			return LEVEL_CVT;
1727 		if (drm_gtf2_hbreak(edid))
1728 			return LEVEL_GTF2;
1729 		return LEVEL_GTF;
1730 	}
1731 	return LEVEL_DMT;
1732 }
1733 
1734 /*
1735  * 0 is reserved.  The spec says 0x01 fill for unused timings.  Some old
1736  * monitors fill with ascii space (0x20) instead.
1737  */
1738 static int
bad_std_timing(u8 a,u8 b)1739 bad_std_timing(u8 a, u8 b)
1740 {
1741 	return (a == 0x00 && b == 0x00) ||
1742 	       (a == 0x01 && b == 0x01) ||
1743 	       (a == 0x20 && b == 0x20);
1744 }
1745 
1746 /**
1747  * drm_mode_std - convert standard mode info (width, height, refresh) into mode
1748  * @connector: connector of for the EDID block
1749  * @edid: EDID block to scan
1750  * @t: standard timing params
1751  *
1752  * Take the standard timing params (in this case width, aspect, and refresh)
1753  * and convert them into a real mode using CVT/GTF/DMT.
1754  */
1755 static struct drm_display_mode *
drm_mode_std(struct drm_connector * connector,struct edid * edid,struct std_timing * t)1756 drm_mode_std(struct drm_connector *connector, struct edid *edid,
1757 	     struct std_timing *t)
1758 {
1759 	struct drm_device *dev = connector->dev;
1760 	struct drm_display_mode *m, *mode = NULL;
1761 	int hsize, vsize;
1762 	int vrefresh_rate;
1763 	unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
1764 		>> EDID_TIMING_ASPECT_SHIFT;
1765 	unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
1766 		>> EDID_TIMING_VFREQ_SHIFT;
1767 	int timing_level = standard_timing_level(edid);
1768 
1769 	if (bad_std_timing(t->hsize, t->vfreq_aspect))
1770 		return NULL;
1771 
1772 	/* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
1773 	hsize = t->hsize * 8 + 248;
1774 	/* vrefresh_rate = vfreq + 60 */
1775 	vrefresh_rate = vfreq + 60;
1776 	/* the vdisplay is calculated based on the aspect ratio */
1777 	if (aspect_ratio == 0) {
1778 		if (edid->revision < 3)
1779 			vsize = hsize;
1780 		else
1781 			vsize = (hsize * 10) / 16;
1782 	} else if (aspect_ratio == 1)
1783 		vsize = (hsize * 3) / 4;
1784 	else if (aspect_ratio == 2)
1785 		vsize = (hsize * 4) / 5;
1786 	else
1787 		vsize = (hsize * 9) / 16;
1788 
1789 	/* HDTV hack, part 1 */
1790 	if (vrefresh_rate == 60 &&
1791 	    ((hsize == 1360 && vsize == 765) ||
1792 	     (hsize == 1368 && vsize == 769))) {
1793 		hsize = 1366;
1794 		vsize = 768;
1795 	}
1796 
1797 	/*
1798 	 * If this connector already has a mode for this size and refresh
1799 	 * rate (because it came from detailed or CVT info), use that
1800 	 * instead.  This way we don't have to guess at interlace or
1801 	 * reduced blanking.
1802 	 */
1803 	list_for_each_entry(m, &connector->probed_modes, head)
1804 		if (m->hdisplay == hsize && m->vdisplay == vsize &&
1805 		    drm_mode_vrefresh(m) == vrefresh_rate)
1806 			return NULL;
1807 
1808 	/* HDTV hack, part 2 */
1809 	if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
1810 		mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
1811 				    false);
1812 		mode->hdisplay = 1366;
1813 		mode->hsync_start = mode->hsync_start - 1;
1814 		mode->hsync_end = mode->hsync_end - 1;
1815 		return mode;
1816 	}
1817 
1818 	/* check whether it can be found in default mode table */
1819 	if (drm_monitor_supports_rb(edid)) {
1820 		mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
1821 					 true);
1822 		if (mode)
1823 			return mode;
1824 	}
1825 	mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
1826 	if (mode)
1827 		return mode;
1828 
1829 	/* okay, generate it */
1830 	switch (timing_level) {
1831 	case LEVEL_DMT:
1832 		break;
1833 	case LEVEL_GTF:
1834 		mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
1835 		break;
1836 	case LEVEL_GTF2:
1837 		/*
1838 		 * This is potentially wrong if there's ever a monitor with
1839 		 * more than one ranges section, each claiming a different
1840 		 * secondary GTF curve.  Please don't do that.
1841 		 */
1842 		mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
1843 		if (!mode)
1844 			return NULL;
1845 		if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
1846 			drm_mode_destroy(dev, mode);
1847 			mode = drm_gtf_mode_complex(dev, hsize, vsize,
1848 						    vrefresh_rate, 0, 0,
1849 						    drm_gtf2_m(edid),
1850 						    drm_gtf2_2c(edid),
1851 						    drm_gtf2_k(edid),
1852 						    drm_gtf2_2j(edid));
1853 		}
1854 		break;
1855 	case LEVEL_CVT:
1856 		mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
1857 				    false);
1858 		break;
1859 	}
1860 	return mode;
1861 }
1862 
1863 /*
1864  * EDID is delightfully ambiguous about how interlaced modes are to be
1865  * encoded.  Our internal representation is of frame height, but some
1866  * HDTV detailed timings are encoded as field height.
1867  *
1868  * The format list here is from CEA, in frame size.  Technically we
1869  * should be checking refresh rate too.  Whatever.
1870  */
1871 static void
drm_mode_do_interlace_quirk(struct drm_display_mode * mode,struct detailed_pixel_timing * pt)1872 drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
1873 			    struct detailed_pixel_timing *pt)
1874 {
1875 	int i;
1876 	static const struct {
1877 		int w, h;
1878 	} cea_interlaced[] = {
1879 		{ 1920, 1080 },
1880 		{  720,  480 },
1881 		{ 1440,  480 },
1882 		{ 2880,  480 },
1883 		{  720,  576 },
1884 		{ 1440,  576 },
1885 		{ 2880,  576 },
1886 	};
1887 
1888 	if (!(pt->misc & DRM_EDID_PT_INTERLACED))
1889 		return;
1890 
1891 	for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
1892 		if ((mode->hdisplay == cea_interlaced[i].w) &&
1893 		    (mode->vdisplay == cea_interlaced[i].h / 2)) {
1894 			mode->vdisplay *= 2;
1895 			mode->vsync_start *= 2;
1896 			mode->vsync_end *= 2;
1897 			mode->vtotal *= 2;
1898 			mode->vtotal |= 1;
1899 		}
1900 	}
1901 
1902 	mode->flags |= DRM_MODE_FLAG_INTERLACE;
1903 }
1904 
1905 /**
1906  * drm_mode_detailed - create a new mode from an EDID detailed timing section
1907  * @dev: DRM device (needed to create new mode)
1908  * @edid: EDID block
1909  * @timing: EDID detailed timing info
1910  * @quirks: quirks to apply
1911  *
1912  * An EDID detailed timing block contains enough info for us to create and
1913  * return a new struct drm_display_mode.
1914  */
drm_mode_detailed(struct drm_device * dev,struct edid * edid,struct detailed_timing * timing,u32 quirks)1915 static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
1916 						  struct edid *edid,
1917 						  struct detailed_timing *timing,
1918 						  u32 quirks)
1919 {
1920 	struct drm_display_mode *mode;
1921 	struct detailed_pixel_timing *pt = &timing->data.pixel_data;
1922 	unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
1923 	unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
1924 	unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
1925 	unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
1926 	unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
1927 	unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
1928 	unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) << 2 | pt->vsync_offset_pulse_width_lo >> 4;
1929 	unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);
1930 
1931 	/* ignore tiny modes */
1932 	if (hactive < 64 || vactive < 64)
1933 		return NULL;
1934 
1935 	if (pt->misc & DRM_EDID_PT_STEREO) {
1936 		DRM_DEBUG_KMS("stereo mode not supported\n");
1937 		return NULL;
1938 	}
1939 	if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
1940 		DRM_DEBUG_KMS("composite sync not supported\n");
1941 	}
1942 
1943 	/* it is incorrect if hsync/vsync width is zero */
1944 	if (!hsync_pulse_width || !vsync_pulse_width) {
1945 		DRM_DEBUG_KMS("Incorrect Detailed timing. "
1946 				"Wrong Hsync/Vsync pulse width\n");
1947 		return NULL;
1948 	}
1949 
1950 	if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
1951 		mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
1952 		if (!mode)
1953 			return NULL;
1954 
1955 		goto set_size;
1956 	}
1957 
1958 	mode = drm_mode_create(dev);
1959 	if (!mode)
1960 		return NULL;
1961 
1962 	if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
1963 		timing->pixel_clock = cpu_to_le16(1088);
1964 
1965 	mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
1966 
1967 	mode->hdisplay = hactive;
1968 	mode->hsync_start = mode->hdisplay + hsync_offset;
1969 	mode->hsync_end = mode->hsync_start + hsync_pulse_width;
1970 	mode->htotal = mode->hdisplay + hblank;
1971 
1972 	mode->vdisplay = vactive;
1973 	mode->vsync_start = mode->vdisplay + vsync_offset;
1974 	mode->vsync_end = mode->vsync_start + vsync_pulse_width;
1975 	mode->vtotal = mode->vdisplay + vblank;
1976 
1977 	/* Some EDIDs have bogus h/vtotal values */
1978 	if (mode->hsync_end > mode->htotal)
1979 		mode->htotal = mode->hsync_end + 1;
1980 	if (mode->vsync_end > mode->vtotal)
1981 		mode->vtotal = mode->vsync_end + 1;
1982 
1983 	drm_mode_do_interlace_quirk(mode, pt);
1984 
1985 	if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
1986 		pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
1987 	}
1988 
1989 	mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
1990 		DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
1991 	mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
1992 		DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
1993 
1994 set_size:
1995 	mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
1996 	mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
1997 
1998 	if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
1999 		mode->width_mm *= 10;
2000 		mode->height_mm *= 10;
2001 	}
2002 
2003 	if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
2004 		mode->width_mm = edid->width_cm * 10;
2005 		mode->height_mm = edid->height_cm * 10;
2006 	}
2007 
2008 	mode->type = DRM_MODE_TYPE_DRIVER;
2009 	mode->vrefresh = drm_mode_vrefresh(mode);
2010 	drm_mode_set_name(mode);
2011 
2012 	return mode;
2013 }
2014 
2015 static bool
mode_in_hsync_range(const struct drm_display_mode * mode,struct edid * edid,u8 * t)2016 mode_in_hsync_range(const struct drm_display_mode *mode,
2017 		    struct edid *edid, u8 *t)
2018 {
2019 	int hsync, hmin, hmax;
2020 
2021 	hmin = t[7];
2022 	if (edid->revision >= 4)
2023 	    hmin += ((t[4] & 0x04) ? 255 : 0);
2024 	hmax = t[8];
2025 	if (edid->revision >= 4)
2026 	    hmax += ((t[4] & 0x08) ? 255 : 0);
2027 	hsync = drm_mode_hsync(mode);
2028 
2029 	return (hsync <= hmax && hsync >= hmin);
2030 }
2031 
2032 static bool
mode_in_vsync_range(const struct drm_display_mode * mode,struct edid * edid,u8 * t)2033 mode_in_vsync_range(const struct drm_display_mode *mode,
2034 		    struct edid *edid, u8 *t)
2035 {
2036 	int vsync, vmin, vmax;
2037 
2038 	vmin = t[5];
2039 	if (edid->revision >= 4)
2040 	    vmin += ((t[4] & 0x01) ? 255 : 0);
2041 	vmax = t[6];
2042 	if (edid->revision >= 4)
2043 	    vmax += ((t[4] & 0x02) ? 255 : 0);
2044 	vsync = drm_mode_vrefresh(mode);
2045 
2046 	return (vsync <= vmax && vsync >= vmin);
2047 }
2048 
2049 static u32
range_pixel_clock(struct edid * edid,u8 * t)2050 range_pixel_clock(struct edid *edid, u8 *t)
2051 {
2052 	/* unspecified */
2053 	if (t[9] == 0 || t[9] == 255)
2054 		return 0;
2055 
2056 	/* 1.4 with CVT support gives us real precision, yay */
2057 	if (edid->revision >= 4 && t[10] == 0x04)
2058 		return (t[9] * 10000) - ((t[12] >> 2) * 250);
2059 
2060 	/* 1.3 is pathetic, so fuzz up a bit */
2061 	return t[9] * 10000 + 5001;
2062 }
2063 
2064 static bool
mode_in_range(const struct drm_display_mode * mode,struct edid * edid,struct detailed_timing * timing)2065 mode_in_range(const struct drm_display_mode *mode, struct edid *edid,
2066 	      struct detailed_timing *timing)
2067 {
2068 	u32 max_clock;
2069 	u8 *t = (u8 *)timing;
2070 
2071 	if (!mode_in_hsync_range(mode, edid, t))
2072 		return false;
2073 
2074 	if (!mode_in_vsync_range(mode, edid, t))
2075 		return false;
2076 
2077 	if ((max_clock = range_pixel_clock(edid, t)))
2078 		if (mode->clock > max_clock)
2079 			return false;
2080 
2081 	/* 1.4 max horizontal check */
2082 	if (edid->revision >= 4 && t[10] == 0x04)
2083 		if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
2084 			return false;
2085 
2086 	if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
2087 		return false;
2088 
2089 	return true;
2090 }
2091 
valid_inferred_mode(const struct drm_connector * connector,const struct drm_display_mode * mode)2092 static bool valid_inferred_mode(const struct drm_connector *connector,
2093 				const struct drm_display_mode *mode)
2094 {
2095 	const struct drm_display_mode *m;
2096 	bool ok = false;
2097 
2098 	list_for_each_entry(m, &connector->probed_modes, head) {
2099 		if (mode->hdisplay == m->hdisplay &&
2100 		    mode->vdisplay == m->vdisplay &&
2101 		    drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
2102 			return false; /* duplicated */
2103 		if (mode->hdisplay <= m->hdisplay &&
2104 		    mode->vdisplay <= m->vdisplay)
2105 			ok = true;
2106 	}
2107 	return ok;
2108 }
2109 
2110 static int
drm_dmt_modes_for_range(struct drm_connector * connector,struct edid * edid,struct detailed_timing * timing)2111 drm_dmt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2112 			struct detailed_timing *timing)
2113 {
2114 	int i, modes = 0;
2115 	struct drm_display_mode *newmode;
2116 	struct drm_device *dev = connector->dev;
2117 
2118 	for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
2119 		if (mode_in_range(drm_dmt_modes + i, edid, timing) &&
2120 		    valid_inferred_mode(connector, drm_dmt_modes + i)) {
2121 			newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
2122 			if (newmode) {
2123 				drm_mode_probed_add(connector, newmode);
2124 				modes++;
2125 			}
2126 		}
2127 	}
2128 
2129 	return modes;
2130 }
2131 
2132 /* fix up 1366x768 mode from 1368x768;
2133  * GFT/CVT can't express 1366 width which isn't dividable by 8
2134  */
fixup_mode_1366x768(struct drm_display_mode * mode)2135 static void fixup_mode_1366x768(struct drm_display_mode *mode)
2136 {
2137 	if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
2138 		mode->hdisplay = 1366;
2139 		mode->hsync_start--;
2140 		mode->hsync_end--;
2141 		drm_mode_set_name(mode);
2142 	}
2143 }
2144 
2145 static int
drm_gtf_modes_for_range(struct drm_connector * connector,struct edid * edid,struct detailed_timing * timing)2146 drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
2147 			struct detailed_timing *timing)
2148 {
2149 	int i, modes = 0;
2150 	struct drm_display_mode *newmode;
2151 	struct drm_device *dev = connector->dev;
2152 
2153 	for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
2154 		const struct minimode *m = &extra_modes[i];
2155 		newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
2156 		if (!newmode)
2157 			return modes;
2158 
2159 		fixup_mode_1366x768(newmode);
2160 		if (!mode_in_range(newmode, edid, timing) ||
2161 		    !valid_inferred_mode(connector, newmode)) {
2162 			drm_mode_destroy(dev, newmode);
2163 			continue;
2164 		}
2165 
2166 		drm_mode_probed_add(connector, newmode);
2167 		modes++;
2168 	}
2169 
2170 	return modes;
2171 }
2172 
2173 static int
drm_cvt_modes_for_range(struct drm_connector * connector,struct edid * edid,struct detailed_timing * timing)2174 drm_cvt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2175 			struct detailed_timing *timing)
2176 {
2177 	int i, modes = 0;
2178 	struct drm_display_mode *newmode;
2179 	struct drm_device *dev = connector->dev;
2180 	bool rb = drm_monitor_supports_rb(edid);
2181 
2182 	for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
2183 		const struct minimode *m = &extra_modes[i];
2184 		newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
2185 		if (!newmode)
2186 			return modes;
2187 
2188 		fixup_mode_1366x768(newmode);
2189 		if (!mode_in_range(newmode, edid, timing) ||
2190 		    !valid_inferred_mode(connector, newmode)) {
2191 			drm_mode_destroy(dev, newmode);
2192 			continue;
2193 		}
2194 
2195 		drm_mode_probed_add(connector, newmode);
2196 		modes++;
2197 	}
2198 
2199 	return modes;
2200 }
2201 
2202 static void
do_inferred_modes(struct detailed_timing * timing,void * c)2203 do_inferred_modes(struct detailed_timing *timing, void *c)
2204 {
2205 	struct detailed_mode_closure *closure = c;
2206 	struct detailed_non_pixel *data = &timing->data.other_data;
2207 	struct detailed_data_monitor_range *range = &data->data.range;
2208 
2209 	if (data->type != EDID_DETAIL_MONITOR_RANGE)
2210 		return;
2211 
2212 	closure->modes += drm_dmt_modes_for_range(closure->connector,
2213 						  closure->edid,
2214 						  timing);
2215 
2216 	if (!version_greater(closure->edid, 1, 1))
2217 		return; /* GTF not defined yet */
2218 
2219 	switch (range->flags) {
2220 	case 0x02: /* secondary gtf, XXX could do more */
2221 	case 0x00: /* default gtf */
2222 		closure->modes += drm_gtf_modes_for_range(closure->connector,
2223 							  closure->edid,
2224 							  timing);
2225 		break;
2226 	case 0x04: /* cvt, only in 1.4+ */
2227 		if (!version_greater(closure->edid, 1, 3))
2228 			break;
2229 
2230 		closure->modes += drm_cvt_modes_for_range(closure->connector,
2231 							  closure->edid,
2232 							  timing);
2233 		break;
2234 	case 0x01: /* just the ranges, no formula */
2235 	default:
2236 		break;
2237 	}
2238 }
2239 
2240 static int
add_inferred_modes(struct drm_connector * connector,struct edid * edid)2241 add_inferred_modes(struct drm_connector *connector, struct edid *edid)
2242 {
2243 	struct detailed_mode_closure closure = {
2244 		.connector = connector,
2245 		.edid = edid,
2246 	};
2247 
2248 	if (version_greater(edid, 1, 0))
2249 		drm_for_each_detailed_block((u8 *)edid, do_inferred_modes,
2250 					    &closure);
2251 
2252 	return closure.modes;
2253 }
2254 
2255 static int
drm_est3_modes(struct drm_connector * connector,struct detailed_timing * timing)2256 drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
2257 {
2258 	int i, j, m, modes = 0;
2259 	struct drm_display_mode *mode;
2260 	u8 *est = ((u8 *)timing) + 6;
2261 
2262 	for (i = 0; i < 6; i++) {
2263 		for (j = 7; j >= 0; j--) {
2264 			m = (i * 8) + (7 - j);
2265 			if (m >= ARRAY_SIZE(est3_modes))
2266 				break;
2267 			if (est[i] & (1 << j)) {
2268 				mode = drm_mode_find_dmt(connector->dev,
2269 							 est3_modes[m].w,
2270 							 est3_modes[m].h,
2271 							 est3_modes[m].r,
2272 							 est3_modes[m].rb);
2273 				if (mode) {
2274 					drm_mode_probed_add(connector, mode);
2275 					modes++;
2276 				}
2277 			}
2278 		}
2279 	}
2280 
2281 	return modes;
2282 }
2283 
2284 static void
do_established_modes(struct detailed_timing * timing,void * c)2285 do_established_modes(struct detailed_timing *timing, void *c)
2286 {
2287 	struct detailed_mode_closure *closure = c;
2288 	struct detailed_non_pixel *data = &timing->data.other_data;
2289 
2290 	if (data->type == EDID_DETAIL_EST_TIMINGS)
2291 		closure->modes += drm_est3_modes(closure->connector, timing);
2292 }
2293 
2294 /**
2295  * add_established_modes - get est. modes from EDID and add them
2296  * @connector: connector to add mode(s) to
2297  * @edid: EDID block to scan
2298  *
2299  * Each EDID block contains a bitmap of the supported "established modes" list
2300  * (defined above).  Tease them out and add them to the global modes list.
2301  */
2302 static int
add_established_modes(struct drm_connector * connector,struct edid * edid)2303 add_established_modes(struct drm_connector *connector, struct edid *edid)
2304 {
2305 	struct drm_device *dev = connector->dev;
2306 	unsigned long est_bits = edid->established_timings.t1 |
2307 		(edid->established_timings.t2 << 8) |
2308 		((edid->established_timings.mfg_rsvd & 0x80) << 9);
2309 	int i, modes = 0;
2310 	struct detailed_mode_closure closure = {
2311 		.connector = connector,
2312 		.edid = edid,
2313 	};
2314 
2315 	for (i = 0; i <= EDID_EST_TIMINGS; i++) {
2316 		if (est_bits & (1<<i)) {
2317 			struct drm_display_mode *newmode;
2318 			newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
2319 			if (newmode) {
2320 				drm_mode_probed_add(connector, newmode);
2321 				modes++;
2322 			}
2323 		}
2324 	}
2325 
2326 	if (version_greater(edid, 1, 0))
2327 		    drm_for_each_detailed_block((u8 *)edid,
2328 						do_established_modes, &closure);
2329 
2330 	return modes + closure.modes;
2331 }
2332 
2333 static void
do_standard_modes(struct detailed_timing * timing,void * c)2334 do_standard_modes(struct detailed_timing *timing, void *c)
2335 {
2336 	struct detailed_mode_closure *closure = c;
2337 	struct detailed_non_pixel *data = &timing->data.other_data;
2338 	struct drm_connector *connector = closure->connector;
2339 	struct edid *edid = closure->edid;
2340 
2341 	if (data->type == EDID_DETAIL_STD_MODES) {
2342 		int i;
2343 		for (i = 0; i < 6; i++) {
2344 			struct std_timing *std;
2345 			struct drm_display_mode *newmode;
2346 
2347 			std = &data->data.timings[i];
2348 			newmode = drm_mode_std(connector, edid, std);
2349 			if (newmode) {
2350 				drm_mode_probed_add(connector, newmode);
2351 				closure->modes++;
2352 			}
2353 		}
2354 	}
2355 }
2356 
2357 /**
2358  * add_standard_modes - get std. modes from EDID and add them
2359  * @connector: connector to add mode(s) to
2360  * @edid: EDID block to scan
2361  *
2362  * Standard modes can be calculated using the appropriate standard (DMT,
2363  * GTF or CVT. Grab them from @edid and add them to the list.
2364  */
2365 static int
add_standard_modes(struct drm_connector * connector,struct edid * edid)2366 add_standard_modes(struct drm_connector *connector, struct edid *edid)
2367 {
2368 	int i, modes = 0;
2369 	struct detailed_mode_closure closure = {
2370 		.connector = connector,
2371 		.edid = edid,
2372 	};
2373 
2374 	for (i = 0; i < EDID_STD_TIMINGS; i++) {
2375 		struct drm_display_mode *newmode;
2376 
2377 		newmode = drm_mode_std(connector, edid,
2378 				       &edid->standard_timings[i]);
2379 		if (newmode) {
2380 			drm_mode_probed_add(connector, newmode);
2381 			modes++;
2382 		}
2383 	}
2384 
2385 	if (version_greater(edid, 1, 0))
2386 		drm_for_each_detailed_block((u8 *)edid, do_standard_modes,
2387 					    &closure);
2388 
2389 	/* XXX should also look for standard codes in VTB blocks */
2390 
2391 	return modes + closure.modes;
2392 }
2393 
drm_cvt_modes(struct drm_connector * connector,struct detailed_timing * timing)2394 static int drm_cvt_modes(struct drm_connector *connector,
2395 			 struct detailed_timing *timing)
2396 {
2397 	int i, j, modes = 0;
2398 	struct drm_display_mode *newmode;
2399 	struct drm_device *dev = connector->dev;
2400 	struct cvt_timing *cvt;
2401 	const int rates[] = { 60, 85, 75, 60, 50 };
2402 	const u8 empty[3] = { 0, 0, 0 };
2403 
2404 	for (i = 0; i < 4; i++) {
2405 		int uninitialized_var(width), height;
2406 		cvt = &(timing->data.other_data.data.cvt[i]);
2407 
2408 		if (!memcmp(cvt->code, empty, 3))
2409 			continue;
2410 
2411 		height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
2412 		switch (cvt->code[1] & 0x0c) {
2413 		case 0x00:
2414 			width = height * 4 / 3;
2415 			break;
2416 		case 0x04:
2417 			width = height * 16 / 9;
2418 			break;
2419 		case 0x08:
2420 			width = height * 16 / 10;
2421 			break;
2422 		case 0x0c:
2423 			width = height * 15 / 9;
2424 			break;
2425 		}
2426 
2427 		for (j = 1; j < 5; j++) {
2428 			if (cvt->code[2] & (1 << j)) {
2429 				newmode = drm_cvt_mode(dev, width, height,
2430 						       rates[j], j == 0,
2431 						       false, false);
2432 				if (newmode) {
2433 					drm_mode_probed_add(connector, newmode);
2434 					modes++;
2435 				}
2436 			}
2437 		}
2438 	}
2439 
2440 	return modes;
2441 }
2442 
2443 static void
do_cvt_mode(struct detailed_timing * timing,void * c)2444 do_cvt_mode(struct detailed_timing *timing, void *c)
2445 {
2446 	struct detailed_mode_closure *closure = c;
2447 	struct detailed_non_pixel *data = &timing->data.other_data;
2448 
2449 	if (data->type == EDID_DETAIL_CVT_3BYTE)
2450 		closure->modes += drm_cvt_modes(closure->connector, timing);
2451 }
2452 
2453 static int
add_cvt_modes(struct drm_connector * connector,struct edid * edid)2454 add_cvt_modes(struct drm_connector *connector, struct edid *edid)
2455 {
2456 	struct detailed_mode_closure closure = {
2457 		.connector = connector,
2458 		.edid = edid,
2459 	};
2460 
2461 	if (version_greater(edid, 1, 2))
2462 		drm_for_each_detailed_block((u8 *)edid, do_cvt_mode, &closure);
2463 
2464 	/* XXX should also look for CVT codes in VTB blocks */
2465 
2466 	return closure.modes;
2467 }
2468 
2469 static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode);
2470 
2471 static void
do_detailed_mode(struct detailed_timing * timing,void * c)2472 do_detailed_mode(struct detailed_timing *timing, void *c)
2473 {
2474 	struct detailed_mode_closure *closure = c;
2475 	struct drm_display_mode *newmode;
2476 
2477 	if (timing->pixel_clock) {
2478 		newmode = drm_mode_detailed(closure->connector->dev,
2479 					    closure->edid, timing,
2480 					    closure->quirks);
2481 		if (!newmode)
2482 			return;
2483 
2484 		if (closure->preferred)
2485 			newmode->type |= DRM_MODE_TYPE_PREFERRED;
2486 
2487 		/*
2488 		 * Detailed modes are limited to 10kHz pixel clock resolution,
2489 		 * so fix up anything that looks like CEA/HDMI mode, but the clock
2490 		 * is just slightly off.
2491 		 */
2492 		fixup_detailed_cea_mode_clock(newmode);
2493 
2494 		drm_mode_probed_add(closure->connector, newmode);
2495 		closure->modes++;
2496 		closure->preferred = 0;
2497 	}
2498 }
2499 
2500 /*
2501  * add_detailed_modes - Add modes from detailed timings
2502  * @connector: attached connector
2503  * @edid: EDID block to scan
2504  * @quirks: quirks to apply
2505  */
2506 static int
add_detailed_modes(struct drm_connector * connector,struct edid * edid,u32 quirks)2507 add_detailed_modes(struct drm_connector *connector, struct edid *edid,
2508 		   u32 quirks)
2509 {
2510 	struct detailed_mode_closure closure = {
2511 		.connector = connector,
2512 		.edid = edid,
2513 		.preferred = 1,
2514 		.quirks = quirks,
2515 	};
2516 
2517 	if (closure.preferred && !version_greater(edid, 1, 3))
2518 		closure.preferred =
2519 		    (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
2520 
2521 	drm_for_each_detailed_block((u8 *)edid, do_detailed_mode, &closure);
2522 
2523 	return closure.modes;
2524 }
2525 
2526 #define AUDIO_BLOCK	0x01
2527 #define VIDEO_BLOCK     0x02
2528 #define VENDOR_BLOCK    0x03
2529 #define SPEAKER_BLOCK	0x04
2530 #define VIDEO_CAPABILITY_BLOCK	0x07
2531 #define EDID_BASIC_AUDIO	(1 << 6)
2532 #define EDID_CEA_YCRCB444	(1 << 5)
2533 #define EDID_CEA_YCRCB422	(1 << 4)
2534 #define EDID_CEA_VCDB_QS	(1 << 6)
2535 
2536 /*
2537  * Search EDID for CEA extension block.
2538  */
drm_find_edid_extension(struct edid * edid,int ext_id)2539 static u8 *drm_find_edid_extension(struct edid *edid, int ext_id)
2540 {
2541 	u8 *edid_ext = NULL;
2542 	int i;
2543 
2544 	/* No EDID or EDID extensions */
2545 	if (edid == NULL || edid->extensions == 0)
2546 		return NULL;
2547 
2548 	/* Find CEA extension */
2549 	for (i = 0; i < edid->extensions; i++) {
2550 		edid_ext = (u8 *)edid + EDID_LENGTH * (i + 1);
2551 		if (edid_ext[0] == ext_id)
2552 			break;
2553 	}
2554 
2555 	if (i == edid->extensions)
2556 		return NULL;
2557 
2558 	return edid_ext;
2559 }
2560 
drm_find_cea_extension(struct edid * edid)2561 static u8 *drm_find_cea_extension(struct edid *edid)
2562 {
2563 	return drm_find_edid_extension(edid, CEA_EXT);
2564 }
2565 
drm_find_displayid_extension(struct edid * edid)2566 static u8 *drm_find_displayid_extension(struct edid *edid)
2567 {
2568 	return drm_find_edid_extension(edid, DISPLAYID_EXT);
2569 }
2570 
2571 /*
2572  * Calculate the alternate clock for the CEA mode
2573  * (60Hz vs. 59.94Hz etc.)
2574  */
2575 static unsigned int
cea_mode_alternate_clock(const struct drm_display_mode * cea_mode)2576 cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
2577 {
2578 	unsigned int clock = cea_mode->clock;
2579 
2580 	if (cea_mode->vrefresh % 6 != 0)
2581 		return clock;
2582 
2583 	/*
2584 	 * edid_cea_modes contains the 59.94Hz
2585 	 * variant for 240 and 480 line modes,
2586 	 * and the 60Hz variant otherwise.
2587 	 */
2588 	if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
2589 		clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
2590 	else
2591 		clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
2592 
2593 	return clock;
2594 }
2595 
drm_match_cea_mode_clock_tolerance(const struct drm_display_mode * to_match,unsigned int clock_tolerance)2596 static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match,
2597 					     unsigned int clock_tolerance)
2598 {
2599 	u8 vic;
2600 
2601 	if (!to_match->clock)
2602 		return 0;
2603 
2604 	for (vic = 1; vic < ARRAY_SIZE(edid_cea_modes); vic++) {
2605 		const struct drm_display_mode *cea_mode = &edid_cea_modes[vic];
2606 		unsigned int clock1, clock2;
2607 
2608 		/* Check both 60Hz and 59.94Hz */
2609 		clock1 = cea_mode->clock;
2610 		clock2 = cea_mode_alternate_clock(cea_mode);
2611 
2612 		if (abs(to_match->clock - clock1) > clock_tolerance &&
2613 		    abs(to_match->clock - clock2) > clock_tolerance)
2614 			continue;
2615 
2616 		if (drm_mode_equal_no_clocks(to_match, cea_mode))
2617 			return vic;
2618 	}
2619 
2620 	return 0;
2621 }
2622 
2623 /**
2624  * drm_match_cea_mode - look for a CEA mode matching given mode
2625  * @to_match: display mode
2626  *
2627  * Return: The CEA Video ID (VIC) of the mode or 0 if it isn't a CEA-861
2628  * mode.
2629  */
drm_match_cea_mode(const struct drm_display_mode * to_match)2630 u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
2631 {
2632 	u8 vic;
2633 
2634 	if (!to_match->clock)
2635 		return 0;
2636 
2637 	for (vic = 1; vic < ARRAY_SIZE(edid_cea_modes); vic++) {
2638 		const struct drm_display_mode *cea_mode = &edid_cea_modes[vic];
2639 		unsigned int clock1, clock2;
2640 
2641 		/* Check both 60Hz and 59.94Hz */
2642 		clock1 = cea_mode->clock;
2643 		clock2 = cea_mode_alternate_clock(cea_mode);
2644 
2645 		if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
2646 		     KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
2647 		    drm_mode_equal_no_clocks_no_stereo(to_match, cea_mode))
2648 			return vic;
2649 	}
2650 	return 0;
2651 }
2652 EXPORT_SYMBOL(drm_match_cea_mode);
2653 
drm_valid_cea_vic(u8 vic)2654 static bool drm_valid_cea_vic(u8 vic)
2655 {
2656 	return vic > 0 && vic < ARRAY_SIZE(edid_cea_modes);
2657 }
2658 
2659 /**
2660  * drm_get_cea_aspect_ratio - get the picture aspect ratio corresponding to
2661  * the input VIC from the CEA mode list
2662  * @video_code: ID given to each of the CEA modes
2663  *
2664  * Returns picture aspect ratio
2665  */
drm_get_cea_aspect_ratio(const u8 video_code)2666 enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
2667 {
2668 	return edid_cea_modes[video_code].picture_aspect_ratio;
2669 }
2670 EXPORT_SYMBOL(drm_get_cea_aspect_ratio);
2671 
2672 /*
2673  * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
2674  * specific block).
2675  *
2676  * It's almost like cea_mode_alternate_clock(), we just need to add an
2677  * exception for the VIC 4 mode (4096x2160@24Hz): no alternate clock for this
2678  * one.
2679  */
2680 static unsigned int
hdmi_mode_alternate_clock(const struct drm_display_mode * hdmi_mode)2681 hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
2682 {
2683 	if (hdmi_mode->vdisplay == 4096 && hdmi_mode->hdisplay == 2160)
2684 		return hdmi_mode->clock;
2685 
2686 	return cea_mode_alternate_clock(hdmi_mode);
2687 }
2688 
drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode * to_match,unsigned int clock_tolerance)2689 static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_match,
2690 					      unsigned int clock_tolerance)
2691 {
2692 	u8 vic;
2693 
2694 	if (!to_match->clock)
2695 		return 0;
2696 
2697 	for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
2698 		const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
2699 		unsigned int clock1, clock2;
2700 
2701 		/* Make sure to also match alternate clocks */
2702 		clock1 = hdmi_mode->clock;
2703 		clock2 = hdmi_mode_alternate_clock(hdmi_mode);
2704 
2705 		if (abs(to_match->clock - clock1) > clock_tolerance &&
2706 		    abs(to_match->clock - clock2) > clock_tolerance)
2707 			continue;
2708 
2709 		if (drm_mode_equal_no_clocks(to_match, hdmi_mode))
2710 			return vic;
2711 	}
2712 
2713 	return 0;
2714 }
2715 
2716 /*
2717  * drm_match_hdmi_mode - look for a HDMI mode matching given mode
2718  * @to_match: display mode
2719  *
2720  * An HDMI mode is one defined in the HDMI vendor specific block.
2721  *
2722  * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
2723  */
drm_match_hdmi_mode(const struct drm_display_mode * to_match)2724 static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
2725 {
2726 	u8 vic;
2727 
2728 	if (!to_match->clock)
2729 		return 0;
2730 
2731 	for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
2732 		const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
2733 		unsigned int clock1, clock2;
2734 
2735 		/* Make sure to also match alternate clocks */
2736 		clock1 = hdmi_mode->clock;
2737 		clock2 = hdmi_mode_alternate_clock(hdmi_mode);
2738 
2739 		if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
2740 		     KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
2741 		    drm_mode_equal_no_clocks_no_stereo(to_match, hdmi_mode))
2742 			return vic;
2743 	}
2744 	return 0;
2745 }
2746 
drm_valid_hdmi_vic(u8 vic)2747 static bool drm_valid_hdmi_vic(u8 vic)
2748 {
2749 	return vic > 0 && vic < ARRAY_SIZE(edid_4k_modes);
2750 }
2751 
2752 static int
add_alternate_cea_modes(struct drm_connector * connector,struct edid * edid)2753 add_alternate_cea_modes(struct drm_connector *connector, struct edid *edid)
2754 {
2755 	struct drm_device *dev = connector->dev;
2756 	struct drm_display_mode *mode, *tmp;
2757 	LIST_HEAD(list);
2758 	int modes = 0;
2759 
2760 	/* Don't add CEA modes if the CEA extension block is missing */
2761 	if (!drm_find_cea_extension(edid))
2762 		return 0;
2763 
2764 	/*
2765 	 * Go through all probed modes and create a new mode
2766 	 * with the alternate clock for certain CEA modes.
2767 	 */
2768 	list_for_each_entry(mode, &connector->probed_modes, head) {
2769 		const struct drm_display_mode *cea_mode = NULL;
2770 		struct drm_display_mode *newmode;
2771 		u8 vic = drm_match_cea_mode(mode);
2772 		unsigned int clock1, clock2;
2773 
2774 		if (drm_valid_cea_vic(vic)) {
2775 			cea_mode = &edid_cea_modes[vic];
2776 			clock2 = cea_mode_alternate_clock(cea_mode);
2777 		} else {
2778 			vic = drm_match_hdmi_mode(mode);
2779 			if (drm_valid_hdmi_vic(vic)) {
2780 				cea_mode = &edid_4k_modes[vic];
2781 				clock2 = hdmi_mode_alternate_clock(cea_mode);
2782 			}
2783 		}
2784 
2785 		if (!cea_mode)
2786 			continue;
2787 
2788 		clock1 = cea_mode->clock;
2789 
2790 		if (clock1 == clock2)
2791 			continue;
2792 
2793 		if (mode->clock != clock1 && mode->clock != clock2)
2794 			continue;
2795 
2796 		newmode = drm_mode_duplicate(dev, cea_mode);
2797 		if (!newmode)
2798 			continue;
2799 
2800 		/* Carry over the stereo flags */
2801 		newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
2802 
2803 		/*
2804 		 * The current mode could be either variant. Make
2805 		 * sure to pick the "other" clock for the new mode.
2806 		 */
2807 		if (mode->clock != clock1)
2808 			newmode->clock = clock1;
2809 		else
2810 			newmode->clock = clock2;
2811 
2812 		list_add_tail(&newmode->head, &list);
2813 	}
2814 
2815 	list_for_each_entry_safe(mode, tmp, &list, head) {
2816 		list_del(&mode->head);
2817 		drm_mode_probed_add(connector, mode);
2818 		modes++;
2819 	}
2820 
2821 	return modes;
2822 }
2823 
2824 static struct drm_display_mode *
drm_display_mode_from_vic_index(struct drm_connector * connector,const u8 * video_db,u8 video_len,u8 video_index)2825 drm_display_mode_from_vic_index(struct drm_connector *connector,
2826 				const u8 *video_db, u8 video_len,
2827 				u8 video_index)
2828 {
2829 	struct drm_device *dev = connector->dev;
2830 	struct drm_display_mode *newmode;
2831 	u8 vic;
2832 
2833 	if (video_db == NULL || video_index >= video_len)
2834 		return NULL;
2835 
2836 	/* CEA modes are numbered 1..127 */
2837 	vic = (video_db[video_index] & 127);
2838 	if (!drm_valid_cea_vic(vic))
2839 		return NULL;
2840 
2841 	newmode = drm_mode_duplicate(dev, &edid_cea_modes[vic]);
2842 	if (!newmode)
2843 		return NULL;
2844 
2845 	newmode->vrefresh = 0;
2846 
2847 	return newmode;
2848 }
2849 
2850 static int
do_cea_modes(struct drm_connector * connector,const u8 * db,u8 len)2851 do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
2852 {
2853 	int i, modes = 0;
2854 
2855 	for (i = 0; i < len; i++) {
2856 		struct drm_display_mode *mode;
2857 		mode = drm_display_mode_from_vic_index(connector, db, len, i);
2858 		if (mode) {
2859 			drm_mode_probed_add(connector, mode);
2860 			modes++;
2861 		}
2862 	}
2863 
2864 	return modes;
2865 }
2866 
2867 struct stereo_mandatory_mode {
2868 	int width, height, vrefresh;
2869 	unsigned int flags;
2870 };
2871 
2872 static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
2873 	{ 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2874 	{ 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
2875 	{ 1920, 1080, 50,
2876 	  DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
2877 	{ 1920, 1080, 60,
2878 	  DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
2879 	{ 1280, 720,  50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2880 	{ 1280, 720,  50, DRM_MODE_FLAG_3D_FRAME_PACKING },
2881 	{ 1280, 720,  60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2882 	{ 1280, 720,  60, DRM_MODE_FLAG_3D_FRAME_PACKING }
2883 };
2884 
2885 static bool
stereo_match_mandatory(const struct drm_display_mode * mode,const struct stereo_mandatory_mode * stereo_mode)2886 stereo_match_mandatory(const struct drm_display_mode *mode,
2887 		       const struct stereo_mandatory_mode *stereo_mode)
2888 {
2889 	unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
2890 
2891 	return mode->hdisplay == stereo_mode->width &&
2892 	       mode->vdisplay == stereo_mode->height &&
2893 	       interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
2894 	       drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
2895 }
2896 
add_hdmi_mandatory_stereo_modes(struct drm_connector * connector)2897 static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
2898 {
2899 	struct drm_device *dev = connector->dev;
2900 	const struct drm_display_mode *mode;
2901 	struct list_head stereo_modes;
2902 	int modes = 0, i;
2903 
2904 	INIT_LIST_HEAD(&stereo_modes);
2905 
2906 	list_for_each_entry(mode, &connector->probed_modes, head) {
2907 		for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
2908 			const struct stereo_mandatory_mode *mandatory;
2909 			struct drm_display_mode *new_mode;
2910 
2911 			if (!stereo_match_mandatory(mode,
2912 						    &stereo_mandatory_modes[i]))
2913 				continue;
2914 
2915 			mandatory = &stereo_mandatory_modes[i];
2916 			new_mode = drm_mode_duplicate(dev, mode);
2917 			if (!new_mode)
2918 				continue;
2919 
2920 			new_mode->flags |= mandatory->flags;
2921 			list_add_tail(&new_mode->head, &stereo_modes);
2922 			modes++;
2923 		}
2924 	}
2925 
2926 	list_splice_tail(&stereo_modes, &connector->probed_modes);
2927 
2928 	return modes;
2929 }
2930 
add_hdmi_mode(struct drm_connector * connector,u8 vic)2931 static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
2932 {
2933 	struct drm_device *dev = connector->dev;
2934 	struct drm_display_mode *newmode;
2935 
2936 	if (!drm_valid_hdmi_vic(vic)) {
2937 		DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
2938 		return 0;
2939 	}
2940 
2941 	newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
2942 	if (!newmode)
2943 		return 0;
2944 
2945 	drm_mode_probed_add(connector, newmode);
2946 
2947 	return 1;
2948 }
2949 
add_3d_struct_modes(struct drm_connector * connector,u16 structure,const u8 * video_db,u8 video_len,u8 video_index)2950 static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
2951 			       const u8 *video_db, u8 video_len, u8 video_index)
2952 {
2953 	struct drm_display_mode *newmode;
2954 	int modes = 0;
2955 
2956 	if (structure & (1 << 0)) {
2957 		newmode = drm_display_mode_from_vic_index(connector, video_db,
2958 							  video_len,
2959 							  video_index);
2960 		if (newmode) {
2961 			newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
2962 			drm_mode_probed_add(connector, newmode);
2963 			modes++;
2964 		}
2965 	}
2966 	if (structure & (1 << 6)) {
2967 		newmode = drm_display_mode_from_vic_index(connector, video_db,
2968 							  video_len,
2969 							  video_index);
2970 		if (newmode) {
2971 			newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
2972 			drm_mode_probed_add(connector, newmode);
2973 			modes++;
2974 		}
2975 	}
2976 	if (structure & (1 << 8)) {
2977 		newmode = drm_display_mode_from_vic_index(connector, video_db,
2978 							  video_len,
2979 							  video_index);
2980 		if (newmode) {
2981 			newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
2982 			drm_mode_probed_add(connector, newmode);
2983 			modes++;
2984 		}
2985 	}
2986 
2987 	return modes;
2988 }
2989 
2990 /*
2991  * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
2992  * @connector: connector corresponding to the HDMI sink
2993  * @db: start of the CEA vendor specific block
2994  * @len: length of the CEA block payload, ie. one can access up to db[len]
2995  *
2996  * Parses the HDMI VSDB looking for modes to add to @connector. This function
2997  * also adds the stereo 3d modes when applicable.
2998  */
2999 static int
do_hdmi_vsdb_modes(struct drm_connector * connector,const u8 * db,u8 len,const u8 * video_db,u8 video_len)3000 do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
3001 		   const u8 *video_db, u8 video_len)
3002 {
3003 	int modes = 0, offset = 0, i, multi_present = 0, multi_len;
3004 	u8 vic_len, hdmi_3d_len = 0;
3005 	u16 mask;
3006 	u16 structure_all;
3007 
3008 	if (len < 8)
3009 		goto out;
3010 
3011 	/* no HDMI_Video_Present */
3012 	if (!(db[8] & (1 << 5)))
3013 		goto out;
3014 
3015 	/* Latency_Fields_Present */
3016 	if (db[8] & (1 << 7))
3017 		offset += 2;
3018 
3019 	/* I_Latency_Fields_Present */
3020 	if (db[8] & (1 << 6))
3021 		offset += 2;
3022 
3023 	/* the declared length is not long enough for the 2 first bytes
3024 	 * of additional video format capabilities */
3025 	if (len < (8 + offset + 2))
3026 		goto out;
3027 
3028 	/* 3D_Present */
3029 	offset++;
3030 	if (db[8 + offset] & (1 << 7)) {
3031 		modes += add_hdmi_mandatory_stereo_modes(connector);
3032 
3033 		/* 3D_Multi_present */
3034 		multi_present = (db[8 + offset] & 0x60) >> 5;
3035 	}
3036 
3037 	offset++;
3038 	vic_len = db[8 + offset] >> 5;
3039 	hdmi_3d_len = db[8 + offset] & 0x1f;
3040 
3041 	for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
3042 		u8 vic;
3043 
3044 		vic = db[9 + offset + i];
3045 		modes += add_hdmi_mode(connector, vic);
3046 	}
3047 	offset += 1 + vic_len;
3048 
3049 	if (multi_present == 1)
3050 		multi_len = 2;
3051 	else if (multi_present == 2)
3052 		multi_len = 4;
3053 	else
3054 		multi_len = 0;
3055 
3056 	if (len < (8 + offset + hdmi_3d_len - 1))
3057 		goto out;
3058 
3059 	if (hdmi_3d_len < multi_len)
3060 		goto out;
3061 
3062 	if (multi_present == 1 || multi_present == 2) {
3063 		/* 3D_Structure_ALL */
3064 		structure_all = (db[8 + offset] << 8) | db[9 + offset];
3065 
3066 		/* check if 3D_MASK is present */
3067 		if (multi_present == 2)
3068 			mask = (db[10 + offset] << 8) | db[11 + offset];
3069 		else
3070 			mask = 0xffff;
3071 
3072 		for (i = 0; i < 16; i++) {
3073 			if (mask & (1 << i))
3074 				modes += add_3d_struct_modes(connector,
3075 						structure_all,
3076 						video_db,
3077 						video_len, i);
3078 		}
3079 	}
3080 
3081 	offset += multi_len;
3082 
3083 	for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
3084 		int vic_index;
3085 		struct drm_display_mode *newmode = NULL;
3086 		unsigned int newflag = 0;
3087 		bool detail_present;
3088 
3089 		detail_present = ((db[8 + offset + i] & 0x0f) > 7);
3090 
3091 		if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
3092 			break;
3093 
3094 		/* 2D_VIC_order_X */
3095 		vic_index = db[8 + offset + i] >> 4;
3096 
3097 		/* 3D_Structure_X */
3098 		switch (db[8 + offset + i] & 0x0f) {
3099 		case 0:
3100 			newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
3101 			break;
3102 		case 6:
3103 			newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
3104 			break;
3105 		case 8:
3106 			/* 3D_Detail_X */
3107 			if ((db[9 + offset + i] >> 4) == 1)
3108 				newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
3109 			break;
3110 		}
3111 
3112 		if (newflag != 0) {
3113 			newmode = drm_display_mode_from_vic_index(connector,
3114 								  video_db,
3115 								  video_len,
3116 								  vic_index);
3117 
3118 			if (newmode) {
3119 				newmode->flags |= newflag;
3120 				drm_mode_probed_add(connector, newmode);
3121 				modes++;
3122 			}
3123 		}
3124 
3125 		if (detail_present)
3126 			i++;
3127 	}
3128 
3129 out:
3130 	return modes;
3131 }
3132 
3133 static int
cea_db_payload_len(const u8 * db)3134 cea_db_payload_len(const u8 *db)
3135 {
3136 	return db[0] & 0x1f;
3137 }
3138 
3139 static int
cea_db_tag(const u8 * db)3140 cea_db_tag(const u8 *db)
3141 {
3142 	return db[0] >> 5;
3143 }
3144 
3145 static int
cea_revision(const u8 * cea)3146 cea_revision(const u8 *cea)
3147 {
3148 	return cea[1];
3149 }
3150 
3151 static int
cea_db_offsets(const u8 * cea,int * start,int * end)3152 cea_db_offsets(const u8 *cea, int *start, int *end)
3153 {
3154 	/* Data block offset in CEA extension block */
3155 	*start = 4;
3156 	*end = cea[2];
3157 	if (*end == 0)
3158 		*end = 127;
3159 	if (*end < 4 || *end > 127)
3160 		return -ERANGE;
3161 	return 0;
3162 }
3163 
cea_db_is_hdmi_vsdb(const u8 * db)3164 static bool cea_db_is_hdmi_vsdb(const u8 *db)
3165 {
3166 	int hdmi_id;
3167 
3168 	if (cea_db_tag(db) != VENDOR_BLOCK)
3169 		return false;
3170 
3171 	if (cea_db_payload_len(db) < 5)
3172 		return false;
3173 
3174 	hdmi_id = db[1] | (db[2] << 8) | (db[3] << 16);
3175 
3176 	return hdmi_id == HDMI_IEEE_OUI;
3177 }
3178 
3179 #define for_each_cea_db(cea, i, start, end) \
3180 	for ((i) = (start); (i) < (end) && (i) + cea_db_payload_len(&(cea)[(i)]) < (end); (i) += cea_db_payload_len(&(cea)[(i)]) + 1)
3181 
3182 static int
add_cea_modes(struct drm_connector * connector,struct edid * edid)3183 add_cea_modes(struct drm_connector *connector, struct edid *edid)
3184 {
3185 	const u8 *cea = drm_find_cea_extension(edid);
3186 	const u8 *db, *hdmi = NULL, *video = NULL;
3187 	u8 dbl, hdmi_len, video_len = 0;
3188 	int modes = 0;
3189 
3190 	if (cea && cea_revision(cea) >= 3) {
3191 		int i, start, end;
3192 
3193 		if (cea_db_offsets(cea, &start, &end))
3194 			return 0;
3195 
3196 		for_each_cea_db(cea, i, start, end) {
3197 			db = &cea[i];
3198 			dbl = cea_db_payload_len(db);
3199 
3200 			if (cea_db_tag(db) == VIDEO_BLOCK) {
3201 				video = db + 1;
3202 				video_len = dbl;
3203 				modes += do_cea_modes(connector, video, dbl);
3204 			}
3205 			else if (cea_db_is_hdmi_vsdb(db)) {
3206 				hdmi = db;
3207 				hdmi_len = dbl;
3208 			}
3209 		}
3210 	}
3211 
3212 	/*
3213 	 * We parse the HDMI VSDB after having added the cea modes as we will
3214 	 * be patching their flags when the sink supports stereo 3D.
3215 	 */
3216 	if (hdmi)
3217 		modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len, video,
3218 					    video_len);
3219 
3220 	return modes;
3221 }
3222 
fixup_detailed_cea_mode_clock(struct drm_display_mode * mode)3223 static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode)
3224 {
3225 	const struct drm_display_mode *cea_mode;
3226 	int clock1, clock2, clock;
3227 	u8 vic;
3228 	const char *type;
3229 
3230 	/*
3231 	 * allow 5kHz clock difference either way to account for
3232 	 * the 10kHz clock resolution limit of detailed timings.
3233 	 */
3234 	vic = drm_match_cea_mode_clock_tolerance(mode, 5);
3235 	if (drm_valid_cea_vic(vic)) {
3236 		type = "CEA";
3237 		cea_mode = &edid_cea_modes[vic];
3238 		clock1 = cea_mode->clock;
3239 		clock2 = cea_mode_alternate_clock(cea_mode);
3240 	} else {
3241 		vic = drm_match_hdmi_mode_clock_tolerance(mode, 5);
3242 		if (drm_valid_hdmi_vic(vic)) {
3243 			type = "HDMI";
3244 			cea_mode = &edid_4k_modes[vic];
3245 			clock1 = cea_mode->clock;
3246 			clock2 = hdmi_mode_alternate_clock(cea_mode);
3247 		} else {
3248 			return;
3249 		}
3250 	}
3251 
3252 	/* pick whichever is closest */
3253 	if (abs(mode->clock - clock1) < abs(mode->clock - clock2))
3254 		clock = clock1;
3255 	else
3256 		clock = clock2;
3257 
3258 	if (mode->clock == clock)
3259 		return;
3260 
3261 	DRM_DEBUG("detailed mode matches %s VIC %d, adjusting clock %d -> %d\n",
3262 		  type, vic, mode->clock, clock);
3263 	mode->clock = clock;
3264 }
3265 
3266 static void
drm_parse_hdmi_vsdb_audio(struct drm_connector * connector,const u8 * db)3267 drm_parse_hdmi_vsdb_audio(struct drm_connector *connector, const u8 *db)
3268 {
3269 	u8 len = cea_db_payload_len(db);
3270 
3271 	if (len >= 6)
3272 		connector->eld[5] |= (db[6] >> 7) << 1;  /* Supports_AI */
3273 	if (len >= 8) {
3274 		connector->latency_present[0] = db[8] >> 7;
3275 		connector->latency_present[1] = (db[8] >> 6) & 1;
3276 	}
3277 	if (len >= 9)
3278 		connector->video_latency[0] = db[9];
3279 	if (len >= 10)
3280 		connector->audio_latency[0] = db[10];
3281 	if (len >= 11)
3282 		connector->video_latency[1] = db[11];
3283 	if (len >= 12)
3284 		connector->audio_latency[1] = db[12];
3285 
3286 	DRM_DEBUG_KMS("HDMI: latency present %d %d, "
3287 		      "video latency %d %d, "
3288 		      "audio latency %d %d\n",
3289 		      connector->latency_present[0],
3290 		      connector->latency_present[1],
3291 		      connector->video_latency[0],
3292 		      connector->video_latency[1],
3293 		      connector->audio_latency[0],
3294 		      connector->audio_latency[1]);
3295 }
3296 
3297 static void
monitor_name(struct detailed_timing * t,void * data)3298 monitor_name(struct detailed_timing *t, void *data)
3299 {
3300 	if (t->data.other_data.type == EDID_DETAIL_MONITOR_NAME)
3301 		*(u8 **)data = t->data.other_data.data.str.str;
3302 }
3303 
get_monitor_name(struct edid * edid,char name[13])3304 static int get_monitor_name(struct edid *edid, char name[13])
3305 {
3306 	char *edid_name = NULL;
3307 	int mnl;
3308 
3309 	if (!edid || !name)
3310 		return 0;
3311 
3312 	drm_for_each_detailed_block((u8 *)edid, monitor_name, &edid_name);
3313 	for (mnl = 0; edid_name && mnl < 13; mnl++) {
3314 		if (edid_name[mnl] == 0x0a)
3315 			break;
3316 
3317 		name[mnl] = edid_name[mnl];
3318 	}
3319 
3320 	return mnl;
3321 }
3322 
3323 /**
3324  * drm_edid_get_monitor_name - fetch the monitor name from the edid
3325  * @edid: monitor EDID information
3326  * @name: pointer to a character array to hold the name of the monitor
3327  * @bufsize: The size of the name buffer (should be at least 14 chars.)
3328  *
3329  */
drm_edid_get_monitor_name(struct edid * edid,char * name,int bufsize)3330 void drm_edid_get_monitor_name(struct edid *edid, char *name, int bufsize)
3331 {
3332 	int name_length;
3333 	char buf[13];
3334 
3335 	if (bufsize <= 0)
3336 		return;
3337 
3338 	name_length = min(get_monitor_name(edid, buf), bufsize - 1);
3339 	memcpy(name, buf, name_length);
3340 	name[name_length] = '\0';
3341 }
3342 EXPORT_SYMBOL(drm_edid_get_monitor_name);
3343 
3344 /**
3345  * drm_edid_to_eld - build ELD from EDID
3346  * @connector: connector corresponding to the HDMI/DP sink
3347  * @edid: EDID to parse
3348  *
3349  * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
3350  * HDCP and Port_ID ELD fields are left for the graphics driver to fill in.
3351  */
drm_edid_to_eld(struct drm_connector * connector,struct edid * edid)3352 void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid)
3353 {
3354 	uint8_t *eld = connector->eld;
3355 	u8 *cea;
3356 	u8 *db;
3357 	int total_sad_count = 0;
3358 	int mnl;
3359 	int dbl;
3360 
3361 	memset(eld, 0, sizeof(connector->eld));
3362 
3363 	connector->latency_present[0] = false;
3364 	connector->latency_present[1] = false;
3365 	connector->video_latency[0] = 0;
3366 	connector->audio_latency[0] = 0;
3367 	connector->video_latency[1] = 0;
3368 	connector->audio_latency[1] = 0;
3369 
3370 	cea = drm_find_cea_extension(edid);
3371 	if (!cea) {
3372 		DRM_DEBUG_KMS("ELD: no CEA Extension found\n");
3373 		return;
3374 	}
3375 
3376 	mnl = get_monitor_name(edid, eld + 20);
3377 
3378 	eld[4] = (cea[1] << 5) | mnl;
3379 	DRM_DEBUG_KMS("ELD monitor %s\n", eld + 20);
3380 
3381 	eld[0] = 2 << 3;		/* ELD version: 2 */
3382 
3383 	eld[16] = edid->mfg_id[0];
3384 	eld[17] = edid->mfg_id[1];
3385 	eld[18] = edid->prod_code[0];
3386 	eld[19] = edid->prod_code[1];
3387 
3388 	if (cea_revision(cea) >= 3) {
3389 		int i, start, end;
3390 
3391 		if (cea_db_offsets(cea, &start, &end)) {
3392 			start = 0;
3393 			end = 0;
3394 		}
3395 
3396 		for_each_cea_db(cea, i, start, end) {
3397 			db = &cea[i];
3398 			dbl = cea_db_payload_len(db);
3399 
3400 			switch (cea_db_tag(db)) {
3401 				int sad_count;
3402 
3403 			case AUDIO_BLOCK:
3404 				/* Audio Data Block, contains SADs */
3405 				sad_count = min(dbl / 3, 15 - total_sad_count);
3406 				if (sad_count >= 1)
3407 					memcpy(eld + 20 + mnl + total_sad_count * 3,
3408 					       &db[1], sad_count * 3);
3409 				total_sad_count += sad_count;
3410 				break;
3411 			case SPEAKER_BLOCK:
3412 				/* Speaker Allocation Data Block */
3413 				if (dbl >= 1)
3414 					eld[7] = db[1];
3415 				break;
3416 			case VENDOR_BLOCK:
3417 				/* HDMI Vendor-Specific Data Block */
3418 				if (cea_db_is_hdmi_vsdb(db))
3419 					drm_parse_hdmi_vsdb_audio(connector, db);
3420 				break;
3421 			default:
3422 				break;
3423 			}
3424 		}
3425 	}
3426 	eld[5] |= total_sad_count << 4;
3427 
3428 	if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
3429 	    connector->connector_type == DRM_MODE_CONNECTOR_eDP)
3430 		eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_DP;
3431 	else
3432 		eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_HDMI;
3433 
3434 	eld[DRM_ELD_BASELINE_ELD_LEN] =
3435 		DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
3436 
3437 	DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
3438 		      drm_eld_size(eld), total_sad_count);
3439 }
3440 EXPORT_SYMBOL(drm_edid_to_eld);
3441 
3442 /**
3443  * drm_edid_to_sad - extracts SADs from EDID
3444  * @edid: EDID to parse
3445  * @sads: pointer that will be set to the extracted SADs
3446  *
3447  * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
3448  *
3449  * Note: The returned pointer needs to be freed using kfree().
3450  *
3451  * Return: The number of found SADs or negative number on error.
3452  */
drm_edid_to_sad(struct edid * edid,struct cea_sad ** sads)3453 int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads)
3454 {
3455 	int count = 0;
3456 	int i, start, end, dbl;
3457 	u8 *cea;
3458 
3459 	cea = drm_find_cea_extension(edid);
3460 	if (!cea) {
3461 		DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
3462 		return -ENOENT;
3463 	}
3464 
3465 	if (cea_revision(cea) < 3) {
3466 		DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
3467 		return -ENOTSUPP;
3468 	}
3469 
3470 	if (cea_db_offsets(cea, &start, &end)) {
3471 		DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
3472 		return -EPROTO;
3473 	}
3474 
3475 	for_each_cea_db(cea, i, start, end) {
3476 		u8 *db = &cea[i];
3477 
3478 		if (cea_db_tag(db) == AUDIO_BLOCK) {
3479 			int j;
3480 			dbl = cea_db_payload_len(db);
3481 
3482 			count = dbl / 3; /* SAD is 3B */
3483 			*sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
3484 			if (!*sads)
3485 				return -ENOMEM;
3486 			for (j = 0; j < count; j++) {
3487 				u8 *sad = &db[1 + j * 3];
3488 
3489 				(*sads)[j].format = (sad[0] & 0x78) >> 3;
3490 				(*sads)[j].channels = sad[0] & 0x7;
3491 				(*sads)[j].freq = sad[1] & 0x7F;
3492 				(*sads)[j].byte2 = sad[2];
3493 			}
3494 			break;
3495 		}
3496 	}
3497 
3498 	return count;
3499 }
3500 EXPORT_SYMBOL(drm_edid_to_sad);
3501 
3502 /**
3503  * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
3504  * @edid: EDID to parse
3505  * @sadb: pointer to the speaker block
3506  *
3507  * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
3508  *
3509  * Note: The returned pointer needs to be freed using kfree().
3510  *
3511  * Return: The number of found Speaker Allocation Blocks or negative number on
3512  * error.
3513  */
drm_edid_to_speaker_allocation(struct edid * edid,u8 ** sadb)3514 int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
3515 {
3516 	int count = 0;
3517 	int i, start, end, dbl;
3518 	const u8 *cea;
3519 
3520 	cea = drm_find_cea_extension(edid);
3521 	if (!cea) {
3522 		DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
3523 		return -ENOENT;
3524 	}
3525 
3526 	if (cea_revision(cea) < 3) {
3527 		DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
3528 		return -ENOTSUPP;
3529 	}
3530 
3531 	if (cea_db_offsets(cea, &start, &end)) {
3532 		DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
3533 		return -EPROTO;
3534 	}
3535 
3536 	for_each_cea_db(cea, i, start, end) {
3537 		const u8 *db = &cea[i];
3538 
3539 		if (cea_db_tag(db) == SPEAKER_BLOCK) {
3540 			dbl = cea_db_payload_len(db);
3541 
3542 			/* Speaker Allocation Data Block */
3543 			if (dbl == 3) {
3544 				*sadb = kmemdup(&db[1], dbl, GFP_KERNEL);
3545 				if (!*sadb)
3546 					return -ENOMEM;
3547 				count = dbl;
3548 				break;
3549 			}
3550 		}
3551 	}
3552 
3553 	return count;
3554 }
3555 EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
3556 
3557 /**
3558  * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
3559  * @connector: connector associated with the HDMI/DP sink
3560  * @mode: the display mode
3561  *
3562  * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
3563  * the sink doesn't support audio or video.
3564  */
drm_av_sync_delay(struct drm_connector * connector,const struct drm_display_mode * mode)3565 int drm_av_sync_delay(struct drm_connector *connector,
3566 		      const struct drm_display_mode *mode)
3567 {
3568 	int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
3569 	int a, v;
3570 
3571 	if (!connector->latency_present[0])
3572 		return 0;
3573 	if (!connector->latency_present[1])
3574 		i = 0;
3575 
3576 	a = connector->audio_latency[i];
3577 	v = connector->video_latency[i];
3578 
3579 	/*
3580 	 * HDMI/DP sink doesn't support audio or video?
3581 	 */
3582 	if (a == 255 || v == 255)
3583 		return 0;
3584 
3585 	/*
3586 	 * Convert raw EDID values to millisecond.
3587 	 * Treat unknown latency as 0ms.
3588 	 */
3589 	if (a)
3590 		a = min(2 * (a - 1), 500);
3591 	if (v)
3592 		v = min(2 * (v - 1), 500);
3593 
3594 	return max(v - a, 0);
3595 }
3596 EXPORT_SYMBOL(drm_av_sync_delay);
3597 
3598 /**
3599  * drm_select_eld - select one ELD from multiple HDMI/DP sinks
3600  * @encoder: the encoder just changed display mode
3601  *
3602  * It's possible for one encoder to be associated with multiple HDMI/DP sinks.
3603  * The policy is now hard coded to simply use the first HDMI/DP sink's ELD.
3604  *
3605  * Return: The connector associated with the first HDMI/DP sink that has ELD
3606  * attached to it.
3607  */
drm_select_eld(struct drm_encoder * encoder)3608 struct drm_connector *drm_select_eld(struct drm_encoder *encoder)
3609 {
3610 	struct drm_connector *connector;
3611 	struct drm_device *dev = encoder->dev;
3612 
3613 	WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
3614 	WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
3615 
3616 	drm_for_each_connector(connector, dev)
3617 		if (connector->encoder == encoder && connector->eld[0])
3618 			return connector;
3619 
3620 	return NULL;
3621 }
3622 EXPORT_SYMBOL(drm_select_eld);
3623 
3624 /**
3625  * drm_detect_hdmi_monitor - detect whether monitor is HDMI
3626  * @edid: monitor EDID information
3627  *
3628  * Parse the CEA extension according to CEA-861-B.
3629  *
3630  * Return: True if the monitor is HDMI, false if not or unknown.
3631  */
drm_detect_hdmi_monitor(struct edid * edid)3632 bool drm_detect_hdmi_monitor(struct edid *edid)
3633 {
3634 	u8 *edid_ext;
3635 	int i;
3636 	int start_offset, end_offset;
3637 
3638 	edid_ext = drm_find_cea_extension(edid);
3639 	if (!edid_ext)
3640 		return false;
3641 
3642 	if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
3643 		return false;
3644 
3645 	/*
3646 	 * Because HDMI identifier is in Vendor Specific Block,
3647 	 * search it from all data blocks of CEA extension.
3648 	 */
3649 	for_each_cea_db(edid_ext, i, start_offset, end_offset) {
3650 		if (cea_db_is_hdmi_vsdb(&edid_ext[i]))
3651 			return true;
3652 	}
3653 
3654 	return false;
3655 }
3656 EXPORT_SYMBOL(drm_detect_hdmi_monitor);
3657 
3658 /**
3659  * drm_detect_monitor_audio - check monitor audio capability
3660  * @edid: EDID block to scan
3661  *
3662  * Monitor should have CEA extension block.
3663  * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
3664  * audio' only. If there is any audio extension block and supported
3665  * audio format, assume at least 'basic audio' support, even if 'basic
3666  * audio' is not defined in EDID.
3667  *
3668  * Return: True if the monitor supports audio, false otherwise.
3669  */
drm_detect_monitor_audio(struct edid * edid)3670 bool drm_detect_monitor_audio(struct edid *edid)
3671 {
3672 	u8 *edid_ext;
3673 	int i, j;
3674 	bool has_audio = false;
3675 	int start_offset, end_offset;
3676 
3677 	edid_ext = drm_find_cea_extension(edid);
3678 	if (!edid_ext)
3679 		goto end;
3680 
3681 	has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0);
3682 
3683 	if (has_audio) {
3684 		DRM_DEBUG_KMS("Monitor has basic audio support\n");
3685 		goto end;
3686 	}
3687 
3688 	if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
3689 		goto end;
3690 
3691 	for_each_cea_db(edid_ext, i, start_offset, end_offset) {
3692 		if (cea_db_tag(&edid_ext[i]) == AUDIO_BLOCK) {
3693 			has_audio = true;
3694 			for (j = 1; j < cea_db_payload_len(&edid_ext[i]) + 1; j += 3)
3695 				DRM_DEBUG_KMS("CEA audio format %d\n",
3696 					      (edid_ext[i + j] >> 3) & 0xf);
3697 			goto end;
3698 		}
3699 	}
3700 end:
3701 	return has_audio;
3702 }
3703 EXPORT_SYMBOL(drm_detect_monitor_audio);
3704 
3705 /**
3706  * drm_rgb_quant_range_selectable - is RGB quantization range selectable?
3707  * @edid: EDID block to scan
3708  *
3709  * Check whether the monitor reports the RGB quantization range selection
3710  * as supported. The AVI infoframe can then be used to inform the monitor
3711  * which quantization range (full or limited) is used.
3712  *
3713  * Return: True if the RGB quantization range is selectable, false otherwise.
3714  */
drm_rgb_quant_range_selectable(struct edid * edid)3715 bool drm_rgb_quant_range_selectable(struct edid *edid)
3716 {
3717 	u8 *edid_ext;
3718 	int i, start, end;
3719 
3720 	edid_ext = drm_find_cea_extension(edid);
3721 	if (!edid_ext)
3722 		return false;
3723 
3724 	if (cea_db_offsets(edid_ext, &start, &end))
3725 		return false;
3726 
3727 	for_each_cea_db(edid_ext, i, start, end) {
3728 		if (cea_db_tag(&edid_ext[i]) == VIDEO_CAPABILITY_BLOCK &&
3729 		    cea_db_payload_len(&edid_ext[i]) == 2) {
3730 			DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", edid_ext[i + 2]);
3731 			return edid_ext[i + 2] & EDID_CEA_VCDB_QS;
3732 		}
3733 	}
3734 
3735 	return false;
3736 }
3737 EXPORT_SYMBOL(drm_rgb_quant_range_selectable);
3738 
drm_parse_hdmi_deep_color_info(struct drm_connector * connector,const u8 * hdmi)3739 static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
3740 					   const u8 *hdmi)
3741 {
3742 	struct drm_display_info *info = &connector->display_info;
3743 	unsigned int dc_bpc = 0;
3744 
3745 	/* HDMI supports at least 8 bpc */
3746 	info->bpc = 8;
3747 
3748 	if (cea_db_payload_len(hdmi) < 6)
3749 		return;
3750 
3751 	if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
3752 		dc_bpc = 10;
3753 		info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_30;
3754 		DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
3755 			  connector->name);
3756 	}
3757 
3758 	if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
3759 		dc_bpc = 12;
3760 		info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_36;
3761 		DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
3762 			  connector->name);
3763 	}
3764 
3765 	if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
3766 		dc_bpc = 16;
3767 		info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_48;
3768 		DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
3769 			  connector->name);
3770 	}
3771 
3772 	if (dc_bpc == 0) {
3773 		DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
3774 			  connector->name);
3775 		return;
3776 	}
3777 
3778 	DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
3779 		  connector->name, dc_bpc);
3780 	info->bpc = dc_bpc;
3781 
3782 	/*
3783 	 * Deep color support mandates RGB444 support for all video
3784 	 * modes and forbids YCRCB422 support for all video modes per
3785 	 * HDMI 1.3 spec.
3786 	 */
3787 	info->color_formats = DRM_COLOR_FORMAT_RGB444;
3788 
3789 	/* YCRCB444 is optional according to spec. */
3790 	if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
3791 		info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3792 		DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
3793 			  connector->name);
3794 	}
3795 
3796 	/*
3797 	 * Spec says that if any deep color mode is supported at all,
3798 	 * then deep color 36 bit must be supported.
3799 	 */
3800 	if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
3801 		DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
3802 			  connector->name);
3803 	}
3804 }
3805 
3806 static void
drm_parse_hdmi_vsdb_video(struct drm_connector * connector,const u8 * db)3807 drm_parse_hdmi_vsdb_video(struct drm_connector *connector, const u8 *db)
3808 {
3809 	struct drm_display_info *info = &connector->display_info;
3810 	u8 len = cea_db_payload_len(db);
3811 
3812 	if (len >= 6)
3813 		info->dvi_dual = db[6] & 1;
3814 	if (len >= 7)
3815 		info->max_tmds_clock = db[7] * 5000;
3816 
3817 	DRM_DEBUG_KMS("HDMI: DVI dual %d, "
3818 		      "max TMDS clock %d kHz\n",
3819 		      info->dvi_dual,
3820 		      info->max_tmds_clock);
3821 
3822 	drm_parse_hdmi_deep_color_info(connector, db);
3823 }
3824 
drm_parse_cea_ext(struct drm_connector * connector,struct edid * edid)3825 static void drm_parse_cea_ext(struct drm_connector *connector,
3826 			      struct edid *edid)
3827 {
3828 	struct drm_display_info *info = &connector->display_info;
3829 	const u8 *edid_ext;
3830 	int i, start, end;
3831 
3832 	edid_ext = drm_find_cea_extension(edid);
3833 	if (!edid_ext)
3834 		return;
3835 
3836 	info->cea_rev = edid_ext[1];
3837 
3838 	/* The existence of a CEA block should imply RGB support */
3839 	info->color_formats = DRM_COLOR_FORMAT_RGB444;
3840 	if (edid_ext[3] & EDID_CEA_YCRCB444)
3841 		info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3842 	if (edid_ext[3] & EDID_CEA_YCRCB422)
3843 		info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
3844 
3845 	if (cea_db_offsets(edid_ext, &start, &end))
3846 		return;
3847 
3848 	for_each_cea_db(edid_ext, i, start, end) {
3849 		const u8 *db = &edid_ext[i];
3850 
3851 		if (cea_db_is_hdmi_vsdb(db))
3852 			drm_parse_hdmi_vsdb_video(connector, db);
3853 	}
3854 }
3855 
drm_add_display_info(struct drm_connector * connector,struct edid * edid)3856 static void drm_add_display_info(struct drm_connector *connector,
3857 				 struct edid *edid)
3858 {
3859 	struct drm_display_info *info = &connector->display_info;
3860 
3861 	info->width_mm = edid->width_cm * 10;
3862 	info->height_mm = edid->height_cm * 10;
3863 
3864 	/* driver figures it out in this case */
3865 	info->bpc = 0;
3866 	info->color_formats = 0;
3867 	info->cea_rev = 0;
3868 	info->max_tmds_clock = 0;
3869 	info->dvi_dual = false;
3870 
3871 	if (edid->revision < 3)
3872 		return;
3873 
3874 	if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
3875 		return;
3876 
3877 	drm_parse_cea_ext(connector, edid);
3878 
3879 	/*
3880 	 * Digital sink with "DFP 1.x compliant TMDS" according to EDID 1.3?
3881 	 *
3882 	 * For such displays, the DFP spec 1.0, section 3.10 "EDID support"
3883 	 * tells us to assume 8 bpc color depth if the EDID doesn't have
3884 	 * extensions which tell otherwise.
3885 	 */
3886 	if ((info->bpc == 0) && (edid->revision < 4) &&
3887 	    (edid->input & DRM_EDID_DIGITAL_TYPE_DVI)) {
3888 		info->bpc = 8;
3889 		DRM_DEBUG("%s: Assigning DFP sink color depth as %d bpc.\n",
3890 			  connector->name, info->bpc);
3891 	}
3892 
3893 	/* Only defined for 1.4 with digital displays */
3894 	if (edid->revision < 4)
3895 		return;
3896 
3897 	switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
3898 	case DRM_EDID_DIGITAL_DEPTH_6:
3899 		info->bpc = 6;
3900 		break;
3901 	case DRM_EDID_DIGITAL_DEPTH_8:
3902 		info->bpc = 8;
3903 		break;
3904 	case DRM_EDID_DIGITAL_DEPTH_10:
3905 		info->bpc = 10;
3906 		break;
3907 	case DRM_EDID_DIGITAL_DEPTH_12:
3908 		info->bpc = 12;
3909 		break;
3910 	case DRM_EDID_DIGITAL_DEPTH_14:
3911 		info->bpc = 14;
3912 		break;
3913 	case DRM_EDID_DIGITAL_DEPTH_16:
3914 		info->bpc = 16;
3915 		break;
3916 	case DRM_EDID_DIGITAL_DEPTH_UNDEF:
3917 	default:
3918 		info->bpc = 0;
3919 		break;
3920 	}
3921 
3922 	DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
3923 			  connector->name, info->bpc);
3924 
3925 	info->color_formats |= DRM_COLOR_FORMAT_RGB444;
3926 	if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
3927 		info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3928 	if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
3929 		info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
3930 }
3931 
validate_displayid(u8 * displayid,int length,int idx)3932 static int validate_displayid(u8 *displayid, int length, int idx)
3933 {
3934 	int i;
3935 	u8 csum = 0;
3936 	struct displayid_hdr *base;
3937 
3938 	base = (struct displayid_hdr *)&displayid[idx];
3939 
3940 	DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n",
3941 		      base->rev, base->bytes, base->prod_id, base->ext_count);
3942 
3943 	if (base->bytes + 5 > length - idx)
3944 		return -EINVAL;
3945 	for (i = idx; i <= base->bytes + 5; i++) {
3946 		csum += displayid[i];
3947 	}
3948 	if (csum) {
3949 		DRM_ERROR("DisplayID checksum invalid, remainder is %d\n", csum);
3950 		return -EINVAL;
3951 	}
3952 	return 0;
3953 }
3954 
drm_mode_displayid_detailed(struct drm_device * dev,struct displayid_detailed_timings_1 * timings)3955 static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
3956 							    struct displayid_detailed_timings_1 *timings)
3957 {
3958 	struct drm_display_mode *mode;
3959 	unsigned pixel_clock = (timings->pixel_clock[0] |
3960 				(timings->pixel_clock[1] << 8) |
3961 				(timings->pixel_clock[2] << 16));
3962 	unsigned hactive = (timings->hactive[0] | timings->hactive[1] << 8) + 1;
3963 	unsigned hblank = (timings->hblank[0] | timings->hblank[1] << 8) + 1;
3964 	unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1;
3965 	unsigned hsync_width = (timings->hsw[0] | timings->hsw[1] << 8) + 1;
3966 	unsigned vactive = (timings->vactive[0] | timings->vactive[1] << 8) + 1;
3967 	unsigned vblank = (timings->vblank[0] | timings->vblank[1] << 8) + 1;
3968 	unsigned vsync = (timings->vsync[0] | (timings->vsync[1] & 0x7f) << 8) + 1;
3969 	unsigned vsync_width = (timings->vsw[0] | timings->vsw[1] << 8) + 1;
3970 	bool hsync_positive = (timings->hsync[1] >> 7) & 0x1;
3971 	bool vsync_positive = (timings->vsync[1] >> 7) & 0x1;
3972 	mode = drm_mode_create(dev);
3973 	if (!mode)
3974 		return NULL;
3975 
3976 	mode->clock = pixel_clock * 10;
3977 	mode->hdisplay = hactive;
3978 	mode->hsync_start = mode->hdisplay + hsync;
3979 	mode->hsync_end = mode->hsync_start + hsync_width;
3980 	mode->htotal = mode->hdisplay + hblank;
3981 
3982 	mode->vdisplay = vactive;
3983 	mode->vsync_start = mode->vdisplay + vsync;
3984 	mode->vsync_end = mode->vsync_start + vsync_width;
3985 	mode->vtotal = mode->vdisplay + vblank;
3986 
3987 	mode->flags = 0;
3988 	mode->flags |= hsync_positive ? DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
3989 	mode->flags |= vsync_positive ? DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
3990 	mode->type = DRM_MODE_TYPE_DRIVER;
3991 
3992 	if (timings->flags & 0x80)
3993 		mode->type |= DRM_MODE_TYPE_PREFERRED;
3994 	mode->vrefresh = drm_mode_vrefresh(mode);
3995 	drm_mode_set_name(mode);
3996 
3997 	return mode;
3998 }
3999 
add_displayid_detailed_1_modes(struct drm_connector * connector,struct displayid_block * block)4000 static int add_displayid_detailed_1_modes(struct drm_connector *connector,
4001 					  struct displayid_block *block)
4002 {
4003 	struct displayid_detailed_timing_block *det = (struct displayid_detailed_timing_block *)block;
4004 	int i;
4005 	int num_timings;
4006 	struct drm_display_mode *newmode;
4007 	int num_modes = 0;
4008 	/* blocks must be multiple of 20 bytes length */
4009 	if (block->num_bytes % 20)
4010 		return 0;
4011 
4012 	num_timings = block->num_bytes / 20;
4013 	for (i = 0; i < num_timings; i++) {
4014 		struct displayid_detailed_timings_1 *timings = &det->timings[i];
4015 
4016 		newmode = drm_mode_displayid_detailed(connector->dev, timings);
4017 		if (!newmode)
4018 			continue;
4019 
4020 		drm_mode_probed_add(connector, newmode);
4021 		num_modes++;
4022 	}
4023 	return num_modes;
4024 }
4025 
add_displayid_detailed_modes(struct drm_connector * connector,struct edid * edid)4026 static int add_displayid_detailed_modes(struct drm_connector *connector,
4027 					struct edid *edid)
4028 {
4029 	u8 *displayid;
4030 	int ret;
4031 	int idx = 1;
4032 	int length = EDID_LENGTH;
4033 	struct displayid_block *block;
4034 	int num_modes = 0;
4035 
4036 	displayid = drm_find_displayid_extension(edid);
4037 	if (!displayid)
4038 		return 0;
4039 
4040 	ret = validate_displayid(displayid, length, idx);
4041 	if (ret)
4042 		return 0;
4043 
4044 	idx += sizeof(struct displayid_hdr);
4045 	while (block = (struct displayid_block *)&displayid[idx],
4046 	       idx + sizeof(struct displayid_block) <= length &&
4047 	       idx + sizeof(struct displayid_block) + block->num_bytes <= length &&
4048 	       block->num_bytes > 0) {
4049 		idx += block->num_bytes + sizeof(struct displayid_block);
4050 		switch (block->tag) {
4051 		case DATA_BLOCK_TYPE_1_DETAILED_TIMING:
4052 			num_modes += add_displayid_detailed_1_modes(connector, block);
4053 			break;
4054 		}
4055 	}
4056 	return num_modes;
4057 }
4058 
4059 /**
4060  * drm_add_edid_modes - add modes from EDID data, if available
4061  * @connector: connector we're probing
4062  * @edid: EDID data
4063  *
4064  * Add the specified modes to the connector's mode list. Also fills out the
4065  * &drm_display_info structure in @connector with any information which can be
4066  * derived from the edid.
4067  *
4068  * Return: The number of modes added or 0 if we couldn't find any.
4069  */
drm_add_edid_modes(struct drm_connector * connector,struct edid * edid)4070 int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
4071 {
4072 	int num_modes = 0;
4073 	u32 quirks;
4074 
4075 	if (edid == NULL) {
4076 		return 0;
4077 	}
4078 	if (!drm_edid_is_valid(edid)) {
4079 		dev_warn(connector->dev->dev, "%s: EDID invalid.\n",
4080 			 connector->name);
4081 		return 0;
4082 	}
4083 
4084 	quirks = edid_get_quirks(edid);
4085 
4086 	/*
4087 	 * EDID spec says modes should be preferred in this order:
4088 	 * - preferred detailed mode
4089 	 * - other detailed modes from base block
4090 	 * - detailed modes from extension blocks
4091 	 * - CVT 3-byte code modes
4092 	 * - standard timing codes
4093 	 * - established timing codes
4094 	 * - modes inferred from GTF or CVT range information
4095 	 *
4096 	 * We get this pretty much right.
4097 	 *
4098 	 * XXX order for additional mode types in extension blocks?
4099 	 */
4100 	num_modes += add_detailed_modes(connector, edid, quirks);
4101 	num_modes += add_cvt_modes(connector, edid);
4102 	num_modes += add_standard_modes(connector, edid);
4103 	num_modes += add_established_modes(connector, edid);
4104 	num_modes += add_cea_modes(connector, edid);
4105 	num_modes += add_alternate_cea_modes(connector, edid);
4106 	num_modes += add_displayid_detailed_modes(connector, edid);
4107 	if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
4108 		num_modes += add_inferred_modes(connector, edid);
4109 
4110 	if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
4111 		edid_fixup_preferred(connector, quirks);
4112 
4113 	drm_add_display_info(connector, edid);
4114 
4115 	if (quirks & EDID_QUIRK_FORCE_6BPC)
4116 		connector->display_info.bpc = 6;
4117 
4118 	if (quirks & EDID_QUIRK_FORCE_8BPC)
4119 		connector->display_info.bpc = 8;
4120 
4121 	if (quirks & EDID_QUIRK_FORCE_10BPC)
4122 		connector->display_info.bpc = 10;
4123 
4124 	if (quirks & EDID_QUIRK_FORCE_12BPC)
4125 		connector->display_info.bpc = 12;
4126 
4127 	return num_modes;
4128 }
4129 EXPORT_SYMBOL(drm_add_edid_modes);
4130 
4131 /**
4132  * drm_add_modes_noedid - add modes for the connectors without EDID
4133  * @connector: connector we're probing
4134  * @hdisplay: the horizontal display limit
4135  * @vdisplay: the vertical display limit
4136  *
4137  * Add the specified modes to the connector's mode list. Only when the
4138  * hdisplay/vdisplay is not beyond the given limit, it will be added.
4139  *
4140  * Return: The number of modes added or 0 if we couldn't find any.
4141  */
drm_add_modes_noedid(struct drm_connector * connector,int hdisplay,int vdisplay)4142 int drm_add_modes_noedid(struct drm_connector *connector,
4143 			int hdisplay, int vdisplay)
4144 {
4145 	int i, count, num_modes = 0;
4146 	struct drm_display_mode *mode;
4147 	struct drm_device *dev = connector->dev;
4148 
4149 	count = ARRAY_SIZE(drm_dmt_modes);
4150 	if (hdisplay < 0)
4151 		hdisplay = 0;
4152 	if (vdisplay < 0)
4153 		vdisplay = 0;
4154 
4155 	for (i = 0; i < count; i++) {
4156 		const struct drm_display_mode *ptr = &drm_dmt_modes[i];
4157 		if (hdisplay && vdisplay) {
4158 			/*
4159 			 * Only when two are valid, they will be used to check
4160 			 * whether the mode should be added to the mode list of
4161 			 * the connector.
4162 			 */
4163 			if (ptr->hdisplay > hdisplay ||
4164 					ptr->vdisplay > vdisplay)
4165 				continue;
4166 		}
4167 		if (drm_mode_vrefresh(ptr) > 61)
4168 			continue;
4169 		mode = drm_mode_duplicate(dev, ptr);
4170 		if (mode) {
4171 			drm_mode_probed_add(connector, mode);
4172 			num_modes++;
4173 		}
4174 	}
4175 	return num_modes;
4176 }
4177 EXPORT_SYMBOL(drm_add_modes_noedid);
4178 
4179 /**
4180  * drm_set_preferred_mode - Sets the preferred mode of a connector
4181  * @connector: connector whose mode list should be processed
4182  * @hpref: horizontal resolution of preferred mode
4183  * @vpref: vertical resolution of preferred mode
4184  *
4185  * Marks a mode as preferred if it matches the resolution specified by @hpref
4186  * and @vpref.
4187  */
drm_set_preferred_mode(struct drm_connector * connector,int hpref,int vpref)4188 void drm_set_preferred_mode(struct drm_connector *connector,
4189 			   int hpref, int vpref)
4190 {
4191 	struct drm_display_mode *mode;
4192 
4193 	list_for_each_entry(mode, &connector->probed_modes, head) {
4194 		if (mode->hdisplay == hpref &&
4195 		    mode->vdisplay == vpref)
4196 			mode->type |= DRM_MODE_TYPE_PREFERRED;
4197 	}
4198 }
4199 EXPORT_SYMBOL(drm_set_preferred_mode);
4200 
4201 /**
4202  * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
4203  *                                              data from a DRM display mode
4204  * @frame: HDMI AVI infoframe
4205  * @mode: DRM display mode
4206  *
4207  * Return: 0 on success or a negative error code on failure.
4208  */
4209 int
drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe * frame,const struct drm_display_mode * mode)4210 drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
4211 					 const struct drm_display_mode *mode)
4212 {
4213 	int err;
4214 
4215 	if (!frame || !mode)
4216 		return -EINVAL;
4217 
4218 	err = hdmi_avi_infoframe_init(frame);
4219 	if (err < 0)
4220 		return err;
4221 
4222 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
4223 		frame->pixel_repeat = 1;
4224 
4225 	frame->video_code = drm_match_cea_mode(mode);
4226 
4227 	frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
4228 
4229 	/*
4230 	 * Populate picture aspect ratio from either
4231 	 * user input (if specified) or from the CEA mode list.
4232 	 */
4233 	if (mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_4_3 ||
4234 		mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_16_9)
4235 		frame->picture_aspect = mode->picture_aspect_ratio;
4236 	else if (frame->video_code > 0)
4237 		frame->picture_aspect = drm_get_cea_aspect_ratio(
4238 						frame->video_code);
4239 
4240 	frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
4241 	frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
4242 
4243 	return 0;
4244 }
4245 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
4246 
4247 static enum hdmi_3d_structure
s3d_structure_from_display_mode(const struct drm_display_mode * mode)4248 s3d_structure_from_display_mode(const struct drm_display_mode *mode)
4249 {
4250 	u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
4251 
4252 	switch (layout) {
4253 	case DRM_MODE_FLAG_3D_FRAME_PACKING:
4254 		return HDMI_3D_STRUCTURE_FRAME_PACKING;
4255 	case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
4256 		return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
4257 	case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
4258 		return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
4259 	case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
4260 		return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
4261 	case DRM_MODE_FLAG_3D_L_DEPTH:
4262 		return HDMI_3D_STRUCTURE_L_DEPTH;
4263 	case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
4264 		return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
4265 	case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
4266 		return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
4267 	case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
4268 		return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
4269 	default:
4270 		return HDMI_3D_STRUCTURE_INVALID;
4271 	}
4272 }
4273 
4274 /**
4275  * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
4276  * data from a DRM display mode
4277  * @frame: HDMI vendor infoframe
4278  * @mode: DRM display mode
4279  *
4280  * Note that there's is a need to send HDMI vendor infoframes only when using a
4281  * 4k or stereoscopic 3D mode. So when giving any other mode as input this
4282  * function will return -EINVAL, error that can be safely ignored.
4283  *
4284  * Return: 0 on success or a negative error code on failure.
4285  */
4286 int
drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe * frame,const struct drm_display_mode * mode)4287 drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
4288 					    const struct drm_display_mode *mode)
4289 {
4290 	int err;
4291 	u32 s3d_flags;
4292 	u8 vic;
4293 
4294 	if (!frame || !mode)
4295 		return -EINVAL;
4296 
4297 	vic = drm_match_hdmi_mode(mode);
4298 	s3d_flags = mode->flags & DRM_MODE_FLAG_3D_MASK;
4299 
4300 	if (!vic && !s3d_flags)
4301 		return -EINVAL;
4302 
4303 	if (vic && s3d_flags)
4304 		return -EINVAL;
4305 
4306 	err = hdmi_vendor_infoframe_init(frame);
4307 	if (err < 0)
4308 		return err;
4309 
4310 	if (vic)
4311 		frame->vic = vic;
4312 	else
4313 		frame->s3d_struct = s3d_structure_from_display_mode(mode);
4314 
4315 	return 0;
4316 }
4317 EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
4318 
drm_parse_tiled_block(struct drm_connector * connector,struct displayid_block * block)4319 static int drm_parse_tiled_block(struct drm_connector *connector,
4320 				 struct displayid_block *block)
4321 {
4322 	struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
4323 	u16 w, h;
4324 	u8 tile_v_loc, tile_h_loc;
4325 	u8 num_v_tile, num_h_tile;
4326 	struct drm_tile_group *tg;
4327 
4328 	w = tile->tile_size[0] | tile->tile_size[1] << 8;
4329 	h = tile->tile_size[2] | tile->tile_size[3] << 8;
4330 
4331 	num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
4332 	num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
4333 	tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
4334 	tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
4335 
4336 	connector->has_tile = true;
4337 	if (tile->tile_cap & 0x80)
4338 		connector->tile_is_single_monitor = true;
4339 
4340 	connector->num_h_tile = num_h_tile + 1;
4341 	connector->num_v_tile = num_v_tile + 1;
4342 	connector->tile_h_loc = tile_h_loc;
4343 	connector->tile_v_loc = tile_v_loc;
4344 	connector->tile_h_size = w + 1;
4345 	connector->tile_v_size = h + 1;
4346 
4347 	DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
4348 	DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
4349 	DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
4350 		      num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
4351 	DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
4352 
4353 	tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
4354 	if (!tg) {
4355 		tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
4356 	}
4357 	if (!tg)
4358 		return -ENOMEM;
4359 
4360 	if (connector->tile_group != tg) {
4361 		/* if we haven't got a pointer,
4362 		   take the reference, drop ref to old tile group */
4363 		if (connector->tile_group) {
4364 			drm_mode_put_tile_group(connector->dev, connector->tile_group);
4365 		}
4366 		connector->tile_group = tg;
4367 	} else
4368 		/* if same tile group, then release the ref we just took. */
4369 		drm_mode_put_tile_group(connector->dev, tg);
4370 	return 0;
4371 }
4372 
drm_parse_display_id(struct drm_connector * connector,u8 * displayid,int length,bool is_edid_extension)4373 static int drm_parse_display_id(struct drm_connector *connector,
4374 				u8 *displayid, int length,
4375 				bool is_edid_extension)
4376 {
4377 	/* if this is an EDID extension the first byte will be 0x70 */
4378 	int idx = 0;
4379 	struct displayid_block *block;
4380 	int ret;
4381 
4382 	if (is_edid_extension)
4383 		idx = 1;
4384 
4385 	ret = validate_displayid(displayid, length, idx);
4386 	if (ret)
4387 		return ret;
4388 
4389 	idx += sizeof(struct displayid_hdr);
4390 	while (block = (struct displayid_block *)&displayid[idx],
4391 	       idx + sizeof(struct displayid_block) <= length &&
4392 	       idx + sizeof(struct displayid_block) + block->num_bytes <= length &&
4393 	       block->num_bytes > 0) {
4394 		idx += block->num_bytes + sizeof(struct displayid_block);
4395 		DRM_DEBUG_KMS("block id 0x%x, rev %d, len %d\n",
4396 			      block->tag, block->rev, block->num_bytes);
4397 
4398 		switch (block->tag) {
4399 		case DATA_BLOCK_TILED_DISPLAY:
4400 			ret = drm_parse_tiled_block(connector, block);
4401 			if (ret)
4402 				return ret;
4403 			break;
4404 		case DATA_BLOCK_TYPE_1_DETAILED_TIMING:
4405 			/* handled in mode gathering code. */
4406 			break;
4407 		default:
4408 			DRM_DEBUG_KMS("found DisplayID tag 0x%x, unhandled\n", block->tag);
4409 			break;
4410 		}
4411 	}
4412 	return 0;
4413 }
4414 
drm_get_displayid(struct drm_connector * connector,struct edid * edid)4415 static void drm_get_displayid(struct drm_connector *connector,
4416 			      struct edid *edid)
4417 {
4418 	void *displayid = NULL;
4419 	int ret;
4420 	connector->has_tile = false;
4421 	displayid = drm_find_displayid_extension(edid);
4422 	if (!displayid) {
4423 		/* drop reference to any tile group we had */
4424 		goto out_drop_ref;
4425 	}
4426 
4427 	ret = drm_parse_display_id(connector, displayid, EDID_LENGTH, true);
4428 	if (ret < 0)
4429 		goto out_drop_ref;
4430 	if (!connector->has_tile)
4431 		goto out_drop_ref;
4432 	return;
4433 out_drop_ref:
4434 	if (connector->tile_group) {
4435 		drm_mode_put_tile_group(connector->dev, connector->tile_group);
4436 		connector->tile_group = NULL;
4437 	}
4438 	return;
4439 }
4440