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