xref: /aosp_15_r20/external/edid-decode/parse-base-block.cpp (revision 193032a37cc83cffc1526215991f3c21671f4245)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright 2006-2012 Red Hat, Inc.
4  * Copyright 2018-2020 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
5  *
6  * Author: Adam Jackson <[email protected]>
7  * Maintainer: Hans Verkuil <[email protected]>
8  */
9 
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <math.h>
13 #include <time.h>
14 
15 #include "edid-decode.h"
16 
manufacturer_name(const unsigned char * x)17 static char *manufacturer_name(const unsigned char *x)
18 {
19 	static char name[4];
20 
21 	name[0] = ((x[0] & 0x7c) >> 2) + '@';
22 	name[1] = ((x[0] & 0x03) << 3) + ((x[1] & 0xe0) >> 5) + '@';
23 	name[2] = (x[1] & 0x1f) + '@';
24 	name[3] = 0;
25 
26 	if (!isupper(name[0]) || !isupper(name[1]) || !isupper(name[2]))
27 		fail("Manufacturer name field contains garbage.\n");
28 
29 	return name;
30 }
31 
32 static const struct {
33 	unsigned dmt_id;
34 	unsigned std_id;
35 	unsigned cvt_id;
36 	struct timings t;
37 } dmt_timings[] = {
38 	{ 0x01, 0x0000, 0x000000, { 640, 350, 64, 35, 31500, 0, false,
39 				    32, 64, 96, true, 32, 3, 60, false } },
40 
41 	{ 0x02, 0x3119, 0x000000, { 640, 400, 16, 10, 31500, 0, false,
42 				    32, 64, 96, false, 1, 3, 41, true } },
43 
44 	{ 0x03, 0x0000, 0x000000, { 720, 400, 9, 5, 35500, 0, false,
45 				    36, 72, 108, false, 1, 3, 42, true } },
46 
47 	{ 0x04, 0x3140, 0x000000, { 640, 480, 4, 3, 25175, 0, false,
48 				    8, 96, 40, false, 2, 2, 25, false, 8, 8 } },
49 	{ 0x05, 0x314c, 0x000000, { 640, 480, 4, 3, 31500, 0, false,
50 				    16, 40, 120, false, 1, 3, 20, false, 8, 8 } },
51 	{ 0x06, 0x314f, 0x000000, { 640, 480, 4, 3, 31500, 0, false,
52 				    16, 64, 120, false, 1, 3, 16, false } },
53 	{ 0x07, 0x3159, 0x000000, { 640, 480, 4, 3, 36000, 0, false,
54 				    56, 56, 80, false, 1, 3, 25, false } },
55 
56 	{ 0x08, 0x0000, 0x000000, { 800, 600, 4, 3, 36000, 0, false,
57 				    24, 72, 128, true, 1, 2, 22, true } },
58 	{ 0x09, 0x4540, 0x000000, { 800, 600, 4, 3, 40000, 0, false,
59 				    40, 128, 88, true, 1, 4, 23, true } },
60 	{ 0x0a, 0x454c, 0x000000, { 800, 600, 4, 3, 50000, 0, false,
61 				    56, 120, 64, true, 37, 6, 23, true } },
62 	{ 0x0b, 0x454f, 0x000000, { 800, 600, 4, 3, 49500, 0, false,
63 				    16, 80, 160, true, 1, 3, 21, true } },
64 	{ 0x0c, 0x4559, 0x000000, { 800, 600, 4, 3, 56250, 0, false,
65 				    32, 64, 152, true, 1, 3, 27, true } },
66 	{ 0x0d, 0x0000, 0x000000, { 800, 600, 4, 3, 73250, 1, false,
67 				    48, 32, 80, true, 3, 4, 29, false } },
68 
69 	{ 0x0e, 0x0000, 0x000000, { 848, 480, 16, 9, 33750, 0, false,
70 				    16, 112, 112, true, 6, 8, 23, true } },
71 
72 	{ 0x0f, 0x0000, 0x000000, { 1024, 768, 4, 3, 44900, 0, true,
73 				    8, 176, 56, true, 0, 4, 20, true } },
74 	{ 0x10, 0x6140, 0x000000, { 1024, 768, 4, 3, 65000, 0, false,
75 				    24, 136, 160, false, 3, 6, 29, false } },
76 	{ 0x11, 0x614c, 0x000000, { 1024, 768, 4, 3, 75000, 0, false,
77 				    24, 136, 144, false, 3, 6, 29, false } },
78 	{ 0x12, 0x614f, 0x000000, { 1024, 768, 4, 3, 78750, 0, false,
79 				    16, 96, 176, true, 1, 3, 28, true } },
80 	{ 0x13, 0x6159, 0x000000, { 1024, 768, 4, 3, 94500, 0, false,
81 				    48, 96, 208, true, 1, 3, 36, true } },
82 	{ 0x14, 0x0000, 0x000000, { 1024, 768, 4, 3, 115500, 1, false,
83 				    48, 32, 80, true, 3, 4, 38, false } },
84 
85 	{ 0x15, 0x714f, 0x000000, { 1152, 864, 4, 3, 108000, 0, false,
86 				    64, 128, 256, true, 1, 3, 32, true } },
87 
88 	{ 0x55, 0x81c0, 0x000000, { 1280, 720, 16, 9, 74250, 0, false,
89 				    110, 40, 220, true, 5, 5, 20, true } },
90 
91 	{ 0x16, 0x0000, 0x7f1c21, { 1280, 768, 5, 3, 68250, 1, false,
92 				    48, 32, 80, true, 3, 7, 12, false } },
93 	{ 0x17, 0x0000, 0x7f1c28, { 1280, 768, 5, 3, 79500, 0, false,
94 				    64, 128, 192, false, 3, 7, 20, true } },
95 	{ 0x18, 0x0000, 0x7f1c44, { 1280, 768, 5, 3, 102250, 0, false,
96 				    80, 128, 208, false, 3, 7, 27, true } },
97 	{ 0x19, 0x0000, 0x7f1c62, { 1280, 768, 5, 3, 117500, 0, false,
98 				    80, 136, 216, false, 3, 7, 31, true } },
99 	{ 0x1a, 0x0000, 0x000000, { 1280, 768, 5, 3, 140250, 0, false,
100 				    48, 32, 80, true, 3, 7, 35, false } },
101 
102 	{ 0x1b, 0x0000, 0x8f1821, { 1280, 800, 16, 10, 71000, 1, false,
103 				    48, 32, 80, true, 3, 6, 14, false } },
104 	{ 0x1c, 0x8100, 0x8f1828, { 1280, 800, 16, 10, 83500, 0, false,
105 				    72, 128, 200, false, 3, 6, 22, true } },
106 	{ 0x1d, 0x810f, 0x8f1844, { 1280, 800, 16, 10, 106500, 0, false,
107 				    80, 128, 208, false, 3, 6, 29, true } },
108 	{ 0x1e, 0x8119, 0x8f1862, { 1280, 800, 16, 10, 122500, 0, false,
109 				    80, 136, 216, false, 3, 6, 34, true } },
110 	{ 0x1f, 0x0000, 0x000000, { 1280, 800, 16, 10, 146250, 1, false,
111 				    48, 32, 80, true, 3, 6, 38, false } },
112 
113 	{ 0x20, 0x8140, 0x000000, { 1280, 960, 4, 3, 108000, 0, false,
114 				    96, 112, 312, true, 1, 3, 36, true } },
115 	{ 0x21, 0x8159, 0x000000, { 1280, 960, 4, 3, 148500, 0, false,
116 				    64, 160, 224, true, 1, 3, 47, true } },
117 	{ 0x22, 0x0000, 0x000000, { 1280, 960, 4, 3, 175500, 1, false,
118 				    48, 32, 80, true, 3, 4, 50, false } },
119 
120 	{ 0x23, 0x8180, 0x000000, { 1280, 1024, 5, 4, 108000, 0, false,
121 				    48, 112, 248, true, 1, 3, 38, true } },
122 	{ 0x24, 0x818f, 0x000000, { 1280, 1024, 5, 4, 135000, 0, false,
123 				    16, 144, 248, true, 1, 3, 38, true } },
124 	{ 0x25, 0x8199, 0x000000, { 1280, 1024, 5, 4, 157500, 0, false,
125 				    64, 160, 224, true, 1, 3, 44, true } },
126 	{ 0x26, 0x0000, 0x000000, { 1280, 1024, 5, 4, 187250, 1, false,
127 				    48, 32, 80, true, 3, 7, 50, false } },
128 
129 	{ 0x27, 0x0000, 0x000000, { 1360, 768, 85, 48, 85500, 0, false,
130 				    64, 112, 256, true, 3, 6, 18, true } },
131 	{ 0x28, 0x0000, 0x000000, { 1360, 768, 85, 48, 148250, 1, false,
132 				    48, 32, 80, true, 3, 5, 37, false } },
133 
134 	{ 0x51, 0x0000, 0x000000, { 1366, 768, 85, 48, 85500, 0, false,
135 				    70, 143, 213, true, 3, 3, 24, true } },
136 	{ 0x56, 0x0000, 0x000000, { 1366, 768, 85, 48, 72000, 1, false,
137 				    14, 56, 64, true, 1, 3, 28, true } },
138 
139 	{ 0x29, 0x0000, 0x0c2021, { 1400, 1050, 4, 3, 101000, 1, false,
140 				    48, 32, 80, true, 3, 4, 23, false } },
141 	{ 0x2a, 0x9040, 0x0c2028, { 1400, 1050, 4, 3, 121750, 0, false,
142 				    88, 144, 232, false, 3, 4, 32, true } },
143 	{ 0x2b, 0x904f, 0x0c2044, { 1400, 1050, 4, 3, 156000, 0, false,
144 				    104, 144, 248, false, 3, 4, 42, true } },
145 	{ 0x2c, 0x9059, 0x0c2062, { 1400, 1050, 4, 3, 179500, 0, false,
146 				    104, 152, 256, false, 3, 4, 48, true } },
147 	{ 0x2d, 0x0000, 0x000000, { 1400, 1050, 4, 3, 208000, 1, false,
148 				    48, 32, 80, true, 3, 4, 55, false } },
149 
150 	{ 0x2e, 0x0000, 0xc11821, { 1440, 900, 16, 10, 88750, 1, false,
151 				    48, 32, 80, true, 3, 6, 17, false } },
152 	{ 0x2f, 0x9500, 0xc11828, { 1440, 900, 16, 10, 106500, 0, false,
153 				    80, 152, 232, false, 3, 6, 25, true } },
154 	{ 0x30, 0x950f, 0xc11844, { 1440, 900, 16, 10, 136750, 0, false,
155 				    96, 152, 248, false, 3, 6, 33, true } },
156 	{ 0x31, 0x9519, 0xc11868, { 1440, 900, 16, 10, 157000, 0, false,
157 				    104, 152, 256, false, 3, 6, 39, true } },
158 	{ 0x32, 0x0000, 0x000000, { 1440, 900, 16, 10, 182750, 1, false,
159 				    48, 32, 80, true, 3, 6, 44, false } },
160 
161 	{ 0x53, 0xa9c0, 0x000000, { 1600, 900, 16, 9, 108000, 1, false,
162 				    24, 80, 96, true, 1, 3, 96, true } },
163 
164 	{ 0x33, 0xa940, 0x000000, { 1600, 1200, 4, 3, 162000, 0, false,
165 				    64, 192, 304, true, 1, 3, 46, true } },
166 	{ 0x34, 0xa945, 0x000000, { 1600, 1200, 4, 3, 175500, 0, false,
167 				    64, 192, 304, true, 1, 3, 46, true } },
168 	{ 0x35, 0xa94a, 0x000000, { 1600, 1200, 4, 3, 189000, 0, false,
169 				    64, 192, 304, true, 1, 3, 46, true } },
170 	{ 0x36, 0xa94f, 0x000000, { 1600, 1200, 4, 3, 202500, 0, false,
171 				    64, 192, 304, true, 1, 3, 46, true } },
172 	{ 0x37, 0xa959, 0x000000, { 1600, 1200, 4, 3, 229500, 0, false,
173 				    64, 192, 304, true, 1, 3, 46, true } },
174 	{ 0x38, 0x0000, 0x000000, { 1600, 1200, 4, 3, 268250, 1, false,
175 				    48, 32, 80, true, 3, 4, 64, false } },
176 
177 	{ 0x39, 0x0000, 0x0c2821, { 1680, 1050, 16, 10, 119000, 1, false,
178 				    48, 32, 80, true, 3, 6, 21, false } },
179 	{ 0x3a, 0xb300, 0x0c2828, { 1680, 1050, 16, 10, 146250, 0, false,
180 				    104, 176, 280, false, 3, 6, 30, true } },
181 	{ 0x3b, 0xb30f, 0x0c2844, { 1680, 1050, 16, 10, 187000, 0, false,
182 				    120, 176, 296, false, 3, 6, 40, true } },
183 	{ 0x3c, 0xb319, 0x0c2868, { 1680, 1050, 16, 10, 214750, 0, false,
184 				    128, 176, 304, false, 3, 6, 46, true } },
185 	{ 0x3d, 0x0000, 0x000000, { 1680, 1050, 16, 10, 245500, 1, false,
186 				    48, 32, 80, true, 3, 6, 53, false } },
187 
188 	{ 0x3e, 0xc140, 0x000000, { 1792, 1344, 4, 3, 204750, 0, false,
189 				    128, 200, 328, false, 1, 3, 46, true } },
190 	{ 0x3f, 0xc14f, 0x000000, { 1792, 1344, 4, 3, 261000, 0, false,
191 				    96, 216, 352, false, 1, 3, 69, true } },
192 	{ 0x40, 0x0000, 0x000000, { 1792, 1344, 4, 3, 333250, 1, false,
193 				    48, 32, 80, true, 3, 4, 72, false } },
194 
195 	{ 0x41, 0xc940, 0x000000, { 1856, 1392, 4, 3, 218250, 0, false,
196 				    96, 224, 352, false, 1, 3, 43, true } },
197 	{ 0x42, 0xc94f, 0x000000, { 1856, 1392, 4, 3, 288000, 0, false,
198 				    128, 224, 352, false, 1, 3, 104, true } },
199 	{ 0x43, 0x0000, 0x000000, { 1856, 1392, 4, 3, 356500, 1, false,
200 				    48, 32, 80, true, 3, 4, 74, false } },
201 
202 	{ 0x52, 0xd1c0, 0x000000, { 1920, 1080, 16, 9, 148500, 0, false,
203 				    88, 44, 148, true, 4, 5, 36, true } },
204 
205 	{ 0x44, 0x0000, 0x572821, { 1920, 1200, 16, 10, 154000, 1, false,
206 				    48, 32, 80, true, 3, 6, 26, false } },
207 	{ 0x45, 0xd100, 0x572828, { 1920, 1200, 16, 10, 193250, 0, false,
208 				    136, 200, 336, false, 3, 6, 36, true } },
209 	{ 0x46, 0xd10f, 0x572844, { 1920, 1200, 16, 10, 245250, 0, false,
210 				    136, 208, 344, false, 3, 6, 46, true } },
211 	{ 0x47, 0xd119, 0x572862, { 1920, 1200, 16, 10, 281250, 0, false,
212 				    144, 208, 352, false, 3, 6, 53, true } },
213 	{ 0x48, 0x0000, 0x000000, { 1920, 1200, 16, 10, 317000, 1, false,
214 				    48, 32, 80, true, 3, 6, 62, false } },
215 
216 	{ 0x49, 0xd140, 0x000000, { 1920, 1440, 4, 3, 234000, 0, false,
217 				    128, 208, 344, false, 1, 3, 56, true } },
218 	{ 0x4a, 0xd14f, 0x000000, { 1920, 1440, 4, 3, 297000, 0, false,
219 				    144, 224, 352, false, 1, 3, 56, true } },
220 	{ 0x4b, 0x0000, 0x000000, { 1920, 1440, 4, 3, 380500, 1, false,
221 				    48, 32, 80, true, 2, 3, 78, false } },
222 
223 	{ 0x54, 0xe1c0, 0x000000, { 2048, 1152, 16, 9, 162000, 1, false,
224 				    26, 80, 96, true, 1, 3, 44, true } },
225 
226 	{ 0x4c, 0x0000, 0x1f3821, { 2560, 1600, 16, 10, 268500, 1, false,
227 				    48, 32, 80, true, 3, 6, 37, false } },
228 	{ 0x4d, 0x0000, 0x1f3828, { 2560, 1600, 16, 10, 348500, 0, false,
229 				    192, 280, 472, false, 3, 6, 49, true } },
230 	{ 0x4e, 0x0000, 0x1f3844, { 2560, 1600, 16, 10, 443250, 0, false,
231 				    208, 280, 488, false, 3, 6, 63, true } },
232 	{ 0x4f, 0x0000, 0x1f3862, { 2560, 1600, 16, 10, 505250, 0, false,
233 				    208, 280, 488, false, 3, 6, 73, true } },
234 	{ 0x50, 0x0000, 0x000000, { 2560, 1600, 16, 10, 552750, 1, false,
235 				    48, 32, 80, true, 3, 6, 85, false } },
236 
237 	{ 0x57, 0x0000, 0x000000, { 4096, 2160, 256, 135, 556744, 1, false,
238 				    8, 32, 40, true, 48, 8, 6, false } },
239 	{ 0x58, 0x0000, 0x000000, { 4096, 2160, 256, 135, 556188, 1, false,
240 				    8, 32, 40, true, 48, 8, 6, false } },
241 };
242 
243 // The timings for the IBM/Apple modes are copied from the linux
244 // kernel timings in drivers/gpu/drm/drm_edid.c, except for the
245 // 1152x870 Apple format, which is copied from
246 // drivers/video/fbdev/macmodes.c since the drm_edid.c version
247 // describes a 1152x864 format.
248 static const struct {
249 	unsigned dmt_id;
250 	struct timings t;
251 	const char *type;
252 } established_timings12[] = {
253 	/* 0x23 bit 7 - 0 */
254 	{ 0x00, { 720, 400, 9, 5, 28320, 0, false,
255 	          18, 108, 54, false, 21, 2, 26, true }, "IBM" },
256 	{ 0x00, { 720, 400, 9, 5, 35500, 0, false,
257 	          18, 108, 54, false, 12, 2, 35, true }, "IBM" },
258 	{ 0x04 },
259 	{ 0x00, { 640, 480, 4, 3, 30240, 0, false,
260 	          64, 64, 96, false, 3, 3, 39, false }, "Apple" },
261 	{ 0x05 },
262 	{ 0x06 },
263 	{ 0x08 },
264 	{ 0x09 },
265 	/* 0x24 bit 7 - 0 */
266 	{ 0x0a },
267 	{ 0x0b },
268 	{ 0x00, { 832, 624, 4, 3, 57284, 0, false,
269 	          32, 64, 224, false, 1, 3, 39, false }, "Apple" },
270 	{ 0x0f },
271 	{ 0x10 },
272 	{ 0x11 },
273 	{ 0x12 },
274 	{ 0x24 },
275 	/* 0x25 bit 7 */
276 	{ 0x00, { 1152, 870, 192, 145, 100000, 0, false,
277 	          48, 128, 128, true, 3, 3, 39, true }, "Apple" },
278 };
279 
280 // The bits in the Established Timings III map to DMT timings,
281 // this array has the DMT IDs.
282 static const unsigned char established_timings3_dmt_ids[] = {
283 	/* 0x06 bit 7 - 0 */
284 	0x01, // 640x350@85
285 	0x02, // 640x400@85
286 	0x03, // 720x400@85
287 	0x07, // 640x480@85
288 	0x0e, // 848x480@60
289 	0x0c, // 800x600@85
290 	0x13, // 1024x768@85
291 	0x15, // 1152x864@75
292 	/* 0x07 bit 7 - 0 */
293 	0x16, // 1280x768@60 RB
294 	0x17, // 1280x768@60
295 	0x18, // 1280x768@75
296 	0x19, // 1280x768@85
297 	0x20, // 1280x960@60
298 	0x21, // 1280x960@85
299 	0x23, // 1280x1024@60
300 	0x25, // 1280x1024@85
301 	/* 0x08 bit 7 - 0 */
302 	0x27, // 1360x768@60
303 	0x2e, // 1440x900@60 RB
304 	0x2f, // 1440x900@60
305 	0x30, // 1440x900@75
306 	0x31, // 1440x900@85
307 	0x29, // 1400x1050@60 RB
308 	0x2a, // 1400x1050@60
309 	0x2b, // 1400x1050@75
310 	/* 0x09 bit 7 - 0 */
311 	0x2c, // 1400x1050@85
312 	0x39, // 1680x1050@60 RB
313 	0x3a, // 1680x1050@60
314 	0x3b, // 1680x1050@75
315 	0x3c, // 1680x1050@85
316 	0x33, // 1600x1200@60
317 	0x34, // 1600x1200@65
318 	0x35, // 1600x1200@70
319 	/* 0x0a bit 7 - 0 */
320 	0x36, // 1600x1200@75
321 	0x37, // 1600x1200@85
322 	0x3e, // 1792x1344@60
323 	0x3f, // 1792x1344@75
324 	0x41, // 1856x1392@60
325 	0x42, // 1856x1392@75
326 	0x44, // 1920x1200@60 RB
327 	0x45, // 1920x1200@60
328 	/* 0x0b bit 7 - 4 */
329 	0x46, // 1920x1200@75
330 	0x47, // 1920x1200@85
331 	0x49, // 1920x1440@60
332 	0x4a, // 1920x1440@75
333 };
334 
find_dmt_id(unsigned char dmt_id)335 const struct timings *find_dmt_id(unsigned char dmt_id)
336 {
337 	unsigned i;
338 
339 	for (i = 0; i < ARRAY_SIZE(dmt_timings); i++)
340 		if (dmt_timings[i].dmt_id == dmt_id)
341 			return &dmt_timings[i].t;
342 	return NULL;
343 }
344 
find_std_id(unsigned short std_id,unsigned char & dmt_id)345 static const struct timings *find_std_id(unsigned short std_id, unsigned char &dmt_id)
346 {
347 	unsigned i;
348 
349 	for (i = 0; i < ARRAY_SIZE(dmt_timings); i++)
350 		if (dmt_timings[i].std_id == std_id) {
351 			dmt_id = dmt_timings[i].dmt_id;
352 			return &dmt_timings[i].t;
353 		}
354 	return NULL;
355 }
356 
list_established_timings()357 void edid_state::list_established_timings()
358 {
359 	printf("Established Timings I & II, 'Byte' is the EDID address:\n\n");
360 	for (unsigned i = 0; i < ARRAY_SIZE(established_timings12); i++) {
361 		unsigned char dmt_id = established_timings12[i].dmt_id;
362 		const struct timings *t;
363 		char type[16];
364 
365 		if (dmt_id) {
366 			sprintf(type, "DMT 0x%02x", dmt_id);
367 			t = find_dmt_id(dmt_id);
368 		} else {
369 			t = &established_timings12[i].t;
370 			sprintf(type, "%-8s", established_timings12[i].type);
371 		}
372 		printf("Byte 0x%02x, Bit %u: ", 0x23 + i / 8, 7 - i % 8);
373 		print_timings("", t, type, "", false, false);
374 	}
375 	printf("\nEstablished timings III, 'Byte' is the offset from the start of the descriptor:\n\n");
376 	for (unsigned i = 0; i < ARRAY_SIZE(established_timings3_dmt_ids); i++) {
377 		unsigned char dmt_id = established_timings3_dmt_ids[i];
378 		char type[16];
379 
380 		sprintf(type, "DMT 0x%02x", dmt_id);
381 		printf("Byte 0x%02x, Bit %u: ", 6 + i / 8, 7 - i % 8);
382 		print_timings("", find_dmt_id(dmt_id), type, "", false, false);
383 	}
384 }
385 
close_match_to_dmt(const timings & t,unsigned & dmt)386 const struct timings *close_match_to_dmt(const timings &t, unsigned &dmt)
387 {
388 	for (unsigned i = 0; i < ARRAY_SIZE(dmt_timings); i++) {
389 		if (timings_close_match(t, dmt_timings[i].t)) {
390 			dmt = dmt_timings[i].dmt_id;
391 			return &dmt_timings[i].t;
392 		}
393 	}
394 	dmt = 0;
395 	return NULL;
396 }
397 
list_dmts()398 void edid_state::list_dmts()
399 {
400 	char type[16];
401 
402 	for (unsigned i = 0; i < ARRAY_SIZE(dmt_timings); i++) {
403 		sprintf(type, "DMT 0x%02x", dmt_timings[i].dmt_id);
404 		std::string flags;
405 		if (dmt_timings[i].std_id)
406 			flags += std::string("STD: ") +
407 				utohex(dmt_timings[i].std_id >> 8) + " " +
408 				utohex(dmt_timings[i].std_id & 0xff);
409 		if (dmt_timings[i].cvt_id)
410 			add_str(flags, std::string("CVT: ") +
411 				utohex(dmt_timings[i].cvt_id >> 16) + " " +
412 				utohex((dmt_timings[i].cvt_id >> 8) & 0xff) + " " +
413 				utohex(dmt_timings[i].cvt_id & 0xff));
414 		print_timings("", &dmt_timings[i].t, type, flags.c_str(), false, false);
415 	}
416 }
417 
detailed_cvt_descriptor(const char * prefix,const unsigned char * x,bool first)418 void edid_state::detailed_cvt_descriptor(const char *prefix, const unsigned char *x, bool first)
419 {
420 	static const unsigned char empty[3] = { 0, 0, 0 };
421 	struct timings cvt_t = {};
422 	unsigned char preferred;
423 
424 	if (!first && !memcmp(x, empty, 3))
425 		return;
426 
427 	cvt_t.vact = x[0];
428 	if (!cvt_t.vact)
429 		fail("CVT byte 0 is 0, which is a reserved value.\n");
430 	cvt_t.vact |= (x[1] & 0xf0) << 4;
431 	cvt_t.vact++;
432 	cvt_t.vact *= 2;
433 
434 	switch (x[1] & 0x0c) {
435 	case 0x00:
436 	default: /* avoids 'width/ratio may be used uninitialized' warnings */
437 		cvt_t.hratio = 4;
438 		cvt_t.vratio = 3;
439 		break;
440 	case 0x04:
441 		cvt_t.hratio = 16;
442 		cvt_t.vratio = 9;
443 		break;
444 	case 0x08:
445 		cvt_t.hratio = 16;
446 		cvt_t.vratio = 10;
447 		break;
448 	case 0x0c:
449 		cvt_t.hratio = 15;
450 		cvt_t.vratio = 9;
451 		break;
452 	}
453 	cvt_t.hact = 8 * (((cvt_t.vact * cvt_t.hratio) / cvt_t.vratio) / 8);
454 
455 	if (x[1] & 0x03)
456 		fail("Reserved bits of CVT byte 1 are non-zero.\n");
457 	if (x[2] & 0x80)
458 		fail("Reserved bit of CVT byte 2 is non-zero.\n");
459 	if (!(x[2] & 0x1f))
460 		fail("CVT byte 2 does not support any vertical rates.\n");
461 	preferred = (x[2] & 0x60) >> 5;
462 	if (preferred == 1 && (x[2] & 0x01))
463 		preferred = 4;
464 	if (!(x[2] & (1 << (4 - preferred))))
465 		fail("The preferred CVT Vertical Rate is not supported.\n");
466 
467 	static const char *s_pref = "preferred vertical rate";
468 
469 	if (x[2] & 0x10) {
470 		edid_cvt_mode(50, cvt_t);
471 		print_timings(prefix, &cvt_t, "CVT", preferred == 0 ? s_pref : "");
472 	}
473 	if (x[2] & 0x08) {
474 		edid_cvt_mode(60, cvt_t);
475 		print_timings(prefix, &cvt_t, "CVT", preferred == 1 ? s_pref : "");
476 	}
477 	if (x[2] & 0x04) {
478 		edid_cvt_mode(75, cvt_t);
479 		print_timings(prefix, &cvt_t, "CVT", preferred == 2 ? s_pref : "");
480 	}
481 	if (x[2] & 0x02) {
482 		edid_cvt_mode(85, cvt_t);
483 		print_timings(prefix, &cvt_t, "CVT", preferred == 3 ? s_pref : "");
484 	}
485 	if (x[2] & 0x01) {
486 		cvt_t.rb = RB_CVT_V1;
487 		edid_cvt_mode(60, cvt_t);
488 		print_timings(prefix, &cvt_t, "CVT", preferred == 4 ? s_pref : "");
489 	}
490 }
491 
492 /* extract a string from a detailed subblock, checking for termination */
extract_string(const unsigned char * x,unsigned len)493 char *extract_string(const unsigned char *x, unsigned len)
494 {
495 	static char s[EDID_PAGE_SIZE];
496 	int seen_newline = 0;
497 	unsigned i;
498 
499 	memset(s, 0, sizeof(s));
500 
501 	for (i = 0; i < len; i++) {
502 		if (isgraph(x[i])) {
503 			s[i] = x[i];
504 		} else if (!seen_newline) {
505 			if (x[i] == 0x0a) {
506 				seen_newline = 1;
507 				if (!i)
508 					fail("Empty string.\n");
509 				else if (s[i - 1] == 0x20)
510 					fail("One or more trailing spaces.\n");
511 			} else if (x[i] == 0x20) {
512 				s[i] = x[i];
513 			} else {
514 				fail("Non-printable character.\n");
515 				return s;
516 			}
517 		} else if (x[i] != 0x20) {
518 			fail("Non-space after newline.\n");
519 			return s;
520 		}
521 	}
522 	/* Does the string end with a space? */
523 	if (!seen_newline && s[len - 1] == 0x20)
524 		fail("One or more trailing spaces.\n");
525 
526 	return s;
527 }
528 
print_standard_timing(const char * prefix,unsigned char b1,unsigned char b2,bool gtf_only,bool show_both)529 void edid_state::print_standard_timing(const char *prefix, unsigned char b1, unsigned char b2,
530 				       bool gtf_only, bool show_both)
531 {
532 	const struct timings *t;
533 	struct timings formula = {};
534 	unsigned hratio, vratio;
535 	unsigned hact, vact, refresh;
536 	unsigned char dmt_id = 0;
537 
538 	if (b1 <= 0x01) {
539 		if (b1 != 0x01 || b2 != 0x01)
540 			fail("Use 0x0101 as the invalid Standard Timings code, not 0x%02x%02x.\n", b1, b2);
541 		return;
542 	}
543 
544 	t = find_std_id((b1 << 8) | b2, dmt_id);
545 	if (t) {
546 		char type[16];
547 		sprintf(type, "DMT 0x%02x", dmt_id);
548 		print_timings(prefix, t, type);
549 		return;
550 	}
551 	hact = (b1 + 31) * 8;
552 	switch ((b2 >> 6) & 0x3) {
553 	case 0x00:
554 		if (gtf_only || show_both || base.edid_minor >= 3) {
555 			hratio = 16;
556 			vratio = 10;
557 		} else {
558 			hratio = 1;
559 			vratio = 1;
560 		}
561 		break;
562 	case 0x01:
563 		hratio = 4;
564 		vratio = 3;
565 		break;
566 	case 0x02:
567 		hratio = 5;
568 		vratio = 4;
569 		break;
570 	case 0x03:
571 		hratio = 16;
572 		vratio = 9;
573 		break;
574 	}
575 	vact = (double)hact * vratio / hratio;
576 	vact = 8 * ((vact + 7) / 8);
577 	refresh = (b2 & 0x3f) + 60;
578 
579 	formula.hact = hact;
580 	formula.vact = vact;
581 	formula.hratio = hratio;
582 	formula.vratio = vratio;
583 
584 	if (!gtf_only && (show_both || base.edid_minor >= 4)) {
585 		if (show_both || base.supports_cvt) {
586 			edid_cvt_mode(refresh, formula);
587 			print_timings(prefix, &formula, "CVT     ",
588 				      show_both ? "" : "EDID 1.4 source");
589 		}
590 		/*
591 		 * An EDID 1.3 source will assume GTF, so both GTF and CVT
592 		 * have to be supported.
593 		 */
594 		edid_gtf_mode(refresh, formula);
595 		if (base.supports_cvt)
596 			print_timings(prefix, &formula, "GTF     ", "EDID 1.3 source");
597 		else
598 			print_timings(prefix, &formula, "GTF     ");
599 	} else if (gtf_only || base.edid_minor >= 2) {
600 		edid_gtf_mode(refresh, formula);
601 		print_timings(prefix, &formula, "GTF     ");
602 	} else {
603 		printf("%sUnknown : %5ux%-5u %3u.000 Hz %3u:%u\n",
604 		       prefix, hact, vact, refresh, hratio, vratio);
605 		min_vert_freq_hz = min(min_vert_freq_hz, refresh);
606 		max_vert_freq_hz = max(max_vert_freq_hz, refresh);
607 	}
608 }
609 
detailed_display_range_limits(const unsigned char * x)610 void edid_state::detailed_display_range_limits(const unsigned char *x)
611 {
612 	int h_max_offset = 0, h_min_offset = 0;
613 	int v_max_offset = 0, v_min_offset = 0;
614 	int is_cvt = 0;
615 	bool has_sec_gtf = false;
616 	std::string range_class;
617 
618 	data_block = "Display Range Limits";
619 	printf("  %s:\n", data_block.c_str());
620 	base.has_display_range_descriptor = 1;
621 
622 	if (base.edid_minor >= 4) {
623 		if (x[4] & 0x02) {
624 			v_max_offset = 255;
625 			if (x[4] & 0x01) {
626 				v_min_offset = 255;
627 			}
628 		}
629 		if (x[4] & 0x08) {
630 			h_max_offset = 255;
631 			if (x[4] & 0x04) {
632 				h_min_offset = 255;
633 			}
634 		}
635 	}
636 
637 	/*
638 	 * despite the values, this is not a bitfield.
639 	 */
640 	switch (x[10]) {
641 	case 0x00: /* default gtf */
642 		range_class = "GTF";
643 		if (base.edid_minor >= 4 && !base.supports_continuous_freq)
644 			fail("GTF can't be combined with non-continuous frequencies.\n");
645 		if (base.edid_minor >= 4)
646 			warn("GTF support is deprecated in EDID 1.4.\n");
647 		break;
648 	case 0x01: /* range limits only */
649 		range_class = "Bare Limits";
650 		if (base.edid_minor < 4)
651 			fail("'%s' is not allowed for EDID < 1.4.\n", range_class.c_str());
652 		break;
653 	case 0x02: /* secondary gtf curve */
654 		range_class = "Secondary GTF";
655 		if (base.edid_minor >= 4 && !base.supports_continuous_freq)
656 			fail("GTF can't be combined with non-continuous frequencies.\n");
657 		if (base.edid_minor >= 4)
658 			warn("GTF support is deprecated in EDID 1.4.\n");
659 		has_sec_gtf = true;
660 		break;
661 	case 0x04: /* cvt */
662 		range_class = "CVT";
663 		is_cvt = 1;
664 		if (base.edid_minor < 4)
665 			fail("'%s' is not allowed for EDID < 1.4.\n", range_class.c_str());
666 		else if (!base.supports_continuous_freq)
667 			fail("CVT can't be combined with non-continuous frequencies.\n");
668 		break;
669 	default: /* invalid */
670 		fail("Unknown range class (0x%02x).\n", x[10]);
671 		range_class = std::string("Unknown (") + utohex(x[10]) + ")";
672 		break;
673 	}
674 
675 	if (x[5] + v_min_offset > x[6] + v_max_offset)
676 		fail("Min vertical rate > max vertical rate.\n");
677 	base.min_display_vert_freq_hz = x[5] + v_min_offset;
678 	base.max_display_vert_freq_hz = x[6] + v_max_offset;
679 	if (x[7] + h_min_offset > x[8] + h_max_offset)
680 		fail("Min horizontal freq > max horizontal freq.\n");
681 	base.min_display_hor_freq_hz = (x[7] + h_min_offset) * 1000;
682 	base.max_display_hor_freq_hz = (x[8] + h_max_offset) * 1000;
683 	printf("    Monitor ranges (%s): %d-%d Hz V, %d-%d kHz H",
684 	       range_class.c_str(),
685 	       x[5] + v_min_offset, x[6] + v_max_offset,
686 	       x[7] + h_min_offset, x[8] + h_max_offset);
687 
688 	// For EDID 1.3 the horizontal frequency maxes out at 255 kHz.
689 	// So to avoid false range-check warnings due to this limitation,
690 	// just double the max_display_hor_freq_hz in this case.
691 	if (base.edid_minor < 4 && x[8] == 0xff)
692 		base.max_display_hor_freq_hz *= 2;
693 
694 	// For EDID 1.3 the vertical frequency maxes out at 255 Hz.
695 	// So to avoid false range-check warnings due to this limitation,
696 	// just double the max_display_vert_freq_hz in this case.
697 	if (base.edid_minor < 4 && x[6] == 0xff)
698 		base.max_display_vert_freq_hz *= 2;
699 
700 	if (x[9]) {
701 		base.max_display_pixclk_khz = x[9] * 10000;
702 		printf(", max dotclock %d MHz\n", x[9] * 10);
703 	} else {
704 		if (base.edid_minor >= 4)
705 			fail("EDID 1.4 block does not set max dotclock.\n");
706 		printf("\n");
707 	}
708 
709 	if (has_sec_gtf) {
710 		if (x[11])
711 			fail("Byte 11 is 0x%02x instead of 0x00.\n", x[11]);
712 		if (memchk(x + 12, 6)) {
713 			fail("Zeroed Secondary Curve Block.\n");
714 		} else {
715 			printf("    GTF Secondary Curve Block:\n");
716 			printf("      Start frequency: %u kHz\n", x[12] * 2);
717 			printf("      C: %.1f%%\n", x[13] / 2.0);
718 			printf("      M: %u%%/kHz\n", (x[15] << 8) | x[14]);
719 			printf("      K: %u\n", x[16]);
720 			printf("      J: %.1f%%\n", x[17] / 2.0);
721 		}
722 	} else if (is_cvt) {
723 		int max_h_pixels = 0;
724 
725 		printf("    CVT version %d.%d\n", (x[11] & 0xf0) >> 4, x[11] & 0x0f);
726 
727 		if (x[12] & 0xfc) {
728 			unsigned raw_offset = (x[12] & 0xfc) >> 2;
729 
730 			printf("    Real max dotclock: %.2f MHz\n",
731 			       (x[9] * 10) - (raw_offset * 0.25));
732 			if (raw_offset >= 40)
733 				warn("CVT block corrects dotclock by more than 9.75 MHz.\n");
734 		}
735 
736 		max_h_pixels = x[12] & 0x03;
737 		max_h_pixels <<= 8;
738 		max_h_pixels |= x[13];
739 		max_h_pixels *= 8;
740 		if (max_h_pixels)
741 			printf("    Max active pixels per line: %d\n", max_h_pixels);
742 
743 		printf("    Supported aspect ratios:%s%s%s%s%s\n",
744 		       x[14] & 0x80 ? " 4:3" : "",
745 		       x[14] & 0x40 ? " 16:9" : "",
746 		       x[14] & 0x20 ? " 16:10" : "",
747 		       x[14] & 0x10 ? " 5:4" : "",
748 		       x[14] & 0x08 ? " 15:9" : "");
749 		if (x[14] & 0x07)
750 			fail("Reserved bits of byte 14 are non-zero.\n");
751 
752 		printf("    Preferred aspect ratio: ");
753 		switch ((x[15] & 0xe0) >> 5) {
754 		case 0x00:
755 			printf("4:3");
756 			break;
757 		case 0x01:
758 			printf("16:9");
759 			break;
760 		case 0x02:
761 			printf("16:10");
762 			break;
763 		case 0x03:
764 			printf("5:4");
765 			break;
766 		case 0x04:
767 			printf("15:9");
768 			break;
769 		default:
770 			printf("Unknown (0x%02x)", (x[15] & 0xe0) >> 5);
771 			fail("Invalid preferred aspect ratio 0x%02x.\n",
772 			     (x[15] & 0xe0) >> 5);
773 			break;
774 		}
775 		printf("\n");
776 
777 		if (x[15] & 0x08)
778 			printf("    Supports CVT standard blanking\n");
779 		if (x[15] & 0x10)
780 			printf("    Supports CVT reduced blanking\n");
781 
782 		if (x[15] & 0x07)
783 			fail("Reserved bits of byte 15 are non-zero.\n");
784 
785 		if (x[16] & 0xf0) {
786 			printf("    Supported display scaling:\n");
787 			if (x[16] & 0x80)
788 				printf("      Horizontal shrink\n");
789 			if (x[16] & 0x40)
790 				printf("      Horizontal stretch\n");
791 			if (x[16] & 0x20)
792 				printf("      Vertical shrink\n");
793 			if (x[16] & 0x10)
794 				printf("      Vertical stretch\n");
795 		}
796 
797 		if (x[16] & 0x0f)
798 			fail("Reserved bits of byte 16 are non-zero.\n");
799 
800 		if (x[17])
801 			printf("    Preferred vertical refresh: %d Hz\n", x[17]);
802 		else
803 			warn("CVT block does not set preferred refresh rate.\n");
804 	} else {
805 		if (x[11] != 0x0a)
806 			fail("Byte 11 is 0x%02x instead of 0x0a.\n", x[11]);
807 		for (unsigned i = 12; i <= 17; i++) {
808 			if (x[i] != 0x20) {
809 				fail("Bytes 12-17 must be 0x20.\n");
810 				break;
811 			}
812 		}
813 	}
814 }
815 
detailed_epi(const unsigned char * x)816 void edid_state::detailed_epi(const unsigned char *x)
817 {
818 	data_block = "EPI Descriptor";
819 	printf("    %s:\n", data_block.c_str());
820 
821 	unsigned v = x[5] & 0x07;
822 
823 	printf("      Bits per pixel: %u\n", 18 + v * 6);
824 	if (v > 2)
825 		fail("Invalid bits per pixel.\n");
826 	v = (x[5] & 0x18) >> 3;
827 	printf("      Pixels per clock: %u\n", 1 << v);
828 	if (v > 2)
829 		fail("Invalid pixels per clock.\n");
830 	v = (x[5] & 0x60) >> 5;
831 	printf("      Data color mapping: %sconventional\n", v ? "non-" : "");
832 	if (v > 1)
833 		fail("Unknown data color mapping (0x%02x).\n", v);
834 	if (x[5] & 0x80)
835 		fail("Non-zero reserved field in byte 5.\n");
836 
837 	v = x[6] & 0x0f;
838 	printf("      Interface type: ");
839 	switch (v) {
840 	case 0x00: printf("LVDS TFT\n"); break;
841 	case 0x01: printf("monoSTN 4/8 Bit\n"); break;
842 	case 0x02: printf("colorSTN 8/16 Bit\n"); break;
843 	case 0x03: printf("18 Bit TFT\n"); break;
844 	case 0x04: printf("24 Bit TFT\n"); break;
845 	case 0x05: printf("TMDS\n"); break;
846 	default:
847 		   printf("Unknown (0x%02x)\n", v);
848 		   fail("Invalid interface type 0x%02x.\n", v);
849 		   break;
850 	}
851 	printf("      DE polarity: DE %s active\n",
852 	       (x[6] & 0x10) ? "low" : "high");
853 	printf("      FPSCLK polarity: FPSCLK %sinverted\n",
854 	       (x[6] & 0x20) ? "" : "not ");
855 	if (x[6] & 0xc0)
856 		fail("Non-zero reserved field in byte 6.\n");
857 
858 	printf("      Vertical display mode: %s\n",
859 	       (x[7] & 0x01) ? "Up/Down reverse mode" : "normal");
860 	printf("      Horizontal display mode: %s\n",
861 	       (x[7] & 0x02) ? "Left/Right reverse mode" : "normal");
862 	if (x[7] & 0xfc)
863 		fail("Non-zero reserved field in byte 7.\n");
864 
865 	v = x[8] & 0x0f;
866 	printf("      Total power on sequencing delay: ");
867 	if (v)
868 		printf("%u ms\n", v * 10);
869 	else
870 		printf("VGA controller default\n");
871 	v = (x[8] & 0xf0) >> 4;
872 	printf("      Total power off sequencing delay: ");
873 	if (v)
874 		printf("%u ms\n", v * 10);
875 	else
876 		printf("VGA controller default\n");
877 
878 	v = x[9] & 0x0f;
879 	printf("      Contrast power on sequencing delay: ");
880 	if (v)
881 		printf("%u ms\n", v * 10);
882 	else
883 		printf("VGA controller default\n");
884 	v = (x[9] & 0xf0) >> 4;
885 	printf("      Contrast power off sequencing delay: ");
886 	if (v)
887 		printf("%u ms\n", v * 10);
888 	else
889 		printf("VGA controller default\n");
890 
891 	v = x[10] & 0x2f;
892 	const char *s = (x[10] & 0x80) ? "" : " (ignored)";
893 
894 	printf("      Backlight brightness control: %u steps%s\n", v, s);
895 	printf("      Backlight enable at boot: %s%s\n",
896 	       (x[10] & 0x40) ? "off" : "on", s);
897 	printf("      Backlight control enable: %s\n",
898 	       (x[10] & 0x80) ? "enabled" : "disabled");
899 
900 	v = x[11] & 0x2f;
901 	s = (x[11] & 0x80) ? "" : " (ignored)";
902 
903 	printf("      Contrast voltable control: %u steps%s\n", v, s);
904 	if (x[11] & 0x40)
905 		fail("Non-zero reserved field in byte 11.\n");
906 	printf("      Contrast control enable: %s\n",
907 	       (x[11] & 0x80) ? "enabled" : "disabled");
908 
909 	if (x[12] || x[13] || x[14] || x[15] || x[16])
910 		fail("Non-zero values in reserved bytes 12-16.\n");
911 
912 	printf("      EPI Version: %u.%u\n", (x[17] & 0xf0) >> 4, x[17] & 0x0f);
913 }
914 
detailed_timings(const char * prefix,const unsigned char * x,bool base_or_cta)915 void edid_state::detailed_timings(const char *prefix, const unsigned char *x,
916 				  bool base_or_cta)
917 {
918 	struct timings t = {};
919 	unsigned hbl, vbl;
920 	std::string s_sync, s_flags;
921 
922 	// Only count DTDs in base block 0 or CTA-861 extension blocks
923 	if (base_or_cta)
924 		base.dtd_cnt++;
925 	data_block = "Detailed Timing Descriptor #" + std::to_string(base.dtd_cnt);
926 	t.pixclk_khz = (x[0] + (x[1] << 8)) * 10;
927 	if (t.pixclk_khz < 10000) {
928 		printf("%sDetailed mode: ", prefix);
929 		hex_block("", x, 18, true, 18);
930 		if (!t.pixclk_khz)
931 			fail("First two bytes are 0, invalid data.\n");
932 		else
933 			fail("Pixelclock < 10 MHz, assuming invalid data 0x%02x 0x%02x.\n",
934 			     x[0], x[1]);
935 		return;
936 	}
937 
938 	/*
939 	 * If the borders are non-zero, then it is unclear how to interpret
940 	 * the DTD blanking parameters.
941 	 *
942 	 * According to EDID 1.3 (3.12) the Hor/Vert Blanking includes the
943 	 * borders, and so does the Hor/Vert Sync Offset.
944 	 *
945 	 * According to EDID 1.4 (3.12) the Hor/Vert Blanking excludes the
946 	 * borders, and they are also excluded from the Hor/Vert Front Porch.
947 	 *
948 	 * But looking at what is really done in EDIDs is that the Hor/Vert
949 	 * Blanking follows EDID 1.3, but the Hor/Vert Front Porch does not
950 	 * include the border.
951 	 *
952 	 * So hbl/vbl includes the borders, so those need to be subtracted,
953 	 * but hfp/vfp is used as-is.
954 	 *
955 	 * In practice you really shouldn't use non-zero borders in DTDs
956 	 * since clearly nobody knows how to interpret the timing.
957 	 */
958 	t.hact = (x[2] + ((x[4] & 0xf0) << 4));
959 	t.hborder = x[15];
960 	hbl = (x[3] + ((x[4] & 0x0f) << 8)) - t.hborder * 2;
961 	t.hfp = (x[8] + ((x[11] & 0xc0) << 2));
962 	t.hsync = (x[9] + ((x[11] & 0x30) << 4));
963 	t.hbp = hbl - t.hsync - t.hfp;
964 	t.vact = (x[5] + ((x[7] & 0xf0) << 4));
965 	t.vborder = x[16];
966 	vbl = (x[6] + ((x[7] & 0x0f) << 8)) - t.vborder * 2;
967 	t.vfp = ((x[10] >> 4) + ((x[11] & 0x0c) << 2));
968 	t.vsync = ((x[10] & 0x0f) + ((x[11] & 0x03) << 4));
969 	t.vbp = vbl - t.vsync - t.vfp;
970 
971 	unsigned char flags = x[17];
972 
973 	if (base.has_spwg && base.detailed_block_cnt == 2)
974 		flags = *(x - 1);
975 
976 	switch ((flags & 0x18) >> 3) {
977 	case 0x00:
978 		s_flags = "analog composite";
979 		/* fall-through */
980 	case 0x01:
981 		if (s_flags.empty())
982 			s_flags = "bipolar analog composite";
983 		switch ((flags & 0x06) >> 1) {
984 		case 0x00:
985 			add_str(s_flags, "sync-on-green");
986 			break;
987 		case 0x01:
988 			break;
989 		case 0x02:
990 			add_str(s_flags, "serrate, sync-on-green");
991 			break;
992 		case 0x03:
993 			add_str(s_flags, "serrate");
994 			break;
995 		}
996 		break;
997 	case 0x02:
998 		if (flags & (1 << 1))
999 			t.pos_pol_hsync = true;
1000 		t.no_pol_vsync = true;
1001 		s_flags = "digital composite";
1002 		if (flags & (1 << 2))
1003 		    add_str(s_flags, "serrate");
1004 		break;
1005 	case 0x03:
1006 		if (flags & (1 << 1))
1007 			t.pos_pol_hsync = true;
1008 		if (flags & (1 << 2))
1009 			t.pos_pol_vsync = true;
1010 		s_sync = t.pos_pol_hsync ? "+hsync " : "-hsync ";
1011 		s_sync += t.pos_pol_vsync ? "+vsync " : "-vsync ";
1012 		if (base.has_spwg && (flags & 0x01))
1013 			s_flags = "DE timing only";
1014 		break;
1015 	}
1016 	if (flags & 0x80) {
1017 		t.interlaced = true;
1018 		t.vact *= 2;
1019 		/*
1020 		 * Check if this DTD matches VIC code 39 with special
1021 		 * interlaced timings.
1022 		 */
1023 		if (t.hact == 1920 && t.vact == 1080 && t.pixclk_khz == 72000 &&
1024 		    t.hfp == 32 && t.hsync == 168 && t.hbp == 184 && !t.hborder &&
1025 		    t.vfp == 23 && t.vsync == 5 && t.vbp == 57 && !t.vborder &&
1026 		    !base.has_spwg && cta.preparsed_has_vic[0][39] && (flags & 0x1e) == 0x1a)
1027 			t.even_vtotal = true;
1028 	}
1029 	switch (flags & 0x61) {
1030 	case 0x20:
1031 		add_str(s_flags, "field sequential L/R");
1032 		break;
1033 	case 0x40:
1034 		add_str(s_flags, "field sequential R/L");
1035 		break;
1036 	case 0x21:
1037 		add_str(s_flags, "interleaved right even");
1038 		break;
1039 	case 0x41:
1040 		add_str(s_flags, "interleaved left even");
1041 		break;
1042 	case 0x60:
1043 		add_str(s_flags, "four way interleaved");
1044 		break;
1045 	case 0x61:
1046 		add_str(s_flags, "side by side interleaved");
1047 		break;
1048 	default:
1049 		break;
1050 	}
1051 
1052 	t.hsize_mm = x[12] + ((x[14] & 0xf0) << 4);
1053 	t.vsize_mm = x[13] + ((x[14] & 0x0f) << 8);
1054 
1055 	calc_ratio(&t);
1056 
1057 	std::string s_type = base_or_cta ? dtd_type() : "DTD";
1058 	bool ok = print_timings(prefix, &t, s_type.c_str(), s_flags.c_str(), true);
1059 	timings_ext te(t, s_type, s_flags);
1060 
1061 	if (block_nr == 0 && base.dtd_cnt == 1) {
1062 		te.type = "DTD   1";
1063 		base.preferred_timing = te;
1064 		if (has_cta) {
1065 			cta.preferred_timings.push_back(te);
1066 			cta.native_timings.push_back(te);
1067 		}
1068 	}
1069 	if (base_or_cta)
1070 		cta.vec_dtds.push_back(te);
1071 
1072 	if (t.hborder || t.vborder)
1073 		warn("The use of non-zero borders in a DTD is not recommended.\n");
1074 	if ((base.max_display_width_mm && !t.hsize_mm) ||
1075 	    (base.max_display_height_mm && !t.vsize_mm)) {
1076 		fail("Mismatch of image size vs display size: image size is not set, but display size is.\n");
1077 	}
1078 	if (base.has_spwg && base.detailed_block_cnt == 2)
1079 		printf("%sSPWG Module Revision: %hhu\n", prefix, x[17]);
1080 	if (!ok) {
1081 		std::string s = prefix;
1082 
1083 		s += "               ";
1084 		hex_block(s.c_str(), x, 18, true, 18);
1085 	}
1086 }
1087 
preparse_detailed_block(const unsigned char * x)1088 void edid_state::preparse_detailed_block(const unsigned char *x)
1089 {
1090 	if (x[0] || x[1])
1091 		return;
1092 	if (x[3] != 0xfd)
1093 		return;
1094 
1095 	switch (x[10]) {
1096 	case 0x00: /* default gtf */
1097 		base.supports_gtf = true;
1098 		break;
1099 	case 0x02: /* secondary gtf curve */
1100 		base.supports_gtf = true;
1101 		base.supports_sec_gtf = !memchk(x + 12, 6);
1102 		base.sec_gtf_start_freq = x[12] * 2;
1103 		base.C = x[13] / 2.0;
1104 		base.M = (x[15] << 8) | x[14];
1105 		base.K = x[16];
1106 		base.J = x[17] / 2.0;
1107 		break;
1108 	case 0x04: /* cvt */
1109 		if (base.edid_minor >= 4) {
1110 			/* GTF is implied if CVT is signaled */
1111 			base.supports_gtf = true;
1112 			base.supports_cvt = true;
1113 		}
1114 		break;
1115 	}
1116 }
1117 
detailed_block(const unsigned char * x)1118 void edid_state::detailed_block(const unsigned char *x)
1119 {
1120 	static const unsigned char zero_descr[18] = { 0 };
1121 	unsigned cnt;
1122 	unsigned i;
1123 
1124 	base.detailed_block_cnt++;
1125 	if (x[0] || x[1]) {
1126 		detailed_timings("    ", x);
1127 		if (base.seen_non_detailed_descriptor)
1128 			fail("Invalid detailed timing descriptor ordering.\n");
1129 		return;
1130 	}
1131 
1132 	data_block = "Display Descriptor #" + std::to_string(base.detailed_block_cnt);
1133 	/* Monitor descriptor block, not detailed timing descriptor. */
1134 	if (x[2] != 0) {
1135 		/* 1.3, 3.10.3 */
1136 		fail("Monitor descriptor block has byte 2 nonzero (0x%02x).\n", x[2]);
1137 	}
1138 	if ((base.edid_minor < 4 || x[3] != 0xfd) && x[4] != 0x00) {
1139 		/* 1.3, 3.10.3 */
1140 		fail("Monitor descriptor block has byte 4 nonzero (0x%02x).\n", x[4]);
1141 	}
1142 
1143 	base.seen_non_detailed_descriptor = true;
1144 	if (base.edid_minor == 0)
1145 		fail("Has descriptor blocks other than detailed timings.\n");
1146 
1147 	if (!memcmp(x, zero_descr, sizeof(zero_descr))) {
1148 		data_block = "Empty Descriptor";
1149 		printf("    %s\n", data_block.c_str());
1150 		fail("Use Dummy Descriptor instead of all zeroes.\n");
1151 		return;
1152 	}
1153 
1154 	switch (x[3]) {
1155 	case 0x0e:
1156 		detailed_epi(x);
1157 		return;
1158 	case 0x10:
1159 		data_block = "Dummy Descriptor";
1160 		printf("    %s:\n", data_block.c_str());
1161 		for (i = 5; i < 18; i++) {
1162 			if (x[i]) {
1163 				fail("Dummy block filled with garbage.\n");
1164 				break;
1165 			}
1166 		}
1167 		return;
1168 	case 0xf7:
1169 		data_block = "Established timings III";
1170 		printf("    %s:\n", data_block.c_str());
1171 		for (i = 0; i < ARRAY_SIZE(established_timings3_dmt_ids); i++)
1172 			if (x[6 + i / 8] & (1 << (7 - i % 8))) {
1173 				unsigned char dmt_id = established_timings3_dmt_ids[i];
1174 				char type[16];
1175 
1176 				sprintf(type, "DMT 0x%02x", dmt_id);
1177 				print_timings("      ", find_dmt_id(dmt_id), type);
1178 			}
1179 		return;
1180 	case 0xf8:
1181 		data_block = "CVT 3 Byte Timing Codes";
1182 		printf("    %s:\n", data_block.c_str());
1183 		if (x[5] != 0x01) {
1184 			fail("Invalid version number %u.\n", x[5]);
1185 			return;
1186 		}
1187 		for (i = 0; i < 4; i++)
1188 			detailed_cvt_descriptor("      ", x + 6 + (i * 3), !i);
1189 		return;
1190 	case 0xf9:
1191 		data_block = "Display Color Management Data";
1192 		printf("    %s:\n", data_block.c_str());
1193 		printf("      Version : %d\n", x[5]);
1194 		printf("      Red a3  : %.2f\n", (short)(x[6] | (x[7] << 8)) / 100.0);
1195 		printf("      Red a2  : %.2f\n", (short)(x[8] | (x[9] << 8)) / 100.0);
1196 		printf("      Green a3: %.2f\n", (short)(x[10] | (x[11] << 8)) / 100.0);
1197 		printf("      Green a2: %.2f\n", (short)(x[12] | (x[13] << 8)) / 100.0);
1198 		printf("      Blue a3 : %.2f\n", (short)(x[14] | (x[15] << 8)) / 100.0);
1199 		printf("      Blue a2 : %.2f\n", (short)(x[16] | (x[17] << 8)) / 100.0);
1200 		return;
1201 	case 0xfa:
1202 		data_block = "Standard Timing Identifications";
1203 		printf("    %s:\n", data_block.c_str());
1204 		for (cnt = i = 0; i < 6; i++) {
1205 			if (x[5 + i * 2] != 0x01 || x[5 + i * 2 + 1] != 0x01)
1206 				cnt++;
1207 			print_standard_timing("      ", x[5 + i * 2], x[5 + i * 2 + 1]);
1208 		}
1209 		if (!cnt)
1210 			warn("%s block without any timings.\n", data_block.c_str());
1211 		return;
1212 	case 0xfb: {
1213 		unsigned w_x, w_y;
1214 		unsigned gamma;
1215 
1216 		data_block = "Color Point Data";
1217 		printf("    %s:\n", data_block.c_str());
1218 		w_x = (x[7] << 2) | ((x[6] >> 2) & 3);
1219 		w_y = (x[8] << 2) | (x[6] & 3);
1220 		gamma = x[9];
1221 		printf("      Index: %u White: 0.%04u, 0.%04u", x[5],
1222 		       (w_x * 10000) / 1024, (w_y * 10000) / 1024);
1223 		if (gamma == 0xff)
1224 			printf(" Gamma: is defined in an extension block");
1225 		else
1226 			printf(" Gamma: %.2f", ((gamma + 100.0) / 100.0));
1227 		printf("\n");
1228 		if (x[10] == 0)
1229 			return;
1230 		w_x = (x[12] << 2) | ((x[11] >> 2) & 3);
1231 		w_y = (x[13] << 2) | (x[11] & 3);
1232 		gamma = x[14];
1233 		printf("      Index: %u White: 0.%04u, 0.%04u", x[10],
1234 		       (w_x * 10000) / 1024, (w_y * 10000) / 1024);
1235 		if (gamma == 0xff)
1236 			printf(" Gamma: is defined in an extension block");
1237 		else
1238 			printf(" Gamma: %.2f", ((gamma + 100.0) / 100.0));
1239 		printf("\n");
1240 		return;
1241 	}
1242 	case 0xfc:
1243 		data_block = "Display Product Name";
1244 		base.has_name_descriptor = 1;
1245 		printf("    %s: '%s'\n", data_block.c_str(), extract_string(x + 5, 13));
1246 		return;
1247 	case 0xfd:
1248 		detailed_display_range_limits(x);
1249 		return;
1250 	case 0xfe:
1251 		if (!base.has_spwg || base.detailed_block_cnt < 3) {
1252 			data_block = "Alphanumeric Data String";
1253 			printf("    %s: '%s'\n", data_block.c_str(),
1254 			       extract_string(x + 5, 13));
1255 			return;
1256 		}
1257 		if (base.detailed_block_cnt == 3) {
1258 			char buf[6] = { 0 };
1259 
1260 			data_block = "SPWG Descriptor #3";
1261 			printf("    %s:\n", data_block.c_str());
1262 			memcpy(buf, x + 5, 5);
1263 			if (strlen(buf) != 5)
1264 				fail("Invalid PC Maker P/N length.\n");
1265 			printf("      SPWG PC Maker P/N: '%s'\n", buf);
1266 			printf("      SPWG LCD Supplier EEDID Revision: %hhu\n", x[10]);
1267 			printf("      SPWG Manufacturer P/N: '%s'\n", extract_string(x + 11, 7));
1268 		} else {
1269 			data_block = "SPWG Descriptor #4";
1270 			printf("    %s:\n", data_block.c_str());
1271 			printf("      SMBUS Values: 0x%02hhx 0x%02hhx 0x%02hhx 0x%02hhx"
1272 			       " 0x%02hhx 0x%02hhx 0x%02hhx 0x%02hhx\n",
1273 			       x[5], x[6], x[7], x[8], x[9], x[10], x[11], x[12]);
1274 			printf("      LVDS Channels: %hhu\n", x[13]);
1275 			printf("      Panel Self Test %sPresent\n", x[14] ? "" : "Not ");
1276 			if (x[15] != 0x0a || x[16] != 0x20 || x[17] != 0x20)
1277 				fail("Invalid trailing data.\n");
1278 		}
1279 		return;
1280 	case 0xff: {
1281 		data_block = "Display Product Serial Number";
1282 		char *sn = extract_string(x + 5, 13);
1283 		if (hide_serial_numbers)
1284 			printf("    %s: ...\n", data_block.c_str());
1285 		else
1286 			printf("    %s: '%s'\n", data_block.c_str(), sn);
1287 		base.has_serial_string = 1;
1288 		return;
1289 	}
1290 	default:
1291 		printf("    %s Display Descriptor (0x%02hhx):",
1292 		       x[3] <= 0x0f ? "Manufacturer-Specified" : "Unknown", x[3]);
1293 		hex_block(" ", x + 2, 16);
1294 		if (x[3] > 0x0f)
1295 			fail("Unknown Type 0x%02hhx.\n", x[3]);
1296 		return;
1297 	}
1298 }
1299 
parse_base_block(const unsigned char * x)1300 void edid_state::parse_base_block(const unsigned char *x)
1301 {
1302 	time_t the_time;
1303 	struct tm *ptm;
1304 	int analog;
1305 	unsigned col_x, col_y;
1306 	bool has_preferred_timing = false;
1307 
1308 	data_block = "EDID Structure Version & Revision";
1309 	printf("  %s: %hhu.%hhu\n", data_block.c_str(), x[0x12], x[0x13]);
1310 	if (x[0x12] == 1) {
1311 		base.edid_minor = x[0x13];
1312 		if (base.edid_minor > 4)
1313 			warn("Unknown EDID minor version %u, assuming 1.4 conformance.\n", base.edid_minor);
1314 		if (base.edid_minor < 3)
1315 			warn("EDID 1.%u is deprecated, do not use.\n", base.edid_minor);
1316 	} else {
1317 		fail("Unknown EDID major version.\n");
1318 	}
1319 
1320 	data_block = "Vendor & Product Identification";
1321 	printf("  %s:\n", data_block.c_str());
1322 	printf("    Manufacturer: %s\n    Model: %u\n",
1323 	       manufacturer_name(x + 0x08),
1324 	       (unsigned short)(x[0x0a] + (x[0x0b] << 8)));
1325 	base.has_serial_number = x[0x0c] || x[0x0d] || x[0x0e] || x[0x0f];
1326 	if (base.has_serial_number) {
1327 		if (hide_serial_numbers)
1328 			printf("    Serial Number: ...\n");
1329 		else
1330 			printf("    Serial Number: %u\n",
1331 			       (unsigned)(x[0x0c] + (x[0x0d] << 8) +
1332 					  (x[0x0e] << 16) + (x[0x0f] << 24)));
1333 	}
1334 
1335 	time(&the_time);
1336 	ptm = localtime(&the_time);
1337 
1338 	unsigned char week = x[0x10];
1339 	int year = 1990 + x[0x11];
1340 
1341 	if (week) {
1342 		if (base.edid_minor <= 3 && week == 0xff)
1343 			fail("EDID 1.3 does not support week 0xff.\n");
1344 		// The max week is 53 in EDID 1.3 and 54 in EDID 1.4.
1345 		// No idea why there is a difference.
1346 		if (base.edid_minor <= 3 && week == 54)
1347 			fail("EDID 1.3 does not support week 54.\n");
1348 		if (week != 0xff && week > 54)
1349 			fail("Invalid week %u of manufacture.\n", week);
1350 		if (week != 0xff)
1351 			printf("    Made in: week %hhu of %d\n", week, year);
1352 	}
1353 	if (week == 0xff)
1354 		printf("    Model year: %d\n", year);
1355 	else if (!week)
1356 		printf("    Made in: %d\n", year);
1357 	if (year - 1 > ptm->tm_year + 1900)
1358 		fail("The year %d is more than one year in the future.\n", year);
1359 
1360 	/* display section */
1361 
1362 	data_block = "Basic Display Parameters & Features";
1363 	printf("  %s:\n", data_block.c_str());
1364 	if (x[0x14] & 0x80) {
1365 		analog = 0;
1366 		printf("    Digital display\n");
1367 		if (base.edid_minor >= 4) {
1368 			if ((x[0x14] & 0x70) == 0x00)
1369 				printf("    Color depth is undefined\n");
1370 			else if ((x[0x14] & 0x70) == 0x70)
1371 				fail("Color Bit Depth set to reserved value.\n");
1372 			else
1373 				printf("    Bits per primary color channel: %u\n",
1374 				       ((x[0x14] & 0x70) >> 3) + 4);
1375 
1376 			printf("    ");
1377 			switch (x[0x14] & 0x0f) {
1378 			case 0x00: printf("Digital interface is not defined\n"); break;
1379 			case 0x01: printf("DVI interface\n"); break;
1380 			case 0x02: printf("HDMI-a interface\n"); break;
1381 			case 0x03: printf("HDMI-b interface\n"); break;
1382 			case 0x04: printf("MDDI interface\n"); break;
1383 			case 0x05: printf("DisplayPort interface\n"); break;
1384 			default:
1385 				   printf("Unknown interface: 0x%02x\n", x[0x14] & 0x0f);
1386 				   fail("Digital Video Interface Standard set to reserved value 0x%02x.\n", x[0x14] & 0x0f);
1387 				   break;
1388 			}
1389 		} else if (base.edid_minor >= 2) {
1390 			if (x[0x14] & 0x01) {
1391 				printf("    DFP 1.x compatible TMDS\n");
1392 			}
1393 			if (x[0x14] & 0x7e)
1394 				fail("Digital Video Interface Standard set to reserved value 0x%02x.\n", x[0x14] & 0x7e);
1395 		} else if (x[0x14] & 0x7f) {
1396 			fail("Digital Video Interface Standard set to reserved value 0x%02x.\n", x[0x14] & 0x7f);
1397 		}
1398 	} else {
1399 		unsigned voltage = (x[0x14] & 0x60) >> 5;
1400 		unsigned sync = (x[0x14] & 0x0f);
1401 
1402 		analog = 1;
1403 		printf("    Analog display\n");
1404 		printf("    Input voltage level: %s V\n",
1405 		       voltage == 3 ? "0.7/0.7" :
1406 		       voltage == 2 ? "1.0/0.4" :
1407 		       voltage == 1 ? "0.714/0.286" :
1408 		       "0.7/0.3");
1409 
1410 		if (x[0x14] & 0x10)
1411 			printf("    Blank-to-black setup/pedestal\n");
1412 		else
1413 			printf("    Blank level equals black level\n");
1414 
1415 		if (sync)
1416 			printf("    Sync:%s%s%s%s\n",
1417 			       sync & 0x08 ? " Separate" : "",
1418 			       sync & 0x04 ? " Composite" : "",
1419 			       sync & 0x02 ? " SyncOnGreen" : "",
1420 			       sync & 0x01 ? " Serration" : "");
1421 	}
1422 
1423 	if (x[0x15] && x[0x16]) {
1424 		printf("    Maximum image size: %u cm x %u cm\n", x[0x15], x[0x16]);
1425 		base.max_display_width_mm = x[0x15] * 10;
1426 		base.max_display_height_mm = x[0x16] * 10;
1427 		if (x[0x15] < 10 || x[0x16] < 10)
1428 			warn("Dubious maximum image size (%ux%u is smaller than 10x10 cm).\n",
1429 			     x[0x15], x[0x16]);
1430 	}
1431 	else if (base.edid_minor >= 4 && (x[0x15] || x[0x16])) {
1432 		if (x[0x15])
1433 			printf("    Aspect ratio: %.2f (landscape)\n", (x[0x15] + 99) / 100.0);
1434 		else
1435 			printf("    Aspect ratio: %.2f (portrait)\n", 100.0 / (x[0x16] + 99));
1436 	} else {
1437 		/* Either or both can be zero for 1.3 and before */
1438 		printf("    Image size is variable\n");
1439 	}
1440 
1441 	if (x[0x17] == 0xff)
1442 		printf("    Gamma is defined in an extension block\n");
1443 	else
1444 		printf("    Gamma: %.2f\n", ((x[0x17] + 100.0) / 100.0));
1445 
1446 	if (x[0x18] & 0xe0) {
1447 		printf("    DPMS levels:");
1448 		if (x[0x18] & 0x80) printf(" Standby");
1449 		if (x[0x18] & 0x40) printf(" Suspend");
1450 		if (x[0x18] & 0x20) printf(" Off");
1451 		printf("\n");
1452 	}
1453 
1454 	if (analog || base.edid_minor < 4) {
1455 		printf("    ");
1456 		switch (x[0x18] & 0x18) {
1457 		case 0x00: printf("Monochrome or grayscale display\n"); break;
1458 		case 0x08: printf("RGB color display\n"); break;
1459 		case 0x10: printf("Non-RGB color display\n"); break;
1460 		case 0x18: printf("Undefined display color type\n");
1461 		}
1462 	} else {
1463 		printf("    Supported color formats: RGB 4:4:4");
1464 		if (x[0x18] & 0x08)
1465 			printf(", YCrCb 4:4:4");
1466 		if (x[0x18] & 0x10)
1467 			printf(", YCrCb 4:2:2");
1468 		printf("\n");
1469 	}
1470 
1471 	if (x[0x18] & 0x04) {
1472 		/*
1473 		 * The sRGB chromaticities are (x, y):
1474 		 * red:   0.640,  0.330
1475 		 * green: 0.300,  0.600
1476 		 * blue:  0.150,  0.060
1477 		 * white: 0.3127, 0.3290
1478 		 */
1479 		static const unsigned char srgb_chromaticity[10] = {
1480 			0xee, 0x91, 0xa3, 0x54, 0x4c, 0x99, 0x26, 0x0f, 0x50, 0x54
1481 		};
1482 		printf("    Default (sRGB) color space is primary color space\n");
1483 		if (memcmp(x + 0x19, srgb_chromaticity, sizeof(srgb_chromaticity)))
1484 			fail("sRGB is signaled, but the chromaticities do not match.\n");
1485 	}
1486 	if (base.edid_minor >= 4) {
1487 		/* 1.4 always has a preferred timing and this bit means something else. */
1488 		has_preferred_timing = true;
1489 		base.preferred_is_also_native = x[0x18] & 0x02;
1490 		printf("    First detailed timing %s the native pixel format and preferred refresh rate\n",
1491 		       base.preferred_is_also_native ? "includes" : "does not include");
1492 	} else {
1493 		if (x[0x18] & 0x02) {
1494 			printf("    First detailed timing is the preferred timing\n");
1495 			has_preferred_timing = true;
1496 			// 1.3 recommends that the preferred timing corresponds to the
1497 			// native timing, but it is not a requirement.
1498 			// That said, we continue with the assumption that it actually
1499 			// is the native timing.
1500 			base.preferred_is_also_native = true;
1501 		} else if (base.edid_minor == 3) {
1502 			fail("EDID 1.3 requires that the first detailed timing is the preferred timing.\n");
1503 		}
1504 	}
1505 
1506 	if (x[0x18] & 0x01) {
1507 		if (base.edid_minor >= 4) {
1508 			base.supports_continuous_freq = true;
1509 			printf("    Display is continuous frequency\n");
1510 		} else {
1511 			printf("    Supports GTF timings within operating range\n");
1512 			base.supports_gtf = true;
1513 		}
1514 	}
1515 
1516 	data_block = "Color Characteristics";
1517 	printf("  %s:\n", data_block.c_str());
1518 	col_x = (x[0x1b] << 2) | (x[0x19] >> 6);
1519 	col_y = (x[0x1c] << 2) | ((x[0x19] >> 4) & 3);
1520 	printf("    Red  : 0.%04u, 0.%04u\n",
1521 	       (col_x * 10000) / 1024, (col_y * 10000) / 1024);
1522 	col_x = (x[0x1d] << 2) | ((x[0x19] >> 2) & 3);
1523 	col_y = (x[0x1e] << 2) | (x[0x19] & 3);
1524 	printf("    Green: 0.%04u, 0.%04u\n",
1525 	       (col_x * 10000) / 1024, (col_y * 10000) / 1024);
1526 	col_x = (x[0x1f] << 2) | (x[0x1a] >> 6);
1527 	col_y = (x[0x20] << 2) | ((x[0x1a] >> 4) & 3);
1528 	printf("    Blue : 0.%04u, 0.%04u\n",
1529 	       (col_x * 10000) / 1024, (col_y * 10000) / 1024);
1530 	col_x = (x[0x21] << 2) | ((x[0x1a] >> 2) & 3);
1531 	col_y = (x[0x22] << 2) | (x[0x1a] & 3);
1532 	printf("    White: 0.%04u, 0.%04u\n",
1533 	       (col_x * 10000) / 1024, (col_y * 10000) / 1024);
1534 
1535 	data_block = "Established Timings I & II";
1536 	if (x[0x23] || x[0x24] || x[0x25]) {
1537 		printf("  %s:\n", data_block.c_str());
1538 		for (unsigned i = 0; i < ARRAY_SIZE(established_timings12); i++) {
1539 			if (x[0x23 + i / 8] & (1 << (7 - i % 8))) {
1540 				unsigned char dmt_id = established_timings12[i].dmt_id;
1541 				const struct timings *t;
1542 				char type[16];
1543 
1544 				if (dmt_id) {
1545 					sprintf(type, "DMT 0x%02x", dmt_id);
1546 					t = find_dmt_id(dmt_id);
1547 				} else {
1548 					t = &established_timings12[i].t;
1549 					sprintf(type, "%-8s", established_timings12[i].type);
1550 				}
1551 				print_timings("    ", t, type);
1552 			}
1553 		}
1554 	} else {
1555 		printf("  %s: none\n", data_block.c_str());
1556 	}
1557 	base.has_640x480p60_est_timing = x[0x23] & 0x20;
1558 
1559 	/*
1560 	 * Need to find the Display Range Limit info before reading
1561 	 * the standard timings.
1562 	 */
1563 	preparse_detailed_block(x + 0x36);
1564 	preparse_detailed_block(x + 0x48);
1565 	preparse_detailed_block(x + 0x5a);
1566 	preparse_detailed_block(x + 0x6c);
1567 
1568 	data_block = "Standard Timings";
1569 	bool found = false;
1570 	for (unsigned i = 0; i < 8; i++) {
1571 		if (x[0x26 + i * 2] != 0x01 || x[0x26 + i * 2 + 1] != 0x01) {
1572 			found = true;
1573 			break;
1574 		}
1575 	}
1576 	if (found) {
1577 		printf("  %s:\n", data_block.c_str());
1578 		for (unsigned i = 0; i < 8; i++)
1579 			print_standard_timing("    ", x[0x26 + i * 2], x[0x26 + i * 2 + 1]);
1580 	} else {
1581 		printf("  %s: none\n", data_block.c_str());
1582 	}
1583 
1584 	/* 18 byte descriptors */
1585 	if (has_preferred_timing && !x[0x36] && !x[0x37])
1586 		fail("Missing preferred timing.\n");
1587 
1588 	/* Look for SPWG Noteboook Panel EDID data blocks */
1589 	if ((x[0x36] || x[0x37]) &&
1590 	    (x[0x48] || x[0x49]) &&
1591 	    !x[0x5a] && !x[0x5b] && x[0x5d] == 0xfe &&
1592 	    !x[0x6c] && !x[0x6d] && x[0x6f] == 0xfe &&
1593 	    (x[0x79] == 1 || x[0x79] == 2) && x[0x7a] <= 1)
1594 		base.has_spwg = true;
1595 
1596 	for (unsigned i = 0; i < (base.has_spwg ? 2 : 4); i++)
1597 		if (x[0x36 + i * 18] || x[0x37 + i * 18])
1598 			cta.preparsed_total_dtds++;
1599 
1600 	data_block = "Detailed Timing Descriptors";
1601 	printf("  %s:\n", data_block.c_str());
1602 	detailed_block(x + 0x36);
1603 	detailed_block(x + 0x48);
1604 	detailed_block(x + 0x5a);
1605 	detailed_block(x + 0x6c);
1606 	base.has_spwg = false;
1607 	if (!base.preferred_is_also_native) {
1608 		cta.native_timings.clear();
1609 		base.preferred_timing = timings_ext();
1610 	}
1611 
1612 	data_block = block;
1613 	if (x[0x7e])
1614 		printf("  Extension blocks: %u\n", x[0x7e]);
1615 	if (x[0x7e] + 1U != num_blocks)
1616 		fail("EDID specified %u extension block(s), but found %u extension block(s).\n",
1617 		     x[0x7e], num_blocks - 1);
1618 
1619 	block = block_name(0x00);
1620 	data_block.clear();
1621 	do_checksum("", x, EDID_PAGE_SIZE);
1622 	if (base.edid_minor >= 3) {
1623 		if (!base.has_name_descriptor)
1624 			fail("Missing Display Product Name.\n");
1625 		if ((base.edid_minor == 3 || base.supports_continuous_freq) &&
1626 		    !base.has_display_range_descriptor)
1627 			fail("Missing Display Range Limits Descriptor.\n");
1628 	}
1629 }
1630 
check_base_block()1631 void edid_state::check_base_block()
1632 {
1633 	data_block = "Base EDID";
1634 
1635 	/*
1636 	 * Allow for regular rounding of vertical and horizontal frequencies.
1637 	 * The spec says that the pixelclock shall be rounded up, so there is
1638 	 * no need to take rounding into account.
1639 	 */
1640 	if (base.has_display_range_descriptor &&
1641 	    (min_vert_freq_hz + 0.5 < base.min_display_vert_freq_hz ||
1642 	     (max_vert_freq_hz >= base.max_display_vert_freq_hz + 0.5 && base.max_display_vert_freq_hz) ||
1643 	     min_hor_freq_hz + 500 < base.min_display_hor_freq_hz ||
1644 	     (max_hor_freq_hz >= base.max_display_hor_freq_hz + 500 && base.max_display_hor_freq_hz) ||
1645 	     (max_pixclk_khz > base.max_display_pixclk_khz && base.max_display_pixclk_khz))) {
1646 		/*
1647 		 * Check if it is really out of range, or if it could be a rounding error.
1648 		 * The EDID spec is not very clear about rounding.
1649 		 */
1650 		bool out_of_range =
1651 			min_vert_freq_hz + 1.0 <= base.min_display_vert_freq_hz ||
1652 			(max_vert_freq_hz >= base.max_display_vert_freq_hz + 1.0 && base.max_display_vert_freq_hz) ||
1653 			min_hor_freq_hz + 1000 <= base.min_display_hor_freq_hz ||
1654 			(max_hor_freq_hz >= base.max_display_hor_freq_hz + 1000 && base.max_display_hor_freq_hz) ||
1655 			(max_pixclk_khz >= base.max_display_pixclk_khz + 10000 && base.max_display_pixclk_khz);
1656 
1657 		std::string err("Some timings are out of range of the Monitor Ranges:\n");
1658 		char buf[512];
1659 
1660 		if (min_vert_freq_hz + 0.5 < base.min_display_vert_freq_hz ||
1661 		    (max_vert_freq_hz >= base.max_display_vert_freq_hz + 0.5 && base.max_display_vert_freq_hz)) {
1662 			sprintf(buf, "    Vertical Freq: %.3f - %.3f Hz (Monitor: %u.000 - %u.000 Hz)\n",
1663 				min_vert_freq_hz, max_vert_freq_hz,
1664 				base.min_display_vert_freq_hz, base.max_display_vert_freq_hz);
1665 			err += buf;
1666 		}
1667 
1668 		if (min_hor_freq_hz + 500 < base.min_display_hor_freq_hz ||
1669 		    (max_hor_freq_hz >= base.max_display_hor_freq_hz + 500 && base.max_display_hor_freq_hz)) {
1670 			sprintf(buf, "    Horizontal Freq: %.3f - %.3f kHz (Monitor: %.3f - %.3f kHz)\n",
1671 				min_hor_freq_hz / 1000.0, max_hor_freq_hz / 1000.0,
1672 				base.min_display_hor_freq_hz / 1000.0, base.max_display_hor_freq_hz / 1000.0);
1673 			err += buf;
1674 		}
1675 
1676 		if (max_pixclk_khz >= base.max_display_pixclk_khz && base.max_display_pixclk_khz) {
1677 			sprintf(buf, "    Maximum Clock: %.3f MHz (Monitor: %.3f MHz)\n",
1678 				max_pixclk_khz / 1000.0, base.max_display_pixclk_khz / 1000.0);
1679 			err += buf;
1680 		}
1681 
1682 		if (!out_of_range)
1683 			err += "    Could be due to a Monitor Range off-by-one rounding issue\n";
1684 
1685 		/*
1686 		 * EDID 1.4 states (in an Errata) that explicitly defined
1687 		 * timings supersede the monitor range definition.
1688 		 */
1689 		msg(!out_of_range || base.edid_minor >= 4, "%s", err.c_str());
1690 	}
1691 	// The base block will only go up to 255x255 cm for the display size,
1692 	// so don't fail if one or more image sizes exceeds that.
1693 	if (!base.max_display_width_mm && !base.max_display_height_mm &&
1694 	    dtd_max_hsize_mm && dtd_max_vsize_mm &&
1695 	    dtd_max_hsize_mm <= 2559 && dtd_max_vsize_mm <= 2559) {
1696 		fail("The DTD image sizes all fit inside 255x255cm, but no display size was set.\n");
1697 	}
1698 	// Secondary GTF curves start at a specific frequency. Any legacy timings
1699 	// that have a positive hsync and negative vsync must be less than that
1700 	// frequency to avoid confusion.
1701 	if (base.supports_sec_gtf && base.max_pos_neg_hor_freq_khz >= base.sec_gtf_start_freq)
1702 		fail("Second GTF start frequency %u is less than the highest P/N frequency %u.\n",
1703 		     base.sec_gtf_start_freq, base.max_pos_neg_hor_freq_khz);
1704 	if (base.edid_minor == 3 && num_blocks > 2 && !block_map.saw_block_1)
1705 		fail("EDID 1.3 requires a Block Map Extension in Block 1 if there are more than 2 blocks in the EDID.\n");
1706 	if (base.edid_minor == 3 && num_blocks > 128 && !block_map.saw_block_128)
1707 		fail("EDID 1.3 requires a Block Map Extension in Block 128 if there are more than 128 blocks in the EDID.\n");
1708 	if (block_map.saw_block_128 && num_blocks > 255)
1709 		fail("If there is a Block Map Extension in Block 128 then the maximum number of blocks is 255.\n");
1710 }
1711