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