edid.c revision 1.7 1 1.7 jdc /* $NetBSD: edid.c,v 1.7 2011/03/21 19:34:27 jdc Exp $ */
2 1.1 gdamore
3 1.1 gdamore /*-
4 1.1 gdamore * Copyright (c) 2006 Itronix Inc.
5 1.1 gdamore * All rights reserved.
6 1.1 gdamore *
7 1.1 gdamore * Written by Garrett D'Amore for Itronix Inc.
8 1.1 gdamore *
9 1.1 gdamore * Redistribution and use in source and binary forms, with or without
10 1.1 gdamore * modification, are permitted provided that the following conditions
11 1.1 gdamore * are met:
12 1.1 gdamore * 1. Redistributions of source code must retain the above copyright
13 1.1 gdamore * notice, this list of conditions and the following disclaimer.
14 1.1 gdamore * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 gdamore * notice, this list of conditions and the following disclaimer in the
16 1.1 gdamore * documentation and/or other materials provided with the distribution.
17 1.1 gdamore * 3. The name of Itronix Inc. may not be used to endorse
18 1.1 gdamore * or promote products derived from this software without specific
19 1.1 gdamore * prior written permission.
20 1.1 gdamore *
21 1.1 gdamore * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND ANY EXPRESS
22 1.1 gdamore * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 1.1 gdamore * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 gdamore * ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
25 1.1 gdamore * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 gdamore * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 1.1 gdamore * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1 gdamore * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1 gdamore * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 1.1 gdamore * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 1.1 gdamore * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 gdamore */
33 1.1 gdamore
34 1.1 gdamore #include <sys/cdefs.h>
35 1.7 jdc __KERNEL_RCSID(0, "$NetBSD: edid.c,v 1.7 2011/03/21 19:34:27 jdc Exp $");
36 1.1 gdamore
37 1.1 gdamore #include <sys/param.h>
38 1.1 gdamore #include <sys/systm.h>
39 1.1 gdamore #include <sys/device.h>
40 1.1 gdamore #include <sys/kernel.h>
41 1.1 gdamore #include <sys/malloc.h>
42 1.1 gdamore #include <dev/videomode/videomode.h>
43 1.1 gdamore #include <dev/videomode/ediddevs.h>
44 1.1 gdamore #include <dev/videomode/edidreg.h>
45 1.1 gdamore #include <dev/videomode/edidvar.h>
46 1.1 gdamore #include <dev/videomode/vesagtf.h>
47 1.1 gdamore
48 1.1 gdamore #define EDIDVERBOSE 1
49 1.1 gdamore #define DIVIDE(x,y) (((x) + ((y) / 2)) / (y))
50 1.1 gdamore
51 1.7 jdc /* These are reversed established timing order */
52 1.1 gdamore static const char *_edid_modes[] = {
53 1.3 gdamore "1280x1024x75",
54 1.3 gdamore "1024x768x75",
55 1.3 gdamore "1024x768x70",
56 1.3 gdamore "1024x768x60",
57 1.3 gdamore "1024x768x87i",
58 1.7 jdc "832x624x74", /* rounding error, 74.55 Hz aka "832x624x75" */
59 1.3 gdamore "800x600x75",
60 1.3 gdamore "800x600x72",
61 1.3 gdamore "800x600x60",
62 1.3 gdamore "800x600x56",
63 1.3 gdamore "640x480x75",
64 1.3 gdamore "640x480x72",
65 1.3 gdamore "640x480x67",
66 1.3 gdamore "640x480x60",
67 1.7 jdc "720x400x87", /* rounding error, 87.85 Hz aka "720x400x88" */
68 1.7 jdc "720x400x70",
69 1.1 gdamore };
70 1.1 gdamore
71 1.1 gdamore #ifdef EDIDVERBOSE
72 1.1 gdamore struct edid_vendor {
73 1.1 gdamore const char *vendor;
74 1.1 gdamore const char *name;
75 1.1 gdamore };
76 1.1 gdamore
77 1.1 gdamore struct edid_product {
78 1.1 gdamore const char *vendor;
79 1.1 gdamore uint16_t product;
80 1.1 gdamore const char *name;
81 1.1 gdamore };
82 1.1 gdamore
83 1.1 gdamore #include <dev/videomode/ediddevs_data.h>
84 1.1 gdamore #endif /* EDIDVERBOSE */
85 1.1 gdamore
86 1.1 gdamore static const char *
87 1.1 gdamore edid_findvendor(const char *vendor)
88 1.1 gdamore {
89 1.1 gdamore #ifdef EDIDVERBOSE
90 1.1 gdamore int n;
91 1.1 gdamore
92 1.1 gdamore for (n = 0; n < edid_nvendors; n++)
93 1.1 gdamore if (memcmp(edid_vendors[n].vendor, vendor, 3) == 0)
94 1.1 gdamore return (edid_vendors[n].name);
95 1.1 gdamore #endif
96 1.1 gdamore return NULL;
97 1.1 gdamore }
98 1.1 gdamore
99 1.1 gdamore static const char *
100 1.1 gdamore edid_findproduct(const char *vendor, uint16_t product)
101 1.1 gdamore {
102 1.1 gdamore #ifdef EDIDVERBOSE
103 1.1 gdamore int n;
104 1.1 gdamore
105 1.6 tsutsui for (n = 0; n < edid_nproducts; n++)
106 1.1 gdamore if ((edid_products[n].product == product) &&
107 1.1 gdamore (memcmp(edid_products[n].vendor, vendor, 3) == 0))
108 1.1 gdamore return (edid_products[n].name);
109 1.1 gdamore #endif /* EDIDVERBOSE */
110 1.1 gdamore return NULL;
111 1.1 gdamore
112 1.1 gdamore }
113 1.1 gdamore
114 1.1 gdamore static void
115 1.1 gdamore edid_strchomp(char *ptr)
116 1.1 gdamore {
117 1.1 gdamore for (;;) {
118 1.1 gdamore switch (*ptr) {
119 1.1 gdamore case 0:
120 1.1 gdamore return;
121 1.1 gdamore case '\r':
122 1.1 gdamore case '\n':
123 1.1 gdamore *ptr = 0;
124 1.1 gdamore return;
125 1.1 gdamore }
126 1.1 gdamore ptr++;
127 1.1 gdamore }
128 1.1 gdamore }
129 1.1 gdamore
130 1.1 gdamore int
131 1.1 gdamore edid_is_valid(uint8_t *d)
132 1.1 gdamore {
133 1.1 gdamore int sum = 0, i;
134 1.1 gdamore uint8_t sig[8] = EDID_SIGNATURE;
135 1.1 gdamore
136 1.1 gdamore if (memcmp(d, sig, 8) != 0)
137 1.1 gdamore return EINVAL;
138 1.1 gdamore
139 1.1 gdamore for (i = 0; i < 128; i++)
140 1.1 gdamore sum += d[i];
141 1.1 gdamore if ((sum & 0xff) != 0)
142 1.1 gdamore return EINVAL;
143 1.1 gdamore
144 1.1 gdamore return 0;
145 1.1 gdamore }
146 1.1 gdamore
147 1.1 gdamore void
148 1.1 gdamore edid_print(struct edid_info *edid)
149 1.1 gdamore {
150 1.1 gdamore int i;
151 1.1 gdamore
152 1.1 gdamore if (edid == NULL)
153 1.1 gdamore return;
154 1.1 gdamore printf("Vendor: [%s] %s\n", edid->edid_vendor, edid->edid_vendorname);
155 1.1 gdamore printf("Product: [%04X] %s\n", edid->edid_product,
156 1.1 gdamore edid->edid_productname);
157 1.1 gdamore printf("Serial number: %s\n", edid->edid_serial);
158 1.1 gdamore printf("Manufactured %d Week %d\n",
159 1.1 gdamore edid->edid_year, edid->edid_week);
160 1.1 gdamore printf("EDID Version %d.%d\n", edid->edid_version,
161 1.1 gdamore edid->edid_revision);
162 1.1 gdamore printf("EDID Comment: %s\n", edid->edid_comment);
163 1.1 gdamore
164 1.1 gdamore printf("Video Input: %x\n", edid->edid_video_input);
165 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_DIGITAL) {
166 1.1 gdamore printf("\tDigital");
167 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_DFP1_COMPAT)
168 1.1 gdamore printf(" (DFP 1.x compatible)");
169 1.1 gdamore printf("\n");
170 1.1 gdamore } else {
171 1.1 gdamore printf("\tAnalog\n");
172 1.1 gdamore switch (EDID_VIDEO_INPUT_LEVEL(edid->edid_video_input)) {
173 1.1 gdamore case 0:
174 1.1 gdamore printf("\t-0.7, 0.3V\n");
175 1.1 gdamore break;
176 1.1 gdamore case 1:
177 1.1 gdamore printf("\t-0.714, 0.286V\n");
178 1.1 gdamore break;
179 1.1 gdamore case 2:
180 1.1 gdamore printf("\t-1.0, 0.4V\n");
181 1.1 gdamore break;
182 1.1 gdamore case 3:
183 1.1 gdamore printf("\t-0.7, 0.0V\n");
184 1.1 gdamore break;
185 1.1 gdamore }
186 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_BLANK_TO_BLACK)
187 1.1 gdamore printf("\tBlank-to-black setup\n");
188 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_SEPARATE_SYNCS)
189 1.1 gdamore printf("\tSeperate syncs\n");
190 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_COMPOSITE_SYNC)
191 1.1 gdamore printf("\tComposite sync\n");
192 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_SYNC_ON_GRN)
193 1.1 gdamore printf("\tSync on green\n");
194 1.1 gdamore if (edid->edid_video_input & EDID_VIDEO_INPUT_SERRATION)
195 1.1 gdamore printf("\tSerration vsync\n");
196 1.1 gdamore }
197 1.1 gdamore
198 1.1 gdamore printf("Gamma: %d.%02d\n",
199 1.1 gdamore edid->edid_gamma / 100, edid->edid_gamma % 100);
200 1.1 gdamore
201 1.1 gdamore printf("Max Size: %d cm x %d cm\n",
202 1.1 gdamore edid->edid_max_hsize, edid->edid_max_vsize);
203 1.1 gdamore
204 1.1 gdamore printf("Features: %x\n", edid->edid_features);
205 1.1 gdamore if (edid->edid_features & EDID_FEATURES_STANDBY)
206 1.1 gdamore printf("\tDPMS standby\n");
207 1.1 gdamore if (edid->edid_features & EDID_FEATURES_SUSPEND)
208 1.1 gdamore printf("\tDPMS suspend\n");
209 1.1 gdamore if (edid->edid_features & EDID_FEATURES_ACTIVE_OFF)
210 1.1 gdamore printf("\tDPMS active-off\n");
211 1.1 gdamore switch (EDID_FEATURES_DISP_TYPE(edid->edid_features)) {
212 1.1 gdamore case EDID_FEATURES_DISP_TYPE_MONO:
213 1.1 gdamore printf("\tMonochrome\n");
214 1.1 gdamore break;
215 1.1 gdamore case EDID_FEATURES_DISP_TYPE_RGB:
216 1.1 gdamore printf("\tRGB\n");
217 1.1 gdamore break;
218 1.1 gdamore case EDID_FEATURES_DISP_TYPE_NON_RGB:
219 1.1 gdamore printf("\tMulticolor\n");
220 1.1 gdamore break;
221 1.1 gdamore case EDID_FEATURES_DISP_TYPE_UNDEFINED:
222 1.1 gdamore printf("\tUndefined monitor type\n");
223 1.1 gdamore break;
224 1.1 gdamore }
225 1.1 gdamore if (edid->edid_features & EDID_FEATURES_STD_COLOR)
226 1.1 gdamore printf("\tStandard color space\n");
227 1.1 gdamore if (edid->edid_features & EDID_FEATURES_PREFERRED_TIMING)
228 1.1 gdamore printf("\tPreferred timing\n");
229 1.1 gdamore if (edid->edid_features & EDID_FEATURES_DEFAULT_GTF)
230 1.1 gdamore printf("\tDefault GTF supported\n");
231 1.1 gdamore
232 1.1 gdamore printf("Chroma Info:\n");
233 1.1 gdamore printf("\tRed X: 0.%03d\n", edid->edid_chroma.ec_redx);
234 1.1 gdamore printf("\tRed Y: 0.%03d\n", edid->edid_chroma.ec_redy);
235 1.1 gdamore printf("\tGrn X: 0.%03d\n", edid->edid_chroma.ec_greenx);
236 1.1 gdamore printf("\tGrn Y: 0.%03d\n", edid->edid_chroma.ec_greeny);
237 1.1 gdamore printf("\tBlu X: 0.%03d\n", edid->edid_chroma.ec_bluex);
238 1.1 gdamore printf("\tBlu Y: 0.%03d\n", edid->edid_chroma.ec_bluey);
239 1.1 gdamore printf("\tWht X: 0.%03d\n", edid->edid_chroma.ec_whitex);
240 1.1 gdamore printf("\tWht Y: 0.%03d\n", edid->edid_chroma.ec_whitey);
241 1.1 gdamore
242 1.1 gdamore if (edid->edid_have_range) {
243 1.1 gdamore printf("Range:\n");
244 1.1 gdamore printf("\tHorizontal: %d - %d kHz\n",
245 1.1 gdamore edid->edid_range.er_min_hfreq,
246 1.1 gdamore edid->edid_range.er_max_hfreq);
247 1.1 gdamore printf("\tVertical: %d - %d Hz\n",
248 1.1 gdamore edid->edid_range.er_min_vfreq,
249 1.1 gdamore edid->edid_range.er_max_vfreq);
250 1.1 gdamore printf("\tMax Dot Clock: %d MHz\n",
251 1.1 gdamore edid->edid_range.er_max_clock);
252 1.1 gdamore if (edid->edid_range.er_have_gtf2) {
253 1.1 gdamore printf("\tGTF2 hfreq: %d\n",
254 1.1 gdamore edid->edid_range.er_gtf2_hfreq);
255 1.1 gdamore printf("\tGTF2 C: %d\n", edid->edid_range.er_gtf2_c);
256 1.1 gdamore printf("\tGTF2 M: %d\n", edid->edid_range.er_gtf2_m);
257 1.1 gdamore printf("\tGTF2 J: %d\n", edid->edid_range.er_gtf2_j);
258 1.1 gdamore printf("\tGTF2 K: %d\n", edid->edid_range.er_gtf2_k);
259 1.1 gdamore }
260 1.1 gdamore }
261 1.1 gdamore printf("Video modes:\n");
262 1.1 gdamore for (i = 0; i < edid->edid_nmodes; i++) {
263 1.1 gdamore printf("\t%dx%d @ %dHz\n",
264 1.1 gdamore edid->edid_modes[i].hdisplay,
265 1.1 gdamore edid->edid_modes[i].vdisplay,
266 1.1 gdamore DIVIDE(DIVIDE(edid->edid_modes[i].dot_clock * 1000,
267 1.1 gdamore edid->edid_modes[i].htotal),
268 1.1 gdamore edid->edid_modes[i].vtotal));
269 1.1 gdamore }
270 1.1 gdamore if (edid->edid_preferred_mode)
271 1.1 gdamore printf("Preferred mode: %dx%d @ %dHz\n",
272 1.1 gdamore edid->edid_preferred_mode->hdisplay,
273 1.1 gdamore edid->edid_preferred_mode->vdisplay,
274 1.1 gdamore DIVIDE(DIVIDE(edid->edid_preferred_mode->dot_clock * 1000,
275 1.1 gdamore edid->edid_preferred_mode->htotal),
276 1.1 gdamore edid->edid_preferred_mode->vtotal));
277 1.1 gdamore }
278 1.1 gdamore
279 1.1 gdamore static const struct videomode *
280 1.1 gdamore edid_mode_lookup_list(const char *name)
281 1.1 gdamore {
282 1.1 gdamore int i;
283 1.1 gdamore
284 1.1 gdamore for (i = 0; i < videomode_count; i++)
285 1.1 gdamore if (strcmp(name, videomode_list[i].name) == 0)
286 1.1 gdamore return &videomode_list[i];
287 1.1 gdamore return NULL;
288 1.1 gdamore }
289 1.1 gdamore
290 1.1 gdamore static int
291 1.1 gdamore edid_std_timing(uint8_t *data, struct videomode *vmp)
292 1.1 gdamore {
293 1.1 gdamore unsigned x, y, f;
294 1.1 gdamore const struct videomode *lookup;
295 1.1 gdamore char name[80];
296 1.1 gdamore
297 1.1 gdamore if ((data[0] == 1 && data[1] == 1) ||
298 1.1 gdamore (data[0] == 0 && data[1] == 0) ||
299 1.1 gdamore (data[0] == 0x20 && data[1] == 0x20))
300 1.1 gdamore return 0;
301 1.1 gdamore
302 1.1 gdamore x = EDID_STD_TIMING_HRES(data);
303 1.1 gdamore switch (EDID_STD_TIMING_RATIO(data)) {
304 1.1 gdamore case EDID_STD_TIMING_RATIO_16_10:
305 1.1 gdamore y = x * 10 / 16;
306 1.1 gdamore break;
307 1.1 gdamore case EDID_STD_TIMING_RATIO_4_3:
308 1.1 gdamore y = x * 3 / 4;
309 1.1 gdamore break;
310 1.1 gdamore case EDID_STD_TIMING_RATIO_5_4:
311 1.1 gdamore y = x * 4 / 5;
312 1.1 gdamore break;
313 1.1 gdamore case EDID_STD_TIMING_RATIO_16_9:
314 1.1 gdamore default:
315 1.1 gdamore y = x * 9 / 16;
316 1.1 gdamore break;
317 1.1 gdamore }
318 1.1 gdamore f = EDID_STD_TIMING_VFREQ(data);
319 1.1 gdamore
320 1.1 gdamore /* first try to lookup the mode as a DMT timing */
321 1.1 gdamore snprintf(name, sizeof (name), "%dx%dx%d", x, y, f);
322 1.1 gdamore if ((lookup = edid_mode_lookup_list(name)) != NULL) {
323 1.1 gdamore *vmp = *lookup;
324 1.1 gdamore }
325 1.1 gdamore
326 1.1 gdamore /* failing that, calculate it using gtf */
327 1.1 gdamore else {
328 1.1 gdamore /*
329 1.1 gdamore * Hmm. I'm not using alternate GTF timings, which
330 1.1 gdamore * could, in theory, be present.
331 1.1 gdamore */
332 1.1 gdamore vesagtf_mode(x, y, f, vmp);
333 1.1 gdamore }
334 1.1 gdamore return 1;
335 1.1 gdamore }
336 1.1 gdamore
337 1.1 gdamore static int
338 1.1 gdamore edid_det_timing(uint8_t *data, struct videomode *vmp)
339 1.1 gdamore {
340 1.1 gdamore unsigned hactive, hblank, hsyncwid, hsyncoff;
341 1.1 gdamore unsigned vactive, vblank, vsyncwid, vsyncoff;
342 1.1 gdamore uint8_t flags;
343 1.1 gdamore
344 1.1 gdamore flags = EDID_DET_TIMING_FLAGS(data);
345 1.1 gdamore
346 1.1 gdamore /* we don't support stereo modes (for now) */
347 1.1 gdamore if (flags & (EDID_DET_TIMING_FLAG_STEREO |
348 1.1 gdamore EDID_DET_TIMING_FLAG_STEREO1))
349 1.1 gdamore return 0;
350 1.1 gdamore
351 1.1 gdamore vmp->dot_clock = EDID_DET_TIMING_DOT_CLOCK(data) / 1000;
352 1.1 gdamore
353 1.1 gdamore hactive = EDID_DET_TIMING_HACTIVE(data);
354 1.1 gdamore hblank = EDID_DET_TIMING_HBLANK(data);
355 1.1 gdamore hsyncwid = EDID_DET_TIMING_HSYNC_WIDTH(data);
356 1.1 gdamore hsyncoff = EDID_DET_TIMING_HSYNC_OFFSET(data);
357 1.1 gdamore
358 1.1 gdamore vactive = EDID_DET_TIMING_VACTIVE(data);
359 1.1 gdamore vblank = EDID_DET_TIMING_VBLANK(data);
360 1.1 gdamore vsyncwid = EDID_DET_TIMING_VSYNC_WIDTH(data);
361 1.1 gdamore vsyncoff = EDID_DET_TIMING_VSYNC_OFFSET(data);
362 1.1 gdamore
363 1.1 gdamore /* XXX: I'm not doing anything with the borders, should I? */
364 1.1 gdamore
365 1.1 gdamore vmp->hdisplay = hactive;
366 1.1 gdamore vmp->htotal = hactive + hblank;
367 1.1 gdamore vmp->hsync_start = hactive + hsyncoff;
368 1.1 gdamore vmp->hsync_end = vmp->hsync_start + hsyncwid;
369 1.1 gdamore
370 1.1 gdamore vmp->vdisplay = vactive;
371 1.1 gdamore vmp->vtotal = vactive + vblank;
372 1.1 gdamore vmp->vsync_start = vactive + vsyncoff;
373 1.1 gdamore vmp->vsync_end = vmp->vsync_start + vsyncwid;
374 1.1 gdamore
375 1.1 gdamore vmp->flags = 0;
376 1.1 gdamore
377 1.1 gdamore if (flags & EDID_DET_TIMING_FLAG_INTERLACE)
378 1.1 gdamore vmp->flags |= VID_INTERLACE;
379 1.1 gdamore if (flags & EDID_DET_TIMING_FLAG_HSYNC_POSITIVE)
380 1.1 gdamore vmp->flags |= VID_PHSYNC;
381 1.1 gdamore else
382 1.1 gdamore vmp->flags |= VID_NHSYNC;
383 1.1 gdamore
384 1.1 gdamore if (flags & EDID_DET_TIMING_FLAG_VSYNC_POSITIVE)
385 1.1 gdamore vmp->flags |= VID_PVSYNC;
386 1.1 gdamore else
387 1.1 gdamore vmp->flags |= VID_NVSYNC;
388 1.1 gdamore
389 1.1 gdamore return 1;
390 1.1 gdamore }
391 1.1 gdamore
392 1.1 gdamore static void
393 1.1 gdamore edid_block(struct edid_info *edid, uint8_t *data)
394 1.1 gdamore {
395 1.1 gdamore int i;
396 1.1 gdamore struct videomode mode;
397 1.1 gdamore
398 1.1 gdamore if (EDID_BLOCK_IS_DET_TIMING(data)) {
399 1.1 gdamore if (edid_det_timing(data, &mode)) {
400 1.1 gdamore edid->edid_modes[edid->edid_nmodes] = mode;
401 1.1 gdamore if (edid->edid_preferred_mode == NULL) {
402 1.1 gdamore edid->edid_preferred_mode =
403 1.1 gdamore &edid->edid_modes[edid->edid_nmodes];
404 1.1 gdamore }
405 1.1 gdamore edid->edid_nmodes++;
406 1.1 gdamore }
407 1.1 gdamore return;
408 1.1 gdamore }
409 1.1 gdamore
410 1.1 gdamore switch (EDID_BLOCK_TYPE(data)) {
411 1.1 gdamore case EDID_DESC_BLOCK_TYPE_SERIAL:
412 1.1 gdamore memcpy(edid->edid_serial,
413 1.1 gdamore data + EDID_DESC_ASCII_DATA_OFFSET,
414 1.1 gdamore EDID_DESC_ASCII_DATA_LEN);
415 1.1 gdamore edid->edid_serial[sizeof (edid->edid_serial) - 1] = 0;
416 1.1 gdamore break;
417 1.1 gdamore
418 1.1 gdamore case EDID_DESC_BLOCK_TYPE_ASCII:
419 1.1 gdamore memcpy(edid->edid_comment,
420 1.1 gdamore data + EDID_DESC_ASCII_DATA_OFFSET,
421 1.1 gdamore EDID_DESC_ASCII_DATA_LEN);
422 1.1 gdamore edid->edid_comment[sizeof (edid->edid_comment) - 1] = 0;
423 1.1 gdamore break;
424 1.1 gdamore
425 1.1 gdamore case EDID_DESC_BLOCK_TYPE_RANGE:
426 1.1 gdamore edid->edid_have_range = 1;
427 1.1 gdamore edid->edid_range.er_min_vfreq =
428 1.1 gdamore EDID_DESC_RANGE_MIN_VFREQ(data);
429 1.1 gdamore edid->edid_range.er_max_vfreq =
430 1.1 gdamore EDID_DESC_RANGE_MAX_VFREQ(data);
431 1.1 gdamore edid->edid_range.er_min_hfreq =
432 1.1 gdamore EDID_DESC_RANGE_MIN_HFREQ(data);
433 1.1 gdamore edid->edid_range.er_max_hfreq =
434 1.1 gdamore EDID_DESC_RANGE_MAX_HFREQ(data);
435 1.1 gdamore edid->edid_range.er_max_clock =
436 1.1 gdamore EDID_DESC_RANGE_MAX_CLOCK(data);
437 1.1 gdamore if (EDID_DESC_RANGE_HAVE_GTF2(data)) {
438 1.1 gdamore edid->edid_range.er_have_gtf2 = 1;
439 1.1 gdamore edid->edid_range.er_gtf2_hfreq =
440 1.1 gdamore EDID_DESC_RANGE_GTF2_HFREQ(data);
441 1.1 gdamore edid->edid_range.er_gtf2_c =
442 1.1 gdamore EDID_DESC_RANGE_GTF2_C(data);
443 1.1 gdamore edid->edid_range.er_gtf2_m =
444 1.1 gdamore EDID_DESC_RANGE_GTF2_M(data);
445 1.1 gdamore edid->edid_range.er_gtf2_j =
446 1.1 gdamore EDID_DESC_RANGE_GTF2_J(data);
447 1.1 gdamore edid->edid_range.er_gtf2_k =
448 1.1 gdamore EDID_DESC_RANGE_GTF2_K(data);
449 1.1 gdamore }
450 1.1 gdamore break;
451 1.1 gdamore
452 1.1 gdamore case EDID_DESC_BLOCK_TYPE_NAME:
453 1.1 gdamore /* copy the product name into place */
454 1.1 gdamore memcpy(edid->edid_productname,
455 1.1 gdamore data + EDID_DESC_ASCII_DATA_OFFSET,
456 1.1 gdamore EDID_DESC_ASCII_DATA_LEN);
457 1.1 gdamore break;
458 1.1 gdamore
459 1.1 gdamore case EDID_DESC_BLOCK_TYPE_STD_TIMING:
460 1.1 gdamore data += EDID_DESC_STD_TIMING_START;
461 1.1 gdamore for (i = 0; i < EDID_DESC_STD_TIMING_COUNT; i++) {
462 1.1 gdamore if (edid_std_timing(data, &mode)) {
463 1.1 gdamore edid->edid_modes[edid->edid_nmodes] = mode;
464 1.1 gdamore edid->edid_nmodes++;
465 1.1 gdamore }
466 1.1 gdamore data += 2;
467 1.1 gdamore }
468 1.1 gdamore break;
469 1.1 gdamore
470 1.1 gdamore case EDID_DESC_BLOCK_TYPE_COLOR_POINT:
471 1.1 gdamore /* XXX: not implemented yet */
472 1.1 gdamore break;
473 1.1 gdamore }
474 1.1 gdamore }
475 1.1 gdamore
476 1.1 gdamore /*
477 1.1 gdamore * Gets EDID version in BCD, e.g. EDID v1.3 returned as 0x0103
478 1.1 gdamore */
479 1.2 gdamore int
480 1.2 gdamore edid_parse(uint8_t *data, struct edid_info *edid)
481 1.1 gdamore {
482 1.1 gdamore uint16_t manfid, estmodes;
483 1.1 gdamore const struct videomode *vmp;
484 1.1 gdamore int i;
485 1.1 gdamore const char *name;
486 1.5 macallan int max_dotclock = 0;
487 1.5 macallan int mhz;
488 1.1 gdamore
489 1.1 gdamore if (edid_is_valid(data) != 0)
490 1.2 gdamore return -1;
491 1.1 gdamore
492 1.1 gdamore /* get product identification */
493 1.1 gdamore manfid = EDID_VENDOR_ID(data);
494 1.1 gdamore edid->edid_vendor[0] = EDID_MANFID_0(manfid);
495 1.1 gdamore edid->edid_vendor[1] = EDID_MANFID_1(manfid);
496 1.1 gdamore edid->edid_vendor[2] = EDID_MANFID_2(manfid);
497 1.1 gdamore edid->edid_vendor[3] = 0; /* null terminate for convenience */
498 1.1 gdamore
499 1.1 gdamore edid->edid_product = data[EDID_OFFSET_PRODUCT_ID] +
500 1.1 gdamore (data[EDID_OFFSET_PRODUCT_ID + 1] << 8);
501 1.1 gdamore
502 1.1 gdamore name = edid_findvendor(edid->edid_vendor);
503 1.1 gdamore if (name != NULL) {
504 1.1 gdamore snprintf(edid->edid_vendorname,
505 1.1 gdamore sizeof (edid->edid_vendorname), "%s", name);
506 1.1 gdamore }
507 1.1 gdamore edid->edid_vendorname[sizeof (edid->edid_vendorname) - 1] = 0;
508 1.1 gdamore
509 1.1 gdamore name = edid_findproduct(edid->edid_vendor, edid->edid_product);
510 1.1 gdamore if (name != NULL) {
511 1.1 gdamore snprintf(edid->edid_productname,
512 1.1 gdamore sizeof (edid->edid_productname), "%s", name);
513 1.1 gdamore }
514 1.1 gdamore edid->edid_productname[sizeof (edid->edid_productname) - 1] = 0;
515 1.1 gdamore
516 1.1 gdamore snprintf(edid->edid_serial, sizeof (edid->edid_serial), "%08x",
517 1.1 gdamore EDID_SERIAL_NUMBER(data));
518 1.1 gdamore
519 1.1 gdamore edid->edid_week = EDID_WEEK(data);
520 1.1 gdamore edid->edid_year = EDID_YEAR(data);
521 1.1 gdamore
522 1.1 gdamore /* get edid revision */
523 1.1 gdamore edid->edid_version = EDID_VERSION(data);
524 1.1 gdamore edid->edid_revision = EDID_REVISION(data);
525 1.1 gdamore
526 1.1 gdamore edid->edid_video_input = EDID_VIDEO_INPUT(data);
527 1.1 gdamore edid->edid_max_hsize = EDID_MAX_HSIZE(data);
528 1.1 gdamore edid->edid_max_vsize = EDID_MAX_VSIZE(data);
529 1.1 gdamore
530 1.1 gdamore edid->edid_gamma = EDID_GAMMA(data);
531 1.1 gdamore edid->edid_features = EDID_FEATURES(data);
532 1.1 gdamore
533 1.1 gdamore edid->edid_chroma.ec_redx = EDID_CHROMA_REDX(data);
534 1.1 gdamore edid->edid_chroma.ec_redy = EDID_CHROMA_REDX(data);
535 1.1 gdamore edid->edid_chroma.ec_greenx = EDID_CHROMA_GREENX(data);
536 1.1 gdamore edid->edid_chroma.ec_greeny = EDID_CHROMA_GREENY(data);
537 1.1 gdamore edid->edid_chroma.ec_bluex = EDID_CHROMA_BLUEX(data);
538 1.1 gdamore edid->edid_chroma.ec_bluey = EDID_CHROMA_BLUEY(data);
539 1.1 gdamore edid->edid_chroma.ec_whitex = EDID_CHROMA_WHITEX(data);
540 1.1 gdamore edid->edid_chroma.ec_whitey = EDID_CHROMA_WHITEY(data);
541 1.1 gdamore
542 1.1 gdamore /* lookup established modes */
543 1.4 macallan edid->edid_nmodes = 0;
544 1.5 macallan edid->edid_preferred_mode = NULL;
545 1.1 gdamore estmodes = EDID_EST_TIMING(data);
546 1.7 jdc /* Iterate in esztablished timing order */
547 1.7 jdc for (i = 15; i >= 0; i--) {
548 1.1 gdamore if (estmodes & (1 << i)) {
549 1.1 gdamore vmp = edid_mode_lookup_list(_edid_modes[i]);
550 1.1 gdamore if (vmp != NULL) {
551 1.1 gdamore edid->edid_modes[edid->edid_nmodes] = *vmp;
552 1.1 gdamore edid->edid_nmodes++;
553 1.1 gdamore }
554 1.5 macallan #ifdef DIAGNOSTIC
555 1.5 macallan else
556 1.5 macallan printf("no data for est. mode %s\n",
557 1.5 macallan _edid_modes[i]);
558 1.5 macallan #endif
559 1.1 gdamore }
560 1.1 gdamore }
561 1.1 gdamore
562 1.1 gdamore /* do standard timing section */
563 1.1 gdamore for (i = 0; i < EDID_STD_TIMING_COUNT; i++) {
564 1.1 gdamore struct videomode mode;
565 1.1 gdamore if (edid_std_timing(data + EDID_OFFSET_STD_TIMING + i * 2,
566 1.1 gdamore &mode)) {
567 1.1 gdamore edid->edid_modes[edid->edid_nmodes] = mode;
568 1.1 gdamore edid->edid_nmodes++;
569 1.1 gdamore }
570 1.1 gdamore }
571 1.1 gdamore
572 1.1 gdamore /* do detailed timings and descriptors */
573 1.1 gdamore for (i = 0; i < EDID_BLOCK_COUNT; i++) {
574 1.1 gdamore edid_block(edid, data + EDID_OFFSET_DESC_BLOCK +
575 1.1 gdamore i * EDID_BLOCK_SIZE);
576 1.1 gdamore }
577 1.1 gdamore
578 1.1 gdamore edid_strchomp(edid->edid_vendorname);
579 1.1 gdamore edid_strchomp(edid->edid_productname);
580 1.1 gdamore edid_strchomp(edid->edid_serial);
581 1.1 gdamore edid_strchomp(edid->edid_comment);
582 1.1 gdamore
583 1.5 macallan /*
584 1.5 macallan * XXX
585 1.5 macallan * some monitors lie about their maximum supported dot clock
586 1.5 macallan * by claiming to support modes which need a higher dot clock
587 1.5 macallan * than the stated maximum.
588 1.5 macallan * For sanity's sake we bump it to the highest dot clock we find
589 1.5 macallan * in the list of supported modes
590 1.5 macallan */
591 1.5 macallan for (i = 0; i < edid->edid_nmodes; i++)
592 1.5 macallan if (edid->edid_modes[i].dot_clock > max_dotclock)
593 1.5 macallan max_dotclock = edid->edid_modes[i].dot_clock;
594 1.5 macallan
595 1.5 macallan aprint_verbose("max_dotclock according to supported modes: %d\n",
596 1.5 macallan max_dotclock);
597 1.5 macallan
598 1.5 macallan mhz = (max_dotclock + 999) / 1000;
599 1.5 macallan
600 1.5 macallan if (edid->edid_have_range) {
601 1.5 macallan
602 1.5 macallan if (mhz > edid->edid_range.er_max_clock)
603 1.5 macallan edid->edid_range.er_max_clock = mhz;
604 1.5 macallan } else
605 1.5 macallan edid->edid_range.er_max_clock = mhz;
606 1.5 macallan
607 1.2 gdamore return 0;
608 1.1 gdamore }
609 1.1 gdamore
610