e7a140056d155e75984f8d5bdabac9d9e1bdd105
[firefly-linux-kernel-4.4.55.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  *
1077  * Validate a base or extension EDID block and optionally dump bad blocks to
1078  * the console.
1079  *
1080  * Return: True if the block is valid, false otherwise.
1081  */
1082 bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid)
1083 {
1084         u8 csum;
1085         struct edid *edid = (struct edid *)raw_edid;
1086
1087         if (WARN_ON(!raw_edid))
1088                 return false;
1089
1090         if (edid_fixup > 8 || edid_fixup < 0)
1091                 edid_fixup = 6;
1092
1093         if (block == 0) {
1094                 int score = drm_edid_header_is_valid(raw_edid);
1095                 if (score == 8) ;
1096                 else if (score >= edid_fixup) {
1097                         DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1098                         memcpy(raw_edid, edid_header, sizeof(edid_header));
1099                 } else {
1100                         goto bad;
1101                 }
1102         }
1103
1104         csum = drm_edid_block_checksum(raw_edid);
1105         if (csum) {
1106                 if (print_bad_edid) {
1107                         DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
1108                 }
1109
1110                 /* allow CEA to slide through, switches mangle this */
1111                 if (raw_edid[0] != 0x02)
1112                         goto bad;
1113         }
1114
1115         /* per-block-type checks */
1116         switch (raw_edid[0]) {
1117         case 0: /* base */
1118                 if (edid->version != 1) {
1119                         DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
1120                         goto bad;
1121                 }
1122
1123                 if (edid->revision > 4)
1124                         DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
1125                 break;
1126
1127         default:
1128                 break;
1129         }
1130
1131         return true;
1132
1133 bad:
1134         if (print_bad_edid) {
1135                 if (drm_edid_is_zero(raw_edid, EDID_LENGTH)) {
1136                         printk(KERN_ERR "EDID block is all zeroes\n");
1137                 } else {
1138                         printk(KERN_ERR "Raw EDID:\n");
1139                         print_hex_dump(KERN_ERR, " \t", DUMP_PREFIX_NONE, 16, 1,
1140                                raw_edid, EDID_LENGTH, false);
1141                 }
1142         }
1143         return false;
1144 }
1145 EXPORT_SYMBOL(drm_edid_block_valid);
1146
1147 /**
1148  * drm_edid_is_valid - sanity check EDID data
1149  * @edid: EDID data
1150  *
1151  * Sanity-check an entire EDID record (including extensions)
1152  *
1153  * Return: True if the EDID data is valid, false otherwise.
1154  */
1155 bool drm_edid_is_valid(struct edid *edid)
1156 {
1157         int i;
1158         u8 *raw = (u8 *)edid;
1159
1160         if (!edid)
1161                 return false;
1162
1163         for (i = 0; i <= edid->extensions; i++)
1164                 if (!drm_edid_block_valid(raw + i * EDID_LENGTH, i, true))
1165                         return false;
1166
1167         return true;
1168 }
1169 EXPORT_SYMBOL(drm_edid_is_valid);
1170
1171 #define DDC_SEGMENT_ADDR 0x30
1172 /**
1173  * drm_do_probe_ddc_edid() - get EDID information via I2C
1174  * @data: I2C device adapter
1175  * @buf: EDID data buffer to be filled
1176  * @block: 128 byte EDID block to start fetching from
1177  * @len: EDID data buffer length to fetch
1178  *
1179  * Try to fetch EDID information by calling I2C driver functions.
1180  *
1181  * Return: 0 on success or -1 on failure.
1182  */
1183 static int
1184 drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
1185 {
1186         struct i2c_adapter *adapter = data;
1187         unsigned char start = block * EDID_LENGTH;
1188         unsigned char segment = block >> 1;
1189         unsigned char xfers = segment ? 3 : 2;
1190         int ret, retries = 5;
1191
1192         /*
1193          * The core I2C driver will automatically retry the transfer if the
1194          * adapter reports EAGAIN. However, we find that bit-banging transfers
1195          * are susceptible to errors under a heavily loaded machine and
1196          * generate spurious NAKs and timeouts. Retrying the transfer
1197          * of the individual block a few times seems to overcome this.
1198          */
1199         do {
1200                 struct i2c_msg msgs[] = {
1201                         {
1202                                 .addr   = DDC_SEGMENT_ADDR,
1203                                 .flags  = 0,
1204                                 .len    = 1,
1205                                 .buf    = &segment,
1206                         }, {
1207                                 .addr   = DDC_ADDR,
1208                                 .flags  = 0,
1209                                 .len    = 1,
1210                                 .buf    = &start,
1211                         }, {
1212                                 .addr   = DDC_ADDR,
1213                                 .flags  = I2C_M_RD,
1214                                 .len    = len,
1215                                 .buf    = buf,
1216                         }
1217                 };
1218
1219                 /*
1220                  * Avoid sending the segment addr to not upset non-compliant
1221                  * DDC monitors.
1222                  */
1223                 ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
1224
1225                 if (ret == -ENXIO) {
1226                         DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
1227                                         adapter->name);
1228                         break;
1229                 }
1230         } while (ret != xfers && --retries);
1231
1232         return ret == xfers ? 0 : -1;
1233 }
1234
1235 /**
1236  * drm_do_get_edid - get EDID data using a custom EDID block read function
1237  * @connector: connector we're probing
1238  * @get_edid_block: EDID block read function
1239  * @data: private data passed to the block read function
1240  *
1241  * When the I2C adapter connected to the DDC bus is hidden behind a device that
1242  * exposes a different interface to read EDID blocks this function can be used
1243  * to get EDID data using a custom block read function.
1244  *
1245  * As in the general case the DDC bus is accessible by the kernel at the I2C
1246  * level, drivers must make all reasonable efforts to expose it as an I2C
1247  * adapter and use drm_get_edid() instead of abusing this function.
1248  *
1249  * Return: Pointer to valid EDID or NULL if we couldn't find any.
1250  */
1251 struct edid *drm_do_get_edid(struct drm_connector *connector,
1252         int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
1253                               size_t len),
1254         void *data)
1255 {
1256         int i, j = 0, valid_extensions = 0;
1257         u8 *block, *new;
1258         bool print_bad_edid = !connector->bad_edid_counter || (drm_debug & DRM_UT_KMS);
1259
1260         if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
1261                 return NULL;
1262
1263         /* base block fetch */
1264         for (i = 0; i < 4; i++) {
1265                 if (get_edid_block(data, block, 0, EDID_LENGTH))
1266                         goto out;
1267                 if (drm_edid_block_valid(block, 0, print_bad_edid))
1268                         break;
1269                 if (i == 0 && drm_edid_is_zero(block, EDID_LENGTH)) {
1270                         connector->null_edid_counter++;
1271                         goto carp;
1272                 }
1273         }
1274         if (i == 4)
1275                 goto carp;
1276
1277         /* if there's no extensions, we're done */
1278         if (block[0x7e] == 0)
1279                 return (struct edid *)block;
1280
1281         new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
1282         if (!new)
1283                 goto out;
1284         block = new;
1285
1286         for (j = 1; j <= block[0x7e]; j++) {
1287                 for (i = 0; i < 4; i++) {
1288                         if (get_edid_block(data,
1289                                   block + (valid_extensions + 1) * EDID_LENGTH,
1290                                   j, EDID_LENGTH))
1291                                 goto out;
1292                         if (drm_edid_block_valid(block + (valid_extensions + 1) * EDID_LENGTH, j, print_bad_edid)) {
1293                                 valid_extensions++;
1294                                 break;
1295                         }
1296                 }
1297
1298                 if (i == 4 && print_bad_edid) {
1299                         dev_warn(connector->dev->dev,
1300                          "%s: Ignoring invalid EDID block %d.\n",
1301                          connector->name, j);
1302
1303                         connector->bad_edid_counter++;
1304                 }
1305         }
1306
1307         if (valid_extensions != block[0x7e]) {
1308                 block[EDID_LENGTH-1] += block[0x7e] - valid_extensions;
1309                 block[0x7e] = valid_extensions;
1310                 new = krealloc(block, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1311                 if (!new)
1312                         goto out;
1313                 block = new;
1314         }
1315
1316         return (struct edid *)block;
1317
1318 carp:
1319         if (print_bad_edid) {
1320                 dev_warn(connector->dev->dev, "%s: EDID block %d invalid.\n",
1321                          connector->name, j);
1322         }
1323         connector->bad_edid_counter++;
1324
1325 out:
1326         kfree(block);
1327         return NULL;
1328 }
1329 EXPORT_SYMBOL_GPL(drm_do_get_edid);
1330
1331 /**
1332  * drm_probe_ddc() - probe DDC presence
1333  * @adapter: I2C adapter to probe
1334  *
1335  * Return: True on success, false on failure.
1336  */
1337 bool
1338 drm_probe_ddc(struct i2c_adapter *adapter)
1339 {
1340         unsigned char out;
1341
1342         return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
1343 }
1344 EXPORT_SYMBOL(drm_probe_ddc);
1345
1346 /**
1347  * drm_get_edid - get EDID data, if available
1348  * @connector: connector we're probing
1349  * @adapter: I2C adapter to use for DDC
1350  *
1351  * Poke the given I2C channel to grab EDID data if possible.  If found,
1352  * attach it to the connector.
1353  *
1354  * Return: Pointer to valid EDID or NULL if we couldn't find any.
1355  */
1356 struct edid *drm_get_edid(struct drm_connector *connector,
1357                           struct i2c_adapter *adapter)
1358 {
1359         struct edid *edid;
1360
1361         if (!drm_probe_ddc(adapter))
1362                 return NULL;
1363
1364         edid = drm_do_get_edid(connector, drm_do_probe_ddc_edid, adapter);
1365         if (edid)
1366                 drm_get_displayid(connector, edid);
1367         return edid;
1368 }
1369 EXPORT_SYMBOL(drm_get_edid);
1370
1371 /**
1372  * drm_edid_duplicate - duplicate an EDID and the extensions
1373  * @edid: EDID to duplicate
1374  *
1375  * Return: Pointer to duplicated EDID or NULL on allocation failure.
1376  */
1377 struct edid *drm_edid_duplicate(const struct edid *edid)
1378 {
1379         return kmemdup(edid, (edid->extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1380 }
1381 EXPORT_SYMBOL(drm_edid_duplicate);
1382
1383 /*** EDID parsing ***/
1384
1385 /**
1386  * edid_vendor - match a string against EDID's obfuscated vendor field
1387  * @edid: EDID to match
1388  * @vendor: vendor string
1389  *
1390  * Returns true if @vendor is in @edid, false otherwise
1391  */
1392 static bool edid_vendor(struct edid *edid, char *vendor)
1393 {
1394         char edid_vendor[3];
1395
1396         edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
1397         edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
1398                           ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
1399         edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
1400
1401         return !strncmp(edid_vendor, vendor, 3);
1402 }
1403
1404 /**
1405  * edid_get_quirks - return quirk flags for a given EDID
1406  * @edid: EDID to process
1407  *
1408  * This tells subsequent routines what fixes they need to apply.
1409  */
1410 static u32 edid_get_quirks(struct edid *edid)
1411 {
1412         struct edid_quirk *quirk;
1413         int i;
1414
1415         for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
1416                 quirk = &edid_quirk_list[i];
1417
1418                 if (edid_vendor(edid, quirk->vendor) &&
1419                     (EDID_PRODUCT_ID(edid) == quirk->product_id))
1420                         return quirk->quirks;
1421         }
1422
1423         return 0;
1424 }
1425
1426 #define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
1427 #define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
1428
1429 /**
1430  * edid_fixup_preferred - set preferred modes based on quirk list
1431  * @connector: has mode list to fix up
1432  * @quirks: quirks list
1433  *
1434  * Walk the mode list for @connector, clearing the preferred status
1435  * on existing modes and setting it anew for the right mode ala @quirks.
1436  */
1437 static void edid_fixup_preferred(struct drm_connector *connector,
1438                                  u32 quirks)
1439 {
1440         struct drm_display_mode *t, *cur_mode, *preferred_mode;
1441         int target_refresh = 0;
1442         int cur_vrefresh, preferred_vrefresh;
1443
1444         if (list_empty(&connector->probed_modes))
1445                 return;
1446
1447         if (quirks & EDID_QUIRK_PREFER_LARGE_60)
1448                 target_refresh = 60;
1449         if (quirks & EDID_QUIRK_PREFER_LARGE_75)
1450                 target_refresh = 75;
1451
1452         preferred_mode = list_first_entry(&connector->probed_modes,
1453                                           struct drm_display_mode, head);
1454
1455         list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
1456                 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
1457
1458                 if (cur_mode == preferred_mode)
1459                         continue;
1460
1461                 /* Largest mode is preferred */
1462                 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
1463                         preferred_mode = cur_mode;
1464
1465                 cur_vrefresh = cur_mode->vrefresh ?
1466                         cur_mode->vrefresh : drm_mode_vrefresh(cur_mode);
1467                 preferred_vrefresh = preferred_mode->vrefresh ?
1468                         preferred_mode->vrefresh : drm_mode_vrefresh(preferred_mode);
1469                 /* At a given size, try to get closest to target refresh */
1470                 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
1471                     MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
1472                     MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
1473                         preferred_mode = cur_mode;
1474                 }
1475         }
1476
1477         preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
1478 }
1479
1480 static bool
1481 mode_is_rb(const struct drm_display_mode *mode)
1482 {
1483         return (mode->htotal - mode->hdisplay == 160) &&
1484                (mode->hsync_end - mode->hdisplay == 80) &&
1485                (mode->hsync_end - mode->hsync_start == 32) &&
1486                (mode->vsync_start - mode->vdisplay == 3);
1487 }
1488
1489 /*
1490  * drm_mode_find_dmt - Create a copy of a mode if present in DMT
1491  * @dev: Device to duplicate against
1492  * @hsize: Mode width
1493  * @vsize: Mode height
1494  * @fresh: Mode refresh rate
1495  * @rb: Mode reduced-blanking-ness
1496  *
1497  * Walk the DMT mode list looking for a match for the given parameters.
1498  *
1499  * Return: A newly allocated copy of the mode, or NULL if not found.
1500  */
1501 struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
1502                                            int hsize, int vsize, int fresh,
1503                                            bool rb)
1504 {
1505         int i;
1506
1507         for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
1508                 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
1509                 if (hsize != ptr->hdisplay)
1510                         continue;
1511                 if (vsize != ptr->vdisplay)
1512                         continue;
1513                 if (fresh != drm_mode_vrefresh(ptr))
1514                         continue;
1515                 if (rb != mode_is_rb(ptr))
1516                         continue;
1517
1518                 return drm_mode_duplicate(dev, ptr);
1519         }
1520
1521         return NULL;
1522 }
1523 EXPORT_SYMBOL(drm_mode_find_dmt);
1524
1525 typedef void detailed_cb(struct detailed_timing *timing, void *closure);
1526
1527 static void
1528 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
1529 {
1530         int i, n = 0;
1531         u8 d = ext[0x02];
1532         u8 *det_base = ext + d;
1533
1534         n = (127 - d) / 18;
1535         for (i = 0; i < n; i++)
1536                 cb((struct detailed_timing *)(det_base + 18 * i), closure);
1537 }
1538
1539 static void
1540 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
1541 {
1542         unsigned int i, n = min((int)ext[0x02], 6);
1543         u8 *det_base = ext + 5;
1544
1545         if (ext[0x01] != 1)
1546                 return; /* unknown version */
1547
1548         for (i = 0; i < n; i++)
1549                 cb((struct detailed_timing *)(det_base + 18 * i), closure);
1550 }
1551
1552 static void
1553 drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
1554 {
1555         int i;
1556         struct edid *edid = (struct edid *)raw_edid;
1557
1558         if (edid == NULL)
1559                 return;
1560
1561         for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
1562                 cb(&(edid->detailed_timings[i]), closure);
1563
1564         for (i = 1; i <= raw_edid[0x7e]; i++) {
1565                 u8 *ext = raw_edid + (i * EDID_LENGTH);
1566                 switch (*ext) {
1567                 case CEA_EXT:
1568                         cea_for_each_detailed_block(ext, cb, closure);
1569                         break;
1570                 case VTB_EXT:
1571                         vtb_for_each_detailed_block(ext, cb, closure);
1572                         break;
1573                 default:
1574                         break;
1575                 }
1576         }
1577 }
1578
1579 static void
1580 is_rb(struct detailed_timing *t, void *data)
1581 {
1582         u8 *r = (u8 *)t;
1583         if (r[3] == EDID_DETAIL_MONITOR_RANGE)
1584                 if (r[15] & 0x10)
1585                         *(bool *)data = true;
1586 }
1587
1588 /* EDID 1.4 defines this explicitly.  For EDID 1.3, we guess, badly. */
1589 static bool
1590 drm_monitor_supports_rb(struct edid *edid)
1591 {
1592         if (edid->revision >= 4) {
1593                 bool ret = false;
1594                 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
1595                 return ret;
1596         }
1597
1598         return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
1599 }
1600
1601 static void
1602 find_gtf2(struct detailed_timing *t, void *data)
1603 {
1604         u8 *r = (u8 *)t;
1605         if (r[3] == EDID_DETAIL_MONITOR_RANGE && r[10] == 0x02)
1606                 *(u8 **)data = r;
1607 }
1608
1609 /* Secondary GTF curve kicks in above some break frequency */
1610 static int
1611 drm_gtf2_hbreak(struct edid *edid)
1612 {
1613         u8 *r = NULL;
1614         drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1615         return r ? (r[12] * 2) : 0;
1616 }
1617
1618 static int
1619 drm_gtf2_2c(struct edid *edid)
1620 {
1621         u8 *r = NULL;
1622         drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1623         return r ? r[13] : 0;
1624 }
1625
1626 static int
1627 drm_gtf2_m(struct edid *edid)
1628 {
1629         u8 *r = NULL;
1630         drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1631         return r ? (r[15] << 8) + r[14] : 0;
1632 }
1633
1634 static int
1635 drm_gtf2_k(struct edid *edid)
1636 {
1637         u8 *r = NULL;
1638         drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1639         return r ? r[16] : 0;
1640 }
1641
1642 static int
1643 drm_gtf2_2j(struct edid *edid)
1644 {
1645         u8 *r = NULL;
1646         drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
1647         return r ? r[17] : 0;
1648 }
1649
1650 /**
1651  * standard_timing_level - get std. timing level(CVT/GTF/DMT)
1652  * @edid: EDID block to scan
1653  */
1654 static int standard_timing_level(struct edid *edid)
1655 {
1656         if (edid->revision >= 2) {
1657                 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
1658                         return LEVEL_CVT;
1659                 if (drm_gtf2_hbreak(edid))
1660                         return LEVEL_GTF2;
1661                 return LEVEL_GTF;
1662         }
1663         return LEVEL_DMT;
1664 }
1665
1666 /*
1667  * 0 is reserved.  The spec says 0x01 fill for unused timings.  Some old
1668  * monitors fill with ascii space (0x20) instead.
1669  */
1670 static int
1671 bad_std_timing(u8 a, u8 b)
1672 {
1673         return (a == 0x00 && b == 0x00) ||
1674                (a == 0x01 && b == 0x01) ||
1675                (a == 0x20 && b == 0x20);
1676 }
1677
1678 /**
1679  * drm_mode_std - convert standard mode info (width, height, refresh) into mode
1680  * @connector: connector of for the EDID block
1681  * @edid: EDID block to scan
1682  * @t: standard timing params
1683  *
1684  * Take the standard timing params (in this case width, aspect, and refresh)
1685  * and convert them into a real mode using CVT/GTF/DMT.
1686  */
1687 static struct drm_display_mode *
1688 drm_mode_std(struct drm_connector *connector, struct edid *edid,
1689              struct std_timing *t)
1690 {
1691         struct drm_device *dev = connector->dev;
1692         struct drm_display_mode *m, *mode = NULL;
1693         int hsize, vsize;
1694         int vrefresh_rate;
1695         unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
1696                 >> EDID_TIMING_ASPECT_SHIFT;
1697         unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
1698                 >> EDID_TIMING_VFREQ_SHIFT;
1699         int timing_level = standard_timing_level(edid);
1700
1701         if (bad_std_timing(t->hsize, t->vfreq_aspect))
1702                 return NULL;
1703
1704         /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
1705         hsize = t->hsize * 8 + 248;
1706         /* vrefresh_rate = vfreq + 60 */
1707         vrefresh_rate = vfreq + 60;
1708         /* the vdisplay is calculated based on the aspect ratio */
1709         if (aspect_ratio == 0) {
1710                 if (edid->revision < 3)
1711                         vsize = hsize;
1712                 else
1713                         vsize = (hsize * 10) / 16;
1714         } else if (aspect_ratio == 1)
1715                 vsize = (hsize * 3) / 4;
1716         else if (aspect_ratio == 2)
1717                 vsize = (hsize * 4) / 5;
1718         else
1719                 vsize = (hsize * 9) / 16;
1720
1721         /* HDTV hack, part 1 */
1722         if (vrefresh_rate == 60 &&
1723             ((hsize == 1360 && vsize == 765) ||
1724              (hsize == 1368 && vsize == 769))) {
1725                 hsize = 1366;
1726                 vsize = 768;
1727         }
1728
1729         /*
1730          * If this connector already has a mode for this size and refresh
1731          * rate (because it came from detailed or CVT info), use that
1732          * instead.  This way we don't have to guess at interlace or
1733          * reduced blanking.
1734          */
1735         list_for_each_entry(m, &connector->probed_modes, head)
1736                 if (m->hdisplay == hsize && m->vdisplay == vsize &&
1737                     drm_mode_vrefresh(m) == vrefresh_rate)
1738                         return NULL;
1739
1740         /* HDTV hack, part 2 */
1741         if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
1742                 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
1743                                     false);
1744                 mode->hdisplay = 1366;
1745                 mode->hsync_start = mode->hsync_start - 1;
1746                 mode->hsync_end = mode->hsync_end - 1;
1747                 return mode;
1748         }
1749
1750         /* check whether it can be found in default mode table */
1751         if (drm_monitor_supports_rb(edid)) {
1752                 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
1753                                          true);
1754                 if (mode)
1755                         return mode;
1756         }
1757         mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
1758         if (mode)
1759                 return mode;
1760
1761         /* okay, generate it */
1762         switch (timing_level) {
1763         case LEVEL_DMT:
1764                 break;
1765         case LEVEL_GTF:
1766                 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
1767                 break;
1768         case LEVEL_GTF2:
1769                 /*
1770                  * This is potentially wrong if there's ever a monitor with
1771                  * more than one ranges section, each claiming a different
1772                  * secondary GTF curve.  Please don't do that.
1773                  */
1774                 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
1775                 if (!mode)
1776                         return NULL;
1777                 if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
1778                         drm_mode_destroy(dev, mode);
1779                         mode = drm_gtf_mode_complex(dev, hsize, vsize,
1780                                                     vrefresh_rate, 0, 0,
1781                                                     drm_gtf2_m(edid),
1782                                                     drm_gtf2_2c(edid),
1783                                                     drm_gtf2_k(edid),
1784                                                     drm_gtf2_2j(edid));
1785                 }
1786                 break;
1787         case LEVEL_CVT:
1788                 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
1789                                     false);
1790                 break;
1791         }
1792         return mode;
1793 }
1794
1795 /*
1796  * EDID is delightfully ambiguous about how interlaced modes are to be
1797  * encoded.  Our internal representation is of frame height, but some
1798  * HDTV detailed timings are encoded as field height.
1799  *
1800  * The format list here is from CEA, in frame size.  Technically we
1801  * should be checking refresh rate too.  Whatever.
1802  */
1803 static void
1804 drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
1805                             struct detailed_pixel_timing *pt)
1806 {
1807         int i;
1808         static const struct {
1809                 int w, h;
1810         } cea_interlaced[] = {
1811                 { 1920, 1080 },
1812                 {  720,  480 },
1813                 { 1440,  480 },
1814                 { 2880,  480 },
1815                 {  720,  576 },
1816                 { 1440,  576 },
1817                 { 2880,  576 },
1818         };
1819
1820         if (!(pt->misc & DRM_EDID_PT_INTERLACED))
1821                 return;
1822
1823         for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
1824                 if ((mode->hdisplay == cea_interlaced[i].w) &&
1825                     (mode->vdisplay == cea_interlaced[i].h / 2)) {
1826                         mode->vdisplay *= 2;
1827                         mode->vsync_start *= 2;
1828                         mode->vsync_end *= 2;
1829                         mode->vtotal *= 2;
1830                         mode->vtotal |= 1;
1831                 }
1832         }
1833
1834         mode->flags |= DRM_MODE_FLAG_INTERLACE;
1835 }
1836
1837 /**
1838  * drm_mode_detailed - create a new mode from an EDID detailed timing section
1839  * @dev: DRM device (needed to create new mode)
1840  * @edid: EDID block
1841  * @timing: EDID detailed timing info
1842  * @quirks: quirks to apply
1843  *
1844  * An EDID detailed timing block contains enough info for us to create and
1845  * return a new struct drm_display_mode.
1846  */
1847 static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
1848                                                   struct edid *edid,
1849                                                   struct detailed_timing *timing,
1850                                                   u32 quirks)
1851 {
1852         struct drm_display_mode *mode;
1853         struct detailed_pixel_timing *pt = &timing->data.pixel_data;
1854         unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
1855         unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
1856         unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
1857         unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
1858         unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
1859         unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
1860         unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) << 2 | pt->vsync_offset_pulse_width_lo >> 4;
1861         unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);
1862
1863         /* ignore tiny modes */
1864         if (hactive < 64 || vactive < 64)
1865                 return NULL;
1866
1867         if (pt->misc & DRM_EDID_PT_STEREO) {
1868                 DRM_DEBUG_KMS("stereo mode not supported\n");
1869                 return NULL;
1870         }
1871         if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
1872                 DRM_DEBUG_KMS("composite sync not supported\n");
1873         }
1874
1875         /* it is incorrect if hsync/vsync width is zero */
1876         if (!hsync_pulse_width || !vsync_pulse_width) {
1877                 DRM_DEBUG_KMS("Incorrect Detailed timing. "
1878                                 "Wrong Hsync/Vsync pulse width\n");
1879                 return NULL;
1880         }
1881
1882         if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
1883                 mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
1884                 if (!mode)
1885                         return NULL;
1886
1887                 goto set_size;
1888         }
1889
1890         mode = drm_mode_create(dev);
1891         if (!mode)
1892                 return NULL;
1893
1894         if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
1895                 timing->pixel_clock = cpu_to_le16(1088);
1896
1897         mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
1898
1899         mode->hdisplay = hactive;
1900         mode->hsync_start = mode->hdisplay + hsync_offset;
1901         mode->hsync_end = mode->hsync_start + hsync_pulse_width;
1902         mode->htotal = mode->hdisplay + hblank;
1903
1904         mode->vdisplay = vactive;
1905         mode->vsync_start = mode->vdisplay + vsync_offset;
1906         mode->vsync_end = mode->vsync_start + vsync_pulse_width;
1907         mode->vtotal = mode->vdisplay + vblank;
1908
1909         /* Some EDIDs have bogus h/vtotal values */
1910         if (mode->hsync_end > mode->htotal)
1911                 mode->htotal = mode->hsync_end + 1;
1912         if (mode->vsync_end > mode->vtotal)
1913                 mode->vtotal = mode->vsync_end + 1;
1914
1915         drm_mode_do_interlace_quirk(mode, pt);
1916
1917         if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
1918                 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
1919         }
1920
1921         mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
1922                 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
1923         mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
1924                 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
1925
1926 set_size:
1927         mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
1928         mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
1929
1930         if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
1931                 mode->width_mm *= 10;
1932                 mode->height_mm *= 10;
1933         }
1934
1935         if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
1936                 mode->width_mm = edid->width_cm * 10;
1937                 mode->height_mm = edid->height_cm * 10;
1938         }
1939
1940         mode->type = DRM_MODE_TYPE_DRIVER;
1941         mode->vrefresh = drm_mode_vrefresh(mode);
1942         drm_mode_set_name(mode);
1943
1944         return mode;
1945 }
1946
1947 static bool
1948 mode_in_hsync_range(const struct drm_display_mode *mode,
1949                     struct edid *edid, u8 *t)
1950 {
1951         int hsync, hmin, hmax;
1952
1953         hmin = t[7];
1954         if (edid->revision >= 4)
1955             hmin += ((t[4] & 0x04) ? 255 : 0);
1956         hmax = t[8];
1957         if (edid->revision >= 4)
1958             hmax += ((t[4] & 0x08) ? 255 : 0);
1959         hsync = drm_mode_hsync(mode);
1960
1961         return (hsync <= hmax && hsync >= hmin);
1962 }
1963
1964 static bool
1965 mode_in_vsync_range(const struct drm_display_mode *mode,
1966                     struct edid *edid, u8 *t)
1967 {
1968         int vsync, vmin, vmax;
1969
1970         vmin = t[5];
1971         if (edid->revision >= 4)
1972             vmin += ((t[4] & 0x01) ? 255 : 0);
1973         vmax = t[6];
1974         if (edid->revision >= 4)
1975             vmax += ((t[4] & 0x02) ? 255 : 0);
1976         vsync = drm_mode_vrefresh(mode);
1977
1978         return (vsync <= vmax && vsync >= vmin);
1979 }
1980
1981 static u32
1982 range_pixel_clock(struct edid *edid, u8 *t)
1983 {
1984         /* unspecified */
1985         if (t[9] == 0 || t[9] == 255)
1986                 return 0;
1987
1988         /* 1.4 with CVT support gives us real precision, yay */
1989         if (edid->revision >= 4 && t[10] == 0x04)
1990                 return (t[9] * 10000) - ((t[12] >> 2) * 250);
1991
1992         /* 1.3 is pathetic, so fuzz up a bit */
1993         return t[9] * 10000 + 5001;
1994 }
1995
1996 static bool
1997 mode_in_range(const struct drm_display_mode *mode, struct edid *edid,
1998               struct detailed_timing *timing)
1999 {
2000         u32 max_clock;
2001         u8 *t = (u8 *)timing;
2002
2003         if (!mode_in_hsync_range(mode, edid, t))
2004                 return false;
2005
2006         if (!mode_in_vsync_range(mode, edid, t))
2007                 return false;
2008
2009         if ((max_clock = range_pixel_clock(edid, t)))
2010                 if (mode->clock > max_clock)
2011                         return false;
2012
2013         /* 1.4 max horizontal check */
2014         if (edid->revision >= 4 && t[10] == 0x04)
2015                 if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
2016                         return false;
2017
2018         if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
2019                 return false;
2020
2021         return true;
2022 }
2023
2024 static bool valid_inferred_mode(const struct drm_connector *connector,
2025                                 const struct drm_display_mode *mode)
2026 {
2027         struct drm_display_mode *m;
2028         bool ok = false;
2029
2030         list_for_each_entry(m, &connector->probed_modes, head) {
2031                 if (mode->hdisplay == m->hdisplay &&
2032                     mode->vdisplay == m->vdisplay &&
2033                     drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
2034                         return false; /* duplicated */
2035                 if (mode->hdisplay <= m->hdisplay &&
2036                     mode->vdisplay <= m->vdisplay)
2037                         ok = true;
2038         }
2039         return ok;
2040 }
2041
2042 static int
2043 drm_dmt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2044                         struct detailed_timing *timing)
2045 {
2046         int i, modes = 0;
2047         struct drm_display_mode *newmode;
2048         struct drm_device *dev = connector->dev;
2049
2050         for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
2051                 if (mode_in_range(drm_dmt_modes + i, edid, timing) &&
2052                     valid_inferred_mode(connector, drm_dmt_modes + i)) {
2053                         newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
2054                         if (newmode) {
2055                                 drm_mode_probed_add(connector, newmode);
2056                                 modes++;
2057                         }
2058                 }
2059         }
2060
2061         return modes;
2062 }
2063
2064 /* fix up 1366x768 mode from 1368x768;
2065  * GFT/CVT can't express 1366 width which isn't dividable by 8
2066  */
2067 static void fixup_mode_1366x768(struct drm_display_mode *mode)
2068 {
2069         if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
2070                 mode->hdisplay = 1366;
2071                 mode->hsync_start--;
2072                 mode->hsync_end--;
2073                 drm_mode_set_name(mode);
2074         }
2075 }
2076
2077 static int
2078 drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
2079                         struct detailed_timing *timing)
2080 {
2081         int i, modes = 0;
2082         struct drm_display_mode *newmode;
2083         struct drm_device *dev = connector->dev;
2084
2085         for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
2086                 const struct minimode *m = &extra_modes[i];
2087                 newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
2088                 if (!newmode)
2089                         return modes;
2090
2091                 fixup_mode_1366x768(newmode);
2092                 if (!mode_in_range(newmode, edid, timing) ||
2093                     !valid_inferred_mode(connector, newmode)) {
2094                         drm_mode_destroy(dev, newmode);
2095                         continue;
2096                 }
2097
2098                 drm_mode_probed_add(connector, newmode);
2099                 modes++;
2100         }
2101
2102         return modes;
2103 }
2104
2105 static int
2106 drm_cvt_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         bool rb = drm_monitor_supports_rb(edid);
2113
2114         for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
2115                 const struct minimode *m = &extra_modes[i];
2116                 newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
2117                 if (!newmode)
2118                         return modes;
2119
2120                 fixup_mode_1366x768(newmode);
2121                 if (!mode_in_range(newmode, edid, timing) ||
2122                     !valid_inferred_mode(connector, newmode)) {
2123                         drm_mode_destroy(dev, newmode);
2124                         continue;
2125                 }
2126
2127                 drm_mode_probed_add(connector, newmode);
2128                 modes++;
2129         }
2130
2131         return modes;
2132 }
2133
2134 static void
2135 do_inferred_modes(struct detailed_timing *timing, void *c)
2136 {
2137         struct detailed_mode_closure *closure = c;
2138         struct detailed_non_pixel *data = &timing->data.other_data;
2139         struct detailed_data_monitor_range *range = &data->data.range;
2140
2141         if (data->type != EDID_DETAIL_MONITOR_RANGE)
2142                 return;
2143
2144         closure->modes += drm_dmt_modes_for_range(closure->connector,
2145                                                   closure->edid,
2146                                                   timing);
2147         
2148         if (!version_greater(closure->edid, 1, 1))
2149                 return; /* GTF not defined yet */
2150
2151         switch (range->flags) {
2152         case 0x02: /* secondary gtf, XXX could do more */
2153         case 0x00: /* default gtf */
2154                 closure->modes += drm_gtf_modes_for_range(closure->connector,
2155                                                           closure->edid,
2156                                                           timing);
2157                 break;
2158         case 0x04: /* cvt, only in 1.4+ */
2159                 if (!version_greater(closure->edid, 1, 3))
2160                         break;
2161
2162                 closure->modes += drm_cvt_modes_for_range(closure->connector,
2163                                                           closure->edid,
2164                                                           timing);
2165                 break;
2166         case 0x01: /* just the ranges, no formula */
2167         default:
2168                 break;
2169         }
2170 }
2171
2172 static int
2173 add_inferred_modes(struct drm_connector *connector, struct edid *edid)
2174 {
2175         struct detailed_mode_closure closure = {
2176                 .connector = connector,
2177                 .edid = edid,
2178         };
2179
2180         if (version_greater(edid, 1, 0))
2181                 drm_for_each_detailed_block((u8 *)edid, do_inferred_modes,
2182                                             &closure);
2183
2184         return closure.modes;
2185 }
2186
2187 static int
2188 drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
2189 {
2190         int i, j, m, modes = 0;
2191         struct drm_display_mode *mode;
2192         u8 *est = ((u8 *)timing) + 5;
2193
2194         for (i = 0; i < 6; i++) {
2195                 for (j = 7; j >= 0; j--) {
2196                         m = (i * 8) + (7 - j);
2197                         if (m >= ARRAY_SIZE(est3_modes))
2198                                 break;
2199                         if (est[i] & (1 << j)) {
2200                                 mode = drm_mode_find_dmt(connector->dev,
2201                                                          est3_modes[m].w,
2202                                                          est3_modes[m].h,
2203                                                          est3_modes[m].r,
2204                                                          est3_modes[m].rb);
2205                                 if (mode) {
2206                                         drm_mode_probed_add(connector, mode);
2207                                         modes++;
2208                                 }
2209                         }
2210                 }
2211         }
2212
2213         return modes;
2214 }
2215
2216 static void
2217 do_established_modes(struct detailed_timing *timing, void *c)
2218 {
2219         struct detailed_mode_closure *closure = c;
2220         struct detailed_non_pixel *data = &timing->data.other_data;
2221
2222         if (data->type == EDID_DETAIL_EST_TIMINGS)
2223                 closure->modes += drm_est3_modes(closure->connector, timing);
2224 }
2225
2226 /**
2227  * add_established_modes - get est. modes from EDID and add them
2228  * @connector: connector to add mode(s) to
2229  * @edid: EDID block to scan
2230  *
2231  * Each EDID block contains a bitmap of the supported "established modes" list
2232  * (defined above).  Tease them out and add them to the global modes list.
2233  */
2234 static int
2235 add_established_modes(struct drm_connector *connector, struct edid *edid)
2236 {
2237         struct drm_device *dev = connector->dev;
2238         unsigned long est_bits = edid->established_timings.t1 |
2239                 (edid->established_timings.t2 << 8) |
2240                 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
2241         int i, modes = 0;
2242         struct detailed_mode_closure closure = {
2243                 .connector = connector,
2244                 .edid = edid,
2245         };
2246
2247         for (i = 0; i <= EDID_EST_TIMINGS; i++) {
2248                 if (est_bits & (1<<i)) {
2249                         struct drm_display_mode *newmode;
2250                         newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
2251                         if (newmode) {
2252                                 drm_mode_probed_add(connector, newmode);
2253                                 modes++;
2254                         }
2255                 }
2256         }
2257
2258         if (version_greater(edid, 1, 0))
2259                     drm_for_each_detailed_block((u8 *)edid,
2260                                                 do_established_modes, &closure);
2261
2262         return modes + closure.modes;
2263 }
2264
2265 static void
2266 do_standard_modes(struct detailed_timing *timing, void *c)
2267 {
2268         struct detailed_mode_closure *closure = c;
2269         struct detailed_non_pixel *data = &timing->data.other_data;
2270         struct drm_connector *connector = closure->connector;
2271         struct edid *edid = closure->edid;
2272
2273         if (data->type == EDID_DETAIL_STD_MODES) {
2274                 int i;
2275                 for (i = 0; i < 6; i++) {
2276                         struct std_timing *std;
2277                         struct drm_display_mode *newmode;
2278
2279                         std = &data->data.timings[i];
2280                         newmode = drm_mode_std(connector, edid, std);
2281                         if (newmode) {
2282                                 drm_mode_probed_add(connector, newmode);
2283                                 closure->modes++;
2284                         }
2285                 }
2286         }
2287 }
2288
2289 /**
2290  * add_standard_modes - get std. modes from EDID and add them
2291  * @connector: connector to add mode(s) to
2292  * @edid: EDID block to scan
2293  *
2294  * Standard modes can be calculated using the appropriate standard (DMT,
2295  * GTF or CVT. Grab them from @edid and add them to the list.
2296  */
2297 static int
2298 add_standard_modes(struct drm_connector *connector, struct edid *edid)
2299 {
2300         int i, modes = 0;
2301         struct detailed_mode_closure closure = {
2302                 .connector = connector,
2303                 .edid = edid,
2304         };
2305
2306         for (i = 0; i < EDID_STD_TIMINGS; i++) {
2307                 struct drm_display_mode *newmode;
2308
2309                 newmode = drm_mode_std(connector, edid,
2310                                        &edid->standard_timings[i]);
2311                 if (newmode) {
2312                         drm_mode_probed_add(connector, newmode);
2313                         modes++;
2314                 }
2315         }
2316
2317         if (version_greater(edid, 1, 0))
2318                 drm_for_each_detailed_block((u8 *)edid, do_standard_modes,
2319                                             &closure);
2320
2321         /* XXX should also look for standard codes in VTB blocks */
2322
2323         return modes + closure.modes;
2324 }
2325
2326 static int drm_cvt_modes(struct drm_connector *connector,
2327                          struct detailed_timing *timing)
2328 {
2329         int i, j, modes = 0;
2330         struct drm_display_mode *newmode;
2331         struct drm_device *dev = connector->dev;
2332         struct cvt_timing *cvt;
2333         const int rates[] = { 60, 85, 75, 60, 50 };
2334         const u8 empty[3] = { 0, 0, 0 };
2335
2336         for (i = 0; i < 4; i++) {
2337                 int uninitialized_var(width), height;
2338                 cvt = &(timing->data.other_data.data.cvt[i]);
2339
2340                 if (!memcmp(cvt->code, empty, 3))
2341                         continue;
2342
2343                 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
2344                 switch (cvt->code[1] & 0x0c) {
2345                 case 0x00:
2346                         width = height * 4 / 3;
2347                         break;
2348                 case 0x04:
2349                         width = height * 16 / 9;
2350                         break;
2351                 case 0x08:
2352                         width = height * 16 / 10;
2353                         break;
2354                 case 0x0c:
2355                         width = height * 15 / 9;
2356                         break;
2357                 }
2358
2359                 for (j = 1; j < 5; j++) {
2360                         if (cvt->code[2] & (1 << j)) {
2361                                 newmode = drm_cvt_mode(dev, width, height,
2362                                                        rates[j], j == 0,
2363                                                        false, false);
2364                                 if (newmode) {
2365                                         drm_mode_probed_add(connector, newmode);
2366                                         modes++;
2367                                 }
2368                         }
2369                 }
2370         }
2371
2372         return modes;
2373 }
2374
2375 static void
2376 do_cvt_mode(struct detailed_timing *timing, void *c)
2377 {
2378         struct detailed_mode_closure *closure = c;
2379         struct detailed_non_pixel *data = &timing->data.other_data;
2380
2381         if (data->type == EDID_DETAIL_CVT_3BYTE)
2382                 closure->modes += drm_cvt_modes(closure->connector, timing);
2383 }
2384
2385 static int
2386 add_cvt_modes(struct drm_connector *connector, struct edid *edid)
2387 {       
2388         struct detailed_mode_closure closure = {
2389                 .connector = connector,
2390                 .edid = edid,
2391         };
2392
2393         if (version_greater(edid, 1, 2))
2394                 drm_for_each_detailed_block((u8 *)edid, do_cvt_mode, &closure);
2395
2396         /* XXX should also look for CVT codes in VTB blocks */
2397
2398         return closure.modes;
2399 }
2400
2401 static void
2402 do_detailed_mode(struct detailed_timing *timing, void *c)
2403 {
2404         struct detailed_mode_closure *closure = c;
2405         struct drm_display_mode *newmode;
2406
2407         if (timing->pixel_clock) {
2408                 newmode = drm_mode_detailed(closure->connector->dev,
2409                                             closure->edid, timing,
2410                                             closure->quirks);
2411                 if (!newmode)
2412                         return;
2413
2414                 if (closure->preferred)
2415                         newmode->type |= DRM_MODE_TYPE_PREFERRED;
2416
2417                 drm_mode_probed_add(closure->connector, newmode);
2418                 closure->modes++;
2419                 closure->preferred = 0;
2420         }
2421 }
2422
2423 /*
2424  * add_detailed_modes - Add modes from detailed timings
2425  * @connector: attached connector
2426  * @edid: EDID block to scan
2427  * @quirks: quirks to apply
2428  */
2429 static int
2430 add_detailed_modes(struct drm_connector *connector, struct edid *edid,
2431                    u32 quirks)
2432 {
2433         struct detailed_mode_closure closure = {
2434                 .connector = connector,
2435                 .edid = edid,
2436                 .preferred = 1,
2437                 .quirks = quirks,
2438         };
2439
2440         if (closure.preferred && !version_greater(edid, 1, 3))
2441                 closure.preferred =
2442                     (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
2443
2444         drm_for_each_detailed_block((u8 *)edid, do_detailed_mode, &closure);
2445
2446         return closure.modes;
2447 }
2448
2449 #define AUDIO_BLOCK     0x01
2450 #define VIDEO_BLOCK     0x02
2451 #define VENDOR_BLOCK    0x03
2452 #define SPEAKER_BLOCK   0x04
2453 #define VIDEO_CAPABILITY_BLOCK  0x07
2454 #define EDID_BASIC_AUDIO        (1 << 6)
2455 #define EDID_CEA_YCRCB444       (1 << 5)
2456 #define EDID_CEA_YCRCB422       (1 << 4)
2457 #define EDID_CEA_VCDB_QS        (1 << 6)
2458
2459 /*
2460  * Search EDID for CEA extension block.
2461  */
2462 static u8 *drm_find_edid_extension(struct edid *edid, int ext_id)
2463 {
2464         u8 *edid_ext = NULL;
2465         int i;
2466
2467         /* No EDID or EDID extensions */
2468         if (edid == NULL || edid->extensions == 0)
2469                 return NULL;
2470
2471         /* Find CEA extension */
2472         for (i = 0; i < edid->extensions; i++) {
2473                 edid_ext = (u8 *)edid + EDID_LENGTH * (i + 1);
2474                 if (edid_ext[0] == ext_id)
2475                         break;
2476         }
2477
2478         if (i == edid->extensions)
2479                 return NULL;
2480
2481         return edid_ext;
2482 }
2483
2484 static u8 *drm_find_cea_extension(struct edid *edid)
2485 {
2486         return drm_find_edid_extension(edid, CEA_EXT);
2487 }
2488
2489 static u8 *drm_find_displayid_extension(struct edid *edid)
2490 {
2491         return drm_find_edid_extension(edid, DISPLAYID_EXT);
2492 }
2493
2494 /*
2495  * Calculate the alternate clock for the CEA mode
2496  * (60Hz vs. 59.94Hz etc.)
2497  */
2498 static unsigned int
2499 cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
2500 {
2501         unsigned int clock = cea_mode->clock;
2502
2503         if (cea_mode->vrefresh % 6 != 0)
2504                 return clock;
2505
2506         /*
2507          * edid_cea_modes contains the 59.94Hz
2508          * variant for 240 and 480 line modes,
2509          * and the 60Hz variant otherwise.
2510          */
2511         if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
2512                 clock = clock * 1001 / 1000;
2513         else
2514                 clock = DIV_ROUND_UP(clock * 1000, 1001);
2515
2516         return clock;
2517 }
2518
2519 /**
2520  * drm_match_cea_mode - look for a CEA mode matching given mode
2521  * @to_match: display mode
2522  *
2523  * Return: The CEA Video ID (VIC) of the mode or 0 if it isn't a CEA-861
2524  * mode.
2525  */
2526 u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
2527 {
2528         u8 mode;
2529
2530         if (!to_match->clock)
2531                 return 0;
2532
2533         for (mode = 0; mode < ARRAY_SIZE(edid_cea_modes); mode++) {
2534                 const struct drm_display_mode *cea_mode = &edid_cea_modes[mode];
2535                 unsigned int clock1, clock2;
2536
2537                 /* Check both 60Hz and 59.94Hz */
2538                 clock1 = cea_mode->clock;
2539                 clock2 = cea_mode_alternate_clock(cea_mode);
2540
2541                 if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
2542                      KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
2543                     drm_mode_equal_no_clocks_no_stereo(to_match, cea_mode))
2544                         return mode + 1;
2545         }
2546         return 0;
2547 }
2548 EXPORT_SYMBOL(drm_match_cea_mode);
2549
2550 /**
2551  * drm_get_cea_aspect_ratio - get the picture aspect ratio corresponding to
2552  * the input VIC from the CEA mode list
2553  * @video_code: ID given to each of the CEA modes
2554  *
2555  * Returns picture aspect ratio
2556  */
2557 enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
2558 {
2559         /* return picture aspect ratio for video_code - 1 to access the
2560          * right array element
2561         */
2562         return edid_cea_modes[video_code-1].picture_aspect_ratio;
2563 }
2564 EXPORT_SYMBOL(drm_get_cea_aspect_ratio);
2565
2566 /*
2567  * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
2568  * specific block).
2569  *
2570  * It's almost like cea_mode_alternate_clock(), we just need to add an
2571  * exception for the VIC 4 mode (4096x2160@24Hz): no alternate clock for this
2572  * one.
2573  */
2574 static unsigned int
2575 hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
2576 {
2577         if (hdmi_mode->vdisplay == 4096 && hdmi_mode->hdisplay == 2160)
2578                 return hdmi_mode->clock;
2579
2580         return cea_mode_alternate_clock(hdmi_mode);
2581 }
2582
2583 /*
2584  * drm_match_hdmi_mode - look for a HDMI mode matching given mode
2585  * @to_match: display mode
2586  *
2587  * An HDMI mode is one defined in the HDMI vendor specific block.
2588  *
2589  * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
2590  */
2591 static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
2592 {
2593         u8 mode;
2594
2595         if (!to_match->clock)
2596                 return 0;
2597
2598         for (mode = 0; mode < ARRAY_SIZE(edid_4k_modes); mode++) {
2599                 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[mode];
2600                 unsigned int clock1, clock2;
2601
2602                 /* Make sure to also match alternate clocks */
2603                 clock1 = hdmi_mode->clock;
2604                 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
2605
2606                 if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
2607                      KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
2608                     drm_mode_equal_no_clocks_no_stereo(to_match, hdmi_mode))
2609                         return mode + 1;
2610         }
2611         return 0;
2612 }
2613
2614 static int
2615 add_alternate_cea_modes(struct drm_connector *connector, struct edid *edid)
2616 {
2617         struct drm_device *dev = connector->dev;
2618         struct drm_display_mode *mode, *tmp;
2619         LIST_HEAD(list);
2620         int modes = 0;
2621
2622         /* Don't add CEA modes if the CEA extension block is missing */
2623         if (!drm_find_cea_extension(edid))
2624                 return 0;
2625
2626         /*
2627          * Go through all probed modes and create a new mode
2628          * with the alternate clock for certain CEA modes.
2629          */
2630         list_for_each_entry(mode, &connector->probed_modes, head) {
2631                 const struct drm_display_mode *cea_mode = NULL;
2632                 struct drm_display_mode *newmode;
2633                 u8 mode_idx = drm_match_cea_mode(mode) - 1;
2634                 unsigned int clock1, clock2;
2635
2636                 if (mode_idx < ARRAY_SIZE(edid_cea_modes)) {
2637                         cea_mode = &edid_cea_modes[mode_idx];
2638                         clock2 = cea_mode_alternate_clock(cea_mode);
2639                 } else {
2640                         mode_idx = drm_match_hdmi_mode(mode) - 1;
2641                         if (mode_idx < ARRAY_SIZE(edid_4k_modes)) {
2642                                 cea_mode = &edid_4k_modes[mode_idx];
2643                                 clock2 = hdmi_mode_alternate_clock(cea_mode);
2644                         }
2645                 }
2646
2647                 if (!cea_mode)
2648                         continue;
2649
2650                 clock1 = cea_mode->clock;
2651
2652                 if (clock1 == clock2)
2653                         continue;
2654
2655                 if (mode->clock != clock1 && mode->clock != clock2)
2656                         continue;
2657
2658                 newmode = drm_mode_duplicate(dev, cea_mode);
2659                 if (!newmode)
2660                         continue;
2661
2662                 /* Carry over the stereo flags */
2663                 newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
2664
2665                 /*
2666                  * The current mode could be either variant. Make
2667                  * sure to pick the "other" clock for the new mode.
2668                  */
2669                 if (mode->clock != clock1)
2670                         newmode->clock = clock1;
2671                 else
2672                         newmode->clock = clock2;
2673
2674                 list_add_tail(&newmode->head, &list);
2675         }
2676
2677         list_for_each_entry_safe(mode, tmp, &list, head) {
2678                 list_del(&mode->head);
2679                 drm_mode_probed_add(connector, mode);
2680                 modes++;
2681         }
2682
2683         return modes;
2684 }
2685
2686 static struct drm_display_mode *
2687 drm_display_mode_from_vic_index(struct drm_connector *connector,
2688                                 const u8 *video_db, u8 video_len,
2689                                 u8 video_index)
2690 {
2691         struct drm_device *dev = connector->dev;
2692         struct drm_display_mode *newmode;
2693         u8 cea_mode;
2694
2695         if (video_db == NULL || video_index >= video_len)
2696                 return NULL;
2697
2698         /* CEA modes are numbered 1..127 */
2699         cea_mode = (video_db[video_index] & 127) - 1;
2700         if (cea_mode >= ARRAY_SIZE(edid_cea_modes))
2701                 return NULL;
2702
2703         newmode = drm_mode_duplicate(dev, &edid_cea_modes[cea_mode]);
2704         if (!newmode)
2705                 return NULL;
2706
2707         newmode->vrefresh = 0;
2708
2709         return newmode;
2710 }
2711
2712 static int
2713 do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
2714 {
2715         int i, modes = 0;
2716
2717         for (i = 0; i < len; i++) {
2718                 struct drm_display_mode *mode;
2719                 mode = drm_display_mode_from_vic_index(connector, db, len, i);
2720                 if (mode) {
2721                         drm_mode_probed_add(connector, mode);
2722                         modes++;
2723                 }
2724         }
2725
2726         return modes;
2727 }
2728
2729 struct stereo_mandatory_mode {
2730         int width, height, vrefresh;
2731         unsigned int flags;
2732 };
2733
2734 static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
2735         { 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2736         { 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
2737         { 1920, 1080, 50,
2738           DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
2739         { 1920, 1080, 60,
2740           DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
2741         { 1280, 720,  50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2742         { 1280, 720,  50, DRM_MODE_FLAG_3D_FRAME_PACKING },
2743         { 1280, 720,  60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
2744         { 1280, 720,  60, DRM_MODE_FLAG_3D_FRAME_PACKING }
2745 };
2746
2747 static bool
2748 stereo_match_mandatory(const struct drm_display_mode *mode,
2749                        const struct stereo_mandatory_mode *stereo_mode)
2750 {
2751         unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
2752
2753         return mode->hdisplay == stereo_mode->width &&
2754                mode->vdisplay == stereo_mode->height &&
2755                interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
2756                drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
2757 }
2758
2759 static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
2760 {
2761         struct drm_device *dev = connector->dev;
2762         const struct drm_display_mode *mode;
2763         struct list_head stereo_modes;
2764         int modes = 0, i;
2765
2766         INIT_LIST_HEAD(&stereo_modes);
2767
2768         list_for_each_entry(mode, &connector->probed_modes, head) {
2769                 for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
2770                         const struct stereo_mandatory_mode *mandatory;
2771                         struct drm_display_mode *new_mode;
2772
2773                         if (!stereo_match_mandatory(mode,
2774                                                     &stereo_mandatory_modes[i]))
2775                                 continue;
2776
2777                         mandatory = &stereo_mandatory_modes[i];
2778                         new_mode = drm_mode_duplicate(dev, mode);
2779                         if (!new_mode)
2780                                 continue;
2781
2782                         new_mode->flags |= mandatory->flags;
2783                         list_add_tail(&new_mode->head, &stereo_modes);
2784                         modes++;
2785                 }
2786         }
2787
2788         list_splice_tail(&stereo_modes, &connector->probed_modes);
2789
2790         return modes;
2791 }
2792
2793 static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
2794 {
2795         struct drm_device *dev = connector->dev;
2796         struct drm_display_mode *newmode;
2797
2798         vic--; /* VICs start at 1 */
2799         if (vic >= ARRAY_SIZE(edid_4k_modes)) {
2800                 DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
2801                 return 0;
2802         }
2803
2804         newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
2805         if (!newmode)
2806                 return 0;
2807
2808         drm_mode_probed_add(connector, newmode);
2809
2810         return 1;
2811 }
2812
2813 static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
2814                                const u8 *video_db, u8 video_len, u8 video_index)
2815 {
2816         struct drm_display_mode *newmode;
2817         int modes = 0;
2818
2819         if (structure & (1 << 0)) {
2820                 newmode = drm_display_mode_from_vic_index(connector, video_db,
2821                                                           video_len,
2822                                                           video_index);
2823                 if (newmode) {
2824                         newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
2825                         drm_mode_probed_add(connector, newmode);
2826                         modes++;
2827                 }
2828         }
2829         if (structure & (1 << 6)) {
2830                 newmode = drm_display_mode_from_vic_index(connector, video_db,
2831                                                           video_len,
2832                                                           video_index);
2833                 if (newmode) {
2834                         newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
2835                         drm_mode_probed_add(connector, newmode);
2836                         modes++;
2837                 }
2838         }
2839         if (structure & (1 << 8)) {
2840                 newmode = drm_display_mode_from_vic_index(connector, video_db,
2841                                                           video_len,
2842                                                           video_index);
2843                 if (newmode) {
2844                         newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
2845                         drm_mode_probed_add(connector, newmode);
2846                         modes++;
2847                 }
2848         }
2849
2850         return modes;
2851 }
2852
2853 /*
2854  * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
2855  * @connector: connector corresponding to the HDMI sink
2856  * @db: start of the CEA vendor specific block
2857  * @len: length of the CEA block payload, ie. one can access up to db[len]
2858  *
2859  * Parses the HDMI VSDB looking for modes to add to @connector. This function
2860  * also adds the stereo 3d modes when applicable.
2861  */
2862 static int
2863 do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
2864                    const u8 *video_db, u8 video_len)
2865 {
2866         int modes = 0, offset = 0, i, multi_present = 0, multi_len;
2867         u8 vic_len, hdmi_3d_len = 0;
2868         u16 mask;
2869         u16 structure_all;
2870
2871         if (len < 8)
2872                 goto out;
2873
2874         /* no HDMI_Video_Present */
2875         if (!(db[8] & (1 << 5)))
2876                 goto out;
2877
2878         /* Latency_Fields_Present */
2879         if (db[8] & (1 << 7))
2880                 offset += 2;
2881
2882         /* I_Latency_Fields_Present */
2883         if (db[8] & (1 << 6))
2884                 offset += 2;
2885
2886         /* the declared length is not long enough for the 2 first bytes
2887          * of additional video format capabilities */
2888         if (len < (8 + offset + 2))
2889                 goto out;
2890
2891         /* 3D_Present */
2892         offset++;
2893         if (db[8 + offset] & (1 << 7)) {
2894                 modes += add_hdmi_mandatory_stereo_modes(connector);
2895
2896                 /* 3D_Multi_present */
2897                 multi_present = (db[8 + offset] & 0x60) >> 5;
2898         }
2899
2900         offset++;
2901         vic_len = db[8 + offset] >> 5;
2902         hdmi_3d_len = db[8 + offset] & 0x1f;
2903
2904         for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
2905                 u8 vic;
2906
2907                 vic = db[9 + offset + i];
2908                 modes += add_hdmi_mode(connector, vic);
2909         }
2910         offset += 1 + vic_len;
2911
2912         if (multi_present == 1)
2913                 multi_len = 2;
2914         else if (multi_present == 2)
2915                 multi_len = 4;
2916         else
2917                 multi_len = 0;
2918
2919         if (len < (8 + offset + hdmi_3d_len - 1))
2920                 goto out;
2921
2922         if (hdmi_3d_len < multi_len)
2923                 goto out;
2924
2925         if (multi_present == 1 || multi_present == 2) {
2926                 /* 3D_Structure_ALL */
2927                 structure_all = (db[8 + offset] << 8) | db[9 + offset];
2928
2929                 /* check if 3D_MASK is present */
2930                 if (multi_present == 2)
2931                         mask = (db[10 + offset] << 8) | db[11 + offset];
2932                 else
2933                         mask = 0xffff;
2934
2935                 for (i = 0; i < 16; i++) {
2936                         if (mask & (1 << i))
2937                                 modes += add_3d_struct_modes(connector,
2938                                                 structure_all,
2939                                                 video_db,
2940                                                 video_len, i);
2941                 }
2942         }
2943
2944         offset += multi_len;
2945
2946         for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
2947                 int vic_index;
2948                 struct drm_display_mode *newmode = NULL;
2949                 unsigned int newflag = 0;
2950                 bool detail_present;
2951
2952                 detail_present = ((db[8 + offset + i] & 0x0f) > 7);
2953
2954                 if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
2955                         break;
2956
2957                 /* 2D_VIC_order_X */
2958                 vic_index = db[8 + offset + i] >> 4;
2959
2960                 /* 3D_Structure_X */
2961                 switch (db[8 + offset + i] & 0x0f) {
2962                 case 0:
2963                         newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
2964                         break;
2965                 case 6:
2966                         newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
2967                         break;
2968                 case 8:
2969                         /* 3D_Detail_X */
2970                         if ((db[9 + offset + i] >> 4) == 1)
2971                                 newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
2972                         break;
2973                 }
2974
2975                 if (newflag != 0) {
2976                         newmode = drm_display_mode_from_vic_index(connector,
2977                                                                   video_db,
2978                                                                   video_len,
2979                                                                   vic_index);
2980
2981                         if (newmode) {
2982                                 newmode->flags |= newflag;
2983                                 drm_mode_probed_add(connector, newmode);
2984                                 modes++;
2985                         }
2986                 }
2987
2988                 if (detail_present)
2989                         i++;
2990         }
2991
2992 out:
2993         return modes;
2994 }
2995
2996 static int
2997 cea_db_payload_len(const u8 *db)
2998 {
2999         return db[0] & 0x1f;
3000 }
3001
3002 static int
3003 cea_db_tag(const u8 *db)
3004 {
3005         return db[0] >> 5;
3006 }
3007
3008 static int
3009 cea_revision(const u8 *cea)
3010 {
3011         return cea[1];
3012 }
3013
3014 static int
3015 cea_db_offsets(const u8 *cea, int *start, int *end)
3016 {
3017         /* Data block offset in CEA extension block */
3018         *start = 4;
3019         *end = cea[2];
3020         if (*end == 0)
3021                 *end = 127;
3022         if (*end < 4 || *end > 127)
3023                 return -ERANGE;
3024         return 0;
3025 }
3026
3027 static bool cea_db_is_hdmi_vsdb(const u8 *db)
3028 {
3029         int hdmi_id;
3030
3031         if (cea_db_tag(db) != VENDOR_BLOCK)
3032                 return false;
3033
3034         if (cea_db_payload_len(db) < 5)
3035                 return false;
3036
3037         hdmi_id = db[1] | (db[2] << 8) | (db[3] << 16);
3038
3039         return hdmi_id == HDMI_IEEE_OUI;
3040 }
3041
3042 #define for_each_cea_db(cea, i, start, end) \
3043         for ((i) = (start); (i) < (end) && (i) + cea_db_payload_len(&(cea)[(i)]) < (end); (i) += cea_db_payload_len(&(cea)[(i)]) + 1)
3044
3045 static int
3046 add_cea_modes(struct drm_connector *connector, struct edid *edid)
3047 {
3048         const u8 *cea = drm_find_cea_extension(edid);
3049         const u8 *db, *hdmi = NULL, *video = NULL;
3050         u8 dbl, hdmi_len, video_len = 0;
3051         int modes = 0;
3052
3053         if (cea && cea_revision(cea) >= 3) {
3054                 int i, start, end;
3055
3056                 if (cea_db_offsets(cea, &start, &end))
3057                         return 0;
3058
3059                 for_each_cea_db(cea, i, start, end) {
3060                         db = &cea[i];
3061                         dbl = cea_db_payload_len(db);
3062
3063                         if (cea_db_tag(db) == VIDEO_BLOCK) {
3064                                 video = db + 1;
3065                                 video_len = dbl;
3066                                 modes += do_cea_modes(connector, video, dbl);
3067                         }
3068                         else if (cea_db_is_hdmi_vsdb(db)) {
3069                                 hdmi = db;
3070                                 hdmi_len = dbl;
3071                         }
3072                 }
3073         }
3074
3075         /*
3076          * We parse the HDMI VSDB after having added the cea modes as we will
3077          * be patching their flags when the sink supports stereo 3D.
3078          */
3079         if (hdmi)
3080                 modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len, video,
3081                                             video_len);
3082
3083         return modes;
3084 }
3085
3086 static void
3087 parse_hdmi_vsdb(struct drm_connector *connector, const u8 *db)
3088 {
3089         u8 len = cea_db_payload_len(db);
3090
3091         if (len >= 6) {
3092                 connector->eld[5] |= (db[6] >> 7) << 1;  /* Supports_AI */
3093                 connector->dvi_dual = db[6] & 1;
3094         }
3095         if (len >= 7)
3096                 connector->max_tmds_clock = db[7] * 5;
3097         if (len >= 8) {
3098                 connector->latency_present[0] = db[8] >> 7;
3099                 connector->latency_present[1] = (db[8] >> 6) & 1;
3100         }
3101         if (len >= 9)
3102                 connector->video_latency[0] = db[9];
3103         if (len >= 10)
3104                 connector->audio_latency[0] = db[10];
3105         if (len >= 11)
3106                 connector->video_latency[1] = db[11];
3107         if (len >= 12)
3108                 connector->audio_latency[1] = db[12];
3109
3110         DRM_DEBUG_KMS("HDMI: DVI dual %d, "
3111                     "max TMDS clock %d, "
3112                     "latency present %d %d, "
3113                     "video latency %d %d, "
3114                     "audio latency %d %d\n",
3115                     connector->dvi_dual,
3116                     connector->max_tmds_clock,
3117               (int) connector->latency_present[0],
3118               (int) connector->latency_present[1],
3119                     connector->video_latency[0],
3120                     connector->video_latency[1],
3121                     connector->audio_latency[0],
3122                     connector->audio_latency[1]);
3123 }
3124
3125 static void
3126 monitor_name(struct detailed_timing *t, void *data)
3127 {
3128         if (t->data.other_data.type == EDID_DETAIL_MONITOR_NAME)
3129                 *(u8 **)data = t->data.other_data.data.str.str;
3130 }
3131
3132 /**
3133  * drm_edid_to_eld - build ELD from EDID
3134  * @connector: connector corresponding to the HDMI/DP sink
3135  * @edid: EDID to parse
3136  *
3137  * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
3138  * Conn_Type, HDCP and Port_ID ELD fields are left for the graphics driver to
3139  * fill in.
3140  */
3141 void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid)
3142 {
3143         uint8_t *eld = connector->eld;
3144         u8 *cea;
3145         u8 *name;
3146         u8 *db;
3147         int sad_count = 0;
3148         int mnl;
3149         int dbl;
3150
3151         memset(eld, 0, sizeof(connector->eld));
3152
3153         cea = drm_find_cea_extension(edid);
3154         if (!cea) {
3155                 DRM_DEBUG_KMS("ELD: no CEA Extension found\n");
3156                 return;
3157         }
3158
3159         name = NULL;
3160         drm_for_each_detailed_block((u8 *)edid, monitor_name, &name);
3161         for (mnl = 0; name && mnl < 13; mnl++) {
3162                 if (name[mnl] == 0x0a)
3163                         break;
3164                 eld[20 + mnl] = name[mnl];
3165         }
3166         eld[4] = (cea[1] << 5) | mnl;
3167         DRM_DEBUG_KMS("ELD monitor %s\n", eld + 20);
3168
3169         eld[0] = 2 << 3;                /* ELD version: 2 */
3170
3171         eld[16] = edid->mfg_id[0];
3172         eld[17] = edid->mfg_id[1];
3173         eld[18] = edid->prod_code[0];
3174         eld[19] = edid->prod_code[1];
3175
3176         if (cea_revision(cea) >= 3) {
3177                 int i, start, end;
3178
3179                 if (cea_db_offsets(cea, &start, &end)) {
3180                         start = 0;
3181                         end = 0;
3182                 }
3183
3184                 for_each_cea_db(cea, i, start, end) {
3185                         db = &cea[i];
3186                         dbl = cea_db_payload_len(db);
3187
3188                         switch (cea_db_tag(db)) {
3189                         case AUDIO_BLOCK:
3190                                 /* Audio Data Block, contains SADs */
3191                                 sad_count = dbl / 3;
3192                                 if (dbl >= 1)
3193                                         memcpy(eld + 20 + mnl, &db[1], dbl);
3194                                 break;
3195                         case SPEAKER_BLOCK:
3196                                 /* Speaker Allocation Data Block */
3197                                 if (dbl >= 1)
3198                                         eld[7] = db[1];
3199                                 break;
3200                         case VENDOR_BLOCK:
3201                                 /* HDMI Vendor-Specific Data Block */
3202                                 if (cea_db_is_hdmi_vsdb(db))
3203                                         parse_hdmi_vsdb(connector, db);
3204                                 break;
3205                         default:
3206                                 break;
3207                         }
3208                 }
3209         }
3210         eld[5] |= sad_count << 4;
3211
3212         eld[DRM_ELD_BASELINE_ELD_LEN] =
3213                 DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
3214
3215         DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
3216                       drm_eld_size(eld), sad_count);
3217 }
3218 EXPORT_SYMBOL(drm_edid_to_eld);
3219
3220 /**
3221  * drm_edid_to_sad - extracts SADs from EDID
3222  * @edid: EDID to parse
3223  * @sads: pointer that will be set to the extracted SADs
3224  *
3225  * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
3226  *
3227  * Note: The returned pointer needs to be freed using kfree().
3228  *
3229  * Return: The number of found SADs or negative number on error.
3230  */
3231 int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads)
3232 {
3233         int count = 0;
3234         int i, start, end, dbl;
3235         u8 *cea;
3236
3237         cea = drm_find_cea_extension(edid);
3238         if (!cea) {
3239                 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
3240                 return -ENOENT;
3241         }
3242
3243         if (cea_revision(cea) < 3) {
3244                 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
3245                 return -ENOTSUPP;
3246         }
3247
3248         if (cea_db_offsets(cea, &start, &end)) {
3249                 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
3250                 return -EPROTO;
3251         }
3252
3253         for_each_cea_db(cea, i, start, end) {
3254                 u8 *db = &cea[i];
3255
3256                 if (cea_db_tag(db) == AUDIO_BLOCK) {
3257                         int j;
3258                         dbl = cea_db_payload_len(db);
3259
3260                         count = dbl / 3; /* SAD is 3B */
3261                         *sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
3262                         if (!*sads)
3263                                 return -ENOMEM;
3264                         for (j = 0; j < count; j++) {
3265                                 u8 *sad = &db[1 + j * 3];
3266
3267                                 (*sads)[j].format = (sad[0] & 0x78) >> 3;
3268                                 (*sads)[j].channels = sad[0] & 0x7;
3269                                 (*sads)[j].freq = sad[1] & 0x7F;
3270                                 (*sads)[j].byte2 = sad[2];
3271                         }
3272                         break;
3273                 }
3274         }
3275
3276         return count;
3277 }
3278 EXPORT_SYMBOL(drm_edid_to_sad);
3279
3280 /**
3281  * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
3282  * @edid: EDID to parse
3283  * @sadb: pointer to the speaker block
3284  *
3285  * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
3286  *
3287  * Note: The returned pointer needs to be freed using kfree().
3288  *
3289  * Return: The number of found Speaker Allocation Blocks or negative number on
3290  * error.
3291  */
3292 int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
3293 {
3294         int count = 0;
3295         int i, start, end, dbl;
3296         const u8 *cea;
3297
3298         cea = drm_find_cea_extension(edid);
3299         if (!cea) {
3300                 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
3301                 return -ENOENT;
3302         }
3303
3304         if (cea_revision(cea) < 3) {
3305                 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
3306                 return -ENOTSUPP;
3307         }
3308
3309         if (cea_db_offsets(cea, &start, &end)) {
3310                 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
3311                 return -EPROTO;
3312         }
3313
3314         for_each_cea_db(cea, i, start, end) {
3315                 const u8 *db = &cea[i];
3316
3317                 if (cea_db_tag(db) == SPEAKER_BLOCK) {
3318                         dbl = cea_db_payload_len(db);
3319
3320                         /* Speaker Allocation Data Block */
3321                         if (dbl == 3) {
3322                                 *sadb = kmemdup(&db[1], dbl, GFP_KERNEL);
3323                                 if (!*sadb)
3324                                         return -ENOMEM;
3325                                 count = dbl;
3326                                 break;
3327                         }
3328                 }
3329         }
3330
3331         return count;
3332 }
3333 EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
3334
3335 /**
3336  * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
3337  * @connector: connector associated with the HDMI/DP sink
3338  * @mode: the display mode
3339  *
3340  * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
3341  * the sink doesn't support audio or video.
3342  */
3343 int drm_av_sync_delay(struct drm_connector *connector,
3344                       struct drm_display_mode *mode)
3345 {
3346         int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
3347         int a, v;
3348
3349         if (!connector->latency_present[0])
3350                 return 0;
3351         if (!connector->latency_present[1])
3352                 i = 0;
3353
3354         a = connector->audio_latency[i];
3355         v = connector->video_latency[i];
3356
3357         /*
3358          * HDMI/DP sink doesn't support audio or video?
3359          */
3360         if (a == 255 || v == 255)
3361                 return 0;
3362
3363         /*
3364          * Convert raw EDID values to millisecond.
3365          * Treat unknown latency as 0ms.
3366          */
3367         if (a)
3368                 a = min(2 * (a - 1), 500);
3369         if (v)
3370                 v = min(2 * (v - 1), 500);
3371
3372         return max(v - a, 0);
3373 }
3374 EXPORT_SYMBOL(drm_av_sync_delay);
3375
3376 /**
3377  * drm_select_eld - select one ELD from multiple HDMI/DP sinks
3378  * @encoder: the encoder just changed display mode
3379  * @mode: the adjusted display mode
3380  *
3381  * It's possible for one encoder to be associated with multiple HDMI/DP sinks.
3382  * The policy is now hard coded to simply use the first HDMI/DP sink's ELD.
3383  *
3384  * Return: The connector associated with the first HDMI/DP sink that has ELD
3385  * attached to it.
3386  */
3387 struct drm_connector *drm_select_eld(struct drm_encoder *encoder,
3388                                      struct drm_display_mode *mode)
3389 {
3390         struct drm_connector *connector;
3391         struct drm_device *dev = encoder->dev;
3392
3393         WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
3394         WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
3395
3396         list_for_each_entry(connector, &dev->mode_config.connector_list, head)
3397                 if (connector->encoder == encoder && connector->eld[0])
3398                         return connector;
3399
3400         return NULL;
3401 }
3402 EXPORT_SYMBOL(drm_select_eld);
3403
3404 /**
3405  * drm_detect_hdmi_monitor - detect whether monitor is HDMI
3406  * @edid: monitor EDID information
3407  *
3408  * Parse the CEA extension according to CEA-861-B.
3409  *
3410  * Return: True if the monitor is HDMI, false if not or unknown.
3411  */
3412 bool drm_detect_hdmi_monitor(struct edid *edid)
3413 {
3414         u8 *edid_ext;
3415         int i;
3416         int start_offset, end_offset;
3417
3418         edid_ext = drm_find_cea_extension(edid);
3419         if (!edid_ext)
3420                 return false;
3421
3422         if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
3423                 return false;
3424
3425         /*
3426          * Because HDMI identifier is in Vendor Specific Block,
3427          * search it from all data blocks of CEA extension.
3428          */
3429         for_each_cea_db(edid_ext, i, start_offset, end_offset) {
3430                 if (cea_db_is_hdmi_vsdb(&edid_ext[i]))
3431                         return true;
3432         }
3433
3434         return false;
3435 }
3436 EXPORT_SYMBOL(drm_detect_hdmi_monitor);
3437
3438 /**
3439  * drm_detect_monitor_audio - check monitor audio capability
3440  * @edid: EDID block to scan
3441  *
3442  * Monitor should have CEA extension block.
3443  * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
3444  * audio' only. If there is any audio extension block and supported
3445  * audio format, assume at least 'basic audio' support, even if 'basic
3446  * audio' is not defined in EDID.
3447  *
3448  * Return: True if the monitor supports audio, false otherwise.
3449  */
3450 bool drm_detect_monitor_audio(struct edid *edid)
3451 {
3452         u8 *edid_ext;
3453         int i, j;
3454         bool has_audio = false;
3455         int start_offset, end_offset;
3456
3457         edid_ext = drm_find_cea_extension(edid);
3458         if (!edid_ext)
3459                 goto end;
3460
3461         has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0);
3462
3463         if (has_audio) {
3464                 DRM_DEBUG_KMS("Monitor has basic audio support\n");
3465                 goto end;
3466         }
3467
3468         if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
3469                 goto end;
3470
3471         for_each_cea_db(edid_ext, i, start_offset, end_offset) {
3472                 if (cea_db_tag(&edid_ext[i]) == AUDIO_BLOCK) {
3473                         has_audio = true;
3474                         for (j = 1; j < cea_db_payload_len(&edid_ext[i]) + 1; j += 3)
3475                                 DRM_DEBUG_KMS("CEA audio format %d\n",
3476                                               (edid_ext[i + j] >> 3) & 0xf);
3477                         goto end;
3478                 }
3479         }
3480 end:
3481         return has_audio;
3482 }
3483 EXPORT_SYMBOL(drm_detect_monitor_audio);
3484
3485 /**
3486  * drm_rgb_quant_range_selectable - is RGB quantization range selectable?
3487  * @edid: EDID block to scan
3488  *
3489  * Check whether the monitor reports the RGB quantization range selection
3490  * as supported. The AVI infoframe can then be used to inform the monitor
3491  * which quantization range (full or limited) is used.
3492  *
3493  * Return: True if the RGB quantization range is selectable, false otherwise.
3494  */
3495 bool drm_rgb_quant_range_selectable(struct edid *edid)
3496 {
3497         u8 *edid_ext;
3498         int i, start, end;
3499
3500         edid_ext = drm_find_cea_extension(edid);
3501         if (!edid_ext)
3502                 return false;
3503
3504         if (cea_db_offsets(edid_ext, &start, &end))
3505                 return false;
3506
3507         for_each_cea_db(edid_ext, i, start, end) {
3508                 if (cea_db_tag(&edid_ext[i]) == VIDEO_CAPABILITY_BLOCK &&
3509                     cea_db_payload_len(&edid_ext[i]) == 2) {
3510                         DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", edid_ext[i + 2]);
3511                         return edid_ext[i + 2] & EDID_CEA_VCDB_QS;
3512                 }
3513         }
3514
3515         return false;
3516 }
3517 EXPORT_SYMBOL(drm_rgb_quant_range_selectable);
3518
3519 /**
3520  * drm_assign_hdmi_deep_color_info - detect whether monitor supports
3521  * hdmi deep color modes and update drm_display_info if so.
3522  * @edid: monitor EDID information
3523  * @info: Updated with maximum supported deep color bpc and color format
3524  *        if deep color supported.
3525  * @connector: DRM connector, used only for debug output
3526  *
3527  * Parse the CEA extension according to CEA-861-B.
3528  * Return true if HDMI deep color supported, false if not or unknown.
3529  */
3530 static bool drm_assign_hdmi_deep_color_info(struct edid *edid,
3531                                             struct drm_display_info *info,
3532                                             struct drm_connector *connector)
3533 {
3534         u8 *edid_ext, *hdmi;
3535         int i;
3536         int start_offset, end_offset;
3537         unsigned int dc_bpc = 0;
3538
3539         edid_ext = drm_find_cea_extension(edid);
3540         if (!edid_ext)
3541                 return false;
3542
3543         if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
3544                 return false;
3545
3546         /*
3547          * Because HDMI identifier is in Vendor Specific Block,
3548          * search it from all data blocks of CEA extension.
3549          */
3550         for_each_cea_db(edid_ext, i, start_offset, end_offset) {
3551                 if (cea_db_is_hdmi_vsdb(&edid_ext[i])) {
3552                         /* HDMI supports at least 8 bpc */
3553                         info->bpc = 8;
3554
3555                         hdmi = &edid_ext[i];
3556                         if (cea_db_payload_len(hdmi) < 6)
3557                                 return false;
3558
3559                         if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
3560                                 dc_bpc = 10;
3561                                 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_30;
3562                                 DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
3563                                                   connector->name);
3564                         }
3565
3566                         if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
3567                                 dc_bpc = 12;
3568                                 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_36;
3569                                 DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
3570                                                   connector->name);
3571                         }
3572
3573                         if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
3574                                 dc_bpc = 16;
3575                                 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_48;
3576                                 DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
3577                                                   connector->name);
3578                         }
3579
3580                         if (dc_bpc > 0) {
3581                                 DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
3582                                                   connector->name, dc_bpc);
3583                                 info->bpc = dc_bpc;
3584
3585                                 /*
3586                                  * Deep color support mandates RGB444 support for all video
3587                                  * modes and forbids YCRCB422 support for all video modes per
3588                                  * HDMI 1.3 spec.
3589                                  */
3590                                 info->color_formats = DRM_COLOR_FORMAT_RGB444;
3591
3592                                 /* YCRCB444 is optional according to spec. */
3593                                 if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
3594                                         info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3595                                         DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
3596                                                           connector->name);
3597                                 }
3598
3599                                 /*
3600                                  * Spec says that if any deep color mode is supported at all,
3601                                  * then deep color 36 bit must be supported.
3602                                  */
3603                                 if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
3604                                         DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
3605                                                           connector->name);
3606                                 }
3607
3608                                 return true;
3609                         }
3610                         else {
3611                                 DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
3612                                                   connector->name);
3613                         }
3614                 }
3615         }
3616
3617         return false;
3618 }
3619
3620 /**
3621  * drm_add_display_info - pull display info out if present
3622  * @edid: EDID data
3623  * @info: display info (attached to connector)
3624  * @connector: connector whose edid is used to build display info
3625  *
3626  * Grab any available display info and stuff it into the drm_display_info
3627  * structure that's part of the connector.  Useful for tracking bpp and
3628  * color spaces.
3629  */
3630 static void drm_add_display_info(struct edid *edid,
3631                                  struct drm_display_info *info,
3632                                  struct drm_connector *connector)
3633 {
3634         u8 *edid_ext;
3635
3636         info->width_mm = edid->width_cm * 10;
3637         info->height_mm = edid->height_cm * 10;
3638
3639         /* driver figures it out in this case */
3640         info->bpc = 0;
3641         info->color_formats = 0;
3642
3643         if (edid->revision < 3)
3644                 return;
3645
3646         if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
3647                 return;
3648
3649         /* Get data from CEA blocks if present */
3650         edid_ext = drm_find_cea_extension(edid);
3651         if (edid_ext) {
3652                 info->cea_rev = edid_ext[1];
3653
3654                 /* The existence of a CEA block should imply RGB support */
3655                 info->color_formats = DRM_COLOR_FORMAT_RGB444;
3656                 if (edid_ext[3] & EDID_CEA_YCRCB444)
3657                         info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3658                 if (edid_ext[3] & EDID_CEA_YCRCB422)
3659                         info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
3660         }
3661
3662         /* HDMI deep color modes supported? Assign to info, if so */
3663         drm_assign_hdmi_deep_color_info(edid, info, connector);
3664
3665         /* Only defined for 1.4 with digital displays */
3666         if (edid->revision < 4)
3667                 return;
3668
3669         switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
3670         case DRM_EDID_DIGITAL_DEPTH_6:
3671                 info->bpc = 6;
3672                 break;
3673         case DRM_EDID_DIGITAL_DEPTH_8:
3674                 info->bpc = 8;
3675                 break;
3676         case DRM_EDID_DIGITAL_DEPTH_10:
3677                 info->bpc = 10;
3678                 break;
3679         case DRM_EDID_DIGITAL_DEPTH_12:
3680                 info->bpc = 12;
3681                 break;
3682         case DRM_EDID_DIGITAL_DEPTH_14:
3683                 info->bpc = 14;
3684                 break;
3685         case DRM_EDID_DIGITAL_DEPTH_16:
3686                 info->bpc = 16;
3687                 break;
3688         case DRM_EDID_DIGITAL_DEPTH_UNDEF:
3689         default:
3690                 info->bpc = 0;
3691                 break;
3692         }
3693
3694         DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
3695                           connector->name, info->bpc);
3696
3697         info->color_formats |= DRM_COLOR_FORMAT_RGB444;
3698         if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
3699                 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
3700         if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
3701                 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
3702 }
3703
3704 /**
3705  * drm_add_edid_modes - add modes from EDID data, if available
3706  * @connector: connector we're probing
3707  * @edid: EDID data
3708  *
3709  * Add the specified modes to the connector's mode list.
3710  *
3711  * Return: The number of modes added or 0 if we couldn't find any.
3712  */
3713 int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
3714 {
3715         int num_modes = 0;
3716         u32 quirks;
3717
3718         if (edid == NULL) {
3719                 return 0;
3720         }
3721         if (!drm_edid_is_valid(edid)) {
3722                 dev_warn(connector->dev->dev, "%s: EDID invalid.\n",
3723                          connector->name);
3724                 return 0;
3725         }
3726
3727         quirks = edid_get_quirks(edid);
3728
3729         /*
3730          * EDID spec says modes should be preferred in this order:
3731          * - preferred detailed mode
3732          * - other detailed modes from base block
3733          * - detailed modes from extension blocks
3734          * - CVT 3-byte code modes
3735          * - standard timing codes
3736          * - established timing codes
3737          * - modes inferred from GTF or CVT range information
3738          *
3739          * We get this pretty much right.
3740          *
3741          * XXX order for additional mode types in extension blocks?
3742          */
3743         num_modes += add_detailed_modes(connector, edid, quirks);
3744         num_modes += add_cvt_modes(connector, edid);
3745         num_modes += add_standard_modes(connector, edid);
3746         num_modes += add_established_modes(connector, edid);
3747         if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
3748                 num_modes += add_inferred_modes(connector, edid);
3749         num_modes += add_cea_modes(connector, edid);
3750         num_modes += add_alternate_cea_modes(connector, edid);
3751
3752         if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
3753                 edid_fixup_preferred(connector, quirks);
3754
3755         drm_add_display_info(edid, &connector->display_info, connector);
3756
3757         if (quirks & EDID_QUIRK_FORCE_8BPC)
3758                 connector->display_info.bpc = 8;
3759
3760         if (quirks & EDID_QUIRK_FORCE_12BPC)
3761                 connector->display_info.bpc = 12;
3762
3763         return num_modes;
3764 }
3765 EXPORT_SYMBOL(drm_add_edid_modes);
3766
3767 /**
3768  * drm_add_modes_noedid - add modes for the connectors without EDID
3769  * @connector: connector we're probing
3770  * @hdisplay: the horizontal display limit
3771  * @vdisplay: the vertical display limit
3772  *
3773  * Add the specified modes to the connector's mode list. Only when the
3774  * hdisplay/vdisplay is not beyond the given limit, it will be added.
3775  *
3776  * Return: The number of modes added or 0 if we couldn't find any.
3777  */
3778 int drm_add_modes_noedid(struct drm_connector *connector,
3779                         int hdisplay, int vdisplay)
3780 {
3781         int i, count, num_modes = 0;
3782         struct drm_display_mode *mode;
3783         struct drm_device *dev = connector->dev;
3784
3785         count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
3786         if (hdisplay < 0)
3787                 hdisplay = 0;
3788         if (vdisplay < 0)
3789                 vdisplay = 0;
3790
3791         for (i = 0; i < count; i++) {
3792                 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
3793                 if (hdisplay && vdisplay) {
3794                         /*
3795                          * Only when two are valid, they will be used to check
3796                          * whether the mode should be added to the mode list of
3797                          * the connector.
3798                          */
3799                         if (ptr->hdisplay > hdisplay ||
3800                                         ptr->vdisplay > vdisplay)
3801                                 continue;
3802                 }
3803                 if (drm_mode_vrefresh(ptr) > 61)
3804                         continue;
3805                 mode = drm_mode_duplicate(dev, ptr);
3806                 if (mode) {
3807                         drm_mode_probed_add(connector, mode);
3808                         num_modes++;
3809                 }
3810         }
3811         return num_modes;
3812 }
3813 EXPORT_SYMBOL(drm_add_modes_noedid);
3814
3815 /**
3816  * drm_set_preferred_mode - Sets the preferred mode of a connector
3817  * @connector: connector whose mode list should be processed
3818  * @hpref: horizontal resolution of preferred mode
3819  * @vpref: vertical resolution of preferred mode
3820  *
3821  * Marks a mode as preferred if it matches the resolution specified by @hpref
3822  * and @vpref.
3823  */
3824 void drm_set_preferred_mode(struct drm_connector *connector,
3825                            int hpref, int vpref)
3826 {
3827         struct drm_display_mode *mode;
3828
3829         list_for_each_entry(mode, &connector->probed_modes, head) {
3830                 if (mode->hdisplay == hpref &&
3831                     mode->vdisplay == vpref)
3832                         mode->type |= DRM_MODE_TYPE_PREFERRED;
3833         }
3834 }
3835 EXPORT_SYMBOL(drm_set_preferred_mode);
3836
3837 /**
3838  * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
3839  *                                              data from a DRM display mode
3840  * @frame: HDMI AVI infoframe
3841  * @mode: DRM display mode
3842  *
3843  * Return: 0 on success or a negative error code on failure.
3844  */
3845 int
3846 drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
3847                                          const struct drm_display_mode *mode)
3848 {
3849         int err;
3850
3851         if (!frame || !mode)
3852                 return -EINVAL;
3853
3854         err = hdmi_avi_infoframe_init(frame);
3855         if (err < 0)
3856                 return err;
3857
3858         if (mode->flags & DRM_MODE_FLAG_DBLCLK)
3859                 frame->pixel_repeat = 1;
3860
3861         frame->video_code = drm_match_cea_mode(mode);
3862
3863         frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
3864
3865         /*
3866          * Populate picture aspect ratio from either
3867          * user input (if specified) or from the CEA mode list.
3868          */
3869         if (mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_4_3 ||
3870                 mode->picture_aspect_ratio == HDMI_PICTURE_ASPECT_16_9)
3871                 frame->picture_aspect = mode->picture_aspect_ratio;
3872         else if (frame->video_code > 0)
3873                 frame->picture_aspect = drm_get_cea_aspect_ratio(
3874                                                 frame->video_code);
3875
3876         frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
3877         frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
3878
3879         return 0;
3880 }
3881 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
3882
3883 static enum hdmi_3d_structure
3884 s3d_structure_from_display_mode(const struct drm_display_mode *mode)
3885 {
3886         u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
3887
3888         switch (layout) {
3889         case DRM_MODE_FLAG_3D_FRAME_PACKING:
3890                 return HDMI_3D_STRUCTURE_FRAME_PACKING;
3891         case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
3892                 return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
3893         case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
3894                 return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
3895         case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
3896                 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
3897         case DRM_MODE_FLAG_3D_L_DEPTH:
3898                 return HDMI_3D_STRUCTURE_L_DEPTH;
3899         case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
3900                 return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
3901         case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
3902                 return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
3903         case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
3904                 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
3905         default:
3906                 return HDMI_3D_STRUCTURE_INVALID;
3907         }
3908 }
3909
3910 /**
3911  * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
3912  * data from a DRM display mode
3913  * @frame: HDMI vendor infoframe
3914  * @mode: DRM display mode
3915  *
3916  * Note that there's is a need to send HDMI vendor infoframes only when using a
3917  * 4k or stereoscopic 3D mode. So when giving any other mode as input this
3918  * function will return -EINVAL, error that can be safely ignored.
3919  *
3920  * Return: 0 on success or a negative error code on failure.
3921  */
3922 int
3923 drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
3924                                             const struct drm_display_mode *mode)
3925 {
3926         int err;
3927         u32 s3d_flags;
3928         u8 vic;
3929
3930         if (!frame || !mode)
3931                 return -EINVAL;
3932
3933         vic = drm_match_hdmi_mode(mode);
3934         s3d_flags = mode->flags & DRM_MODE_FLAG_3D_MASK;
3935
3936         if (!vic && !s3d_flags)
3937                 return -EINVAL;
3938
3939         if (vic && s3d_flags)
3940                 return -EINVAL;
3941
3942         err = hdmi_vendor_infoframe_init(frame);
3943         if (err < 0)
3944                 return err;
3945
3946         if (vic)
3947                 frame->vic = vic;
3948         else
3949                 frame->s3d_struct = s3d_structure_from_display_mode(mode);
3950
3951         return 0;
3952 }
3953 EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
3954
3955 static int drm_parse_display_id(struct drm_connector *connector,
3956                                 u8 *displayid, int length,
3957                                 bool is_edid_extension)
3958 {
3959         /* if this is an EDID extension the first byte will be 0x70 */
3960         int idx = 0;
3961         struct displayid_hdr *base;
3962         struct displayid_block *block;
3963         u8 csum = 0;
3964         int i;
3965
3966         if (is_edid_extension)
3967                 idx = 1;
3968
3969         base = (struct displayid_hdr *)&displayid[idx];
3970
3971         DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n",
3972                       base->rev, base->bytes, base->prod_id, base->ext_count);
3973
3974         if (base->bytes + 5 > length - idx)
3975                 return -EINVAL;
3976
3977         for (i = idx; i <= base->bytes + 5; i++) {
3978                 csum += displayid[i];
3979         }
3980         if (csum) {
3981                 DRM_ERROR("DisplayID checksum invalid, remainder is %d\n", csum);
3982                 return -EINVAL;
3983         }
3984
3985         block = (struct displayid_block *)&displayid[idx + 4];
3986         DRM_DEBUG_KMS("block id %d, rev %d, len %d\n",
3987                       block->tag, block->rev, block->num_bytes);
3988
3989         switch (block->tag) {
3990         case DATA_BLOCK_TILED_DISPLAY: {
3991                 struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
3992
3993                 u16 w, h;
3994                 u8 tile_v_loc, tile_h_loc;
3995                 u8 num_v_tile, num_h_tile;
3996                 struct drm_tile_group *tg;
3997
3998                 w = tile->tile_size[0] | tile->tile_size[1] << 8;
3999                 h = tile->tile_size[2] | tile->tile_size[3] << 8;
4000
4001                 num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
4002                 num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
4003                 tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
4004                 tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
4005
4006                 connector->has_tile = true;
4007                 if (tile->tile_cap & 0x80)
4008                         connector->tile_is_single_monitor = true;
4009
4010                 connector->num_h_tile = num_h_tile + 1;
4011                 connector->num_v_tile = num_v_tile + 1;
4012                 connector->tile_h_loc = tile_h_loc;
4013                 connector->tile_v_loc = tile_v_loc;
4014                 connector->tile_h_size = w + 1;
4015                 connector->tile_v_size = h + 1;
4016
4017                 DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
4018                 DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
4019                 DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
4020                        num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
4021                 DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
4022
4023                 tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
4024                 if (!tg) {
4025                         tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
4026                 }
4027                 if (!tg)
4028                         return -ENOMEM;
4029
4030                 if (connector->tile_group != tg) {
4031                         /* if we haven't got a pointer,
4032                            take the reference, drop ref to old tile group */
4033                         if (connector->tile_group) {
4034                                 drm_mode_put_tile_group(connector->dev, connector->tile_group);
4035                         }
4036                         connector->tile_group = tg;
4037                 } else
4038                         /* if same tile group, then release the ref we just took. */
4039                         drm_mode_put_tile_group(connector->dev, tg);
4040         }
4041                 break;
4042         default:
4043                 printk("unknown displayid tag %d\n", block->tag);
4044                 break;
4045         }
4046         return 0;
4047 }
4048
4049 static void drm_get_displayid(struct drm_connector *connector,
4050                               struct edid *edid)
4051 {
4052         void *displayid = NULL;
4053         int ret;
4054         connector->has_tile = false;
4055         displayid = drm_find_displayid_extension(edid);
4056         if (!displayid) {
4057                 /* drop reference to any tile group we had */
4058                 goto out_drop_ref;
4059         }
4060
4061         ret = drm_parse_display_id(connector, displayid, EDID_LENGTH, true);
4062         if (ret < 0)
4063                 goto out_drop_ref;
4064         if (!connector->has_tile)
4065                 goto out_drop_ref;
4066         return;
4067 out_drop_ref:
4068         if (connector->tile_group) {
4069                 drm_mode_put_tile_group(connector->dev, connector->tile_group);
4070                 connector->tile_group = NULL;
4071         }
4072         return;
4073 }