blob: e661e4c9a1930865c55601fb082100c6ce21b17d [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
2 * Copyright (c) 2006 Luc Verhaegen (quirks list)
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * DDC probing routines (drm_ddc_read & drm_do_probe_ddc_edid) originally from
7 * FB layer.
8 * Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sub license,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice (including the
18 * next paragraph) shall be included in all copies or substantial portions
19 * of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
28 */
29#include <linux/kernel.h>
30#include <linux/i2c.h>
31#include <linux/i2c-algo-bit.h>
32#include "drmP.h"
33#include "drm_edid.h"
34
35/*
36 * TODO:
37 * - support EDID 1.4 (incl. CE blocks)
38 */
39
40/*
41 * 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 },
Adam Jacksonba1163d2010-04-06 16:11:00 +000087 /* Envision EN2028 */
88 { "EPI", 8232, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -080089
90 /* Funai Electronics PM36B */
91 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
92 EDID_QUIRK_DETAILED_IN_CM },
93
94 /* LG Philips LCD LP154W01-A5 */
95 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
96 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
97
98 /* Philips 107p5 CRT */
99 { "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
100
101 /* Proview AY765C */
102 { "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
103
104 /* Samsung SyncMaster 205BW. Note: irony */
105 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
106 /* Samsung SyncMaster 22[5-6]BW */
107 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
108 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
109};
110
111
112/* Valid EDID header has these bytes */
Adam Jackson083ae052009-09-23 17:30:45 -0400113static const u8 edid_header[] = {
114 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
115};
Dave Airlief453ba02008-11-07 14:05:41 -0800116
117/**
Alex Deucher3c537882010-02-05 04:21:19 -0500118 * drm_edid_is_valid - sanity check EDID data
Dave Airlief453ba02008-11-07 14:05:41 -0800119 * @edid: EDID data
120 *
121 * Sanity check the EDID block by looking at the header, the version number
122 * and the checksum. Return 0 if the EDID doesn't check out, or 1 if it's
123 * valid.
124 */
Alex Deucher3c537882010-02-05 04:21:19 -0500125bool drm_edid_is_valid(struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -0800126{
Adam Jackson862b89c2009-11-23 14:23:06 -0500127 int i, score = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800128 u8 csum = 0;
129 u8 *raw_edid = (u8 *)edid;
130
Adam Jackson862b89c2009-11-23 14:23:06 -0500131 for (i = 0; i < sizeof(edid_header); i++)
132 if (raw_edid[i] == edid_header[i])
133 score++;
134
135 if (score == 8) ;
136 else if (score >= 6) {
137 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
138 memcpy(raw_edid, edid_header, sizeof(edid_header));
139 } else
Dave Airlief453ba02008-11-07 14:05:41 -0800140 goto bad;
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 Jackson862b89c2009-11-23 14:23:06 -0500149 if (edid->version != 1) {
150 DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
151 goto bad;
152 }
153
Adam Jackson47ee4cc2009-11-23 14:23:05 -0500154 if (edid->revision > 4)
155 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
156
Dave Airlief453ba02008-11-07 14:05:41 -0800157 return 1;
158
159bad:
160 if (raw_edid) {
161 DRM_ERROR("Raw EDID:\n");
162 print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
163 printk("\n");
164 }
165 return 0;
166}
Alex Deucher3c537882010-02-05 04:21:19 -0500167EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -0800168
169/**
170 * edid_vendor - match a string against EDID's obfuscated vendor field
171 * @edid: EDID to match
172 * @vendor: vendor string
173 *
174 * Returns true if @vendor is in @edid, false otherwise
175 */
176static bool edid_vendor(struct edid *edid, char *vendor)
177{
178 char edid_vendor[3];
179
180 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
181 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
182 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +1000183 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -0800184
185 return !strncmp(edid_vendor, vendor, 3);
186}
187
188/**
189 * edid_get_quirks - return quirk flags for a given EDID
190 * @edid: EDID to process
191 *
192 * This tells subsequent routines what fixes they need to apply.
193 */
194static u32 edid_get_quirks(struct edid *edid)
195{
196 struct edid_quirk *quirk;
197 int i;
198
199 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
200 quirk = &edid_quirk_list[i];
201
202 if (edid_vendor(edid, quirk->vendor) &&
203 (EDID_PRODUCT_ID(edid) == quirk->product_id))
204 return quirk->quirks;
205 }
206
207 return 0;
208}
209
210#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
211#define MODE_REFRESH_DIFF(m,r) (abs((m)->vrefresh - target_refresh))
212
213
214/**
215 * edid_fixup_preferred - set preferred modes based on quirk list
216 * @connector: has mode list to fix up
217 * @quirks: quirks list
218 *
219 * Walk the mode list for @connector, clearing the preferred status
220 * on existing modes and setting it anew for the right mode ala @quirks.
221 */
222static void edid_fixup_preferred(struct drm_connector *connector,
223 u32 quirks)
224{
225 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +1000226 int target_refresh = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800227
228 if (list_empty(&connector->probed_modes))
229 return;
230
231 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
232 target_refresh = 60;
233 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
234 target_refresh = 75;
235
236 preferred_mode = list_first_entry(&connector->probed_modes,
237 struct drm_display_mode, head);
238
239 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
240 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
241
242 if (cur_mode == preferred_mode)
243 continue;
244
245 /* Largest mode is preferred */
246 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
247 preferred_mode = cur_mode;
248
249 /* At a given size, try to get closest to target refresh */
250 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
251 MODE_REFRESH_DIFF(cur_mode, target_refresh) <
252 MODE_REFRESH_DIFF(preferred_mode, target_refresh)) {
253 preferred_mode = cur_mode;
254 }
255 }
256
257 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
258}
259
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800260/*
261 * Add the Autogenerated from the DMT spec.
262 * This table is copied from xfree86/modes/xf86EdidModes.c.
263 * But the mode with Reduced blank feature is deleted.
264 */
265static struct drm_display_mode drm_dmt_modes[] = {
266 /* 640x350@85Hz */
267 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
268 736, 832, 0, 350, 382, 385, 445, 0,
269 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
270 /* 640x400@85Hz */
271 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
272 736, 832, 0, 400, 401, 404, 445, 0,
273 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
274 /* 720x400@85Hz */
275 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
276 828, 936, 0, 400, 401, 404, 446, 0,
277 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
278 /* 640x480@60Hz */
279 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
280 752, 800, 0, 480, 489, 492, 525, 0,
281 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
282 /* 640x480@72Hz */
283 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
284 704, 832, 0, 480, 489, 492, 520, 0,
285 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
286 /* 640x480@75Hz */
287 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
288 720, 840, 0, 480, 481, 484, 500, 0,
289 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
290 /* 640x480@85Hz */
291 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
292 752, 832, 0, 480, 481, 484, 509, 0,
293 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
294 /* 800x600@56Hz */
295 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
296 896, 1024, 0, 600, 601, 603, 625, 0,
297 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
298 /* 800x600@60Hz */
299 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
300 968, 1056, 0, 600, 601, 605, 628, 0,
301 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
302 /* 800x600@72Hz */
303 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
304 976, 1040, 0, 600, 637, 643, 666, 0,
305 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
306 /* 800x600@75Hz */
307 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
308 896, 1056, 0, 600, 601, 604, 625, 0,
309 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
310 /* 800x600@85Hz */
311 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
312 896, 1048, 0, 600, 601, 604, 631, 0,
313 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
314 /* 848x480@60Hz */
315 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
316 976, 1088, 0, 480, 486, 494, 517, 0,
317 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
318 /* 1024x768@43Hz, interlace */
319 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
320 1208, 1264, 0, 768, 768, 772, 817, 0,
321 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
322 DRM_MODE_FLAG_INTERLACE) },
323 /* 1024x768@60Hz */
324 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
325 1184, 1344, 0, 768, 771, 777, 806, 0,
326 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
327 /* 1024x768@70Hz */
328 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
329 1184, 1328, 0, 768, 771, 777, 806, 0,
330 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
331 /* 1024x768@75Hz */
332 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
333 1136, 1312, 0, 768, 769, 772, 800, 0,
334 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
335 /* 1024x768@85Hz */
336 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
337 1072, 1376, 0, 768, 769, 772, 808, 0,
338 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
339 /* 1152x864@75Hz */
340 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
341 1344, 1600, 0, 864, 865, 868, 900, 0,
342 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
343 /* 1280x768@60Hz */
344 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
345 1472, 1664, 0, 768, 771, 778, 798, 0,
346 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
347 /* 1280x768@75Hz */
348 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
349 1488, 1696, 0, 768, 771, 778, 805, 0,
350 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
351 /* 1280x768@85Hz */
352 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
353 1496, 1712, 0, 768, 771, 778, 809, 0,
354 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
355 /* 1280x800@60Hz */
356 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
357 1480, 1680, 0, 800, 803, 809, 831, 0,
358 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
359 /* 1280x800@75Hz */
360 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
361 1488, 1696, 0, 800, 803, 809, 838, 0,
362 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
363 /* 1280x800@85Hz */
364 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
365 1496, 1712, 0, 800, 803, 809, 843, 0,
366 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
367 /* 1280x960@60Hz */
368 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
369 1488, 1800, 0, 960, 961, 964, 1000, 0,
370 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
371 /* 1280x960@85Hz */
372 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
373 1504, 1728, 0, 960, 961, 964, 1011, 0,
374 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
375 /* 1280x1024@60Hz */
376 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
377 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
378 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
379 /* 1280x1024@75Hz */
380 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
381 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
382 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
383 /* 1280x1024@85Hz */
384 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
385 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
386 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
387 /* 1360x768@60Hz */
388 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
389 1536, 1792, 0, 768, 771, 777, 795, 0,
390 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
391 /* 1440x1050@60Hz */
392 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
393 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
394 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
395 /* 1440x1050@75Hz */
396 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
397 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
398 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
399 /* 1440x1050@85Hz */
400 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
401 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
402 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
403 /* 1440x900@60Hz */
404 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
405 1672, 1904, 0, 900, 903, 909, 934, 0,
406 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
407 /* 1440x900@75Hz */
408 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
409 1688, 1936, 0, 900, 903, 909, 942, 0,
410 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
411 /* 1440x900@85Hz */
412 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
413 1696, 1952, 0, 900, 903, 909, 948, 0,
414 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
415 /* 1600x1200@60Hz */
416 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
417 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
418 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
419 /* 1600x1200@65Hz */
420 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
421 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
422 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
423 /* 1600x1200@70Hz */
424 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
425 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
426 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
427 /* 1600x1200@75Hz */
428 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 2025000, 1600, 1664,
429 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
430 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
431 /* 1600x1200@85Hz */
432 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
433 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
434 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
435 /* 1680x1050@60Hz */
436 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
437 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
438 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
439 /* 1680x1050@75Hz */
440 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
441 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
442 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
443 /* 1680x1050@85Hz */
444 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
445 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
446 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
447 /* 1792x1344@60Hz */
448 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
449 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
450 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
451 /* 1729x1344@75Hz */
452 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
453 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
454 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
455 /* 1853x1392@60Hz */
456 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
457 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
458 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
459 /* 1856x1392@75Hz */
460 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
461 2208, 2560, 0, 1392, 1395, 1399, 1500, 0,
462 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
463 /* 1920x1200@60Hz */
464 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
465 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
466 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
467 /* 1920x1200@75Hz */
468 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
469 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
470 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
471 /* 1920x1200@85Hz */
472 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
473 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
474 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
475 /* 1920x1440@60Hz */
476 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
477 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
478 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
479 /* 1920x1440@75Hz */
480 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
481 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
482 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
483 /* 2560x1600@60Hz */
484 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
485 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
486 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
487 /* 2560x1600@75HZ */
488 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
489 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
490 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
491 /* 2560x1600@85HZ */
492 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
493 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
494 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
495};
Adam Jackson07a5e632009-12-03 17:44:38 -0500496static const int drm_num_dmt_modes =
497 sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800498
Zhao Yakui559ee212009-09-03 09:33:47 +0800499static struct drm_display_mode *drm_find_dmt(struct drm_device *dev,
500 int hsize, int vsize, int fresh)
501{
Adam Jackson07a5e632009-12-03 17:44:38 -0500502 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +0800503 struct drm_display_mode *ptr, *mode;
504
Zhao Yakui559ee212009-09-03 09:33:47 +0800505 mode = NULL;
Adam Jackson07a5e632009-12-03 17:44:38 -0500506 for (i = 0; i < drm_num_dmt_modes; i++) {
Zhao Yakui559ee212009-09-03 09:33:47 +0800507 ptr = &drm_dmt_modes[i];
508 if (hsize == ptr->hdisplay &&
509 vsize == ptr->vdisplay &&
510 fresh == drm_mode_vrefresh(ptr)) {
511 /* get the expected default mode */
512 mode = drm_mode_duplicate(dev, ptr);
513 break;
514 }
515 }
516 return mode;
517}
Adam Jackson23425ca2009-09-23 17:30:58 -0400518
519/*
520 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
521 * monitors fill with ascii space (0x20) instead.
522 */
523static int
524bad_std_timing(u8 a, u8 b)
525{
526 return (a == 0x00 && b == 0x00) ||
527 (a == 0x01 && b == 0x01) ||
528 (a == 0x20 && b == 0x20);
529}
530
Dave Airlief453ba02008-11-07 14:05:41 -0800531/**
532 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
533 * @t: standard timing params
Zhao Yakui5c612592009-06-22 13:17:10 +0800534 * @timing_level: standard timing level
Dave Airlief453ba02008-11-07 14:05:41 -0800535 *
536 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +0800537 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -0800538 *
539 * Punts for now, but should eventually use the FB layer's CVT based mode
540 * generation code.
541 */
542struct drm_display_mode *drm_mode_std(struct drm_device *dev,
Zhao Yakui5c612592009-06-22 13:17:10 +0800543 struct std_timing *t,
Adam Jacksonf066a172009-09-23 17:31:21 -0400544 int revision,
Zhao Yakui5c612592009-06-22 13:17:10 +0800545 int timing_level)
Dave Airlief453ba02008-11-07 14:05:41 -0800546{
547 struct drm_display_mode *mode;
Zhao Yakui5c612592009-06-22 13:17:10 +0800548 int hsize, vsize;
549 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200550 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
551 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +0800552 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
553 >> EDID_TIMING_VFREQ_SHIFT;
Dave Airlief453ba02008-11-07 14:05:41 -0800554
Adam Jackson23425ca2009-09-23 17:30:58 -0400555 if (bad_std_timing(t->hsize, t->vfreq_aspect))
556 return NULL;
557
Zhao Yakui5c612592009-06-22 13:17:10 +0800558 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
559 hsize = t->hsize * 8 + 248;
560 /* vrefresh_rate = vfreq + 60 */
561 vrefresh_rate = vfreq + 60;
562 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -0400563 if (aspect_ratio == 0) {
564 if (revision < 3)
565 vsize = hsize;
566 else
567 vsize = (hsize * 10) / 16;
568 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800569 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200570 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -0800571 vsize = (hsize * 4) / 5;
572 else
573 vsize = (hsize * 9) / 16;
Zhao Yakui559ee212009-09-03 09:33:47 +0800574 /* HDTV hack */
575 if (hsize == 1360 && vsize == 765 && vrefresh_rate == 60) {
Dave Airlied50ba252009-09-23 14:44:08 +1000576 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
577 false);
Zhao Yakui559ee212009-09-03 09:33:47 +0800578 mode->hdisplay = 1366;
579 mode->vsync_start = mode->vsync_start - 1;
580 mode->vsync_end = mode->vsync_end - 1;
581 return mode;
582 }
Zhao Yakui5c612592009-06-22 13:17:10 +0800583 mode = NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +0800584 /* check whether it can be found in default mode table */
585 mode = drm_find_dmt(dev, hsize, vsize, vrefresh_rate);
586 if (mode)
587 return mode;
588
Zhao Yakui5c612592009-06-22 13:17:10 +0800589 switch (timing_level) {
590 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +0800591 break;
592 case LEVEL_GTF:
593 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
594 break;
595 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +1000596 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
597 false);
Zhao Yakui5c612592009-06-22 13:17:10 +0800598 break;
599 }
Dave Airlief453ba02008-11-07 14:05:41 -0800600 return mode;
601}
602
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000603/*
604 * EDID is delightfully ambiguous about how interlaced modes are to be
605 * encoded. Our internal representation is of frame height, but some
606 * HDTV detailed timings are encoded as field height.
607 *
608 * The format list here is from CEA, in frame size. Technically we
609 * should be checking refresh rate too. Whatever.
610 */
611static void
612drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
613 struct detailed_pixel_timing *pt)
614{
615 int i;
616 static const struct {
617 int w, h;
618 } cea_interlaced[] = {
619 { 1920, 1080 },
620 { 720, 480 },
621 { 1440, 480 },
622 { 2880, 480 },
623 { 720, 576 },
624 { 1440, 576 },
625 { 2880, 576 },
626 };
627 static const int n_sizes =
628 sizeof(cea_interlaced)/sizeof(cea_interlaced[0]);
629
630 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
631 return;
632
633 for (i = 0; i < n_sizes; i++) {
634 if ((mode->hdisplay == cea_interlaced[i].w) &&
635 (mode->vdisplay == cea_interlaced[i].h / 2)) {
636 mode->vdisplay *= 2;
637 mode->vsync_start *= 2;
638 mode->vsync_end *= 2;
639 mode->vtotal *= 2;
640 mode->vtotal |= 1;
641 }
642 }
643
644 mode->flags |= DRM_MODE_FLAG_INTERLACE;
645}
646
Dave Airlief453ba02008-11-07 14:05:41 -0800647/**
648 * drm_mode_detailed - create a new mode from an EDID detailed timing section
649 * @dev: DRM device (needed to create new mode)
650 * @edid: EDID block
651 * @timing: EDID detailed timing info
652 * @quirks: quirks to apply
653 *
654 * An EDID detailed timing block contains enough info for us to create and
655 * return a new struct drm_display_mode.
656 */
657static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
658 struct edid *edid,
659 struct detailed_timing *timing,
660 u32 quirks)
661{
662 struct drm_display_mode *mode;
663 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200664 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
665 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
666 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
667 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +0200668 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
669 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
670 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4;
671 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 -0800672
Adam Jacksonfc438962009-06-04 10:20:34 +1000673 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200674 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +1000675 return NULL;
676
Michel Dänzer0454bea2009-06-15 16:56:07 +0200677 if (pt->misc & DRM_EDID_PT_STEREO) {
Dave Airlief453ba02008-11-07 14:05:41 -0800678 printk(KERN_WARNING "stereo mode not supported\n");
679 return NULL;
680 }
Michel Dänzer0454bea2009-06-15 16:56:07 +0200681 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Jerome Glisse79b7dcb2010-01-14 19:02:20 +0100682 printk(KERN_WARNING "composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800683 }
684
Zhao Yakuifcb45612009-10-14 09:11:25 +0800685 /* it is incorrect if hsync/vsync width is zero */
686 if (!hsync_pulse_width || !vsync_pulse_width) {
687 DRM_DEBUG_KMS("Incorrect Detailed timing. "
688 "Wrong Hsync/Vsync pulse width\n");
689 return NULL;
690 }
Dave Airlief453ba02008-11-07 14:05:41 -0800691 mode = drm_mode_create(dev);
692 if (!mode)
693 return NULL;
694
695 mode->type = DRM_MODE_TYPE_DRIVER;
696
697 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200698 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -0800699
Michel Dänzer0454bea2009-06-15 16:56:07 +0200700 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -0800701
Michel Dänzer0454bea2009-06-15 16:56:07 +0200702 mode->hdisplay = hactive;
703 mode->hsync_start = mode->hdisplay + hsync_offset;
704 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
705 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800706
Michel Dänzer0454bea2009-06-15 16:56:07 +0200707 mode->vdisplay = vactive;
708 mode->vsync_start = mode->vdisplay + vsync_offset;
709 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
710 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800711
Jesse Barnes7064fef2009-11-05 10:12:54 -0800712 /* Some EDIDs have bogus h/vtotal values */
713 if (mode->hsync_end > mode->htotal)
714 mode->htotal = mode->hsync_end + 1;
715 if (mode->vsync_end > mode->vtotal)
716 mode->vtotal = mode->vsync_end + 1;
717
Dave Airlief453ba02008-11-07 14:05:41 -0800718 drm_mode_set_name(mode);
719
Adam Jacksonb58db2c2010-02-15 22:15:39 +0000720 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -0800721
722 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +0200723 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -0800724 }
725
Michel Dänzer0454bea2009-06-15 16:56:07 +0200726 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
727 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
728 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
729 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -0800730
Michel Dänzere14cbee2009-06-23 12:36:32 +0200731 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
732 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -0800733
734 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
735 mode->width_mm *= 10;
736 mode->height_mm *= 10;
737 }
738
739 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
740 mode->width_mm = edid->width_cm * 10;
741 mode->height_mm = edid->height_cm * 10;
742 }
743
744 return mode;
745}
746
747/*
748 * Detailed mode info for the EDID "established modes" data to use.
749 */
750static struct drm_display_mode edid_est_modes[] = {
751 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
752 968, 1056, 0, 600, 601, 605, 628, 0,
753 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
754 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
755 896, 1024, 0, 600, 601, 603, 625, 0,
756 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
757 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
758 720, 840, 0, 480, 481, 484, 500, 0,
759 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
760 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
761 704, 832, 0, 480, 489, 491, 520, 0,
762 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
763 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
764 768, 864, 0, 480, 483, 486, 525, 0,
765 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
766 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25200, 640, 656,
767 752, 800, 0, 480, 490, 492, 525, 0,
768 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
769 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
770 846, 900, 0, 400, 421, 423, 449, 0,
771 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
772 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
773 846, 900, 0, 400, 412, 414, 449, 0,
774 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
775 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
776 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
777 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
778 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78800, 1024, 1040,
779 1136, 1312, 0, 768, 769, 772, 800, 0,
780 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
781 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
782 1184, 1328, 0, 768, 771, 777, 806, 0,
783 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
784 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
785 1184, 1344, 0, 768, 771, 777, 806, 0,
786 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
787 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
788 1208, 1264, 0, 768, 768, 776, 817, 0,
789 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
790 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
791 928, 1152, 0, 624, 625, 628, 667, 0,
792 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
793 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
794 896, 1056, 0, 600, 601, 604, 625, 0,
795 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
796 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
797 976, 1040, 0, 600, 637, 643, 666, 0,
798 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
799 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
800 1344, 1600, 0, 864, 865, 868, 900, 0,
801 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
802};
803
804#define EDID_EST_TIMINGS 16
805#define EDID_STD_TIMINGS 8
806#define EDID_DETAILED_TIMINGS 4
807
808/**
809 * add_established_modes - get est. modes from EDID and add them
810 * @edid: EDID block to scan
811 *
812 * Each EDID block contains a bitmap of the supported "established modes" list
813 * (defined above). Tease them out and add them to the global modes list.
814 */
815static int add_established_modes(struct drm_connector *connector, struct edid *edid)
816{
817 struct drm_device *dev = connector->dev;
818 unsigned long est_bits = edid->established_timings.t1 |
819 (edid->established_timings.t2 << 8) |
820 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
821 int i, modes = 0;
822
823 for (i = 0; i <= EDID_EST_TIMINGS; i++)
824 if (est_bits & (1<<i)) {
825 struct drm_display_mode *newmode;
826 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
827 if (newmode) {
828 drm_mode_probed_add(connector, newmode);
829 modes++;
830 }
831 }
832
833 return modes;
834}
Zhao Yakui5c612592009-06-22 13:17:10 +0800835/**
836 * stanard_timing_level - get std. timing level(CVT/GTF/DMT)
837 * @edid: EDID block to scan
838 */
839static int standard_timing_level(struct edid *edid)
840{
841 if (edid->revision >= 2) {
842 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
843 return LEVEL_CVT;
844 return LEVEL_GTF;
845 }
846 return LEVEL_DMT;
847}
Dave Airlief453ba02008-11-07 14:05:41 -0800848
849/**
850 * add_standard_modes - get std. modes from EDID and add them
851 * @edid: EDID block to scan
852 *
853 * Standard modes can be calculated using the CVT standard. Grab them from
854 * @edid, calculate them, and add them to the list.
855 */
856static int add_standard_modes(struct drm_connector *connector, struct edid *edid)
857{
858 struct drm_device *dev = connector->dev;
859 int i, modes = 0;
Zhao Yakui5c612592009-06-22 13:17:10 +0800860 int timing_level;
861
862 timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -0800863
864 for (i = 0; i < EDID_STD_TIMINGS; i++) {
865 struct std_timing *t = &edid->standard_timings[i];
866 struct drm_display_mode *newmode;
867
868 /* If std timings bytes are 1, 1 it's empty */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200869 if (t->hsize == 1 && t->vfreq_aspect == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800870 continue;
871
Zhao Yakui5c612592009-06-22 13:17:10 +0800872 newmode = drm_mode_std(dev, &edid->standard_timings[i],
Adam Jacksonf066a172009-09-23 17:31:21 -0400873 edid->revision, timing_level);
Dave Airlief453ba02008-11-07 14:05:41 -0800874 if (newmode) {
875 drm_mode_probed_add(connector, newmode);
876 modes++;
877 }
878 }
879
880 return modes;
881}
882
Adam Jackson07a5e632009-12-03 17:44:38 -0500883/*
884 * XXX fix this for:
885 * - GTF secondary curve formula
886 * - EDID 1.4 range offsets
887 * - CVT extended bits
888 */
889static bool
890mode_in_range(struct drm_display_mode *mode, struct detailed_timing *timing)
891{
892 struct detailed_data_monitor_range *range;
893 int hsync, vrefresh;
894
895 range = &timing->data.other_data.data.range;
896
897 hsync = drm_mode_hsync(mode);
898 vrefresh = drm_mode_vrefresh(mode);
899
900 if (hsync < range->min_hfreq_khz || hsync > range->max_hfreq_khz)
901 return false;
902
903 if (vrefresh < range->min_vfreq || vrefresh > range->max_vfreq)
904 return false;
905
906 if (range->pixel_clock_mhz && range->pixel_clock_mhz != 0xff) {
907 /* be forgiving since it's in units of 10MHz */
908 int max_clock = range->pixel_clock_mhz * 10 + 9;
909 max_clock *= 1000;
910 if (mode->clock > max_clock)
911 return false;
912 }
913
914 return true;
915}
916
917/*
918 * XXX If drm_dmt_modes ever regrows the CVT-R modes (and it will) this will
919 * need to account for them.
920 */
921static int drm_gtf_modes_for_range(struct drm_connector *connector,
922 struct detailed_timing *timing)
923{
924 int i, modes = 0;
925 struct drm_display_mode *newmode;
926 struct drm_device *dev = connector->dev;
927
928 for (i = 0; i < drm_num_dmt_modes; i++) {
929 if (mode_in_range(drm_dmt_modes + i, timing)) {
930 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
931 if (newmode) {
932 drm_mode_probed_add(connector, newmode);
933 modes++;
934 }
935 }
936 }
937
938 return modes;
939}
940
Adam Jackson9340d8c2009-12-03 17:44:40 -0500941static int drm_cvt_modes(struct drm_connector *connector,
942 struct detailed_timing *timing)
943{
944 int i, j, modes = 0;
945 struct drm_display_mode *newmode;
946 struct drm_device *dev = connector->dev;
947 struct cvt_timing *cvt;
948 const int rates[] = { 60, 85, 75, 60, 50 };
Adam Jackson69da3012010-01-04 17:53:06 -0500949 const u8 empty[3] = { 0, 0, 0 };
Adam Jackson9340d8c2009-12-03 17:44:40 -0500950
951 for (i = 0; i < 4; i++) {
Marin Mitov29ebdf92009-12-20 09:03:27 +0200952 int uninitialized_var(width), height;
Adam Jackson9340d8c2009-12-03 17:44:40 -0500953 cvt = &(timing->data.other_data.data.cvt[i]);
954
Adam Jackson69da3012010-01-04 17:53:06 -0500955 if (!memcmp(cvt->code, empty, 3))
956 continue;
957
Adam Jackson8e10ee92010-01-04 17:53:07 -0500958 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
959 switch (cvt->code[1] & 0x0c) {
Adam Jackson9340d8c2009-12-03 17:44:40 -0500960 case 0x00:
961 width = height * 4 / 3;
962 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500963 case 0x04:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500964 width = height * 16 / 9;
965 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500966 case 0x08:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500967 width = height * 16 / 10;
968 break;
Adam Jackson8e10ee92010-01-04 17:53:07 -0500969 case 0x0c:
Adam Jackson9340d8c2009-12-03 17:44:40 -0500970 width = height * 15 / 9;
971 break;
972 }
973
974 for (j = 1; j < 5; j++) {
975 if (cvt->code[2] & (1 << j)) {
976 newmode = drm_cvt_mode(dev, width, height,
977 rates[j], j == 0,
978 false, false);
979 if (newmode) {
980 drm_mode_probed_add(connector, newmode);
981 modes++;
982 }
983 }
984 }
985 }
986
987 return modes;
988}
989
Adam Jackson9cf00972009-12-03 17:44:36 -0500990static int add_detailed_modes(struct drm_connector *connector,
991 struct detailed_timing *timing,
992 struct edid *edid, u32 quirks, int preferred)
993{
994 int i, modes = 0;
995 struct detailed_non_pixel *data = &timing->data.other_data;
996 int timing_level = standard_timing_level(edid);
Adam Jackson07a5e632009-12-03 17:44:38 -0500997 int gtf = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF);
Adam Jackson9cf00972009-12-03 17:44:36 -0500998 struct drm_display_mode *newmode;
999 struct drm_device *dev = connector->dev;
1000
1001 if (timing->pixel_clock) {
1002 newmode = drm_mode_detailed(dev, edid, timing, quirks);
1003 if (!newmode)
1004 return 0;
1005
1006 if (preferred)
1007 newmode->type |= DRM_MODE_TYPE_PREFERRED;
1008
1009 drm_mode_probed_add(connector, newmode);
1010 return 1;
1011 }
1012
1013 /* other timing types */
1014 switch (data->type) {
1015 case EDID_DETAIL_MONITOR_RANGE:
Adam Jackson07a5e632009-12-03 17:44:38 -05001016 if (gtf)
1017 modes += drm_gtf_modes_for_range(connector, timing);
Adam Jackson9cf00972009-12-03 17:44:36 -05001018 break;
1019 case EDID_DETAIL_STD_MODES:
1020 /* Six modes per detailed section */
1021 for (i = 0; i < 6; i++) {
1022 struct std_timing *std;
1023 struct drm_display_mode *newmode;
1024
1025 std = &data->data.timings[i];
1026 newmode = drm_mode_std(dev, std, edid->revision,
1027 timing_level);
1028 if (newmode) {
1029 drm_mode_probed_add(connector, newmode);
1030 modes++;
1031 }
1032 }
1033 break;
Adam Jackson9340d8c2009-12-03 17:44:40 -05001034 case EDID_DETAIL_CVT_3BYTE:
1035 modes += drm_cvt_modes(connector, timing);
1036 break;
Adam Jackson9cf00972009-12-03 17:44:36 -05001037 default:
1038 break;
1039 }
1040
1041 return modes;
1042}
1043
Dave Airlief453ba02008-11-07 14:05:41 -08001044/**
Adam Jackson9cf00972009-12-03 17:44:36 -05001045 * add_detailed_info - get detailed mode info from EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08001046 * @connector: attached connector
1047 * @edid: EDID block to scan
1048 * @quirks: quirks to apply
1049 *
1050 * Some of the detailed timing sections may contain mode information. Grab
1051 * it and add it to the list.
1052 */
1053static int add_detailed_info(struct drm_connector *connector,
1054 struct edid *edid, u32 quirks)
1055{
Adam Jackson9cf00972009-12-03 17:44:36 -05001056 int i, modes = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001057
1058 for (i = 0; i < EDID_DETAILED_TIMINGS; i++) {
1059 struct detailed_timing *timing = &edid->detailed_timings[i];
Adam Jackson9cf00972009-12-03 17:44:36 -05001060 int preferred = (i == 0) && (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Dave Airlief453ba02008-11-07 14:05:41 -08001061
Adam Jackson9cf00972009-12-03 17:44:36 -05001062 /* In 1.0, only timings are allowed */
1063 if (!timing->pixel_clock && edid->version == 1 &&
1064 edid->revision == 0)
1065 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08001066
Adam Jackson9cf00972009-12-03 17:44:36 -05001067 modes += add_detailed_modes(connector, timing, edid, quirks,
1068 preferred);
Dave Airlief453ba02008-11-07 14:05:41 -08001069 }
1070
1071 return modes;
1072}
Adam Jackson9cf00972009-12-03 17:44:36 -05001073
Zhao Yakui882f0212009-08-26 18:20:49 +08001074/**
1075 * add_detailed_mode_eedid - get detailed mode info from addtional timing
1076 * EDID block
1077 * @connector: attached connector
1078 * @edid: EDID block to scan(It is only to get addtional timing EDID block)
1079 * @quirks: quirks to apply
1080 *
1081 * Some of the detailed timing sections may contain mode information. Grab
1082 * it and add it to the list.
1083 */
1084static int add_detailed_info_eedid(struct drm_connector *connector,
1085 struct edid *edid, u32 quirks)
1086{
Adam Jackson9cf00972009-12-03 17:44:36 -05001087 int i, modes = 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001088 char *edid_ext = NULL;
1089 struct detailed_timing *timing;
Zhao Yakui882f0212009-08-26 18:20:49 +08001090 int edid_ext_num;
1091 int start_offset, end_offset;
1092 int timing_level;
1093
1094 if (edid->version == 1 && edid->revision < 3) {
1095 /* If the EDID version is less than 1.3, there is no
1096 * extension EDID.
1097 */
1098 return 0;
1099 }
1100 if (!edid->extensions) {
1101 /* if there is no extension EDID, it is unnecessary to
1102 * parse the E-EDID to get detailed info
1103 */
1104 return 0;
1105 }
1106
1107 /* Chose real EDID extension number */
Alex Deucher3c537882010-02-05 04:21:19 -05001108 edid_ext_num = edid->extensions > DRM_MAX_EDID_EXT_NUM ?
1109 DRM_MAX_EDID_EXT_NUM : edid->extensions;
Zhao Yakui882f0212009-08-26 18:20:49 +08001110
1111 /* Find CEA extension */
1112 for (i = 0; i < edid_ext_num; i++) {
1113 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1114 /* This block is CEA extension */
1115 if (edid_ext[0] == 0x02)
1116 break;
1117 }
1118
1119 if (i == edid_ext_num) {
1120 /* if there is no additional timing EDID block, return */
1121 return 0;
1122 }
1123
1124 /* Get the start offset of detailed timing block */
1125 start_offset = edid_ext[2];
1126 if (start_offset == 0) {
1127 /* If the start_offset is zero, it means that neither detailed
1128 * info nor data block exist. In such case it is also
1129 * unnecessary to parse the detailed timing info.
1130 */
1131 return 0;
1132 }
1133
1134 timing_level = standard_timing_level(edid);
1135 end_offset = EDID_LENGTH;
1136 end_offset -= sizeof(struct detailed_timing);
1137 for (i = start_offset; i < end_offset;
1138 i += sizeof(struct detailed_timing)) {
1139 timing = (struct detailed_timing *)(edid_ext + i);
Adam Jackson9cf00972009-12-03 17:44:36 -05001140 modes += add_detailed_modes(connector, timing, edid, quirks, 0);
Zhao Yakui882f0212009-08-26 18:20:49 +08001141 }
1142
1143 return modes;
1144}
Dave Airlief453ba02008-11-07 14:05:41 -08001145
1146#define DDC_ADDR 0x50
Ma Ling167f3a02009-03-20 14:09:48 +08001147/**
1148 * Get EDID information via I2C.
1149 *
1150 * \param adapter : i2c device adaptor
1151 * \param buf : EDID data buffer to be filled
1152 * \param len : EDID data buffer length
1153 * \return 0 on success or -1 on failure.
1154 *
1155 * Try to fetch EDID information by calling i2c driver function.
1156 */
1157int drm_do_probe_ddc_edid(struct i2c_adapter *adapter,
1158 unsigned char *buf, int len)
Dave Airlief453ba02008-11-07 14:05:41 -08001159{
1160 unsigned char start = 0x0;
Dave Airlief453ba02008-11-07 14:05:41 -08001161 struct i2c_msg msgs[] = {
1162 {
1163 .addr = DDC_ADDR,
1164 .flags = 0,
1165 .len = 1,
1166 .buf = &start,
1167 }, {
1168 .addr = DDC_ADDR,
1169 .flags = I2C_M_RD,
Ma Ling167f3a02009-03-20 14:09:48 +08001170 .len = len,
Dave Airlief453ba02008-11-07 14:05:41 -08001171 .buf = buf,
1172 }
1173 };
1174
Dave Airlief453ba02008-11-07 14:05:41 -08001175 if (i2c_transfer(adapter, msgs, 2) == 2)
Ma Ling167f3a02009-03-20 14:09:48 +08001176 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001177
Ma Ling167f3a02009-03-20 14:09:48 +08001178 return -1;
Dave Airlief453ba02008-11-07 14:05:41 -08001179}
1180EXPORT_SYMBOL(drm_do_probe_ddc_edid);
1181
Ma Ling167f3a02009-03-20 14:09:48 +08001182static int drm_ddc_read_edid(struct drm_connector *connector,
1183 struct i2c_adapter *adapter,
1184 char *buf, int len)
1185{
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001186 int i;
Ma Ling167f3a02009-03-20 14:09:48 +08001187
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001188 for (i = 0; i < 4; i++) {
1189 if (drm_do_probe_ddc_edid(adapter, buf, len))
1190 return -1;
Alex Deucher3c537882010-02-05 04:21:19 -05001191 if (drm_edid_is_valid((struct edid *)buf))
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001192 return 0;
Ma Ling167f3a02009-03-20 14:09:48 +08001193 }
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001194
1195 /* repeated checksum failures; warn, but carry on */
1196 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1197 drm_get_connector_name(connector));
1198 return -1;
Ma Ling167f3a02009-03-20 14:09:48 +08001199}
1200
Dave Airlief453ba02008-11-07 14:05:41 -08001201/**
1202 * drm_get_edid - get EDID data, if available
1203 * @connector: connector we're probing
1204 * @adapter: i2c adapter to use for DDC
1205 *
1206 * Poke the given connector's i2c channel to grab EDID data if possible.
1207 *
1208 * Return edid data or NULL if we couldn't find any.
1209 */
1210struct edid *drm_get_edid(struct drm_connector *connector,
1211 struct i2c_adapter *adapter)
1212{
Ma Ling167f3a02009-03-20 14:09:48 +08001213 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001214 struct edid *edid;
1215
Alex Deucher3c537882010-02-05 04:21:19 -05001216 edid = kmalloc(EDID_LENGTH * (DRM_MAX_EDID_EXT_NUM + 1),
Ma Ling167f3a02009-03-20 14:09:48 +08001217 GFP_KERNEL);
1218 if (edid == NULL) {
1219 dev_warn(&connector->dev->pdev->dev,
1220 "Failed to allocate EDID\n");
1221 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001222 }
Ma Ling167f3a02009-03-20 14:09:48 +08001223
1224 /* Read first EDID block */
1225 ret = drm_ddc_read_edid(connector, adapter,
1226 (unsigned char *)edid, EDID_LENGTH);
1227 if (ret != 0)
1228 goto clean_up;
1229
1230 /* There are EDID extensions to be read */
1231 if (edid->extensions != 0) {
1232 int edid_ext_num = edid->extensions;
1233
Alex Deucher3c537882010-02-05 04:21:19 -05001234 if (edid_ext_num > DRM_MAX_EDID_EXT_NUM) {
Ma Ling167f3a02009-03-20 14:09:48 +08001235 dev_warn(&connector->dev->pdev->dev,
1236 "The number of extension(%d) is "
1237 "over max (%d), actually read number (%d)\n",
Alex Deucher3c537882010-02-05 04:21:19 -05001238 edid_ext_num, DRM_MAX_EDID_EXT_NUM,
1239 DRM_MAX_EDID_EXT_NUM);
Ma Ling167f3a02009-03-20 14:09:48 +08001240 /* Reset EDID extension number to be read */
Alex Deucher3c537882010-02-05 04:21:19 -05001241 edid_ext_num = DRM_MAX_EDID_EXT_NUM;
Ma Ling167f3a02009-03-20 14:09:48 +08001242 }
1243 /* Read EDID including extensions too */
1244 ret = drm_ddc_read_edid(connector, adapter, (char *)edid,
1245 EDID_LENGTH * (edid_ext_num + 1));
1246 if (ret != 0)
1247 goto clean_up;
1248
Dave Airlief453ba02008-11-07 14:05:41 -08001249 }
1250
1251 connector->display_info.raw_edid = (char *)edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001252 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001253
Ma Ling167f3a02009-03-20 14:09:48 +08001254clean_up:
1255 kfree(edid);
1256 edid = NULL;
1257end:
Dave Airlief453ba02008-11-07 14:05:41 -08001258 return edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001259
Dave Airlief453ba02008-11-07 14:05:41 -08001260}
1261EXPORT_SYMBOL(drm_get_edid);
1262
Ma Lingf23c20c2009-03-26 19:26:23 +08001263#define HDMI_IDENTIFIER 0x000C03
1264#define VENDOR_BLOCK 0x03
1265/**
1266 * drm_detect_hdmi_monitor - detect whether monitor is hdmi.
1267 * @edid: monitor EDID information
1268 *
1269 * Parse the CEA extension according to CEA-861-B.
1270 * Return true if HDMI, false if not or unknown.
1271 */
1272bool drm_detect_hdmi_monitor(struct edid *edid)
1273{
1274 char *edid_ext = NULL;
1275 int i, hdmi_id, edid_ext_num;
1276 int start_offset, end_offset;
1277 bool is_hdmi = false;
1278
1279 /* No EDID or EDID extensions */
1280 if (edid == NULL || edid->extensions == 0)
1281 goto end;
1282
1283 /* Chose real EDID extension number */
Alex Deucher3c537882010-02-05 04:21:19 -05001284 edid_ext_num = edid->extensions > DRM_MAX_EDID_EXT_NUM ?
1285 DRM_MAX_EDID_EXT_NUM : edid->extensions;
Ma Lingf23c20c2009-03-26 19:26:23 +08001286
1287 /* Find CEA extension */
1288 for (i = 0; i < edid_ext_num; i++) {
1289 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1290 /* This block is CEA extension */
1291 if (edid_ext[0] == 0x02)
1292 break;
1293 }
1294
1295 if (i == edid_ext_num)
1296 goto end;
1297
1298 /* Data block offset in CEA extension block */
1299 start_offset = 4;
1300 end_offset = edid_ext[2];
1301
1302 /*
1303 * Because HDMI identifier is in Vendor Specific Block,
1304 * search it from all data blocks of CEA extension.
1305 */
1306 for (i = start_offset; i < end_offset;
1307 /* Increased by data block len */
1308 i += ((edid_ext[i] & 0x1f) + 1)) {
1309 /* Find vendor specific block */
1310 if ((edid_ext[i] >> 5) == VENDOR_BLOCK) {
1311 hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) |
1312 edid_ext[i + 3] << 16;
1313 /* Find HDMI identifier */
1314 if (hdmi_id == HDMI_IDENTIFIER)
1315 is_hdmi = true;
1316 break;
1317 }
1318 }
1319
1320end:
1321 return is_hdmi;
1322}
1323EXPORT_SYMBOL(drm_detect_hdmi_monitor);
1324
Dave Airlief453ba02008-11-07 14:05:41 -08001325/**
1326 * drm_add_edid_modes - add modes from EDID data, if available
1327 * @connector: connector we're probing
1328 * @edid: edid data
1329 *
1330 * Add the specified modes to the connector's mode list.
1331 *
1332 * Return number of modes added or 0 if we couldn't find any.
1333 */
1334int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
1335{
1336 int num_modes = 0;
1337 u32 quirks;
1338
1339 if (edid == NULL) {
1340 return 0;
1341 }
Alex Deucher3c537882010-02-05 04:21:19 -05001342 if (!drm_edid_is_valid(edid)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001343 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1344 drm_get_connector_name(connector));
1345 return 0;
1346 }
1347
1348 quirks = edid_get_quirks(edid);
1349
1350 num_modes += add_established_modes(connector, edid);
1351 num_modes += add_standard_modes(connector, edid);
1352 num_modes += add_detailed_info(connector, edid, quirks);
Zhao Yakui882f0212009-08-26 18:20:49 +08001353 num_modes += add_detailed_info_eedid(connector, edid, quirks);
Dave Airlief453ba02008-11-07 14:05:41 -08001354
1355 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
1356 edid_fixup_preferred(connector, quirks);
1357
Michel Dänzer0454bea2009-06-15 16:56:07 +02001358 connector->display_info.serration_vsync = (edid->input & DRM_EDID_INPUT_SERRATION_VSYNC) ? 1 : 0;
1359 connector->display_info.sync_on_green = (edid->input & DRM_EDID_INPUT_SYNC_ON_GREEN) ? 1 : 0;
1360 connector->display_info.composite_sync = (edid->input & DRM_EDID_INPUT_COMPOSITE_SYNC) ? 1 : 0;
1361 connector->display_info.separate_syncs = (edid->input & DRM_EDID_INPUT_SEPARATE_SYNCS) ? 1 : 0;
1362 connector->display_info.blank_to_black = (edid->input & DRM_EDID_INPUT_BLANK_TO_BLACK) ? 1 : 0;
1363 connector->display_info.video_level = (edid->input & DRM_EDID_INPUT_VIDEO_LEVEL) >> 5;
1364 connector->display_info.digital = (edid->input & DRM_EDID_INPUT_DIGITAL) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001365 connector->display_info.width_mm = edid->width_cm * 10;
1366 connector->display_info.height_mm = edid->height_cm * 10;
1367 connector->display_info.gamma = edid->gamma;
Michel Dänzer0454bea2009-06-15 16:56:07 +02001368 connector->display_info.gtf_supported = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF) ? 1 : 0;
1369 connector->display_info.standard_color = (edid->features & DRM_EDID_FEATURE_STANDARD_COLOR) ? 1 : 0;
1370 connector->display_info.display_type = (edid->features & DRM_EDID_FEATURE_DISPLAY_TYPE) >> 3;
1371 connector->display_info.active_off_supported = (edid->features & DRM_EDID_FEATURE_PM_ACTIVE_OFF) ? 1 : 0;
1372 connector->display_info.suspend_supported = (edid->features & DRM_EDID_FEATURE_PM_SUSPEND) ? 1 : 0;
1373 connector->display_info.standby_supported = (edid->features & DRM_EDID_FEATURE_PM_STANDBY) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001374 connector->display_info.gamma = edid->gamma;
1375
1376 return num_modes;
1377}
1378EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001379
1380/**
1381 * drm_add_modes_noedid - add modes for the connectors without EDID
1382 * @connector: connector we're probing
1383 * @hdisplay: the horizontal display limit
1384 * @vdisplay: the vertical display limit
1385 *
1386 * Add the specified modes to the connector's mode list. Only when the
1387 * hdisplay/vdisplay is not beyond the given limit, it will be added.
1388 *
1389 * Return number of modes added or 0 if we couldn't find any.
1390 */
1391int drm_add_modes_noedid(struct drm_connector *connector,
1392 int hdisplay, int vdisplay)
1393{
1394 int i, count, num_modes = 0;
1395 struct drm_display_mode *mode, *ptr;
1396 struct drm_device *dev = connector->dev;
1397
1398 count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
1399 if (hdisplay < 0)
1400 hdisplay = 0;
1401 if (vdisplay < 0)
1402 vdisplay = 0;
1403
1404 for (i = 0; i < count; i++) {
1405 ptr = &drm_dmt_modes[i];
1406 if (hdisplay && vdisplay) {
1407 /*
1408 * Only when two are valid, they will be used to check
1409 * whether the mode should be added to the mode list of
1410 * the connector.
1411 */
1412 if (ptr->hdisplay > hdisplay ||
1413 ptr->vdisplay > vdisplay)
1414 continue;
1415 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05001416 if (drm_mode_vrefresh(ptr) > 61)
1417 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001418 mode = drm_mode_duplicate(dev, ptr);
1419 if (mode) {
1420 drm_mode_probed_add(connector, mode);
1421 num_modes++;
1422 }
1423 }
1424 return num_modes;
1425}
1426EXPORT_SYMBOL(drm_add_modes_noedid);