blob: d196d7ec99002710aa059ccf82a2bd375e2ae372 [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
2 * Copyright (c) 2006 Luc Verhaegen (quirks list)
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * DDC probing routines (drm_ddc_read & drm_do_probe_ddc_edid) originally from
7 * FB layer.
8 * Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sub license,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice (including the
18 * next paragraph) shall be included in all copies or substantial portions
19 * of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
28 */
29#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Dave Airlief453ba02008-11-07 14:05:41 -080031#include <linux/i2c.h>
32#include <linux/i2c-algo-bit.h>
33#include "drmP.h"
34#include "drm_edid.h"
35
36/*
37 * TODO:
38 * - support EDID 1.4 (incl. CE blocks)
39 */
40
41/*
42 * EDID blocks out in the wild have a variety of bugs, try to collect
43 * them here (note that userspace may work around broken monitors first,
44 * but fixes should make their way here so that the kernel "just works"
45 * on as many displays as possible).
46 */
47
48/* First detailed mode wrong, use largest 60Hz mode */
49#define EDID_QUIRK_PREFER_LARGE_60 (1 << 0)
50/* Reported 135MHz pixel clock is too high, needs adjustment */
51#define EDID_QUIRK_135_CLOCK_TOO_HIGH (1 << 1)
52/* Prefer the largest mode at 75 Hz */
53#define EDID_QUIRK_PREFER_LARGE_75 (1 << 2)
54/* Detail timing is in cm not mm */
55#define EDID_QUIRK_DETAILED_IN_CM (1 << 3)
56/* Detailed timing descriptors have bogus size values, so just take the
57 * maximum size and use that.
58 */
59#define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE (1 << 4)
60/* Monitor forgot to set the first detailed is preferred bit. */
61#define EDID_QUIRK_FIRST_DETAILED_PREFERRED (1 << 5)
62/* use +hsync +vsync for detailed mode */
63#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
Alex Deucher3c537882010-02-05 04:21:19 -050064
Dave Airlief453ba02008-11-07 14:05:41 -080065
Zhao Yakui5c612592009-06-22 13:17:10 +080066#define LEVEL_DMT 0
67#define LEVEL_GTF 1
68#define LEVEL_CVT 2
69
Dave Airlief453ba02008-11-07 14:05:41 -080070static struct edid_quirk {
71 char *vendor;
72 int product_id;
73 u32 quirks;
74} edid_quirk_list[] = {
75 /* Acer AL1706 */
76 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
77 /* Acer F51 */
78 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
79 /* Unknown Acer */
80 { "ACR", 2423, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
81
82 /* Belinea 10 15 55 */
83 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
84 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
85
86 /* Envision Peripherals, Inc. EN-7100e */
87 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
88
89 /* Funai Electronics PM36B */
90 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
91 EDID_QUIRK_DETAILED_IN_CM },
92
93 /* LG Philips LCD LP154W01-A5 */
94 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
95 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
96
97 /* Philips 107p5 CRT */
98 { "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
99
100 /* Proview AY765C */
101 { "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
102
103 /* Samsung SyncMaster 205BW. Note: irony */
104 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
105 /* Samsung SyncMaster 22[5-6]BW */
106 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
107 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
108};
109
110
111/* Valid EDID header has these bytes */
Adam Jackson083ae052009-09-23 17:30:45 -0400112static const u8 edid_header[] = {
113 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
114};
Dave Airlief453ba02008-11-07 14:05:41 -0800115
116/**
Alex Deucher3c537882010-02-05 04:21:19 -0500117 * drm_edid_is_valid - sanity check EDID data
Dave Airlief453ba02008-11-07 14:05:41 -0800118 * @edid: EDID data
119 *
120 * Sanity check the EDID block by looking at the header, the version number
121 * and the checksum. Return 0 if the EDID doesn't check out, or 1 if it's
122 * valid.
123 */
Alex Deucher3c537882010-02-05 04:21:19 -0500124bool drm_edid_is_valid(struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -0800125{
Adam Jackson862b89c2009-11-23 14:23:06 -0500126 int i, score = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800127 u8 csum = 0;
128 u8 *raw_edid = (u8 *)edid;
129
Adam Jackson862b89c2009-11-23 14:23:06 -0500130 for (i = 0; i < sizeof(edid_header); i++)
131 if (raw_edid[i] == edid_header[i])
132 score++;
133
134 if (score == 8) ;
135 else if (score >= 6) {
136 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
137 memcpy(raw_edid, edid_header, sizeof(edid_header));
138 } else
Dave Airlief453ba02008-11-07 14:05:41 -0800139 goto bad;
Dave Airlief453ba02008-11-07 14:05:41 -0800140
141 for (i = 0; i < EDID_LENGTH; i++)
142 csum += raw_edid[i];
143 if (csum) {
144 DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
145 goto bad;
146 }
147
Adam Jackson862b89c2009-11-23 14:23:06 -0500148 if (edid->version != 1) {
149 DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
150 goto bad;
151 }
152
Adam Jackson47ee4cc2009-11-23 14:23:05 -0500153 if (edid->revision > 4)
154 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
155
Dave Airlief453ba02008-11-07 14:05:41 -0800156 return 1;
157
158bad:
159 if (raw_edid) {
160 DRM_ERROR("Raw EDID:\n");
161 print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
162 printk("\n");
163 }
164 return 0;
165}
Alex Deucher3c537882010-02-05 04:21:19 -0500166EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -0800167
168/**
169 * edid_vendor - match a string against EDID's obfuscated vendor field
170 * @edid: EDID to match
171 * @vendor: vendor string
172 *
173 * Returns true if @vendor is in @edid, false otherwise
174 */
175static bool edid_vendor(struct edid *edid, char *vendor)
176{
177 char edid_vendor[3];
178
179 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
180 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
181 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +1000182 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -0800183
184 return !strncmp(edid_vendor, vendor, 3);
185}
186
187/**
188 * edid_get_quirks - return quirk flags for a given EDID
189 * @edid: EDID to process
190 *
191 * This tells subsequent routines what fixes they need to apply.
192 */
193static u32 edid_get_quirks(struct edid *edid)
194{
195 struct edid_quirk *quirk;
196 int i;
197
198 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
199 quirk = &edid_quirk_list[i];
200
201 if (edid_vendor(edid, quirk->vendor) &&
202 (EDID_PRODUCT_ID(edid) == quirk->product_id))
203 return quirk->quirks;
204 }
205
206 return 0;
207}
208
209#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
210#define MODE_REFRESH_DIFF(m,r) (abs((m)->vrefresh - target_refresh))
211
212
213/**
214 * edid_fixup_preferred - set preferred modes based on quirk list
215 * @connector: has mode list to fix up
216 * @quirks: quirks list
217 *
218 * Walk the mode list for @connector, clearing the preferred status
219 * on existing modes and setting it anew for the right mode ala @quirks.
220 */
221static void edid_fixup_preferred(struct drm_connector *connector,
222 u32 quirks)
223{
224 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +1000225 int target_refresh = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800226
227 if (list_empty(&connector->probed_modes))
228 return;
229
230 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
231 target_refresh = 60;
232 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
233 target_refresh = 75;
234
235 preferred_mode = list_first_entry(&connector->probed_modes,
236 struct drm_display_mode, head);
237
238 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
239 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
240
241 if (cur_mode == preferred_mode)
242 continue;
243
244 /* Largest mode is preferred */
245 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
246 preferred_mode = cur_mode;
247
248 /* At a given size, try to get closest to target refresh */
249 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
250 MODE_REFRESH_DIFF(cur_mode, target_refresh) <
251 MODE_REFRESH_DIFF(preferred_mode, target_refresh)) {
252 preferred_mode = cur_mode;
253 }
254 }
255
256 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
257}
258
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800259/*
260 * Add the Autogenerated from the DMT spec.
261 * This table is copied from xfree86/modes/xf86EdidModes.c.
262 * But the mode with Reduced blank feature is deleted.
263 */
264static struct drm_display_mode drm_dmt_modes[] = {
265 /* 640x350@85Hz */
266 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
267 736, 832, 0, 350, 382, 385, 445, 0,
268 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
269 /* 640x400@85Hz */
270 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
271 736, 832, 0, 400, 401, 404, 445, 0,
272 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
273 /* 720x400@85Hz */
274 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
275 828, 936, 0, 400, 401, 404, 446, 0,
276 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
277 /* 640x480@60Hz */
278 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
279 752, 800, 0, 480, 489, 492, 525, 0,
280 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
281 /* 640x480@72Hz */
282 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
283 704, 832, 0, 480, 489, 492, 520, 0,
284 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
285 /* 640x480@75Hz */
286 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
287 720, 840, 0, 480, 481, 484, 500, 0,
288 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
289 /* 640x480@85Hz */
290 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
291 752, 832, 0, 480, 481, 484, 509, 0,
292 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
293 /* 800x600@56Hz */
294 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
295 896, 1024, 0, 600, 601, 603, 625, 0,
296 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
297 /* 800x600@60Hz */
298 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
299 968, 1056, 0, 600, 601, 605, 628, 0,
300 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
301 /* 800x600@72Hz */
302 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
303 976, 1040, 0, 600, 637, 643, 666, 0,
304 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
305 /* 800x600@75Hz */
306 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
307 896, 1056, 0, 600, 601, 604, 625, 0,
308 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
309 /* 800x600@85Hz */
310 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
311 896, 1048, 0, 600, 601, 604, 631, 0,
312 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
313 /* 848x480@60Hz */
314 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
315 976, 1088, 0, 480, 486, 494, 517, 0,
316 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
317 /* 1024x768@43Hz, interlace */
318 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
319 1208, 1264, 0, 768, 768, 772, 817, 0,
320 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
321 DRM_MODE_FLAG_INTERLACE) },
322 /* 1024x768@60Hz */
323 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
324 1184, 1344, 0, 768, 771, 777, 806, 0,
325 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
326 /* 1024x768@70Hz */
327 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
328 1184, 1328, 0, 768, 771, 777, 806, 0,
329 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
330 /* 1024x768@75Hz */
331 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
332 1136, 1312, 0, 768, 769, 772, 800, 0,
333 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
334 /* 1024x768@85Hz */
335 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
336 1072, 1376, 0, 768, 769, 772, 808, 0,
337 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
338 /* 1152x864@75Hz */
339 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
340 1344, 1600, 0, 864, 865, 868, 900, 0,
341 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
342 /* 1280x768@60Hz */
343 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
344 1472, 1664, 0, 768, 771, 778, 798, 0,
345 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
346 /* 1280x768@75Hz */
347 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
348 1488, 1696, 0, 768, 771, 778, 805, 0,
349 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
350 /* 1280x768@85Hz */
351 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
352 1496, 1712, 0, 768, 771, 778, 809, 0,
353 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
354 /* 1280x800@60Hz */
355 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
356 1480, 1680, 0, 800, 803, 809, 831, 0,
357 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
358 /* 1280x800@75Hz */
359 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
360 1488, 1696, 0, 800, 803, 809, 838, 0,
361 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
362 /* 1280x800@85Hz */
363 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
364 1496, 1712, 0, 800, 803, 809, 843, 0,
365 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
366 /* 1280x960@60Hz */
367 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
368 1488, 1800, 0, 960, 961, 964, 1000, 0,
369 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
370 /* 1280x960@85Hz */
371 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
372 1504, 1728, 0, 960, 961, 964, 1011, 0,
373 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
374 /* 1280x1024@60Hz */
375 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
376 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
377 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
378 /* 1280x1024@75Hz */
379 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
380 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
381 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
382 /* 1280x1024@85Hz */
383 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
384 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
385 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
386 /* 1360x768@60Hz */
387 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
388 1536, 1792, 0, 768, 771, 777, 795, 0,
389 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
390 /* 1440x1050@60Hz */
391 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
392 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
393 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
394 /* 1440x1050@75Hz */
395 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
396 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
397 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
398 /* 1440x1050@85Hz */
399 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
400 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
401 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
402 /* 1440x900@60Hz */
403 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
404 1672, 1904, 0, 900, 903, 909, 934, 0,
405 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
406 /* 1440x900@75Hz */
407 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
408 1688, 1936, 0, 900, 903, 909, 942, 0,
409 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
410 /* 1440x900@85Hz */
411 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
412 1696, 1952, 0, 900, 903, 909, 948, 0,
413 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
414 /* 1600x1200@60Hz */
415 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
416 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
417 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
418 /* 1600x1200@65Hz */
419 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
420 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
421 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
422 /* 1600x1200@70Hz */
423 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
424 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
425 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
426 /* 1600x1200@75Hz */
427 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 2025000, 1600, 1664,
428 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
429 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
430 /* 1600x1200@85Hz */
431 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
432 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
433 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
434 /* 1680x1050@60Hz */
435 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
436 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
437 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
438 /* 1680x1050@75Hz */
439 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
440 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
441 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
442 /* 1680x1050@85Hz */
443 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
444 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
445 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
446 /* 1792x1344@60Hz */
447 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
448 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
449 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
450 /* 1729x1344@75Hz */
451 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
452 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
453 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
454 /* 1853x1392@60Hz */
455 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
456 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
457 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
458 /* 1856x1392@75Hz */
459 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
460 2208, 2560, 0, 1392, 1395, 1399, 1500, 0,
461 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
462 /* 1920x1200@60Hz */
463 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
464 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
465 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
466 /* 1920x1200@75Hz */
467 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
468 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
469 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
470 /* 1920x1200@85Hz */
471 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
472 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
473 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
474 /* 1920x1440@60Hz */
475 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
476 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
477 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
478 /* 1920x1440@75Hz */
479 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
480 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
481 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
482 /* 2560x1600@60Hz */
483 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
484 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
485 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
486 /* 2560x1600@75HZ */
487 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
488 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
489 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
490 /* 2560x1600@85HZ */
491 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
492 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
493 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
494};
Adam Jackson07a5e632009-12-03 17:44:38 -0500495static const int drm_num_dmt_modes =
496 sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800497
Zhao Yakui559ee212009-09-03 09:33:47 +0800498static struct drm_display_mode *drm_find_dmt(struct drm_device *dev,
499 int hsize, int vsize, int fresh)
500{
Adam Jackson07a5e632009-12-03 17:44:38 -0500501 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +0800502 struct drm_display_mode *ptr, *mode;
503
Zhao Yakui559ee212009-09-03 09:33:47 +0800504 mode = NULL;
Adam Jackson07a5e632009-12-03 17:44:38 -0500505 for (i = 0; i < drm_num_dmt_modes; i++) {
Zhao Yakui559ee212009-09-03 09:33:47 +0800506 ptr = &drm_dmt_modes[i];
507 if (hsize == ptr->hdisplay &&
508 vsize == ptr->vdisplay &&
509 fresh == drm_mode_vrefresh(ptr)) {
510 /* get the expected default mode */
511 mode = drm_mode_duplicate(dev, ptr);
512 break;
513 }
514 }
515 return mode;
516}
Adam Jackson23425ca2009-09-23 17:30:58 -0400517
518/*
519 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
520 * monitors fill with ascii space (0x20) instead.
521 */
522static int
523bad_std_timing(u8 a, u8 b)
524{
525 return (a == 0x00 && b == 0x00) ||
526 (a == 0x01 && b == 0x01) ||
527 (a == 0x20 && b == 0x20);
528}
529
Dave Airlief453ba02008-11-07 14:05:41 -0800530/**
531 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
532 * @t: standard timing params
Zhao Yakui5c612592009-06-22 13:17:10 +0800533 * @timing_level: standard timing level
Dave Airlief453ba02008-11-07 14:05:41 -0800534 *
535 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +0800536 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -0800537 *
538 * Punts for now, but should eventually use the FB layer's CVT based mode
539 * generation code.
540 */
541struct drm_display_mode *drm_mode_std(struct drm_device *dev,
Zhao Yakui5c612592009-06-22 13:17:10 +0800542 struct std_timing *t,
Adam Jacksonf066a172009-09-23 17:31:21 -0400543 int revision,
Zhao Yakui5c612592009-06-22 13:17:10 +0800544 int timing_level)
Dave Airlief453ba02008-11-07 14:05:41 -0800545{
546 struct drm_display_mode *mode;
Zhao Yakui5c612592009-06-22 13:17:10 +0800547 int hsize, vsize;
548 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200549 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
550 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +0800551 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
552 >> EDID_TIMING_VFREQ_SHIFT;
Dave Airlief453ba02008-11-07 14:05:41 -0800553
Adam Jackson23425ca2009-09-23 17:30:58 -0400554 if (bad_std_timing(t->hsize, t->vfreq_aspect))
555 return NULL;
556
Zhao Yakui5c612592009-06-22 13:17:10 +0800557 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
558 hsize = t->hsize * 8 + 248;
559 /* vrefresh_rate = vfreq + 60 */
560 vrefresh_rate = vfreq + 60;
561 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -0400562 if (aspect_ratio == 0) {
563 if (revision < 3)
564 vsize = hsize;
565 else
566 vsize = (hsize * 10) / 16;
567 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800568 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200569 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -0800570 vsize = (hsize * 4) / 5;
571 else
572 vsize = (hsize * 9) / 16;
Zhao Yakui559ee212009-09-03 09:33:47 +0800573 /* HDTV hack */
574 if (hsize == 1360 && vsize == 765 && vrefresh_rate == 60) {
Dave Airlied50ba252009-09-23 14:44:08 +1000575 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
576 false);
Zhao Yakui559ee212009-09-03 09:33:47 +0800577 mode->hdisplay = 1366;
578 mode->vsync_start = mode->vsync_start - 1;
579 mode->vsync_end = mode->vsync_end - 1;
580 return mode;
581 }
Zhao Yakui5c612592009-06-22 13:17:10 +0800582 mode = NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +0800583 /* check whether it can be found in default mode table */
584 mode = drm_find_dmt(dev, hsize, vsize, vrefresh_rate);
585 if (mode)
586 return mode;
587
Zhao Yakui5c612592009-06-22 13:17:10 +0800588 switch (timing_level) {
589 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +0800590 break;
591 case LEVEL_GTF:
592 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
593 break;
594 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +1000595 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
596 false);
Zhao Yakui5c612592009-06-22 13:17:10 +0800597 break;
598 }
Dave Airlief453ba02008-11-07 14:05:41 -0800599 return mode;
600}
601
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000602/*
603 * EDID is delightfully ambiguous about how interlaced modes are to be
604 * encoded. Our internal representation is of frame height, but some
605 * HDTV detailed timings are encoded as field height.
606 *
607 * The format list here is from CEA, in frame size. Technically we
608 * should be checking refresh rate too. Whatever.
609 */
610static void
611drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
612 struct detailed_pixel_timing *pt)
613{
614 int i;
615 static const struct {
616 int w, h;
617 } cea_interlaced[] = {
618 { 1920, 1080 },
619 { 720, 480 },
620 { 1440, 480 },
621 { 2880, 480 },
622 { 720, 576 },
623 { 1440, 576 },
624 { 2880, 576 },
625 };
626 static const int n_sizes =
627 sizeof(cea_interlaced)/sizeof(cea_interlaced[0]);
628
629 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
630 return;
631
632 for (i = 0; i < n_sizes; i++) {
633 if ((mode->hdisplay == cea_interlaced[i].w) &&
634 (mode->vdisplay == cea_interlaced[i].h / 2)) {
635 mode->vdisplay *= 2;
636 mode->vsync_start *= 2;
637 mode->vsync_end *= 2;
638 mode->vtotal *= 2;
639 mode->vtotal |= 1;
640 }
641 }
642
643 mode->flags |= DRM_MODE_FLAG_INTERLACE;
644}
645
Dave Airlief453ba02008-11-07 14:05:41 -0800646/**
647 * drm_mode_detailed - create a new mode from an EDID detailed timing section
648 * @dev: DRM device (needed to create new mode)
649 * @edid: EDID block
650 * @timing: EDID detailed timing info
651 * @quirks: quirks to apply
652 *
653 * An EDID detailed timing block contains enough info for us to create and
654 * return a new struct drm_display_mode.
655 */
656static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
657 struct edid *edid,
658 struct detailed_timing *timing,
659 u32 quirks)
660{
661 struct drm_display_mode *mode;
662 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200663 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
664 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
665 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
666 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +0200667 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
668 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
669 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4;
670 unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);
Dave Airlief453ba02008-11-07 14:05:41 -0800671
Adam Jacksonfc438962009-06-04 10:20:34 +1000672 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200673 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +1000674 return NULL;
675
Michel Dänzer0454bea2009-06-15 16:56:07 +0200676 if (pt->misc & DRM_EDID_PT_STEREO) {
Dave Airlief453ba02008-11-07 14:05:41 -0800677 printk(KERN_WARNING "stereo mode not supported\n");
678 return NULL;
679 }
Michel Dänzer0454bea2009-06-15 16:56:07 +0200680 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Jerome Glisse79b7dcb2010-01-14 19:02:20 +0100681 printk(KERN_WARNING "composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800682 }
683
Zhao Yakuifcb45612009-10-14 09:11:25 +0800684 /* it is incorrect if hsync/vsync width is zero */
685 if (!hsync_pulse_width || !vsync_pulse_width) {
686 DRM_DEBUG_KMS("Incorrect Detailed timing. "
687 "Wrong Hsync/Vsync pulse width\n");
688 return NULL;
689 }
Dave Airlief453ba02008-11-07 14:05:41 -0800690 mode = drm_mode_create(dev);
691 if (!mode)
692 return NULL;
693
694 mode->type = DRM_MODE_TYPE_DRIVER;
695
696 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200697 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -0800698
Michel Dänzer0454bea2009-06-15 16:56:07 +0200699 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -0800700
Michel Dänzer0454bea2009-06-15 16:56:07 +0200701 mode->hdisplay = hactive;
702 mode->hsync_start = mode->hdisplay + hsync_offset;
703 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
704 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800705
Michel Dänzer0454bea2009-06-15 16:56:07 +0200706 mode->vdisplay = vactive;
707 mode->vsync_start = mode->vdisplay + vsync_offset;
708 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
709 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800710
Zhao Yakuifcb45612009-10-14 09:11:25 +0800711 /* perform the basic check for the detailed timing */
712 if (mode->hsync_end > mode->htotal ||
713 mode->vsync_end > mode->vtotal) {
714 drm_mode_destroy(dev, mode);
715 DRM_DEBUG_KMS("Incorrect detailed timing. "
716 "Sync is beyond the blank.\n");
717 return NULL;
718 }
719
Jesse Barnes7064fef2009-11-05 10:12:54 -0800720 /* Some EDIDs have bogus h/vtotal values */
721 if (mode->hsync_end > mode->htotal)
722 mode->htotal = mode->hsync_end + 1;
723 if (mode->vsync_end > mode->vtotal)
724 mode->vtotal = mode->vsync_end + 1;
725
Dave Airlief453ba02008-11-07 14:05:41 -0800726 drm_mode_set_name(mode);
727
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000728 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -0800729
730 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +0200731 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -0800732 }
733
Michel Dänzer0454bea2009-06-15 16:56:07 +0200734 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
735 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
736 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
737 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -0800738
Michel Dänzere14cbee2009-06-23 12:36:32 +0200739 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
740 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -0800741
742 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
743 mode->width_mm *= 10;
744 mode->height_mm *= 10;
745 }
746
747 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
748 mode->width_mm = edid->width_cm * 10;
749 mode->height_mm = edid->height_cm * 10;
750 }
751
752 return mode;
753}
754
755/*
756 * Detailed mode info for the EDID "established modes" data to use.
757 */
758static struct drm_display_mode edid_est_modes[] = {
759 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
760 968, 1056, 0, 600, 601, 605, 628, 0,
761 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
762 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
763 896, 1024, 0, 600, 601, 603, 625, 0,
764 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
765 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
766 720, 840, 0, 480, 481, 484, 500, 0,
767 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
768 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
769 704, 832, 0, 480, 489, 491, 520, 0,
770 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
771 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
772 768, 864, 0, 480, 483, 486, 525, 0,
773 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
774 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25200, 640, 656,
775 752, 800, 0, 480, 490, 492, 525, 0,
776 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
777 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
778 846, 900, 0, 400, 421, 423, 449, 0,
779 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
780 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
781 846, 900, 0, 400, 412, 414, 449, 0,
782 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
783 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
784 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
785 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
786 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78800, 1024, 1040,
787 1136, 1312, 0, 768, 769, 772, 800, 0,
788 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
789 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
790 1184, 1328, 0, 768, 771, 777, 806, 0,
791 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
792 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
793 1184, 1344, 0, 768, 771, 777, 806, 0,
794 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
795 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
796 1208, 1264, 0, 768, 768, 776, 817, 0,
797 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
798 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
799 928, 1152, 0, 624, 625, 628, 667, 0,
800 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
801 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
802 896, 1056, 0, 600, 601, 604, 625, 0,
803 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
804 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
805 976, 1040, 0, 600, 637, 643, 666, 0,
806 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
807 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
808 1344, 1600, 0, 864, 865, 868, 900, 0,
809 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
810};
811
812#define EDID_EST_TIMINGS 16
813#define EDID_STD_TIMINGS 8
814#define EDID_DETAILED_TIMINGS 4
815
816/**
817 * add_established_modes - get est. modes from EDID and add them
818 * @edid: EDID block to scan
819 *
820 * Each EDID block contains a bitmap of the supported "established modes" list
821 * (defined above). Tease them out and add them to the global modes list.
822 */
823static int add_established_modes(struct drm_connector *connector, struct edid *edid)
824{
825 struct drm_device *dev = connector->dev;
826 unsigned long est_bits = edid->established_timings.t1 |
827 (edid->established_timings.t2 << 8) |
828 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
829 int i, modes = 0;
830
831 for (i = 0; i <= EDID_EST_TIMINGS; i++)
832 if (est_bits & (1<<i)) {
833 struct drm_display_mode *newmode;
834 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
835 if (newmode) {
836 drm_mode_probed_add(connector, newmode);
837 modes++;
838 }
839 }
840
841 return modes;
842}
Zhao Yakui5c612592009-06-22 13:17:10 +0800843/**
844 * stanard_timing_level - get std. timing level(CVT/GTF/DMT)
845 * @edid: EDID block to scan
846 */
847static int standard_timing_level(struct edid *edid)
848{
849 if (edid->revision >= 2) {
850 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
851 return LEVEL_CVT;
852 return LEVEL_GTF;
853 }
854 return LEVEL_DMT;
855}
Dave Airlief453ba02008-11-07 14:05:41 -0800856
857/**
858 * add_standard_modes - get std. modes from EDID and add them
859 * @edid: EDID block to scan
860 *
861 * Standard modes can be calculated using the CVT standard. Grab them from
862 * @edid, calculate them, and add them to the list.
863 */
864static int add_standard_modes(struct drm_connector *connector, struct edid *edid)
865{
866 struct drm_device *dev = connector->dev;
867 int i, modes = 0;
Zhao Yakui5c612592009-06-22 13:17:10 +0800868 int timing_level;
869
870 timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -0800871
872 for (i = 0; i < EDID_STD_TIMINGS; i++) {
873 struct std_timing *t = &edid->standard_timings[i];
874 struct drm_display_mode *newmode;
875
876 /* If std timings bytes are 1, 1 it's empty */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200877 if (t->hsize == 1 && t->vfreq_aspect == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800878 continue;
879
Zhao Yakui5c612592009-06-22 13:17:10 +0800880 newmode = drm_mode_std(dev, &edid->standard_timings[i],
Adam Jacksonf066a172009-09-23 17:31:21 -0400881 edid->revision, timing_level);
Dave Airlief453ba02008-11-07 14:05:41 -0800882 if (newmode) {
883 drm_mode_probed_add(connector, newmode);
884 modes++;
885 }
886 }
887
888 return modes;
889}
890
Adam Jackson07a5e632009-12-03 17:44:38 -0500891/*
892 * XXX fix this for:
893 * - GTF secondary curve formula
894 * - EDID 1.4 range offsets
895 * - CVT extended bits
896 */
897static bool
898mode_in_range(struct drm_display_mode *mode, struct detailed_timing *timing)
899{
900 struct detailed_data_monitor_range *range;
901 int hsync, vrefresh;
902
903 range = &timing->data.other_data.data.range;
904
905 hsync = drm_mode_hsync(mode);
906 vrefresh = drm_mode_vrefresh(mode);
907
908 if (hsync < range->min_hfreq_khz || hsync > range->max_hfreq_khz)
909 return false;
910
911 if (vrefresh < range->min_vfreq || vrefresh > range->max_vfreq)
912 return false;
913
914 if (range->pixel_clock_mhz && range->pixel_clock_mhz != 0xff) {
915 /* be forgiving since it's in units of 10MHz */
916 int max_clock = range->pixel_clock_mhz * 10 + 9;
917 max_clock *= 1000;
918 if (mode->clock > max_clock)
919 return false;
920 }
921
922 return true;
923}
924
925/*
926 * XXX If drm_dmt_modes ever regrows the CVT-R modes (and it will) this will
927 * need to account for them.
928 */
929static int drm_gtf_modes_for_range(struct drm_connector *connector,
930 struct detailed_timing *timing)
931{
932 int i, modes = 0;
933 struct drm_display_mode *newmode;
934 struct drm_device *dev = connector->dev;
935
936 for (i = 0; i < drm_num_dmt_modes; i++) {
937 if (mode_in_range(drm_dmt_modes + i, timing)) {
938 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
939 if (newmode) {
940 drm_mode_probed_add(connector, newmode);
941 modes++;
942 }
943 }
944 }
945
946 return modes;
947}
948
Adam Jackson9340d8c2009-12-03 17:44:40 -0500949static int drm_cvt_modes(struct drm_connector *connector,
950 struct detailed_timing *timing)
951{
952 int i, j, modes = 0;
953 struct drm_display_mode *newmode;
954 struct drm_device *dev = connector->dev;
955 struct cvt_timing *cvt;
956 const int rates[] = { 60, 85, 75, 60, 50 };
Adam Jackson69da3012010-01-04 17:53:06 -0500957 const u8 empty[3] = { 0, 0, 0 };
Adam Jackson9340d8c2009-12-03 17:44:40 -0500958
959 for (i = 0; i < 4; i++) {
Marin Mitov29ebdf92009-12-20 09:03:27 +0200960 int uninitialized_var(width), height;
Adam Jackson9340d8c2009-12-03 17:44:40 -0500961 cvt = &(timing->data.other_data.data.cvt[i]);
962
Adam Jackson69da3012010-01-04 17:53:06 -0500963 if (!memcmp(cvt->code, empty, 3))
964 continue;
965
Adam Jackson8e10ee92010-01-04 17:53:07 -0500966 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
967 switch (cvt->code[1] & 0x0c) {
Adam Jackson9340d8c2009-12-03 17:44:40 -0500968 case 0x00:
969 width = height * 4 / 3;
970 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500971 case 0x04:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500972 width = height * 16 / 9;
973 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500974 case 0x08:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500975 width = height * 16 / 10;
976 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500977 case 0x0c:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500978 width = height * 15 / 9;
979 break;
980 }
981
982 for (j = 1; j < 5; j++) {
983 if (cvt->code[2] & (1 << j)) {
984 newmode = drm_cvt_mode(dev, width, height,
985 rates[j], j == 0,
986 false, false);
987 if (newmode) {
988 drm_mode_probed_add(connector, newmode);
989 modes++;
990 }
991 }
992 }
993 }
994
995 return modes;
996}
997
Adam Jackson9cf00972009-12-03 17:44:36 -0500998static int add_detailed_modes(struct drm_connector *connector,
999 struct detailed_timing *timing,
1000 struct edid *edid, u32 quirks, int preferred)
1001{
1002 int i, modes = 0;
1003 struct detailed_non_pixel *data = &timing->data.other_data;
1004 int timing_level = standard_timing_level(edid);
Adam Jackson07a5e632009-12-03 17:44:38 -05001005 int gtf = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF);
Adam Jackson9cf00972009-12-03 17:44:36 -05001006 struct drm_display_mode *newmode;
1007 struct drm_device *dev = connector->dev;
1008
1009 if (timing->pixel_clock) {
1010 newmode = drm_mode_detailed(dev, edid, timing, quirks);
1011 if (!newmode)
1012 return 0;
1013
1014 if (preferred)
1015 newmode->type |= DRM_MODE_TYPE_PREFERRED;
1016
1017 drm_mode_probed_add(connector, newmode);
1018 return 1;
1019 }
1020
1021 /* other timing types */
1022 switch (data->type) {
1023 case EDID_DETAIL_MONITOR_RANGE:
Adam Jackson07a5e632009-12-03 17:44:38 -05001024 if (gtf)
1025 modes += drm_gtf_modes_for_range(connector, timing);
Adam Jackson9cf00972009-12-03 17:44:36 -05001026 break;
1027 case EDID_DETAIL_STD_MODES:
1028 /* Six modes per detailed section */
1029 for (i = 0; i < 6; i++) {
1030 struct std_timing *std;
1031 struct drm_display_mode *newmode;
1032
1033 std = &data->data.timings[i];
1034 newmode = drm_mode_std(dev, std, edid->revision,
1035 timing_level);
1036 if (newmode) {
1037 drm_mode_probed_add(connector, newmode);
1038 modes++;
1039 }
1040 }
1041 break;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001042 case EDID_DETAIL_CVT_3BYTE:
1043 modes += drm_cvt_modes(connector, timing);
1044 break;
Adam Jackson9cf00972009-12-03 17:44:36 -05001045 default:
1046 break;
1047 }
1048
1049 return modes;
1050}
1051
Dave Airlief453ba02008-11-07 14:05:41 -08001052/**
Adam Jackson9cf00972009-12-03 17:44:36 -05001053 * add_detailed_info - get detailed mode info from EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08001054 * @connector: attached connector
1055 * @edid: EDID block to scan
1056 * @quirks: quirks to apply
1057 *
1058 * Some of the detailed timing sections may contain mode information. Grab
1059 * it and add it to the list.
1060 */
1061static int add_detailed_info(struct drm_connector *connector,
1062 struct edid *edid, u32 quirks)
1063{
Adam Jackson9cf00972009-12-03 17:44:36 -05001064 int i, modes = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001065
1066 for (i = 0; i < EDID_DETAILED_TIMINGS; i++) {
1067 struct detailed_timing *timing = &edid->detailed_timings[i];
Adam Jackson9cf00972009-12-03 17:44:36 -05001068 int preferred = (i == 0) && (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Dave Airlief453ba02008-11-07 14:05:41 -08001069
Adam Jackson9cf00972009-12-03 17:44:36 -05001070 /* In 1.0, only timings are allowed */
1071 if (!timing->pixel_clock && edid->version == 1 &&
1072 edid->revision == 0)
1073 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08001074
Adam Jackson9cf00972009-12-03 17:44:36 -05001075 modes += add_detailed_modes(connector, timing, edid, quirks,
1076 preferred);
Dave Airlief453ba02008-11-07 14:05:41 -08001077 }
1078
1079 return modes;
1080}
Adam Jackson9cf00972009-12-03 17:44:36 -05001081
Zhao Yakui882f0212009-08-26 18:20:49 +08001082/**
1083 * add_detailed_mode_eedid - get detailed mode info from addtional timing
1084 * EDID block
1085 * @connector: attached connector
1086 * @edid: EDID block to scan(It is only to get addtional timing EDID block)
1087 * @quirks: quirks to apply
1088 *
1089 * Some of the detailed timing sections may contain mode information. Grab
1090 * it and add it to the list.
1091 */
1092static int add_detailed_info_eedid(struct drm_connector *connector,
1093 struct edid *edid, u32 quirks)
1094{
Adam Jackson9cf00972009-12-03 17:44:36 -05001095 int i, modes = 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001096 char *edid_ext = NULL;
1097 struct detailed_timing *timing;
Zhao Yakui882f0212009-08-26 18:20:49 +08001098 int edid_ext_num;
1099 int start_offset, end_offset;
1100 int timing_level;
1101
1102 if (edid->version == 1 && edid->revision < 3) {
1103 /* If the EDID version is less than 1.3, there is no
1104 * extension EDID.
1105 */
1106 return 0;
1107 }
1108 if (!edid->extensions) {
1109 /* if there is no extension EDID, it is unnecessary to
1110 * parse the E-EDID to get detailed info
1111 */
1112 return 0;
1113 }
1114
1115 /* Chose real EDID extension number */
Alex Deucher3c537882010-02-05 04:21:19 -05001116 edid_ext_num = edid->extensions > DRM_MAX_EDID_EXT_NUM ?
1117 DRM_MAX_EDID_EXT_NUM : edid->extensions;
Zhao Yakui882f0212009-08-26 18:20:49 +08001118
1119 /* Find CEA extension */
1120 for (i = 0; i < edid_ext_num; i++) {
1121 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1122 /* This block is CEA extension */
1123 if (edid_ext[0] == 0x02)
1124 break;
1125 }
1126
1127 if (i == edid_ext_num) {
1128 /* if there is no additional timing EDID block, return */
1129 return 0;
1130 }
1131
1132 /* Get the start offset of detailed timing block */
1133 start_offset = edid_ext[2];
1134 if (start_offset == 0) {
1135 /* If the start_offset is zero, it means that neither detailed
1136 * info nor data block exist. In such case it is also
1137 * unnecessary to parse the detailed timing info.
1138 */
1139 return 0;
1140 }
1141
1142 timing_level = standard_timing_level(edid);
1143 end_offset = EDID_LENGTH;
1144 end_offset -= sizeof(struct detailed_timing);
1145 for (i = start_offset; i < end_offset;
1146 i += sizeof(struct detailed_timing)) {
1147 timing = (struct detailed_timing *)(edid_ext + i);
Adam Jackson9cf00972009-12-03 17:44:36 -05001148 modes += add_detailed_modes(connector, timing, edid, quirks, 0);
Zhao Yakui882f0212009-08-26 18:20:49 +08001149 }
1150
1151 return modes;
1152}
Dave Airlief453ba02008-11-07 14:05:41 -08001153
1154#define DDC_ADDR 0x50
Ma Ling167f3a02009-03-20 14:09:48 +08001155/**
1156 * Get EDID information via I2C.
1157 *
1158 * \param adapter : i2c device adaptor
1159 * \param buf : EDID data buffer to be filled
1160 * \param len : EDID data buffer length
1161 * \return 0 on success or -1 on failure.
1162 *
1163 * Try to fetch EDID information by calling i2c driver function.
1164 */
1165int drm_do_probe_ddc_edid(struct i2c_adapter *adapter,
1166 unsigned char *buf, int len)
Dave Airlief453ba02008-11-07 14:05:41 -08001167{
1168 unsigned char start = 0x0;
Dave Airlief453ba02008-11-07 14:05:41 -08001169 struct i2c_msg msgs[] = {
1170 {
1171 .addr = DDC_ADDR,
1172 .flags = 0,
1173 .len = 1,
1174 .buf = &start,
1175 }, {
1176 .addr = DDC_ADDR,
1177 .flags = I2C_M_RD,
Ma Ling167f3a02009-03-20 14:09:48 +08001178 .len = len,
Dave Airlief453ba02008-11-07 14:05:41 -08001179 .buf = buf,
1180 }
1181 };
1182
Dave Airlief453ba02008-11-07 14:05:41 -08001183 if (i2c_transfer(adapter, msgs, 2) == 2)
Ma Ling167f3a02009-03-20 14:09:48 +08001184 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001185
Ma Ling167f3a02009-03-20 14:09:48 +08001186 return -1;
Dave Airlief453ba02008-11-07 14:05:41 -08001187}
1188EXPORT_SYMBOL(drm_do_probe_ddc_edid);
1189
Ma Ling167f3a02009-03-20 14:09:48 +08001190static int drm_ddc_read_edid(struct drm_connector *connector,
1191 struct i2c_adapter *adapter,
1192 char *buf, int len)
1193{
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001194 int i;
Ma Ling167f3a02009-03-20 14:09:48 +08001195
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001196 for (i = 0; i < 4; i++) {
1197 if (drm_do_probe_ddc_edid(adapter, buf, len))
1198 return -1;
Alex Deucher3c537882010-02-05 04:21:19 -05001199 if (drm_edid_is_valid((struct edid *)buf))
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001200 return 0;
Ma Ling167f3a02009-03-20 14:09:48 +08001201 }
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001202
1203 /* repeated checksum failures; warn, but carry on */
1204 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1205 drm_get_connector_name(connector));
1206 return -1;
Ma Ling167f3a02009-03-20 14:09:48 +08001207}
1208
Dave Airlief453ba02008-11-07 14:05:41 -08001209/**
1210 * drm_get_edid - get EDID data, if available
1211 * @connector: connector we're probing
1212 * @adapter: i2c adapter to use for DDC
1213 *
1214 * Poke the given connector's i2c channel to grab EDID data if possible.
1215 *
1216 * Return edid data or NULL if we couldn't find any.
1217 */
1218struct edid *drm_get_edid(struct drm_connector *connector,
1219 struct i2c_adapter *adapter)
1220{
Ma Ling167f3a02009-03-20 14:09:48 +08001221 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001222 struct edid *edid;
1223
Alex Deucher3c537882010-02-05 04:21:19 -05001224 edid = kmalloc(EDID_LENGTH * (DRM_MAX_EDID_EXT_NUM + 1),
Ma Ling167f3a02009-03-20 14:09:48 +08001225 GFP_KERNEL);
1226 if (edid == NULL) {
1227 dev_warn(&connector->dev->pdev->dev,
1228 "Failed to allocate EDID\n");
1229 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001230 }
Ma Ling167f3a02009-03-20 14:09:48 +08001231
1232 /* Read first EDID block */
1233 ret = drm_ddc_read_edid(connector, adapter,
1234 (unsigned char *)edid, EDID_LENGTH);
1235 if (ret != 0)
1236 goto clean_up;
1237
1238 /* There are EDID extensions to be read */
1239 if (edid->extensions != 0) {
1240 int edid_ext_num = edid->extensions;
1241
Alex Deucher3c537882010-02-05 04:21:19 -05001242 if (edid_ext_num > DRM_MAX_EDID_EXT_NUM) {
Ma Ling167f3a02009-03-20 14:09:48 +08001243 dev_warn(&connector->dev->pdev->dev,
1244 "The number of extension(%d) is "
1245 "over max (%d), actually read number (%d)\n",
Alex Deucher3c537882010-02-05 04:21:19 -05001246 edid_ext_num, DRM_MAX_EDID_EXT_NUM,
1247 DRM_MAX_EDID_EXT_NUM);
Ma Ling167f3a02009-03-20 14:09:48 +08001248 /* Reset EDID extension number to be read */
Alex Deucher3c537882010-02-05 04:21:19 -05001249 edid_ext_num = DRM_MAX_EDID_EXT_NUM;
Ma Ling167f3a02009-03-20 14:09:48 +08001250 }
1251 /* Read EDID including extensions too */
1252 ret = drm_ddc_read_edid(connector, adapter, (char *)edid,
1253 EDID_LENGTH * (edid_ext_num + 1));
1254 if (ret != 0)
1255 goto clean_up;
1256
Dave Airlief453ba02008-11-07 14:05:41 -08001257 }
1258
1259 connector->display_info.raw_edid = (char *)edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001260 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001261
Ma Ling167f3a02009-03-20 14:09:48 +08001262clean_up:
1263 kfree(edid);
1264 edid = NULL;
1265end:
Dave Airlief453ba02008-11-07 14:05:41 -08001266 return edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001267
Dave Airlief453ba02008-11-07 14:05:41 -08001268}
1269EXPORT_SYMBOL(drm_get_edid);
1270
Ma Lingf23c20c2009-03-26 19:26:23 +08001271#define HDMI_IDENTIFIER 0x000C03
1272#define VENDOR_BLOCK 0x03
1273/**
1274 * drm_detect_hdmi_monitor - detect whether monitor is hdmi.
1275 * @edid: monitor EDID information
1276 *
1277 * Parse the CEA extension according to CEA-861-B.
1278 * Return true if HDMI, false if not or unknown.
1279 */
1280bool drm_detect_hdmi_monitor(struct edid *edid)
1281{
1282 char *edid_ext = NULL;
1283 int i, hdmi_id, edid_ext_num;
1284 int start_offset, end_offset;
1285 bool is_hdmi = false;
1286
1287 /* No EDID or EDID extensions */
1288 if (edid == NULL || edid->extensions == 0)
1289 goto end;
1290
1291 /* Chose real EDID extension number */
Alex Deucher3c537882010-02-05 04:21:19 -05001292 edid_ext_num = edid->extensions > DRM_MAX_EDID_EXT_NUM ?
1293 DRM_MAX_EDID_EXT_NUM : edid->extensions;
Ma Lingf23c20c2009-03-26 19:26:23 +08001294
1295 /* Find CEA extension */
1296 for (i = 0; i < edid_ext_num; i++) {
1297 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1298 /* This block is CEA extension */
1299 if (edid_ext[0] == 0x02)
1300 break;
1301 }
1302
1303 if (i == edid_ext_num)
1304 goto end;
1305
1306 /* Data block offset in CEA extension block */
1307 start_offset = 4;
1308 end_offset = edid_ext[2];
1309
1310 /*
1311 * Because HDMI identifier is in Vendor Specific Block,
1312 * search it from all data blocks of CEA extension.
1313 */
1314 for (i = start_offset; i < end_offset;
1315 /* Increased by data block len */
1316 i += ((edid_ext[i] & 0x1f) + 1)) {
1317 /* Find vendor specific block */
1318 if ((edid_ext[i] >> 5) == VENDOR_BLOCK) {
1319 hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) |
1320 edid_ext[i + 3] << 16;
1321 /* Find HDMI identifier */
1322 if (hdmi_id == HDMI_IDENTIFIER)
1323 is_hdmi = true;
1324 break;
1325 }
1326 }
1327
1328end:
1329 return is_hdmi;
1330}
1331EXPORT_SYMBOL(drm_detect_hdmi_monitor);
1332
Dave Airlief453ba02008-11-07 14:05:41 -08001333/**
1334 * drm_add_edid_modes - add modes from EDID data, if available
1335 * @connector: connector we're probing
1336 * @edid: edid data
1337 *
1338 * Add the specified modes to the connector's mode list.
1339 *
1340 * Return number of modes added or 0 if we couldn't find any.
1341 */
1342int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
1343{
1344 int num_modes = 0;
1345 u32 quirks;
1346
1347 if (edid == NULL) {
1348 return 0;
1349 }
Alex Deucher3c537882010-02-05 04:21:19 -05001350 if (!drm_edid_is_valid(edid)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001351 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1352 drm_get_connector_name(connector));
1353 return 0;
1354 }
1355
1356 quirks = edid_get_quirks(edid);
1357
1358 num_modes += add_established_modes(connector, edid);
1359 num_modes += add_standard_modes(connector, edid);
1360 num_modes += add_detailed_info(connector, edid, quirks);
Zhao Yakui882f0212009-08-26 18:20:49 +08001361 num_modes += add_detailed_info_eedid(connector, edid, quirks);
Dave Airlief453ba02008-11-07 14:05:41 -08001362
1363 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
1364 edid_fixup_preferred(connector, quirks);
1365
Michel Dänzer0454bea2009-06-15 16:56:07 +02001366 connector->display_info.serration_vsync = (edid->input & DRM_EDID_INPUT_SERRATION_VSYNC) ? 1 : 0;
1367 connector->display_info.sync_on_green = (edid->input & DRM_EDID_INPUT_SYNC_ON_GREEN) ? 1 : 0;
1368 connector->display_info.composite_sync = (edid->input & DRM_EDID_INPUT_COMPOSITE_SYNC) ? 1 : 0;
1369 connector->display_info.separate_syncs = (edid->input & DRM_EDID_INPUT_SEPARATE_SYNCS) ? 1 : 0;
1370 connector->display_info.blank_to_black = (edid->input & DRM_EDID_INPUT_BLANK_TO_BLACK) ? 1 : 0;
1371 connector->display_info.video_level = (edid->input & DRM_EDID_INPUT_VIDEO_LEVEL) >> 5;
1372 connector->display_info.digital = (edid->input & DRM_EDID_INPUT_DIGITAL) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001373 connector->display_info.width_mm = edid->width_cm * 10;
1374 connector->display_info.height_mm = edid->height_cm * 10;
1375 connector->display_info.gamma = edid->gamma;
Michel Dänzer0454bea2009-06-15 16:56:07 +02001376 connector->display_info.gtf_supported = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF) ? 1 : 0;
1377 connector->display_info.standard_color = (edid->features & DRM_EDID_FEATURE_STANDARD_COLOR) ? 1 : 0;
1378 connector->display_info.display_type = (edid->features & DRM_EDID_FEATURE_DISPLAY_TYPE) >> 3;
1379 connector->display_info.active_off_supported = (edid->features & DRM_EDID_FEATURE_PM_ACTIVE_OFF) ? 1 : 0;
1380 connector->display_info.suspend_supported = (edid->features & DRM_EDID_FEATURE_PM_SUSPEND) ? 1 : 0;
1381 connector->display_info.standby_supported = (edid->features & DRM_EDID_FEATURE_PM_STANDBY) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001382 connector->display_info.gamma = edid->gamma;
1383
1384 return num_modes;
1385}
1386EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001387
1388/**
1389 * drm_add_modes_noedid - add modes for the connectors without EDID
1390 * @connector: connector we're probing
1391 * @hdisplay: the horizontal display limit
1392 * @vdisplay: the vertical display limit
1393 *
1394 * Add the specified modes to the connector's mode list. Only when the
1395 * hdisplay/vdisplay is not beyond the given limit, it will be added.
1396 *
1397 * Return number of modes added or 0 if we couldn't find any.
1398 */
1399int drm_add_modes_noedid(struct drm_connector *connector,
1400 int hdisplay, int vdisplay)
1401{
1402 int i, count, num_modes = 0;
1403 struct drm_display_mode *mode, *ptr;
1404 struct drm_device *dev = connector->dev;
1405
1406 count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
1407 if (hdisplay < 0)
1408 hdisplay = 0;
1409 if (vdisplay < 0)
1410 vdisplay = 0;
1411
1412 for (i = 0; i < count; i++) {
1413 ptr = &drm_dmt_modes[i];
1414 if (hdisplay && vdisplay) {
1415 /*
1416 * Only when two are valid, they will be used to check
1417 * whether the mode should be added to the mode list of
1418 * the connector.
1419 */
1420 if (ptr->hdisplay > hdisplay ||
1421 ptr->vdisplay > vdisplay)
1422 continue;
1423 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05001424 if (drm_mode_vrefresh(ptr) > 61)
1425 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001426 mode = drm_mode_duplicate(dev, ptr);
1427 if (mode) {
1428 drm_mode_probed_add(connector, mode);
1429 num_modes++;
1430 }
1431 }
1432 return num_modes;
1433}
1434EXPORT_SYMBOL(drm_add_modes_noedid);