blob: c294a3f0553e21b31ee114227d7148cb3cd10edf [file] [log] [blame]
Patrick Georgi593124d2020-05-10 19:44:08 +02001/* SPDX-License-Identifier: MIT */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07002
3/* this is a pretty robust parser for EDID, and we're tasked with parsing
4 * an arbitrary panel. We will pass it a raw EDID block and a struct which
5 * it must fill in with values. The set of values we need is pretty limited
6 * at present.
7 */
8
Julius Werner69112192016-03-14 17:29:55 -07009#include <assert.h>
Elyes HAOUASba9b5042019-12-19 07:47:52 +010010#include <commonlib/helpers.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070011#include <console/console.h>
Joel Kitching393c71c2019-06-16 16:09:42 +080012#include <ctype.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070013#include <stdint.h>
14#include <string.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070015#include <edid.h>
Ronald G. Minnichb2893a012013-04-23 10:59:11 -070016#include <vbe.h>
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070017
Hung-Te Lin1c8ee212014-04-17 15:21:37 +080018struct edid_context {
19 int claims_one_point_oh;
20 int claims_one_point_two;
21 int claims_one_point_three;
22 int claims_one_point_four;
23 int nonconformant_digital_display;
24 int nonconformant_extension;
25 int did_detailed_timing;
26 int has_name_descriptor;
27 int has_range_descriptor;
28 int has_preferred_timing;
29 int has_valid_checksum;
30 int has_valid_cvt;
31 int has_valid_dummy_block;
32 int has_valid_week;
33 int has_valid_year;
34 int has_valid_detailed_blocks;
35 int has_valid_extension_count;
36 int has_valid_descriptor_ordering;
37 int has_valid_descriptor_pad;
38 int has_valid_range_descriptor;
39 int has_valid_max_dotclock;
40 int has_valid_string_termination;
41 int manufacturer_name_well_formed;
42 int seen_non_detailed_descriptor;
43 int warning_excessive_dotclock_correction;
44 int warning_zero_preferred_refresh;
Arthur Heymans8c5884e2017-04-30 08:28:05 +020045 enum edid_status conformant;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +080046};
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070047
David Hendricksa3b898a2015-08-02 18:07:48 -070048/* Stuff that isn't used anywhere but is nice to pretty-print while
49 we're decoding everything else. */
50static struct {
David Hendricksa3b898a2015-08-02 18:07:48 -070051 unsigned int model;
52 unsigned int serial;
53 unsigned int year;
54 unsigned int week;
55 unsigned int version[2];
56 unsigned int nonconformant;
57 unsigned int type;
58
59 unsigned int x_mm;
60 unsigned int y_mm;
61
62 unsigned int voltage;
63 unsigned int sync;
64
65 const char *syncmethod;
66 const char *range_class;
67 const char *stereo;
68} extra_info;
69
Douglas Andersonbca67fb2015-10-28 09:18:28 -070070static struct edid tmp_edid;
71
Hung-Te Lin6673e8e2019-08-13 12:06:27 +080072static int manufacturer_name(unsigned char *x, char *output)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070073{
Hung-Te Lin6673e8e2019-08-13 12:06:27 +080074 output[0] = ((x[0] & 0x7C) >> 2) + '@';
75 output[1] = ((x[0] & 0x03) << 3) + ((x[1] & 0xE0) >> 5) + '@';
76 output[2] = (x[1] & 0x1F) + '@';
77 output[3] = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070078
Hung-Te Lin6673e8e2019-08-13 12:06:27 +080079 if (isupper(output[0]) &&
80 isupper(output[1]) &&
81 isupper(output[2]))
82 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070083
Hung-Te Lin6673e8e2019-08-13 12:06:27 +080084 memset(output, 0, 4);
85 return 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070086}
87
88static int
Douglas Anderson14dd3702015-10-28 11:19:57 -070089detailed_cvt_descriptor(unsigned char *x, int first)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070090{
91 const unsigned char empty[3] = { 0, 0, 0 };
Lee Leahy36984d82017-03-10 17:56:44 -080092 static const char *names[] = { "50", "60", "75", "85" };
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -070093 int width = 0, height = 0;
94 int valid = 1;
95 int fifty = 0, sixty = 0, seventyfive = 0, eightyfive = 0, reduced = 0;
96
97 if (!first && !memcmp(x, empty, 3))
98 return valid;
99
100 height = x[0];
101 height |= (x[1] & 0xf0) << 4;
102 height++;
103 height *= 2;
104
105 switch (x[1] & 0x0c) {
106 case 0x00:
107 width = (height * 4) / 3; break;
108 case 0x04:
109 width = (height * 16) / 9; break;
110 case 0x08:
111 width = (height * 16) / 10; break;
112 case 0x0c:
113 width = (height * 15) / 9; break;
114 }
115
116 if (x[1] & 0x03)
117 valid = 0;
118 if (x[2] & 0x80)
119 valid = 0;
120 if (!(x[2] & 0x1f))
121 valid = 0;
122
123 fifty = (x[2] & 0x10);
124 sixty = (x[2] & 0x08);
125 seventyfive = (x[2] & 0x04);
126 eightyfive = (x[2] & 0x02);
127 reduced = (x[2] & 0x01);
128
129 if (!valid) {
130 printk(BIOS_SPEW, " (broken)\n");
131 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800132 printk(BIOS_SPEW,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200133 " %dx%d @ (%s%s%s%s%s) Hz (%s%s preferred)\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700134 width, height,
135 fifty ? "50 " : "",
136 sixty ? "60 " : "",
137 seventyfive ? "75 " : "",
138 eightyfive ? "85 " : "",
139 reduced ? "60RB " : "",
140 names[(x[2] & 0x60) >> 5],
141 (((x[2] & 0x60) == 0x20) && reduced) ? "RB" : "");
142 }
143
144 return valid;
145}
146
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800147/* extract a CP437 string from a detailed subblock, checking for termination (if
148 * less than len of bytes) with LF and padded with SP.
149 */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700150static char *
151extract_string(unsigned char *x, int *valid_termination, int len)
152{
Patrick Georgid840e2b2018-09-18 18:01:02 +0200153 static char ret[EDID_ASCII_STRING_LENGTH + 1];
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700154 int i, seen_newline = 0;
155
156 memset(ret, 0, sizeof(ret));
157
Elyes HAOUASba9b5042019-12-19 07:47:52 +0100158 for (i = 0; i < MIN(len, EDID_ASCII_STRING_LENGTH); i++) {
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800159 if (seen_newline) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700160 if (x[i] != 0x20) {
161 *valid_termination = 0;
162 return ret;
163 }
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800164 } else if (x[i] == 0x0a) {
165 seen_newline = 1;
166 } else {
167 /* normal characters */
168 ret[i] = x[i];
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700169 }
170 }
171
172 return ret;
173}
174
175/* 1 means valid data */
176static int
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700177detailed_block(struct edid *result_edid, unsigned char *x, int in_extension,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800178 struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700179{
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700180 struct edid *out = &tmp_edid;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700181 int i;
Angel Ponscc335c72018-10-02 11:58:28 +0200182
183 if (console_log_level(BIOS_SPEW)) {
184 printk(BIOS_SPEW, "Hex of detail: ");
185 for (i = 0; i < 18; i++)
186 printk(BIOS_SPEW, "%02x", x[i]);
187 printk(BIOS_SPEW, "\n");
188 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700189
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700190 /* Result might already have some valid fields like mode_is_supported */
191 *out = *result_edid;
192
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700193 if (x[0] == 0 && x[1] == 0) {
194 /* Monitor descriptor block, not detailed timing descriptor. */
195 if (x[2] != 0) {
196 /* 1.3, 3.10.3 */
Lee Leahy73402172017-03-10 15:23:24 -0800197 printk(BIOS_SPEW,
198 "Monitor descriptor block has byte 2 nonzero (0x%02x)\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700199 x[2]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800200 c->has_valid_descriptor_pad = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700201 }
202 if (x[3] != 0xfd && x[4] != 0x00) {
203 /* 1.3, 3.10.3 */
Lee Leahy73402172017-03-10 15:23:24 -0800204 printk(BIOS_SPEW,
205 "Monitor descriptor block has byte 4 nonzero (0x%02x)\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700206 x[4]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800207 c->has_valid_descriptor_pad = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700208 }
209
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800210 c->seen_non_detailed_descriptor = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700211 if (x[3] <= 0xF) {
212 /*
Lee Leahy73402172017-03-10 15:23:24 -0800213 * in principle we can decode these, if we know what
214 * they are.
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700215 * 0x0f seems to be common in laptop panels.
216 * 0x0e is used by EPI: http://www.epi-standard.org/
217 */
Lee Leahy73402172017-03-10 15:23:24 -0800218 printk(BIOS_SPEW,
219 "Manufacturer-specified data, tag %d\n", x[3]);
Hung-Te Linb2c10622014-04-03 19:59:37 +0800220 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700221 }
222 switch (x[3]) {
223 case 0x10:
224 printk(BIOS_SPEW, "Dummy block\n");
225 for (i = 5; i < 18; i++)
226 if (x[i] != 0x00)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800227 c->has_valid_dummy_block = 0;
Hung-Te Linb2c10622014-04-03 19:59:37 +0800228 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700229 case 0xF7:
230 /* TODO */
231 printk(BIOS_SPEW, "Established timings III\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800232 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700233 case 0xF8:
234 {
235 int valid_cvt = 1; /* just this block */
236 printk(BIOS_SPEW, "CVT 3-byte code descriptor:\n");
237 if (x[5] != 0x01) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800238 c->has_valid_cvt = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700239 return 0;
240 }
241 for (i = 0; i < 4; i++)
Lee Leahy73402172017-03-10 15:23:24 -0800242 valid_cvt &= detailed_cvt_descriptor(x + 6
243 + (i * 3), (i == 0));
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800244 c->has_valid_cvt &= valid_cvt;
Hung-Te Linb2c10622014-04-03 19:59:37 +0800245 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700246 }
247 case 0xF9:
248 /* TODO */
249 printk(BIOS_SPEW, "Color management data\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800250 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700251 case 0xFA:
252 /* TODO */
253 printk(BIOS_SPEW, "More standard timings\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800254 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700255 case 0xFB:
256 /* TODO */
257 printk(BIOS_SPEW, "Color point\n");
Hung-Te Linb2c10622014-04-03 19:59:37 +0800258 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700259 case 0xFC:
Hung-Te Lin2536c1a2014-04-03 19:21:03 +0800260 printk(BIOS_SPEW, "Monitor name: %s\n",
261 extract_string(x + 5,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800262 &c->has_valid_string_termination,
Patrick Georgid840e2b2018-09-18 18:01:02 +0200263 EDID_ASCII_STRING_LENGTH));
Jakub Czapiga43439f62020-10-23 15:54:46 +0200264 c->has_name_descriptor = 1;
Hung-Te Linb2c10622014-04-03 19:59:37 +0800265 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700266 case 0xFD:
267 {
268 int h_max_offset = 0, h_min_offset = 0;
269 int v_max_offset = 0, v_min_offset = 0;
270 int is_cvt = 0;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800271 c->has_range_descriptor = 1;
David Hendricksa3b898a2015-08-02 18:07:48 -0700272 extra_info.range_class = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700273 /*
274 * XXX todo: implement feature flags, vtd blocks
Lee Leahy73402172017-03-10 15:23:24 -0800275 * XXX check: ranges are well-formed; block termination
276 * if no vtd
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700277 */
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800278 if (c->claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700279 if (x[4] & 0x02) {
280 v_max_offset = 255;
Lee Leahy2f919ec2017-03-08 17:37:06 -0800281 if (x[4] & 0x01)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700282 v_min_offset = 255;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700283 }
284 if (x[4] & 0x04) {
285 h_max_offset = 255;
Lee Leahy2f919ec2017-03-08 17:37:06 -0800286 if (x[4] & 0x03)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700287 h_min_offset = 255;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700288 }
289 } else if (x[4]) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800290 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700291 }
292
293 /*
294 * despite the values, this is not a bitfield.
295 */
296 switch (x[10]) {
297 case 0x00: /* default gtf */
David Hendricksa3b898a2015-08-02 18:07:48 -0700298 extra_info.range_class = "GTF";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700299 break;
300 case 0x01: /* range limits only */
David Hendricksa3b898a2015-08-02 18:07:48 -0700301 extra_info.range_class = "bare limits";
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800302 if (!c->claims_one_point_four)
303 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700304 break;
305 case 0x02: /* secondary gtf curve */
David Hendricksa3b898a2015-08-02 18:07:48 -0700306 extra_info.range_class = "GTF with icing";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700307 break;
308 case 0x04: /* cvt */
David Hendricksa3b898a2015-08-02 18:07:48 -0700309 extra_info.range_class = "CVT";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700310 is_cvt = 1;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800311 if (!c->claims_one_point_four)
312 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700313 break;
314 default: /* invalid */
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800315 c->has_valid_range_descriptor = 0;
David Hendricksa3b898a2015-08-02 18:07:48 -0700316 extra_info.range_class = "invalid";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700317 break;
318 }
319
320 if (x[5] + v_min_offset > x[6] + v_max_offset)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800321 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700322 if (x[7] + h_min_offset > x[8] + h_max_offset)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800323 c->has_valid_range_descriptor = 0;
Lee Leahy73402172017-03-10 15:23:24 -0800324 printk(BIOS_SPEW,
325 "Monitor ranges (%s): %d-%dHz V, %d-%dkHz H",
David Hendricksa3b898a2015-08-02 18:07:48 -0700326 extra_info.range_class,
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700327 x[5] + v_min_offset, x[6] + v_max_offset,
328 x[7] + h_min_offset, x[8] + h_max_offset);
329 if (x[9])
Lee Leahy73402172017-03-10 15:23:24 -0800330 printk(BIOS_SPEW,
331 ", max dotclock %dMHz\n", x[9] * 10);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700332 else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800333 if (c->claims_one_point_four)
334 c->has_valid_max_dotclock = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700335 printk(BIOS_SPEW, "\n");
336 }
337
338 if (is_cvt) {
339 int max_h_pixels = 0;
340
Lee Leahy73402172017-03-10 15:23:24 -0800341 printk(BIOS_SPEW, "CVT version %d.%d\n",
342 x[11] & 0xf0 >> 4, x[11] & 0x0f);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700343
344 if (x[12] & 0xfc) {
345 int raw_offset = (x[12] & 0xfc) >> 2;
Lee Leahy73402172017-03-10 15:23:24 -0800346 printk(BIOS_SPEW,
347 "Real max dotclock: %dKHz\n",
348 (x[9] * 10000)
349 - (raw_offset * 250));
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700350 if (raw_offset >= 40)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800351 c->warning_excessive_dotclock_correction = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700352 }
353
354 max_h_pixels = x[12] & 0x03;
355 max_h_pixels <<= 8;
356 max_h_pixels |= x[13];
357 max_h_pixels *= 8;
358 if (max_h_pixels)
Lee Leahy73402172017-03-10 15:23:24 -0800359 printk(BIOS_SPEW,
360 "Max active pixels per line: %d\n",
361 max_h_pixels);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700362
Lee Leahy73402172017-03-10 15:23:24 -0800363 printk(BIOS_SPEW,
364 "Supported aspect ratios: %s %s %s %s %s\n",
365 x[14] & 0x80 ? "4:3" : "",
366 x[14] & 0x40 ? "16:9" : "",
367 x[14] & 0x20 ? "16:10" : "",
368 x[14] & 0x10 ? "5:4" : "",
369 x[14] & 0x08 ? "15:9" : "");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700370 if (x[14] & 0x07)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800371 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700372
373 printk(BIOS_SPEW, "Preferred aspect ratio: ");
Lee Leahy45fde702017-03-08 18:02:24 -0800374 switch ((x[15] & 0xe0) >> 5) {
Lee Leahyb6ee0f92017-03-09 13:35:26 -0800375 case 0x00:
376 printk(BIOS_SPEW, "4:3");
377 break;
378 case 0x01:
379 printk(BIOS_SPEW, "16:9");
380 break;
381 case 0x02:
382 printk(BIOS_SPEW, "16:10");
383 break;
384 case 0x03:
385 printk(BIOS_SPEW, "5:4");
386 break;
387 case 0x04:
388 printk(BIOS_SPEW, "15:9");
389 break;
390 default:
391 printk(BIOS_SPEW, "(broken)");
392 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700393 }
394 printk(BIOS_SPEW, "\n");
395
396 if (x[15] & 0x04)
Lee Leahy73402172017-03-10 15:23:24 -0800397 printk(BIOS_SPEW,
398 "Supports CVT standard blanking\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700399 if (x[15] & 0x10)
Lee Leahy73402172017-03-10 15:23:24 -0800400 printk(BIOS_SPEW,
401 "Supports CVT reduced blanking\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700402
403 if (x[15] & 0x07)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800404 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700405
406 if (x[16] & 0xf0) {
Lee Leahy73402172017-03-10 15:23:24 -0800407 printk(BIOS_SPEW,
408 "Supported display scaling:\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700409 if (x[16] & 0x80)
Lee Leahy73402172017-03-10 15:23:24 -0800410 printk(BIOS_SPEW,
411 " Horizontal shrink\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700412 if (x[16] & 0x40)
Lee Leahy73402172017-03-10 15:23:24 -0800413 printk(BIOS_SPEW,
414 " Horizontal stretch\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700415 if (x[16] & 0x20)
Lee Leahy73402172017-03-10 15:23:24 -0800416 printk(BIOS_SPEW,
417 " Vertical shrink\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700418 if (x[16] & 0x10)
Lee Leahy73402172017-03-10 15:23:24 -0800419 printk(BIOS_SPEW,
420 " Vertical stretch\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700421 }
422
423 if (x[16] & 0x0f)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800424 c->has_valid_range_descriptor = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700425
426 if (x[17])
Lee Leahy73402172017-03-10 15:23:24 -0800427 printk(BIOS_SPEW,
428 "Preferred vertical refresh: %d Hz\n",
429 x[17]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700430 else
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800431 c->warning_zero_preferred_refresh = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700432 }
433
434 /*
Lee Leahy73402172017-03-10 15:23:24 -0800435 * Slightly weird to return a global, but I've never
Martin Roth0949e732021-10-01 14:28:22 -0600436 * seen any EDID block with two range descriptors, so
Lee Leahy73402172017-03-10 15:23:24 -0800437 * it's harmless.
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700438 */
Hung-Te Linb2c10622014-04-03 19:59:37 +0800439 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700440 }
441 case 0xFE:
442 /*
Lee Leahy73402172017-03-10 15:23:24 -0800443 * TODO: Two of these in a row, in the third and fourth
444 * slots, seems to be specified by SPWG:
445 * http://www.spwg.org/
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700446 */
Arthur Heymansdbe81612017-04-29 14:00:47 +0200447 strcpy(result_edid->ascii_string, extract_string(x + 5,
448 &c->has_valid_string_termination,
449 EDID_ASCII_STRING_LENGTH));
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700450 printk(BIOS_SPEW, "ASCII string: %s\n",
Arthur Heymansdbe81612017-04-29 14:00:47 +0200451 result_edid->ascii_string);
Hung-Te Linb2c10622014-04-03 19:59:37 +0800452 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700453 case 0xFF:
454 printk(BIOS_SPEW, "Serial number: %s\n",
Lee Leahy73402172017-03-10 15:23:24 -0800455 extract_string(x + 5,
Patrick Georgid840e2b2018-09-18 18:01:02 +0200456 &c->has_valid_string_termination,
457 EDID_ASCII_STRING_LENGTH));
Hung-Te Linb2c10622014-04-03 19:59:37 +0800458 return 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700459 default:
Lee Leahy73402172017-03-10 15:23:24 -0800460 printk(BIOS_SPEW,
461 "Unknown monitor description type %d\n",
462 x[3]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700463 return 0;
464 }
465 }
466
Lee Leahy2f919ec2017-03-08 17:37:06 -0800467 if (c->seen_non_detailed_descriptor && !in_extension)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800468 c->has_valid_descriptor_ordering = 0;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700469
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700470 /* Edid contains pixel clock in terms of 10KHz */
471 out->mode.pixel_clock = (x[0] + (x[1] << 8)) * 10;
472 /*
473 LVDS supports following pixel clocks
474 25000...112000 kHz: single channel
475 80000...224000 kHz: dual channel
476 There is some overlap in theoretically supported
477 pixel clock between single-channel and dual-channel.
478 In practice with current panels all panels
479 <= 75200 kHz: single channel
480 >= 97750 kHz: dual channel
481 We have no samples between those values, so put a
482 threshold at 95000 kHz. If we get anything over
483 95000 kHz with single channel, we can make this
Martin Roth0949e732021-10-01 14:28:22 -0600484 more sophisticated but it's currently not needed.
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700485 */
486 out->mode.lvds_dual_channel = (out->mode.pixel_clock >= 95000);
487 extra_info.x_mm = (x[12] + ((x[14] & 0xF0) << 4));
488 extra_info.y_mm = (x[13] + ((x[14] & 0x0F) << 8));
489 out->mode.ha = (x[2] + ((x[4] & 0xF0) << 4));
490 out->mode.hbl = (x[3] + ((x[4] & 0x0F) << 8));
491 out->mode.hso = (x[8] + ((x[11] & 0xC0) << 2));
492 out->mode.hspw = (x[9] + ((x[11] & 0x30) << 4));
493 out->mode.hborder = x[15];
494 out->mode.va = (x[5] + ((x[7] & 0xF0) << 4));
495 out->mode.vbl = (x[6] + ((x[7] & 0x0F) << 8));
496 out->mode.vso = ((x[10] >> 4) + ((x[11] & 0x0C) << 2));
497 out->mode.vspw = ((x[10] & 0x0F) + ((x[11] & 0x03) << 4));
498 out->mode.vborder = x[16];
Furquan Shaikhd0a81f72013-07-30 12:41:08 -0700499
Julius Werner69112192016-03-14 17:29:55 -0700500 /* We assume rgb888 (32 bits per pixel) framebuffers by default.
Julius Werner2b6db972016-04-06 12:50:40 -0700501 * Chipsets that want something else will need to override this with
502 * another call to edid_set_framebuffer_bits_per_pixel(). As a cheap
503 * heuristic, assume that X86 systems require a 64-byte row alignment
504 * (since that seems to be true for most Intel chipsets). */
Kyösti Mälkki7336f972020-06-08 06:05:03 +0300505 if (ENV_X86)
Julius Werner2b6db972016-04-06 12:50:40 -0700506 edid_set_framebuffer_bits_per_pixel(out, 32, 64);
507 else
508 edid_set_framebuffer_bits_per_pixel(out, 32, 0);
Julius Werner69112192016-03-14 17:29:55 -0700509
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700510 switch ((x[17] & 0x18) >> 3) {
511 case 0x00:
David Hendricksa3b898a2015-08-02 18:07:48 -0700512 extra_info.syncmethod = " analog composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700513 break;
514 case 0x01:
David Hendricksa3b898a2015-08-02 18:07:48 -0700515 extra_info.syncmethod = " bipolar analog composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700516 break;
517 case 0x02:
David Hendricksa3b898a2015-08-02 18:07:48 -0700518 extra_info.syncmethod = " digital composite";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700519 break;
520 case 0x03:
David Hendricksa3b898a2015-08-02 18:07:48 -0700521 extra_info.syncmethod = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700522 break;
523 }
David Hendricks7dbf9c62015-07-30 18:49:48 -0700524 out->mode.pvsync = (x[17] & (1 << 2)) ? '+' : '-';
525 out->mode.phsync = (x[17] & (1 << 1)) ? '+' : '-';
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700526 switch (x[17] & 0x61) {
527 case 0x20:
David Hendricksa3b898a2015-08-02 18:07:48 -0700528 extra_info.stereo = "field sequential L/R";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700529 break;
530 case 0x40:
David Hendricksa3b898a2015-08-02 18:07:48 -0700531 extra_info.stereo = "field sequential R/L";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700532 break;
533 case 0x21:
David Hendricksa3b898a2015-08-02 18:07:48 -0700534 extra_info.stereo = "interleaved right even";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700535 break;
536 case 0x41:
David Hendricksa3b898a2015-08-02 18:07:48 -0700537 extra_info.stereo = "interleaved left even";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700538 break;
539 case 0x60:
David Hendricksa3b898a2015-08-02 18:07:48 -0700540 extra_info.stereo = "four way interleaved";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700541 break;
542 case 0x61:
David Hendricksa3b898a2015-08-02 18:07:48 -0700543 extra_info.stereo = "side by side interleaved";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700544 break;
545 default:
David Hendricksa3b898a2015-08-02 18:07:48 -0700546 extra_info.stereo = "";
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700547 break;
548 }
549
Lee Leahy73402172017-03-10 15:23:24 -0800550 printk(BIOS_SPEW,
551 "Detailed mode (IN HEX): Clock %d KHz, %x mm x %x mm\n"
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700552 " %04x %04x %04x %04x hborder %x\n"
553 " %04x %04x %04x %04x vborder %x\n"
Paul Menzel433bf772016-11-29 21:02:04 +0100554 " %chsync %cvsync%s%s%s\n",
David Hendricks7dbf9c62015-07-30 18:49:48 -0700555 out->mode.pixel_clock,
David Hendricksa3b898a2015-08-02 18:07:48 -0700556 extra_info.x_mm,
557 extra_info.y_mm,
David Hendricks7dbf9c62015-07-30 18:49:48 -0700558 out->mode.ha, out->mode.ha + out->mode.hso,
559 out->mode.ha + out->mode.hso + out->mode.hspw,
560 out->mode.ha + out->mode.hbl, out->mode.hborder,
561 out->mode.va, out->mode.va + out->mode.vso,
562 out->mode.va + out->mode.vso + out->mode.vspw,
563 out->mode.va + out->mode.vbl, out->mode.vborder,
564 out->mode.phsync, out->mode.pvsync,
Lee Leahy35af5c42017-03-09 17:35:28 -0800565 extra_info.syncmethod, x[17] & 0x80 ? " interlaced" : "",
David Hendricks7dbf9c62015-07-30 18:49:48 -0700566 extra_info.stereo);
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700567
Lee Leahy35af5c42017-03-09 17:35:28 -0800568 if (!c->did_detailed_timing) {
Douglas Andersonbca67fb2015-10-28 09:18:28 -0700569 printk(BIOS_SPEW, "Did detailed timing\n");
570 c->did_detailed_timing = 1;
571 *result_edid = *out;
572 }
573
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700574 return 1;
575}
576
577static int
578do_checksum(unsigned char *x)
579{
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800580 int valid = 0;
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -0600581 printk(BIOS_SPEW, "Checksum: 0x%hhx", x[0x7f]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700582 {
583 unsigned char sum = 0;
584 int i;
585 for (i = 0; i < 128; i++)
586 sum += x[i];
587 if (sum) {
Lee Leahy73402172017-03-10 15:23:24 -0800588 printk(BIOS_SPEW, " (should be 0x%hhx)",
589 (unsigned char)(x[0x7f] - sum));
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700590 } else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800591 valid = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700592 printk(BIOS_SPEW, " (valid)");
593 }
594 }
595 printk(BIOS_SPEW, "\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800596 return valid;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700597}
598
599/* CEA extension */
600
601static const char *
602audio_format(unsigned char x)
603{
604 switch (x) {
605 case 0: return "RESERVED";
606 case 1: return "Linear PCM";
607 case 2: return "AC-3";
608 case 3: return "MPEG 1 (Layers 1 & 2)";
609 case 4: return "MPEG 1 Layer 3 (MP3)";
610 case 5: return "MPEG2 (multichannel)";
611 case 6: return "AAC";
612 case 7: return "DTS";
613 case 8: return "ATRAC";
614 case 9: return "One Bit Audio";
615 case 10: return "Dolby Digital+";
616 case 11: return "DTS-HD";
617 case 12: return "MAT (MLP)";
618 case 13: return "DST";
619 case 14: return "WMA Pro";
620 case 15: return "RESERVED";
621 }
622 return "BROKEN"; /* can't happen */
623}
624
625static void
626cea_audio_block(unsigned char *x)
627{
628 int i, format;
629 int length = x[0] & 0x1f;
630
631 if (length % 3) {
632 printk(BIOS_SPEW, "Broken CEA audio block length %d\n", length);
633 /* XXX non-conformant */
634 return;
635 }
636
637 for (i = 1; i < length; i += 3) {
638 format = (x[i] & 0x78) >> 3;
Lee Leahy73402172017-03-10 15:23:24 -0800639 printk(BIOS_SPEW, " %s, max channels %d\n",
640 audio_format(format), x[i] & 0x07);
641 printk(BIOS_SPEW,
642 " Supported sample rates (kHz):%s%s%s%s%s%s%s\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700643 (x[i+1] & 0x40) ? " 192" : "",
644 (x[i+1] & 0x20) ? " 176.4" : "",
645 (x[i+1] & 0x10) ? " 96" : "",
646 (x[i+1] & 0x08) ? " 88.2" : "",
647 (x[i+1] & 0x04) ? " 48" : "",
648 (x[i+1] & 0x02) ? " 44.1" : "",
649 (x[i+1] & 0x01) ? " 32" : "");
650 if (format == 1) {
Lee Leahy73402172017-03-10 15:23:24 -0800651 printk(BIOS_SPEW,
652 " Supported sample sizes (bits):%s%s%s\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700653 (x[2] & 0x04) ? " 24" : "",
654 (x[2] & 0x02) ? " 20" : "",
655 (x[2] & 0x01) ? " 16" : "");
656 } else if (format <= 8) {
Lee Leahy73402172017-03-10 15:23:24 -0800657 printk(BIOS_SPEW,
658 " Maximum bit rate: %d kHz\n", x[2] * 8);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700659 }
660 }
661}
662
663static void
664cea_video_block(unsigned char *x)
665{
666 int i;
667 int length = x[0] & 0x1f;
668
669 for (i = 1; i < length; i++)
Lee Leahy35af5c42017-03-09 17:35:28 -0800670 printk(BIOS_SPEW, " VIC %02d %s\n", x[i] & 0x7f,
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700671 x[i] & 0x80 ? "(native)" : "");
672}
673
674static void
675cea_hdmi_block(struct edid *out, unsigned char *x)
676{
677 int length = x[0] & 0x1f;
678
Yakir Yang85810cc2015-10-27 16:17:13 +0800679 out->hdmi_monitor_detected = 1;
680
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700681 printk(BIOS_SPEW, " (HDMI)\n");
682 printk(BIOS_SPEW,
683 " Source physical address %d.%d.%d.%d\n",
684 x[4] >> 4, x[4] & 0x0f, x[5] >> 4, x[5] & 0x0f);
685
686 if (length > 5) {
687 if (x[6] & 0x80)
688 printk(BIOS_SPEW, " Supports_AI\n");
689 if (x[6] & 0x40)
690 printk(BIOS_SPEW, " DC_48bit\n");
691 if (x[6] & 0x20)
692 printk(BIOS_SPEW, " DC_36bit\n");
693 if (x[6] & 0x10)
694 printk(BIOS_SPEW, " DC_30bit\n");
695 if (x[6] & 0x08)
696 printk(BIOS_SPEW, " DC_Y444\n");
697 /* two reserved */
698 if (x[6] & 0x01)
699 printk(BIOS_SPEW, " DVI_Dual\n");
700 }
701
702 if (length > 6)
703 printk(BIOS_SPEW, " Maximum TMDS clock: %dMHz\n", x[7] * 5);
704
705 /* XXX the walk here is really ugly, and needs to be length-checked */
706 if (length > 7) {
707 int b = 0;
708
709 if (x[8] & 0x80) {
710 printk(BIOS_SPEW, " Video latency: %d\n", x[9 + b]);
711 printk(BIOS_SPEW, " Audio latency: %d\n", x[10 + b]);
712 b += 2;
713 }
714
715 if (x[8] & 0x40) {
Lee Leahy73402172017-03-10 15:23:24 -0800716 printk(BIOS_SPEW,
717 " Interlaced video latency: %d\n", x[9 + b]);
718 printk(BIOS_SPEW,
719 " Interlaced audio latency: %d\n",
720 x[10 + b]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700721 b += 2;
722 }
723
724 if (x[8] & 0x20) {
725 int mask = 0, formats = 0;
726 int len_xx, len_3d;
727 printk(BIOS_SPEW, " Extended HDMI video details:\n");
728 if (x[9 + b] & 0x80)
729 printk(BIOS_SPEW, " 3D present\n");
730 if ((x[9 + b] & 0x60) == 0x20) {
Lee Leahy73402172017-03-10 15:23:24 -0800731 printk(BIOS_SPEW,
732 " All advertised VICs are 3D-capable\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700733 formats = 1;
734 }
735 if ((x[9 + b] & 0x60) == 0x40) {
Lee Leahy73402172017-03-10 15:23:24 -0800736 printk(BIOS_SPEW,
737 " 3D-capable-VIC mask present\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700738 formats = 1;
739 mask = 1;
740 }
741 switch (x[9 + b] & 0x18) {
Lee Leahyb6ee0f92017-03-09 13:35:26 -0800742 case 0x00:
743 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700744 case 0x08:
745 printk(BIOS_SPEW, " Base EDID image size is aspect ratio\n");
746 break;
747 case 0x10:
748 printk(BIOS_SPEW, " Base EDID image size is in units of 1cm\n");
749 break;
750 case 0x18:
751 printk(BIOS_SPEW, " Base EDID image size is in units of 5cm\n");
752 break;
753 }
754 len_xx = (x[10 + b] & 0xe0) >> 5;
755 len_3d = (x[10 + b] & 0x1f) >> 0;
756 b += 2;
757
758 if (len_xx) {
759 printk(BIOS_SPEW, " Skipping %d bytes that HDMI refuses to publicly"
760 " document\n", len_xx);
761 b += len_xx;
762 }
763
764 if (len_3d) {
765 if (formats) {
766 if (x[9 + b] & 0x01)
767 printk(BIOS_SPEW, " Side-by-side 3D supported\n");
768 if (x[10 + b] & 0x40)
769 printk(BIOS_SPEW, " Top-and-bottom 3D supported\n");
770 if (x[10 + b] & 0x01)
771 printk(BIOS_SPEW, " Frame-packing 3D supported\n");
772 b += 2;
773 }
774 if (mask) {
775 int i;
Lee Leahy73402172017-03-10 15:23:24 -0800776 printk(BIOS_SPEW,
777 " 3D VIC indices:");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700778 /* worst bit ordering ever */
779 for (i = 0; i < 8; i++)
780 if (x[10 + b] & (1 << i))
Lee Leahy73402172017-03-10 15:23:24 -0800781 printk(BIOS_SPEW,
782 " %d", i);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700783 for (i = 0; i < 8; i++)
784 if (x[9 + b] & (1 << i))
Lee Leahy73402172017-03-10 15:23:24 -0800785 printk(BIOS_SPEW,
786 " %d", i + 8);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700787 printk(BIOS_SPEW, "\n");
788 b += 2;
789 }
790
791 /*
792 * XXX list of nibbles:
793 * 2D_VIC_Order_X
794 * 3D_Structure_X
795 * (optionally: 3D_Detail_X and reserved)
796 */
797 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700798 }
Richard Spiegel2fdbe0c2018-08-07 08:43:22 -0700799 /* Tell static analysis we know index b is left unused. */
800 (void)b;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700801 }
802}
803
804static void
805cea_block(struct edid *out, unsigned char *x)
806{
807 unsigned int oui;
808
809 switch ((x[0] & 0xe0) >> 5) {
810 case 0x01:
811 printk(BIOS_SPEW, " Audio data block\n");
812 cea_audio_block(x);
813 break;
814 case 0x02:
815 printk(BIOS_SPEW, " Video data block\n");
816 cea_video_block(x);
817 break;
818 case 0x03:
819 /* yes really, endianness lols */
820 oui = (x[3] << 16) + (x[2] << 8) + x[1];
Lee Leahy73402172017-03-10 15:23:24 -0800821 printk(BIOS_SPEW, " Vendor-specific data block, OUI %06x",
822 oui);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700823 if (oui == 0x000c03)
824 cea_hdmi_block(out, x);
825 else
826 printk(BIOS_SPEW, "\n");
827 break;
828 case 0x04:
829 printk(BIOS_SPEW, " Speaker allocation data block\n");
830 break;
831 case 0x05:
832 printk(BIOS_SPEW, " VESA DTC data block\n");
833 break;
834 case 0x07:
835 printk(BIOS_SPEW, " Extended tag: ");
836 switch (x[1]) {
837 case 0x00:
838 printk(BIOS_SPEW, "video capability data block\n");
839 break;
840 case 0x01:
841 printk(BIOS_SPEW, "vendor-specific video data block\n");
842 break;
843 case 0x02:
Lee Leahy73402172017-03-10 15:23:24 -0800844 printk(BIOS_SPEW,
845 "VESA video display device information data block\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700846 break;
847 case 0x03:
848 printk(BIOS_SPEW, "VESA video data block\n");
849 break;
850 case 0x04:
851 printk(BIOS_SPEW, "HDMI video data block\n");
852 break;
853 case 0x05:
854 printk(BIOS_SPEW, "Colorimetry data block\n");
855 break;
856 case 0x10:
857 printk(BIOS_SPEW, "CEA miscellaneous audio fields\n");
858 break;
859 case 0x11:
860 printk(BIOS_SPEW, "Vendor-specific audio data block\n");
861 break;
862 case 0x12:
863 printk(BIOS_SPEW, "HDMI audio data block\n");
864 break;
865 default:
866 if (x[1] >= 6 && x[1] <= 15)
Lee Leahy73402172017-03-10 15:23:24 -0800867 printk(BIOS_SPEW,
868 "Reserved video block (%02x)\n", x[1]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700869 else if (x[1] >= 19 && x[1] <= 31)
Lee Leahy73402172017-03-10 15:23:24 -0800870 printk(BIOS_SPEW,
871 "Reserved audio block (%02x)\n", x[1]);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700872 else
873 printk(BIOS_SPEW, "Unknown (%02x)\n", x[1]);
874 break;
875 }
876 break;
877 default:
878 {
879 int tag = (*x & 0xe0) >> 5;
880 int length = *x & 0x1f;
881 printk(BIOS_SPEW,
Lee Leahy73402172017-03-10 15:23:24 -0800882 " Unknown tag %d, length %d (raw %02x)\n",
883 tag, length, *x);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700884 break;
885 }
886 }
887}
888
889static int
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800890parse_cea(struct edid *out, unsigned char *x, struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700891{
892 int ret = 0;
893 int version = x[1];
894 int offset = x[2];
895 unsigned char *detailed;
896
Lee Leahyb6ee0f92017-03-09 13:35:26 -0800897 if (version >= 1)
898 do {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700899 if (version == 1 && x[3] != 0)
900 ret = 1;
901
902 if (offset < 4)
903 break;
904
Lee Leahye20a3192017-03-09 16:21:34 -0800905 if (version < 3)
Lee Leahy73402172017-03-10 15:23:24 -0800906 printk(BIOS_SPEW,
907 "%d 8-byte timing descriptors\n",
908 (offset - 4) / 8);
Lee Leahye20a3192017-03-09 16:21:34 -0800909 else if (version == 3) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700910 int i;
Lee Leahy73402172017-03-10 15:23:24 -0800911 printk(BIOS_SPEW,
912 "%d bytes of CEA data\n", offset - 4);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800913 for (i = 4; i < offset; i += (x[i] & 0x1f) + 1)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700914 cea_block(out, x + i);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700915 }
916
917 if (version >= 2) {
918 if (x[3] & 0x80)
Lee Leahy73402172017-03-10 15:23:24 -0800919 printk(BIOS_SPEW,
920 "Underscans PC formats by default\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700921 if (x[3] & 0x40)
Lee Leahy73402172017-03-10 15:23:24 -0800922 printk(BIOS_SPEW,
923 "Basic audio support\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700924 if (x[3] & 0x20)
Lee Leahy73402172017-03-10 15:23:24 -0800925 printk(BIOS_SPEW,
926 "Supports YCbCr 4:4:4\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700927 if (x[3] & 0x10)
Lee Leahy73402172017-03-10 15:23:24 -0800928 printk(BIOS_SPEW,
929 "Supports YCbCr 4:2:2\n");
930 printk(BIOS_SPEW,
931 "%d native detailed modes\n",
932 x[3] & 0x0f);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700933 }
934
Lee Leahy73402172017-03-10 15:23:24 -0800935 for (detailed = x + offset; detailed + 18 < x + 127;
936 detailed += 18)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700937 if (detailed[0])
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800938 detailed_block(out, detailed, 1, c);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700939 } while (0);
940
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800941 c->has_valid_checksum &= do_checksum(x);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700942 return ret;
943}
944
945/* generic extension code */
946
947static void
948extension_version(struct edid *out, unsigned char *x)
949{
950 printk(BIOS_SPEW, "Extension version: %d\n", x[1]);
951}
952
953static int
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800954parse_extension(struct edid *out, unsigned char *x, struct edid_context *c)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700955{
956 int conformant_extension = 0;
957 printk(BIOS_SPEW, "\n");
958
Lee Leahy45fde702017-03-08 18:02:24 -0800959 switch (x[0]) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700960 case 0x02:
961 printk(BIOS_SPEW, "CEA extension block\n");
962 extension_version(out, x);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +0800963 conformant_extension = parse_cea(out, x, c);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700964 break;
Lee Leahyb6ee0f92017-03-09 13:35:26 -0800965 case 0x10:
966 printk(BIOS_SPEW, "VTB extension block\n");
967 break;
968 case 0x40:
969 printk(BIOS_SPEW, "DI extension block\n");
970 break;
971 case 0x50:
972 printk(BIOS_SPEW, "LS extension block\n");
973 break;
974 case 0x60:
975 printk(BIOS_SPEW, "DPVL extension block\n");
976 break;
977 case 0xF0:
978 printk(BIOS_SPEW, "Block map\n");
979 break;
980 case 0xFF:
981 printk(BIOS_SPEW, "Manufacturer-specific extension block\n");
Jacob Garbere447aec2019-03-27 17:23:42 -0600982 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -0700983 default:
984 printk(BIOS_SPEW, "Unknown extension block\n");
985 break;
986 }
987
988 printk(BIOS_SPEW, "\n");
989
990 return conformant_extension;
991}
992
993static const struct {
994 int x, y, refresh;
995} established_timings[] = {
996 /* 0x23 bit 7 - 0 */
997 {720, 400, 70},
998 {720, 400, 88},
999 {640, 480, 60},
1000 {640, 480, 67},
1001 {640, 480, 72},
1002 {640, 480, 75},
1003 {800, 600, 56},
1004 {800, 600, 60},
1005 /* 0x24 bit 7 - 0 */
1006 {800, 600, 72},
1007 {800, 600, 75},
1008 {832, 624, 75},
1009 {1280, 768, 87},
1010 {1024, 768, 60},
1011 {1024, 768, 70},
1012 {1024, 768, 75},
1013 {1280, 1024, 75},
1014 /* 0x25 bit 7*/
1015 {1152, 870, 75},
1016};
1017
1018static void print_subsection(const char *name, unsigned char *edid, int start,
1019 int end)
1020{
1021 int i;
1022
1023 printk(BIOS_SPEW, "%s:", name);
1024 for (i = strlen(name); i < 15; i++)
1025 printk(BIOS_SPEW, " ");
1026 for (i = start; i <= end; i++)
1027 printk(BIOS_SPEW, " %02x", edid[i]);
1028 printk(BIOS_SPEW, "\n");
1029}
1030
1031static void dump_breakdown(unsigned char *edid)
1032{
1033 printk(BIOS_SPEW, "Extracted contents:\n");
1034 print_subsection("header", edid, 0, 7);
1035 print_subsection("serial number", edid, 8, 17);
Lee Leahy35af5c42017-03-09 17:35:28 -08001036 print_subsection("version", edid, 18, 19);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001037 print_subsection("basic params", edid, 20, 24);
1038 print_subsection("chroma info", edid, 25, 34);
1039 print_subsection("established", edid, 35, 37);
1040 print_subsection("standard", edid, 38, 53);
1041 print_subsection("descriptor 1", edid, 54, 71);
1042 print_subsection("descriptor 2", edid, 72, 89);
1043 print_subsection("descriptor 3", edid, 90, 107);
1044 print_subsection("descriptor 4", edid, 108, 125);
1045 print_subsection("extensions", edid, 126, 126);
1046 print_subsection("checksum", edid, 127, 127);
1047 printk(BIOS_SPEW, "\n");
1048}
1049
1050/*
David Hendrickse2054102015-08-07 18:41:37 -07001051 * Lookup table of some well-known modes that can be useful in case the
1052 * auto-detected mode is unsuitable.
1053 * ha = hdisplay; va = vdisplay;
1054 * hbl = htotal - hdisplay; vbl = vtotal - vdisplay;
1055 * hso = hsync_start - hdsiplay; vso = vsync_start - vdisplay;
1056 * hspw = hsync_end - hsync_start; vspw = vsync_end - vsync_start;
1057 */
1058static struct edid_mode known_modes[NUM_KNOWN_MODES] = {
1059 [EDID_MODE_640x480_60Hz] = {
Douglas Anderson78e226cf2015-10-28 09:52:22 -07001060 .name = "640x480@60Hz", .pixel_clock = 25200, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001061 .ha = 640, .hbl = 160, .hso = 16, .hspw = 96,
David Hendrickse2054102015-08-07 18:41:37 -07001062 .va = 480, .vbl = 45, .vso = 10, .vspw = 2,
1063 .phsync = '-', .pvsync = '-' },
1064 [EDID_MODE_720x480_60Hz] = {
1065 .name = "720x480@60Hz", .pixel_clock = 27000, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001066 .ha = 720, .hbl = 138, .hso = 16, .hspw = 62,
David Hendrickse2054102015-08-07 18:41:37 -07001067 .va = 480, .vbl = 45, .vso = 9, .vspw = 6,
1068 .phsync = '-', .pvsync = '-' },
1069 [EDID_MODE_1280x720_60Hz] = {
1070 .name = "1280x720@60Hz", .pixel_clock = 74250, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001071 .ha = 1280, .hbl = 370, .hso = 110, .hspw = 40,
David Hendrickse2054102015-08-07 18:41:37 -07001072 .va = 720, .vbl = 30, .vso = 5, .vspw = 20,
1073 .phsync = '+', .pvsync = '+' },
1074 [EDID_MODE_1920x1080_60Hz] = {
1075 .name = "1920x1080@60Hz", .pixel_clock = 148500, .refresh = 60,
Yakir Yangbedbdc42015-08-18 04:18:09 -05001076 .ha = 1920, .hbl = 280, .hso = 88, .hspw = 44,
David Hendrickse2054102015-08-07 18:41:37 -07001077 .va = 1080, .vbl = 45, .vso = 4, .vspw = 5,
1078 .phsync = '+', .pvsync = '+' },
1079};
1080
1081int set_display_mode(struct edid *edid, enum edid_modes mode)
1082{
1083 if (mode == EDID_MODE_AUTO)
1084 return 0;
1085
1086 if (edid->mode_is_supported[mode]) {
1087 printk(BIOS_DEBUG, "Forcing mode %s\n", known_modes[mode].name);
1088 edid->mode = known_modes[mode];
1089 return 0;
1090 }
1091
1092 printk(BIOS_ERR, "Requested display mode not supported.\n");
1093 return -1;
1094}
1095
1096/*
Martin Roth0949e732021-10-01 14:28:22 -06001097 * Given a raw edid block, decode it into a form
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001098 * that other parts of coreboot can use -- mainly
1099 * graphics bringup functions. The raw block is
1100 * required to be 128 bytes long, per the standard,
1101 * but we have no way of checking this minimum length.
1102 * We accept what we are given.
1103 */
1104int decode_edid(unsigned char *edid, int size, struct edid *out)
1105{
David Hendrickse2054102015-08-07 18:41:37 -07001106 int analog, i, j;
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001107 struct edid_context c = {
1108 .has_valid_cvt = 1,
1109 .has_valid_dummy_block = 1,
1110 .has_valid_descriptor_ordering = 1,
Vince Hsu4213b972014-04-21 17:07:57 +08001111 .has_valid_detailed_blocks = 1,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001112 .has_valid_descriptor_pad = 1,
1113 .has_valid_range_descriptor = 1,
1114 .has_valid_max_dotclock = 1,
1115 .has_valid_string_termination = 1,
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001116 .conformant = EDID_CONFORMANT,
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001117 };
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001118
Jacob Garbercd23f7f2019-03-25 19:53:45 -06001119 if (!edid) {
Jacob Garber18553292019-03-27 12:02:38 -06001120 printk(BIOS_ERR, "No EDID found\n");
Jacob Garbercd23f7f2019-03-25 19:53:45 -06001121 return EDID_ABSENT;
1122 }
1123
1124 dump_breakdown(edid);
1125
1126 if (memcmp(edid, "\x00\xFF\xFF\xFF\xFF\xFF\xFF\x00", 8)) {
Jacob Garber18553292019-03-27 12:02:38 -06001127 printk(BIOS_ERR, "No header found\n");
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001128 return EDID_ABSENT;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001129 }
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001130
Paul Menzel1ced4e62020-02-15 13:12:04 +01001131 memset(out, 0, sizeof(*out));
1132
Hung-Te Lin6673e8e2019-08-13 12:06:27 +08001133 if (manufacturer_name(edid + 0x08, out->manufacturer_name))
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001134 c.manufacturer_name_well_formed = 1;
1135
David Hendricksa3b898a2015-08-02 18:07:48 -07001136 extra_info.model = (unsigned short)(edid[0x0A] + (edid[0x0B] << 8));
1137 extra_info.serial = (unsigned int)(edid[0x0C] + (edid[0x0D] << 8)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001138 + (edid[0x0E] << 16) + (edid[0x0F] << 24));
1139
1140 printk(BIOS_SPEW, "Manufacturer: %s Model %x Serial Number %u\n",
Hung-Te Lin6673e8e2019-08-13 12:06:27 +08001141 out->manufacturer_name,
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001142 (unsigned short)(edid[0x0A] + (edid[0x0B] << 8)),
1143 (unsigned int)(edid[0x0C] + (edid[0x0D] << 8)
1144 + (edid[0x0E] << 16) + (edid[0x0F] << 24)));
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001145 /* XXX need manufacturer ID table */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001146
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001147 if (edid[0x10] < 55 || edid[0x10] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001148 c.has_valid_week = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001149 if (edid[0x11] > 0x0f) {
1150 if (edid[0x10] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001151 c.has_valid_year = 1;
Lee Leahy73402172017-03-10 15:23:24 -08001152 printk(BIOS_SPEW,
1153 "Made week %hhd of model year %hhd\n",
1154 edid[0x10], edid[0x11]);
David Hendricksa3b898a2015-08-02 18:07:48 -07001155 extra_info.week = edid[0x10];
1156 extra_info.year = edid[0x11];
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001157 } else {
Lee Leahy73402172017-03-10 15:23:24 -08001158 /* we know it's at least 2013, when this code
1159 * was written
1160 */
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001161 if (edid[0x11] + 90 <= 2013) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001162 c.has_valid_year = 1;
Lee Leahy73402172017-03-10 15:23:24 -08001163 printk(BIOS_SPEW,
1164 "Made week %hhd of %d\n",
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001165 edid[0x10], edid[0x11] + 1990);
David Hendricksa3b898a2015-08-02 18:07:48 -07001166 extra_info.week = edid[0x10];
1167 extra_info.year = edid[0x11] + 1990;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001168 }
1169 }
1170 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001171 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001172
Alexandru Gagniuc9d0ae592014-12-10 16:44:44 -06001173 printk(BIOS_SPEW, "EDID version: %hhd.%hhd\n", edid[0x12], edid[0x13]);
David Hendricksa3b898a2015-08-02 18:07:48 -07001174 extra_info.version[0] = edid[0x12];
1175 extra_info.version[1] = edid[0x13];
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001176
1177 if (edid[0x12] == 1) {
1178 if (edid[0x13] > 4) {
Lee Leahy73402172017-03-10 15:23:24 -08001179 printk(BIOS_SPEW,
1180 "Claims > 1.4, assuming 1.4 conformance\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001181 edid[0x13] = 4;
1182 }
1183 switch (edid[0x13]) {
1184 case 4:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001185 c.claims_one_point_four = 1;
Arthur Heymansfff20212021-03-15 14:56:16 +01001186 __fallthrough;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001187 case 3:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001188 c.claims_one_point_three = 1;
Arthur Heymansfff20212021-03-15 14:56:16 +01001189 __fallthrough;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001190 case 2:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001191 c.claims_one_point_two = 1;
Arthur Heymansfff20212021-03-15 14:56:16 +01001192 __fallthrough;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001193 default:
Jacob Garber4c33a3a2019-07-12 10:34:06 -06001194 c.claims_one_point_oh = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001195 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001196 }
1197
1198 /* display section */
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001199 if (edid[0x14] & 0x80) {
1200 int conformance_mask;
1201 analog = 0;
1202 printk(BIOS_SPEW, "Digital display\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001203 if (c.claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001204 conformance_mask = 0;
1205 if ((edid[0x14] & 0x70) == 0x00)
1206 printk(BIOS_SPEW, "Color depth is undefined\n");
1207 else if ((edid[0x14] & 0x70) == 0x70)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001208 c.nonconformant_digital_display = 1;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001209 else
Lee Leahy73402172017-03-10 15:23:24 -08001210 printk(BIOS_SPEW,
1211 "%d bits per primary color channel\n",
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001212 ((edid[0x14] & 0x70) >> 3) + 4);
Lee Leahy73402172017-03-10 15:23:24 -08001213 out->panel_bits_per_color = ((edid[0x14] & 0x70) >> 3)
1214 + 4;
Ronald G. Minnich9518b562013-09-19 16:45:22 -07001215 out->panel_bits_per_pixel = 3*out->panel_bits_per_color;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001216
1217 switch (edid[0x14] & 0x0f) {
Lee Leahyb6ee0f92017-03-09 13:35:26 -08001218 case 0x00:
Lee Leahy73402172017-03-10 15:23:24 -08001219 printk(BIOS_SPEW,
1220 "Digital interface is not defined\n");
Lee Leahyb6ee0f92017-03-09 13:35:26 -08001221 break;
1222 case 0x01:
1223 printk(BIOS_SPEW, "DVI interface\n");
1224 break;
1225 case 0x02:
1226 printk(BIOS_SPEW, "HDMI-a interface\n");
1227 break;
1228 case 0x03:
1229 printk(BIOS_SPEW, "HDMI-b interface\n");
1230 break;
1231 case 0x04:
1232 printk(BIOS_SPEW, "MDDI interface\n");
1233 break;
1234 case 0x05:
1235 printk(BIOS_SPEW, "DisplayPort interface\n");
1236 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001237 default:
Lee Leahyb6ee0f92017-03-09 13:35:26 -08001238 c.nonconformant_digital_display = 1;
1239 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001240 }
David Hendricksa3b898a2015-08-02 18:07:48 -07001241 extra_info.type = edid[0x14] & 0x0f;
Lee Leahye20a3192017-03-09 16:21:34 -08001242 } else if (c.claims_one_point_two) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001243 conformance_mask = 0x7E;
Lee Leahy2f919ec2017-03-08 17:37:06 -08001244 if (edid[0x14] & 0x01)
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001245 printk(BIOS_SPEW, "DFP 1.x compatible TMDS\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001246 } else
1247 conformance_mask = 0x7F;
1248
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001249 if (!c.nonconformant_digital_display)
Lee Leahy73402172017-03-10 15:23:24 -08001250 c.nonconformant_digital_display = edid[0x14]
1251 & conformance_mask;
David Hendricksa3b898a2015-08-02 18:07:48 -07001252 extra_info.nonconformant = c.nonconformant_digital_display;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001253 } else {
1254 analog = 1;
1255 int voltage = (edid[0x14] & 0x60) >> 5;
1256 int sync = (edid[0x14] & 0x0F);
David Hendricksa3b898a2015-08-02 18:07:48 -07001257 extra_info.voltage = voltage;
1258 extra_info.sync = sync;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001259
1260 printk(BIOS_SPEW, "Analog display, Input voltage level: %s V\n",
1261 voltage == 3 ? "0.7/0.7" :
1262 voltage == 2 ? "1.0/0.4" :
1263 voltage == 1 ? "0.714/0.286" :
1264 "0.7/0.3");
1265
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001266 if (c.claims_one_point_four) {
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001267 if (edid[0x14] & 0x10)
Lee Leahy73402172017-03-10 15:23:24 -08001268 printk(BIOS_SPEW,
1269 "Blank-to-black setup/pedestal\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001270 else
Lee Leahy73402172017-03-10 15:23:24 -08001271 printk(BIOS_SPEW,
1272 "Blank level equals black level\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001273 } else if (edid[0x14] & 0x10) {
1274 /*
Lee Leahy73402172017-03-10 15:23:24 -08001275 * XXX this is just the X text. 1.3 says "if set,
1276 * display expects a blank-to-black setup or pedestal
1277 * per appropriate Signal Level Standard". Whatever
1278 * _that_ means.
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001279 */
1280 printk(BIOS_SPEW, "Configurable signal levels\n");
1281 }
1282
Lee Leahy73402172017-03-10 15:23:24 -08001283 printk(BIOS_SPEW, "Sync: %s%s%s%s\n",
1284 sync & 0x08 ? "Separate " : "",
1285 sync & 0x04 ? "Composite " : "",
1286 sync & 0x02 ? "SyncOnGreen " : "",
1287 sync & 0x01 ? "Serration " : "");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001288 }
1289
1290
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001291 if (edid[0x15] && edid[0x16]) {
1292 printk(BIOS_SPEW, "Maximum image size: %d cm x %d cm\n",
1293 edid[0x15], edid[0x16]);
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001294 } else if (c.claims_one_point_four && (edid[0x15] || edid[0x16])) {
Patrick Georgibe71ee5d2014-12-15 22:52:14 +01001295 if (edid[0x15]) { /* edid[0x15] != 0 && edid[0x16] == 0 */
1296 unsigned int ratio = 100000/(edid[0x15] + 99);
Lee Leahy73402172017-03-10 15:23:24 -08001297 printk(BIOS_SPEW,
1298 "Aspect ratio is %u.%03u (landscape)\n",
1299 ratio / 1000, ratio % 1000);
Patrick Georgibe71ee5d2014-12-15 22:52:14 +01001300 } else { /* edid[0x15] == 0 && edid[0x16] != 0 */
1301 unsigned int ratio = 100000/(edid[0x16] + 99);
Lee Leahy73402172017-03-10 15:23:24 -08001302 printk(BIOS_SPEW,
1303 "Aspect ratio is %u.%03u (portrait)\n",
1304 ratio / 1000, ratio % 1000);
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001305 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001306 } else {
1307 /* Either or both can be zero for 1.3 and before */
1308 printk(BIOS_SPEW, "Image size is variable\n");
1309 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001310
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001311 if (edid[0x17] == 0xff) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001312 if (c.claims_one_point_four)
Lee Leahy73402172017-03-10 15:23:24 -08001313 printk(BIOS_SPEW,
1314 "Gamma is defined in an extension block\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001315 else
1316 /* XXX Technically 1.3 doesn't say this... */
1317 printk(BIOS_SPEW, "Gamma: 1.0\n");
Lee Leahyb6ee0f92017-03-09 13:35:26 -08001318 } else
1319 printk(BIOS_SPEW, "Gamma: %d%%\n", ((edid[0x17] + 100)));
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001320 printk(BIOS_SPEW, "Check DPMS levels\n");
1321 if (edid[0x18] & 0xE0) {
1322 printk(BIOS_SPEW, "DPMS levels:");
Lee Leahyb6ee0f92017-03-09 13:35:26 -08001323 if (edid[0x18] & 0x80)
1324 printk(BIOS_SPEW, " Standby");
1325 if (edid[0x18] & 0x40)
1326 printk(BIOS_SPEW, " Suspend");
1327 if (edid[0x18] & 0x20)
1328 printk(BIOS_SPEW, " Off");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001329 printk(BIOS_SPEW, "\n");
1330 }
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001331
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001332 /* FIXME: this is from 1.4 spec, check earlier */
1333 if (analog) {
1334 switch (edid[0x18] & 0x18) {
Lee Leahye20a3192017-03-09 16:21:34 -08001335 case 0x00:
1336 printk(BIOS_SPEW, "Monochrome or grayscale display\n");
1337 break;
1338 case 0x08:
1339 printk(BIOS_SPEW, "RGB color display\n");
1340 break;
1341 case 0x10:
1342 printk(BIOS_SPEW, "Non-RGB color display\n");
1343 break;
1344 case 0x18:
1345 printk(BIOS_SPEW, "Undefined display color type\n");
1346 break;
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001347 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001348 } else {
1349 printk(BIOS_SPEW, "Supported color formats: RGB 4:4:4");
1350 if (edid[0x18] & 0x10)
1351 printk(BIOS_SPEW, ", YCrCb 4:4:4");
1352 if (edid[0x18] & 0x08)
1353 printk(BIOS_SPEW, ", YCrCb 4:2:2");
1354 printk(BIOS_SPEW, "\n");
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001355 }
1356
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001357 if (edid[0x18] & 0x04)
Lee Leahy73402172017-03-10 15:23:24 -08001358 printk(BIOS_SPEW,
1359 "Default (sRGB) color space is primary color space\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001360 if (edid[0x18] & 0x02) {
Lee Leahy73402172017-03-10 15:23:24 -08001361 printk(BIOS_SPEW,
1362 "First detailed timing is preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001363 c.has_preferred_timing = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001364 }
1365 if (edid[0x18] & 0x01)
Lee Leahy73402172017-03-10 15:23:24 -08001366 printk(BIOS_SPEW,
1367 "Supports GTF timings within operating range\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001368
1369 /* XXX color section */
1370
1371 printk(BIOS_SPEW, "Established timings supported:\n");
1372 /* it's not yet clear we want all this stuff in the edid struct.
1373 * Let's wait.
1374 */
1375 for (i = 0; i < 17; i++) {
1376 if (edid[0x23 + i / 8] & (1 << (7 - i % 8))) {
Lee Leahy73402172017-03-10 15:23:24 -08001377 printk(BIOS_SPEW, " %dx%d@%dHz\n",
1378 established_timings[i].x,
1379 established_timings[i].y,
1380 established_timings[i].refresh);
David Hendrickse2054102015-08-07 18:41:37 -07001381
Douglas Anderson9fa07602015-10-28 10:19:52 -07001382 for (j = 0; j < NUM_KNOWN_MODES; j++) {
Lee Leahy73402172017-03-10 15:23:24 -08001383 if (known_modes[j].ha ==
1384 established_timings[i].x
1385 && known_modes[j].va ==
1386 established_timings[i].y
1387 && known_modes[j].refresh ==
1388 established_timings[i].refresh)
David Hendrickse2054102015-08-07 18:41:37 -07001389 out->mode_is_supported[j] = 1;
Douglas Anderson9fa07602015-10-28 10:19:52 -07001390 }
David Hendrickse2054102015-08-07 18:41:37 -07001391 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001392 }
1393
1394 printk(BIOS_SPEW, "Standard timings supported:\n");
1395 for (i = 0; i < 8; i++) {
1396 uint8_t b1 = edid[0x26 + i * 2], b2 = edid[0x26 + i * 2 + 1];
1397 unsigned int x, y = 0, refresh;
1398
1399 if (b1 == 0x01 && b2 == 0x01)
1400 continue;
1401
1402 if (b1 == 0) {
Lee Leahy73402172017-03-10 15:23:24 -08001403 printk(BIOS_SPEW,
1404 "non-conformant standard timing (0 horiz)\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001405 continue;
1406 }
1407 x = (b1 + 31) * 8;
1408 switch ((b2 >> 6) & 0x3) {
1409 case 0x00:
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001410 if (c.claims_one_point_three)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001411 y = x * 10 / 16;
1412 else
1413 y = x;
1414 break;
1415 case 0x01:
1416 y = x * 3 / 4;
1417 break;
1418 case 0x02:
1419 y = x * 4 / 5;
1420 break;
1421 case 0x03:
1422 y = x * 9 / 16;
1423 break;
1424 }
1425 refresh = 60 + (b2 & 0x3f);
1426
1427 printk(BIOS_SPEW, " %dx%d@%dHz\n", x, y, refresh);
David Hendrickse2054102015-08-07 18:41:37 -07001428 for (j = 0; j < NUM_KNOWN_MODES; j++) {
1429 if (known_modes[j].ha == x && known_modes[j].va == y &&
1430 known_modes[j].refresh == refresh)
1431 out->mode_is_supported[j] = 1;
1432 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001433 }
1434
1435 /* detailed timings */
1436 printk(BIOS_SPEW, "Detailed timings\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001437 for (i = 0; i < 4; i++) {
1438 c.has_valid_detailed_blocks &= detailed_block(
1439 out, edid + 0x36 + i * 18, 0, &c);
Lee Leahy342f8d62017-03-10 15:31:56 -08001440 if (i == 0 && c.has_preferred_timing
1441 && !c.did_detailed_timing) {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001442 /* not really accurate... */
1443 c.has_preferred_timing = 0;
1444 }
1445 }
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001446
1447 /* check this, 1.4 verification guide says otherwise */
1448 if (edid[0x7e]) {
1449 printk(BIOS_SPEW, "Has %d extension blocks\n", edid[0x7e]);
1450 /* 2 is impossible because of the block map */
1451 if (edid[0x7e] != 2)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001452 c.has_valid_extension_count = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001453 } else {
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001454 c.has_valid_extension_count = 1;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001455 }
1456
1457 printk(BIOS_SPEW, "Checksum\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001458 c.has_valid_checksum = do_checksum(edid);
Hung-Te Lin79445812014-04-03 18:35:58 +08001459
1460 /* EDID v2.0 has a larger blob (256 bytes) and may have some problem in
1461 * the extension parsing loop below. Since v2.0 was quickly deprecated
1462 * by v1.3 and we are unlikely to use any EDID 2.0 panels, we ignore
1463 * that case now and can fix it when we need to use a real 2.0 panel.
1464 */
Lee Leahy45fde702017-03-08 18:02:24 -08001465 for (i = 128; i < size; i += 128)
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001466 c.nonconformant_extension +=
1467 parse_extension(out, &edid[i], &c);
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001468
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001469 if (c.claims_one_point_four) {
1470 if (c.nonconformant_digital_display ||
1471 !c.has_valid_string_termination ||
1472 !c.has_valid_descriptor_pad ||
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001473 !c.has_preferred_timing) {
1474 c.conformant = EDID_NOT_CONFORMANT;
Lee Leahy73402172017-03-10 15:23:24 -08001475 printk(BIOS_ERR,
1476 "EDID block does NOT conform to EDID 1.4!\n");
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001477 }
1478
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001479 if (c.nonconformant_digital_display)
Lee Leahy73402172017-03-10 15:23:24 -08001480 printk(BIOS_ERR,
1481 "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001482 c.nonconformant_digital_display);
1483 if (!c.has_valid_string_termination)
Lee Leahy73402172017-03-10 15:23:24 -08001484 printk(BIOS_ERR,
1485 "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001486 if (!c.has_valid_descriptor_pad)
Lee Leahy73402172017-03-10 15:23:24 -08001487 printk(BIOS_ERR,
1488 "\tInvalid descriptor block padding\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001489 if (!c.has_preferred_timing)
Hung-Te Lin08f6c802014-04-03 21:13:11 +08001490 printk(BIOS_ERR, "\tMissing preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001491 } else if (c.claims_one_point_three) {
1492 if (c.nonconformant_digital_display ||
1493 !c.has_valid_string_termination ||
1494 !c.has_valid_descriptor_pad ||
1495 !c.has_preferred_timing) {
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001496 c.conformant = EDID_NOT_CONFORMANT;
Hung-Te Lin076c3172014-04-03 21:13:11 +08001497 }
1498 /**
1499 * According to E-EDID (EDIDv1.3), has_name_descriptor and
1500 * has_range_descriptor are both required. These fields are
1501 * optional in v1.4. However some v1.3 panels (Ex, B133XTN01.3)
1502 * don't have them. As a workaround, we only print warning
1503 * messages.
1504 */
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001505 if (c.conformant == EDID_NOT_CONFORMANT)
Lee Leahy73402172017-03-10 15:23:24 -08001506 printk(BIOS_ERR,
1507 "EDID block does NOT conform to EDID 1.3!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001508 else if (!c.has_name_descriptor || !c.has_range_descriptor)
Julius Wernere9665952022-01-21 17:06:20 -08001509 printk(BIOS_WARNING, "EDID block does NOT "
Hung-Te Lin076c3172014-04-03 21:13:11 +08001510 "fully conform to EDID 1.3.\n");
1511
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001512 if (c.nonconformant_digital_display)
Lee Leahy73402172017-03-10 15:23:24 -08001513 printk(BIOS_ERR,
1514 "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001515 c.nonconformant_digital_display);
1516 if (!c.has_name_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001517 printk(BIOS_ERR, "\tMissing name descriptor\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001518 if (!c.has_preferred_timing)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001519 printk(BIOS_ERR, "\tMissing preferred timing\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001520 if (!c.has_range_descriptor)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001521 printk(BIOS_ERR, "\tMissing monitor ranges\n");
Lee Leahy73402172017-03-10 15:23:24 -08001522 /* Might be more than just 1.3 */
1523 if (!c.has_valid_descriptor_pad)
1524 printk(BIOS_ERR,
1525 "\tInvalid descriptor block padding\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001526 if (!c.has_valid_string_termination) /* Likewise */
Lee Leahy73402172017-03-10 15:23:24 -08001527 printk(BIOS_ERR,
1528 "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001529 } else if (c.claims_one_point_two) {
1530 if (c.nonconformant_digital_display ||
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001531 !c.has_valid_string_termination) {
1532 c.conformant = EDID_NOT_CONFORMANT;
Lee Leahy73402172017-03-10 15:23:24 -08001533 printk(BIOS_ERR,
1534 "EDID block does NOT conform to EDID 1.2!\n");
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001535 }
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001536 if (c.nonconformant_digital_display)
Lee Leahy73402172017-03-10 15:23:24 -08001537 printk(BIOS_ERR,
1538 "\tDigital display field contains garbage: %x\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001539 c.nonconformant_digital_display);
1540 if (!c.has_valid_string_termination)
Lee Leahy73402172017-03-10 15:23:24 -08001541 printk(BIOS_ERR,
1542 "\tDetailed block string not properly terminated\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001543 } else if (c.claims_one_point_oh) {
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001544 if (c.seen_non_detailed_descriptor) {
1545 c.conformant = EDID_NOT_CONFORMANT;
Lee Leahy73402172017-03-10 15:23:24 -08001546 printk(BIOS_ERR,
1547 "EDID block does NOT conform to EDID 1.0!\n");
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001548 }
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001549 if (c.seen_non_detailed_descriptor)
Lee Leahy73402172017-03-10 15:23:24 -08001550 printk(BIOS_ERR,
1551 "\tHas descriptor blocks other than detailed timings\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001552 }
1553
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001554 if (c.nonconformant_extension ||
1555 !c.has_valid_checksum ||
1556 !c.has_valid_cvt ||
1557 !c.has_valid_year ||
1558 !c.has_valid_week ||
1559 !c.has_valid_detailed_blocks ||
1560 !c.has_valid_dummy_block ||
1561 !c.has_valid_extension_count ||
1562 !c.has_valid_descriptor_ordering ||
1563 !c.has_valid_range_descriptor ||
1564 !c.manufacturer_name_well_formed) {
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001565 c.conformant = EDID_NOT_CONFORMANT;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001566 printk(BIOS_ERR, "EDID block does not conform at all!\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001567 if (c.nonconformant_extension)
Lee Leahy73402172017-03-10 15:23:24 -08001568 printk(BIOS_ERR,
1569 "\tHas %d nonconformant extension block(s)\n",
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001570 c.nonconformant_extension);
1571 if (!c.has_valid_checksum)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001572 printk(BIOS_ERR, "\tBlock has broken checksum\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001573 if (!c.has_valid_cvt)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001574 printk(BIOS_ERR, "\tBroken 3-byte CVT blocks\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001575 if (!c.has_valid_year)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001576 printk(BIOS_ERR, "\tBad year of manufacture\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001577 if (!c.has_valid_week)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001578 printk(BIOS_ERR, "\tBad week of manufacture\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001579 if (!c.has_valid_detailed_blocks)
Lee Leahy73402172017-03-10 15:23:24 -08001580 printk(BIOS_ERR,
1581 "\tDetailed blocks filled with garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001582 if (!c.has_valid_dummy_block)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001583 printk(BIOS_ERR, "\tDummy block filled with garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001584 if (!c.has_valid_extension_count)
Lee Leahy73402172017-03-10 15:23:24 -08001585 printk(BIOS_ERR,
1586 "\tImpossible extension block count\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001587 if (!c.manufacturer_name_well_formed)
Lee Leahy73402172017-03-10 15:23:24 -08001588 printk(BIOS_ERR,
1589 "\tManufacturer name field contains garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001590 if (!c.has_valid_descriptor_ordering)
Lee Leahy73402172017-03-10 15:23:24 -08001591 printk(BIOS_ERR,
1592 "\tInvalid detailed timing descriptor ordering\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001593 if (!c.has_valid_range_descriptor)
Lee Leahy73402172017-03-10 15:23:24 -08001594 printk(BIOS_ERR,
1595 "\tRange descriptor contains garbage\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001596 if (!c.has_valid_max_dotclock)
Lee Leahy73402172017-03-10 15:23:24 -08001597 printk(BIOS_ERR,
1598 "\tEDID 1.4 block does not set max dotclock\n");
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001599 }
1600
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001601 if (c.warning_excessive_dotclock_correction)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001602 printk(BIOS_ERR,
1603 "Warning: CVT block corrects dotclock by more than 9.75MHz\n");
Hung-Te Lin1c8ee212014-04-17 15:21:37 +08001604 if (c.warning_zero_preferred_refresh)
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001605 printk(BIOS_ERR,
1606 "Warning: CVT block does not set preferred refresh rate\n");
Arthur Heymans8c5884e2017-04-30 08:28:05 +02001607 return c.conformant;
Hung-Te Linfc0d2442014-04-03 18:33:01 +08001608}
1609
Ronald G. Minnichb3b72f32013-03-13 14:35:01 -07001610/*
1611 * Notes on panel extensions: (TODO, implement me in the code)
1612 *
1613 * EPI: http://www.epi-standard.org/fileadmin/spec/EPI_Specification1.0.pdf
1614 * at offset 0x6c (fourth detailed block): (all other bits reserved)
1615 * 0x6c: 00 00 00 0e 00
1616 * 0x71: bit 6-5: data color mapping (00 conventional/fpdi/vesa, 01 openldi)
1617 * bit 4-3: pixels per clock (00 1, 01 2, 10 4, 11 reserved)
1618 * bit 2-0: bits per pixel (000 18, 001 24, 010 30, else reserved)
1619 * 0x72: bit 5: FPSCLK polarity (0 normal 1 inverted)
1620 * bit 4: DE polarity (0 high active 1 low active)
1621 * bit 3-0: interface (0000 LVDS TFT
1622 * 0001 mono STN 4/8bit
1623 * 0010 color STN 8/16 bit
1624 * 0011 18 bit tft
1625 * 0100 24 bit tft
1626 * 0101 tmds
1627 * else reserved)
1628 * 0x73: bit 1: horizontal display mode (0 normal 1 right/left reverse)
1629 * bit 0: vertical display mode (0 normal 1 up/down reverse)
1630 * 0x74: bit 7-4: total poweroff seq delay (0000 vga controller default
1631 * else time in 10ms (10ms to 150ms))
1632 * bit 3-0: total poweron seq delay (as above)
1633 * 0x75: contrast power on/off seq delay, same as 0x74
1634 * 0x76: bit 7: backlight control enable (1 means this field is valid)
1635 * bit 6: backlight enabled at boot (0 on 1 off)
1636 * bit 5-0: backlight brightness control steps (0..63)
1637 * 0x77: bit 7: contrast control, same bit pattern as 0x76 except bit 6 resvd
1638 * 0x78 - 0x7c: reserved
1639 * 0x7d: bit 7-4: EPI descriptor major version (1)
1640 * bit 3-0: EPI descriptor minor version (0)
1641 *
1642 * ----
1643 *
1644 * SPWG: http://www.spwg.org/spwg_spec_version3.8_3-14-2007.pdf
1645 *
1646 * Since these are "dummy" blocks, terminate with 0a 20 20 20 ... as usual
1647 *
1648 * detailed descriptor 3:
1649 * 0x5a - 0x5e: 00 00 00 fe 00
1650 * 0x5f - 0x63: PC maker part number
1651 * 0x64: LCD supplier revision #
1652 * 0x65 - 0x6b: manufacturer part number
1653 *
1654 * detailed descriptor 4:
1655 * 0x6c - 0x70: 00 00 00 fe 00
1656 * 0x71 - 0x78: smbus nits values (whut)
1657 * 0x79: number of lvds channels (1 or 2)
1658 * 0x7A: panel self test (1 if present)
1659 * and then dummy terminator
1660 *
1661 * SPWG also says something strange about the LSB of detailed descriptor 1:
1662 * "LSB is set to "1" if panel is DE-timing only. H/V can be ignored."
1663 */
Julius Werner69112192016-03-14 17:29:55 -07001664
1665/* Set the framebuffer bits-per-pixel, recalculating all dependent values. */
Julius Werner2b6db972016-04-06 12:50:40 -07001666void edid_set_framebuffer_bits_per_pixel(struct edid *edid, int fb_bpp,
1667 int row_byte_alignment)
Julius Werner69112192016-03-14 17:29:55 -07001668{
1669 /* Caller should pass a supported value, everything else is BUG(). */
1670 assert(fb_bpp == 32 || fb_bpp == 24 || fb_bpp == 16);
Elyes HAOUASba9b5042019-12-19 07:47:52 +01001671 row_byte_alignment = MAX(row_byte_alignment, 1);
Julius Werner69112192016-03-14 17:29:55 -07001672
1673 edid->framebuffer_bits_per_pixel = fb_bpp;
1674 edid->bytes_per_line = ALIGN_UP(edid->mode.ha *
Elyes HAOUAS6df3b642018-11-26 22:53:49 +01001675 DIV_ROUND_UP(fb_bpp, 8), row_byte_alignment);
Julius Werner69112192016-03-14 17:29:55 -07001676 edid->x_resolution = edid->bytes_per_line / (fb_bpp / 8);
1677 edid->y_resolution = edid->mode.va;
1678}