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