blob: 1bf81b91b70f1c860270505b940f5fa684250803 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Dave Airlief453ba02008-11-07 14:05:41 -080032#include <linux/i2c.h>
33#include <linux/i2c-algo-bit.h>
34#include "drmP.h"
35#include "drm_edid.h"
36
Adam Jacksond1ff6402010-03-29 21:43:26 +000037#define EDID_EST_TIMINGS 16
38#define EDID_STD_TIMINGS 8
39#define EDID_DETAILED_TIMINGS 4
Dave Airlief453ba02008-11-07 14:05:41 -080040
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
Adam Jackson7a374352010-03-29 21:43:30 +000068#define LEVEL_GTF2 2
69#define LEVEL_CVT 3
Zhao Yakui5c612592009-06-22 13:17:10 +080070
Dave Airlief453ba02008-11-07 14:05:41 -080071static struct edid_quirk {
72 char *vendor;
73 int product_id;
74 u32 quirks;
75} edid_quirk_list[] = {
76 /* Acer AL1706 */
77 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
78 /* Acer F51 */
79 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
80 /* Unknown Acer */
81 { "ACR", 2423, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
82
83 /* Belinea 10 15 55 */
84 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
85 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
86
87 /* Envision Peripherals, Inc. EN-7100e */
88 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
Adam Jacksonba1163d2010-04-06 16:11:00 +000089 /* Envision EN2028 */
90 { "EPI", 8232, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -080091
92 /* Funai Electronics PM36B */
93 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
94 EDID_QUIRK_DETAILED_IN_CM },
95
96 /* LG Philips LCD LP154W01-A5 */
97 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
98 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
99
100 /* Philips 107p5 CRT */
101 { "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
102
103 /* Proview AY765C */
104 { "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
105
106 /* Samsung SyncMaster 205BW. Note: irony */
107 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
108 /* Samsung SyncMaster 22[5-6]BW */
109 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
110 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
111};
112
Adam Jackson61e57a82010-03-29 21:43:18 +0000113/*** DDC fetch and block validation ***/
Dave Airlief453ba02008-11-07 14:05:41 -0800114
Adam Jackson083ae052009-09-23 17:30:45 -0400115static const u8 edid_header[] = {
116 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
117};
Dave Airlief453ba02008-11-07 14:05:41 -0800118
Adam Jackson61e57a82010-03-29 21:43:18 +0000119/*
120 * Sanity check the EDID block (base or extension). Return 0 if the block
121 * doesn't check out, or 1 if it's valid.
Dave Airlief453ba02008-11-07 14:05:41 -0800122 */
Adam Jackson61e57a82010-03-29 21:43:18 +0000123static bool
124drm_edid_block_valid(u8 *raw_edid)
Dave Airlief453ba02008-11-07 14:05:41 -0800125{
Adam Jackson61e57a82010-03-29 21:43:18 +0000126 int i;
Dave Airlief453ba02008-11-07 14:05:41 -0800127 u8 csum = 0;
Adam Jackson61e57a82010-03-29 21:43:18 +0000128 struct edid *edid = (struct edid *)raw_edid;
Dave Airlief453ba02008-11-07 14:05:41 -0800129
Adam Jackson61e57a82010-03-29 21:43:18 +0000130 if (raw_edid[0] == 0x00) {
131 int score = 0;
Adam Jackson862b89c2009-11-23 14:23:06 -0500132
Adam Jackson61e57a82010-03-29 21:43:18 +0000133 for (i = 0; i < sizeof(edid_header); i++)
134 if (raw_edid[i] == edid_header[i])
135 score++;
136
137 if (score == 8) ;
138 else if (score >= 6) {
139 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
140 memcpy(raw_edid, edid_header, sizeof(edid_header));
141 } else {
142 goto bad;
143 }
144 }
Dave Airlief453ba02008-11-07 14:05:41 -0800145
146 for (i = 0; i < EDID_LENGTH; i++)
147 csum += raw_edid[i];
148 if (csum) {
149 DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
Adam Jackson4a638b42010-05-25 16:33:09 -0400150
151 /* allow CEA to slide through, switches mangle this */
152 if (raw_edid[0] != 0x02)
153 goto bad;
Dave Airlief453ba02008-11-07 14:05:41 -0800154 }
155
Adam Jackson61e57a82010-03-29 21:43:18 +0000156 /* per-block-type checks */
157 switch (raw_edid[0]) {
158 case 0: /* base */
159 if (edid->version != 1) {
160 DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
161 goto bad;
162 }
Adam Jackson862b89c2009-11-23 14:23:06 -0500163
Adam Jackson61e57a82010-03-29 21:43:18 +0000164 if (edid->revision > 4)
165 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
166 break;
167
168 default:
169 break;
170 }
Adam Jackson47ee4cc2009-11-23 14:23:05 -0500171
Dave Airlief453ba02008-11-07 14:05:41 -0800172 return 1;
173
174bad:
175 if (raw_edid) {
176 DRM_ERROR("Raw EDID:\n");
177 print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
178 printk("\n");
179 }
180 return 0;
181}
Adam Jackson61e57a82010-03-29 21:43:18 +0000182
183/**
184 * drm_edid_is_valid - sanity check EDID data
185 * @edid: EDID data
186 *
187 * Sanity-check an entire EDID record (including extensions)
188 */
189bool drm_edid_is_valid(struct edid *edid)
190{
191 int i;
192 u8 *raw = (u8 *)edid;
193
194 if (!edid)
195 return false;
196
197 for (i = 0; i <= edid->extensions; i++)
198 if (!drm_edid_block_valid(raw + i * EDID_LENGTH))
199 return false;
200
201 return true;
202}
Alex Deucher3c537882010-02-05 04:21:19 -0500203EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -0800204
Adam Jackson61e57a82010-03-29 21:43:18 +0000205#define DDC_ADDR 0x50
206#define DDC_SEGMENT_ADDR 0x30
207/**
208 * Get EDID information via I2C.
209 *
210 * \param adapter : i2c device adaptor
211 * \param buf : EDID data buffer to be filled
212 * \param len : EDID data buffer length
213 * \return 0 on success or -1 on failure.
214 *
215 * Try to fetch EDID information by calling i2c driver function.
216 */
217static int
218drm_do_probe_ddc_edid(struct i2c_adapter *adapter, unsigned char *buf,
219 int block, int len)
220{
221 unsigned char start = block * EDID_LENGTH;
222 struct i2c_msg msgs[] = {
223 {
224 .addr = DDC_ADDR,
225 .flags = 0,
226 .len = 1,
227 .buf = &start,
228 }, {
229 .addr = DDC_ADDR,
230 .flags = I2C_M_RD,
231 .len = len,
232 .buf = buf + start,
233 }
234 };
235
236 if (i2c_transfer(adapter, msgs, 2) == 2)
237 return 0;
238
239 return -1;
240}
241
242static u8 *
243drm_do_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
244{
245 int i, j = 0;
246 u8 *block, *new;
247
248 if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
249 return NULL;
250
251 /* base block fetch */
252 for (i = 0; i < 4; i++) {
253 if (drm_do_probe_ddc_edid(adapter, block, 0, EDID_LENGTH))
254 goto out;
255 if (drm_edid_block_valid(block))
256 break;
257 }
258 if (i == 4)
259 goto carp;
260
261 /* if there's no extensions, we're done */
262 if (block[0x7e] == 0)
263 return block;
264
265 new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
266 if (!new)
267 goto out;
268 block = new;
269
270 for (j = 1; j <= block[0x7e]; j++) {
271 for (i = 0; i < 4; i++) {
272 if (drm_do_probe_ddc_edid(adapter, block, j,
273 EDID_LENGTH))
274 goto out;
275 if (drm_edid_block_valid(block + j * EDID_LENGTH))
276 break;
277 }
278 if (i == 4)
279 goto carp;
280 }
281
282 return block;
283
284carp:
Jordan Crousedcdb1672010-05-27 13:40:25 -0600285 dev_warn(connector->dev->dev, "%s: EDID block %d invalid.\n",
Adam Jackson61e57a82010-03-29 21:43:18 +0000286 drm_get_connector_name(connector), j);
287
288out:
289 kfree(block);
290 return NULL;
291}
292
293/**
294 * Probe DDC presence.
295 *
296 * \param adapter : i2c device adaptor
297 * \return 1 on success
298 */
299static bool
300drm_probe_ddc(struct i2c_adapter *adapter)
301{
302 unsigned char out;
303
304 return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
305}
306
307/**
308 * drm_get_edid - get EDID data, if available
309 * @connector: connector we're probing
310 * @adapter: i2c adapter to use for DDC
311 *
312 * Poke the given i2c channel to grab EDID data if possible. If found,
313 * attach it to the connector.
314 *
315 * Return edid data or NULL if we couldn't find any.
316 */
317struct edid *drm_get_edid(struct drm_connector *connector,
318 struct i2c_adapter *adapter)
319{
320 struct edid *edid = NULL;
321
322 if (drm_probe_ddc(adapter))
323 edid = (struct edid *)drm_do_get_edid(connector, adapter);
324
325 connector->display_info.raw_edid = (char *)edid;
326
327 return edid;
328
329}
330EXPORT_SYMBOL(drm_get_edid);
331
332/*** EDID parsing ***/
333
Dave Airlief453ba02008-11-07 14:05:41 -0800334/**
335 * edid_vendor - match a string against EDID's obfuscated vendor field
336 * @edid: EDID to match
337 * @vendor: vendor string
338 *
339 * Returns true if @vendor is in @edid, false otherwise
340 */
341static bool edid_vendor(struct edid *edid, char *vendor)
342{
343 char edid_vendor[3];
344
345 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
346 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
347 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +1000348 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -0800349
350 return !strncmp(edid_vendor, vendor, 3);
351}
352
353/**
354 * edid_get_quirks - return quirk flags for a given EDID
355 * @edid: EDID to process
356 *
357 * This tells subsequent routines what fixes they need to apply.
358 */
359static u32 edid_get_quirks(struct edid *edid)
360{
361 struct edid_quirk *quirk;
362 int i;
363
364 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
365 quirk = &edid_quirk_list[i];
366
367 if (edid_vendor(edid, quirk->vendor) &&
368 (EDID_PRODUCT_ID(edid) == quirk->product_id))
369 return quirk->quirks;
370 }
371
372 return 0;
373}
374
375#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
376#define MODE_REFRESH_DIFF(m,r) (abs((m)->vrefresh - target_refresh))
377
378
379/**
380 * edid_fixup_preferred - set preferred modes based on quirk list
381 * @connector: has mode list to fix up
382 * @quirks: quirks list
383 *
384 * Walk the mode list for @connector, clearing the preferred status
385 * on existing modes and setting it anew for the right mode ala @quirks.
386 */
387static void edid_fixup_preferred(struct drm_connector *connector,
388 u32 quirks)
389{
390 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +1000391 int target_refresh = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800392
393 if (list_empty(&connector->probed_modes))
394 return;
395
396 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
397 target_refresh = 60;
398 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
399 target_refresh = 75;
400
401 preferred_mode = list_first_entry(&connector->probed_modes,
402 struct drm_display_mode, head);
403
404 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
405 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
406
407 if (cur_mode == preferred_mode)
408 continue;
409
410 /* Largest mode is preferred */
411 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
412 preferred_mode = cur_mode;
413
414 /* At a given size, try to get closest to target refresh */
415 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
416 MODE_REFRESH_DIFF(cur_mode, target_refresh) <
417 MODE_REFRESH_DIFF(preferred_mode, target_refresh)) {
418 preferred_mode = cur_mode;
419 }
420 }
421
422 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
423}
424
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800425/*
426 * Add the Autogenerated from the DMT spec.
427 * This table is copied from xfree86/modes/xf86EdidModes.c.
428 * But the mode with Reduced blank feature is deleted.
429 */
430static struct drm_display_mode drm_dmt_modes[] = {
431 /* 640x350@85Hz */
432 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
433 736, 832, 0, 350, 382, 385, 445, 0,
434 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
435 /* 640x400@85Hz */
436 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
437 736, 832, 0, 400, 401, 404, 445, 0,
438 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
439 /* 720x400@85Hz */
440 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
441 828, 936, 0, 400, 401, 404, 446, 0,
442 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
443 /* 640x480@60Hz */
444 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
445 752, 800, 0, 480, 489, 492, 525, 0,
446 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
447 /* 640x480@72Hz */
448 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
449 704, 832, 0, 480, 489, 492, 520, 0,
450 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
451 /* 640x480@75Hz */
452 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
453 720, 840, 0, 480, 481, 484, 500, 0,
454 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
455 /* 640x480@85Hz */
456 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
457 752, 832, 0, 480, 481, 484, 509, 0,
458 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
459 /* 800x600@56Hz */
460 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
461 896, 1024, 0, 600, 601, 603, 625, 0,
462 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
463 /* 800x600@60Hz */
464 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
465 968, 1056, 0, 600, 601, 605, 628, 0,
466 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
467 /* 800x600@72Hz */
468 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
469 976, 1040, 0, 600, 637, 643, 666, 0,
470 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
471 /* 800x600@75Hz */
472 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
473 896, 1056, 0, 600, 601, 604, 625, 0,
474 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
475 /* 800x600@85Hz */
476 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
477 896, 1048, 0, 600, 601, 604, 631, 0,
478 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
479 /* 848x480@60Hz */
480 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
481 976, 1088, 0, 480, 486, 494, 517, 0,
482 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
483 /* 1024x768@43Hz, interlace */
484 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
485 1208, 1264, 0, 768, 768, 772, 817, 0,
486 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
487 DRM_MODE_FLAG_INTERLACE) },
488 /* 1024x768@60Hz */
489 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
490 1184, 1344, 0, 768, 771, 777, 806, 0,
491 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
492 /* 1024x768@70Hz */
493 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
494 1184, 1328, 0, 768, 771, 777, 806, 0,
495 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
496 /* 1024x768@75Hz */
497 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
498 1136, 1312, 0, 768, 769, 772, 800, 0,
499 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
500 /* 1024x768@85Hz */
501 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
Adam Jackson61dd98f2010-05-13 14:55:28 -0400502 1168, 1376, 0, 768, 769, 772, 808, 0,
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800503 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
504 /* 1152x864@75Hz */
505 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
506 1344, 1600, 0, 864, 865, 868, 900, 0,
507 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
508 /* 1280x768@60Hz */
509 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
510 1472, 1664, 0, 768, 771, 778, 798, 0,
511 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
512 /* 1280x768@75Hz */
513 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
514 1488, 1696, 0, 768, 771, 778, 805, 0,
515 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
516 /* 1280x768@85Hz */
517 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
518 1496, 1712, 0, 768, 771, 778, 809, 0,
519 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
520 /* 1280x800@60Hz */
521 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
522 1480, 1680, 0, 800, 803, 809, 831, 0,
523 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
524 /* 1280x800@75Hz */
525 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
526 1488, 1696, 0, 800, 803, 809, 838, 0,
527 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
528 /* 1280x800@85Hz */
529 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
530 1496, 1712, 0, 800, 803, 809, 843, 0,
531 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
532 /* 1280x960@60Hz */
533 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
534 1488, 1800, 0, 960, 961, 964, 1000, 0,
535 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
536 /* 1280x960@85Hz */
537 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
538 1504, 1728, 0, 960, 961, 964, 1011, 0,
539 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
540 /* 1280x1024@60Hz */
541 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
542 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
543 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
544 /* 1280x1024@75Hz */
545 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
546 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
547 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
548 /* 1280x1024@85Hz */
549 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
550 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
551 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
552 /* 1360x768@60Hz */
553 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
554 1536, 1792, 0, 768, 771, 777, 795, 0,
555 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
556 /* 1440x1050@60Hz */
557 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
558 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
559 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
560 /* 1440x1050@75Hz */
561 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
562 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
563 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
564 /* 1440x1050@85Hz */
565 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
566 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
567 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
568 /* 1440x900@60Hz */
569 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
570 1672, 1904, 0, 900, 903, 909, 934, 0,
571 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
572 /* 1440x900@75Hz */
573 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
574 1688, 1936, 0, 900, 903, 909, 942, 0,
575 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
576 /* 1440x900@85Hz */
577 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
578 1696, 1952, 0, 900, 903, 909, 948, 0,
579 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
580 /* 1600x1200@60Hz */
581 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
582 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
583 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
584 /* 1600x1200@65Hz */
585 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
586 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
587 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
588 /* 1600x1200@70Hz */
589 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
590 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
591 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
592 /* 1600x1200@75Hz */
Alex Deucherc43ae472010-05-19 11:43:40 -0400593 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800594 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
595 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
596 /* 1600x1200@85Hz */
597 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
598 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
599 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
600 /* 1680x1050@60Hz */
601 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
602 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
603 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
604 /* 1680x1050@75Hz */
605 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
606 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
607 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
608 /* 1680x1050@85Hz */
609 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
610 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
611 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
612 /* 1792x1344@60Hz */
613 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
614 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
615 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
616 /* 1729x1344@75Hz */
617 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
618 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
619 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
620 /* 1853x1392@60Hz */
621 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
622 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
623 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
624 /* 1856x1392@75Hz */
625 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
626 2208, 2560, 0, 1392, 1395, 1399, 1500, 0,
627 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
628 /* 1920x1200@60Hz */
629 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
630 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
631 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
632 /* 1920x1200@75Hz */
633 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
634 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
635 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
636 /* 1920x1200@85Hz */
637 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
638 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
639 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
640 /* 1920x1440@60Hz */
641 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
642 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
643 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
644 /* 1920x1440@75Hz */
645 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
646 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
647 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
648 /* 2560x1600@60Hz */
649 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
650 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
651 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
652 /* 2560x1600@75HZ */
653 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
654 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
655 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
656 /* 2560x1600@85HZ */
657 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
658 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
659 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
660};
Adam Jackson07a5e632009-12-03 17:44:38 -0500661static const int drm_num_dmt_modes =
662 sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800663
Dave Airlie1d42bbc2010-05-07 05:02:30 +0000664struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
665 int hsize, int vsize, int fresh)
Zhao Yakui559ee212009-09-03 09:33:47 +0800666{
Adam Jackson07a5e632009-12-03 17:44:38 -0500667 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +0800668 struct drm_display_mode *ptr, *mode;
669
Zhao Yakui559ee212009-09-03 09:33:47 +0800670 mode = NULL;
Adam Jackson07a5e632009-12-03 17:44:38 -0500671 for (i = 0; i < drm_num_dmt_modes; i++) {
Zhao Yakui559ee212009-09-03 09:33:47 +0800672 ptr = &drm_dmt_modes[i];
673 if (hsize == ptr->hdisplay &&
674 vsize == ptr->vdisplay &&
675 fresh == drm_mode_vrefresh(ptr)) {
676 /* get the expected default mode */
677 mode = drm_mode_duplicate(dev, ptr);
678 break;
679 }
680 }
681 return mode;
682}
Dave Airlie1d42bbc2010-05-07 05:02:30 +0000683EXPORT_SYMBOL(drm_mode_find_dmt);
Adam Jackson23425ca2009-09-23 17:30:58 -0400684
Adam Jacksond1ff6402010-03-29 21:43:26 +0000685typedef void detailed_cb(struct detailed_timing *timing, void *closure);
686
687static void
Adam Jackson4d76a222010-08-03 14:38:17 -0400688cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
689{
690 int i, n = 0;
691 u8 rev = ext[0x01], d = ext[0x02];
692 u8 *det_base = ext + d;
693
694 switch (rev) {
695 case 0:
696 /* can't happen */
697 return;
698 case 1:
699 /* have to infer how many blocks we have, check pixel clock */
700 for (i = 0; i < 6; i++)
701 if (det_base[18*i] || det_base[18*i+1])
702 n++;
703 break;
704 default:
705 /* explicit count */
706 n = min(ext[0x03] & 0x0f, 6);
707 break;
708 }
709
710 for (i = 0; i < n; i++)
711 cb((struct detailed_timing *)(det_base + 18 * i), closure);
712}
713
714static void
Adam Jacksoncbba98f2010-08-03 14:38:18 -0400715vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
716{
717 unsigned int i, n = min((int)ext[0x02], 6);
718 u8 *det_base = ext + 5;
719
720 if (ext[0x01] != 1)
721 return; /* unknown version */
722
723 for (i = 0; i < n; i++)
724 cb((struct detailed_timing *)(det_base + 18 * i), closure);
725}
726
727static void
Adam Jacksond1ff6402010-03-29 21:43:26 +0000728drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
729{
730 int i;
731 struct edid *edid = (struct edid *)raw_edid;
732
733 if (edid == NULL)
734 return;
735
736 for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
737 cb(&(edid->detailed_timings[i]), closure);
738
Adam Jackson4d76a222010-08-03 14:38:17 -0400739 for (i = 1; i <= raw_edid[0x7e]; i++) {
740 u8 *ext = raw_edid + (i * EDID_LENGTH);
741 switch (*ext) {
742 case CEA_EXT:
743 cea_for_each_detailed_block(ext, cb, closure);
744 break;
Adam Jacksoncbba98f2010-08-03 14:38:18 -0400745 case VTB_EXT:
746 vtb_for_each_detailed_block(ext, cb, closure);
747 break;
Adam Jackson4d76a222010-08-03 14:38:17 -0400748 default:
749 break;
750 }
751 }
Adam Jacksond1ff6402010-03-29 21:43:26 +0000752}
753
754static void
755is_rb(struct detailed_timing *t, void *data)
756{
757 u8 *r = (u8 *)t;
758 if (r[3] == EDID_DETAIL_MONITOR_RANGE)
759 if (r[15] & 0x10)
760 *(bool *)data = true;
761}
762
763/* EDID 1.4 defines this explicitly. For EDID 1.3, we guess, badly. */
764static bool
765drm_monitor_supports_rb(struct edid *edid)
766{
767 if (edid->revision >= 4) {
768 bool ret;
769 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
770 return ret;
771 }
772
773 return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
774}
775
Adam Jackson7a374352010-03-29 21:43:30 +0000776static void
777find_gtf2(struct detailed_timing *t, void *data)
778{
779 u8 *r = (u8 *)t;
780 if (r[3] == EDID_DETAIL_MONITOR_RANGE && r[10] == 0x02)
781 *(u8 **)data = r;
782}
783
784/* Secondary GTF curve kicks in above some break frequency */
785static int
786drm_gtf2_hbreak(struct edid *edid)
787{
788 u8 *r = NULL;
789 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
790 return r ? (r[12] * 2) : 0;
791}
792
793static int
794drm_gtf2_2c(struct edid *edid)
795{
796 u8 *r = NULL;
797 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
798 return r ? r[13] : 0;
799}
800
801static int
802drm_gtf2_m(struct edid *edid)
803{
804 u8 *r = NULL;
805 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
806 return r ? (r[15] << 8) + r[14] : 0;
807}
808
809static int
810drm_gtf2_k(struct edid *edid)
811{
812 u8 *r = NULL;
813 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
814 return r ? r[16] : 0;
815}
816
817static int
818drm_gtf2_2j(struct edid *edid)
819{
820 u8 *r = NULL;
821 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
822 return r ? r[17] : 0;
823}
824
825/**
826 * standard_timing_level - get std. timing level(CVT/GTF/DMT)
827 * @edid: EDID block to scan
828 */
829static int standard_timing_level(struct edid *edid)
830{
831 if (edid->revision >= 2) {
832 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
833 return LEVEL_CVT;
834 if (drm_gtf2_hbreak(edid))
835 return LEVEL_GTF2;
836 return LEVEL_GTF;
837 }
838 return LEVEL_DMT;
839}
840
Adam Jackson23425ca2009-09-23 17:30:58 -0400841/*
842 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
843 * monitors fill with ascii space (0x20) instead.
844 */
845static int
846bad_std_timing(u8 a, u8 b)
847{
848 return (a == 0x00 && b == 0x00) ||
849 (a == 0x01 && b == 0x01) ||
850 (a == 0x20 && b == 0x20);
851}
852
Dave Airlief453ba02008-11-07 14:05:41 -0800853/**
854 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
855 * @t: standard timing params
Zhao Yakui5c612592009-06-22 13:17:10 +0800856 * @timing_level: standard timing level
Dave Airlief453ba02008-11-07 14:05:41 -0800857 *
858 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +0800859 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -0800860 */
Adam Jackson7ca6adb2010-03-29 21:43:29 +0000861static struct drm_display_mode *
Adam Jackson7a374352010-03-29 21:43:30 +0000862drm_mode_std(struct drm_connector *connector, struct edid *edid,
863 struct std_timing *t, int revision)
Dave Airlief453ba02008-11-07 14:05:41 -0800864{
Adam Jackson7ca6adb2010-03-29 21:43:29 +0000865 struct drm_device *dev = connector->dev;
866 struct drm_display_mode *m, *mode = NULL;
Zhao Yakui5c612592009-06-22 13:17:10 +0800867 int hsize, vsize;
868 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200869 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
870 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +0800871 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
872 >> EDID_TIMING_VFREQ_SHIFT;
Adam Jackson7a374352010-03-29 21:43:30 +0000873 int timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -0800874
Adam Jackson23425ca2009-09-23 17:30:58 -0400875 if (bad_std_timing(t->hsize, t->vfreq_aspect))
876 return NULL;
877
Zhao Yakui5c612592009-06-22 13:17:10 +0800878 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
879 hsize = t->hsize * 8 + 248;
880 /* vrefresh_rate = vfreq + 60 */
881 vrefresh_rate = vfreq + 60;
882 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -0400883 if (aspect_ratio == 0) {
884 if (revision < 3)
885 vsize = hsize;
886 else
887 vsize = (hsize * 10) / 16;
888 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800889 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200890 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -0800891 vsize = (hsize * 4) / 5;
892 else
893 vsize = (hsize * 9) / 16;
Adam Jacksona0910c82010-03-29 21:43:28 +0000894
895 /* HDTV hack, part 1 */
896 if (vrefresh_rate == 60 &&
897 ((hsize == 1360 && vsize == 765) ||
898 (hsize == 1368 && vsize == 769))) {
899 hsize = 1366;
900 vsize = 768;
901 }
902
Adam Jackson7ca6adb2010-03-29 21:43:29 +0000903 /*
904 * If this connector already has a mode for this size and refresh
905 * rate (because it came from detailed or CVT info), use that
906 * instead. This way we don't have to guess at interlace or
907 * reduced blanking.
908 */
Adam Jackson522032d2010-04-09 16:52:49 +0000909 list_for_each_entry(m, &connector->probed_modes, head)
Adam Jackson7ca6adb2010-03-29 21:43:29 +0000910 if (m->hdisplay == hsize && m->vdisplay == vsize &&
911 drm_mode_vrefresh(m) == vrefresh_rate)
912 return NULL;
913
Adam Jacksona0910c82010-03-29 21:43:28 +0000914 /* HDTV hack, part 2 */
915 if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
916 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
Dave Airlied50ba252009-09-23 14:44:08 +1000917 false);
Zhao Yakui559ee212009-09-03 09:33:47 +0800918 mode->hdisplay = 1366;
Adam Jacksona4967de2010-07-28 07:40:32 +1000919 mode->hsync_start = mode->hsync_start - 1;
920 mode->hsync_end = mode->hsync_end - 1;
Zhao Yakui559ee212009-09-03 09:33:47 +0800921 return mode;
922 }
Adam Jacksona0910c82010-03-29 21:43:28 +0000923
Zhao Yakui559ee212009-09-03 09:33:47 +0800924 /* check whether it can be found in default mode table */
Dave Airlie1d42bbc2010-05-07 05:02:30 +0000925 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate);
Zhao Yakui559ee212009-09-03 09:33:47 +0800926 if (mode)
927 return mode;
928
Zhao Yakui5c612592009-06-22 13:17:10 +0800929 switch (timing_level) {
930 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +0800931 break;
932 case LEVEL_GTF:
933 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
934 break;
Adam Jackson7a374352010-03-29 21:43:30 +0000935 case LEVEL_GTF2:
936 /*
937 * This is potentially wrong if there's ever a monitor with
938 * more than one ranges section, each claiming a different
939 * secondary GTF curve. Please don't do that.
940 */
941 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
942 if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
943 kfree(mode);
944 mode = drm_gtf_mode_complex(dev, hsize, vsize,
945 vrefresh_rate, 0, 0,
946 drm_gtf2_m(edid),
947 drm_gtf2_2c(edid),
948 drm_gtf2_k(edid),
949 drm_gtf2_2j(edid));
950 }
951 break;
Zhao Yakui5c612592009-06-22 13:17:10 +0800952 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +1000953 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
954 false);
Zhao Yakui5c612592009-06-22 13:17:10 +0800955 break;
956 }
Dave Airlief453ba02008-11-07 14:05:41 -0800957 return mode;
958}
959
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000960/*
961 * EDID is delightfully ambiguous about how interlaced modes are to be
962 * encoded. Our internal representation is of frame height, but some
963 * HDTV detailed timings are encoded as field height.
964 *
965 * The format list here is from CEA, in frame size. Technically we
966 * should be checking refresh rate too. Whatever.
967 */
968static void
969drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
970 struct detailed_pixel_timing *pt)
971{
972 int i;
973 static const struct {
974 int w, h;
975 } cea_interlaced[] = {
976 { 1920, 1080 },
977 { 720, 480 },
978 { 1440, 480 },
979 { 2880, 480 },
980 { 720, 576 },
981 { 1440, 576 },
982 { 2880, 576 },
983 };
984 static const int n_sizes =
985 sizeof(cea_interlaced)/sizeof(cea_interlaced[0]);
986
987 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
988 return;
989
990 for (i = 0; i < n_sizes; i++) {
991 if ((mode->hdisplay == cea_interlaced[i].w) &&
992 (mode->vdisplay == cea_interlaced[i].h / 2)) {
993 mode->vdisplay *= 2;
994 mode->vsync_start *= 2;
995 mode->vsync_end *= 2;
996 mode->vtotal *= 2;
997 mode->vtotal |= 1;
998 }
999 }
1000
1001 mode->flags |= DRM_MODE_FLAG_INTERLACE;
1002}
1003
Dave Airlief453ba02008-11-07 14:05:41 -08001004/**
1005 * drm_mode_detailed - create a new mode from an EDID detailed timing section
1006 * @dev: DRM device (needed to create new mode)
1007 * @edid: EDID block
1008 * @timing: EDID detailed timing info
1009 * @quirks: quirks to apply
1010 *
1011 * An EDID detailed timing block contains enough info for us to create and
1012 * return a new struct drm_display_mode.
1013 */
1014static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
1015 struct edid *edid,
1016 struct detailed_timing *timing,
1017 u32 quirks)
1018{
1019 struct drm_display_mode *mode;
1020 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +02001021 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
1022 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
1023 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
1024 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +02001025 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
1026 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
1027 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4;
1028 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 -08001029
Adam Jacksonfc438962009-06-04 10:20:34 +10001030 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +02001031 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +10001032 return NULL;
1033
Michel Dänzer0454bea2009-06-15 16:56:07 +02001034 if (pt->misc & DRM_EDID_PT_STEREO) {
Dave Airlief453ba02008-11-07 14:05:41 -08001035 printk(KERN_WARNING "stereo mode not supported\n");
1036 return NULL;
1037 }
Michel Dänzer0454bea2009-06-15 16:56:07 +02001038 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Jerome Glisse79b7dcb2010-01-14 19:02:20 +01001039 printk(KERN_WARNING "composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08001040 }
1041
Zhao Yakuifcb45612009-10-14 09:11:25 +08001042 /* it is incorrect if hsync/vsync width is zero */
1043 if (!hsync_pulse_width || !vsync_pulse_width) {
1044 DRM_DEBUG_KMS("Incorrect Detailed timing. "
1045 "Wrong Hsync/Vsync pulse width\n");
1046 return NULL;
1047 }
Dave Airlief453ba02008-11-07 14:05:41 -08001048 mode = drm_mode_create(dev);
1049 if (!mode)
1050 return NULL;
1051
1052 mode->type = DRM_MODE_TYPE_DRIVER;
1053
1054 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +02001055 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -08001056
Michel Dänzer0454bea2009-06-15 16:56:07 +02001057 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -08001058
Michel Dänzer0454bea2009-06-15 16:56:07 +02001059 mode->hdisplay = hactive;
1060 mode->hsync_start = mode->hdisplay + hsync_offset;
1061 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
1062 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -08001063
Michel Dänzer0454bea2009-06-15 16:56:07 +02001064 mode->vdisplay = vactive;
1065 mode->vsync_start = mode->vdisplay + vsync_offset;
1066 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
1067 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -08001068
Jesse Barnes7064fef2009-11-05 10:12:54 -08001069 /* Some EDIDs have bogus h/vtotal values */
1070 if (mode->hsync_end > mode->htotal)
1071 mode->htotal = mode->hsync_end + 1;
1072 if (mode->vsync_end > mode->vtotal)
1073 mode->vtotal = mode->vsync_end + 1;
1074
Adam Jacksonb58db2c2010-02-15 22:15:39 +00001075 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -08001076
Adam Jackson171fdd82010-03-29 21:43:31 +00001077 drm_mode_set_name(mode);
1078
Dave Airlief453ba02008-11-07 14:05:41 -08001079 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +02001080 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -08001081 }
1082
Michel Dänzer0454bea2009-06-15 16:56:07 +02001083 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
1084 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
1085 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
1086 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -08001087
Michel Dänzere14cbee2009-06-23 12:36:32 +02001088 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
1089 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -08001090
1091 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
1092 mode->width_mm *= 10;
1093 mode->height_mm *= 10;
1094 }
1095
1096 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
1097 mode->width_mm = edid->width_cm * 10;
1098 mode->height_mm = edid->height_cm * 10;
1099 }
1100
1101 return mode;
1102}
1103
1104/*
1105 * Detailed mode info for the EDID "established modes" data to use.
1106 */
1107static struct drm_display_mode edid_est_modes[] = {
1108 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
1109 968, 1056, 0, 600, 601, 605, 628, 0,
1110 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
1111 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
1112 896, 1024, 0, 600, 601, 603, 625, 0,
1113 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
1114 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
1115 720, 840, 0, 480, 481, 484, 500, 0,
1116 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
1117 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
1118 704, 832, 0, 480, 489, 491, 520, 0,
1119 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
1120 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
1121 768, 864, 0, 480, 483, 486, 525, 0,
1122 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
1123 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25200, 640, 656,
1124 752, 800, 0, 480, 490, 492, 525, 0,
1125 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
1126 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
1127 846, 900, 0, 400, 421, 423, 449, 0,
1128 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
1129 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
1130 846, 900, 0, 400, 412, 414, 449, 0,
1131 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
1132 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
1133 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
1134 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
1135 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78800, 1024, 1040,
1136 1136, 1312, 0, 768, 769, 772, 800, 0,
1137 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
1138 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
1139 1184, 1328, 0, 768, 771, 777, 806, 0,
1140 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
1141 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
1142 1184, 1344, 0, 768, 771, 777, 806, 0,
1143 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
1144 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
1145 1208, 1264, 0, 768, 768, 776, 817, 0,
1146 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
1147 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
1148 928, 1152, 0, 624, 625, 628, 667, 0,
1149 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
1150 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
1151 896, 1056, 0, 600, 601, 604, 625, 0,
1152 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
1153 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
1154 976, 1040, 0, 600, 637, 643, 666, 0,
1155 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
1156 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
1157 1344, 1600, 0, 864, 865, 868, 900, 0,
1158 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
1159};
1160
Dave Airlief453ba02008-11-07 14:05:41 -08001161/**
1162 * add_established_modes - get est. modes from EDID and add them
1163 * @edid: EDID block to scan
1164 *
1165 * Each EDID block contains a bitmap of the supported "established modes" list
1166 * (defined above). Tease them out and add them to the global modes list.
1167 */
1168static int add_established_modes(struct drm_connector *connector, struct edid *edid)
1169{
1170 struct drm_device *dev = connector->dev;
1171 unsigned long est_bits = edid->established_timings.t1 |
1172 (edid->established_timings.t2 << 8) |
1173 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
1174 int i, modes = 0;
1175
1176 for (i = 0; i <= EDID_EST_TIMINGS; i++)
1177 if (est_bits & (1<<i)) {
1178 struct drm_display_mode *newmode;
1179 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
1180 if (newmode) {
1181 drm_mode_probed_add(connector, newmode);
1182 modes++;
1183 }
1184 }
1185
1186 return modes;
1187}
1188
1189/**
1190 * add_standard_modes - get std. modes from EDID and add them
1191 * @edid: EDID block to scan
1192 *
1193 * Standard modes can be calculated using the CVT standard. Grab them from
1194 * @edid, calculate them, and add them to the list.
1195 */
1196static int add_standard_modes(struct drm_connector *connector, struct edid *edid)
1197{
Dave Airlief453ba02008-11-07 14:05:41 -08001198 int i, modes = 0;
1199
1200 for (i = 0; i < EDID_STD_TIMINGS; i++) {
Dave Airlief453ba02008-11-07 14:05:41 -08001201 struct drm_display_mode *newmode;
1202
Adam Jackson7a374352010-03-29 21:43:30 +00001203 newmode = drm_mode_std(connector, edid,
1204 &edid->standard_timings[i],
1205 edid->revision);
Dave Airlief453ba02008-11-07 14:05:41 -08001206 if (newmode) {
1207 drm_mode_probed_add(connector, newmode);
1208 modes++;
1209 }
1210 }
1211
1212 return modes;
1213}
1214
Adam Jackson07a5e632009-12-03 17:44:38 -05001215static bool
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001216mode_is_rb(struct drm_display_mode *mode)
Adam Jackson07a5e632009-12-03 17:44:38 -05001217{
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001218 return (mode->htotal - mode->hdisplay == 160) &&
1219 (mode->hsync_end - mode->hdisplay == 80) &&
1220 (mode->hsync_end - mode->hsync_start == 32) &&
1221 (mode->vsync_start - mode->vdisplay == 3);
1222}
Adam Jackson07a5e632009-12-03 17:44:38 -05001223
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001224static bool
1225mode_in_hsync_range(struct drm_display_mode *mode, struct edid *edid, u8 *t)
1226{
1227 int hsync, hmin, hmax;
Adam Jackson07a5e632009-12-03 17:44:38 -05001228
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001229 hmin = t[7];
1230 if (edid->revision >= 4)
1231 hmin += ((t[4] & 0x04) ? 255 : 0);
1232 hmax = t[8];
1233 if (edid->revision >= 4)
1234 hmax += ((t[4] & 0x08) ? 255 : 0);
Adam Jackson07a5e632009-12-03 17:44:38 -05001235 hsync = drm_mode_hsync(mode);
Adam Jackson07a5e632009-12-03 17:44:38 -05001236
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001237 return (hsync <= hmax && hsync >= hmin);
1238}
1239
1240static bool
1241mode_in_vsync_range(struct drm_display_mode *mode, struct edid *edid, u8 *t)
1242{
1243 int vsync, vmin, vmax;
1244
1245 vmin = t[5];
1246 if (edid->revision >= 4)
1247 vmin += ((t[4] & 0x01) ? 255 : 0);
1248 vmax = t[6];
1249 if (edid->revision >= 4)
1250 vmax += ((t[4] & 0x02) ? 255 : 0);
1251 vsync = drm_mode_vrefresh(mode);
1252
1253 return (vsync <= vmax && vsync >= vmin);
1254}
1255
1256static u32
1257range_pixel_clock(struct edid *edid, u8 *t)
1258{
1259 /* unspecified */
1260 if (t[9] == 0 || t[9] == 255)
1261 return 0;
1262
1263 /* 1.4 with CVT support gives us real precision, yay */
1264 if (edid->revision >= 4 && t[10] == 0x04)
1265 return (t[9] * 10000) - ((t[12] >> 2) * 250);
1266
1267 /* 1.3 is pathetic, so fuzz up a bit */
1268 return t[9] * 10000 + 5001;
1269}
1270
Adam Jackson07a5e632009-12-03 17:44:38 -05001271static bool
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001272mode_in_range(struct drm_display_mode *mode, struct edid *edid,
1273 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05001274{
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001275 u32 max_clock;
1276 u8 *t = (u8 *)timing;
Adam Jackson07a5e632009-12-03 17:44:38 -05001277
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001278 if (!mode_in_hsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05001279 return false;
1280
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001281 if (!mode_in_vsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05001282 return false;
1283
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001284 if ((max_clock = range_pixel_clock(edid, t)))
Adam Jackson07a5e632009-12-03 17:44:38 -05001285 if (mode->clock > max_clock)
1286 return false;
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001287
1288 /* 1.4 max horizontal check */
1289 if (edid->revision >= 4 && t[10] == 0x04)
1290 if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
1291 return false;
1292
1293 if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
1294 return false;
Adam Jackson07a5e632009-12-03 17:44:38 -05001295
1296 return true;
1297}
1298
1299/*
1300 * XXX If drm_dmt_modes ever regrows the CVT-R modes (and it will) this will
1301 * need to account for them.
1302 */
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001303static int
1304drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
1305 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05001306{
1307 int i, modes = 0;
1308 struct drm_display_mode *newmode;
1309 struct drm_device *dev = connector->dev;
1310
1311 for (i = 0; i < drm_num_dmt_modes; i++) {
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001312 if (mode_in_range(drm_dmt_modes + i, edid, timing)) {
Adam Jackson07a5e632009-12-03 17:44:38 -05001313 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
1314 if (newmode) {
1315 drm_mode_probed_add(connector, newmode);
1316 modes++;
1317 }
1318 }
1319 }
1320
1321 return modes;
1322}
1323
Adam Jackson9340d8c2009-12-03 17:44:40 -05001324static int drm_cvt_modes(struct drm_connector *connector,
1325 struct detailed_timing *timing)
1326{
1327 int i, j, modes = 0;
1328 struct drm_display_mode *newmode;
1329 struct drm_device *dev = connector->dev;
1330 struct cvt_timing *cvt;
1331 const int rates[] = { 60, 85, 75, 60, 50 };
Adam Jackson69da3012010-01-04 17:53:06 -05001332 const u8 empty[3] = { 0, 0, 0 };
Adam Jackson9340d8c2009-12-03 17:44:40 -05001333
1334 for (i = 0; i < 4; i++) {
Marin Mitov29ebdf92009-12-20 09:03:27 +02001335 int uninitialized_var(width), height;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001336 cvt = &(timing->data.other_data.data.cvt[i]);
1337
Adam Jackson69da3012010-01-04 17:53:06 -05001338 if (!memcmp(cvt->code, empty, 3))
1339 continue;
1340
Adam Jackson8e10ee92010-01-04 17:53:07 -05001341 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
1342 switch (cvt->code[1] & 0x0c) {
Adam Jackson9340d8c2009-12-03 17:44:40 -05001343 case 0x00:
1344 width = height * 4 / 3;
1345 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001346 case 0x04:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001347 width = height * 16 / 9;
1348 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001349 case 0x08:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001350 width = height * 16 / 10;
1351 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -05001352 case 0x0c:
Adam Jackson9340d8c2009-12-03 17:44:40 -05001353 width = height * 15 / 9;
1354 break;
1355 }
1356
1357 for (j = 1; j < 5; j++) {
1358 if (cvt->code[2] & (1 << j)) {
1359 newmode = drm_cvt_mode(dev, width, height,
1360 rates[j], j == 0,
1361 false, false);
1362 if (newmode) {
1363 drm_mode_probed_add(connector, newmode);
1364 modes++;
1365 }
1366 }
1367 }
1368 }
1369
1370 return modes;
1371}
1372
Adam Jackson2255be12010-03-29 21:43:22 +00001373static const struct {
1374 short w;
1375 short h;
1376 short r;
1377 short rb;
1378} est3_modes[] = {
1379 /* byte 6 */
1380 { 640, 350, 85, 0 },
1381 { 640, 400, 85, 0 },
1382 { 720, 400, 85, 0 },
1383 { 640, 480, 85, 0 },
1384 { 848, 480, 60, 0 },
1385 { 800, 600, 85, 0 },
1386 { 1024, 768, 85, 0 },
1387 { 1152, 864, 75, 0 },
1388 /* byte 7 */
1389 { 1280, 768, 60, 1 },
1390 { 1280, 768, 60, 0 },
1391 { 1280, 768, 75, 0 },
1392 { 1280, 768, 85, 0 },
1393 { 1280, 960, 60, 0 },
1394 { 1280, 960, 85, 0 },
1395 { 1280, 1024, 60, 0 },
1396 { 1280, 1024, 85, 0 },
1397 /* byte 8 */
1398 { 1360, 768, 60, 0 },
1399 { 1440, 900, 60, 1 },
1400 { 1440, 900, 60, 0 },
1401 { 1440, 900, 75, 0 },
1402 { 1440, 900, 85, 0 },
1403 { 1400, 1050, 60, 1 },
1404 { 1400, 1050, 60, 0 },
1405 { 1400, 1050, 75, 0 },
1406 /* byte 9 */
1407 { 1400, 1050, 85, 0 },
1408 { 1680, 1050, 60, 1 },
1409 { 1680, 1050, 60, 0 },
1410 { 1680, 1050, 75, 0 },
1411 { 1680, 1050, 85, 0 },
1412 { 1600, 1200, 60, 0 },
1413 { 1600, 1200, 65, 0 },
1414 { 1600, 1200, 70, 0 },
1415 /* byte 10 */
1416 { 1600, 1200, 75, 0 },
1417 { 1600, 1200, 85, 0 },
1418 { 1792, 1344, 60, 0 },
1419 { 1792, 1344, 85, 0 },
1420 { 1856, 1392, 60, 0 },
1421 { 1856, 1392, 75, 0 },
1422 { 1920, 1200, 60, 1 },
1423 { 1920, 1200, 60, 0 },
1424 /* byte 11 */
1425 { 1920, 1200, 75, 0 },
1426 { 1920, 1200, 85, 0 },
1427 { 1920, 1440, 60, 0 },
1428 { 1920, 1440, 75, 0 },
1429};
1430static const int num_est3_modes = sizeof(est3_modes) / sizeof(est3_modes[0]);
1431
1432static int
1433drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
1434{
1435 int i, j, m, modes = 0;
1436 struct drm_display_mode *mode;
1437 u8 *est = ((u8 *)timing) + 5;
1438
1439 for (i = 0; i < 6; i++) {
1440 for (j = 7; j > 0; j--) {
1441 m = (i * 8) + (7 - j);
Dan Carpenter0ddfa7d2010-05-07 08:38:20 +00001442 if (m >= num_est3_modes)
Adam Jackson2255be12010-03-29 21:43:22 +00001443 break;
1444 if (est[i] & (1 << j)) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001445 mode = drm_mode_find_dmt(connector->dev,
1446 est3_modes[m].w,
1447 est3_modes[m].h,
1448 est3_modes[m].r
1449 /*, est3_modes[m].rb */);
Adam Jackson2255be12010-03-29 21:43:22 +00001450 if (mode) {
1451 drm_mode_probed_add(connector, mode);
1452 modes++;
1453 }
1454 }
1455 }
1456 }
1457
1458 return modes;
1459}
1460
Adam Jackson9cf00972009-12-03 17:44:36 -05001461static int add_detailed_modes(struct drm_connector *connector,
1462 struct detailed_timing *timing,
1463 struct edid *edid, u32 quirks, int preferred)
1464{
1465 int i, modes = 0;
1466 struct detailed_non_pixel *data = &timing->data.other_data;
Adam Jackson07a5e632009-12-03 17:44:38 -05001467 int gtf = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF);
Adam Jackson9cf00972009-12-03 17:44:36 -05001468 struct drm_display_mode *newmode;
1469 struct drm_device *dev = connector->dev;
1470
1471 if (timing->pixel_clock) {
1472 newmode = drm_mode_detailed(dev, edid, timing, quirks);
1473 if (!newmode)
1474 return 0;
1475
1476 if (preferred)
1477 newmode->type |= DRM_MODE_TYPE_PREFERRED;
1478
1479 drm_mode_probed_add(connector, newmode);
1480 return 1;
1481 }
1482
1483 /* other timing types */
1484 switch (data->type) {
1485 case EDID_DETAIL_MONITOR_RANGE:
Adam Jackson07a5e632009-12-03 17:44:38 -05001486 if (gtf)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00001487 modes += drm_gtf_modes_for_range(connector, edid,
1488 timing);
Adam Jackson9cf00972009-12-03 17:44:36 -05001489 break;
1490 case EDID_DETAIL_STD_MODES:
1491 /* Six modes per detailed section */
1492 for (i = 0; i < 6; i++) {
1493 struct std_timing *std;
1494 struct drm_display_mode *newmode;
1495
1496 std = &data->data.timings[i];
Adam Jackson7a374352010-03-29 21:43:30 +00001497 newmode = drm_mode_std(connector, edid, std,
1498 edid->revision);
Adam Jackson9cf00972009-12-03 17:44:36 -05001499 if (newmode) {
1500 drm_mode_probed_add(connector, newmode);
1501 modes++;
1502 }
1503 }
1504 break;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001505 case EDID_DETAIL_CVT_3BYTE:
1506 modes += drm_cvt_modes(connector, timing);
1507 break;
Adam Jackson2255be12010-03-29 21:43:22 +00001508 case EDID_DETAIL_EST_TIMINGS:
1509 modes += drm_est3_modes(connector, timing);
1510 break;
Adam Jackson9cf00972009-12-03 17:44:36 -05001511 default:
1512 break;
1513 }
1514
1515 return modes;
1516}
1517
Dave Airlief453ba02008-11-07 14:05:41 -08001518/**
Adam Jackson9cf00972009-12-03 17:44:36 -05001519 * add_detailed_info - get detailed mode info from EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08001520 * @connector: attached connector
1521 * @edid: EDID block to scan
1522 * @quirks: quirks to apply
1523 *
1524 * Some of the detailed timing sections may contain mode information. Grab
1525 * it and add it to the list.
1526 */
1527static int add_detailed_info(struct drm_connector *connector,
1528 struct edid *edid, u32 quirks)
1529{
Adam Jackson9cf00972009-12-03 17:44:36 -05001530 int i, modes = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001531
1532 for (i = 0; i < EDID_DETAILED_TIMINGS; i++) {
1533 struct detailed_timing *timing = &edid->detailed_timings[i];
Adam Jacksona327f6b2010-03-29 21:43:25 +00001534 int preferred = (i == 0);
1535
1536 if (preferred && edid->version == 1 && edid->revision < 4)
1537 preferred = (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Dave Airlief453ba02008-11-07 14:05:41 -08001538
Adam Jackson9cf00972009-12-03 17:44:36 -05001539 /* In 1.0, only timings are allowed */
1540 if (!timing->pixel_clock && edid->version == 1 &&
1541 edid->revision == 0)
1542 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08001543
Adam Jackson9cf00972009-12-03 17:44:36 -05001544 modes += add_detailed_modes(connector, timing, edid, quirks,
1545 preferred);
Dave Airlief453ba02008-11-07 14:05:41 -08001546 }
1547
1548 return modes;
1549}
Adam Jackson9cf00972009-12-03 17:44:36 -05001550
Zhao Yakui882f0212009-08-26 18:20:49 +08001551/**
1552 * add_detailed_mode_eedid - get detailed mode info from addtional timing
1553 * EDID block
1554 * @connector: attached connector
1555 * @edid: EDID block to scan(It is only to get addtional timing EDID block)
1556 * @quirks: quirks to apply
1557 *
1558 * Some of the detailed timing sections may contain mode information. Grab
1559 * it and add it to the list.
1560 */
1561static int add_detailed_info_eedid(struct drm_connector *connector,
1562 struct edid *edid, u32 quirks)
1563{
Adam Jackson9cf00972009-12-03 17:44:36 -05001564 int i, modes = 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001565 char *edid_ext = NULL;
1566 struct detailed_timing *timing;
Zhao Yakui882f0212009-08-26 18:20:49 +08001567 int start_offset, end_offset;
Zhao Yakui882f0212009-08-26 18:20:49 +08001568
Adam Jackson59d8aff2010-03-29 21:43:24 +00001569 if (edid->version == 1 && edid->revision < 3)
Zhao Yakui882f0212009-08-26 18:20:49 +08001570 return 0;
Adam Jackson59d8aff2010-03-29 21:43:24 +00001571 if (!edid->extensions)
Zhao Yakui882f0212009-08-26 18:20:49 +08001572 return 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001573
1574 /* Find CEA extension */
Adam Jackson7466f4c2010-03-29 21:43:23 +00001575 for (i = 0; i < edid->extensions; i++) {
Zhao Yakui882f0212009-08-26 18:20:49 +08001576 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
Zhao Yakui882f0212009-08-26 18:20:49 +08001577 if (edid_ext[0] == 0x02)
1578 break;
1579 }
1580
Adam Jackson59d8aff2010-03-29 21:43:24 +00001581 if (i == edid->extensions)
Zhao Yakui882f0212009-08-26 18:20:49 +08001582 return 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001583
1584 /* Get the start offset of detailed timing block */
1585 start_offset = edid_ext[2];
1586 if (start_offset == 0) {
1587 /* If the start_offset is zero, it means that neither detailed
1588 * info nor data block exist. In such case it is also
1589 * unnecessary to parse the detailed timing info.
1590 */
1591 return 0;
1592 }
1593
Zhao Yakui882f0212009-08-26 18:20:49 +08001594 end_offset = EDID_LENGTH;
1595 end_offset -= sizeof(struct detailed_timing);
1596 for (i = start_offset; i < end_offset;
1597 i += sizeof(struct detailed_timing)) {
1598 timing = (struct detailed_timing *)(edid_ext + i);
Adam Jackson9cf00972009-12-03 17:44:36 -05001599 modes += add_detailed_modes(connector, timing, edid, quirks, 0);
Zhao Yakui882f0212009-08-26 18:20:49 +08001600 }
1601
1602 return modes;
1603}
Dave Airlief453ba02008-11-07 14:05:41 -08001604
Ma Lingf23c20c2009-03-26 19:26:23 +08001605#define HDMI_IDENTIFIER 0x000C03
1606#define VENDOR_BLOCK 0x03
1607/**
1608 * drm_detect_hdmi_monitor - detect whether monitor is hdmi.
1609 * @edid: monitor EDID information
1610 *
1611 * Parse the CEA extension according to CEA-861-B.
1612 * Return true if HDMI, false if not or unknown.
1613 */
1614bool drm_detect_hdmi_monitor(struct edid *edid)
1615{
1616 char *edid_ext = NULL;
Adam Jackson7466f4c2010-03-29 21:43:23 +00001617 int i, hdmi_id;
Ma Lingf23c20c2009-03-26 19:26:23 +08001618 int start_offset, end_offset;
1619 bool is_hdmi = false;
1620
1621 /* No EDID or EDID extensions */
1622 if (edid == NULL || edid->extensions == 0)
1623 goto end;
1624
Ma Lingf23c20c2009-03-26 19:26:23 +08001625 /* Find CEA extension */
Adam Jackson7466f4c2010-03-29 21:43:23 +00001626 for (i = 0; i < edid->extensions; i++) {
Ma Lingf23c20c2009-03-26 19:26:23 +08001627 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1628 /* This block is CEA extension */
1629 if (edid_ext[0] == 0x02)
1630 break;
1631 }
1632
Adam Jackson7466f4c2010-03-29 21:43:23 +00001633 if (i == edid->extensions)
Ma Lingf23c20c2009-03-26 19:26:23 +08001634 goto end;
1635
1636 /* Data block offset in CEA extension block */
1637 start_offset = 4;
1638 end_offset = edid_ext[2];
1639
1640 /*
1641 * Because HDMI identifier is in Vendor Specific Block,
1642 * search it from all data blocks of CEA extension.
1643 */
1644 for (i = start_offset; i < end_offset;
1645 /* Increased by data block len */
1646 i += ((edid_ext[i] & 0x1f) + 1)) {
1647 /* Find vendor specific block */
1648 if ((edid_ext[i] >> 5) == VENDOR_BLOCK) {
1649 hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) |
1650 edid_ext[i + 3] << 16;
1651 /* Find HDMI identifier */
1652 if (hdmi_id == HDMI_IDENTIFIER)
1653 is_hdmi = true;
1654 break;
1655 }
1656 }
1657
1658end:
1659 return is_hdmi;
1660}
1661EXPORT_SYMBOL(drm_detect_hdmi_monitor);
1662
Dave Airlief453ba02008-11-07 14:05:41 -08001663/**
1664 * drm_add_edid_modes - add modes from EDID data, if available
1665 * @connector: connector we're probing
1666 * @edid: edid data
1667 *
1668 * Add the specified modes to the connector's mode list.
1669 *
1670 * Return number of modes added or 0 if we couldn't find any.
1671 */
1672int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
1673{
1674 int num_modes = 0;
1675 u32 quirks;
1676
1677 if (edid == NULL) {
1678 return 0;
1679 }
Alex Deucher3c537882010-02-05 04:21:19 -05001680 if (!drm_edid_is_valid(edid)) {
Jordan Crousedcdb1672010-05-27 13:40:25 -06001681 dev_warn(connector->dev->dev, "%s: EDID invalid.\n",
Dave Airlief453ba02008-11-07 14:05:41 -08001682 drm_get_connector_name(connector));
1683 return 0;
1684 }
1685
1686 quirks = edid_get_quirks(edid);
1687
Adam Jacksonc867df72010-03-29 21:43:21 +00001688 /*
1689 * EDID spec says modes should be preferred in this order:
1690 * - preferred detailed mode
1691 * - other detailed modes from base block
1692 * - detailed modes from extension blocks
1693 * - CVT 3-byte code modes
1694 * - standard timing codes
1695 * - established timing codes
1696 * - modes inferred from GTF or CVT range information
1697 *
1698 * We don't quite implement this yet, but we're close.
1699 *
1700 * XXX order for additional mode types in extension blocks?
1701 */
Dave Airlief453ba02008-11-07 14:05:41 -08001702 num_modes += add_detailed_info(connector, edid, quirks);
Zhao Yakui882f0212009-08-26 18:20:49 +08001703 num_modes += add_detailed_info_eedid(connector, edid, quirks);
Adam Jacksonc867df72010-03-29 21:43:21 +00001704 num_modes += add_standard_modes(connector, edid);
1705 num_modes += add_established_modes(connector, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08001706
1707 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
1708 edid_fixup_preferred(connector, quirks);
1709
Dave Airlief453ba02008-11-07 14:05:41 -08001710 connector->display_info.width_mm = edid->width_cm * 10;
1711 connector->display_info.height_mm = edid->height_cm * 10;
Dave Airlief453ba02008-11-07 14:05:41 -08001712
1713 return num_modes;
1714}
1715EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001716
1717/**
1718 * drm_add_modes_noedid - add modes for the connectors without EDID
1719 * @connector: connector we're probing
1720 * @hdisplay: the horizontal display limit
1721 * @vdisplay: the vertical display limit
1722 *
1723 * Add the specified modes to the connector's mode list. Only when the
1724 * hdisplay/vdisplay is not beyond the given limit, it will be added.
1725 *
1726 * Return number of modes added or 0 if we couldn't find any.
1727 */
1728int drm_add_modes_noedid(struct drm_connector *connector,
1729 int hdisplay, int vdisplay)
1730{
1731 int i, count, num_modes = 0;
1732 struct drm_display_mode *mode, *ptr;
1733 struct drm_device *dev = connector->dev;
1734
1735 count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
1736 if (hdisplay < 0)
1737 hdisplay = 0;
1738 if (vdisplay < 0)
1739 vdisplay = 0;
1740
1741 for (i = 0; i < count; i++) {
1742 ptr = &drm_dmt_modes[i];
1743 if (hdisplay && vdisplay) {
1744 /*
1745 * Only when two are valid, they will be used to check
1746 * whether the mode should be added to the mode list of
1747 * the connector.
1748 */
1749 if (ptr->hdisplay > hdisplay ||
1750 ptr->vdisplay > vdisplay)
1751 continue;
1752 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05001753 if (drm_mode_vrefresh(ptr) > 61)
1754 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001755 mode = drm_mode_duplicate(dev, ptr);
1756 if (mode) {
1757 drm_mode_probed_add(connector, mode);
1758 num_modes++;
1759 }
1760 }
1761 return num_modes;
1762}
1763EXPORT_SYMBOL(drm_add_modes_noedid);