blob: a1b6b433e5bce3e4db23f2b0ff3f4cc639e3d142 [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>
Adam Jackson61e57a82010-03-29 21:43:18 +00005 * Copyright 2010 Red Hat, Inc.
Dave Airlief453ba02008-11-07 14:05:41 -08006 *
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/i2c.h>
32#include <linux/i2c-algo-bit.h>
33#include "drmP.h"
34#include "drm_edid.h"
35
Adam Jacksond1ff6402010-03-29 21:43:26 +000036#define EDID_EST_TIMINGS 16
37#define EDID_STD_TIMINGS 8
38#define EDID_DETAILED_TIMINGS 4
39
Dave Airlief453ba02008-11-07 14:05:41 -080040/*
Dave Airlief453ba02008-11-07 14:05:41 -080041 * EDID blocks out in the wild have a variety of bugs, try to collect
42 * them here (note that userspace may work around broken monitors first,
43 * but fixes should make their way here so that the kernel "just works"
44 * on as many displays as possible).
45 */
46
47/* First detailed mode wrong, use largest 60Hz mode */
48#define EDID_QUIRK_PREFER_LARGE_60 (1 << 0)
49/* Reported 135MHz pixel clock is too high, needs adjustment */
50#define EDID_QUIRK_135_CLOCK_TOO_HIGH (1 << 1)
51/* Prefer the largest mode at 75 Hz */
52#define EDID_QUIRK_PREFER_LARGE_75 (1 << 2)
53/* Detail timing is in cm not mm */
54#define EDID_QUIRK_DETAILED_IN_CM (1 << 3)
55/* Detailed timing descriptors have bogus size values, so just take the
56 * maximum size and use that.
57 */
58#define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE (1 << 4)
59/* Monitor forgot to set the first detailed is preferred bit. */
60#define EDID_QUIRK_FIRST_DETAILED_PREFERRED (1 << 5)
61/* use +hsync +vsync for detailed mode */
62#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
Alex Deucher3c537882010-02-05 04:21:19 -050063
Dave Airlief453ba02008-11-07 14:05:41 -080064
Zhao Yakui5c612592009-06-22 13:17:10 +080065#define LEVEL_DMT 0
66#define LEVEL_GTF 1
67#define LEVEL_CVT 2
68
Dave Airlief453ba02008-11-07 14:05:41 -080069static struct edid_quirk {
70 char *vendor;
71 int product_id;
72 u32 quirks;
73} edid_quirk_list[] = {
74 /* Acer AL1706 */
75 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
76 /* Acer F51 */
77 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
78 /* Unknown Acer */
79 { "ACR", 2423, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
80
81 /* Belinea 10 15 55 */
82 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
83 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
84
85 /* Envision Peripherals, Inc. EN-7100e */
86 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
87
88 /* Funai Electronics PM36B */
89 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
90 EDID_QUIRK_DETAILED_IN_CM },
91
92 /* LG Philips LCD LP154W01-A5 */
93 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
94 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
95
96 /* Philips 107p5 CRT */
97 { "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
98
99 /* Proview AY765C */
100 { "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
101
102 /* Samsung SyncMaster 205BW. Note: irony */
103 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
104 /* Samsung SyncMaster 22[5-6]BW */
105 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
106 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
107};
108
Adam Jackson61e57a82010-03-29 21:43:18 +0000109/*** DDC fetch and block validation ***/
Dave Airlief453ba02008-11-07 14:05:41 -0800110
Adam Jackson083ae052009-09-23 17:30:45 -0400111static const u8 edid_header[] = {
112 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
113};
Dave Airlief453ba02008-11-07 14:05:41 -0800114
Adam Jackson61e57a82010-03-29 21:43:18 +0000115/*
116 * Sanity check the EDID block (base or extension). Return 0 if the block
117 * doesn't check out, or 1 if it's valid.
Dave Airlief453ba02008-11-07 14:05:41 -0800118 */
Adam Jackson61e57a82010-03-29 21:43:18 +0000119static bool
120drm_edid_block_valid(u8 *raw_edid)
Dave Airlief453ba02008-11-07 14:05:41 -0800121{
Adam Jackson61e57a82010-03-29 21:43:18 +0000122 int i;
Dave Airlief453ba02008-11-07 14:05:41 -0800123 u8 csum = 0;
Adam Jackson61e57a82010-03-29 21:43:18 +0000124 struct edid *edid = (struct edid *)raw_edid;
Dave Airlief453ba02008-11-07 14:05:41 -0800125
Adam Jackson61e57a82010-03-29 21:43:18 +0000126 if (raw_edid[0] == 0x00) {
127 int score = 0;
Adam Jackson862b89c2009-11-23 14:23:06 -0500128
Adam Jackson61e57a82010-03-29 21:43:18 +0000129 for (i = 0; i < sizeof(edid_header); i++)
130 if (raw_edid[i] == edid_header[i])
131 score++;
132
133 if (score == 8) ;
134 else if (score >= 6) {
135 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
136 memcpy(raw_edid, edid_header, sizeof(edid_header));
137 } else {
138 goto bad;
139 }
140 }
Dave Airlief453ba02008-11-07 14:05:41 -0800141
142 for (i = 0; i < EDID_LENGTH; i++)
143 csum += raw_edid[i];
144 if (csum) {
145 DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
146 goto bad;
147 }
148
Adam Jackson61e57a82010-03-29 21:43:18 +0000149 /* per-block-type checks */
150 switch (raw_edid[0]) {
151 case 0: /* base */
152 if (edid->version != 1) {
153 DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
154 goto bad;
155 }
Adam Jackson862b89c2009-11-23 14:23:06 -0500156
Adam Jackson61e57a82010-03-29 21:43:18 +0000157 if (edid->revision > 4)
158 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
159 break;
160
161 default:
162 break;
163 }
Adam Jackson47ee4cc2009-11-23 14:23:05 -0500164
Dave Airlief453ba02008-11-07 14:05:41 -0800165 return 1;
166
167bad:
168 if (raw_edid) {
169 DRM_ERROR("Raw EDID:\n");
170 print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
171 printk("\n");
172 }
173 return 0;
174}
Adam Jackson61e57a82010-03-29 21:43:18 +0000175
176/**
177 * drm_edid_is_valid - sanity check EDID data
178 * @edid: EDID data
179 *
180 * Sanity-check an entire EDID record (including extensions)
181 */
182bool drm_edid_is_valid(struct edid *edid)
183{
184 int i;
185 u8 *raw = (u8 *)edid;
186
187 if (!edid)
188 return false;
189
190 for (i = 0; i <= edid->extensions; i++)
191 if (!drm_edid_block_valid(raw + i * EDID_LENGTH))
192 return false;
193
194 return true;
195}
Alex Deucher3c537882010-02-05 04:21:19 -0500196EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -0800197
Adam Jackson61e57a82010-03-29 21:43:18 +0000198#define DDC_ADDR 0x50
199#define DDC_SEGMENT_ADDR 0x30
200/**
201 * Get EDID information via I2C.
202 *
203 * \param adapter : i2c device adaptor
204 * \param buf : EDID data buffer to be filled
205 * \param len : EDID data buffer length
206 * \return 0 on success or -1 on failure.
207 *
208 * Try to fetch EDID information by calling i2c driver function.
209 */
210static int
211drm_do_probe_ddc_edid(struct i2c_adapter *adapter, unsigned char *buf,
212 int block, int len)
213{
214 unsigned char start = block * EDID_LENGTH;
215 struct i2c_msg msgs[] = {
216 {
217 .addr = DDC_ADDR,
218 .flags = 0,
219 .len = 1,
220 .buf = &start,
221 }, {
222 .addr = DDC_ADDR,
223 .flags = I2C_M_RD,
224 .len = len,
225 .buf = buf + start,
226 }
227 };
228
229 if (i2c_transfer(adapter, msgs, 2) == 2)
230 return 0;
231
232 return -1;
233}
234
235static u8 *
236drm_do_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
237{
238 int i, j = 0;
239 u8 *block, *new;
240
241 if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
242 return NULL;
243
244 /* base block fetch */
245 for (i = 0; i < 4; i++) {
246 if (drm_do_probe_ddc_edid(adapter, block, 0, EDID_LENGTH))
247 goto out;
248 if (drm_edid_block_valid(block))
249 break;
250 }
251 if (i == 4)
252 goto carp;
253
254 /* if there's no extensions, we're done */
255 if (block[0x7e] == 0)
256 return block;
257
258 new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
259 if (!new)
260 goto out;
261 block = new;
262
263 for (j = 1; j <= block[0x7e]; j++) {
264 for (i = 0; i < 4; i++) {
265 if (drm_do_probe_ddc_edid(adapter, block, j,
266 EDID_LENGTH))
267 goto out;
268 if (drm_edid_block_valid(block + j * EDID_LENGTH))
269 break;
270 }
271 if (i == 4)
272 goto carp;
273 }
274
275 return block;
276
277carp:
278 dev_warn(&connector->dev->pdev->dev, "%s: EDID block %d invalid.\n",
279 drm_get_connector_name(connector), j);
280
281out:
282 kfree(block);
283 return NULL;
284}
285
286/**
287 * Probe DDC presence.
288 *
289 * \param adapter : i2c device adaptor
290 * \return 1 on success
291 */
292static bool
293drm_probe_ddc(struct i2c_adapter *adapter)
294{
295 unsigned char out;
296
297 return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
298}
299
300/**
301 * drm_get_edid - get EDID data, if available
302 * @connector: connector we're probing
303 * @adapter: i2c adapter to use for DDC
304 *
305 * Poke the given i2c channel to grab EDID data if possible. If found,
306 * attach it to the connector.
307 *
308 * Return edid data or NULL if we couldn't find any.
309 */
310struct edid *drm_get_edid(struct drm_connector *connector,
311 struct i2c_adapter *adapter)
312{
313 struct edid *edid = NULL;
314
315 if (drm_probe_ddc(adapter))
316 edid = (struct edid *)drm_do_get_edid(connector, adapter);
317
318 connector->display_info.raw_edid = (char *)edid;
319
320 return edid;
321
322}
323EXPORT_SYMBOL(drm_get_edid);
324
325/*** EDID parsing ***/
326
Dave Airlief453ba02008-11-07 14:05:41 -0800327/**
328 * edid_vendor - match a string against EDID's obfuscated vendor field
329 * @edid: EDID to match
330 * @vendor: vendor string
331 *
332 * Returns true if @vendor is in @edid, false otherwise
333 */
334static bool edid_vendor(struct edid *edid, char *vendor)
335{
336 char edid_vendor[3];
337
338 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
339 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
340 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +1000341 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -0800342
343 return !strncmp(edid_vendor, vendor, 3);
344}
345
346/**
347 * edid_get_quirks - return quirk flags for a given EDID
348 * @edid: EDID to process
349 *
350 * This tells subsequent routines what fixes they need to apply.
351 */
352static u32 edid_get_quirks(struct edid *edid)
353{
354 struct edid_quirk *quirk;
355 int i;
356
357 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
358 quirk = &edid_quirk_list[i];
359
360 if (edid_vendor(edid, quirk->vendor) &&
361 (EDID_PRODUCT_ID(edid) == quirk->product_id))
362 return quirk->quirks;
363 }
364
365 return 0;
366}
367
368#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
369#define MODE_REFRESH_DIFF(m,r) (abs((m)->vrefresh - target_refresh))
370
371
372/**
373 * edid_fixup_preferred - set preferred modes based on quirk list
374 * @connector: has mode list to fix up
375 * @quirks: quirks list
376 *
377 * Walk the mode list for @connector, clearing the preferred status
378 * on existing modes and setting it anew for the right mode ala @quirks.
379 */
380static void edid_fixup_preferred(struct drm_connector *connector,
381 u32 quirks)
382{
383 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +1000384 int target_refresh = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800385
386 if (list_empty(&connector->probed_modes))
387 return;
388
389 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
390 target_refresh = 60;
391 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
392 target_refresh = 75;
393
394 preferred_mode = list_first_entry(&connector->probed_modes,
395 struct drm_display_mode, head);
396
397 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
398 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
399
400 if (cur_mode == preferred_mode)
401 continue;
402
403 /* Largest mode is preferred */
404 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
405 preferred_mode = cur_mode;
406
407 /* At a given size, try to get closest to target refresh */
408 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
409 MODE_REFRESH_DIFF(cur_mode, target_refresh) <
410 MODE_REFRESH_DIFF(preferred_mode, target_refresh)) {
411 preferred_mode = cur_mode;
412 }
413 }
414
415 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
416}
417
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800418/*
419 * Add the Autogenerated from the DMT spec.
420 * This table is copied from xfree86/modes/xf86EdidModes.c.
421 * But the mode with Reduced blank feature is deleted.
422 */
423static struct drm_display_mode drm_dmt_modes[] = {
424 /* 640x350@85Hz */
425 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
426 736, 832, 0, 350, 382, 385, 445, 0,
427 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
428 /* 640x400@85Hz */
429 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
430 736, 832, 0, 400, 401, 404, 445, 0,
431 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
432 /* 720x400@85Hz */
433 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
434 828, 936, 0, 400, 401, 404, 446, 0,
435 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
436 /* 640x480@60Hz */
437 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
438 752, 800, 0, 480, 489, 492, 525, 0,
439 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
440 /* 640x480@72Hz */
441 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
442 704, 832, 0, 480, 489, 492, 520, 0,
443 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
444 /* 640x480@75Hz */
445 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
446 720, 840, 0, 480, 481, 484, 500, 0,
447 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
448 /* 640x480@85Hz */
449 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
450 752, 832, 0, 480, 481, 484, 509, 0,
451 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
452 /* 800x600@56Hz */
453 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
454 896, 1024, 0, 600, 601, 603, 625, 0,
455 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
456 /* 800x600@60Hz */
457 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
458 968, 1056, 0, 600, 601, 605, 628, 0,
459 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
460 /* 800x600@72Hz */
461 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
462 976, 1040, 0, 600, 637, 643, 666, 0,
463 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
464 /* 800x600@75Hz */
465 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
466 896, 1056, 0, 600, 601, 604, 625, 0,
467 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
468 /* 800x600@85Hz */
469 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
470 896, 1048, 0, 600, 601, 604, 631, 0,
471 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
472 /* 848x480@60Hz */
473 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
474 976, 1088, 0, 480, 486, 494, 517, 0,
475 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
476 /* 1024x768@43Hz, interlace */
477 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
478 1208, 1264, 0, 768, 768, 772, 817, 0,
479 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
480 DRM_MODE_FLAG_INTERLACE) },
481 /* 1024x768@60Hz */
482 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
483 1184, 1344, 0, 768, 771, 777, 806, 0,
484 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
485 /* 1024x768@70Hz */
486 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
487 1184, 1328, 0, 768, 771, 777, 806, 0,
488 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
489 /* 1024x768@75Hz */
490 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
491 1136, 1312, 0, 768, 769, 772, 800, 0,
492 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
493 /* 1024x768@85Hz */
494 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
495 1072, 1376, 0, 768, 769, 772, 808, 0,
496 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
497 /* 1152x864@75Hz */
498 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
499 1344, 1600, 0, 864, 865, 868, 900, 0,
500 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
501 /* 1280x768@60Hz */
502 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
503 1472, 1664, 0, 768, 771, 778, 798, 0,
504 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
505 /* 1280x768@75Hz */
506 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
507 1488, 1696, 0, 768, 771, 778, 805, 0,
508 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
509 /* 1280x768@85Hz */
510 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
511 1496, 1712, 0, 768, 771, 778, 809, 0,
512 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
513 /* 1280x800@60Hz */
514 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
515 1480, 1680, 0, 800, 803, 809, 831, 0,
516 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
517 /* 1280x800@75Hz */
518 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
519 1488, 1696, 0, 800, 803, 809, 838, 0,
520 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
521 /* 1280x800@85Hz */
522 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
523 1496, 1712, 0, 800, 803, 809, 843, 0,
524 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
525 /* 1280x960@60Hz */
526 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
527 1488, 1800, 0, 960, 961, 964, 1000, 0,
528 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
529 /* 1280x960@85Hz */
530 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
531 1504, 1728, 0, 960, 961, 964, 1011, 0,
532 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
533 /* 1280x1024@60Hz */
534 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
535 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
536 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
537 /* 1280x1024@75Hz */
538 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
539 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
540 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
541 /* 1280x1024@85Hz */
542 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
543 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
544 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
545 /* 1360x768@60Hz */
546 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
547 1536, 1792, 0, 768, 771, 777, 795, 0,
548 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
549 /* 1440x1050@60Hz */
550 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
551 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
552 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
553 /* 1440x1050@75Hz */
554 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
555 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
556 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
557 /* 1440x1050@85Hz */
558 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
559 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
560 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
561 /* 1440x900@60Hz */
562 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
563 1672, 1904, 0, 900, 903, 909, 934, 0,
564 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
565 /* 1440x900@75Hz */
566 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
567 1688, 1936, 0, 900, 903, 909, 942, 0,
568 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
569 /* 1440x900@85Hz */
570 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
571 1696, 1952, 0, 900, 903, 909, 948, 0,
572 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
573 /* 1600x1200@60Hz */
574 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
575 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
576 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
577 /* 1600x1200@65Hz */
578 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
579 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
580 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
581 /* 1600x1200@70Hz */
582 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
583 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
584 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
585 /* 1600x1200@75Hz */
586 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 2025000, 1600, 1664,
587 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
588 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
589 /* 1600x1200@85Hz */
590 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
591 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
592 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
593 /* 1680x1050@60Hz */
594 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
595 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
596 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
597 /* 1680x1050@75Hz */
598 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
599 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
600 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
601 /* 1680x1050@85Hz */
602 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
603 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
604 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
605 /* 1792x1344@60Hz */
606 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
607 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
608 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
609 /* 1729x1344@75Hz */
610 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
611 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
612 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
613 /* 1853x1392@60Hz */
614 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
615 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
616 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
617 /* 1856x1392@75Hz */
618 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
619 2208, 2560, 0, 1392, 1395, 1399, 1500, 0,
620 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
621 /* 1920x1200@60Hz */
622 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
623 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
624 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
625 /* 1920x1200@75Hz */
626 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
627 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
628 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
629 /* 1920x1200@85Hz */
630 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
631 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
632 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
633 /* 1920x1440@60Hz */
634 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
635 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
636 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
637 /* 1920x1440@75Hz */
638 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
639 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
640 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
641 /* 2560x1600@60Hz */
642 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
643 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
644 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
645 /* 2560x1600@75HZ */
646 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
647 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
648 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
649 /* 2560x1600@85HZ */
650 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
651 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
652 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
653};
Adam Jackson07a5e632009-12-03 17:44:38 -0500654static const int drm_num_dmt_modes =
655 sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800656
Zhao Yakui559ee212009-09-03 09:33:47 +0800657static struct drm_display_mode *drm_find_dmt(struct drm_device *dev,
658 int hsize, int vsize, int fresh)
659{
Adam Jackson07a5e632009-12-03 17:44:38 -0500660 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +0800661 struct drm_display_mode *ptr, *mode;
662
Zhao Yakui559ee212009-09-03 09:33:47 +0800663 mode = NULL;
Adam Jackson07a5e632009-12-03 17:44:38 -0500664 for (i = 0; i < drm_num_dmt_modes; i++) {
Zhao Yakui559ee212009-09-03 09:33:47 +0800665 ptr = &drm_dmt_modes[i];
666 if (hsize == ptr->hdisplay &&
667 vsize == ptr->vdisplay &&
668 fresh == drm_mode_vrefresh(ptr)) {
669 /* get the expected default mode */
670 mode = drm_mode_duplicate(dev, ptr);
671 break;
672 }
673 }
674 return mode;
675}
Adam Jackson23425ca2009-09-23 17:30:58 -0400676
Adam Jacksond1ff6402010-03-29 21:43:26 +0000677typedef void detailed_cb(struct detailed_timing *timing, void *closure);
678
679static void
680drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
681{
682 int i;
683 struct edid *edid = (struct edid *)raw_edid;
684
685 if (edid == NULL)
686 return;
687
688 for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
689 cb(&(edid->detailed_timings[i]), closure);
690
691 /* XXX extension block walk */
692}
693
694static void
695is_rb(struct detailed_timing *t, void *data)
696{
697 u8 *r = (u8 *)t;
698 if (r[3] == EDID_DETAIL_MONITOR_RANGE)
699 if (r[15] & 0x10)
700 *(bool *)data = true;
701}
702
703/* EDID 1.4 defines this explicitly. For EDID 1.3, we guess, badly. */
704static bool
705drm_monitor_supports_rb(struct edid *edid)
706{
707 if (edid->revision >= 4) {
708 bool ret;
709 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
710 return ret;
711 }
712
713 return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
714}
715
Adam Jackson23425ca2009-09-23 17:30:58 -0400716/*
717 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
718 * monitors fill with ascii space (0x20) instead.
719 */
720static int
721bad_std_timing(u8 a, u8 b)
722{
723 return (a == 0x00 && b == 0x00) ||
724 (a == 0x01 && b == 0x01) ||
725 (a == 0x20 && b == 0x20);
726}
727
Dave Airlief453ba02008-11-07 14:05:41 -0800728/**
729 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
730 * @t: standard timing params
Zhao Yakui5c612592009-06-22 13:17:10 +0800731 * @timing_level: standard timing level
Dave Airlief453ba02008-11-07 14:05:41 -0800732 *
733 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +0800734 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -0800735 */
736struct drm_display_mode *drm_mode_std(struct drm_device *dev,
Zhao Yakui5c612592009-06-22 13:17:10 +0800737 struct std_timing *t,
Adam Jacksonf066a172009-09-23 17:31:21 -0400738 int revision,
Zhao Yakui5c612592009-06-22 13:17:10 +0800739 int timing_level)
Dave Airlief453ba02008-11-07 14:05:41 -0800740{
741 struct drm_display_mode *mode;
Zhao Yakui5c612592009-06-22 13:17:10 +0800742 int hsize, vsize;
743 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200744 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
745 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +0800746 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
747 >> EDID_TIMING_VFREQ_SHIFT;
Dave Airlief453ba02008-11-07 14:05:41 -0800748
Adam Jackson23425ca2009-09-23 17:30:58 -0400749 if (bad_std_timing(t->hsize, t->vfreq_aspect))
750 return NULL;
751
Zhao Yakui5c612592009-06-22 13:17:10 +0800752 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
753 hsize = t->hsize * 8 + 248;
754 /* vrefresh_rate = vfreq + 60 */
755 vrefresh_rate = vfreq + 60;
756 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -0400757 if (aspect_ratio == 0) {
758 if (revision < 3)
759 vsize = hsize;
760 else
761 vsize = (hsize * 10) / 16;
762 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800763 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200764 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -0800765 vsize = (hsize * 4) / 5;
766 else
767 vsize = (hsize * 9) / 16;
Zhao Yakui559ee212009-09-03 09:33:47 +0800768 /* HDTV hack */
769 if (hsize == 1360 && vsize == 765 && vrefresh_rate == 60) {
Dave Airlied50ba252009-09-23 14:44:08 +1000770 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
771 false);
Zhao Yakui559ee212009-09-03 09:33:47 +0800772 mode->hdisplay = 1366;
773 mode->vsync_start = mode->vsync_start - 1;
774 mode->vsync_end = mode->vsync_end - 1;
775 return mode;
776 }
Zhao Yakui5c612592009-06-22 13:17:10 +0800777 mode = NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +0800778 /* check whether it can be found in default mode table */
779 mode = drm_find_dmt(dev, hsize, vsize, vrefresh_rate);
780 if (mode)
781 return mode;
782
Zhao Yakui5c612592009-06-22 13:17:10 +0800783 switch (timing_level) {
784 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +0800785 break;
786 case LEVEL_GTF:
787 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
788 break;
789 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +1000790 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
791 false);
Zhao Yakui5c612592009-06-22 13:17:10 +0800792 break;
793 }
Dave Airlief453ba02008-11-07 14:05:41 -0800794 return mode;
795}
796
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000797/*
798 * EDID is delightfully ambiguous about how interlaced modes are to be
799 * encoded. Our internal representation is of frame height, but some
800 * HDTV detailed timings are encoded as field height.
801 *
802 * The format list here is from CEA, in frame size. Technically we
803 * should be checking refresh rate too. Whatever.
804 */
805static void
806drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
807 struct detailed_pixel_timing *pt)
808{
809 int i;
810 static const struct {
811 int w, h;
812 } cea_interlaced[] = {
813 { 1920, 1080 },
814 { 720, 480 },
815 { 1440, 480 },
816 { 2880, 480 },
817 { 720, 576 },
818 { 1440, 576 },
819 { 2880, 576 },
820 };
821 static const int n_sizes =
822 sizeof(cea_interlaced)/sizeof(cea_interlaced[0]);
823
824 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
825 return;
826
827 for (i = 0; i < n_sizes; i++) {
828 if ((mode->hdisplay == cea_interlaced[i].w) &&
829 (mode->vdisplay == cea_interlaced[i].h / 2)) {
830 mode->vdisplay *= 2;
831 mode->vsync_start *= 2;
832 mode->vsync_end *= 2;
833 mode->vtotal *= 2;
834 mode->vtotal |= 1;
835 }
836 }
837
838 mode->flags |= DRM_MODE_FLAG_INTERLACE;
839}
840
Dave Airlief453ba02008-11-07 14:05:41 -0800841/**
842 * drm_mode_detailed - create a new mode from an EDID detailed timing section
843 * @dev: DRM device (needed to create new mode)
844 * @edid: EDID block
845 * @timing: EDID detailed timing info
846 * @quirks: quirks to apply
847 *
848 * An EDID detailed timing block contains enough info for us to create and
849 * return a new struct drm_display_mode.
850 */
851static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
852 struct edid *edid,
853 struct detailed_timing *timing,
854 u32 quirks)
855{
856 struct drm_display_mode *mode;
857 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200858 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
859 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
860 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
861 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +0200862 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
863 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
864 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4;
865 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 -0800866
Adam Jacksonfc438962009-06-04 10:20:34 +1000867 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200868 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +1000869 return NULL;
870
Michel Dänzer0454bea2009-06-15 16:56:07 +0200871 if (pt->misc & DRM_EDID_PT_STEREO) {
Dave Airlief453ba02008-11-07 14:05:41 -0800872 printk(KERN_WARNING "stereo mode not supported\n");
873 return NULL;
874 }
Michel Dänzer0454bea2009-06-15 16:56:07 +0200875 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Jerome Glisse79b7dcb2010-01-14 19:02:20 +0100876 printk(KERN_WARNING "composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800877 }
878
Zhao Yakuifcb45612009-10-14 09:11:25 +0800879 /* it is incorrect if hsync/vsync width is zero */
880 if (!hsync_pulse_width || !vsync_pulse_width) {
881 DRM_DEBUG_KMS("Incorrect Detailed timing. "
882 "Wrong Hsync/Vsync pulse width\n");
883 return NULL;
884 }
Dave Airlief453ba02008-11-07 14:05:41 -0800885 mode = drm_mode_create(dev);
886 if (!mode)
887 return NULL;
888
889 mode->type = DRM_MODE_TYPE_DRIVER;
890
891 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200892 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -0800893
Michel Dänzer0454bea2009-06-15 16:56:07 +0200894 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -0800895
Michel Dänzer0454bea2009-06-15 16:56:07 +0200896 mode->hdisplay = hactive;
897 mode->hsync_start = mode->hdisplay + hsync_offset;
898 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
899 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800900
Michel Dänzer0454bea2009-06-15 16:56:07 +0200901 mode->vdisplay = vactive;
902 mode->vsync_start = mode->vdisplay + vsync_offset;
903 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
904 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800905
Jesse Barnes7064fef2009-11-05 10:12:54 -0800906 /* Some EDIDs have bogus h/vtotal values */
907 if (mode->hsync_end > mode->htotal)
908 mode->htotal = mode->hsync_end + 1;
909 if (mode->vsync_end > mode->vtotal)
910 mode->vtotal = mode->vsync_end + 1;
911
Dave Airlief453ba02008-11-07 14:05:41 -0800912 drm_mode_set_name(mode);
913
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000914 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -0800915
916 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +0200917 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -0800918 }
919
Michel Dänzer0454bea2009-06-15 16:56:07 +0200920 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
921 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
922 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
923 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -0800924
Michel Dänzere14cbee2009-06-23 12:36:32 +0200925 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
926 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -0800927
928 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
929 mode->width_mm *= 10;
930 mode->height_mm *= 10;
931 }
932
933 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
934 mode->width_mm = edid->width_cm * 10;
935 mode->height_mm = edid->height_cm * 10;
936 }
937
938 return mode;
939}
940
941/*
942 * Detailed mode info for the EDID "established modes" data to use.
943 */
944static struct drm_display_mode edid_est_modes[] = {
945 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
946 968, 1056, 0, 600, 601, 605, 628, 0,
947 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
948 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
949 896, 1024, 0, 600, 601, 603, 625, 0,
950 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
951 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
952 720, 840, 0, 480, 481, 484, 500, 0,
953 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
954 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
955 704, 832, 0, 480, 489, 491, 520, 0,
956 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
957 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
958 768, 864, 0, 480, 483, 486, 525, 0,
959 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
960 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25200, 640, 656,
961 752, 800, 0, 480, 490, 492, 525, 0,
962 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
963 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
964 846, 900, 0, 400, 421, 423, 449, 0,
965 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
966 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
967 846, 900, 0, 400, 412, 414, 449, 0,
968 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
969 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
970 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
971 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
972 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78800, 1024, 1040,
973 1136, 1312, 0, 768, 769, 772, 800, 0,
974 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
975 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
976 1184, 1328, 0, 768, 771, 777, 806, 0,
977 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
978 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
979 1184, 1344, 0, 768, 771, 777, 806, 0,
980 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
981 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
982 1208, 1264, 0, 768, 768, 776, 817, 0,
983 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
984 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
985 928, 1152, 0, 624, 625, 628, 667, 0,
986 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
987 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
988 896, 1056, 0, 600, 601, 604, 625, 0,
989 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
990 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
991 976, 1040, 0, 600, 637, 643, 666, 0,
992 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
993 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
994 1344, 1600, 0, 864, 865, 868, 900, 0,
995 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
996};
997
Dave Airlief453ba02008-11-07 14:05:41 -0800998/**
999 * add_established_modes - get est. modes from EDID and add them
1000 * @edid: EDID block to scan
1001 *
1002 * Each EDID block contains a bitmap of the supported "established modes" list
1003 * (defined above). Tease them out and add them to the global modes list.
1004 */
1005static int add_established_modes(struct drm_connector *connector, struct edid *edid)
1006{
1007 struct drm_device *dev = connector->dev;
1008 unsigned long est_bits = edid->established_timings.t1 |
1009 (edid->established_timings.t2 << 8) |
1010 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
1011 int i, modes = 0;
1012
1013 for (i = 0; i <= EDID_EST_TIMINGS; i++)
1014 if (est_bits & (1<<i)) {
1015 struct drm_display_mode *newmode;
1016 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
1017 if (newmode) {
1018 drm_mode_probed_add(connector, newmode);
1019 modes++;
1020 }
1021 }
1022
1023 return modes;
1024}
Zhao Yakui5c612592009-06-22 13:17:10 +08001025/**
1026 * stanard_timing_level - get std. timing level(CVT/GTF/DMT)
1027 * @edid: EDID block to scan
1028 */
1029static int standard_timing_level(struct edid *edid)
1030{
1031 if (edid->revision >= 2) {
1032 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
1033 return LEVEL_CVT;
1034 return LEVEL_GTF;
1035 }
1036 return LEVEL_DMT;
1037}
Dave Airlief453ba02008-11-07 14:05:41 -08001038
1039/**
1040 * add_standard_modes - get std. modes from EDID and add them
1041 * @edid: EDID block to scan
1042 *
1043 * Standard modes can be calculated using the CVT standard. Grab them from
1044 * @edid, calculate them, and add them to the list.
1045 */
1046static int add_standard_modes(struct drm_connector *connector, struct edid *edid)
1047{
1048 struct drm_device *dev = connector->dev;
1049 int i, modes = 0;
Zhao Yakui5c612592009-06-22 13:17:10 +08001050 int timing_level;
1051
1052 timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -08001053
1054 for (i = 0; i < EDID_STD_TIMINGS; i++) {
1055 struct std_timing *t = &edid->standard_timings[i];
1056 struct drm_display_mode *newmode;
1057
Zhao Yakui5c612592009-06-22 13:17:10 +08001058 newmode = drm_mode_std(dev, &edid->standard_timings[i],
Adam Jacksonf066a172009-09-23 17:31:21 -04001059 edid->revision, timing_level);
Dave Airlief453ba02008-11-07 14:05:41 -08001060 if (newmode) {
1061 drm_mode_probed_add(connector, newmode);
1062 modes++;
1063 }
1064 }
1065
1066 return modes;
1067}
1068
Adam Jackson07a5e632009-12-03 17:44:38 -05001069/*
1070 * XXX fix this for:
1071 * - GTF secondary curve formula
1072 * - EDID 1.4 range offsets
1073 * - CVT extended bits
1074 */
1075static bool
1076mode_in_range(struct drm_display_mode *mode, struct detailed_timing *timing)
1077{
1078 struct detailed_data_monitor_range *range;
1079 int hsync, vrefresh;
1080
1081 range = &timing->data.other_data.data.range;
1082
1083 hsync = drm_mode_hsync(mode);
1084 vrefresh = drm_mode_vrefresh(mode);
1085
1086 if (hsync < range->min_hfreq_khz || hsync > range->max_hfreq_khz)
1087 return false;
1088
1089 if (vrefresh < range->min_vfreq || vrefresh > range->max_vfreq)
1090 return false;
1091
1092 if (range->pixel_clock_mhz && range->pixel_clock_mhz != 0xff) {
1093 /* be forgiving since it's in units of 10MHz */
1094 int max_clock = range->pixel_clock_mhz * 10 + 9;
1095 max_clock *= 1000;
1096 if (mode->clock > max_clock)
1097 return false;
1098 }
1099
1100 return true;
1101}
1102
1103/*
1104 * XXX If drm_dmt_modes ever regrows the CVT-R modes (and it will) this will
1105 * need to account for them.
1106 */
1107static int drm_gtf_modes_for_range(struct drm_connector *connector,
1108 struct detailed_timing *timing)
1109{
1110 int i, modes = 0;
1111 struct drm_display_mode *newmode;
1112 struct drm_device *dev = connector->dev;
1113
1114 for (i = 0; i < drm_num_dmt_modes; i++) {
1115 if (mode_in_range(drm_dmt_modes + i, timing)) {
1116 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
1117 if (newmode) {
1118 drm_mode_probed_add(connector, newmode);
1119 modes++;
1120 }
1121 }
1122 }
1123
1124 return modes;
1125}
1126
Adam Jackson9340d8c2009-12-03 17:44:40 -05001127static int drm_cvt_modes(struct drm_connector *connector,
1128 struct detailed_timing *timing)
1129{
1130 int i, j, modes = 0;
1131 struct drm_display_mode *newmode;
1132 struct drm_device *dev = connector->dev;
1133 struct cvt_timing *cvt;
1134 const int rates[] = { 60, 85, 75, 60, 50 };
Adam Jackson69da3012010-01-04 17:53:06 -05001135 const u8 empty[3] = { 0, 0, 0 };
Adam Jackson9340d8c2009-12-03 17:44:40 -05001136
1137 for (i = 0; i < 4; i++) {
Marin Mitov29ebdf92009-12-20 09:03:27 +02001138 int uninitialized_var(width), height;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001139 cvt = &(timing->data.other_data.data.cvt[i]);
1140
Adam Jackson69da3012010-01-04 17:53:06 -05001141 if (!memcmp(cvt->code, empty, 3))
1142 continue;
1143
Adam Jackson8e10ee92010-01-04 17:53:07 -05001144 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
1145 switch (cvt->code[1] & 0x0c) {
Adam Jackson9340d8c2009-12-03 17:44:40 -05001146 case 0x00:
1147 width = height * 4 / 3;
1148 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001149 case 0x04:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001150 width = height * 16 / 9;
1151 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001152 case 0x08:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001153 width = height * 16 / 10;
1154 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001155 case 0x0c:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001156 width = height * 15 / 9;
1157 break;
1158 }
1159
1160 for (j = 1; j < 5; j++) {
1161 if (cvt->code[2] & (1 << j)) {
1162 newmode = drm_cvt_mode(dev, width, height,
1163 rates[j], j == 0,
1164 false, false);
1165 if (newmode) {
1166 drm_mode_probed_add(connector, newmode);
1167 modes++;
1168 }
1169 }
1170 }
1171 }
1172
1173 return modes;
1174}
1175
Adam Jackson2255be12010-03-29 21:43:22 +00001176static const struct {
1177 short w;
1178 short h;
1179 short r;
1180 short rb;
1181} est3_modes[] = {
1182 /* byte 6 */
1183 { 640, 350, 85, 0 },
1184 { 640, 400, 85, 0 },
1185 { 720, 400, 85, 0 },
1186 { 640, 480, 85, 0 },
1187 { 848, 480, 60, 0 },
1188 { 800, 600, 85, 0 },
1189 { 1024, 768, 85, 0 },
1190 { 1152, 864, 75, 0 },
1191 /* byte 7 */
1192 { 1280, 768, 60, 1 },
1193 { 1280, 768, 60, 0 },
1194 { 1280, 768, 75, 0 },
1195 { 1280, 768, 85, 0 },
1196 { 1280, 960, 60, 0 },
1197 { 1280, 960, 85, 0 },
1198 { 1280, 1024, 60, 0 },
1199 { 1280, 1024, 85, 0 },
1200 /* byte 8 */
1201 { 1360, 768, 60, 0 },
1202 { 1440, 900, 60, 1 },
1203 { 1440, 900, 60, 0 },
1204 { 1440, 900, 75, 0 },
1205 { 1440, 900, 85, 0 },
1206 { 1400, 1050, 60, 1 },
1207 { 1400, 1050, 60, 0 },
1208 { 1400, 1050, 75, 0 },
1209 /* byte 9 */
1210 { 1400, 1050, 85, 0 },
1211 { 1680, 1050, 60, 1 },
1212 { 1680, 1050, 60, 0 },
1213 { 1680, 1050, 75, 0 },
1214 { 1680, 1050, 85, 0 },
1215 { 1600, 1200, 60, 0 },
1216 { 1600, 1200, 65, 0 },
1217 { 1600, 1200, 70, 0 },
1218 /* byte 10 */
1219 { 1600, 1200, 75, 0 },
1220 { 1600, 1200, 85, 0 },
1221 { 1792, 1344, 60, 0 },
1222 { 1792, 1344, 85, 0 },
1223 { 1856, 1392, 60, 0 },
1224 { 1856, 1392, 75, 0 },
1225 { 1920, 1200, 60, 1 },
1226 { 1920, 1200, 60, 0 },
1227 /* byte 11 */
1228 { 1920, 1200, 75, 0 },
1229 { 1920, 1200, 85, 0 },
1230 { 1920, 1440, 60, 0 },
1231 { 1920, 1440, 75, 0 },
1232};
1233static const int num_est3_modes = sizeof(est3_modes) / sizeof(est3_modes[0]);
1234
1235static int
1236drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
1237{
1238 int i, j, m, modes = 0;
1239 struct drm_display_mode *mode;
1240 u8 *est = ((u8 *)timing) + 5;
1241
1242 for (i = 0; i < 6; i++) {
1243 for (j = 7; j > 0; j--) {
1244 m = (i * 8) + (7 - j);
1245 if (m > num_est3_modes)
1246 break;
1247 if (est[i] & (1 << j)) {
1248 mode = drm_find_dmt(connector->dev,
1249 est3_modes[m].w,
1250 est3_modes[m].h,
1251 est3_modes[m].r
1252 /*, est3_modes[m].rb */);
1253 if (mode) {
1254 drm_mode_probed_add(connector, mode);
1255 modes++;
1256 }
1257 }
1258 }
1259 }
1260
1261 return modes;
1262}
1263
Adam Jackson9cf00972009-12-03 17:44:36 -05001264static int add_detailed_modes(struct drm_connector *connector,
1265 struct detailed_timing *timing,
1266 struct edid *edid, u32 quirks, int preferred)
1267{
1268 int i, modes = 0;
1269 struct detailed_non_pixel *data = &timing->data.other_data;
1270 int timing_level = standard_timing_level(edid);
Adam Jackson07a5e632009-12-03 17:44:38 -05001271 int gtf = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF);
Adam Jackson9cf00972009-12-03 17:44:36 -05001272 struct drm_display_mode *newmode;
1273 struct drm_device *dev = connector->dev;
1274
1275 if (timing->pixel_clock) {
1276 newmode = drm_mode_detailed(dev, edid, timing, quirks);
1277 if (!newmode)
1278 return 0;
1279
1280 if (preferred)
1281 newmode->type |= DRM_MODE_TYPE_PREFERRED;
1282
1283 drm_mode_probed_add(connector, newmode);
1284 return 1;
1285 }
1286
1287 /* other timing types */
1288 switch (data->type) {
1289 case EDID_DETAIL_MONITOR_RANGE:
Adam Jackson07a5e632009-12-03 17:44:38 -05001290 if (gtf)
1291 modes += drm_gtf_modes_for_range(connector, timing);
Adam Jackson9cf00972009-12-03 17:44:36 -05001292 break;
1293 case EDID_DETAIL_STD_MODES:
1294 /* Six modes per detailed section */
1295 for (i = 0; i < 6; i++) {
1296 struct std_timing *std;
1297 struct drm_display_mode *newmode;
1298
1299 std = &data->data.timings[i];
1300 newmode = drm_mode_std(dev, std, edid->revision,
1301 timing_level);
1302 if (newmode) {
1303 drm_mode_probed_add(connector, newmode);
1304 modes++;
1305 }
1306 }
1307 break;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001308 case EDID_DETAIL_CVT_3BYTE:
1309 modes += drm_cvt_modes(connector, timing);
1310 break;
Adam Jackson2255be12010-03-29 21:43:22 +00001311 case EDID_DETAIL_EST_TIMINGS:
1312 modes += drm_est3_modes(connector, timing);
1313 break;
Adam Jackson9cf00972009-12-03 17:44:36 -05001314 default:
1315 break;
1316 }
1317
1318 return modes;
1319}
1320
Dave Airlief453ba02008-11-07 14:05:41 -08001321/**
Adam Jackson9cf00972009-12-03 17:44:36 -05001322 * add_detailed_info - get detailed mode info from EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08001323 * @connector: attached connector
1324 * @edid: EDID block to scan
1325 * @quirks: quirks to apply
1326 *
1327 * Some of the detailed timing sections may contain mode information. Grab
1328 * it and add it to the list.
1329 */
1330static int add_detailed_info(struct drm_connector *connector,
1331 struct edid *edid, u32 quirks)
1332{
Adam Jackson9cf00972009-12-03 17:44:36 -05001333 int i, modes = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001334
1335 for (i = 0; i < EDID_DETAILED_TIMINGS; i++) {
1336 struct detailed_timing *timing = &edid->detailed_timings[i];
Adam Jacksona327f6b2010-03-29 21:43:25 +00001337 int preferred = (i == 0);
1338
1339 if (preferred && edid->version == 1 && edid->revision < 4)
1340 preferred = (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Dave Airlief453ba02008-11-07 14:05:41 -08001341
Adam Jackson9cf00972009-12-03 17:44:36 -05001342 /* In 1.0, only timings are allowed */
1343 if (!timing->pixel_clock && edid->version == 1 &&
1344 edid->revision == 0)
1345 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08001346
Adam Jackson9cf00972009-12-03 17:44:36 -05001347 modes += add_detailed_modes(connector, timing, edid, quirks,
1348 preferred);
Dave Airlief453ba02008-11-07 14:05:41 -08001349 }
1350
1351 return modes;
1352}
Adam Jackson9cf00972009-12-03 17:44:36 -05001353
Zhao Yakui882f0212009-08-26 18:20:49 +08001354/**
1355 * add_detailed_mode_eedid - get detailed mode info from addtional timing
1356 * EDID block
1357 * @connector: attached connector
1358 * @edid: EDID block to scan(It is only to get addtional timing EDID block)
1359 * @quirks: quirks to apply
1360 *
1361 * Some of the detailed timing sections may contain mode information. Grab
1362 * it and add it to the list.
1363 */
1364static int add_detailed_info_eedid(struct drm_connector *connector,
1365 struct edid *edid, u32 quirks)
1366{
Adam Jackson9cf00972009-12-03 17:44:36 -05001367 int i, modes = 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001368 char *edid_ext = NULL;
1369 struct detailed_timing *timing;
Zhao Yakui882f0212009-08-26 18:20:49 +08001370 int start_offset, end_offset;
1371 int timing_level;
1372
Adam Jackson59d8aff2010-03-29 21:43:24 +00001373 if (edid->version == 1 && edid->revision < 3)
Zhao Yakui882f0212009-08-26 18:20:49 +08001374 return 0;
Adam Jackson59d8aff2010-03-29 21:43:24 +00001375 if (!edid->extensions)
Zhao Yakui882f0212009-08-26 18:20:49 +08001376 return 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001377
Zhao Yakui882f0212009-08-26 18:20:49 +08001378 /* Find CEA extension */
Adam Jackson7466f4c2010-03-29 21:43:23 +00001379 for (i = 0; i < edid->extensions; i++) {
Zhao Yakui882f0212009-08-26 18:20:49 +08001380 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
Zhao Yakui882f0212009-08-26 18:20:49 +08001381 if (edid_ext[0] == 0x02)
1382 break;
1383 }
1384
Adam Jackson59d8aff2010-03-29 21:43:24 +00001385 if (i == edid->extensions)
Zhao Yakui882f0212009-08-26 18:20:49 +08001386 return 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001387
1388 /* Get the start offset of detailed timing block */
1389 start_offset = edid_ext[2];
1390 if (start_offset == 0) {
1391 /* If the start_offset is zero, it means that neither detailed
1392 * info nor data block exist. In such case it is also
1393 * unnecessary to parse the detailed timing info.
1394 */
1395 return 0;
1396 }
1397
1398 timing_level = standard_timing_level(edid);
1399 end_offset = EDID_LENGTH;
1400 end_offset -= sizeof(struct detailed_timing);
1401 for (i = start_offset; i < end_offset;
1402 i += sizeof(struct detailed_timing)) {
1403 timing = (struct detailed_timing *)(edid_ext + i);
Adam Jackson9cf00972009-12-03 17:44:36 -05001404 modes += add_detailed_modes(connector, timing, edid, quirks, 0);
Zhao Yakui882f0212009-08-26 18:20:49 +08001405 }
1406
1407 return modes;
1408}
Dave Airlief453ba02008-11-07 14:05:41 -08001409
Ma Lingf23c20c2009-03-26 19:26:23 +08001410#define HDMI_IDENTIFIER 0x000C03
1411#define VENDOR_BLOCK 0x03
1412/**
1413 * drm_detect_hdmi_monitor - detect whether monitor is hdmi.
1414 * @edid: monitor EDID information
1415 *
1416 * Parse the CEA extension according to CEA-861-B.
1417 * Return true if HDMI, false if not or unknown.
1418 */
1419bool drm_detect_hdmi_monitor(struct edid *edid)
1420{
1421 char *edid_ext = NULL;
Adam Jackson7466f4c2010-03-29 21:43:23 +00001422 int i, hdmi_id;
Ma Lingf23c20c2009-03-26 19:26:23 +08001423 int start_offset, end_offset;
1424 bool is_hdmi = false;
1425
1426 /* No EDID or EDID extensions */
1427 if (edid == NULL || edid->extensions == 0)
1428 goto end;
1429
Ma Lingf23c20c2009-03-26 19:26:23 +08001430 /* Find CEA extension */
Adam Jackson7466f4c2010-03-29 21:43:23 +00001431 for (i = 0; i < edid->extensions; i++) {
Ma Lingf23c20c2009-03-26 19:26:23 +08001432 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1433 /* This block is CEA extension */
1434 if (edid_ext[0] == 0x02)
1435 break;
1436 }
1437
Adam Jackson7466f4c2010-03-29 21:43:23 +00001438 if (i == edid->extensions)
Ma Lingf23c20c2009-03-26 19:26:23 +08001439 goto end;
1440
1441 /* Data block offset in CEA extension block */
1442 start_offset = 4;
1443 end_offset = edid_ext[2];
1444
1445 /*
1446 * Because HDMI identifier is in Vendor Specific Block,
1447 * search it from all data blocks of CEA extension.
1448 */
1449 for (i = start_offset; i < end_offset;
1450 /* Increased by data block len */
1451 i += ((edid_ext[i] & 0x1f) + 1)) {
1452 /* Find vendor specific block */
1453 if ((edid_ext[i] >> 5) == VENDOR_BLOCK) {
1454 hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) |
1455 edid_ext[i + 3] << 16;
1456 /* Find HDMI identifier */
1457 if (hdmi_id == HDMI_IDENTIFIER)
1458 is_hdmi = true;
1459 break;
1460 }
1461 }
1462
1463end:
1464 return is_hdmi;
1465}
1466EXPORT_SYMBOL(drm_detect_hdmi_monitor);
1467
Dave Airlief453ba02008-11-07 14:05:41 -08001468/**
1469 * drm_add_edid_modes - add modes from EDID data, if available
1470 * @connector: connector we're probing
1471 * @edid: edid data
1472 *
1473 * Add the specified modes to the connector's mode list.
1474 *
1475 * Return number of modes added or 0 if we couldn't find any.
1476 */
1477int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
1478{
1479 int num_modes = 0;
1480 u32 quirks;
1481
1482 if (edid == NULL) {
1483 return 0;
1484 }
Alex Deucher3c537882010-02-05 04:21:19 -05001485 if (!drm_edid_is_valid(edid)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001486 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1487 drm_get_connector_name(connector));
1488 return 0;
1489 }
1490
1491 quirks = edid_get_quirks(edid);
1492
Adam Jacksonc867df72010-03-29 21:43:21 +00001493 /*
1494 * EDID spec says modes should be preferred in this order:
1495 * - preferred detailed mode
1496 * - other detailed modes from base block
1497 * - detailed modes from extension blocks
1498 * - CVT 3-byte code modes
1499 * - standard timing codes
1500 * - established timing codes
1501 * - modes inferred from GTF or CVT range information
1502 *
1503 * We don't quite implement this yet, but we're close.
1504 *
1505 * XXX order for additional mode types in extension blocks?
1506 */
Dave Airlief453ba02008-11-07 14:05:41 -08001507 num_modes += add_detailed_info(connector, edid, quirks);
Zhao Yakui882f0212009-08-26 18:20:49 +08001508 num_modes += add_detailed_info_eedid(connector, edid, quirks);
Adam Jacksonc867df72010-03-29 21:43:21 +00001509 num_modes += add_standard_modes(connector, edid);
1510 num_modes += add_established_modes(connector, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08001511
1512 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
1513 edid_fixup_preferred(connector, quirks);
1514
Michel Dänzer0454bea2009-06-15 16:56:07 +02001515 connector->display_info.serration_vsync = (edid->input & DRM_EDID_INPUT_SERRATION_VSYNC) ? 1 : 0;
1516 connector->display_info.sync_on_green = (edid->input & DRM_EDID_INPUT_SYNC_ON_GREEN) ? 1 : 0;
1517 connector->display_info.composite_sync = (edid->input & DRM_EDID_INPUT_COMPOSITE_SYNC) ? 1 : 0;
1518 connector->display_info.separate_syncs = (edid->input & DRM_EDID_INPUT_SEPARATE_SYNCS) ? 1 : 0;
1519 connector->display_info.blank_to_black = (edid->input & DRM_EDID_INPUT_BLANK_TO_BLACK) ? 1 : 0;
1520 connector->display_info.video_level = (edid->input & DRM_EDID_INPUT_VIDEO_LEVEL) >> 5;
1521 connector->display_info.digital = (edid->input & DRM_EDID_INPUT_DIGITAL) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001522 connector->display_info.width_mm = edid->width_cm * 10;
1523 connector->display_info.height_mm = edid->height_cm * 10;
1524 connector->display_info.gamma = edid->gamma;
Michel Dänzer0454bea2009-06-15 16:56:07 +02001525 connector->display_info.gtf_supported = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF) ? 1 : 0;
1526 connector->display_info.standard_color = (edid->features & DRM_EDID_FEATURE_STANDARD_COLOR) ? 1 : 0;
1527 connector->display_info.display_type = (edid->features & DRM_EDID_FEATURE_DISPLAY_TYPE) >> 3;
1528 connector->display_info.active_off_supported = (edid->features & DRM_EDID_FEATURE_PM_ACTIVE_OFF) ? 1 : 0;
1529 connector->display_info.suspend_supported = (edid->features & DRM_EDID_FEATURE_PM_SUSPEND) ? 1 : 0;
1530 connector->display_info.standby_supported = (edid->features & DRM_EDID_FEATURE_PM_STANDBY) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001531 connector->display_info.gamma = edid->gamma;
1532
1533 return num_modes;
1534}
1535EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001536
1537/**
1538 * drm_add_modes_noedid - add modes for the connectors without EDID
1539 * @connector: connector we're probing
1540 * @hdisplay: the horizontal display limit
1541 * @vdisplay: the vertical display limit
1542 *
1543 * Add the specified modes to the connector's mode list. Only when the
1544 * hdisplay/vdisplay is not beyond the given limit, it will be added.
1545 *
1546 * Return number of modes added or 0 if we couldn't find any.
1547 */
1548int drm_add_modes_noedid(struct drm_connector *connector,
1549 int hdisplay, int vdisplay)
1550{
1551 int i, count, num_modes = 0;
1552 struct drm_display_mode *mode, *ptr;
1553 struct drm_device *dev = connector->dev;
1554
1555 count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
1556 if (hdisplay < 0)
1557 hdisplay = 0;
1558 if (vdisplay < 0)
1559 vdisplay = 0;
1560
1561 for (i = 0; i < count; i++) {
1562 ptr = &drm_dmt_modes[i];
1563 if (hdisplay && vdisplay) {
1564 /*
1565 * Only when two are valid, they will be used to check
1566 * whether the mode should be added to the mode list of
1567 * the connector.
1568 */
1569 if (ptr->hdisplay > hdisplay ||
1570 ptr->vdisplay > vdisplay)
1571 continue;
1572 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05001573 if (drm_mode_vrefresh(ptr) > 61)
1574 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001575 mode = drm_mode_duplicate(dev, ptr);
1576 if (mode) {
1577 drm_mode_probed_add(connector, mode);
1578 num_modes++;
1579 }
1580 }
1581 return num_modes;
1582}
1583EXPORT_SYMBOL(drm_add_modes_noedid);