blob: 8bcb95630f9f775c6833a90118f7a403b49b5f72 [file] [log] [blame]
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001/*
2 * Copyright 2013 Google Inc.
3 * Copyright 2006-2012 Red Hat, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23/* Author: Adam Jackson <ajax@nwnk.net> */
24
25/* this is a pretty robust parser for EDID, and we're tasked with parsing
26 * an arbitrary panel. We will pass it a raw EDID block and a struct which
27 * it must fill in with values. The set of values we need is pretty limited
28 * at present.
29 */
30
Julius Werner69112192016-03-14 17:29:55 -070031#include <assert.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070032#include <stddef.h>
33#include <console/console.h>
34#include <arch/io.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070035#include <stdint.h>
36#include <string.h>
37#include <stdlib.h>
38#include <edid.h>
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070039#include <boot/coreboot_tables.h>
40#include <vbe.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070041
Hung-Te Lin1c8ee212014-04-17 15:21:37 +080042struct edid_context {
43 int claims_one_point_oh;
44 int claims_one_point_two;
45 int claims_one_point_three;
46 int claims_one_point_four;
47 int nonconformant_digital_display;
48 int nonconformant_extension;
49 int did_detailed_timing;
50 int has_name_descriptor;
51 int has_range_descriptor;
52 int has_preferred_timing;
53 int has_valid_checksum;
54 int has_valid_cvt;
55 int has_valid_dummy_block;
56 int has_valid_week;
57 int has_valid_year;
58 int has_valid_detailed_blocks;
59 int has_valid_extension_count;
60 int has_valid_descriptor_ordering;
61 int has_valid_descriptor_pad;
62 int has_valid_range_descriptor;
63 int has_valid_max_dotclock;
64 int has_valid_string_termination;
65 int manufacturer_name_well_formed;
66 int seen_non_detailed_descriptor;
67 int warning_excessive_dotclock_correction;
68 int warning_zero_preferred_refresh;
69 int conformant;
70};
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070071
David Hendricksa3b898a2015-08-02 18:07:48 -070072/* Stuff that isn't used anywhere but is nice to pretty-print while
73 we're decoding everything else. */
74static struct {
75 char manuf_name[4];
76 unsigned int model;
77 unsigned int serial;
78 unsigned int year;
79 unsigned int week;
80 unsigned int version[2];
81 unsigned int nonconformant;
82 unsigned int type;
83
84 unsigned int x_mm;
85 unsigned int y_mm;
86
87 unsigned int voltage;
88 unsigned int sync;
89
90 const char *syncmethod;
91 const char *range_class;
92 const char *stereo;
93} extra_info;
94
Douglas Andersonbca67fb2015-10-28 09:18:28 -070095static struct edid tmp_edid;
96
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070097static int vbe_valid;
98static struct lb_framebuffer edid_fb;
99
David Hendricksa3b898a2015-08-02 18:07:48 -0700100static char *manufacturer_name(unsigned char *x)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700101{
David Hendricksa3b898a2015-08-02 18:07:48 -0700102 extra_info.manuf_name[0] = ((x[0] & 0x7C) >> 2) + '@';
103 extra_info.manuf_name[1] = ((x[0] & 0x03) << 3) + ((x[1] & 0xE0) >> 5) + '@';
104 extra_info.manuf_name[2] = (x[1] & 0x1F) + '@';
105 extra_info.manuf_name[3] = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700106
David Hendricksa3b898a2015-08-02 18:07:48 -0700107 if (isupper(extra_info.manuf_name[0]) &&
108 isupper(extra_info.manuf_name[1]) &&
109 isupper(extra_info.manuf_name[2]))
110 return extra_info.manuf_name;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700111
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800112 return NULL;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700113}
114
115static int
Douglas Anderson14dd3702015-10-28 11:19:57 -0700116detailed_cvt_descriptor(unsigned char *x, int first)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700117{
118 const unsigned char empty[3] = { 0, 0, 0 };
119 const char *names[] = { "50", "60", "75", "85" };
120 int width = 0, height = 0;
121 int valid = 1;
122 int fifty = 0, sixty = 0, seventyfive = 0, eightyfive = 0, reduced = 0;
123
124 if (!first && !memcmp(x, empty, 3))
125 return valid;
126
127 height = x[0];
128 height |= (x[1] & 0xf0) << 4;
129 height++;
130 height *= 2;
131
132 switch (x[1] & 0x0c) {
133 case 0x00:
134 width = (height * 4) / 3; break;
135 case 0x04:
136 width = (height * 16) / 9; break;
137 case 0x08:
138 width = (height * 16) / 10; break;
139 case 0x0c:
140 width = (height * 15) / 9; break;
141 }
142
143 if (x[1] & 0x03)
144 valid = 0;
145 if (x[2] & 0x80)
146 valid = 0;
147 if (!(x[2] & 0x1f))
148 valid = 0;
149
150 fifty = (x[2] & 0x10);
151 sixty = (x[2] & 0x08);
152 seventyfive = (x[2] & 0x04);
153 eightyfive = (x[2] & 0x02);
154 reduced = (x[2] & 0x01);
155
156 if (!valid) {
157 printk(BIOS_SPEW, " (broken)\n");
158 } else {
159 printk(BIOS_SPEW, " %dx%d @ ( %s%s%s%s%s) Hz (%s%s preferred)\n",
160 width, height,
161 fifty ? "50 " : "",
162 sixty ? "60 " : "",
163 seventyfive ? "75 " : "",
164 eightyfive ? "85 " : "",
165 reduced ? "60RB " : "",
166 names[(x[2] & 0x60) >> 5],
167 (((x[2] & 0x60) == 0x20) && reduced) ? "RB" : "");
168 }
169
170 return valid;
171}
172
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800173/* extract a CP437 string from a detailed subblock, checking for termination (if
174 * less than len of bytes) with LF and padded with SP.
175 */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700176static char *
177extract_string(unsigned char *x, int *valid_termination, int len)
178{
179 static char ret[128];
180 int i, seen_newline = 0;
181
182 memset(ret, 0, sizeof(ret));
183
184 for (i = 0; i < len; i++) {
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800185 if (seen_newline) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700186 if (x[i] != 0x20) {
187 *valid_termination = 0;
188 return ret;
189 }
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800190 } else if (x[i] == 0x0a) {
191 seen_newline = 1;
192 } else {
193 /* normal characters */
194 ret[i] = x[i];
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700195 }
196 }
197
198 return ret;
199}
200
201/* 1 means valid data */
202static int
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700203detailed_block(struct edid *result_edid, unsigned char *x, int in_extension,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800204 struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700205{
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700206 struct edid *out = &tmp_edid;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700207 int i;
208#if 1
209 printk(BIOS_SPEW, "Hex of detail: ");
210 for (i = 0; i < 18; i++)
211 printk(BIOS_SPEW, "%02x", x[i]);
212 printk(BIOS_SPEW, "\n");
213#endif
214
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700215 /* Result might already have some valid fields like mode_is_supported */
216 *out = *result_edid;
217
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700218 if (x[0] == 0 && x[1] == 0) {
219 /* Monitor descriptor block, not detailed timing descriptor. */
220 if (x[2] != 0) {
221 /* 1.3, 3.10.3 */
222 printk(BIOS_SPEW, "Monitor descriptor block has byte 2 nonzero (0x%02x)\n",
223 x[2]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800224 c->has_valid_descriptor_pad = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700225 }
226 if (x[3] != 0xfd && x[4] != 0x00) {
227 /* 1.3, 3.10.3 */
228 printk(BIOS_SPEW, "Monitor descriptor block has byte 4 nonzero (0x%02x)\n",
229 x[4]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800230 c->has_valid_descriptor_pad = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700231 }
232
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800233 c->seen_non_detailed_descriptor = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700234 if (x[3] <= 0xF) {
235 /*
236 * in principle we can decode these, if we know what they are.
237 * 0x0f seems to be common in laptop panels.
238 * 0x0e is used by EPI: http://www.epi-standard.org/
239 */
240 printk(BIOS_SPEW, "Manufacturer-specified data, tag %d\n", x[3]);
Hung-Te Linb2c10622014-04-03 19:59:37 +0800241 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700242 }
243 switch (x[3]) {
244 case 0x10:
245 printk(BIOS_SPEW, "Dummy block\n");
246 for (i = 5; i < 18; i++)
247 if (x[i] != 0x00)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800248 c->has_valid_dummy_block = 0;
Hung-Te Linb2c10622014-04-03 19:59:37 +0800249 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700250 case 0xF7:
251 /* TODO */
252 printk(BIOS_SPEW, "Established timings III\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800253 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700254 case 0xF8:
255 {
256 int valid_cvt = 1; /* just this block */
257 printk(BIOS_SPEW, "CVT 3-byte code descriptor:\n");
258 if (x[5] != 0x01) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800259 c->has_valid_cvt = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700260 return 0;
261 }
262 for (i = 0; i < 4; i++)
Douglas Anderson14dd3702015-10-28 11:19:57 -0700263 valid_cvt &= detailed_cvt_descriptor(x + 6 + (i * 3), (i == 0));
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800264 c->has_valid_cvt &= valid_cvt;
Hung-Te Linb2c10622014-04-03 19:59:37 +0800265 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700266 }
267 case 0xF9:
268 /* TODO */
269 printk(BIOS_SPEW, "Color management data\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800270 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700271 case 0xFA:
272 /* TODO */
273 printk(BIOS_SPEW, "More standard timings\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800274 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700275 case 0xFB:
276 /* TODO */
277 printk(BIOS_SPEW, "Color point\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800278 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700279 case 0xFC:
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800280 printk(BIOS_SPEW, "Monitor name: %s\n",
281 extract_string(x + 5,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800282 &c->has_valid_string_termination,
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800283 13));
Hung-Te Linb2c10622014-04-03 19:59:37 +0800284 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700285 case 0xFD:
286 {
287 int h_max_offset = 0, h_min_offset = 0;
288 int v_max_offset = 0, v_min_offset = 0;
289 int is_cvt = 0;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800290 c->has_range_descriptor = 1;
David Hendricksa3b898a2015-08-02 18:07:48 -0700291 extra_info.range_class = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700292 /*
293 * XXX todo: implement feature flags, vtd blocks
294 * XXX check: ranges are well-formed; block termination if no vtd
295 */
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800296 if (c->claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700297 if (x[4] & 0x02) {
298 v_max_offset = 255;
299 if (x[4] & 0x01) {
300 v_min_offset = 255;
301 }
302 }
303 if (x[4] & 0x04) {
304 h_max_offset = 255;
305 if (x[4] & 0x03) {
306 h_min_offset = 255;
307 }
308 }
309 } else if (x[4]) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800310 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700311 }
312
313 /*
314 * despite the values, this is not a bitfield.
315 */
316 switch (x[10]) {
317 case 0x00: /* default gtf */
David Hendricksa3b898a2015-08-02 18:07:48 -0700318 extra_info.range_class = "GTF";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700319 break;
320 case 0x01: /* range limits only */
David Hendricksa3b898a2015-08-02 18:07:48 -0700321 extra_info.range_class = "bare limits";
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800322 if (!c->claims_one_point_four)
323 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700324 break;
325 case 0x02: /* secondary gtf curve */
David Hendricksa3b898a2015-08-02 18:07:48 -0700326 extra_info.range_class = "GTF with icing";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700327 break;
328 case 0x04: /* cvt */
David Hendricksa3b898a2015-08-02 18:07:48 -0700329 extra_info.range_class = "CVT";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700330 is_cvt = 1;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800331 if (!c->claims_one_point_four)
332 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700333 break;
334 default: /* invalid */
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800335 c->has_valid_range_descriptor = 0;
David Hendricksa3b898a2015-08-02 18:07:48 -0700336 extra_info.range_class = "invalid";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700337 break;
338 }
339
340 if (x[5] + v_min_offset > x[6] + v_max_offset)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800341 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700342 if (x[7] + h_min_offset > x[8] + h_max_offset)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800343 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700344 printk(BIOS_SPEW, "Monitor ranges (%s): %d-%dHz V, %d-%dkHz H",
David Hendricksa3b898a2015-08-02 18:07:48 -0700345 extra_info.range_class,
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700346 x[5] + v_min_offset, x[6] + v_max_offset,
347 x[7] + h_min_offset, x[8] + h_max_offset);
348 if (x[9])
349 printk(BIOS_SPEW, ", max dotclock %dMHz\n", x[9] * 10);
350 else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800351 if (c->claims_one_point_four)
352 c->has_valid_max_dotclock = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700353 printk(BIOS_SPEW, "\n");
354 }
355
356 if (is_cvt) {
357 int max_h_pixels = 0;
358
359 printk(BIOS_SPEW, "CVT version %d.%d\n", x[11] & 0xf0 >> 4, x[11] & 0x0f);
360
361 if (x[12] & 0xfc) {
362 int raw_offset = (x[12] & 0xfc) >> 2;
Patrick Georgibe71ee5d2014-12-15 22:52:14 +0100363 printk(BIOS_SPEW, "Real max dotclock: %dKHz\n",
364 (x[9] * 10000) - (raw_offset * 250));
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700365 if (raw_offset >= 40)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800366 c->warning_excessive_dotclock_correction = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700367 }
368
369 max_h_pixels = x[12] & 0x03;
370 max_h_pixels <<= 8;
371 max_h_pixels |= x[13];
372 max_h_pixels *= 8;
373 if (max_h_pixels)
374 printk(BIOS_SPEW, "Max active pixels per line: %d\n", max_h_pixels);
375
376 printk(BIOS_SPEW, "Supported aspect ratios: %s %s %s %s %s\n",
377 x[14] & 0x80 ? "4:3" : "",
378 x[14] & 0x40 ? "16:9" : "",
379 x[14] & 0x20 ? "16:10" : "",
380 x[14] & 0x10 ? "5:4" : "",
381 x[14] & 0x08 ? "15:9" : "");
382 if (x[14] & 0x07)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800383 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700384
385 printk(BIOS_SPEW, "Preferred aspect ratio: ");
386 switch((x[15] & 0xe0) >> 5) {
387 case 0x00: printk(BIOS_SPEW, "4:3"); break;
388 case 0x01: printk(BIOS_SPEW, "16:9"); break;
389 case 0x02: printk(BIOS_SPEW, "16:10"); break;
390 case 0x03: printk(BIOS_SPEW, "5:4"); break;
391 case 0x04: printk(BIOS_SPEW, "15:9"); break;
392 default: printk(BIOS_SPEW, "(broken)"); break;
393 }
394 printk(BIOS_SPEW, "\n");
395
396 if (x[15] & 0x04)
397 printk(BIOS_SPEW, "Supports CVT standard blanking\n");
398 if (x[15] & 0x10)
399 printk(BIOS_SPEW, "Supports CVT reduced blanking\n");
400
401 if (x[15] & 0x07)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800402 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700403
404 if (x[16] & 0xf0) {
405 printk(BIOS_SPEW, "Supported display scaling:\n");
406 if (x[16] & 0x80)
407 printk(BIOS_SPEW, " Horizontal shrink\n");
408 if (x[16] & 0x40)
409 printk(BIOS_SPEW, " Horizontal stretch\n");
410 if (x[16] & 0x20)
411 printk(BIOS_SPEW, " Vertical shrink\n");
412 if (x[16] & 0x10)
413 printk(BIOS_SPEW, " Vertical stretch\n");
414 }
415
416 if (x[16] & 0x0f)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800417 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700418
419 if (x[17])
420 printk(BIOS_SPEW, "Preferred vertical refresh: %d Hz\n", x[17]);
421 else
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800422 c->warning_zero_preferred_refresh = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700423 }
424
425 /*
426 * Slightly weird to return a global, but I've never seen any
427 * EDID block wth two range descriptors, so it's harmless.
428 */
Hung-Te Linb2c10622014-04-03 19:59:37 +0800429 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700430 }
431 case 0xFE:
432 /*
433 * TODO: Two of these in a row, in the third and fourth slots,
434 * seems to be specified by SPWG: http://www.spwg.org/
435 */
436 printk(BIOS_SPEW, "ASCII string: %s\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800437 extract_string(x + 5, &c->has_valid_string_termination, 13));
Hung-Te Linb2c10622014-04-03 19:59:37 +0800438 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700439 case 0xFF:
440 printk(BIOS_SPEW, "Serial number: %s\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800441 extract_string(x + 5, &c->has_valid_string_termination, 13));
Hung-Te Linb2c10622014-04-03 19:59:37 +0800442 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700443 default:
444 printk(BIOS_SPEW, "Unknown monitor description type %d\n", x[3]);
445 return 0;
446 }
447 }
448
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800449 if (c->seen_non_detailed_descriptor && !in_extension) {
450 c->has_valid_descriptor_ordering = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700451 }
452
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700453 /* Edid contains pixel clock in terms of 10KHz */
454 out->mode.pixel_clock = (x[0] + (x[1] << 8)) * 10;
455 /*
456 LVDS supports following pixel clocks
457 25000...112000 kHz: single channel
458 80000...224000 kHz: dual channel
459 There is some overlap in theoretically supported
460 pixel clock between single-channel and dual-channel.
461 In practice with current panels all panels
462 <= 75200 kHz: single channel
463 >= 97750 kHz: dual channel
464 We have no samples between those values, so put a
465 threshold at 95000 kHz. If we get anything over
466 95000 kHz with single channel, we can make this
467 more sofisticated but it's currently not needed.
468 */
469 out->mode.lvds_dual_channel = (out->mode.pixel_clock >= 95000);
470 extra_info.x_mm = (x[12] + ((x[14] & 0xF0) << 4));
471 extra_info.y_mm = (x[13] + ((x[14] & 0x0F) << 8));
472 out->mode.ha = (x[2] + ((x[4] & 0xF0) << 4));
473 out->mode.hbl = (x[3] + ((x[4] & 0x0F) << 8));
474 out->mode.hso = (x[8] + ((x[11] & 0xC0) << 2));
475 out->mode.hspw = (x[9] + ((x[11] & 0x30) << 4));
476 out->mode.hborder = x[15];
477 out->mode.va = (x[5] + ((x[7] & 0xF0) << 4));
478 out->mode.vbl = (x[6] + ((x[7] & 0x0F) << 8));
479 out->mode.vso = ((x[10] >> 4) + ((x[11] & 0x0C) << 2));
480 out->mode.vspw = ((x[10] & 0x0F) + ((x[11] & 0x03) << 4));
481 out->mode.vborder = x[16];
Furquan Shaikhd0a81f72013-07-30 12:41:08 -0700482
Julius Werner69112192016-03-14 17:29:55 -0700483 /* We assume rgb888 (32 bits per pixel) framebuffers by default.
Julius Werner2b6db972016-04-06 12:50:40 -0700484 * Chipsets that want something else will need to override this with
485 * another call to edid_set_framebuffer_bits_per_pixel(). As a cheap
486 * heuristic, assume that X86 systems require a 64-byte row alignment
487 * (since that seems to be true for most Intel chipsets). */
488 if (IS_ENABLED(CONFIG_ARCH_X86))
489 edid_set_framebuffer_bits_per_pixel(out, 32, 64);
490 else
491 edid_set_framebuffer_bits_per_pixel(out, 32, 0);
Julius Werner69112192016-03-14 17:29:55 -0700492
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700493 switch ((x[17] & 0x18) >> 3) {
494 case 0x00:
David Hendricksa3b898a2015-08-02 18:07:48 -0700495 extra_info.syncmethod = " analog composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700496 break;
497 case 0x01:
David Hendricksa3b898a2015-08-02 18:07:48 -0700498 extra_info.syncmethod = " bipolar analog composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700499 break;
500 case 0x02:
David Hendricksa3b898a2015-08-02 18:07:48 -0700501 extra_info.syncmethod = " digital composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700502 break;
503 case 0x03:
David Hendricksa3b898a2015-08-02 18:07:48 -0700504 extra_info.syncmethod = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700505 break;
506 }
David Hendricks7dbf9c62015-07-30 18:49:48 -0700507 out->mode.pvsync = (x[17] & (1 << 2)) ? '+' : '-';
508 out->mode.phsync = (x[17] & (1 << 1)) ? '+' : '-';
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700509 switch (x[17] & 0x61) {
510 case 0x20:
David Hendricksa3b898a2015-08-02 18:07:48 -0700511 extra_info.stereo = "field sequential L/R";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700512 break;
513 case 0x40:
David Hendricksa3b898a2015-08-02 18:07:48 -0700514 extra_info.stereo = "field sequential R/L";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700515 break;
516 case 0x21:
David Hendricksa3b898a2015-08-02 18:07:48 -0700517 extra_info.stereo = "interleaved right even";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700518 break;
519 case 0x41:
David Hendricksa3b898a2015-08-02 18:07:48 -0700520 extra_info.stereo = "interleaved left even";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700521 break;
522 case 0x60:
David Hendricksa3b898a2015-08-02 18:07:48 -0700523 extra_info.stereo = "four way interleaved";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700524 break;
525 case 0x61:
David Hendricksa3b898a2015-08-02 18:07:48 -0700526 extra_info.stereo = "side by side interleaved";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700527 break;
528 default:
David Hendricksa3b898a2015-08-02 18:07:48 -0700529 extra_info.stereo = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700530 break;
531 }
532
Furquan Shaikh6b190712013-07-22 16:18:31 -0700533 printk(BIOS_SPEW, "Detailed mode (IN HEX): Clock %d KHz, %x mm x %x mm\n"
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700534 " %04x %04x %04x %04x hborder %x\n"
535 " %04x %04x %04x %04x vborder %x\n"
536 " %chsync %cvsync%s%s %s\n",
David Hendricks7dbf9c62015-07-30 18:49:48 -0700537 out->mode.pixel_clock,
David Hendricksa3b898a2015-08-02 18:07:48 -0700538 extra_info.x_mm,
539 extra_info.y_mm,
David Hendricks7dbf9c62015-07-30 18:49:48 -0700540 out->mode.ha, out->mode.ha + out->mode.hso,
541 out->mode.ha + out->mode.hso + out->mode.hspw,
542 out->mode.ha + out->mode.hbl, out->mode.hborder,
543 out->mode.va, out->mode.va + out->mode.vso,
544 out->mode.va + out->mode.vso + out->mode.vspw,
545 out->mode.va + out->mode.vbl, out->mode.vborder,
546 out->mode.phsync, out->mode.pvsync,
David Hendricksa3b898a2015-08-02 18:07:48 -0700547 extra_info.syncmethod, x[17] & 0x80 ?" interlaced" : "",
David Hendricks7dbf9c62015-07-30 18:49:48 -0700548 extra_info.stereo);
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700549
550 if (! c->did_detailed_timing) {
551 printk(BIOS_SPEW, "Did detailed timing\n");
552 c->did_detailed_timing = 1;
553 *result_edid = *out;
554 }
555
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700556 return 1;
557}
558
559static int
560do_checksum(unsigned char *x)
561{
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800562 int valid = 0;
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -0600563 printk(BIOS_SPEW, "Checksum: 0x%hhx", x[0x7f]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700564 {
565 unsigned char sum = 0;
566 int i;
567 for (i = 0; i < 128; i++)
568 sum += x[i];
569 if (sum) {
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -0600570 printk(BIOS_SPEW, " (should be 0x%hhx)", (unsigned char)(x[0x7f] - sum));
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700571 } else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800572 valid = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700573 printk(BIOS_SPEW, " (valid)");
574 }
575 }
576 printk(BIOS_SPEW, "\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800577 return valid;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700578}
579
580/* CEA extension */
581
582static const char *
583audio_format(unsigned char x)
584{
585 switch (x) {
586 case 0: return "RESERVED";
587 case 1: return "Linear PCM";
588 case 2: return "AC-3";
589 case 3: return "MPEG 1 (Layers 1 & 2)";
590 case 4: return "MPEG 1 Layer 3 (MP3)";
591 case 5: return "MPEG2 (multichannel)";
592 case 6: return "AAC";
593 case 7: return "DTS";
594 case 8: return "ATRAC";
595 case 9: return "One Bit Audio";
596 case 10: return "Dolby Digital+";
597 case 11: return "DTS-HD";
598 case 12: return "MAT (MLP)";
599 case 13: return "DST";
600 case 14: return "WMA Pro";
601 case 15: return "RESERVED";
602 }
603 return "BROKEN"; /* can't happen */
604}
605
606static void
607cea_audio_block(unsigned char *x)
608{
609 int i, format;
610 int length = x[0] & 0x1f;
611
612 if (length % 3) {
613 printk(BIOS_SPEW, "Broken CEA audio block length %d\n", length);
614 /* XXX non-conformant */
615 return;
616 }
617
618 for (i = 1; i < length; i += 3) {
619 format = (x[i] & 0x78) >> 3;
620 printk(BIOS_SPEW, " %s, max channels %d\n", audio_format(format),
621 x[i] & 0x07);
622 printk(BIOS_SPEW, " Supported sample rates (kHz):%s%s%s%s%s%s%s\n",
623 (x[i+1] & 0x40) ? " 192" : "",
624 (x[i+1] & 0x20) ? " 176.4" : "",
625 (x[i+1] & 0x10) ? " 96" : "",
626 (x[i+1] & 0x08) ? " 88.2" : "",
627 (x[i+1] & 0x04) ? " 48" : "",
628 (x[i+1] & 0x02) ? " 44.1" : "",
629 (x[i+1] & 0x01) ? " 32" : "");
630 if (format == 1) {
631 printk(BIOS_SPEW, " Supported sample sizes (bits):%s%s%s\n",
632 (x[2] & 0x04) ? " 24" : "",
633 (x[2] & 0x02) ? " 20" : "",
634 (x[2] & 0x01) ? " 16" : "");
635 } else if (format <= 8) {
636 printk(BIOS_SPEW, " Maximum bit rate: %d kHz\n", x[2] * 8);
637 }
638 }
639}
640
641static void
642cea_video_block(unsigned char *x)
643{
644 int i;
645 int length = x[0] & 0x1f;
646
647 for (i = 1; i < length; i++)
648 printk(BIOS_SPEW," VIC %02d %s\n", x[i] & 0x7f,
649 x[i] & 0x80 ? "(native)" : "");
650}
651
652static void
653cea_hdmi_block(struct edid *out, unsigned char *x)
654{
655 int length = x[0] & 0x1f;
656
Yakir Yang85810cc2015-10-27 16:17:13 +0800657 out->hdmi_monitor_detected = 1;
658
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700659 printk(BIOS_SPEW, " (HDMI)\n");
660 printk(BIOS_SPEW,
661 " Source physical address %d.%d.%d.%d\n",
662 x[4] >> 4, x[4] & 0x0f, x[5] >> 4, x[5] & 0x0f);
663
664 if (length > 5) {
665 if (x[6] & 0x80)
666 printk(BIOS_SPEW, " Supports_AI\n");
667 if (x[6] & 0x40)
668 printk(BIOS_SPEW, " DC_48bit\n");
669 if (x[6] & 0x20)
670 printk(BIOS_SPEW, " DC_36bit\n");
671 if (x[6] & 0x10)
672 printk(BIOS_SPEW, " DC_30bit\n");
673 if (x[6] & 0x08)
674 printk(BIOS_SPEW, " DC_Y444\n");
675 /* two reserved */
676 if (x[6] & 0x01)
677 printk(BIOS_SPEW, " DVI_Dual\n");
678 }
679
680 if (length > 6)
681 printk(BIOS_SPEW, " Maximum TMDS clock: %dMHz\n", x[7] * 5);
682
683 /* XXX the walk here is really ugly, and needs to be length-checked */
684 if (length > 7) {
685 int b = 0;
686
687 if (x[8] & 0x80) {
688 printk(BIOS_SPEW, " Video latency: %d\n", x[9 + b]);
689 printk(BIOS_SPEW, " Audio latency: %d\n", x[10 + b]);
690 b += 2;
691 }
692
693 if (x[8] & 0x40) {
694 printk(BIOS_SPEW, " Interlaced video latency: %d\n", x[9 + b]);
695 printk(BIOS_SPEW, " Interlaced audio latency: %d\n", x[10 + b]);
696 b += 2;
697 }
698
699 if (x[8] & 0x20) {
700 int mask = 0, formats = 0;
701 int len_xx, len_3d;
702 printk(BIOS_SPEW, " Extended HDMI video details:\n");
703 if (x[9 + b] & 0x80)
704 printk(BIOS_SPEW, " 3D present\n");
705 if ((x[9 + b] & 0x60) == 0x20) {
706 printk(BIOS_SPEW, " All advertised VICs are 3D-capable\n");
707 formats = 1;
708 }
709 if ((x[9 + b] & 0x60) == 0x40) {
710 printk(BIOS_SPEW, " 3D-capable-VIC mask present\n");
711 formats = 1;
712 mask = 1;
713 }
714 switch (x[9 + b] & 0x18) {
715 case 0x00: break;
716 case 0x08:
717 printk(BIOS_SPEW, " Base EDID image size is aspect ratio\n");
718 break;
719 case 0x10:
720 printk(BIOS_SPEW, " Base EDID image size is in units of 1cm\n");
721 break;
722 case 0x18:
723 printk(BIOS_SPEW, " Base EDID image size is in units of 5cm\n");
724 break;
725 }
726 len_xx = (x[10 + b] & 0xe0) >> 5;
727 len_3d = (x[10 + b] & 0x1f) >> 0;
728 b += 2;
729
730 if (len_xx) {
731 printk(BIOS_SPEW, " Skipping %d bytes that HDMI refuses to publicly"
732 " document\n", len_xx);
733 b += len_xx;
734 }
735
736 if (len_3d) {
737 if (formats) {
738 if (x[9 + b] & 0x01)
739 printk(BIOS_SPEW, " Side-by-side 3D supported\n");
740 if (x[10 + b] & 0x40)
741 printk(BIOS_SPEW, " Top-and-bottom 3D supported\n");
742 if (x[10 + b] & 0x01)
743 printk(BIOS_SPEW, " Frame-packing 3D supported\n");
744 b += 2;
745 }
746 if (mask) {
747 int i;
748 printk(BIOS_SPEW, " 3D VIC indices:");
749 /* worst bit ordering ever */
750 for (i = 0; i < 8; i++)
751 if (x[10 + b] & (1 << i))
752 printk(BIOS_SPEW, " %d", i);
753 for (i = 0; i < 8; i++)
754 if (x[9 + b] & (1 << i))
755 printk(BIOS_SPEW, " %d", i + 8);
756 printk(BIOS_SPEW, "\n");
757 b += 2;
758 }
759
760 /*
761 * XXX list of nibbles:
762 * 2D_VIC_Order_X
763 * 3D_Structure_X
764 * (optionally: 3D_Detail_X and reserved)
765 */
766 }
767
768 }
769 }
770}
771
772static void
773cea_block(struct edid *out, unsigned char *x)
774{
775 unsigned int oui;
776
777 switch ((x[0] & 0xe0) >> 5) {
778 case 0x01:
779 printk(BIOS_SPEW, " Audio data block\n");
780 cea_audio_block(x);
781 break;
782 case 0x02:
783 printk(BIOS_SPEW, " Video data block\n");
784 cea_video_block(x);
785 break;
786 case 0x03:
787 /* yes really, endianness lols */
788 oui = (x[3] << 16) + (x[2] << 8) + x[1];
789 printk(BIOS_SPEW, " Vendor-specific data block, OUI %06x", oui);
790 if (oui == 0x000c03)
791 cea_hdmi_block(out, x);
792 else
793 printk(BIOS_SPEW, "\n");
794 break;
795 case 0x04:
796 printk(BIOS_SPEW, " Speaker allocation data block\n");
797 break;
798 case 0x05:
799 printk(BIOS_SPEW, " VESA DTC data block\n");
800 break;
801 case 0x07:
802 printk(BIOS_SPEW, " Extended tag: ");
803 switch (x[1]) {
804 case 0x00:
805 printk(BIOS_SPEW, "video capability data block\n");
806 break;
807 case 0x01:
808 printk(BIOS_SPEW, "vendor-specific video data block\n");
809 break;
810 case 0x02:
811 printk(BIOS_SPEW, "VESA video display device information data block\n");
812 break;
813 case 0x03:
814 printk(BIOS_SPEW, "VESA video data block\n");
815 break;
816 case 0x04:
817 printk(BIOS_SPEW, "HDMI video data block\n");
818 break;
819 case 0x05:
820 printk(BIOS_SPEW, "Colorimetry data block\n");
821 break;
822 case 0x10:
823 printk(BIOS_SPEW, "CEA miscellaneous audio fields\n");
824 break;
825 case 0x11:
826 printk(BIOS_SPEW, "Vendor-specific audio data block\n");
827 break;
828 case 0x12:
829 printk(BIOS_SPEW, "HDMI audio data block\n");
830 break;
831 default:
832 if (x[1] >= 6 && x[1] <= 15)
833 printk(BIOS_SPEW, "Reserved video block (%02x)\n", x[1]);
834 else if (x[1] >= 19 && x[1] <= 31)
835 printk(BIOS_SPEW, "Reserved audio block (%02x)\n", x[1]);
836 else
837 printk(BIOS_SPEW, "Unknown (%02x)\n", x[1]);
838 break;
839 }
840 break;
841 default:
842 {
843 int tag = (*x & 0xe0) >> 5;
844 int length = *x & 0x1f;
845 printk(BIOS_SPEW,
846 " Unknown tag %d, length %d (raw %02x)\n", tag, length, *x);
847 break;
848 }
849 }
850}
851
852static int
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800853parse_cea(struct edid *out, unsigned char *x, struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700854{
855 int ret = 0;
856 int version = x[1];
857 int offset = x[2];
858 unsigned char *detailed;
859
860 if (version >= 1) do {
861 if (version == 1 && x[3] != 0)
862 ret = 1;
863
864 if (offset < 4)
865 break;
866
867 if (version < 3) {
868 printk(BIOS_SPEW, "%d 8-byte timing descriptors\n", (offset - 4) / 8);
869 if (offset - 4 > 0)
870 /* do stuff */ ;
871 } else if (version == 3) {
872 int i;
873 printk(BIOS_SPEW, "%d bytes of CEA data\n", offset - 4);
874 for (i = 4; i < offset; i += (x[i] & 0x1f) + 1) {
875 cea_block(out, x + i);
876 }
877 }
878
879 if (version >= 2) {
880 if (x[3] & 0x80)
881 printk(BIOS_SPEW, "Underscans PC formats by default\n");
882 if (x[3] & 0x40)
883 printk(BIOS_SPEW, "Basic audio support\n");
884 if (x[3] & 0x20)
885 printk(BIOS_SPEW, "Supports YCbCr 4:4:4\n");
886 if (x[3] & 0x10)
887 printk(BIOS_SPEW, "Supports YCbCr 4:2:2\n");
888 printk(BIOS_SPEW, "%d native detailed modes\n", x[3] & 0x0f);
889 }
890
891 for (detailed = x + offset; detailed + 18 < x + 127; detailed += 18)
892 if (detailed[0])
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800893 detailed_block(out, detailed, 1, c);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700894 } while (0);
895
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800896 c->has_valid_checksum &= do_checksum(x);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700897 return ret;
898}
899
900/* generic extension code */
901
902static void
903extension_version(struct edid *out, unsigned char *x)
904{
905 printk(BIOS_SPEW, "Extension version: %d\n", x[1]);
906}
907
908static int
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800909parse_extension(struct edid *out, unsigned char *x, struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700910{
911 int conformant_extension = 0;
912 printk(BIOS_SPEW, "\n");
913
914 switch(x[0]) {
915 case 0x02:
916 printk(BIOS_SPEW, "CEA extension block\n");
917 extension_version(out, x);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800918 conformant_extension = parse_cea(out, x, c);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700919 break;
920 case 0x10: printk(BIOS_SPEW, "VTB extension block\n"); break;
921 case 0x40: printk(BIOS_SPEW, "DI extension block\n"); break;
922 case 0x50: printk(BIOS_SPEW, "LS extension block\n"); break;
923 case 0x60: printk(BIOS_SPEW, "DPVL extension block\n"); break;
924 case 0xF0: printk(BIOS_SPEW, "Block map\n"); break;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800925 case 0xFF: printk(BIOS_SPEW, "Manufacturer-specific extension block\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700926 default:
927 printk(BIOS_SPEW, "Unknown extension block\n");
928 break;
929 }
930
931 printk(BIOS_SPEW, "\n");
932
933 return conformant_extension;
934}
935
936static const struct {
937 int x, y, refresh;
938} established_timings[] = {
939 /* 0x23 bit 7 - 0 */
940 {720, 400, 70},
941 {720, 400, 88},
942 {640, 480, 60},
943 {640, 480, 67},
944 {640, 480, 72},
945 {640, 480, 75},
946 {800, 600, 56},
947 {800, 600, 60},
948 /* 0x24 bit 7 - 0 */
949 {800, 600, 72},
950 {800, 600, 75},
951 {832, 624, 75},
952 {1280, 768, 87},
953 {1024, 768, 60},
954 {1024, 768, 70},
955 {1024, 768, 75},
956 {1280, 1024, 75},
957 /* 0x25 bit 7*/
958 {1152, 870, 75},
959};
960
961static void print_subsection(const char *name, unsigned char *edid, int start,
962 int end)
963{
964 int i;
965
966 printk(BIOS_SPEW, "%s:", name);
967 for (i = strlen(name); i < 15; i++)
968 printk(BIOS_SPEW, " ");
969 for (i = start; i <= end; i++)
970 printk(BIOS_SPEW, " %02x", edid[i]);
971 printk(BIOS_SPEW, "\n");
972}
973
974static void dump_breakdown(unsigned char *edid)
975{
976 printk(BIOS_SPEW, "Extracted contents:\n");
977 print_subsection("header", edid, 0, 7);
978 print_subsection("serial number", edid, 8, 17);
979 print_subsection("version", edid,18, 19);
980 print_subsection("basic params", edid, 20, 24);
981 print_subsection("chroma info", edid, 25, 34);
982 print_subsection("established", edid, 35, 37);
983 print_subsection("standard", edid, 38, 53);
984 print_subsection("descriptor 1", edid, 54, 71);
985 print_subsection("descriptor 2", edid, 72, 89);
986 print_subsection("descriptor 3", edid, 90, 107);
987 print_subsection("descriptor 4", edid, 108, 125);
988 print_subsection("extensions", edid, 126, 126);
989 print_subsection("checksum", edid, 127, 127);
990 printk(BIOS_SPEW, "\n");
991}
992
993/*
David Hendrickse2054102015-08-07 18:41:37 -0700994 * Lookup table of some well-known modes that can be useful in case the
995 * auto-detected mode is unsuitable.
996 * ha = hdisplay; va = vdisplay;
997 * hbl = htotal - hdisplay; vbl = vtotal - vdisplay;
998 * hso = hsync_start - hdsiplay; vso = vsync_start - vdisplay;
999 * hspw = hsync_end - hsync_start; vspw = vsync_end - vsync_start;
1000 */
1001static struct edid_mode known_modes[NUM_KNOWN_MODES] = {
1002 [EDID_MODE_640x480_60Hz] = {
Douglas Anderson78e226cf2015-10-28 09:52:22 -07001003 .name = "640x480@60Hz", .pixel_clock = 25200, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001004 .ha = 640, .hbl = 160, .hso = 16, .hspw = 96,
David Hendrickse2054102015-08-07 18:41:37 -07001005 .va = 480, .vbl = 45, .vso = 10, .vspw = 2,
1006 .phsync = '-', .pvsync = '-' },
1007 [EDID_MODE_720x480_60Hz] = {
1008 .name = "720x480@60Hz", .pixel_clock = 27000, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001009 .ha = 720, .hbl = 138, .hso = 16, .hspw = 62,
David Hendrickse2054102015-08-07 18:41:37 -07001010 .va = 480, .vbl = 45, .vso = 9, .vspw = 6,
1011 .phsync = '-', .pvsync = '-' },
1012 [EDID_MODE_1280x720_60Hz] = {
1013 .name = "1280x720@60Hz", .pixel_clock = 74250, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001014 .ha = 1280, .hbl = 370, .hso = 110, .hspw = 40,
David Hendrickse2054102015-08-07 18:41:37 -07001015 .va = 720, .vbl = 30, .vso = 5, .vspw = 20,
1016 .phsync = '+', .pvsync = '+' },
1017 [EDID_MODE_1920x1080_60Hz] = {
1018 .name = "1920x1080@60Hz", .pixel_clock = 148500, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001019 .ha = 1920, .hbl = 280, .hso = 88, .hspw = 44,
David Hendrickse2054102015-08-07 18:41:37 -07001020 .va = 1080, .vbl = 45, .vso = 4, .vspw = 5,
1021 .phsync = '+', .pvsync = '+' },
1022};
1023
1024int set_display_mode(struct edid *edid, enum edid_modes mode)
1025{
1026 if (mode == EDID_MODE_AUTO)
1027 return 0;
1028
1029 if (edid->mode_is_supported[mode]) {
1030 printk(BIOS_DEBUG, "Forcing mode %s\n", known_modes[mode].name);
1031 edid->mode = known_modes[mode];
1032 return 0;
1033 }
1034
1035 printk(BIOS_ERR, "Requested display mode not supported.\n");
1036 return -1;
1037}
1038
1039/*
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001040 * Given a raw edid bloc, decode it into a form
1041 * that other parts of coreboot can use -- mainly
1042 * graphics bringup functions. The raw block is
1043 * required to be 128 bytes long, per the standard,
1044 * but we have no way of checking this minimum length.
1045 * We accept what we are given.
1046 */
1047int decode_edid(unsigned char *edid, int size, struct edid *out)
1048{
David Hendrickse2054102015-08-07 18:41:37 -07001049 int analog, i, j;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001050 struct edid_context c = {
1051 .has_valid_cvt = 1,
1052 .has_valid_dummy_block = 1,
1053 .has_valid_descriptor_ordering = 1,
Vince Hsu4213b972014-04-21 17:07:57 +08001054 .has_valid_detailed_blocks = 1,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001055 .has_valid_descriptor_pad = 1,
1056 .has_valid_range_descriptor = 1,
1057 .has_valid_max_dotclock = 1,
1058 .has_valid_string_termination = 1,
1059 .conformant = 1,
1060 };
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001061
1062 dump_breakdown(edid);
1063
David Hendricks40e89b42015-08-13 15:51:00 -07001064 memset(out, 0, sizeof(*out));
1065
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001066 if (!edid || memcmp(edid, "\x00\xFF\xFF\xFF\xFF\xFF\xFF\x00", 8)) {
1067 printk(BIOS_SPEW, "No header found\n");
1068 return 1;
1069 }
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001070
David Hendricksa3b898a2015-08-02 18:07:48 -07001071 if (manufacturer_name(edid + 0x08))
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001072 c.manufacturer_name_well_formed = 1;
1073
David Hendricksa3b898a2015-08-02 18:07:48 -07001074 extra_info.model = (unsigned short)(edid[0x0A] + (edid[0x0B] << 8));
1075 extra_info.serial = (unsigned int)(edid[0x0C] + (edid[0x0D] << 8)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001076 + (edid[0x0E] << 16) + (edid[0x0F] << 24));
1077
1078 printk(BIOS_SPEW, "Manufacturer: %s Model %x Serial Number %u\n",
David Hendricksa3b898a2015-08-02 18:07:48 -07001079 extra_info.manuf_name,
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001080 (unsigned short)(edid[0x0A] + (edid[0x0B] << 8)),
1081 (unsigned int)(edid[0x0C] + (edid[0x0D] << 8)
1082 + (edid[0x0E] << 16) + (edid[0x0F] << 24)));
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001083 /* XXX need manufacturer ID table */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001084
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001085 if (edid[0x10] < 55 || edid[0x10] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001086 c.has_valid_week = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001087 if (edid[0x11] > 0x0f) {
1088 if (edid[0x10] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001089 c.has_valid_year = 1;
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -06001090 printk(BIOS_SPEW, "Made week %hhd of model year %hhd\n", edid[0x10],
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001091 edid[0x11]);
David Hendricksa3b898a2015-08-02 18:07:48 -07001092 extra_info.week = edid[0x10];
1093 extra_info.year = edid[0x11];
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001094 } else {
1095 /* we know it's at least 2013, when this code was written */
1096 if (edid[0x11] + 90 <= 2013) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001097 c.has_valid_year = 1;
Alexandru Gagniuc09915c12014-12-21 02:54:33 -06001098 printk(BIOS_SPEW, "Made week %hhd of %d\n",
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001099 edid[0x10], edid[0x11] + 1990);
David Hendricksa3b898a2015-08-02 18:07:48 -07001100 extra_info.week = edid[0x10];
1101 extra_info.year = edid[0x11] + 1990;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001102 }
1103 }
1104 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001105 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001106
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -06001107 printk(BIOS_SPEW, "EDID version: %hhd.%hhd\n", edid[0x12], edid[0x13]);
David Hendricksa3b898a2015-08-02 18:07:48 -07001108 extra_info.version[0] = edid[0x12];
1109 extra_info.version[1] = edid[0x13];
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001110
1111 if (edid[0x12] == 1) {
1112 if (edid[0x13] > 4) {
1113 printk(BIOS_SPEW, "Claims > 1.4, assuming 1.4 conformance\n");
1114 edid[0x13] = 4;
1115 }
1116 switch (edid[0x13]) {
1117 case 4:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001118 c.claims_one_point_four = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001119 case 3:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001120 c.claims_one_point_three = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001121 case 2:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001122 c.claims_one_point_two = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001123 default:
1124 break;
1125 }
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001126 c.claims_one_point_oh = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001127 }
1128
1129 /* display section */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001130 if (edid[0x14] & 0x80) {
1131 int conformance_mask;
1132 analog = 0;
1133 printk(BIOS_SPEW, "Digital display\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001134 if (c.claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001135 conformance_mask = 0;
1136 if ((edid[0x14] & 0x70) == 0x00)
1137 printk(BIOS_SPEW, "Color depth is undefined\n");
1138 else if ((edid[0x14] & 0x70) == 0x70)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001139 c.nonconformant_digital_display = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001140 else
1141 printk(BIOS_SPEW, "%d bits per primary color channel\n",
1142 ((edid[0x14] & 0x70) >> 3) + 4);
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001143 out->panel_bits_per_color = ((edid[0x14] & 0x70) >> 3) + 4;
1144 out->panel_bits_per_pixel = 3*out->panel_bits_per_color;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001145
1146 switch (edid[0x14] & 0x0f) {
1147 case 0x00: printk(BIOS_SPEW, "Digital interface is not defined\n"); break;
1148 case 0x01: printk(BIOS_SPEW, "DVI interface\n"); break;
1149 case 0x02: printk(BIOS_SPEW, "HDMI-a interface\n"); break;
1150 case 0x03: printk(BIOS_SPEW, "HDMI-b interface\n"); break;
1151 case 0x04: printk(BIOS_SPEW, "MDDI interface\n"); break;
1152 case 0x05: printk(BIOS_SPEW, "DisplayPort interface\n"); break;
1153 default:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001154 c.nonconformant_digital_display = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001155 }
David Hendricksa3b898a2015-08-02 18:07:48 -07001156 extra_info.type = edid[0x14] & 0x0f;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001157 } else if (c.claims_one_point_two) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001158 conformance_mask = 0x7E;
1159 if (edid[0x14] & 0x01) {
1160 printk(BIOS_SPEW, "DFP 1.x compatible TMDS\n");
1161 }
1162 } else
1163 conformance_mask = 0x7F;
1164
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001165 if (!c.nonconformant_digital_display)
1166 c.nonconformant_digital_display = edid[0x14] & conformance_mask;
David Hendricksa3b898a2015-08-02 18:07:48 -07001167 extra_info.nonconformant = c.nonconformant_digital_display;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001168 } else {
1169 analog = 1;
1170 int voltage = (edid[0x14] & 0x60) >> 5;
1171 int sync = (edid[0x14] & 0x0F);
David Hendricksa3b898a2015-08-02 18:07:48 -07001172 extra_info.voltage = voltage;
1173 extra_info.sync = sync;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001174
1175 printk(BIOS_SPEW, "Analog display, Input voltage level: %s V\n",
1176 voltage == 3 ? "0.7/0.7" :
1177 voltage == 2 ? "1.0/0.4" :
1178 voltage == 1 ? "0.714/0.286" :
1179 "0.7/0.3");
1180
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001181 if (c.claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001182 if (edid[0x14] & 0x10)
1183 printk(BIOS_SPEW, "Blank-to-black setup/pedestal\n");
1184 else
1185 printk(BIOS_SPEW, "Blank level equals black level\n");
1186 } else if (edid[0x14] & 0x10) {
1187 /*
1188 * XXX this is just the X text. 1.3 says "if set, display expects
1189 * a blank-to-black setup or pedestal per appropriate Signal
1190 * Level Standard". Whatever _that_ means.
1191 */
1192 printk(BIOS_SPEW, "Configurable signal levels\n");
1193 }
1194
1195 printk(BIOS_SPEW, "Sync: %s%s%s%s\n", sync & 0x08 ? "Separate " : "",
1196 sync & 0x04 ? "Composite " : "",
1197 sync & 0x02 ? "SyncOnGreen " : "",
1198 sync & 0x01 ? "Serration " : "");
1199 }
1200
1201
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001202 if (edid[0x15] && edid[0x16]) {
1203 printk(BIOS_SPEW, "Maximum image size: %d cm x %d cm\n",
1204 edid[0x15], edid[0x16]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001205 } else if (c.claims_one_point_four && (edid[0x15] || edid[0x16])) {
Patrick Georgibe71ee5d2014-12-15 22:52:14 +01001206 if (edid[0x15]) { /* edid[0x15] != 0 && edid[0x16] == 0 */
1207 unsigned int ratio = 100000/(edid[0x15] + 99);
1208 printk(BIOS_SPEW, "Aspect ratio is %u.%03u (landscape)\n",
1209 ratio / 1000, ratio % 1000);
Patrick Georgibe71ee5d2014-12-15 22:52:14 +01001210 } else { /* edid[0x15] == 0 && edid[0x16] != 0 */
1211 unsigned int ratio = 100000/(edid[0x16] + 99);
1212 printk(BIOS_SPEW, "Aspect ratio is %u.%03u (portrait)\n",
1213 ratio / 1000, ratio % 1000);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001214 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001215 } else {
1216 /* Either or both can be zero for 1.3 and before */
1217 printk(BIOS_SPEW, "Image size is variable\n");
1218 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001219
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001220 if (edid[0x17] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001221 if (c.claims_one_point_four)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001222 printk(BIOS_SPEW, "Gamma is defined in an extension block\n");
1223 else
1224 /* XXX Technically 1.3 doesn't say this... */
1225 printk(BIOS_SPEW, "Gamma: 1.0\n");
1226 } else printk(BIOS_SPEW, "Gamma: %d%%\n", ((edid[0x17] + 100)));
1227 printk(BIOS_SPEW, "Check DPMS levels\n");
1228 if (edid[0x18] & 0xE0) {
1229 printk(BIOS_SPEW, "DPMS levels:");
1230 if (edid[0x18] & 0x80) printk(BIOS_SPEW, " Standby");
1231 if (edid[0x18] & 0x40) printk(BIOS_SPEW, " Suspend");
1232 if (edid[0x18] & 0x20) printk(BIOS_SPEW, " Off");
1233 printk(BIOS_SPEW, "\n");
1234 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001235
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001236 /* FIXME: this is from 1.4 spec, check earlier */
1237 if (analog) {
1238 switch (edid[0x18] & 0x18) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001239 case 0x00: printk(BIOS_SPEW, "Monochrome or grayscale display\n"); break;
1240 case 0x08: printk(BIOS_SPEW, "RGB color display\n"); break;
1241 case 0x10: printk(BIOS_SPEW, "Non-RGB color display\n"); break;
1242 case 0x18: printk(BIOS_SPEW, "Undefined display color type\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001243 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001244 } else {
1245 printk(BIOS_SPEW, "Supported color formats: RGB 4:4:4");
1246 if (edid[0x18] & 0x10)
1247 printk(BIOS_SPEW, ", YCrCb 4:4:4");
1248 if (edid[0x18] & 0x08)
1249 printk(BIOS_SPEW, ", YCrCb 4:2:2");
1250 printk(BIOS_SPEW, "\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001251 }
1252
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001253 if (edid[0x18] & 0x04)
1254 printk(BIOS_SPEW, "Default (sRGB) color space is primary color space\n");
1255 if (edid[0x18] & 0x02) {
1256 printk(BIOS_SPEW, "First detailed timing is preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001257 c.has_preferred_timing = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001258 }
1259 if (edid[0x18] & 0x01)
1260 printk(BIOS_SPEW, "Supports GTF timings within operating range\n");
1261
1262 /* XXX color section */
1263
1264 printk(BIOS_SPEW, "Established timings supported:\n");
1265 /* it's not yet clear we want all this stuff in the edid struct.
1266 * Let's wait.
1267 */
1268 for (i = 0; i < 17; i++) {
1269 if (edid[0x23 + i / 8] & (1 << (7 - i % 8))) {
1270 printk(BIOS_SPEW, " %dx%d@%dHz\n", established_timings[i].x,
1271 established_timings[i].y, established_timings[i].refresh);
David Hendrickse2054102015-08-07 18:41:37 -07001272
Douglas Anderson9fa07602015-10-28 10:19:52 -07001273 for (j = 0; j < NUM_KNOWN_MODES; j++) {
1274 if (known_modes[j].ha == established_timings[i].x &&
1275 known_modes[j].va == established_timings[i].y &&
1276 known_modes[j].refresh == established_timings[i].refresh)
David Hendrickse2054102015-08-07 18:41:37 -07001277 out->mode_is_supported[j] = 1;
Douglas Anderson9fa07602015-10-28 10:19:52 -07001278 }
David Hendrickse2054102015-08-07 18:41:37 -07001279 }
1280
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001281 }
1282
1283 printk(BIOS_SPEW, "Standard timings supported:\n");
1284 for (i = 0; i < 8; i++) {
1285 uint8_t b1 = edid[0x26 + i * 2], b2 = edid[0x26 + i * 2 + 1];
1286 unsigned int x, y = 0, refresh;
1287
1288 if (b1 == 0x01 && b2 == 0x01)
1289 continue;
1290
1291 if (b1 == 0) {
1292 printk(BIOS_SPEW, "non-conformant standard timing (0 horiz)\n");
1293 continue;
1294 }
1295 x = (b1 + 31) * 8;
1296 switch ((b2 >> 6) & 0x3) {
1297 case 0x00:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001298 if (c.claims_one_point_three)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001299 y = x * 10 / 16;
1300 else
1301 y = x;
1302 break;
1303 case 0x01:
1304 y = x * 3 / 4;
1305 break;
1306 case 0x02:
1307 y = x * 4 / 5;
1308 break;
1309 case 0x03:
1310 y = x * 9 / 16;
1311 break;
1312 }
1313 refresh = 60 + (b2 & 0x3f);
1314
1315 printk(BIOS_SPEW, " %dx%d@%dHz\n", x, y, refresh);
David Hendrickse2054102015-08-07 18:41:37 -07001316 for (j = 0; j < NUM_KNOWN_MODES; j++) {
1317 if (known_modes[j].ha == x && known_modes[j].va == y &&
1318 known_modes[j].refresh == refresh)
1319 out->mode_is_supported[j] = 1;
1320 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001321 }
1322
1323 /* detailed timings */
1324 printk(BIOS_SPEW, "Detailed timings\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001325 for (i = 0; i < 4; i++) {
1326 c.has_valid_detailed_blocks &= detailed_block(
1327 out, edid + 0x36 + i * 18, 0, &c);
1328 if (i == 0 && c.has_preferred_timing && !c.did_detailed_timing)
1329 {
1330 /* not really accurate... */
1331 c.has_preferred_timing = 0;
1332 }
1333 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001334
1335 /* check this, 1.4 verification guide says otherwise */
1336 if (edid[0x7e]) {
1337 printk(BIOS_SPEW, "Has %d extension blocks\n", edid[0x7e]);
1338 /* 2 is impossible because of the block map */
1339 if (edid[0x7e] != 2)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001340 c.has_valid_extension_count = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001341 } else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001342 c.has_valid_extension_count = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001343 }
1344
1345 printk(BIOS_SPEW, "Checksum\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001346 c.has_valid_checksum = do_checksum(edid);
Hung-Te Lin79445812014-04-03 18:35:58 +08001347
1348 /* EDID v2.0 has a larger blob (256 bytes) and may have some problem in
1349 * the extension parsing loop below. Since v2.0 was quickly deprecated
1350 * by v1.3 and we are unlikely to use any EDID 2.0 panels, we ignore
1351 * that case now and can fix it when we need to use a real 2.0 panel.
1352 */
1353 for(i = 128; i < size; i += 128)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001354 c.nonconformant_extension +=
1355 parse_extension(out, &edid[i], &c);
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001356
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001357 if (c.claims_one_point_four) {
1358 if (c.nonconformant_digital_display ||
1359 !c.has_valid_string_termination ||
1360 !c.has_valid_descriptor_pad ||
1361 !c.has_preferred_timing)
1362 c.conformant = 0;
1363 if (!c.conformant)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001364 printk(BIOS_ERR, "EDID block does NOT conform to EDID 1.4!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001365 if (c.nonconformant_digital_display)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001366 printk(BIOS_ERR, "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001367 c.nonconformant_digital_display);
1368 if (!c.has_valid_string_termination)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001369 printk(BIOS_ERR, "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001370 if (!c.has_valid_descriptor_pad)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001371 printk(BIOS_ERR, "\tInvalid descriptor block padding\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001372 if (!c.has_preferred_timing)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001373 printk(BIOS_ERR, "\tMissing preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001374 } else if (c.claims_one_point_three) {
1375 if (c.nonconformant_digital_display ||
1376 !c.has_valid_string_termination ||
1377 !c.has_valid_descriptor_pad ||
1378 !c.has_preferred_timing) {
1379 c.conformant = 0;
Hung-Te Lin076c3172014-04-03 21:13:11 +08001380 }
1381 /**
1382 * According to E-EDID (EDIDv1.3), has_name_descriptor and
1383 * has_range_descriptor are both required. These fields are
1384 * optional in v1.4. However some v1.3 panels (Ex, B133XTN01.3)
1385 * don't have them. As a workaround, we only print warning
1386 * messages.
1387 */
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001388 if (!c.conformant)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001389 printk(BIOS_ERR, "EDID block does NOT conform to EDID 1.3!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001390 else if (!c.has_name_descriptor || !c.has_range_descriptor)
Hung-Te Lin076c3172014-04-03 21:13:11 +08001391 printk(BIOS_WARNING, "WARNING: EDID block does NOT "
1392 "fully conform to EDID 1.3.\n");
1393
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001394 if (c.nonconformant_digital_display)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001395 printk(BIOS_ERR, "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001396 c.nonconformant_digital_display);
1397 if (!c.has_name_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001398 printk(BIOS_ERR, "\tMissing name descriptor\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001399 if (!c.has_preferred_timing)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001400 printk(BIOS_ERR, "\tMissing preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001401 if (!c.has_range_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001402 printk(BIOS_ERR, "\tMissing monitor ranges\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001403 if (!c.has_valid_descriptor_pad) /* Might be more than just 1.3 */
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001404 printk(BIOS_ERR, "\tInvalid descriptor block padding\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001405 if (!c.has_valid_string_termination) /* Likewise */
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001406 printk(BIOS_ERR, "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001407 } else if (c.claims_one_point_two) {
1408 if (c.nonconformant_digital_display ||
1409 !c.has_valid_string_termination)
1410 c.conformant = 0;
1411 if (!c.conformant)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001412 printk(BIOS_ERR, "EDID block does NOT conform to EDID 1.2!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001413 if (c.nonconformant_digital_display)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001414 printk(BIOS_ERR, "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001415 c.nonconformant_digital_display);
1416 if (!c.has_valid_string_termination)
Hung-Te Lin2536c1a2014-04-03 19:21:03 +08001417 printk(BIOS_ERR, "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001418 } else if (c.claims_one_point_oh) {
1419 if (c.seen_non_detailed_descriptor)
1420 c.conformant = 0;
1421 if (!c.conformant)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001422 printk(BIOS_ERR, "EDID block does NOT conform to EDID 1.0!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001423 if (c.seen_non_detailed_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001424 printk(BIOS_ERR, "\tHas descriptor blocks other than detailed timings\n");
1425 }
1426
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001427 if (c.nonconformant_extension ||
1428 !c.has_valid_checksum ||
1429 !c.has_valid_cvt ||
1430 !c.has_valid_year ||
1431 !c.has_valid_week ||
1432 !c.has_valid_detailed_blocks ||
1433 !c.has_valid_dummy_block ||
1434 !c.has_valid_extension_count ||
1435 !c.has_valid_descriptor_ordering ||
1436 !c.has_valid_range_descriptor ||
1437 !c.manufacturer_name_well_formed) {
1438 c.conformant = 0;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001439 printk(BIOS_ERR, "EDID block does not conform at all!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001440 if (c.nonconformant_extension)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001441 printk(BIOS_ERR, "\tHas %d nonconformant extension block(s)\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001442 c.nonconformant_extension);
1443 if (!c.has_valid_checksum)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001444 printk(BIOS_ERR, "\tBlock has broken checksum\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001445 if (!c.has_valid_cvt)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001446 printk(BIOS_ERR, "\tBroken 3-byte CVT blocks\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001447 if (!c.has_valid_year)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001448 printk(BIOS_ERR, "\tBad year of manufacture\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001449 if (!c.has_valid_week)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001450 printk(BIOS_ERR, "\tBad week of manufacture\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001451 if (!c.has_valid_detailed_blocks)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001452 printk(BIOS_ERR, "\tDetailed blocks filled with garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001453 if (!c.has_valid_dummy_block)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001454 printk(BIOS_ERR, "\tDummy block filled with garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001455 if (!c.has_valid_extension_count)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001456 printk(BIOS_ERR, "\tImpossible extension block count\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001457 if (!c.manufacturer_name_well_formed)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001458 printk(BIOS_ERR, "\tManufacturer name field contains garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001459 if (!c.has_valid_descriptor_ordering)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001460 printk(BIOS_ERR, "\tInvalid detailed timing descriptor ordering\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001461 if (!c.has_valid_range_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001462 printk(BIOS_ERR, "\tRange descriptor contains garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001463 if (!c.has_valid_max_dotclock)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001464 printk(BIOS_ERR, "\tEDID 1.4 block does not set max dotclock\n");
1465 }
1466
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001467 if (c.warning_excessive_dotclock_correction)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001468 printk(BIOS_ERR,
1469 "Warning: CVT block corrects dotclock by more than 9.75MHz\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001470 if (c.warning_zero_preferred_refresh)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001471 printk(BIOS_ERR,
1472 "Warning: CVT block does not set preferred refresh rate\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001473 return !c.conformant;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001474}
1475
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001476/*
1477 * Notes on panel extensions: (TODO, implement me in the code)
1478 *
1479 * EPI: http://www.epi-standard.org/fileadmin/spec/EPI_Specification1.0.pdf
1480 * at offset 0x6c (fourth detailed block): (all other bits reserved)
1481 * 0x6c: 00 00 00 0e 00
1482 * 0x71: bit 6-5: data color mapping (00 conventional/fpdi/vesa, 01 openldi)
1483 * bit 4-3: pixels per clock (00 1, 01 2, 10 4, 11 reserved)
1484 * bit 2-0: bits per pixel (000 18, 001 24, 010 30, else reserved)
1485 * 0x72: bit 5: FPSCLK polarity (0 normal 1 inverted)
1486 * bit 4: DE polarity (0 high active 1 low active)
1487 * bit 3-0: interface (0000 LVDS TFT
1488 * 0001 mono STN 4/8bit
1489 * 0010 color STN 8/16 bit
1490 * 0011 18 bit tft
1491 * 0100 24 bit tft
1492 * 0101 tmds
1493 * else reserved)
1494 * 0x73: bit 1: horizontal display mode (0 normal 1 right/left reverse)
1495 * bit 0: vertical display mode (0 normal 1 up/down reverse)
1496 * 0x74: bit 7-4: total poweroff seq delay (0000 vga controller default
1497 * else time in 10ms (10ms to 150ms))
1498 * bit 3-0: total poweron seq delay (as above)
1499 * 0x75: contrast power on/off seq delay, same as 0x74
1500 * 0x76: bit 7: backlight control enable (1 means this field is valid)
1501 * bit 6: backlight enabled at boot (0 on 1 off)
1502 * bit 5-0: backlight brightness control steps (0..63)
1503 * 0x77: bit 7: contrast control, same bit pattern as 0x76 except bit 6 resvd
1504 * 0x78 - 0x7c: reserved
1505 * 0x7d: bit 7-4: EPI descriptor major version (1)
1506 * bit 3-0: EPI descriptor minor version (0)
1507 *
1508 * ----
1509 *
1510 * SPWG: http://www.spwg.org/spwg_spec_version3.8_3-14-2007.pdf
1511 *
1512 * Since these are "dummy" blocks, terminate with 0a 20 20 20 ... as usual
1513 *
1514 * detailed descriptor 3:
1515 * 0x5a - 0x5e: 00 00 00 fe 00
1516 * 0x5f - 0x63: PC maker part number
1517 * 0x64: LCD supplier revision #
1518 * 0x65 - 0x6b: manufacturer part number
1519 *
1520 * detailed descriptor 4:
1521 * 0x6c - 0x70: 00 00 00 fe 00
1522 * 0x71 - 0x78: smbus nits values (whut)
1523 * 0x79: number of lvds channels (1 or 2)
1524 * 0x7A: panel self test (1 if present)
1525 * and then dummy terminator
1526 *
1527 * SPWG also says something strange about the LSB of detailed descriptor 1:
1528 * "LSB is set to "1" if panel is DE-timing only. H/V can be ignored."
1529 */
Julius Werner69112192016-03-14 17:29:55 -07001530
1531/* Set the framebuffer bits-per-pixel, recalculating all dependent values. */
Julius Werner2b6db972016-04-06 12:50:40 -07001532void edid_set_framebuffer_bits_per_pixel(struct edid *edid, int fb_bpp,
1533 int row_byte_alignment)
Julius Werner69112192016-03-14 17:29:55 -07001534{
1535 /* Caller should pass a supported value, everything else is BUG(). */
1536 assert(fb_bpp == 32 || fb_bpp == 24 || fb_bpp == 16);
Julius Werner2b6db972016-04-06 12:50:40 -07001537 row_byte_alignment = max(row_byte_alignment, 1);
Julius Werner69112192016-03-14 17:29:55 -07001538
1539 edid->framebuffer_bits_per_pixel = fb_bpp;
1540 edid->bytes_per_line = ALIGN_UP(edid->mode.ha *
Julius Werner2b6db972016-04-06 12:50:40 -07001541 div_round_up(fb_bpp, 8), row_byte_alignment);
Julius Werner69112192016-03-14 17:29:55 -07001542 edid->x_resolution = edid->bytes_per_line / (fb_bpp / 8);
1543 edid->y_resolution = edid->mode.va;
1544}
1545
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001546/*
1547 * Take an edid, and create a framebuffer. Set vbe_valid to 1.
1548 */
1549
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001550void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr)
1551{
1552 edid_fb.physical_address = fb_addr;
Ronald G. Minnich4c5b1612013-06-28 14:33:30 -07001553 edid_fb.x_resolution = edid->x_resolution;
1554 edid_fb.y_resolution = edid->y_resolution;
1555 edid_fb.bytes_per_line = edid->bytes_per_line;
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001556 /* In the case of (e.g.) 24 framebuffer bits per pixel, the convention nowadays
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001557 * seems to be to round it up to the nearest reasonable
1558 * boundary, because otherwise the byte-packing is hideous.
1559 * So, for example, in RGB with no alpha, the bytes are still
1560 * packed into 32-bit words, the so-called 32bpp-no-alpha mode.
1561 * Or, in 5:6:5 mode, the bytes are also packed into 32-bit words,
1562 * and in 4:4:4 mode, they are packed into 16-bit words.
1563 * Good call on the hardware guys part.
1564 * It's not clear we're covering all cases here, but
1565 * I'm not sure with grahpics you ever can.
1566 */
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001567 edid_fb.bits_per_pixel = edid->framebuffer_bits_per_pixel;
Patrick Georgi8b12a282014-12-06 17:35:25 +01001568 edid_fb.reserved_mask_pos = 0;
1569 edid_fb.reserved_mask_size = 0;
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001570 switch(edid->framebuffer_bits_per_pixel){
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001571 case 32:
1572 case 24:
1573 /* packed into 4-byte words */
Patrick Georgi8b12a282014-12-06 17:35:25 +01001574 edid_fb.reserved_mask_pos = 24;
1575 edid_fb.reserved_mask_size = 8;
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001576 edid_fb.red_mask_pos = 16;
1577 edid_fb.red_mask_size = 8;
1578 edid_fb.green_mask_pos = 8;
1579 edid_fb.green_mask_size = 8;
1580 edid_fb.blue_mask_pos = 0;
1581 edid_fb.blue_mask_size = 8;
1582 break;
1583 case 16:
1584 /* packed into 2-byte words */
Ronald G. Minnichc0d5eb22013-08-01 11:38:05 -07001585 edid_fb.red_mask_pos = 11;
1586 edid_fb.red_mask_size = 5;
1587 edid_fb.green_mask_pos = 5;
1588 edid_fb.green_mask_size = 6;
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001589 edid_fb.blue_mask_pos = 0;
Ronald G. Minnichc0d5eb22013-08-01 11:38:05 -07001590 edid_fb.blue_mask_size = 5;
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001591 break;
1592 default:
1593 printk(BIOS_SPEW, "%s: unsupported BPP %d\n", __func__,
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001594 edid->framebuffer_bits_per_pixel);
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001595 return;
1596 }
1597
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001598 vbe_valid = 1;
1599}
1600
Timothy Pearsonc522fc82015-02-02 18:25:34 -06001601#if IS_ENABLED(CONFIG_NATIVE_VGA_INIT_USE_EDID)
Ronald G. Minnichb2893a012013-04-23 10:59:11 -07001602int vbe_mode_info_valid(void)
1603{
1604 return vbe_valid;
1605}
1606
1607void fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
1608{
1609 *framebuffer = edid_fb;
1610}
Timothy Pearsonc522fc82015-02-02 18:25:34 -06001611#endif