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