blob: 30af8f3e6427d9f135e042976f1848c574b7f3b3 [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)
Zhao Yakui882f0212009-08-26 18:20:49 +080063/* define the number of Extension EDID block */
64#define MAX_EDID_EXT_NUM 4
Dave Airlief453ba02008-11-07 14:05:41 -080065
Zhao Yakui5c612592009-06-22 13:17:10 +080066#define LEVEL_DMT 0
67#define LEVEL_GTF 1
68#define LEVEL_CVT 2
69
Dave Airlief453ba02008-11-07 14:05:41 -080070static struct edid_quirk {
71 char *vendor;
72 int product_id;
73 u32 quirks;
74} edid_quirk_list[] = {
75 /* Acer AL1706 */
76 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
77 /* Acer F51 */
78 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
79 /* Unknown Acer */
80 { "ACR", 2423, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
81
82 /* Belinea 10 15 55 */
83 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
84 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
85
86 /* Envision Peripherals, Inc. EN-7100e */
87 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
88
89 /* Funai Electronics PM36B */
90 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
91 EDID_QUIRK_DETAILED_IN_CM },
92
93 /* LG Philips LCD LP154W01-A5 */
94 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
95 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
96
97 /* Philips 107p5 CRT */
98 { "PHL", 57364, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
99
100 /* Proview AY765C */
101 { "PTS", 765, EDID_QUIRK_FIRST_DETAILED_PREFERRED },
102
103 /* Samsung SyncMaster 205BW. Note: irony */
104 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
105 /* Samsung SyncMaster 22[5-6]BW */
106 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
107 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
108};
109
110
111/* Valid EDID header has these bytes */
Adam Jackson083ae052009-09-23 17:30:45 -0400112static const u8 edid_header[] = {
113 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
114};
Dave Airlief453ba02008-11-07 14:05:41 -0800115
116/**
117 * edid_is_valid - sanity check EDID data
118 * @edid: EDID data
119 *
120 * Sanity check the EDID block by looking at the header, the version number
121 * and the checksum. Return 0 if the EDID doesn't check out, or 1 if it's
122 * valid.
123 */
124static bool edid_is_valid(struct edid *edid)
125{
Adam Jackson862b89c2009-11-23 14:23:06 -0500126 int i, score = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800127 u8 csum = 0;
128 u8 *raw_edid = (u8 *)edid;
129
Adam Jackson862b89c2009-11-23 14:23:06 -0500130 for (i = 0; i < sizeof(edid_header); i++)
131 if (raw_edid[i] == edid_header[i])
132 score++;
133
134 if (score == 8) ;
135 else if (score >= 6) {
136 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
137 memcpy(raw_edid, edid_header, sizeof(edid_header));
138 } else
Dave Airlief453ba02008-11-07 14:05:41 -0800139 goto bad;
Adam Jackson862b89c2009-11-23 14:23:06 -0500140
Dave Airlief453ba02008-11-07 14:05:41 -0800141 for (i = 0; i < EDID_LENGTH; i++)
142 csum += raw_edid[i];
143 if (csum) {
144 DRM_ERROR("EDID checksum is invalid, remainder is %d\n", csum);
145 goto bad;
146 }
147
Adam Jackson862b89c2009-11-23 14:23:06 -0500148 if (edid->version != 1) {
149 DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
150 goto bad;
151 }
152
Adam Jackson47ee4cc2009-11-23 14:23:05 -0500153 if (edid->revision > 4)
154 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
155
Dave Airlief453ba02008-11-07 14:05:41 -0800156 return 1;
157
158bad:
159 if (raw_edid) {
160 DRM_ERROR("Raw EDID:\n");
161 print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
162 printk("\n");
163 }
164 return 0;
165}
166
167/**
168 * edid_vendor - match a string against EDID's obfuscated vendor field
169 * @edid: EDID to match
170 * @vendor: vendor string
171 *
172 * Returns true if @vendor is in @edid, false otherwise
173 */
174static bool edid_vendor(struct edid *edid, char *vendor)
175{
176 char edid_vendor[3];
177
178 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
179 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
180 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +1000181 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -0800182
183 return !strncmp(edid_vendor, vendor, 3);
184}
185
186/**
187 * edid_get_quirks - return quirk flags for a given EDID
188 * @edid: EDID to process
189 *
190 * This tells subsequent routines what fixes they need to apply.
191 */
192static u32 edid_get_quirks(struct edid *edid)
193{
194 struct edid_quirk *quirk;
195 int i;
196
197 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
198 quirk = &edid_quirk_list[i];
199
200 if (edid_vendor(edid, quirk->vendor) &&
201 (EDID_PRODUCT_ID(edid) == quirk->product_id))
202 return quirk->quirks;
203 }
204
205 return 0;
206}
207
208#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
209#define MODE_REFRESH_DIFF(m,r) (abs((m)->vrefresh - target_refresh))
210
211
212/**
213 * edid_fixup_preferred - set preferred modes based on quirk list
214 * @connector: has mode list to fix up
215 * @quirks: quirks list
216 *
217 * Walk the mode list for @connector, clearing the preferred status
218 * on existing modes and setting it anew for the right mode ala @quirks.
219 */
220static void edid_fixup_preferred(struct drm_connector *connector,
221 u32 quirks)
222{
223 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +1000224 int target_refresh = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800225
226 if (list_empty(&connector->probed_modes))
227 return;
228
229 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
230 target_refresh = 60;
231 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
232 target_refresh = 75;
233
234 preferred_mode = list_first_entry(&connector->probed_modes,
235 struct drm_display_mode, head);
236
237 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
238 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
239
240 if (cur_mode == preferred_mode)
241 continue;
242
243 /* Largest mode is preferred */
244 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
245 preferred_mode = cur_mode;
246
247 /* At a given size, try to get closest to target refresh */
248 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
249 MODE_REFRESH_DIFF(cur_mode, target_refresh) <
250 MODE_REFRESH_DIFF(preferred_mode, target_refresh)) {
251 preferred_mode = cur_mode;
252 }
253 }
254
255 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
256}
257
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800258/*
259 * Add the Autogenerated from the DMT spec.
260 * This table is copied from xfree86/modes/xf86EdidModes.c.
261 * But the mode with Reduced blank feature is deleted.
262 */
263static struct drm_display_mode drm_dmt_modes[] = {
264 /* 640x350@85Hz */
265 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
266 736, 832, 0, 350, 382, 385, 445, 0,
267 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
268 /* 640x400@85Hz */
269 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
270 736, 832, 0, 400, 401, 404, 445, 0,
271 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
272 /* 720x400@85Hz */
273 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
274 828, 936, 0, 400, 401, 404, 446, 0,
275 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
276 /* 640x480@60Hz */
277 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
278 752, 800, 0, 480, 489, 492, 525, 0,
279 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
280 /* 640x480@72Hz */
281 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
282 704, 832, 0, 480, 489, 492, 520, 0,
283 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
284 /* 640x480@75Hz */
285 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
286 720, 840, 0, 480, 481, 484, 500, 0,
287 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
288 /* 640x480@85Hz */
289 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
290 752, 832, 0, 480, 481, 484, 509, 0,
291 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
292 /* 800x600@56Hz */
293 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
294 896, 1024, 0, 600, 601, 603, 625, 0,
295 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
296 /* 800x600@60Hz */
297 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
298 968, 1056, 0, 600, 601, 605, 628, 0,
299 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
300 /* 800x600@72Hz */
301 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
302 976, 1040, 0, 600, 637, 643, 666, 0,
303 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
304 /* 800x600@75Hz */
305 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
306 896, 1056, 0, 600, 601, 604, 625, 0,
307 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
308 /* 800x600@85Hz */
309 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
310 896, 1048, 0, 600, 601, 604, 631, 0,
311 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
312 /* 848x480@60Hz */
313 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
314 976, 1088, 0, 480, 486, 494, 517, 0,
315 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
316 /* 1024x768@43Hz, interlace */
317 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
318 1208, 1264, 0, 768, 768, 772, 817, 0,
319 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
320 DRM_MODE_FLAG_INTERLACE) },
321 /* 1024x768@60Hz */
322 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
323 1184, 1344, 0, 768, 771, 777, 806, 0,
324 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
325 /* 1024x768@70Hz */
326 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
327 1184, 1328, 0, 768, 771, 777, 806, 0,
328 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
329 /* 1024x768@75Hz */
330 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
331 1136, 1312, 0, 768, 769, 772, 800, 0,
332 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
333 /* 1024x768@85Hz */
334 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
335 1072, 1376, 0, 768, 769, 772, 808, 0,
336 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
337 /* 1152x864@75Hz */
338 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
339 1344, 1600, 0, 864, 865, 868, 900, 0,
340 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
341 /* 1280x768@60Hz */
342 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
343 1472, 1664, 0, 768, 771, 778, 798, 0,
344 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
345 /* 1280x768@75Hz */
346 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
347 1488, 1696, 0, 768, 771, 778, 805, 0,
348 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
349 /* 1280x768@85Hz */
350 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
351 1496, 1712, 0, 768, 771, 778, 809, 0,
352 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
353 /* 1280x800@60Hz */
354 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
355 1480, 1680, 0, 800, 803, 809, 831, 0,
356 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
357 /* 1280x800@75Hz */
358 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
359 1488, 1696, 0, 800, 803, 809, 838, 0,
360 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
361 /* 1280x800@85Hz */
362 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
363 1496, 1712, 0, 800, 803, 809, 843, 0,
364 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
365 /* 1280x960@60Hz */
366 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
367 1488, 1800, 0, 960, 961, 964, 1000, 0,
368 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
369 /* 1280x960@85Hz */
370 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
371 1504, 1728, 0, 960, 961, 964, 1011, 0,
372 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
373 /* 1280x1024@60Hz */
374 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
375 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
376 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
377 /* 1280x1024@75Hz */
378 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
379 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
380 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
381 /* 1280x1024@85Hz */
382 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
383 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
384 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
385 /* 1360x768@60Hz */
386 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
387 1536, 1792, 0, 768, 771, 777, 795, 0,
388 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
389 /* 1440x1050@60Hz */
390 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
391 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
392 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
393 /* 1440x1050@75Hz */
394 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
395 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
396 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
397 /* 1440x1050@85Hz */
398 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
399 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
400 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
401 /* 1440x900@60Hz */
402 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
403 1672, 1904, 0, 900, 903, 909, 934, 0,
404 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
405 /* 1440x900@75Hz */
406 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
407 1688, 1936, 0, 900, 903, 909, 942, 0,
408 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
409 /* 1440x900@85Hz */
410 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
411 1696, 1952, 0, 900, 903, 909, 948, 0,
412 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
413 /* 1600x1200@60Hz */
414 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
415 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
416 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
417 /* 1600x1200@65Hz */
418 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
419 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
420 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
421 /* 1600x1200@70Hz */
422 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
423 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
424 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
425 /* 1600x1200@75Hz */
426 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 2025000, 1600, 1664,
427 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
428 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
429 /* 1600x1200@85Hz */
430 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
431 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
432 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
433 /* 1680x1050@60Hz */
434 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
435 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
436 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
437 /* 1680x1050@75Hz */
438 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
439 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
440 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
441 /* 1680x1050@85Hz */
442 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
443 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
444 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
445 /* 1792x1344@60Hz */
446 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
447 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
448 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
449 /* 1729x1344@75Hz */
450 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
451 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
452 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
453 /* 1853x1392@60Hz */
454 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
455 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
456 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
457 /* 1856x1392@75Hz */
458 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
459 2208, 2560, 0, 1392, 1395, 1399, 1500, 0,
460 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
461 /* 1920x1200@60Hz */
462 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
463 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
464 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
465 /* 1920x1200@75Hz */
466 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
467 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
468 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
469 /* 1920x1200@85Hz */
470 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
471 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
472 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
473 /* 1920x1440@60Hz */
474 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
475 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
476 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
477 /* 1920x1440@75Hz */
478 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
479 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
480 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
481 /* 2560x1600@60Hz */
482 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
483 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
484 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
485 /* 2560x1600@75HZ */
486 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
487 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
488 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
489 /* 2560x1600@85HZ */
490 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
491 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
492 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
493};
Adam Jackson07a5e632009-12-03 17:44:38 -0500494static const int drm_num_dmt_modes =
495 sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
Zhao Yakuiaa9eaa12009-09-03 09:33:46 +0800496
Zhao Yakui559ee212009-09-03 09:33:47 +0800497static struct drm_display_mode *drm_find_dmt(struct drm_device *dev,
498 int hsize, int vsize, int fresh)
499{
Adam Jackson07a5e632009-12-03 17:44:38 -0500500 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +0800501 struct drm_display_mode *ptr, *mode;
502
Zhao Yakui559ee212009-09-03 09:33:47 +0800503 mode = NULL;
Adam Jackson07a5e632009-12-03 17:44:38 -0500504 for (i = 0; i < drm_num_dmt_modes; i++) {
Zhao Yakui559ee212009-09-03 09:33:47 +0800505 ptr = &drm_dmt_modes[i];
506 if (hsize == ptr->hdisplay &&
507 vsize == ptr->vdisplay &&
508 fresh == drm_mode_vrefresh(ptr)) {
509 /* get the expected default mode */
510 mode = drm_mode_duplicate(dev, ptr);
511 break;
512 }
513 }
514 return mode;
515}
Adam Jackson23425ca2009-09-23 17:30:58 -0400516
517/*
518 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
519 * monitors fill with ascii space (0x20) instead.
520 */
521static int
522bad_std_timing(u8 a, u8 b)
523{
524 return (a == 0x00 && b == 0x00) ||
525 (a == 0x01 && b == 0x01) ||
526 (a == 0x20 && b == 0x20);
527}
528
Dave Airlief453ba02008-11-07 14:05:41 -0800529/**
530 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
531 * @t: standard timing params
Zhao Yakui5c612592009-06-22 13:17:10 +0800532 * @timing_level: standard timing level
Dave Airlief453ba02008-11-07 14:05:41 -0800533 *
534 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +0800535 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -0800536 *
537 * Punts for now, but should eventually use the FB layer's CVT based mode
538 * generation code.
539 */
540struct drm_display_mode *drm_mode_std(struct drm_device *dev,
Zhao Yakui5c612592009-06-22 13:17:10 +0800541 struct std_timing *t,
Adam Jacksonf066a172009-09-23 17:31:21 -0400542 int revision,
Zhao Yakui5c612592009-06-22 13:17:10 +0800543 int timing_level)
Dave Airlief453ba02008-11-07 14:05:41 -0800544{
545 struct drm_display_mode *mode;
Zhao Yakui5c612592009-06-22 13:17:10 +0800546 int hsize, vsize;
547 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200548 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
549 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +0800550 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
551 >> EDID_TIMING_VFREQ_SHIFT;
Dave Airlief453ba02008-11-07 14:05:41 -0800552
Adam Jackson23425ca2009-09-23 17:30:58 -0400553 if (bad_std_timing(t->hsize, t->vfreq_aspect))
554 return NULL;
555
Zhao Yakui5c612592009-06-22 13:17:10 +0800556 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
557 hsize = t->hsize * 8 + 248;
558 /* vrefresh_rate = vfreq + 60 */
559 vrefresh_rate = vfreq + 60;
560 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -0400561 if (aspect_ratio == 0) {
562 if (revision < 3)
563 vsize = hsize;
564 else
565 vsize = (hsize * 10) / 16;
566 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800567 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200568 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -0800569 vsize = (hsize * 4) / 5;
570 else
571 vsize = (hsize * 9) / 16;
Zhao Yakui559ee212009-09-03 09:33:47 +0800572 /* HDTV hack */
573 if (hsize == 1360 && vsize == 765 && vrefresh_rate == 60) {
Dave Airlied50ba252009-09-23 14:44:08 +1000574 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
575 false);
Zhao Yakui559ee212009-09-03 09:33:47 +0800576 mode->hdisplay = 1366;
577 mode->vsync_start = mode->vsync_start - 1;
578 mode->vsync_end = mode->vsync_end - 1;
579 return mode;
580 }
Zhao Yakui5c612592009-06-22 13:17:10 +0800581 mode = NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +0800582 /* check whether it can be found in default mode table */
583 mode = drm_find_dmt(dev, hsize, vsize, vrefresh_rate);
584 if (mode)
585 return mode;
586
Zhao Yakui5c612592009-06-22 13:17:10 +0800587 switch (timing_level) {
588 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +0800589 break;
590 case LEVEL_GTF:
591 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
592 break;
593 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +1000594 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
595 false);
Zhao Yakui5c612592009-06-22 13:17:10 +0800596 break;
597 }
Dave Airlief453ba02008-11-07 14:05:41 -0800598 return mode;
599}
600
601/**
602 * drm_mode_detailed - create a new mode from an EDID detailed timing section
603 * @dev: DRM device (needed to create new mode)
604 * @edid: EDID block
605 * @timing: EDID detailed timing info
606 * @quirks: quirks to apply
607 *
608 * An EDID detailed timing block contains enough info for us to create and
609 * return a new struct drm_display_mode.
610 */
611static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
612 struct edid *edid,
613 struct detailed_timing *timing,
614 u32 quirks)
615{
616 struct drm_display_mode *mode;
617 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +0200618 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
619 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
620 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
621 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +0200622 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
623 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
624 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4;
625 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 -0800626
Adam Jacksonfc438962009-06-04 10:20:34 +1000627 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200628 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +1000629 return NULL;
630
Michel Dänzer0454bea2009-06-15 16:56:07 +0200631 if (pt->misc & DRM_EDID_PT_STEREO) {
Dave Airlief453ba02008-11-07 14:05:41 -0800632 printk(KERN_WARNING "stereo mode not supported\n");
633 return NULL;
634 }
Michel Dänzer0454bea2009-06-15 16:56:07 +0200635 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Dave Airlief453ba02008-11-07 14:05:41 -0800636 printk(KERN_WARNING "integrated sync not supported\n");
637 return NULL;
638 }
639
Zhao Yakuifcb45612009-10-14 09:11:25 +0800640 /* it is incorrect if hsync/vsync width is zero */
641 if (!hsync_pulse_width || !vsync_pulse_width) {
642 DRM_DEBUG_KMS("Incorrect Detailed timing. "
643 "Wrong Hsync/Vsync pulse width\n");
644 return NULL;
645 }
Dave Airlief453ba02008-11-07 14:05:41 -0800646 mode = drm_mode_create(dev);
647 if (!mode)
648 return NULL;
649
650 mode->type = DRM_MODE_TYPE_DRIVER;
651
652 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +0200653 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -0800654
Michel Dänzer0454bea2009-06-15 16:56:07 +0200655 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -0800656
Michel Dänzer0454bea2009-06-15 16:56:07 +0200657 mode->hdisplay = hactive;
658 mode->hsync_start = mode->hdisplay + hsync_offset;
659 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
660 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800661
Michel Dänzer0454bea2009-06-15 16:56:07 +0200662 mode->vdisplay = vactive;
663 mode->vsync_start = mode->vdisplay + vsync_offset;
664 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
665 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -0800666
Zhao Yakuifcb45612009-10-14 09:11:25 +0800667 /* perform the basic check for the detailed timing */
668 if (mode->hsync_end > mode->htotal ||
669 mode->vsync_end > mode->vtotal) {
670 drm_mode_destroy(dev, mode);
671 DRM_DEBUG_KMS("Incorrect detailed timing. "
672 "Sync is beyond the blank.\n");
673 return NULL;
674 }
675
Dave Airlief453ba02008-11-07 14:05:41 -0800676 drm_mode_set_name(mode);
677
Michel Dänzer0454bea2009-06-15 16:56:07 +0200678 if (pt->misc & DRM_EDID_PT_INTERLACED)
Dave Airlief453ba02008-11-07 14:05:41 -0800679 mode->flags |= DRM_MODE_FLAG_INTERLACE;
680
681 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +0200682 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -0800683 }
684
Michel Dänzer0454bea2009-06-15 16:56:07 +0200685 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
686 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
687 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
688 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -0800689
Michel Dänzere14cbee2009-06-23 12:36:32 +0200690 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
691 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -0800692
693 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
694 mode->width_mm *= 10;
695 mode->height_mm *= 10;
696 }
697
698 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
699 mode->width_mm = edid->width_cm * 10;
700 mode->height_mm = edid->height_cm * 10;
701 }
702
703 return mode;
704}
705
706/*
707 * Detailed mode info for the EDID "established modes" data to use.
708 */
709static struct drm_display_mode edid_est_modes[] = {
710 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
711 968, 1056, 0, 600, 601, 605, 628, 0,
712 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
713 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
714 896, 1024, 0, 600, 601, 603, 625, 0,
715 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
716 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
717 720, 840, 0, 480, 481, 484, 500, 0,
718 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
719 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
720 704, 832, 0, 480, 489, 491, 520, 0,
721 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
722 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
723 768, 864, 0, 480, 483, 486, 525, 0,
724 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
725 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25200, 640, 656,
726 752, 800, 0, 480, 490, 492, 525, 0,
727 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
728 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
729 846, 900, 0, 400, 421, 423, 449, 0,
730 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
731 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
732 846, 900, 0, 400, 412, 414, 449, 0,
733 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
734 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
735 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
736 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
737 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78800, 1024, 1040,
738 1136, 1312, 0, 768, 769, 772, 800, 0,
739 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
740 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
741 1184, 1328, 0, 768, 771, 777, 806, 0,
742 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
743 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
744 1184, 1344, 0, 768, 771, 777, 806, 0,
745 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
746 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
747 1208, 1264, 0, 768, 768, 776, 817, 0,
748 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
749 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
750 928, 1152, 0, 624, 625, 628, 667, 0,
751 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
752 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
753 896, 1056, 0, 600, 601, 604, 625, 0,
754 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
755 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
756 976, 1040, 0, 600, 637, 643, 666, 0,
757 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
758 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
759 1344, 1600, 0, 864, 865, 868, 900, 0,
760 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
761};
762
763#define EDID_EST_TIMINGS 16
764#define EDID_STD_TIMINGS 8
765#define EDID_DETAILED_TIMINGS 4
766
767/**
768 * add_established_modes - get est. modes from EDID and add them
769 * @edid: EDID block to scan
770 *
771 * Each EDID block contains a bitmap of the supported "established modes" list
772 * (defined above). Tease them out and add them to the global modes list.
773 */
774static int add_established_modes(struct drm_connector *connector, struct edid *edid)
775{
776 struct drm_device *dev = connector->dev;
777 unsigned long est_bits = edid->established_timings.t1 |
778 (edid->established_timings.t2 << 8) |
779 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
780 int i, modes = 0;
781
782 for (i = 0; i <= EDID_EST_TIMINGS; i++)
783 if (est_bits & (1<<i)) {
784 struct drm_display_mode *newmode;
785 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
786 if (newmode) {
787 drm_mode_probed_add(connector, newmode);
788 modes++;
789 }
790 }
791
792 return modes;
793}
Zhao Yakui5c612592009-06-22 13:17:10 +0800794/**
795 * stanard_timing_level - get std. timing level(CVT/GTF/DMT)
796 * @edid: EDID block to scan
797 */
798static int standard_timing_level(struct edid *edid)
799{
800 if (edid->revision >= 2) {
801 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
802 return LEVEL_CVT;
803 return LEVEL_GTF;
804 }
805 return LEVEL_DMT;
806}
Dave Airlief453ba02008-11-07 14:05:41 -0800807
808/**
809 * add_standard_modes - get std. modes from EDID and add them
810 * @edid: EDID block to scan
811 *
812 * Standard modes can be calculated using the CVT standard. Grab them from
813 * @edid, calculate them, and add them to the list.
814 */
815static int add_standard_modes(struct drm_connector *connector, struct edid *edid)
816{
817 struct drm_device *dev = connector->dev;
818 int i, modes = 0;
Zhao Yakui5c612592009-06-22 13:17:10 +0800819 int timing_level;
820
821 timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -0800822
823 for (i = 0; i < EDID_STD_TIMINGS; i++) {
824 struct std_timing *t = &edid->standard_timings[i];
825 struct drm_display_mode *newmode;
826
827 /* If std timings bytes are 1, 1 it's empty */
Michel Dänzer0454bea2009-06-15 16:56:07 +0200828 if (t->hsize == 1 && t->vfreq_aspect == 1)
Dave Airlief453ba02008-11-07 14:05:41 -0800829 continue;
830
Zhao Yakui5c612592009-06-22 13:17:10 +0800831 newmode = drm_mode_std(dev, &edid->standard_timings[i],
Adam Jacksonf066a172009-09-23 17:31:21 -0400832 edid->revision, timing_level);
Dave Airlief453ba02008-11-07 14:05:41 -0800833 if (newmode) {
834 drm_mode_probed_add(connector, newmode);
835 modes++;
836 }
837 }
838
839 return modes;
840}
841
Adam Jackson07a5e632009-12-03 17:44:38 -0500842/*
843 * XXX fix this for:
844 * - GTF secondary curve formula
845 * - EDID 1.4 range offsets
846 * - CVT extended bits
847 */
848static bool
849mode_in_range(struct drm_display_mode *mode, struct detailed_timing *timing)
850{
851 struct detailed_data_monitor_range *range;
852 int hsync, vrefresh;
853
854 range = &timing->data.other_data.data.range;
855
856 hsync = drm_mode_hsync(mode);
857 vrefresh = drm_mode_vrefresh(mode);
858
859 if (hsync < range->min_hfreq_khz || hsync > range->max_hfreq_khz)
860 return false;
861
862 if (vrefresh < range->min_vfreq || vrefresh > range->max_vfreq)
863 return false;
864
865 if (range->pixel_clock_mhz && range->pixel_clock_mhz != 0xff) {
866 /* be forgiving since it's in units of 10MHz */
867 int max_clock = range->pixel_clock_mhz * 10 + 9;
868 max_clock *= 1000;
869 if (mode->clock > max_clock)
870 return false;
871 }
872
873 return true;
874}
875
876/*
877 * XXX If drm_dmt_modes ever regrows the CVT-R modes (and it will) this will
878 * need to account for them.
879 */
880static int drm_gtf_modes_for_range(struct drm_connector *connector,
881 struct detailed_timing *timing)
882{
883 int i, modes = 0;
884 struct drm_display_mode *newmode;
885 struct drm_device *dev = connector->dev;
886
887 for (i = 0; i < drm_num_dmt_modes; i++) {
888 if (mode_in_range(drm_dmt_modes + i, timing)) {
889 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
890 if (newmode) {
891 drm_mode_probed_add(connector, newmode);
892 modes++;
893 }
894 }
895 }
896
897 return modes;
898}
899
Adam Jackson9340d8c2009-12-03 17:44:40 -0500900static int drm_cvt_modes(struct drm_connector *connector,
901 struct detailed_timing *timing)
902{
903 int i, j, modes = 0;
904 struct drm_display_mode *newmode;
905 struct drm_device *dev = connector->dev;
906 struct cvt_timing *cvt;
907 const int rates[] = { 60, 85, 75, 60, 50 };
908
909 for (i = 0; i < 4; i++) {
910 int width, height;
911 cvt = &(timing->data.other_data.data.cvt[i]);
912
913 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 8) + 1) * 2;
914 switch (cvt->code[1] & 0xc0) {
915 case 0x00:
916 width = height * 4 / 3;
917 break;
918 case 0x40:
919 width = height * 16 / 9;
920 break;
921 case 0x80:
922 width = height * 16 / 10;
923 break;
924 case 0xc0:
925 width = height * 15 / 9;
926 break;
927 }
928
929 for (j = 1; j < 5; j++) {
930 if (cvt->code[2] & (1 << j)) {
931 newmode = drm_cvt_mode(dev, width, height,
932 rates[j], j == 0,
933 false, false);
934 if (newmode) {
935 drm_mode_probed_add(connector, newmode);
936 modes++;
937 }
938 }
939 }
940 }
941
942 return modes;
943}
944
Adam Jackson9cf00972009-12-03 17:44:36 -0500945static int add_detailed_modes(struct drm_connector *connector,
946 struct detailed_timing *timing,
947 struct edid *edid, u32 quirks, int preferred)
948{
949 int i, modes = 0;
950 struct detailed_non_pixel *data = &timing->data.other_data;
951 int timing_level = standard_timing_level(edid);
Adam Jackson07a5e632009-12-03 17:44:38 -0500952 int gtf = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF);
Adam Jackson9cf00972009-12-03 17:44:36 -0500953 struct drm_display_mode *newmode;
954 struct drm_device *dev = connector->dev;
955
956 if (timing->pixel_clock) {
957 newmode = drm_mode_detailed(dev, edid, timing, quirks);
958 if (!newmode)
959 return 0;
960
961 if (preferred)
962 newmode->type |= DRM_MODE_TYPE_PREFERRED;
963
964 drm_mode_probed_add(connector, newmode);
965 return 1;
966 }
967
968 /* other timing types */
969 switch (data->type) {
970 case EDID_DETAIL_MONITOR_RANGE:
Adam Jackson07a5e632009-12-03 17:44:38 -0500971 if (gtf)
972 modes += drm_gtf_modes_for_range(connector, timing);
Adam Jackson9cf00972009-12-03 17:44:36 -0500973 break;
974 case EDID_DETAIL_STD_MODES:
975 /* Six modes per detailed section */
976 for (i = 0; i < 6; i++) {
977 struct std_timing *std;
978 struct drm_display_mode *newmode;
979
980 std = &data->data.timings[i];
981 newmode = drm_mode_std(dev, std, edid->revision,
982 timing_level);
983 if (newmode) {
984 drm_mode_probed_add(connector, newmode);
985 modes++;
986 }
987 }
988 break;
Adam Jackson9340d8c2009-12-03 17:44:40 -0500989 case EDID_DETAIL_CVT_3BYTE:
990 modes += drm_cvt_modes(connector, timing);
991 break;
Adam Jackson9cf00972009-12-03 17:44:36 -0500992 default:
993 break;
994 }
995
996 return modes;
997}
998
Dave Airlief453ba02008-11-07 14:05:41 -0800999/**
Adam Jackson9cf00972009-12-03 17:44:36 -05001000 * add_detailed_info - get detailed mode info from EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08001001 * @connector: attached connector
1002 * @edid: EDID block to scan
1003 * @quirks: quirks to apply
1004 *
1005 * Some of the detailed timing sections may contain mode information. Grab
1006 * it and add it to the list.
1007 */
1008static int add_detailed_info(struct drm_connector *connector,
1009 struct edid *edid, u32 quirks)
1010{
Adam Jackson9cf00972009-12-03 17:44:36 -05001011 int i, modes = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001012
1013 for (i = 0; i < EDID_DETAILED_TIMINGS; i++) {
1014 struct detailed_timing *timing = &edid->detailed_timings[i];
Adam Jackson9cf00972009-12-03 17:44:36 -05001015 int preferred = (i == 0) && (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Dave Airlief453ba02008-11-07 14:05:41 -08001016
Adam Jackson9cf00972009-12-03 17:44:36 -05001017 /* In 1.0, only timings are allowed */
1018 if (!timing->pixel_clock && edid->version == 1 &&
1019 edid->revision == 0)
1020 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08001021
Adam Jackson9cf00972009-12-03 17:44:36 -05001022 modes += add_detailed_modes(connector, timing, edid, quirks,
1023 preferred);
Dave Airlief453ba02008-11-07 14:05:41 -08001024 }
1025
1026 return modes;
1027}
Adam Jackson9cf00972009-12-03 17:44:36 -05001028
Zhao Yakui882f0212009-08-26 18:20:49 +08001029/**
1030 * add_detailed_mode_eedid - get detailed mode info from addtional timing
1031 * EDID block
1032 * @connector: attached connector
1033 * @edid: EDID block to scan(It is only to get addtional timing EDID block)
1034 * @quirks: quirks to apply
1035 *
1036 * Some of the detailed timing sections may contain mode information. Grab
1037 * it and add it to the list.
1038 */
1039static int add_detailed_info_eedid(struct drm_connector *connector,
1040 struct edid *edid, u32 quirks)
1041{
Adam Jackson9cf00972009-12-03 17:44:36 -05001042 int i, modes = 0;
Zhao Yakui882f0212009-08-26 18:20:49 +08001043 char *edid_ext = NULL;
1044 struct detailed_timing *timing;
Zhao Yakui882f0212009-08-26 18:20:49 +08001045 int edid_ext_num;
1046 int start_offset, end_offset;
1047 int timing_level;
1048
1049 if (edid->version == 1 && edid->revision < 3) {
1050 /* If the EDID version is less than 1.3, there is no
1051 * extension EDID.
1052 */
1053 return 0;
1054 }
1055 if (!edid->extensions) {
1056 /* if there is no extension EDID, it is unnecessary to
1057 * parse the E-EDID to get detailed info
1058 */
1059 return 0;
1060 }
1061
1062 /* Chose real EDID extension number */
1063 edid_ext_num = edid->extensions > MAX_EDID_EXT_NUM ?
1064 MAX_EDID_EXT_NUM : edid->extensions;
1065
1066 /* Find CEA extension */
1067 for (i = 0; i < edid_ext_num; i++) {
1068 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1069 /* This block is CEA extension */
1070 if (edid_ext[0] == 0x02)
1071 break;
1072 }
1073
1074 if (i == edid_ext_num) {
1075 /* if there is no additional timing EDID block, return */
1076 return 0;
1077 }
1078
1079 /* Get the start offset of detailed timing block */
1080 start_offset = edid_ext[2];
1081 if (start_offset == 0) {
1082 /* If the start_offset is zero, it means that neither detailed
1083 * info nor data block exist. In such case it is also
1084 * unnecessary to parse the detailed timing info.
1085 */
1086 return 0;
1087 }
1088
1089 timing_level = standard_timing_level(edid);
1090 end_offset = EDID_LENGTH;
1091 end_offset -= sizeof(struct detailed_timing);
1092 for (i = start_offset; i < end_offset;
1093 i += sizeof(struct detailed_timing)) {
1094 timing = (struct detailed_timing *)(edid_ext + i);
Adam Jackson9cf00972009-12-03 17:44:36 -05001095 modes += add_detailed_modes(connector, timing, edid, quirks, 0);
Zhao Yakui882f0212009-08-26 18:20:49 +08001096 }
1097
1098 return modes;
1099}
Dave Airlief453ba02008-11-07 14:05:41 -08001100
1101#define DDC_ADDR 0x50
Ma Ling167f3a02009-03-20 14:09:48 +08001102/**
1103 * Get EDID information via I2C.
1104 *
1105 * \param adapter : i2c device adaptor
1106 * \param buf : EDID data buffer to be filled
1107 * \param len : EDID data buffer length
1108 * \return 0 on success or -1 on failure.
1109 *
1110 * Try to fetch EDID information by calling i2c driver function.
1111 */
1112int drm_do_probe_ddc_edid(struct i2c_adapter *adapter,
1113 unsigned char *buf, int len)
Dave Airlief453ba02008-11-07 14:05:41 -08001114{
1115 unsigned char start = 0x0;
Dave Airlief453ba02008-11-07 14:05:41 -08001116 struct i2c_msg msgs[] = {
1117 {
1118 .addr = DDC_ADDR,
1119 .flags = 0,
1120 .len = 1,
1121 .buf = &start,
1122 }, {
1123 .addr = DDC_ADDR,
1124 .flags = I2C_M_RD,
Ma Ling167f3a02009-03-20 14:09:48 +08001125 .len = len,
Dave Airlief453ba02008-11-07 14:05:41 -08001126 .buf = buf,
1127 }
1128 };
1129
Dave Airlief453ba02008-11-07 14:05:41 -08001130 if (i2c_transfer(adapter, msgs, 2) == 2)
Ma Ling167f3a02009-03-20 14:09:48 +08001131 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001132
Ma Ling167f3a02009-03-20 14:09:48 +08001133 return -1;
Dave Airlief453ba02008-11-07 14:05:41 -08001134}
1135EXPORT_SYMBOL(drm_do_probe_ddc_edid);
1136
Ma Ling167f3a02009-03-20 14:09:48 +08001137static int drm_ddc_read_edid(struct drm_connector *connector,
1138 struct i2c_adapter *adapter,
1139 char *buf, int len)
1140{
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001141 int i;
Ma Ling167f3a02009-03-20 14:09:48 +08001142
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001143 for (i = 0; i < 4; i++) {
1144 if (drm_do_probe_ddc_edid(adapter, buf, len))
1145 return -1;
1146 if (edid_is_valid((struct edid *)buf))
1147 return 0;
Ma Ling167f3a02009-03-20 14:09:48 +08001148 }
Adam Jackson47ee4cc2009-11-23 14:23:05 -05001149
1150 /* repeated checksum failures; warn, but carry on */
1151 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1152 drm_get_connector_name(connector));
1153 return -1;
Ma Ling167f3a02009-03-20 14:09:48 +08001154}
1155
Dave Airlief453ba02008-11-07 14:05:41 -08001156/**
1157 * drm_get_edid - get EDID data, if available
1158 * @connector: connector we're probing
1159 * @adapter: i2c adapter to use for DDC
1160 *
1161 * Poke the given connector's i2c channel to grab EDID data if possible.
1162 *
1163 * Return edid data or NULL if we couldn't find any.
1164 */
1165struct edid *drm_get_edid(struct drm_connector *connector,
1166 struct i2c_adapter *adapter)
1167{
Ma Ling167f3a02009-03-20 14:09:48 +08001168 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001169 struct edid *edid;
1170
Ma Ling167f3a02009-03-20 14:09:48 +08001171 edid = kmalloc(EDID_LENGTH * (MAX_EDID_EXT_NUM + 1),
1172 GFP_KERNEL);
1173 if (edid == NULL) {
1174 dev_warn(&connector->dev->pdev->dev,
1175 "Failed to allocate EDID\n");
1176 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001177 }
Ma Ling167f3a02009-03-20 14:09:48 +08001178
1179 /* Read first EDID block */
1180 ret = drm_ddc_read_edid(connector, adapter,
1181 (unsigned char *)edid, EDID_LENGTH);
1182 if (ret != 0)
1183 goto clean_up;
1184
1185 /* There are EDID extensions to be read */
1186 if (edid->extensions != 0) {
1187 int edid_ext_num = edid->extensions;
1188
1189 if (edid_ext_num > MAX_EDID_EXT_NUM) {
1190 dev_warn(&connector->dev->pdev->dev,
1191 "The number of extension(%d) is "
1192 "over max (%d), actually read number (%d)\n",
1193 edid_ext_num, MAX_EDID_EXT_NUM,
1194 MAX_EDID_EXT_NUM);
1195 /* Reset EDID extension number to be read */
1196 edid_ext_num = MAX_EDID_EXT_NUM;
1197 }
1198 /* Read EDID including extensions too */
1199 ret = drm_ddc_read_edid(connector, adapter, (char *)edid,
1200 EDID_LENGTH * (edid_ext_num + 1));
1201 if (ret != 0)
1202 goto clean_up;
1203
Dave Airlief453ba02008-11-07 14:05:41 -08001204 }
1205
1206 connector->display_info.raw_edid = (char *)edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001207 goto end;
Dave Airlief453ba02008-11-07 14:05:41 -08001208
Ma Ling167f3a02009-03-20 14:09:48 +08001209clean_up:
1210 kfree(edid);
1211 edid = NULL;
1212end:
Dave Airlief453ba02008-11-07 14:05:41 -08001213 return edid;
Ma Ling167f3a02009-03-20 14:09:48 +08001214
Dave Airlief453ba02008-11-07 14:05:41 -08001215}
1216EXPORT_SYMBOL(drm_get_edid);
1217
Ma Lingf23c20c2009-03-26 19:26:23 +08001218#define HDMI_IDENTIFIER 0x000C03
1219#define VENDOR_BLOCK 0x03
1220/**
1221 * drm_detect_hdmi_monitor - detect whether monitor is hdmi.
1222 * @edid: monitor EDID information
1223 *
1224 * Parse the CEA extension according to CEA-861-B.
1225 * Return true if HDMI, false if not or unknown.
1226 */
1227bool drm_detect_hdmi_monitor(struct edid *edid)
1228{
1229 char *edid_ext = NULL;
1230 int i, hdmi_id, edid_ext_num;
1231 int start_offset, end_offset;
1232 bool is_hdmi = false;
1233
1234 /* No EDID or EDID extensions */
1235 if (edid == NULL || edid->extensions == 0)
1236 goto end;
1237
1238 /* Chose real EDID extension number */
1239 edid_ext_num = edid->extensions > MAX_EDID_EXT_NUM ?
1240 MAX_EDID_EXT_NUM : edid->extensions;
1241
1242 /* Find CEA extension */
1243 for (i = 0; i < edid_ext_num; i++) {
1244 edid_ext = (char *)edid + EDID_LENGTH * (i + 1);
1245 /* This block is CEA extension */
1246 if (edid_ext[0] == 0x02)
1247 break;
1248 }
1249
1250 if (i == edid_ext_num)
1251 goto end;
1252
1253 /* Data block offset in CEA extension block */
1254 start_offset = 4;
1255 end_offset = edid_ext[2];
1256
1257 /*
1258 * Because HDMI identifier is in Vendor Specific Block,
1259 * search it from all data blocks of CEA extension.
1260 */
1261 for (i = start_offset; i < end_offset;
1262 /* Increased by data block len */
1263 i += ((edid_ext[i] & 0x1f) + 1)) {
1264 /* Find vendor specific block */
1265 if ((edid_ext[i] >> 5) == VENDOR_BLOCK) {
1266 hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) |
1267 edid_ext[i + 3] << 16;
1268 /* Find HDMI identifier */
1269 if (hdmi_id == HDMI_IDENTIFIER)
1270 is_hdmi = true;
1271 break;
1272 }
1273 }
1274
1275end:
1276 return is_hdmi;
1277}
1278EXPORT_SYMBOL(drm_detect_hdmi_monitor);
1279
Dave Airlief453ba02008-11-07 14:05:41 -08001280/**
1281 * drm_add_edid_modes - add modes from EDID data, if available
1282 * @connector: connector we're probing
1283 * @edid: edid data
1284 *
1285 * Add the specified modes to the connector's mode list.
1286 *
1287 * Return number of modes added or 0 if we couldn't find any.
1288 */
1289int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
1290{
1291 int num_modes = 0;
1292 u32 quirks;
1293
1294 if (edid == NULL) {
1295 return 0;
1296 }
1297 if (!edid_is_valid(edid)) {
1298 dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n",
1299 drm_get_connector_name(connector));
1300 return 0;
1301 }
1302
1303 quirks = edid_get_quirks(edid);
1304
1305 num_modes += add_established_modes(connector, edid);
1306 num_modes += add_standard_modes(connector, edid);
1307 num_modes += add_detailed_info(connector, edid, quirks);
Zhao Yakui882f0212009-08-26 18:20:49 +08001308 num_modes += add_detailed_info_eedid(connector, edid, quirks);
Dave Airlief453ba02008-11-07 14:05:41 -08001309
1310 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
1311 edid_fixup_preferred(connector, quirks);
1312
Michel Dänzer0454bea2009-06-15 16:56:07 +02001313 connector->display_info.serration_vsync = (edid->input & DRM_EDID_INPUT_SERRATION_VSYNC) ? 1 : 0;
1314 connector->display_info.sync_on_green = (edid->input & DRM_EDID_INPUT_SYNC_ON_GREEN) ? 1 : 0;
1315 connector->display_info.composite_sync = (edid->input & DRM_EDID_INPUT_COMPOSITE_SYNC) ? 1 : 0;
1316 connector->display_info.separate_syncs = (edid->input & DRM_EDID_INPUT_SEPARATE_SYNCS) ? 1 : 0;
1317 connector->display_info.blank_to_black = (edid->input & DRM_EDID_INPUT_BLANK_TO_BLACK) ? 1 : 0;
1318 connector->display_info.video_level = (edid->input & DRM_EDID_INPUT_VIDEO_LEVEL) >> 5;
1319 connector->display_info.digital = (edid->input & DRM_EDID_INPUT_DIGITAL) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001320 connector->display_info.width_mm = edid->width_cm * 10;
1321 connector->display_info.height_mm = edid->height_cm * 10;
1322 connector->display_info.gamma = edid->gamma;
Michel Dänzer0454bea2009-06-15 16:56:07 +02001323 connector->display_info.gtf_supported = (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF) ? 1 : 0;
1324 connector->display_info.standard_color = (edid->features & DRM_EDID_FEATURE_STANDARD_COLOR) ? 1 : 0;
1325 connector->display_info.display_type = (edid->features & DRM_EDID_FEATURE_DISPLAY_TYPE) >> 3;
1326 connector->display_info.active_off_supported = (edid->features & DRM_EDID_FEATURE_PM_ACTIVE_OFF) ? 1 : 0;
1327 connector->display_info.suspend_supported = (edid->features & DRM_EDID_FEATURE_PM_SUSPEND) ? 1 : 0;
1328 connector->display_info.standby_supported = (edid->features & DRM_EDID_FEATURE_PM_STANDBY) ? 1 : 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001329 connector->display_info.gamma = edid->gamma;
1330
1331 return num_modes;
1332}
1333EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001334
1335/**
1336 * drm_add_modes_noedid - add modes for the connectors without EDID
1337 * @connector: connector we're probing
1338 * @hdisplay: the horizontal display limit
1339 * @vdisplay: the vertical display limit
1340 *
1341 * Add the specified modes to the connector's mode list. Only when the
1342 * hdisplay/vdisplay is not beyond the given limit, it will be added.
1343 *
1344 * Return number of modes added or 0 if we couldn't find any.
1345 */
1346int drm_add_modes_noedid(struct drm_connector *connector,
1347 int hdisplay, int vdisplay)
1348{
1349 int i, count, num_modes = 0;
1350 struct drm_display_mode *mode, *ptr;
1351 struct drm_device *dev = connector->dev;
1352
1353 count = sizeof(drm_dmt_modes) / sizeof(struct drm_display_mode);
1354 if (hdisplay < 0)
1355 hdisplay = 0;
1356 if (vdisplay < 0)
1357 vdisplay = 0;
1358
1359 for (i = 0; i < count; i++) {
1360 ptr = &drm_dmt_modes[i];
1361 if (hdisplay && vdisplay) {
1362 /*
1363 * Only when two are valid, they will be used to check
1364 * whether the mode should be added to the mode list of
1365 * the connector.
1366 */
1367 if (ptr->hdisplay > hdisplay ||
1368 ptr->vdisplay > vdisplay)
1369 continue;
1370 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05001371 if (drm_mode_vrefresh(ptr) > 61)
1372 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001373 mode = drm_mode_duplicate(dev, ptr);
1374 if (mode) {
1375 drm_mode_probed_add(connector, mode);
1376 num_modes++;
1377 }
1378 }
1379 return num_modes;
1380}
1381EXPORT_SYMBOL(drm_add_modes_noedid);