Ubuntu Pastebin Paste from fritsch at Sun, 22 Jul 2018 10:08:45 +0000 Download as text 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 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff] [ 0.000000] On node 0 totalpages: 2008537 [ 0.000000] DMA zone: 64 pages used for memmap [ 0.000000] DMA zone: 27 pages reserved [ 0.000000] DMA zone: 3997 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 6745 pages used for memmap [ 0.000000] DMA32 zone: 431676 pages, LIFO batch:31 [ 0.000000] Normal zone: 24576 pages used for memmap [ 0.000000] Normal zone: 1572864 pages, LIFO batch:31 [ 0.000000] Reserving Intel graphics memory at [mem 0x70000000-0x7fffffff] [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1]) [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.000000] ACPI: IRQ0 used by override. [ 0.000000] ACPI: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x0003f000-0x0003ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x10000000-0x12150fff] [ 0.000000] PM: Registered nosave memory: [mem 0x6b4bf000-0x6d5dffff] [ 0.000000] PM: Registered nosave memory: [mem 0x6d6b2000-0x6d9d5fff] [ 0.000000] PM: Registered nosave memory: [mem 0x6d9d6000-0x6dd7cfff] [ 0.000000] PM: Registered nosave memory: [mem 0x6dd7d000-0x6ddd6fff] [ 0.000000] PM: Registered nosave memory: [mem 0x6e150000-0x6e150fff] [ 0.000000] PM: Registered nosave memory: [mem 0x6e151000-0x6e17afff] [ 0.000000] PM: Registered nosave memory: [mem 0x6e756000-0x6e757fff] [ 0.000000] PM: Registered nosave memory: [mem 0x6f000000-0x7fffffff] [ 0.000000] PM: Registered nosave memory: [mem 0x80000000-0xcfffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xd0ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xd1000000-0xdfffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe041fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfe042000-0xfe044fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfe045000-0xfe8fffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfe900000-0xfe902fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfe903000-0xfebfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xfedfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff7fffff] [ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff] [ 0.000000] e820: [mem 0x80000000-0xcfffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.000000] random: get_random_bytes called from start_kernel+0x94/0x4e0 with crng_init=0 [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] percpu: Embedded 45 pages/cpu @ (ptrval) s146008 r8192 d30120 u524288 [ 0.000000] pcpu-alloc: s146008 r8192 d30120 u524288 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1977125 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.17.8-apollo1+ root=UUID=a0c777bd-3f23-4799-a440-e0c2a051ecd7 ro quiet loglevel=0 drm.edid_firmware=DP-2:edid/edid.bin rootfstype=ext4 drm.debug=0xe [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 7624428K/8034148K available (12300K kernel code, 2367K rwdata, 4060K rodata, 2376K init, 2356K bss, 409720K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] Kernel/User page tables isolation: enabled [ 0.000000] ftrace: allocating 38960 entries in 153 pages [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16 [ 0.000000] Console: colour dummy device 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] ACPI: Core revision 20180313 [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns [ 0.000000] hpet clockevent registered [ 0.004000] APIC: Switch to symmetric I/O mode setup [ 0.004000] DMAR: Host address width 39 [ 0.004000] DMAR: DRHD base: 0x000000fed64000 flags: 0x0 [ 0.004000] DMAR: dmar0: reg_base_addr fed64000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e [ 0.004000] DMAR: DRHD base: 0x000000fed65000 flags: 0x1 [ 0.004000] DMAR: dmar1: reg_base_addr fed65000 ver 1:0 cap d2008c40660462 ecap f050da [ 0.004000] DMAR: RMRR base: 0x0000006d5a5000 end: 0x0000006d5c4fff [ 0.004000] DMAR: RMRR base: 0x0000006f800000 end: 0x0000007fffffff [ 0.004000] DMAR-IR: IOAPIC id 1 under DRHD base 0xfed65000 IOMMU 1 [ 0.004000] DMAR-IR: HPET id 0 under DRHD base 0xfed65000 [ 0.004000] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.004000] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.004000] x2apic enabled [ 0.004000] Switched APIC routing to cluster x2apic. [ 0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.032000] tsc: PIT calibration matches HPET. 1 loops [ 0.032000] tsc: Detected 1497.658 MHz processor [ 0.032000] tsc: Detected 1497.600 MHz TSC [ 0.032000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns [ 0.032000] Calibrating delay loop (skipped), value calculated using timer frequency.. 2995.20 BogoMIPS (lpj=5990400) [ 0.032000] pid_max: default: 32768 minimum: 301 [ 0.032000] Security Framework initialized [ 0.032000] Yama: becoming mindful. [ 0.032000] AppArmor: AppArmor initialized [ 0.038469] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) [ 0.039757] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.039832] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) [ 0.039873] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) [ 0.040359] CPU: Physical Processor ID: 0 [ 0.040361] CPU: Processor Core ID: 0 [ 0.040390] mce: CPU supports 7 MCE banks [ 0.040440] CPU0: Thermal monitoring enabled (TM1) [ 0.040519] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0 [ 0.040521] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.040524] Spectre V2 : Mitigation: Full generic retpoline [ 0.040525] Speculative Store Bypass: Vulnerable [ 0.054943] Freeing SMP alternatives memory: 36K [ 0.066195] TSC deadline timer enabled [ 0.066205] smpboot: CPU0: Intel(R) Pentium(R) CPU J4205 @ 1.50GHz (family: 0x6, model: 0x5c, stepping: 0x9) [ 0.066360] mce: [Hardware Error]: Machine check events logged [ 0.066365] mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 4: a600000000020408 [ 0.066366] mce: [Hardware Error]: TSC 0 ADDR fef13b80 [ 0.066371] mce: [Hardware Error]: PROCESSOR 0:506c9 TIME 1532252707 SOCKET 0 APIC 0 microcode 2c [ 0.066464] Performance Events: PEBS fmt3+, Goldmont events, 32-deep LBR, full-width counters, Intel PMU driver. [ 0.066493] ... version: 4 [ 0.066494] ... bit width: 48 [ 0.066496] ... generic registers: 4 [ 0.066497] ... value mask: 0000ffffffffffff [ 0.066498] ... max period: 00007fffffffffff [ 0.066499] ... fixed-purpose events: 3 [ 0.066500] ... event mask: 000000070000000f [ 0.066577] Hierarchical SRCU implementation. [ 0.068000] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.068000] smp: Bringing up secondary CPUs ... [ 0.068000] x86: Booting SMP configuration: [ 0.068000] .... node #0, CPUs: #1 #2 #3 [ 0.068652] smp: Brought up 1 node, 4 CPUs [ 0.068652] smpboot: Max logical packages: 1 [ 0.068652] smpboot: Total of 4 processors activated (11980.80 BogoMIPS) [ 0.070473] devtmpfs: initialized [ 0.072069] x86/mm: Memory block size: 128MB [ 0.073529] evm: security.selinux [ 0.073531] evm: security.SMACK64 [ 0.073532] evm: security.SMACK64EXEC [ 0.073533] evm: security.SMACK64TRANSMUTE [ 0.073534] evm: security.SMACK64MMAP [ 0.073534] evm: security.apparmor [ 0.073536] evm: security.ima [ 0.073537] evm: security.capability [ 0.073580] PM: Registering ACPI NVS region [mem 0x6d6b2000-0x6d9d5fff] (3293184 bytes) [ 0.073580] PM: Registering ACPI NVS region [mem 0x6e150000-0x6e150fff] (4096 bytes) [ 0.073580] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.073580] futex hash table entries: 1024 (order: 4, 65536 bytes) [ 0.073580] pinctrl core: initialized pinctrl subsystem [ 0.073580] RTC time: 9:45:07, date: 07/22/18 [ 0.073580] NET: Registered protocol family 16 [ 0.073580] audit: initializing netlink subsys (disabled) [ 0.073580] audit: type=2000 audit(1532252707.072:1): state=initialized audit_enabled=0 res=1 [ 0.073580] cpuidle: using governor ladder [ 0.073580] cpuidle: using governor menu [ 0.073580] ACPI: bus type PCI registered [ 0.073580] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.073580] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 0.073580] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 [ 0.073580] PCI: Using configuration type 1 for base access [ 0.078145] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.078145] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.078145] ACPI: Added _OSI(Module Device) [ 0.078145] ACPI: Added _OSI(Processor Device) [ 0.078145] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.078145] ACPI: Added _OSI(Processor Aggregator Device) [ 0.078145] ACPI: Added _OSI(Linux-Dell-Video) [ 0.092419] ACPI: 8 ACPI AML tables successfully acquired and loaded [ 0.100238] ACPI: Dynamic OEM Table Load: [ 0.100251] ACPI: SSDT 0xFFFF8C44B5C2DA00 000102 (v02 PmRef Cpu0Cst 00003001 INTL 20120913) [ 0.100981] ACPI: Dynamic OEM Table Load: [ 0.100991] ACPI: SSDT 0xFFFF8C44B5C2D400 00015F (v02 PmRef ApIst 00003000 INTL 20120913) [ 0.101412] ACPI: Dynamic OEM Table Load: [ 0.101421] ACPI: SSDT 0xFFFF8C44B63FD0C0 00008D (v02 PmRef ApCst 00003000 INTL 20120913) [ 0.103518] ACPI: Interpreter enabled [ 0.103563] ACPI: (supports S0 S3 S4 S5) [ 0.103566] ACPI: Using IOAPIC for interrupt routing [ 0.103698] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.104298] ACPI: Enabled 8 GPEs in block 00 to 7F [ 0.123762] ACPI: Power Resource [FN00] (on) [ 0.125143] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.125153] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.126371] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability] [ 0.127650] PCI host bridge to bus 0000:00 [ 0.127655] pci_bus 0000:00: root bus resource [io 0x0070-0x0077] [ 0.127658] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window] [ 0.127661] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window] [ 0.127663] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.127666] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.127669] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] [ 0.127672] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window] [ 0.127674] pci_bus 0000:00: root bus resource [mem 0x70000001-0x7fffffff window] [ 0.127677] pci_bus 0000:00: root bus resource [mem 0x6f800001-0x6fffffff window] [ 0.127680] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window] [ 0.127683] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window] [ 0.127687] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.127705] pci 0000:00:00.0: [8086:5af0] type 00 class 0x060000 [ 0.128224] pci 0000:00:02.0: [8086:5a84] type 00 class 0x030000 [ 0.128246] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x90ffffff 64bit] [ 0.128258] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref] [ 0.128266] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f] [ 0.128293] pci 0000:00:02.0: BAR 2: assigned to efifb [ 0.128782] pci 0000:00:0e.0: [8086:5a98] type 00 class 0x040300 [ 0.128810] pci 0000:00:0e.0: reg 0x10: [mem 0x91310000-0x91313fff 64bit] [ 0.128840] pci 0000:00:0e.0: reg 0x20: [mem 0x91000000-0x910fffff 64bit] [ 0.128905] pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold [ 0.129395] pci 0000:00:0f.0: [8086:5a9a] type 00 class 0x078000 [ 0.129437] pci 0000:00:0f.0: reg 0x10: [mem 0x9131b000-0x9131bfff 64bit] [ 0.129565] pci 0000:00:0f.0: PME# supported from D3hot [ 0.129998] pci 0000:00:12.0: [8086:5ae3] type 00 class 0x010601 [ 0.130022] pci 0000:00:12.0: reg 0x10: [mem 0x91314000-0x91315fff] [ 0.130031] pci 0000:00:12.0: reg 0x14: [mem 0x91318000-0x913180ff] [ 0.130041] pci 0000:00:12.0: reg 0x18: [io 0xf090-0xf097] [ 0.130052] pci 0000:00:12.0: reg 0x1c: [io 0xf080-0xf083] [ 0.130063] pci 0000:00:12.0: reg 0x20: [io 0xf060-0xf07f] [ 0.130072] pci 0000:00:12.0: reg 0x24: [mem 0x91317000-0x913177ff] [ 0.130122] pci 0000:00:12.0: PME# supported from D3hot [ 0.130522] pci 0000:00:13.0: [8086:5ad8] type 01 class 0x060400 [ 0.130618] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold [ 0.131027] pci 0000:00:13.1: [8086:5ad9] type 01 class 0x060400 [ 0.131127] pci 0000:00:13.1: PME# supported from D0 D3hot D3cold [ 0.131544] pci 0000:00:13.2: [8086:5ada] type 01 class 0x060400 [ 0.131642] pci 0000:00:13.2: PME# supported from D0 D3hot D3cold [ 0.132059] pci 0000:00:13.3: [8086:5adb] type 01 class 0x060400 [ 0.132159] pci 0000:00:13.3: PME# supported from D0 D3hot D3cold [ 0.132593] pci 0000:00:15.0: [8086:5aa8] type 00 class 0x0c0330 [ 0.132622] pci 0000:00:15.0: reg 0x10: [mem 0x91300000-0x9130ffff 64bit] [ 0.132714] pci 0000:00:15.0: PME# supported from D3hot D3cold [ 0.133169] pci 0000:00:1f.0: [8086:5ae8] type 00 class 0x060100 [ 0.133697] pci 0000:00:1f.1: [8086:5ad4] type 00 class 0x0c0500 [ 0.133773] pci 0000:00:1f.1: reg 0x10: [mem 0x91316000-0x913160ff 64bit] [ 0.133851] pci 0000:00:1f.1: reg 0x20: [io 0xf040-0xf05f] [ 0.134432] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000 [ 0.134465] pci 0000:01:00.0: reg 0x10: [io 0xe000-0xe0ff] [ 0.134494] pci 0000:01:00.0: reg 0x18: [mem 0x91204000-0x91204fff 64bit] [ 0.134515] pci 0000:01:00.0: reg 0x20: [mem 0x91200000-0x91203fff 64bit pref] [ 0.134534] pci 0000:01:00.0: can't set Max Payload Size to 256; if necessary, use "pci=pcie_bus_safe" and report a bug [ 0.134645] pci 0000:01:00.0: supports D1 D2 [ 0.134648] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.134800] pci 0000:00:13.0: PCI bridge to [bus 01] [ 0.134806] pci 0000:00:13.0: bridge window [io 0xe000-0xefff] [ 0.134811] pci 0000:00:13.0: bridge window [mem 0x91200000-0x912fffff] [ 0.134902] pci 0000:00:13.1: PCI bridge to [bus 02] [ 0.135012] pci 0000:03:00.0: [1b21:0612] type 00 class 0x010601 [ 0.135048] pci 0000:03:00.0: reg 0x10: [io 0xd050-0xd057] [ 0.135062] pci 0000:03:00.0: reg 0x14: [io 0xd040-0xd043] [ 0.135075] pci 0000:03:00.0: reg 0x18: [io 0xd030-0xd037] [ 0.135088] pci 0000:03:00.0: reg 0x1c: [io 0xd020-0xd023] [ 0.135100] pci 0000:03:00.0: reg 0x20: [io 0xd000-0xd01f] [ 0.135114] pci 0000:03:00.0: reg 0x24: [mem 0x91100000-0x911001ff] [ 0.135323] pci 0000:00:13.2: PCI bridge to [bus 03] [ 0.135328] pci 0000:00:13.2: bridge window [io 0xd000-0xdfff] [ 0.135333] pci 0000:00:13.2: bridge window [mem 0x91100000-0x911fffff] [ 0.135416] pci 0000:00:13.3: PCI bridge to [bus 04] [ 0.137316] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.137434] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.137549] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.137665] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.137779] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.137895] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.138009] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.138126] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 *15), disabled. [ 0.139285] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 0.139285] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 0.139285] pci 0000:00:02.0: vgaarb: bridge control possible [ 0.139285] vgaarb: loaded [ 0.139285] SCSI subsystem initialized [ 0.139285] libata version 3.00 loaded. [ 0.139285] ACPI: bus type USB registered [ 0.139285] usbcore: registered new interface driver usbfs [ 0.139285] usbcore: registered new interface driver hub [ 0.139285] usbcore: registered new device driver usb [ 0.140049] EDAC MC: Ver: 3.0.0 [ 0.140193] Registered efivars operations [ 0.169453] PCI: Using ACPI for IRQ routing [ 0.197868] PCI: pci_cache_line_size set to 64 bytes [ 0.197946] e820: reserve RAM buffer [mem 0x0003f000-0x0003ffff] [ 0.197948] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff] [ 0.197950] e820: reserve RAM buffer [mem 0x6b4bf000-0x6bffffff] [ 0.197952] e820: reserve RAM buffer [mem 0x6d6b2000-0x6fffffff] [ 0.197954] e820: reserve RAM buffer [mem 0x6e150000-0x6fffffff] [ 0.197956] e820: reserve RAM buffer [mem 0x6e756000-0x6fffffff] [ 0.197958] e820: reserve RAM buffer [mem 0x6f000000-0x6fffffff] [ 0.198145] NetLabel: Initializing [ 0.198147] NetLabel: domain hash size = 128 [ 0.198148] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.198174] NetLabel: unlabeled traffic allowed by default [ 0.198202] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.198202] hpet0: 8 comparators, 64-bit 19.200000 MHz counter [ 0.200039] clocksource: Switched to clocksource tsc-early [ 0.227749] VFS: Disk quotas dquot_6.6.0 [ 0.227781] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.228027] AppArmor: AppArmor Filesystem Enabled [ 0.228088] pnp: PnP ACPI init [ 0.228573] system 00:00: [io 0x0280-0x028f] has been reserved [ 0.228577] system 00:00: [io 0x0290-0x029f] has been reserved [ 0.228580] system 00:00: [io 0x02a0-0x02af] has been reserved [ 0.228590] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.229151] pnp 00:01: [dma 0 disabled] [ 0.229246] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.229349] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.230189] system 00:03: [io 0x0680-0x069f] has been reserved [ 0.230192] system 00:03: [io 0x0400-0x047f] has been reserved [ 0.230195] system 00:03: [io 0x0500-0x05fe] has been reserved [ 0.230204] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.230820] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved [ 0.230824] system 00:04: [mem 0xfea00000-0xfeafffff] has been reserved [ 0.230827] system 00:04: [mem 0xfed01000-0xfed01fff] has been reserved [ 0.230830] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved [ 0.230833] system 00:04: [mem 0xfed06000-0xfed06fff] has been reserved [ 0.230837] system 00:04: [mem 0xfed08000-0xfed09fff] has been reserved [ 0.230840] system 00:04: [mem 0xfed80000-0xfedbffff] has been reserved [ 0.230843] system 00:04: [mem 0xfed1c000-0xfed1cfff] has been reserved [ 0.230846] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved [ 0.230854] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.231099] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.231355] pnp: PnP ACPI: found 6 devices [ 0.239148] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.239198] pci 0000:00:13.0: PCI bridge to [bus 01] [ 0.239203] pci 0000:00:13.0: bridge window [io 0xe000-0xefff] [ 0.239209] pci 0000:00:13.0: bridge window [mem 0x91200000-0x912fffff] [ 0.239218] pci 0000:00:13.1: PCI bridge to [bus 02] [ 0.239229] pci 0000:00:13.2: PCI bridge to [bus 03] [ 0.239233] pci 0000:00:13.2: bridge window [io 0xd000-0xdfff] [ 0.239238] pci 0000:00:13.2: bridge window [mem 0x91100000-0x911fffff] [ 0.239246] pci 0000:00:13.3: PCI bridge to [bus 04] [ 0.239260] pci_bus 0000:00: resource 4 [io 0x0070-0x0077] [ 0.239263] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window] [ 0.239266] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window] [ 0.239269] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 0.239271] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] [ 0.239274] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] [ 0.239277] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window] [ 0.239280] pci_bus 0000:00: resource 11 [mem 0x70000001-0x7fffffff window] [ 0.239282] pci_bus 0000:00: resource 12 [mem 0x6f800001-0x6fffffff window] [ 0.239285] pci_bus 0000:00: resource 13 [mem 0x80000000-0xcfffffff window] [ 0.239288] pci_bus 0000:00: resource 14 [mem 0xe0000000-0xefffffff window] [ 0.239291] pci_bus 0000:01: resource 0 [io 0xe000-0xefff] [ 0.239294] pci_bus 0000:01: resource 1 [mem 0x91200000-0x912fffff] [ 0.239297] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff] [ 0.239300] pci_bus 0000:03: resource 1 [mem 0x91100000-0x911fffff] [ 0.239531] NET: Registered protocol family 2 [ 0.239763] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes) [ 0.239853] TCP established hash table entries: 65536 (order: 7, 524288 bytes) [ 0.240247] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 0.240758] TCP: Hash tables configured (established 65536 bind 65536) [ 0.240867] UDP hash table entries: 4096 (order: 5, 131072 bytes) [ 0.240975] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) [ 0.241162] NET: Registered protocol family 1 [ 0.241192] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.241689] PCI: CLS 0 bytes, default 64 [ 0.241777] Unpacking initramfs... [ 0.620672] Freeing initrd memory: 13008K [ 0.620782] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.620788] software IO TLB [mem 0x5b000000-0x5f000000] (64MB) mapped at [ (ptrval)- (ptrval)] [ 0.620907] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns [ 0.620936] clocksource: Switched to clocksource tsc [ 0.621122] Scanning for low memory corruption every 60 seconds [ 0.622282] Initialise system trusted keyrings [ 0.622302] Key type blacklist registered [ 0.622380] workingset: timestamp_bits=36 max_order=21 bucket_order=0 [ 0.625053] zbud: loaded [ 0.626095] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.626497] fuse init (API version 7.26) [ 0.626632] pstore: using deflate compression [ 0.629667] Key type asymmetric registered [ 0.629670] Asymmetric key parser 'x509' registered [ 0.629760] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 0.629853] io scheduler noop registered [ 0.629854] io scheduler deadline registered [ 0.629949] io scheduler cfq registered (default) [ 0.631535] pcieport 0000:00:13.0: Signaling PME with IRQ 122 [ 0.631570] pcieport 0000:00:13.1: Signaling PME with IRQ 123 [ 0.631614] pcieport 0000:00:13.2: Signaling PME with IRQ 124 [ 0.631651] pcieport 0000:00:13.3: Signaling PME with IRQ 125 [ 0.631798] efifb: probing for efifb [ 0.631825] efifb: framebuffer at 0x80000000, using 3072k, total 3072k [ 0.631827] efifb: mode is 1024x768x32, linelength=4096, pages=1 [ 0.631828] efifb: scrolling: redraw [ 0.631831] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.636128] Console: switching to colour frame buffer device 128x48 [ 0.640200] fb0: EFI VGA frame buffer device [ 0.640221] intel_idle: MWAIT substates: 0x11242020 [ 0.640223] intel_idle: v0.4.1 model 0x5C [ 0.640671] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.640856] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 0.640889] ACPI: Power Button [PWRB] [ 0.645012] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.645015] ACPI: Thermal Zone [TZ01] (61 C) [ 0.645326] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 0.666343] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.669441] Linux agpgart interface v0.103 [ 0.672859] loop: module loaded [ 0.673700] libphy: Fixed MDIO Bus: probed [ 0.673702] tun: Universal TUN/TAP device driver, 1.6 [ 0.673822] PPP generic driver version 2.4.2 [ 0.673935] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.673945] ehci-pci: EHCI PCI platform driver [ 0.673959] ehci-platform: EHCI generic platform driver [ 0.673980] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.673984] ohci-pci: OHCI PCI platform driver [ 0.673997] ohci-platform: OHCI generic platform driver [ 0.674007] uhci_hcd: USB Universal Host Controller Interface driver [ 0.674346] xhci_hcd 0000:00:15.0: xHCI Host Controller [ 0.674357] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1 [ 0.675451] xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x01109810 [ 0.675460] xhci_hcd 0000:00:15.0: cache line size of 64 is not supported [ 0.675700] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.17 [ 0.675703] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.675706] usb usb1: Product: xHCI Host Controller [ 0.675708] usb usb1: Manufacturer: Linux 4.17.8-apollo1+ xhci-hcd [ 0.675711] usb usb1: SerialNumber: 0000:00:15.0 [ 0.675967] hub 1-0:1.0: USB hub found [ 0.675987] hub 1-0:1.0: 8 ports detected [ 0.676993] xhci_hcd 0000:00:15.0: xHCI Host Controller [ 0.676999] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2 [ 0.677005] xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed [ 0.677069] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.17 [ 0.677072] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.677074] usb usb2: Product: xHCI Host Controller [ 0.677077] usb usb2: Manufacturer: Linux 4.17.8-apollo1+ xhci-hcd [ 0.677079] usb usb2: SerialNumber: 0000:00:15.0 [ 0.677296] hub 2-0:1.0: USB hub found [ 0.677313] hub 2-0:1.0: 7 ports detected [ 0.678302] i8042: PNP: No PS/2 controller found. [ 0.678509] mousedev: PS/2 mouse device common for all mice [ 0.678768] rtc_cmos 00:05: RTC can wake from S4 [ 0.679361] rtc_cmos 00:05: registered as rtc0 [ 0.679394] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs [ 0.679404] i2c /dev entries driver [ 0.679519] device-mapper: uevent: version 1.0.3 [ 0.679672] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com [ 0.679685] intel_pstate: Intel P-state driver initializing [ 0.680223] ledtrig-cpu: registered to indicate activity on CPUs [ 0.680227] EFI Variables Facility v0.08 2004-May-17 [ 0.715278] NET: Registered protocol family 10 [ 0.721032] Segment Routing with IPv6 [ 0.721076] NET: Registered protocol family 17 [ 0.721095] Key type dns_resolver registered [ 0.721813] RAS: Correctable Errors collector initialized. [ 0.721856] microcode: sig=0x506c9, pf=0x1, revision=0x2c [ 0.722033] microcode: Microcode Update Driver: v2.2. [ 0.722048] sched_clock: Marking stable (722026397, 0)->(695612210, 26414187) [ 0.722398] registered taskstats version 1 [ 0.722411] Loading compiled-in X.509 certificates [ 0.726161] Loaded X.509 cert 'Build time autogenerated kernel key: 530d6c3f72f4349e05d16f20381cb27deb6ca960' [ 0.726207] zswap: loaded using pool lzo/zbud [ 0.731685] Key type big_key registered [ 0.731692] Key type trusted registered [ 0.734333] Key type encrypted registered [ 0.734339] AppArmor: AppArmor sha1 policy hashing enabled [ 0.734342] ima: No TPM chip found, activating TPM-bypass! (rc=-19) [ 0.734362] ima: Allocated hash algorithm: sha1 [ 0.734387] evm: HMAC attrs: 0x1 [ 0.734946] Magic number: 10:847:778 [ 0.735224] rtc_cmos 00:05: setting system clock to 2018-07-22 09:45:08 UTC (1532252708) [ 0.815382] Freeing unused kernel memory: 2376K [ 0.828104] Write protecting the kernel read-only data: 18432k [ 0.830203] Freeing unused kernel memory: 2008K [ 0.830453] Freeing unused kernel memory: 36K [ 0.840444] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.840445] x86/mm: Checking user space page tables [ 0.850492] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.962656] ahci 0000:00:12.0: version 3.0 [ 0.964824] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded [ 0.964853] r8169 0000:01:00.0: enabling device (0000 -> 0003) [ 0.973067] ahci 0000:00:12.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode [ 0.973071] ahci 0000:00:12.0: flags: 64bit ncq sntf clo only pmp pio slum part deso sadm sds apst [ 0.977226] r8169 0000:01:00.0 eth0: RTL8168g/8111g at 0x (ptrval), 70:85:c2:26:95:99, XID 0c000800 IRQ 128 [ 0.977229] r8169 0000:01:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko] [ 0.977318] scsi host0: ahci [ 0.980115] scsi host1: ahci [ 0.980198] ata1: SATA max UDMA/133 abar m2048@0x91317000 port 0x91317100 irq 127 [ 0.980201] ata2: SATA max UDMA/133 abar m2048@0x91317000 port 0x91317180 irq 127 [ 0.980479] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled [ 0.980520] ahci 0000:03:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode [ 0.980524] ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc [ 0.981890] scsi host2: ahci [ 0.983337] scsi host3: ahci [ 0.983425] ata3: SATA max UDMA/133 abar m512@0x91100000 port 0x91100100 irq 129 [ 0.983428] ata4: SATA max UDMA/133 abar m512@0x91100000 port 0x91100180 irq 129 [ 1.017777] r8169 0000:01:00.0 enp1s0: renamed from eth0 [ 1.028777] usb 1-1: new full-speed USB device number 2 using xhci_hcd [ 1.063674] [drm:i915_driver_load [i915]] No PCH found. [ 1.063719] [drm:intel_power_domains_init [i915]] Allowed DC state mask 09 [ 1.064306] [drm:i915_driver_load [i915]] ppgtt mode: 3 [ 1.064355] [drm:intel_uc_sanitize_options [i915]] enable_guc=0 (submission:no huc:no) [ 1.064394] [drm:i915_driver_load [i915]] guc_log_level=0 (enabled:no verbosity:-1) [ 1.064470] [drm:i915_ggtt_probe_hw [i915]] GGTT size = 4096M [ 1.064510] [drm:i915_ggtt_probe_hw [i915]] GMADR size = 256M [ 1.064551] [drm:i915_ggtt_probe_hw [i915]] DSM size = 256M [ 1.064554] checking generic (80000000 300000) vs hw (80000000 10000000) [ 1.064555] fb: switching to inteldrmfb from EFI VGA [ 1.064586] Console: switching to colour dummy device 80x25 [ 1.064789] [drm] Replacing VGA console driver [ 1.064866] [drm:i915_gem_init_stolen [i915]] Memory reserved for graphics device: 262144K, usable: 261120K [ 1.064922] [drm:intel_opregion_setup [i915]] graphic opregion physical addr: 0x6d9d0018 [ 1.064984] [drm:intel_opregion_setup [i915]] Public ACPI methods supported [ 1.065044] [drm:intel_opregion_setup [i915]] ASLE supported [ 1.065088] [drm:intel_opregion_setup [i915]] Found valid VBT in ACPI OpRegion (Mailbox #4) [ 1.065300] [drm:intel_gvt_init [i915]] GVT-g is disabled by kernel params [ 1.065303] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 1.065304] [drm] Driver supports precise vblank timestamp query. [ 1.065348] [drm:intel_bios_init [i915]] Set default to SSC at 100000 kHz [ 1.065391] [drm:intel_bios_init [i915]] VBT signature "$VBT BROXTON ", BDB version 206 [ 1.065434] [drm:intel_bios_init [i915]] BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 0 lvds_use_ssc 0 lvds_ssc_freq 120000 display_clock_mode 0 fdi_rx_polarity_inverted 0 [ 1.065475] [drm:intel_bios_init [i915]] crt_ddc_bus_pin: 2 [ 1.065519] [drm:intel_opregion_get_panel_type [i915]] Failed to get panel details from OpRegion (-19) [ 1.065560] [drm:intel_bios_init [i915]] Panel type: 2 (VBT) [ 1.065601] [drm:intel_bios_init [i915]] DRRS supported mode is static [ 1.065644] [drm:intel_bios_init [i915]] Found panel mode in BIOS VBT tables: [ 1.065665] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa [ 1.065706] [drm:intel_bios_init [i915]] VBT initial LVDS value 300 [ 1.065748] [drm:intel_bios_init [i915]] VBT backlight PWM modulation frequency 200 Hz, active high, min brightness 0, level 255, controller 0 [ 1.065791] [drm:intel_bios_init [i915]] DRRS State Enabled:1 [ 1.065832] [drm:intel_bios_init [i915]] Skipping SDVO device mapping [ 1.065875] [drm:intel_bios_init [i915]] Port A VBT info: DP:1 HDMI:0 DVI:0 EDP:0 CRT:0 [ 1.065918] [drm:intel_bios_init [i915]] VBT HDMI level shift for port A: 8 [ 1.065960] [drm:intel_bios_init [i915]] Port B VBT info: DP:1 HDMI:1 DVI:1 EDP:0 CRT:0 [ 1.066010] [drm:intel_bios_init [i915]] VBT HDMI level shift for port B: 8 [ 1.066051] [drm:intel_bios_init [i915]] Port C VBT info: DP:0 HDMI:1 DVI:1 EDP:0 CRT:0 [ 1.066092] [drm:intel_bios_init [i915]] VBT HDMI level shift for port C: 8 [ 1.066208] [drm:intel_dsm_detect [i915]] no _DSM method for intel device [ 1.066254] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00 [ 1.066297] [drm:intel_power_well_enable [i915]] enabling power well 1 [ 1.066349] [drm:intel_dump_cdclk_state [i915]] Current CDCLK 624000 kHz, VCO 1248000 kHz, ref 19200 kHz, bypass 19200 kHz, voltage level 25 [ 1.066400] [drm:intel_power_well_enable [i915]] enabling always-on [ 1.066438] [drm:intel_power_well_enable [i915]] enabling DC off [ 1.066474] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00 [ 1.066514] [drm:intel_power_well_enable [i915]] enabling power well 2 [ 1.066523] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 1.066562] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1.066664] [drm:intel_power_well_enable [i915]] enabling dpio-common-bc [ 1.066734] [drm:intel_power_well_enable [i915]] DDI PHY 0 already enabled, won't reprogram it [ 1.066787] [drm:intel_csr_ucode_init [i915]] Loading i915/bxt_dmc_ver1_07.bin [ 1.067062] [drm] Finished loading DMC firmware i915/bxt_dmc_ver1_07.bin (v1.7) [ 1.067145] [drm:__bxt_hpd_detection_setup [i915]] Invert bit setting: hp_ctl:18001818 hp_port:38 [ 1.067893] [drm:intel_fbc_init [i915]] Sanitized enable_fbc value: 1 [ 1.067950] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM0 latency 7 (7.0 usec) [ 1.067989] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM1 latency 7 (7.0 usec) [ 1.068028] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM2 latency 8 (8.0 usec) [ 1.068078] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM3 latency 22 (22.0 usec) [ 1.068131] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM4 latency 22 (22.0 usec) [ 1.068180] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM5 latency 22 (22.0 usec) [ 1.068216] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM6 latency 22 (22.0 usec) [ 1.068253] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM7 latency 22 (22.0 usec) [ 1.068297] [drm:intel_modeset_init [i915]] 3 display pipes available. [ 1.068468] [drm:intel_dump_cdclk_state [i915]] Current CDCLK 624000 kHz, VCO 1248000 kHz, ref 19200 kHz, bypass 19200 kHz, voltage level 25 [ 1.068514] [drm:intel_update_max_cdclk [i915]] Max CD clock rate: 624000 kHz [ 1.068557] [drm:intel_modeset_init [i915]] Max dotclock rate: 624000 kHz [ 1.068911] [drm:intel_ddi_init [i915]] Forcing DDI_A_4_LANES for port A [ 1.068959] [drm:intel_dp_init_connector [i915]] Adding DP connector on port A [ 1.069005] [drm:intel_dp_init_connector [i915]] using AUX A for port A (VBT) [ 1.069054] [drm:intel_ddi_init [i915]] VBT says port B has lspcon [ 1.069103] [drm:intel_dp_init_connector [i915]] Adding DP connector on port B [ 1.069149] [drm:intel_dp_init_connector [i915]] using AUX B for port B (VBT) [ 1.069509] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1.069956] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.071177] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.072398] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.073611] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.074949] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.075731] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: DP-HDMI ADAPTOR\004 (err 0) [ 1.076157] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.077380] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.078599] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.079798] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.081016] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.081808] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode adaptor ID: a8 (err 0) [ 1.081875] [drm:lspcon_init [i915]] LSPCON detected [ 1.082302] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.083509] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.084649] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.085863] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.087085] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.087916] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1.088374] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1.088756] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1.088817] [drm:lspcon_init [i915]] Success: LSPCON init [ 1.088860] [drm:intel_modeset_init [i915]] LSPCON init success on port B [ 1.088910] [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on port C [ 1.088958] [drm:intel_hdmi_init_connector [i915]] Using DDC pin 0x2 for port C (VBT) [ 1.089005] [drm:intel_dsi_init [i915]] [ 1.089084] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x1 [ 1.089128] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x1 [ 1.089172] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x1 [ 1.089216] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x1 [ 1.089263] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:46:pipe A] hw state readout: enabled [ 1.089311] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0 [ 1.089354] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0 [ 1.089397] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0 [ 1.089442] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0 [ 1.089485] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:65:pipe B] hw state readout: disabled [ 1.089531] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0 [ 1.089575] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0 [ 1.089618] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0 [ 1.089661] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:79:pipe C] hw state readout: disabled [ 1.089707] [drm:intel_modeset_setup_hw_state [i915]] PORT PLL A hw state readout: crtc_mask 0x00000000, on 0 [ 1.089765] [drm:intel_modeset_setup_hw_state [i915]] PORT PLL B hw state readout: crtc_mask 0x00000001, on 1 [ 1.089809] [drm:intel_modeset_setup_hw_state [i915]] PORT PLL C hw state readout: crtc_mask 0x00000000, on 0 [ 1.089856] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:80:DDI A] hw state readout: disabled, pipe A [ 1.089915] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:84:DDI B] hw state readout: enabled, pipe A [ 1.089960] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:86:DP-MST A] hw state readout: disabled, pipe A [ 1.090003] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:87:DP-MST B] hw state readout: disabled, pipe B [ 1.090047] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:88:DP-MST C] hw state readout: disabled, pipe C [ 1.090091] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:91:DDI C] hw state readout: disabled, pipe A [ 1.090137] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:81:DP-1] hw state readout: disabled [ 1.090182] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:85:DP-2] hw state readout: enabled [ 1.090226] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:92:HDMI-A-1] hw state readout: disabled [ 1.090286] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][setup_hw_state] [ 1.090331] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 1.090376] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0 [ 1.090420] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 6920601, gmch_n: 8388608, link_m: 576716, link_n: 524288, tu: 64 [ 1.090463] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0 [ 1.090506] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1.090529] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"3840x2160" 60 593999 1024 4016 4104 4400 768 2168 2178 2250 0x40 0x5 [ 1.090572] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1.090587] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"3840x2160" 60 593999 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.090631] [drm:intel_dump_pipe_config [i915]] crtc timings: 593999 3840 4016 4104 4400 2160 2168 2178 2250, type: 0x40 flags: 0x5 [ 1.090675] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 1024x768, pixel rate 593999 [ 1.090719] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x80000000, scaler_id: 0 [ 1.090762] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x0f000870, enabled [ 1.090805] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1.090853] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x4100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x58 [ 1.090896] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1.090941] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1 [ 1.090984] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 1.091027] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 1.091070] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] disabled, scaler_id = -1 [ 1.091113] [drm:intel_dump_pipe_config [i915]] [CRTC:65:pipe B][setup_hw_state] [ 1.091156] [drm:intel_dump_pipe_config [i915]] output_types: (0x0) [ 1.091200] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: B, pipe bpp: 0, dithering: 0 [ 1.091242] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0 [ 1.091285] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1.091299] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 1.091342] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1.091356] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 1.091400] [drm:intel_dump_pipe_config [i915]] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0 [ 1.091443] [drm:intel_dump_pipe_config [i915]] port clock: 0, pipe src size: 0x0, pixel rate 0 [ 1.091487] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1 [ 1.091530] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 1.091573] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1.091617] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x0, ebb4: 0x0,pll0: 0x0, pll1: 0x0, pll2: 0x0, pll3: 0x0, pll6: 0x0, pll8: 0x0, pll9: 0x0, pll10: 0x0, pcsdw12: 0x0 [ 1.091660] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1.091705] [drm:intel_dump_pipe_config [i915]] [PLANE:47:plane 1B] disabled, scaler_id = -1 [ 1.091750] [drm:intel_dump_pipe_config [i915]] [PLANE:52:plane 2B] disabled, scaler_id = -1 [ 1.091795] [drm:intel_dump_pipe_config [i915]] [PLANE:57:plane 3B] disabled, scaler_id = -1 [ 1.091839] [drm:intel_dump_pipe_config [i915]] [PLANE:62:cursor B] disabled, scaler_id = -1 [ 1.091882] [drm:intel_dump_pipe_config [i915]] [CRTC:79:pipe C][setup_hw_state] [ 1.091925] [drm:intel_dump_pipe_config [i915]] output_types: (0x0) [ 1.091968] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: C, pipe bpp: 0, dithering: 0 [ 1.092011] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0 [ 1.092084] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1.092099] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 1.092155] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1.092170] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 1.092214] [drm:intel_dump_pipe_config [i915]] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0 [ 1.092257] [drm:intel_dump_pipe_config [i915]] port clock: 0, pipe src size: 0x0, pixel rate 0 [ 1.092300] [drm:intel_dump_pipe_config [i915]] num_scalers: 1, scaler_users: 0x0, scaler_id: -1 [ 1.092344] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 1.092386] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1.092431] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x0, ebb4: 0x0,pll0: 0x0, pll1: 0x0, pll2: 0x0, pll3: 0x0, pll6: 0x0, pll8: 0x0, pll9: 0x0, pll10: 0x0, pcsdw12: 0x0 [ 1.092473] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1.092517] [drm:intel_dump_pipe_config [i915]] [PLANE:66:plane 1C] disabled, scaler_id = -1 [ 1.092561] [drm:intel_dump_pipe_config [i915]] [PLANE:71:plane 2C] disabled, scaler_id = -1 [ 1.092606] [drm:intel_dump_pipe_config [i915]] [PLANE:76:cursor C] disabled, scaler_id = -1 [ 1.092687] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1.092752] [drm:skylake_get_initial_plane_config [i915]] pipe A/plane 1A with fb: size=1024x768@32, offset=0, pitch 4096, size 0x300000 [ 1.092798] [drm:i915_gem_object_create_stolen_for_preallocated [i915]] creating preallocated stolen object: stolen_offset=0x0000000000000000, gtt_offset=0x0000000000000000, size=0x0000000000300000 [ 1.092838] [drm:i915_gem_object_create_stolen_for_preallocated [i915]] failed to allocate stolen space [ 1.092883] [drm:intel_plane_disable_noatomic [i915]] pipe A active planes 0x0 [ 1.093338] [drm:i915_gem_init_ggtt [i915]] clearing unused GTT space: [1000, 100000000] [ 1.093700] [drm:i915_gem_contexts_init [i915]] logical context support initialized [ 1.093760] [drm:intel_engine_create_scratch [i915]] rcs0 pipe control offset: 0xfffff000 [ 1.094162] [drm:intel_engine_init_common [i915]] rcs0 hws offset: 0x00003000 [ 1.094360] [drm:intel_engine_init_common [i915]] bcs0 hws offset: 0x00006000 [ 1.094554] [drm:intel_engine_init_common [i915]] vcs0 hws offset: 0x00009000 [ 1.094731] [drm:intel_engine_init_common [i915]] vecs0 hws offset: 0x0000c000 [ 1.094779] [drm:intel_init_gt_powersave [i915]] BIOS enabled RC states: HW_CTRL off HW_RC6 off SW_TARGET_STATE 4 [ 1.094971] [drm:init_workarounds_ring [i915]] rcs0: Number of context specific w/a: 13 [ 1.095796] [drm:intel_fbdev_init [i915]] pipe A not active or no fb, skipping [ 1.095842] [drm:intel_fbdev_init [i915]] pipe B not active or no fb, skipping [ 1.095888] [drm:intel_fbdev_init [i915]] pipe C not active or no fb, skipping [ 1.095932] [drm:intel_fbdev_init [i915]] no active fbs found, not using BIOS config [ 1.095985] [drm:__bxt_hpd_detection_setup [i915]] Invert bit setting: hp_ctl:18001818 hp_port:38 [ 1.096652] [drm:intel_dp_connector_register [i915]] registering DPDDC-A bus for card0-DP-1 [ 1.096931] [drm:intel_dp_connector_register [i915]] registering DPDDC-B bus for card0-DP-2 [ 1.097151] [drm] Initialized i915 1.6.0 20180308 for 0000:00:02.0 on minor 0 [ 1.097331] [drm:intel_opregion_register [i915]] 3 outputs detected [ 1.098275] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 1.098618] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input1 [ 1.098817] i915 device info: pciid=0x5a84 rev=0x0b platform=BROXTON gen=9 [ 1.098819] i915 device info: is_mobile: no [ 1.098820] i915 device info: is_lp: yes [ 1.098821] i915 device info: is_alpha_support: no [ 1.098822] i915 device info: has_64bit_reloc: yes [ 1.098823] i915 device info: has_aliasing_ppgtt: yes [ 1.098824] i915 device info: has_csr: yes [ 1.098825] i915 device info: has_ddi: yes [ 1.098826] i915 device info: has_dp_mst: yes [ 1.098827] i915 device info: has_reset_engine: yes [ 1.098829] i915 device info: has_fbc: yes [ 1.098830] i915 device info: has_fpga_dbg: yes [ 1.098831] i915 device info: has_full_ppgtt: yes [ 1.098832] i915 device info: has_full_48bit_ppgtt: yes [ 1.098833] i915 device info: has_gmch_display: no [ 1.098834] i915 device info: has_guc: yes [ 1.098835] i915 device info: has_guc_ct: no [ 1.098836] i915 device info: has_hotplug: yes [ 1.098837] i915 device info: has_l3_dpf: no [ 1.098838] i915 device info: has_llc: no [ 1.098839] i915 device info: has_logical_ring_contexts: yes [ 1.098840] i915 device info: has_logical_ring_elsq: no [ 1.098841] i915 device info: has_logical_ring_preemption: yes [ 1.098842] i915 device info: has_overlay: no [ 1.098843] i915 device info: has_pooled_eu: yes [ 1.098844] i915 device info: has_psr: yes [ 1.098845] i915 device info: has_rc6: yes [ 1.098846] i915 device info: has_rc6p: no [ 1.098847] i915 device info: has_resource_streamer: yes [ 1.098848] i915 device info: has_runtime_pm: yes [ 1.098849] i915 device info: has_snoop: yes [ 1.098864] [drm:drm_setup_crtcs [drm_kms_helper]] [ 1.098866] i915 device info: unfenced_needs_alignment: no [ 1.098867] i915 device info: cursor_needs_physical: no [ 1.098868] i915 device info: hws_needs_physical: no [ 1.098876] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 1.098878] i915 device info: overlay_needs_physical: no [ 1.098943] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 1.098944] i915 device info: supports_tv: no [ 1.098946] i915 device info: has_ipc: yes [ 1.098948] i915 device info: slice mask: 0001 [ 1.098949] i915 device info: slice total: 1 [ 1.098995] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1.098996] i915 device info: subslice total: 3 [ 1.098998] i915 device info: slice0 3 subslices mask=0007 [ 1.098999] i915 device info: slice1 0 subslices mask=0000 [ 1.099001] i915 device info: slice2 0 subslices mask=0000 [ 1.099002] i915 device info: slice3 0 subslices mask=0000 [ 1.099003] i915 device info: slice4 0 subslices mask=0000 [ 1.099004] i915 device info: slice5 0 subslices mask=0000 [ 1.099006] i915 device info: slice6 0 subslices mask=0000 [ 1.099007] i915 device info: EU total: 18 [ 1.099008] i915 device info: EU per subslice: 6 [ 1.099009] i915 device info: has slice power gating: no [ 1.099010] i915 device info: has subslice power gating: yes [ 1.099011] i915 device info: has EU power gating: yes [ 1.099012] i915 device info: CS timestamp frequency: 19200 kHz [ 1.099108] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1.099122] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] status updated from unknown to disconnected [ 1.099135] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 1.099144] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 1.099230] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 1.099599] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1.099646] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 1.100078] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.101251] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.102458] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.103674] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.104847] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.105704] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1.106162] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1.106893] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 1.106938] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 1.106982] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 1.107364] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1.107695] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 1.108124] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.109332] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.110503] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.111705] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.112881] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.113808] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 1.113833] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 1.114137] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] status updated from unknown to connected [ 1.114157] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.114172] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.114187] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.114215] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 1.114231] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 1.114245] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 1.114259] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.114275] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.114289] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.114825] [drm:drm_mode_debug_printmodeline [drm]] Modeline 140:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.114839] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.114854] [drm:drm_mode_debug_printmodeline [drm]] Modeline 141:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 1.114868] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 1.114883] [drm:drm_mode_debug_printmodeline [drm]] Modeline 167:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.114896] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.114913] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 1.114929] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1.114944] [drm:drm_mode_debug_printmodeline [drm]] Modeline 136:"4096x2160" 60 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.114958] [drm:drm_mode_debug_printmodeline [drm]] Modeline 164:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.114973] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"4096x2160" 50 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.114988] [drm:drm_mode_debug_printmodeline [drm]] Modeline 139:"4096x2160" 30 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.115003] [drm:drm_mode_debug_printmodeline [drm]] Modeline 166:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.115017] [drm:drm_mode_debug_printmodeline [drm]] Modeline 138:"4096x2160" 25 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.115032] [drm:drm_mode_debug_printmodeline [drm]] Modeline 137:"4096x2160" 24 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.115047] [drm:drm_mode_debug_printmodeline [drm]] Modeline 165:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.115062] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.115076] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.115091] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.115106] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.115120] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.115135] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.115150] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.115164] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.115179] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.115194] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.115209] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.115223] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.115238] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 1.115253] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.115268] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.115282] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.115297] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.115312] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.115326] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 1.115341] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 1.115356] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 1.115371] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.115385] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.115400] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.115415] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.115429] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 1.115444] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 1.115459] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 1.115474] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.115488] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.115503] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 1.115518] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 1.115533] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 1.115547] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 1.115562] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 1.115577] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.115591] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.115606] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 1.115621] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 1.115635] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 1.115650] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 1.115665] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 1.115679] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 1.115694] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 1.115709] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 1.115723] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 1.115738] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 1.115753] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 1.115767] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 1.115782] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 1.115791] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 1.115855] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 1.116069] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.116113] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.116316] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.116338] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.116384] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 1.116430] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 1.116991] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.117036] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 1.117240] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.117284] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.117485] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.117498] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 1.117506] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] status updated from unknown to disconnected [ 1.117513] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 1.117521] [drm:drm_setup_crtcs [drm_kms_helper]] connector 81 enabled? no [ 1.117528] [drm:drm_setup_crtcs [drm_kms_helper]] connector 85 enabled? yes [ 1.117535] [drm:drm_setup_crtcs [drm_kms_helper]] connector 92 enabled? no [ 1.117588] [drm:intel_fb_initial_config [i915]] Not using firmware configuration [ 1.117596] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 85 [ 1.117603] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 85 0 [ 1.117610] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 3840x2160 [ 1.117617] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config [ 1.117626] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 3840x2160 set on crtc 46 (0,0) [ 1.117673] [drm:intelfb_create [i915]] no BIOS fb, allocating a new one [ 1.128008] [drm:intelfb_create [i915]] allocated 3840x2160 fb: 0x00040000 [ 1.128196] fbcon: inteldrmfb (fb0) is primary device [ 1.128387] [drm:intel_atomic_check [i915]] [CONNECTOR:85:DP-2] checking for sink bpp constrains [ 1.128450] [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 4 max bw 540000 pixel clock 594000KHz [ 1.128517] [drm:intel_dp_compute_config [i915]] DP link bw 14 rate select 00 lane count 4 clock 540000 bpp 24 [ 1.128560] [drm:intel_dp_compute_config [i915]] DP link bw required 1782000 available 2160000 [ 1.128605] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0 [ 1.128685] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][modeset] [ 1.128729] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 1.128774] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0 [ 1.128818] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 6920601, gmch_n: 8388608, link_m: 1153433, link_n: 1048576, tu: 64 [ 1.128861] [drm:intel_dump_pipe_config [i915]] audio: 1, infoframes: 0 [ 1.128903] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1.128925] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1.128968] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1.128982] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1.129026] [drm:intel_dump_pipe_config [i915]] crtc timings: 594000 3840 4016 4104 4400 2160 2168 2178 2250, type: 0x48 flags: 0x5 [ 1.129069] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 3840x2160, pixel rate 594000 [ 1.129113] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x80000000, scaler_id: 0 [ 1.129156] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 1.129198] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1.129247] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x4100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x58 [ 1.129290] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1.129336] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1 [ 1.129381] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 1.129426] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 1.129471] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] disabled, scaler_id = -1 [ 1.129522] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 624000 kHz, actual 624000 kHz [ 1.129564] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 25, actual 25 [ 1.129621] [drm:bxt_get_dpll [i915]] [CRTC:46:pipe A] using pre-allocated PORT PLL B [ 1.129665] [drm:intel_reference_shared_dpll [i915]] using PORT PLL B for pipe A [ 1.129710] [drm:skl_update_scaler [i915]] scaler_user index 0.31: Staged freeing scaler id 0 scaler_users = 0x0 [ 1.129815] [drm:intel_disable_pipe [i915]] disabling pipe A [ 1.140301] [drm:intel_disable_shared_dpll [i915]] disable PORT PLL B (active 1, on? 1) for crtc 46 [ 1.140361] [drm:intel_disable_shared_dpll [i915]] disabling PORT PLL B [ 1.140408] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 1.140451] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 1.140494] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 1.140537] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 1.140580] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 1.140623] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 1.140665] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 1.140708] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1.140749] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 1.140806] [drm:intel_enable_shared_dpll [i915]] enable PORT PLL B (active 1, on? 0) for crtc 46 [ 1.140847] [drm:intel_enable_shared_dpll [i915]] enabling PORT PLL B [ 1.141521] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.142737] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.143948] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.145152] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.146367] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.147188] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1.148170] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0 [ 1.148210] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0 [ 1.148256] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1 [ 1.166938] [drm:intel_dp_start_link_train [i915]] clock recovery OK [ 1.166994] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3 [ 1.185634] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful [ 1.185873] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:85:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4 [ 1.186271] [drm:intel_enable_pipe [i915]] enabling pipe A [ 1.186324] [drm:intel_enable_ddi [i915]] Panel doesn't support DRRS [ 1.186370] [drm:intel_audio_codec_enable [i915]] ELD on [CONNECTOR:85:DP-2], [ENCODER:84:DDI B] [ 1.186414] [drm:hsw_audio_codec_enable [i915]] Enable audio codec on pipe A, 52 bytes ELD [ 1.186473] [drm:hsw_audio_config_update [i915]] using automatic Maud, Naud [ 1.186538] [drm:intel_fbc_enable [i915]] reserved 66355200 bytes of contiguous stolen space for FBC, threshold: 1 [ 1.186541] usb 1-1: New USB device found, idVendor=20a0, idProduct=0006, bcdDevice= 1.00 [ 1.186583] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A [ 1.186585] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.186587] usb 1-1: Product: flirc [ 1.186588] usb 1-1: Manufacturer: flirc.tv [ 1.194602] hidraw: raw HID events driver (C) Jiri Kosina [ 1.199566] usbcore: registered new interface driver usbhid [ 1.199567] usbhid: USB HID core driver [ 1.202809] hid-generic 0003:20A0:0006.0001: hiddev0,hidraw0: USB HID v1.11 Device [flirc.tv flirc] on usb-0000:00:15.0-1/input0 [ 1.203089] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 1.203144] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 1.203145] input: flirc.tv flirc as /devices/pci0000:00/0000:00:15.0/usb1/1-1/1-1:1.1/0003:20A0:0006.0002/input/input2 [ 1.203232] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1.203285] Console: switching to colour frame buffer device 480x135 [ 1.245051] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 1.264315] hid-generic 0003:20A0:0006.0002: input,hidraw1: USB HID v1.01 Keyboard [flirc.tv flirc] on usb-0000:00:15.0-1/input1 [ 1.295187] ata2: SATA link down (SStatus 4 SControl 300) [ 1.299133] ata3: SATA link down (SStatus 0 SControl 300) [ 1.456073] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.456889] ata1.00: ATA-9: SAMSUNG SSD 830 Series, CXM03B1Q, max UDMA/133 [ 1.456891] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA [ 1.457560] ata1.00: configured for UDMA/133 [ 1.457968] scsi 0:0:0:0: Direct-Access ATA SAMSUNG SSD 830 3B1Q PQ: 0 ANSI: 5 [ 1.458526] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB) [ 1.458540] sd 0:0:0:0: [sda] Write Protect is off [ 1.458542] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.458560] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.458670] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.460919] sda: sda1 sda2 sda3 [ 1.461753] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.775508] ata4: SATA link down (SStatus 0 SControl 300) [ 1.775636] [drm:drm_fb_helper_hotplug_event.part.36 [drm_kms_helper]] [ 1.775643] [drm:drm_setup_crtcs [drm_kms_helper]] [ 1.775653] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 1.775720] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 1.775764] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1.775860] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1.775874] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 1.775886] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 1.775927] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 1.776279] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1.776315] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 1.776751] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.777940] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.779135] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.780317] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.781526] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.782327] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1.782794] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1.783543] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 1.783576] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 1.783608] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 1.783990] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1.784306] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 1.784734] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.785960] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.787185] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.788398] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.789601] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.790539] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 1.790564] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 1.790870] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.790885] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.790900] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.790920] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 1.790935] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 1.790949] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 1.790963] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.790977] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.790991] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.791543] [drm:drm_mode_debug_printmodeline [drm]] Modeline 136:"4096x2160" 0 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791557] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791572] [drm:drm_mode_debug_printmodeline [drm]] Modeline 164:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791586] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791601] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"4096x2160" 0 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.791614] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791629] [drm:drm_mode_debug_printmodeline [drm]] Modeline 139:"4096x2160" 0 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791643] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791658] [drm:drm_mode_debug_printmodeline [drm]] Modeline 166:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791671] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791686] [drm:drm_mode_debug_printmodeline [drm]] Modeline 138:"4096x2160" 0 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.791700] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791715] [drm:drm_mode_debug_printmodeline [drm]] Modeline 137:"4096x2160" 0 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.791728] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791743] [drm:drm_mode_debug_printmodeline [drm]] Modeline 165:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.791756] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.791772] [drm:drm_mode_debug_printmodeline [drm]] Modeline 201:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.791785] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.791800] [drm:drm_mode_debug_printmodeline [drm]] Modeline 202:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 1.791814] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 1.791829] [drm:drm_mode_debug_printmodeline [drm]] Modeline 228:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.791842] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.791859] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 1.791875] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1.791889] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791904] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.791919] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791934] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.791949] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.791963] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.791978] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.791993] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.792008] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.792041] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.792056] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.792071] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.792086] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 1.792114] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.792128] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.792142] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.792156] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.792171] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.792185] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 1.792199] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 1.792213] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 1.792227] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.792242] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.792270] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.792285] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.792300] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 1.792315] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 1.792330] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 1.792344] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.792359] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.792388] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 1.792402] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 1.792416] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 1.792430] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 1.792444] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 1.792459] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.792473] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.792487] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 1.792501] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 1.792515] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 1.792529] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 1.792543] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 1.792557] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 1.792571] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 1.792585] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 1.792600] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 1.792631] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 1.792646] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 1.792661] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 1.792676] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 1.792684] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 1.792746] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 1.792968] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.793002] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.793197] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.793217] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.793252] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 1.793286] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 1.793838] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.793877] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 1.794083] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.794117] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.794327] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.794342] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 1.794351] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 1.794361] [drm:drm_setup_crtcs [drm_kms_helper]] connector 81 enabled? no [ 1.794367] [drm:drm_setup_crtcs [drm_kms_helper]] connector 85 enabled? yes [ 1.794374] [drm:drm_setup_crtcs [drm_kms_helper]] connector 92 enabled? no [ 1.794417] [drm:intel_fb_initial_config [i915]] Not using firmware configuration [ 1.794425] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 85 [ 1.794432] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 85 0 [ 1.794438] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 3840x2160 [ 1.794445] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 3840x2160 config [ 1.794457] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 3840x2160 set on crtc 46 (0,0) [ 1.799830] random: fast init done [ 1.803109] [drm:drm_fb_helper_hotplug_event.part.36 [drm_kms_helper]] [ 1.803118] [drm:drm_setup_crtcs [drm_kms_helper]] [ 1.803128] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 1.803182] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 1.803214] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1.803318] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1.803332] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 1.803342] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 1.803385] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 1.803767] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1.803804] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 1.804247] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.806307] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.807838] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.809066] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.810285] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.811101] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1.811546] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1.812267] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 1.812301] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 1.812349] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 1.812833] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1.813169] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 1.813609] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.814800] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.817350] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.818550] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.819742] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1.820753] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 1.820780] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 1.821593] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.821609] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.821624] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.821645] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 1.821674] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 1.821688] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 1.821701] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1.821714] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1.821728] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1.822195] [drm:drm_mode_debug_printmodeline [drm]] Modeline 188:"4096x2160" 0 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.822208] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822222] [drm:drm_mode_debug_printmodeline [drm]] Modeline 189:"4096x2160" 0 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822235] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822250] [drm:drm_mode_debug_printmodeline [drm]] Modeline 190:"4096x2160" 0 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.822262] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822277] [drm:drm_mode_debug_printmodeline [drm]] Modeline 191:"4096x2160" 0 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1.822290] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822304] [drm:drm_mode_debug_printmodeline [drm]] Modeline 192:"4096x2160" 0 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822317] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822331] [drm:drm_mode_debug_printmodeline [drm]] Modeline 193:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.822344] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.822359] [drm:drm_mode_debug_printmodeline [drm]] Modeline 194:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 1.822371] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 1.822386] [drm:drm_mode_debug_printmodeline [drm]] Modeline 217:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822399] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822413] [drm:drm_mode_debug_printmodeline [drm]] Modeline 218:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.822426] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822440] [drm:drm_mode_debug_printmodeline [drm]] Modeline 219:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822453] [drm:drm_mode_prune_invalid [drm]] Not using 4096x2160 mode: VIRTUAL_X [ 1.822467] [drm:drm_mode_debug_printmodeline [drm]] Modeline 220:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 1.822480] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1.822498] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 1.822512] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1.822527] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822541] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.822555] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822569] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1.822583] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1.822597] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.822611] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1.822625] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.822640] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.822654] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.822668] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1.822682] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.822696] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 1.822710] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.822724] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1.822739] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1.822753] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.822767] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1.822781] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 1.822795] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 1.822809] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 1.822823] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.822837] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1.822852] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.822866] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1.822880] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 1.822894] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 1.822908] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 1.822922] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.822937] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1.822951] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 1.822965] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 1.822979] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 1.822993] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 1.823007] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 1.823021] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.823035] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1.823050] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 1.823064] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 1.823078] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 1.823092] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 1.823106] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 1.823120] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 1.823134] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 1.823148] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 1.823163] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 1.823177] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 1.823191] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 1.823205] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 1.823219] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 1.823227] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 1.823272] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 1.823505] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.823540] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.823869] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1.823891] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.823926] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 1.823960] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 1.824573] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1.824612] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 1.824846] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.824880] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1.825079] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1.825092] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 1.825100] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 1.825128] [drm:drm_setup_crtcs [drm_kms_helper]] connector 81 enabled? no [ 1.825135] [drm:drm_setup_crtcs [drm_kms_helper]] connector 85 enabled? yes [ 1.825141] [drm:drm_setup_crtcs [drm_kms_helper]] connector 92 enabled? no [ 1.825178] [drm:intel_fb_initial_config [i915]] Not using firmware configuration [ 1.825185] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 85 [ 1.825192] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 85 0 [ 1.825199] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 3840x2160 [ 1.825205] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 3840x2160 config [ 1.825217] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 3840x2160 set on crtc 46 (0,0) [ 1.844909] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) [ 2.035771] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 2.052305] systemd[1]: Detected architecture x86-64. [ 2.058679] systemd[1]: Set hostname to . [ 2.161678] random: systemd: uninitialized urandom read (16 bytes read) [ 2.161709] systemd[1]: Reached target Remote File Systems. [ 2.161933] random: systemd: uninitialized urandom read (16 bytes read) [ 2.162169] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 2.162190] random: systemd: uninitialized urandom read (16 bytes read) [ 2.162435] systemd[1]: Created slice User and Session Slice. [ 2.162653] systemd[1]: Created slice System Slice. [ 2.162692] systemd[1]: Reached target Slices. [ 2.162833] systemd[1]: Listening on Syslog Socket. [ 2.162951] systemd[1]: Listening on Journal Socket. [ 2.187693] EXT4-fs (sda2): re-mounted. Opts: discard,errors=remount-ro [ 2.340174] systemd-journald[267]: Received request to flush runtime journal from PID 1 [ 2.390133] r8169 0000:01:00.0 enp1s0: link down [ 2.390137] r8169 0000:01:00.0 enp1s0: link down [ 2.390219] IPv6: ADDRCONF(NETDEV_UP): enp1s0: link is not ready [ 2.525369] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.559873] lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized [ 2.617391] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer [ 2.617394] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules [ 2.617395] RAPL PMU: hw unit of domain package 2^-14 Joules [ 2.617396] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 2.617396] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules [ 2.633430] cryptd: max_cpu_qlen set to 1000 [ 2.651615] SSE version of gcm_enc/dec engaged. [ 2.671130] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) [ 2.716174] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line [ 2.716177] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 2.716180] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0) [ 2.716181] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 [ 2.716183] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0 [ 2.716184] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 2.716186] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19 [ 2.716188] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18 [ 2.716190] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a [ 2.760406] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 2.760443] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 2.760476] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 2.760509] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 2.760542] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 2.760576] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 2.760609] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 2.760642] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 2.761564] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input3 [ 2.761642] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input4 [ 2.761707] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:0e.0/sound/card0/input5 [ 2.761770] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:0e.0/sound/card0/input6 [ 2.761831] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:0e.0/sound/card0/input7 [ 2.761890] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:0e.0/sound/card0/input8 [ 2.761952] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:0e.0/sound/card0/input9 [ 2.762020] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input10 [ 2.762092] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input11 [ 2.762162] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input12 [ 2.762230] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input13 [ 2.762297] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input14 [ 2.794639] intel-spi intel-spi: w25q64dw (8192 Kbytes) [ 2.802827] Creating 1 MTD partitions on "intel-spi": [ 2.802833] 0x000000000000-0x0000007ff000 : "BIOS" [ 2.831394] Adding 4194300k swap on /dev/sda3. Priority:-2 extents:1 across:4194300k SSFS [ 2.831891] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 2.854178] intel_telemetry_core Init [ 2.931363] intel_rapl: Found RAPL domain package [ 2.931366] intel_rapl: Found RAPL domain core [ 2.931367] intel_rapl: Found RAPL domain uncore [ 2.931370] intel_rapl: Found RAPL domain dram [ 2.988477] random: crng init done [ 2.988481] random: 7 urandom warning(s) missed due to ratelimiting [ 3.164783] audit: type=1400 audit(1532252710.927:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=522 comm="apparmor_parser" [ 3.165055] audit: type=1400 audit(1532252710.927:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=522 comm="apparmor_parser" [ 3.165380] audit: type=1400 audit(1532252710.927:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=522 comm="apparmor_parser" [ 3.318181] audit: type=1400 audit(1532252711.079:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=521 comm="apparmor_parser" [ 3.318605] audit: type=1400 audit(1532252711.079:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=521 comm="apparmor_parser" [ 3.318967] audit: type=1400 audit(1532252711.079:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=521 comm="apparmor_parser" [ 3.319332] audit: type=1400 audit(1532252711.079:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=521 comm="apparmor_parser" [ 4.165699] [drm:drm_mode_addfb2 [drm]] [FB:122] [ 4.166153] [drm:intel_framebuffer_init [i915]] No Y tiling for legacy addfb [ 4.166172] [drm:drm_internal_framebuffer_create [drm]] could not create framebuffer [ 4.166200] [drm:drm_mode_addfb2 [drm]] [FB:122] [ 4.166225] [drm:drm_mode_addfb2 [drm]] [FB:122] [ 4.168256] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 4.168302] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 4.168332] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 4.168427] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 4.168436] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 4.168478] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 4.168516] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 4.168843] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 4.168889] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 4.169312] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.170481] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.171694] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.172903] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.174122] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.174904] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 4.175353] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 4.176102] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 4.176142] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 4.176180] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 4.176571] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 4.176902] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 4.177332] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.178551] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.179728] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.180898] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.182121] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.184367] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 4.184400] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 4.184722] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 4.184738] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 4.184770] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 4.184792] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 4.184807] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 4.184821] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 4.184834] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 4.184848] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 4.184861] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 4.185455] [drm:drm_mode_debug_printmodeline [drm]] Modeline 193:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 4.185469] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 4.185483] [drm:drm_mode_debug_printmodeline [drm]] Modeline 194:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 4.185496] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 4.185510] [drm:drm_mode_debug_printmodeline [drm]] Modeline 220:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 4.185523] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 4.185542] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 4.185557] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 4.185571] [drm:drm_mode_debug_printmodeline [drm]] Modeline 189:"4096x2160" 60 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185585] [drm:drm_mode_debug_printmodeline [drm]] Modeline 217:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185599] [drm:drm_mode_debug_printmodeline [drm]] Modeline 188:"4096x2160" 50 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 4.185613] [drm:drm_mode_debug_printmodeline [drm]] Modeline 192:"4096x2160" 30 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185628] [drm:drm_mode_debug_printmodeline [drm]] Modeline 219:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185642] [drm:drm_mode_debug_printmodeline [drm]] Modeline 191:"4096x2160" 25 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 4.185656] [drm:drm_mode_debug_printmodeline [drm]] Modeline 190:"4096x2160" 24 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 4.185670] [drm:drm_mode_debug_printmodeline [drm]] Modeline 218:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 4.185684] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185698] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 4.185712] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185726] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 4.185741] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 4.185755] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 4.185769] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 4.185783] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 4.185797] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 4.185811] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 4.185825] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 4.185840] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 4.185854] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 4.185868] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 4.185882] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 4.185896] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 4.185910] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 4.185924] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 4.185954] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 4.185969] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 4.185984] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 4.185998] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 4.186013] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 4.186042] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 4.186056] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 4.186070] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 4.186084] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 4.186099] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 4.186133] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 4.186167] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 4.186182] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 4.186196] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 4.186210] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 4.186224] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 4.186238] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 4.186253] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 4.186267] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 4.186281] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 4.186295] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 4.186309] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 4.186323] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 4.186337] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 4.186352] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 4.186366] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 4.186380] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 4.186394] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 4.186408] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 4.186422] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 4.186437] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 4.186451] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 4.188152] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 4.188206] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 4.188424] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 4.188458] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 4.188652] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 4.188674] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 4.188708] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 4.188743] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 4.189294] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 4.189330] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 4.189527] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 4.189561] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 4.189755] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 4.189767] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 4.189777] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 4.250115] [drm:drm_mode_addfb2 [drm]] [FB:95] [ 4.409510] [drm:drm_mode_addfb2 [drm]] [FB:127] [ 4.409629] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 4.409650] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:85:DP-2] [ 4.660540] [drm:intel_atomic_check [i915]] [CONNECTOR:85:DP-2] checking for sink bpp constrains [ 4.660587] [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 4 max bw 540000 pixel clock 594000KHz [ 4.660631] [drm:intel_dp_compute_config [i915]] DP link bw 14 rate select 00 lane count 4 clock 540000 bpp 24 [ 4.660671] [drm:intel_dp_compute_config [i915]] DP link bw required 1782000 available 2160000 [ 4.660717] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0 [ 4.660761] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][modeset] [ 4.660801] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 4.660845] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0 [ 4.660886] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 6920601, gmch_n: 8388608, link_m: 1153433, link_n: 1048576, tu: 64 [ 4.660926] [drm:intel_dump_pipe_config [i915]] audio: 1, infoframes: 0 [ 4.660965] [drm:intel_dump_pipe_config [i915]] requested mode: [ 4.660990] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x0 0x5 [ 4.661030] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 4.661048] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x0 0x5 [ 4.661089] [drm:intel_dump_pipe_config [i915]] crtc timings: 594000 3840 4016 4104 4400 2160 2168 2178 2250, type: 0x0 flags: 0x5 [ 4.661130] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 3840x2160, pixel rate 594000 [ 4.661171] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1 [ 4.661211] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 4.661251] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 4.661296] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x4100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x58 [ 4.661336] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 4.661381] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] FB:95, fb = 3840x2160 format = XR24 little-endian (0x34325258) [ 4.661423] [drm:intel_dump_pipe_config [i915]] scaler:-1 src 0x0+3840+2160 dst 0x0+3840+2160 [ 4.661465] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 4.661507] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 4.661550] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] FB:120, fb = 64x64 format = AR24 little-endian (0x34325241) [ 4.661591] [drm:intel_dump_pipe_config [i915]] scaler:-1 src 0x0+64+64 dst 1919x1079+64+64 [ 4.661636] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 624000 kHz, actual 624000 kHz [ 4.661676] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 25, actual 25 [ 4.661728] [drm:bxt_get_dpll [i915]] [CRTC:46:pipe A] using pre-allocated PORT PLL B [ 4.661768] [drm:intel_reference_shared_dpll [i915]] using PORT PLL B for pipe A [ 4.661879] [drm:hsw_audio_codec_disable [i915]] Disable audio codec on pipe A [ 4.661925] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 4.661981] [drm:intel_disable_pipe [i915]] disabling pipe A [ 4.670933] [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A [ 4.670986] [drm:intel_disable_shared_dpll [i915]] disable PORT PLL B (active 1, on? 1) for crtc 46 [ 4.671047] [drm:intel_disable_shared_dpll [i915]] disabling PORT PLL B [ 4.671097] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 4.671141] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 4.671185] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 4.671230] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 4.671274] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 4.671319] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 4.671361] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 4.671406] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 4.671448] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 4.671506] [drm:intel_enable_shared_dpll [i915]] enable PORT PLL B (active 1, on? 0) for crtc 46 [ 4.671549] [drm:intel_enable_shared_dpll [i915]] enabling PORT PLL B [ 4.672235] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.673418] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.674647] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.675867] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.677052] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 4.677888] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 4.678854] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0 [ 4.678896] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0 [ 4.678941] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1 [ 4.697638] [drm:intel_dp_start_link_train [i915]] clock recovery OK [ 4.697684] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3 [ 4.715467] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful [ 4.715584] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:85:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4 [ 4.715803] [drm:intel_enable_pipe [i915]] enabling pipe A [ 4.715851] [drm:intel_enable_ddi [i915]] Panel doesn't support DRRS [ 4.715887] [drm:intel_audio_codec_enable [i915]] ELD on [CONNECTOR:85:DP-2], [ENCODER:84:DDI B] [ 4.715922] [drm:hsw_audio_codec_enable [i915]] Enable audio codec on pipe A, 52 bytes ELD [ 4.715960] [drm:hsw_audio_config_update [i915]] using automatic Maud, Naud [ 4.716020] [drm:intel_fbc_enable [i915]] reserved 66355200 bytes of contiguous stolen space for FBC, threshold: 1 [ 4.716086] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A [ 4.732742] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 4.732802] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 4.732899] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 5.258073] r8169 0000:01:00.0 enp1s0: link up [ 5.258085] IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready [ 5.600593] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 5.600629] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 5.600659] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 5.600689] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 5.600720] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 5.600753] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 5.600784] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 5.600814] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 5.611955] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 5.628692] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 6.054437] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 6.067824] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 6.067935] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 144000 kHz, actual 144000 kHz [ 6.067998] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 6, actual 6 [ 6.068158] [drm:hsw_audio_codec_disable [i915]] Disable audio codec on pipe A [ 6.068228] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 6.068310] [drm:intel_disable_pipe [i915]] disabling pipe A [ 6.082928] [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A [ 6.082980] [drm:intel_disable_shared_dpll [i915]] disable PORT PLL B (active 1, on? 1) for crtc 46 [ 6.083041] [drm:intel_disable_shared_dpll [i915]] disabling PORT PLL B [ 6.083099] [drm:intel_dump_cdclk_state [i915]] Changing CDCLK to 144000 kHz, VCO 1152000 kHz, ref 19200 kHz, bypass 19200 kHz, voltage level 6 [ 6.083288] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 6.083332] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 6.083378] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 6.083422] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 6.083467] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 6.083511] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 6.083556] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 6.083601] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 6.083647] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 6.083690] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 6.083735] [drm:intel_power_well_disable [i915]] disabling dpio-common-bc [ 6.083785] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 6.089736] [drm:drm_mode_addfb2 [drm]] [FB:124] [ 6.090450] [drm:drm_mode_addfb2 [drm]] [FB:120] [ 6.090628] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 6.090649] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:85:DP-2] [ 6.090712] [drm:intel_atomic_check [i915]] [CONNECTOR:85:DP-2] checking for sink bpp constrains [ 6.090749] [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 4 max bw 540000 pixel clock 148500KHz [ 6.090786] [drm:intel_dp_compute_config [i915]] DP link bw 0a rate select 00 lane count 4 clock 270000 bpp 36 [ 6.090821] [drm:intel_dp_compute_config [i915]] DP link bw required 668250 available 1080000 [ 6.090858] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 36, dithering: 0 [ 6.090893] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][modeset] [ 6.090928] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 6.090964] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 36, dithering: 0 [ 6.090999] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 5190451, gmch_n: 8388608, link_m: 288358, link_n: 524288, tu: 64 [ 6.091034] [drm:intel_dump_pipe_config [i915]] audio: 1, infoframes: 0 [ 6.091068] [drm:intel_dump_pipe_config [i915]] requested mode: [ 6.091084] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x0 0x5 [ 6.091119] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 6.091134] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x0 0x5 [ 6.091170] [drm:intel_dump_pipe_config [i915]] crtc timings: 148500 1920 2448 2492 2640 1080 1084 1089 1125, type: 0x0 flags: 0x5 [ 6.091206] [drm:intel_dump_pipe_config [i915]] port clock: 270000, pipe src size: 1920x1080, pixel rate 148500 [ 6.091241] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1 [ 6.091276] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 6.091310] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 6.091348] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x4100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x58 [ 6.091382] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 6.091417] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1 [ 6.091453] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 6.091488] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 6.091523] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] disabled, scaler_id = -1 [ 6.091563] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 288000 kHz, actual 288000 kHz [ 6.091598] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 12, actual 12 [ 6.091642] [drm:bxt_get_dpll [i915]] [CRTC:46:pipe A] using pre-allocated PORT PLL B [ 6.091678] [drm:intel_reference_shared_dpll [i915]] using PORT PLL B for pipe A [ 6.094264] [drm:intel_power_well_enable [i915]] enabling dpio-common-bc [ 6.094473] [drm:intel_dump_cdclk_state [i915]] Changing CDCLK to 288000 kHz, VCO 1152000 kHz, ref 19200 kHz, bypass 19200 kHz, voltage level 12 [ 6.094651] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 6.094688] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 6.094725] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 6.094762] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 6.094799] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 6.094836] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 6.094873] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 6.094910] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 6.094947] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 6.094997] [drm:intel_enable_shared_dpll [i915]] enable PORT PLL B (active 1, on? 0) for crtc 46 [ 6.095034] [drm:intel_enable_shared_dpll [i915]] enabling PORT PLL B [ 6.095725] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 6.096952] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 6.098169] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 6.099382] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 6.100619] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 6.101464] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 6.102432] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0 [ 6.102476] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0 [ 6.102523] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1 [ 6.121189] [drm:intel_dp_start_link_train [i915]] clock recovery OK [ 6.121236] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3 [ 6.139022] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful [ 6.139218] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:85:DP-2] Link Training Passed at Link Rate = 270000, Lane count = 4 [ 6.139454] [drm:intel_enable_pipe [i915]] enabling pipe A [ 6.139502] [drm:intel_enable_ddi [i915]] Panel doesn't support DRRS [ 6.139535] [drm:intel_audio_codec_enable [i915]] ELD on [CONNECTOR:85:DP-2], [ENCODER:84:DDI B] [ 6.139568] [drm:hsw_audio_codec_enable [i915]] Enable audio codec on pipe A, 52 bytes ELD [ 6.139604] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 6.139680] [drm:intel_fbc_enable [i915]] reserved 16588800 bytes of contiguous stolen space for FBC, threshold: 1 [ 6.139713] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A [ 6.159755] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 6.159817] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 6.159918] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 6.306584] [drm:drm_mode_addfb2 [drm]] [FB:135] [ 6.496345] [drm:drm_mode_addfb2 [drm]] [FB:137] [ 6.526103] [drm:drm_mode_addfb2 [drm]] [FB:138] [ 7.420032] [drm:drm_mode_addfb2 [drm]] [FB:127] [ 7.425206] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 7.426810] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 7.464821] [drm:drm_mode_addfb2 [drm]] [FB:137] [ 7.511536] [drm:drm_mode_addfb2 [drm]] [FB:138] [ 67.615704] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 100.009637] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 100.009672] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 100.009704] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 100.009736] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 100.009768] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 100.009800] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 100.009832] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 100.009864] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 100.011539] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 100.023934] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 194.277586] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 194.289527] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 194.301990] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 223.747008] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 223.756753] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 223.769325] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 231.109837] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 231.116253] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 231.129383] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 302.386135] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 302.396058] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 302.407199] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 617.270209] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 617.276792] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 617.289414] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 642.276555] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 642.282261] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 642.294704] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 688.915994] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 688.923752] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 688.934102] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 706.955194] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 706.962190] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 706.974319] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 713.291513] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 713.297694] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 713.310495] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 722.462470] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 722.470875] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 722.483548] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 731.700875] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 731.709640] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 731.722573] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 791.911009] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 9375 [ 1083.570515] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 1083.570555] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 1083.570588] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 1083.570621] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 1083.570657] [drm:i915_audio_component_get_eld [i915]] Not valid for port C [ 1083.570691] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 1083.570724] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 1083.570757] [drm:i915_audio_component_get_eld [i915]] Not valid for port D [ 1083.572147] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 1083.583492] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 1084.003358] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 5625 [ 1084.028531] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 1084.028581] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 1084.028611] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1084.028711] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1084.028722] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 1084.028754] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 1084.028798] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 1084.029158] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1084.029225] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 1084.029661] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.030883] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.032085] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.033337] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.034613] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.035431] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1084.035922] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1084.036664] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 1084.036700] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 1084.036734] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 1084.037126] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1084.037462] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 1084.037913] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.039233] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.040485] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.041696] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.042881] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.043846] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 1084.043877] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 1084.044195] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1084.044211] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1084.044225] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1084.044247] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 1084.044262] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 1084.044276] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 1084.044290] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1084.044304] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1084.044318] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1084.044865] [drm:drm_mode_debug_printmodeline [drm]] Modeline 204:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 1084.044879] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1084.044894] [drm:drm_mode_debug_printmodeline [drm]] Modeline 205:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 1084.044908] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 1084.044923] [drm:drm_mode_debug_printmodeline [drm]] Modeline 234:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 1084.044937] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1084.044957] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 1084.044972] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1084.044987] [drm:drm_mode_debug_printmodeline [drm]] Modeline 189:"4096x2160" 60 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045002] [drm:drm_mode_debug_printmodeline [drm]] Modeline 217:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045017] [drm:drm_mode_debug_printmodeline [drm]] Modeline 188:"4096x2160" 50 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1084.045032] [drm:drm_mode_debug_printmodeline [drm]] Modeline 192:"4096x2160" 30 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045046] [drm:drm_mode_debug_printmodeline [drm]] Modeline 219:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045061] [drm:drm_mode_debug_printmodeline [drm]] Modeline 191:"4096x2160" 25 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1084.045076] [drm:drm_mode_debug_printmodeline [drm]] Modeline 190:"4096x2160" 24 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1084.045106] [drm:drm_mode_debug_printmodeline [drm]] Modeline 218:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1084.045121] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045135] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1084.045150] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045165] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1084.045180] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1084.045195] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1084.045209] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1084.045224] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1084.045239] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1084.045254] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1084.045269] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1084.045284] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1084.045298] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 1084.045313] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1084.045328] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1084.045343] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1084.045358] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1084.045372] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1084.045387] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 1084.045402] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 1084.045417] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 1084.045432] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1084.045447] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1084.045462] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1084.045476] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1084.045491] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 1084.045506] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 1084.045521] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 1084.045536] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1084.045551] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1084.045565] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 1084.045580] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 1084.045595] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 1084.045610] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 1084.045625] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 1084.045640] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1084.045654] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1084.045669] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 1084.045684] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 1084.045699] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 1084.045714] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 1084.045728] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 1084.045744] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 1084.045758] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 1084.045773] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 1084.045789] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 1084.045803] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 1084.045818] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 1084.045833] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 1084.045848] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 1084.046358] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 1084.046408] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 1084.046632] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1084.046666] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1084.046861] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1084.046883] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1084.046919] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 1084.046954] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 1084.047530] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1084.047572] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 1084.047773] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1084.047807] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1084.048003] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1084.048016] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 1084.048026] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 1084.054296] [drm:drm_mode_addfb2 [drm]] [FB:120] [ 1084.071242] [drm:drm_mode_addfb2 [drm]] [FB:122] [ 1084.071317] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 1084.071339] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:85:DP-2] [ 1084.101513] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 1084.101537] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:85:DP-2] [ 1084.101602] [drm:intel_atomic_check [i915]] [CONNECTOR:85:DP-2] checking for sink bpp constrains [ 1084.101672] [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 4 max bw 540000 pixel clock 594000KHz [ 1084.101717] [drm:intel_dp_compute_config [i915]] DP link bw 14 rate select 00 lane count 4 clock 540000 bpp 24 [ 1084.101788] [drm:intel_dp_compute_config [i915]] DP link bw required 1782000 available 2160000 [ 1084.101839] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0 [ 1084.101887] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][modeset] [ 1084.101935] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 1084.102060] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0 [ 1084.102109] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 6920601, gmch_n: 8388608, link_m: 1153433, link_n: 1048576, tu: 64 [ 1084.102154] [drm:intel_dump_pipe_config [i915]] audio: 1, infoframes: 0 [ 1084.102197] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1084.102227] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x0 0x5 [ 1084.102271] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1084.102293] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x0 0x5 [ 1084.102333] [drm:intel_dump_pipe_config [i915]] crtc timings: 594000 3840 4896 4984 5280 2160 2168 2178 2250, type: 0x0 flags: 0x5 [ 1084.102372] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 3840x2160, pixel rate 594000 [ 1084.102417] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1 [ 1084.102460] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 1084.102498] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1084.102540] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x8100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x4d [ 1084.102578] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1084.102620] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] FB:120, fb = 3840x2160 format = XR24 little-endian (0x34325258) [ 1084.102660] [drm:intel_dump_pipe_config [i915]] scaler:-1 src 0x0+1920+1080 dst 0x0+1920+1080 [ 1084.102702] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 1084.102741] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 1084.102780] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] disabled, scaler_id = -1 [ 1084.102830] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 624000 kHz, actual 624000 kHz [ 1084.102869] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 25, actual 25 [ 1084.102926] [drm:bxt_get_dpll [i915]] [CRTC:46:pipe A] using pre-allocated PORT PLL B [ 1084.102965] [drm:intel_reference_shared_dpll [i915]] using PORT PLL B for pipe A [ 1084.109453] [drm:hsw_audio_codec_disable [i915]] Disable audio codec on pipe A [ 1084.109507] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 1084.109610] [drm:intel_disable_pipe [i915]] disabling pipe A [ 1084.122231] [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A [ 1084.122274] [drm:intel_disable_shared_dpll [i915]] disable PORT PLL B (active 1, on? 1) for crtc 46 [ 1084.122325] [drm:intel_disable_shared_dpll [i915]] disabling PORT PLL B [ 1084.122367] [drm:intel_dump_cdclk_state [i915]] Changing CDCLK to 624000 kHz, VCO 1248000 kHz, ref 19200 kHz, bypass 19200 kHz, voltage level 25 [ 1084.122552] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 1084.122586] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 1084.122621] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 1084.122655] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 1084.122689] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 1084.122723] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 1084.122757] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 1084.122791] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1084.122825] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 1084.122872] [drm:intel_enable_shared_dpll [i915]] enable PORT PLL B (active 1, on? 0) for crtc 46 [ 1084.122906] [drm:intel_enable_shared_dpll [i915]] enabling PORT PLL B [ 1084.123582] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.124757] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.125998] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.127175] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.128414] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1084.129253] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1084.130347] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0 [ 1084.130383] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0 [ 1084.130417] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1 [ 1084.149133] [drm:intel_dp_start_link_train [i915]] clock recovery OK [ 1084.149169] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3 [ 1084.166981] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful [ 1084.167100] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:85:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4 [ 1084.167319] [drm:intel_enable_pipe [i915]] enabling pipe A [ 1084.167368] [drm:intel_enable_ddi [i915]] Panel doesn't support DRRS [ 1084.167402] [drm:intel_audio_codec_enable [i915]] ELD on [CONNECTOR:85:DP-2], [ENCODER:84:DDI B] [ 1084.167436] [drm:hsw_audio_codec_enable [i915]] Enable audio codec on pipe A, 52 bytes ELD [ 1084.167472] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1084.167541] [drm:intel_fbc_enable [i915]] reserved 66355200 bytes of contiguous stolen space for FBC, threshold: 1 [ 1084.167575] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A [ 1084.187561] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 1084.187604] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 1084.187682] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1084.431925] [drm:drm_mode_addfb2 [drm]] [FB:124] [ 1084.448551] [drm:drm_mode_addfb2 [drm]] [FB:135] [ 1084.467575] [drm:drm_mode_addfb2 [drm]] [FB:137] [ 1085.194219] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1085.196952] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1132.331710] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1132.338968] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1132.351484] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1148.191816] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1148.199502] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1148.212843] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1148.349073] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1148.369883] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] [ 1148.369951] [drm:intel_dp_detect [i915]] [CONNECTOR:81:DP-1] [ 1148.369999] [drm:intel_power_well_enable [i915]] enabling dpio-common-a [ 1148.370116] [drm:intel_power_well_disable [i915]] disabling dpio-common-a [ 1148.370130] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:81:DP-1] disconnected [ 1148.370170] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] [ 1148.370232] [drm:intel_dp_detect [i915]] [CONNECTOR:85:DP-2] [ 1148.370590] [drm:lspcon_wake_native_aux_ch [i915]] Native AUX CH up, DPCD version: 1.2 [ 1148.370644] [drm:lspcon_resume [i915]] LSPCON recovering in PCON mode after 0 ms [ 1148.371078] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.372258] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.373491] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.374707] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.375925] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.376747] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1148.377170] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 c4 01 01 15 01 81 00 00 04 00 0f 00 04 [ 1148.377884] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 243000, 270000, 324000, 432000, 540000 [ 1148.377918] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000 [ 1148.377952] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000 [ 1148.378329] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-60-ad dev-ID MC2800 HW-rev 2.2 SW-rev 1.72 quirks 0x0000 [ 1148.378643] [drm:intel_dp_detect [i915]] Sink is not MST capable [ 1148.379068] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.380287] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.381502] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.382698] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.383903] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.384848] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-2" [ 1148.384876] [drm:drm_detect_monitor_audio [drm]] Monitor has basic audio support [ 1148.385191] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1148.385207] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1148.385221] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1148.385244] [drm:drm_add_edid_modes [drm]] ELD monitor DENON-AVR [ 1148.385259] [drm:drm_add_edid_modes [drm]] HDMI: latency present 0 0, video latency 0 1, audio latency 128 2 [ 1148.385273] [drm:drm_add_edid_modes [drm]] ELD size 52, SAD count 7 [ 1148.385288] [drm:drm_add_display_info [drm]] non_desktop set to 0 [ 1148.385302] [drm:drm_add_display_info [drm]] HDMI: DVI dual 0, max TMDS clock 300000 kHz [ 1148.385316] [drm:drm_add_display_info [drm]] HF-VSDB: max TMDS clock 600000 kHz [ 1148.385858] [drm:drm_mode_debug_printmodeline [drm]] Modeline 204:"720x480i" 0 13500 720 739 801 858 480 488 494 525 0x40 0x101a [ 1148.385874] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1148.385889] [drm:drm_mode_debug_printmodeline [drm]] Modeline 205:"720x576i" 0 13500 720 732 795 864 576 580 586 625 0x40 0x101a [ 1148.385903] [drm:drm_mode_prune_invalid [drm]] Not using 720x576i mode: H_ILLEGAL [ 1148.385918] [drm:drm_mode_debug_printmodeline [drm]] Modeline 234:"720x480i" 60 13514 720 739 801 858 480 488 494 525 0x40 0x101a [ 1148.385931] [drm:drm_mode_prune_invalid [drm]] Not using 720x480i mode: H_ILLEGAL [ 1148.385951] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:85:DP-2] probed modes : [ 1148.385967] [drm:drm_mode_debug_printmodeline [drm]] Modeline 97:"3840x2160" 60 594000 3840 4016 4104 4400 2160 2168 2178 2250 0x48 0x5 [ 1148.385982] [drm:drm_mode_debug_printmodeline [drm]] Modeline 189:"4096x2160" 60 594000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.385996] [drm:drm_mode_debug_printmodeline [drm]] Modeline 217:"4096x2160" 60 593407 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386011] [drm:drm_mode_debug_printmodeline [drm]] Modeline 188:"4096x2160" 50 594000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1148.386026] [drm:drm_mode_debug_printmodeline [drm]] Modeline 192:"4096x2160" 30 297000 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386041] [drm:drm_mode_debug_printmodeline [drm]] Modeline 219:"4096x2160" 30 296703 4096 4184 4272 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386056] [drm:drm_mode_debug_printmodeline [drm]] Modeline 191:"4096x2160" 25 297000 4096 5064 5152 5280 2160 2168 2178 2250 0x40 0x5 [ 1148.386070] [drm:drm_mode_debug_printmodeline [drm]] Modeline 190:"4096x2160" 24 297000 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1148.386085] [drm:drm_mode_debug_printmodeline [drm]] Modeline 218:"4096x2160" 24 296703 4096 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1148.386100] [drm:drm_mode_debug_printmodeline [drm]] Modeline 152:"3840x2160" 60 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386115] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"3840x2160" 50 594000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1148.386129] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"3840x2160" 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386144] [drm:drm_mode_debug_printmodeline [drm]] Modeline 163:"3840x2160" 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5 [ 1148.386159] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"3840x2160" 25 297000 3840 4896 4984 5280 2160 2168 2178 2250 0x40 0x5 [ 1148.386174] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"3840x2160" 24 297000 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1148.386188] [drm:drm_mode_debug_printmodeline [drm]] Modeline 162:"3840x2160" 24 296703 3840 5116 5204 5500 2160 2168 2178 2250 0x40 0x5 [ 1148.386203] [drm:drm_mode_debug_printmodeline [drm]] Modeline 98:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1148.386218] [drm:drm_mode_debug_printmodeline [drm]] Modeline 153:"1920x1080" 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1148.386233] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080i" 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1148.386248] [drm:drm_mode_debug_printmodeline [drm]] Modeline 159:"1920x1080i" 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 [ 1148.386263] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1920x1080" 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1148.386278] [drm:drm_mode_debug_printmodeline [drm]] Modeline 99:"1920x1080i" 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 [ 1148.386293] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"1920x1080" 30 74250 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1148.386308] [drm:drm_mode_debug_printmodeline [drm]] Modeline 161:"1920x1080" 30 74176 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5 [ 1148.386322] [drm:drm_mode_debug_printmodeline [drm]] Modeline 129:"1920x1080" 25 74250 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5 [ 1148.386337] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"1920x1080" 24 74250 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1148.386352] [drm:drm_mode_debug_printmodeline [drm]] Modeline 160:"1920x1080" 24 74176 1920 2558 2602 2750 1080 1084 1089 1125 0x40 0x5 [ 1148.386367] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 119000 1680 1728 1760 1840 1050 1053 1059 1080 0x40 0x9 [ 1148.386381] [drm:drm_mode_debug_printmodeline [drm]] Modeline 147:"2880x576" 50 108000 2880 2928 3184 3456 576 581 586 625 0x40 0xa [ 1148.386396] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1600x900" 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5 [ 1148.386411] [drm:drm_mode_debug_printmodeline [drm]] Modeline 170:"2880x480" 60 108108 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1148.386426] [drm:drm_mode_debug_printmodeline [drm]] Modeline 145:"2880x480" 60 108000 2880 2944 3192 3432 480 489 495 525 0x40 0xa [ 1148.386441] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1148.386456] [drm:drm_mode_debug_printmodeline [drm]] Modeline 103:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 1148.386470] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1440x900" 60 88750 1440 1488 1520 1600 900 903 909 926 0x40 0x9 [ 1148.386486] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1280x800" 60 71000 1280 1328 1360 1440 800 803 809 823 0x40 0x9 [ 1148.386500] [drm:drm_mode_debug_printmodeline [drm]] Modeline 100:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5 [ 1148.386515] [drm:drm_mode_debug_printmodeline [drm]] Modeline 101:"1280x720" 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1148.386530] [drm:drm_mode_debug_printmodeline [drm]] Modeline 154:"1280x720" 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5 [ 1148.386545] [drm:drm_mode_debug_printmodeline [drm]] Modeline 125:"1280x720" 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5 [ 1148.386559] [drm:drm_mode_debug_printmodeline [drm]] Modeline 146:"1440x576" 50 54000 1440 1464 1592 1728 576 581 586 625 0x40 0xa [ 1148.386574] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5 [ 1148.386589] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa [ 1148.386604] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 1148.386619] [drm:drm_mode_debug_printmodeline [drm]] Modeline 169:"1440x480" 60 54054 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1148.386634] [drm:drm_mode_debug_printmodeline [drm]] Modeline 144:"1440x480" 60 54000 1440 1472 1596 1716 480 489 495 525 0x40 0xa [ 1148.386649] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa [ 1148.386663] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5 [ 1148.386678] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5 [ 1148.386693] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 1148.386708] [drm:drm_mode_debug_printmodeline [drm]] Modeline 143:"720x576" 50 27000 720 732 796 864 576 581 586 625 0x40 0xa [ 1148.386723] [drm:drm_mode_debug_printmodeline [drm]] Modeline 168:"720x480" 60 27027 720 736 798 858 480 489 495 525 0x40 0xa [ 1148.386738] [drm:drm_mode_debug_printmodeline [drm]] Modeline 142:"720x480" 60 27000 720 736 798 858 480 489 495 525 0x40 0xa [ 1148.386753] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa [ 1148.386768] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa [ 1148.386783] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa [ 1148.386857] [drm:drm_mode_debug_printmodeline [drm]] Modeline 155:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 1148.386876] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa [ 1148.386900] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6 [ 1148.387149] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] [ 1148.387209] [drm:intel_hdmi_detect [i915]] [CONNECTOR:92:HDMI-A-1] [ 1148.387492] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1148.387536] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1148.387744] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1) [ 1148.387769] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1148.387815] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging [ 1148.387858] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1 [ 1148.388436] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc [ 1148.388493] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0 [ 1148.388722] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1148.388765] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry [ 1148.388975] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1) [ 1148.388991] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID: (err -6) [ 1148.389004] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:92:HDMI-A-1] disconnected [ 1148.407547] [drm:drm_mode_setcrtc [drm]] [CRTC:46:pipe A] [ 1148.407568] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:85:DP-2] [ 1148.407630] [drm:intel_atomic_check [i915]] [CONNECTOR:85:DP-2] checking for sink bpp constrains [ 1148.407665] [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 4 max bw 540000 pixel clock 593407KHz [ 1148.407699] [drm:intel_dp_compute_config [i915]] DP link bw 14 rate select 00 lane count 4 clock 540000 bpp 24 [ 1148.407731] [drm:intel_dp_compute_config [i915]] DP link bw required 1780221 available 2160000 [ 1148.407765] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0 [ 1148.407798] [drm:intel_dump_pipe_config [i915]] [CRTC:46:pipe A][modeset] [ 1148.407830] [drm:intel_dump_pipe_config [i915]] output_types: DP (0x80) [ 1148.407863] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0 [ 1148.407911] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 6913692, gmch_n: 8388608, link_m: 1152282, link_n: 1048576, tu: 64 [ 1148.407945] [drm:intel_dump_pipe_config [i915]] audio: 1, infoframes: 0 [ 1148.407978] [drm:intel_dump_pipe_config [i915]] requested mode: [ 1148.408008] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x0 0x5 [ 1148.408039] [drm:intel_dump_pipe_config [i915]] adjusted mode: [ 1148.408054] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 593407 3840 4016 4104 4400 2160 2168 2178 2250 0x0 0x5 [ 1148.408087] [drm:intel_dump_pipe_config [i915]] crtc timings: 593407 3840 4016 4104 4400 2160 2168 2178 2250, type: 0x0 flags: 0x5 [ 1148.408119] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 3840x2160, pixel rate 593407 [ 1148.408151] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1 [ 1148.408184] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled [ 1148.408216] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0 [ 1148.408250] [drm:bxt_dump_hw_state [i915]] dpll_hw_state: ebb0: 0x4100, ebb4: 0x2000,pll0: 0x1b, pll1: 0x100, pll2: 0x0, pll3: 0x0, pll6: 0x10803, pll8: 0x9, pll9: 0xa, pll10: 0x8003c00, pcsdw12: 0x58 [ 1148.408282] [drm:intel_dump_pipe_config [i915]] planes on this crtc [ 1148.408316] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] FB:137, fb = 3840x2160 format = XR24 little-endian (0x34325258) [ 1148.408348] [drm:intel_dump_pipe_config [i915]] scaler:-1 src 0x0+3840+2160 dst 0x0+3840+2160 [ 1148.408381] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1 [ 1148.408413] [drm:intel_dump_pipe_config [i915]] [PLANE:38:plane 3A] disabled, scaler_id = -1 [ 1148.408446] [drm:intel_dump_pipe_config [i915]] [PLANE:43:cursor A] disabled, scaler_id = -1 [ 1148.408481] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 624000 kHz, actual 624000 kHz [ 1148.408513] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 25, actual 25 [ 1148.408555] [drm:bxt_get_dpll [i915]] [CRTC:46:pipe A] using pre-allocated PORT PLL B [ 1148.408587] [drm:intel_reference_shared_dpll [i915]] using PORT PLL B for pipe A [ 1148.408659] [drm:hsw_audio_codec_disable [i915]] Disable audio codec on pipe A [ 1148.408696] [drm:i915_audio_component_get_eld [i915]] Not valid for port B [ 1148.408769] [drm:intel_disable_pipe [i915]] disabling pipe A [ 1148.429699] [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A [ 1148.429740] [drm:intel_disable_shared_dpll [i915]] disable PORT PLL B (active 1, on? 1) for crtc 46 [ 1148.429790] [drm:intel_disable_shared_dpll [i915]] disabling PORT PLL B [ 1148.429829] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DDI A] [ 1148.429861] [drm:intel_atomic_commit_tail [i915]] [ENCODER:84:DDI B] [ 1148.429894] [drm:intel_atomic_commit_tail [i915]] [ENCODER:86:DP-MST A] [ 1148.429927] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST B] [ 1148.429960] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST C] [ 1148.429992] [drm:intel_atomic_commit_tail [i915]] [ENCODER:91:DDI C] [ 1148.430025] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL A [ 1148.430058] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1148.430090] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL C [ 1148.430136] [drm:intel_enable_shared_dpll [i915]] enable PORT PLL B (active 1, on? 0) for crtc 46 [ 1148.430168] [drm:intel_enable_shared_dpll [i915]] enabling PORT PLL B [ 1148.430843] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.432072] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.433300] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.434517] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.435696] [drm:drm_dp_i2c_do_msg [drm_kms_helper]] native defer [ 1148.436529] [drm:lspcon_wait_mode [i915]] Current LSPCON mode PCON [ 1148.437511] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0 [ 1148.437543] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0 [ 1148.437576] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1 [ 1148.456232] [drm:intel_dp_start_link_train [i915]] clock recovery OK [ 1148.456280] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3 [ 1148.474074] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful [ 1148.474201] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:85:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4 [ 1148.474417] [drm:intel_enable_pipe [i915]] enabling pipe A [ 1148.474464] [drm:intel_enable_ddi [i915]] Panel doesn't support DRRS [ 1148.474498] [drm:intel_audio_codec_enable [i915]] ELD on [CONNECTOR:85:DP-2], [ENCODER:84:DDI B] [ 1148.474531] [drm:hsw_audio_codec_enable [i915]] Enable audio codec on pipe A, 52 bytes ELD [ 1148.474567] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1148.474635] [drm:intel_fbc_enable [i915]] reserved 66355200 bytes of contiguous stolen space for FBC, threshold: 1 [ 1148.474669] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A [ 1148.491299] [drm:verify_connector_state.isra.117 [i915]] [CONNECTOR:85:DP-2] [ 1148.491341] [drm:intel_atomic_commit_tail [i915]] [CRTC:46:pipe A] [ 1148.491417] [drm:verify_single_dpll_state.isra.118 [i915]] PORT PLL B [ 1148.626428] [drm:drm_mode_addfb2 [drm]] [FB:95] [ 1148.671091] [drm:drm_mode_addfb2 [drm]] [FB:127] [ 1148.692391] [drm:drm_mode_addfb2 [drm]] [FB:135] [ 1149.502760] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1149.505290] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1347.357574] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1347.365004] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1347.378256] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1349.379079] [drm:hsw_audio_config_update [i915]] using Maud 784, Naud 18750 [ 1349.388906] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1349.406465] [drm:hsw_audio_config_update [i915]] using Maud 512, Naud 11250 [ 1353.973454] missed_breadcrumb vcs0 missed breadcrumb at intel_breadcrumbs_hangcheck+0x59/0x80 [i915] [ 1353.973458] missed_breadcrumb current seqno 75eb, last 760a, hangcheck 75eb [2976 ms], inflight 31 [ 1353.973459] missed_breadcrumb Reset count: 0 (global 0) [ 1353.973460] missed_breadcrumb Requests: [ 1353.973463] missed_breadcrumb first 75ec [c6:32f3] prio=0 @ 4212ms: VideoPlayer[1034]/0 [ 1353.973465] missed_breadcrumb last 760a [c6:3311] prio=0 @ 4092ms: VideoPlayer[1034]/0 [ 1353.973467] missed_breadcrumb active 75ec [c6:32f3] prio=0 @ 4212ms: VideoPlayer[1034]/0 [ 1353.973470] missed_breadcrumb [head 2ca0, postfix 2cd0, tail 2ce8, batch 0x00000000_1709c000] [ 1353.973471] missed_breadcrumb ring->start: 0x06ae8000 [ 1353.973472] missed_breadcrumb ring->head: 0x00002c80 [ 1353.973473] missed_breadcrumb ring->tail: 0x00003648 [ 1353.973481] missed_breadcrumb RING_START: 0x06ae8000 [ 1353.973483] missed_breadcrumb RING_HEAD: 0x00002cd0 [ 1353.973486] missed_breadcrumb RING_TAIL: 0x00003648 [ 1353.973489] missed_breadcrumb RING_CTL: 0x00003001 [ 1353.973493] missed_breadcrumb RING_MODE: 0x00000000 [ 1353.973495] missed_breadcrumb RING_IMR: fffffefe [ 1353.973500] missed_breadcrumb ACTHD: 0x00000000_07e02cd0 [ 1353.973505] missed_breadcrumb BBADDR: 0x00000000_1709c9d8 [ 1353.973510] missed_breadcrumb DMA_FADDR: 0x00000000_06aeae28 [ 1353.973512] missed_breadcrumb IPEIR: 0x00000000 [ 1353.973514] missed_breadcrumb IPEHR: 0x13204002 [ 1353.973518] missed_breadcrumb Execlist status: 0x00044052 00000009 [ 1353.973521] missed_breadcrumb Execlist CSB read 1 [1 cached], write 1 [1 from hws], interrupt posted? no [ 1353.973524] missed_breadcrumb ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 4092ms: VideoPlayer[1034]/0 [ 1353.973525] missed_breadcrumb ELSP[1] idle [ 1353.973526] missed_breadcrumb HW active? 0x5 [ 1353.973528] missed_breadcrumb E 75ec [c6:32f3] prio=0 @ 4212ms: VideoPlayer[1034]/0 [ 1353.973530] missed_breadcrumb E 75ed [c6:32f4] prio=0 @ 4208ms: VideoPlayer[1034]/0 [ 1353.973531] missed_breadcrumb E 75ee [c6:32f5] prio=0 @ 4188ms: VideoPlayer[1034]/0 [ 1353.973533] missed_breadcrumb E 75ef [c6:32f6] prio=0 @ 4184ms: VideoPlayer[1034]/0 [ 1353.973535] missed_breadcrumb E 75f0 [c6:32f7] prio=0 @ 4184ms: VideoPlayer[1034]/0 [ 1353.973537] missed_breadcrumb E 75f1 [c6:32f8] prio=0 @ 4180ms: VideoPlayer[1034]/0 [ 1353.973539] missed_breadcrumb E 75f2 [c6:32f9] prio=0 @ 4180ms: VideoPlayer[1034]/0 [ 1353.973540] missed_breadcrumb E 75f3 [c6:32fa] prio=0 @ 4176ms: VideoPlayer[1034]/0 [ 1353.973542] missed_breadcrumb E 75f4 [c6:32fb] prio=0 @ 4172ms: VideoPlayer[1034]/0 [ 1353.973544] missed_breadcrumb E 75f5 [c6:32fc] prio=0 @ 4168ms: VideoPlayer[1034]/0 [ 1353.973546] missed_breadcrumb E 75f6 [c6:32fd] prio=0 @ 4164ms: VideoPlayer[1034]/0 [ 1353.973547] missed_breadcrumb E 75f7 [c6:32fe] prio=0 @ 4164ms: VideoPlayer[1034]/0 [ 1353.973549] missed_breadcrumb E 75f8 [c6:32ff] prio=0 @ 4144ms: VideoPlayer[1034]/0 [ 1353.973551] missed_breadcrumb E 75f9 [c6:3300] prio=0 @ 4140ms: VideoPlayer[1034]/0 [ 1353.973552] missed_breadcrumb E 75fa [c6:3301] prio=0 @ 4140ms: VideoPlayer[1034]/0 [ 1353.973554] missed_breadcrumb E 75fb [c6:3302] prio=0 @ 4136ms: VideoPlayer[1034]/0 [ 1353.973556] missed_breadcrumb E 75fc [c6:3303] prio=0 @ 4132ms: VideoPlayer[1034]/0 [ 1353.973558] missed_breadcrumb E 75fd [c6:3304] prio=0 @ 4132ms: VideoPlayer[1034]/0 [ 1353.973560] missed_breadcrumb E 75fe [c6:3305] prio=0 @ 4128ms: VideoPlayer[1034]/0 [ 1353.973561] missed_breadcrumb E 75ff [c6:3306] prio=0 @ 4124ms: VideoPlayer[1034]/0 [ 1353.973563] missed_breadcrumb E 7600 [c6:3307] prio=0 @ 4120ms: VideoPlayer[1034]/0 [ 1353.973565] missed_breadcrumb E 7601 [c6:3308] prio=0 @ 4120ms: VideoPlayer[1034]/0 [ 1353.973567] missed_breadcrumb E 7602 [c6:3309] prio=0 @ 4116ms: VideoPlayer[1034]/0 [ 1353.973568] missed_breadcrumb E 7603 [c6:330a] prio=0 @ 4112ms: VideoPlayer[1034]/0 [ 1353.973570] missed_breadcrumb E 7604 [c6:330b] prio=0 @ 4108ms: VideoPlayer[1034]/0 [ 1353.973572] missed_breadcrumb E 7605 [c6:330c] prio=0 @ 4104ms: VideoPlayer[1034]/0 [ 1353.973573] missed_breadcrumb E 7606 [c6:330d] prio=0 @ 4100ms: VideoPlayer[1034]/0 [ 1353.973575] missed_breadcrumb E 7607 [c6:330e] prio=0 @ 4096ms: VideoPlayer[1034]/0 [ 1353.973577] missed_breadcrumb E 7608 [c6:330f] prio=0 @ 4096ms: VideoPlayer[1034]/0 [ 1353.973578] missed_breadcrumb E 7609 [c6:3310] prio=0 @ 4092ms: VideoPlayer[1034]/0 [ 1353.973580] missed_breadcrumb E 760a [c6:3311] prio=0 @ 4092ms: VideoPlayer[1034]/0 [ 1353.973581] missed_breadcrumb Queue priority: -2147483648 [ 1353.973582] missed_breadcrumb Vaapi-Output [1112] waiting for 7608 [ 1353.973584] missed_breadcrumb IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1353.973585] missed_breadcrumb HWSP: [ 1353.973588] missed_breadcrumb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1353.973589] missed_breadcrumb * [ 1353.973592] missed_breadcrumb 00000040 00008002 00000009 00008002 00000009 00008002 00000009 00008002 00000009 [ 1353.973594] missed_breadcrumb 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000001 [ 1353.973596] missed_breadcrumb 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1353.973597] missed_breadcrumb * [ 1353.973599] missed_breadcrumb 000000c0 000075eb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1353.973602] missed_breadcrumb 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1353.973603] missed_breadcrumb * [ 1353.973604] missed_breadcrumb Idle? no [ 1354.997551] hangcheck vcs0 [ 1354.997555] hangcheck current seqno 75eb, last 760a, hangcheck 75eb [4000 ms], inflight 31 [ 1354.997557] hangcheck Reset count: 0 (global 0) [ 1354.997558] hangcheck Requests: [ 1354.997561] hangcheck first 75ec [c6:32f3] prio=0 @ 5236ms: VideoPlayer[1034]/0 [ 1354.997563] hangcheck last 760a [c6:3311] prio=0 @ 5116ms: VideoPlayer[1034]/0 [ 1354.997565] hangcheck active 75ec [c6:32f3] prio=0 @ 5236ms: VideoPlayer[1034]/0 [ 1354.997567] hangcheck [head 2ca0, postfix 2cd0, tail 2ce8, batch 0x00000000_1709c000] [ 1354.997569] hangcheck ring->start: 0x06ae8000 [ 1354.997570] hangcheck ring->head: 0x00002c80 [ 1354.997571] hangcheck ring->tail: 0x00003648 [ 1354.997574] hangcheck RING_START: 0x06ae8000 [ 1354.997576] hangcheck RING_HEAD: 0x00002cd0 [ 1354.997578] hangcheck RING_TAIL: 0x00003648 [ 1354.997582] hangcheck RING_CTL: 0x00003001 [ 1354.997586] hangcheck RING_MODE: 0x00000000 [ 1354.997588] hangcheck RING_IMR: fffffefe [ 1354.997593] hangcheck ACTHD: 0x00000000_07e02cd0 [ 1354.997598] hangcheck BBADDR: 0x00000000_1709c9d8 [ 1354.997603] hangcheck DMA_FADDR: 0x00000000_06aeae28 [ 1354.997606] hangcheck IPEIR: 0x00000000 [ 1354.997608] hangcheck IPEHR: 0x13204002 [ 1354.997612] hangcheck Execlist status: 0x00044052 00000009 [ 1354.997615] hangcheck Execlist CSB read 1 [1 cached], write 1 [1 from hws], interrupt posted? no [ 1354.997618] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 5116ms: VideoPlayer[1034]/0 [ 1354.997619] hangcheck ELSP[1] idle [ 1354.997620] hangcheck HW active? 0x5 [ 1354.997621] hangcheck E 75ec [c6:32f3] prio=0 @ 5236ms: VideoPlayer[1034]/0 [ 1354.997623] hangcheck E 75ed [c6:32f4] prio=0 @ 5232ms: VideoPlayer[1034]/0 [ 1354.997625] hangcheck E 75ee [c6:32f5] prio=0 @ 5212ms: VideoPlayer[1034]/0 [ 1354.997627] hangcheck E 75ef [c6:32f6] prio=0 @ 5208ms: VideoPlayer[1034]/0 [ 1354.997629] hangcheck E 75f0 [c6:32f7] prio=0 @ 5208ms: VideoPlayer[1034]/0 [ 1354.997631] hangcheck E 75f1 [c6:32f8] prio=0 @ 5204ms: VideoPlayer[1034]/0 [ 1354.997632] hangcheck E 75f2 [c6:32f9] prio=0 @ 5204ms: VideoPlayer[1034]/0 [ 1354.997634] hangcheck E 75f3 [c6:32fa] prio=0 @ 5200ms: VideoPlayer[1034]/0 [ 1354.997636] hangcheck E 75f4 [c6:32fb] prio=0 @ 5196ms: VideoPlayer[1034]/0 [ 1354.997638] hangcheck E 75f5 [c6:32fc] prio=0 @ 5192ms: VideoPlayer[1034]/0 [ 1354.997640] hangcheck E 75f6 [c6:32fd] prio=0 @ 5188ms: VideoPlayer[1034]/0 [ 1354.997641] hangcheck E 75f7 [c6:32fe] prio=0 @ 5188ms: VideoPlayer[1034]/0 [ 1354.997643] hangcheck E 75f8 [c6:32ff] prio=0 @ 5168ms: VideoPlayer[1034]/0 [ 1354.997645] hangcheck E 75f9 [c6:3300] prio=0 @ 5164ms: VideoPlayer[1034]/0 [ 1354.997647] hangcheck E 75fa [c6:3301] prio=0 @ 5164ms: VideoPlayer[1034]/0 [ 1354.997648] hangcheck E 75fb [c6:3302] prio=0 @ 5160ms: VideoPlayer[1034]/0 [ 1354.997650] hangcheck E 75fc [c6:3303] prio=0 @ 5156ms: VideoPlayer[1034]/0 [ 1354.997652] hangcheck E 75fd [c6:3304] prio=0 @ 5156ms: VideoPlayer[1034]/0 [ 1354.997654] hangcheck E 75fe [c6:3305] prio=0 @ 5152ms: VideoPlayer[1034]/0 [ 1354.997656] hangcheck E 75ff [c6:3306] prio=0 @ 5148ms: VideoPlayer[1034]/0 [ 1354.997657] hangcheck E 7600 [c6:3307] prio=0 @ 5144ms: VideoPlayer[1034]/0 [ 1354.997659] hangcheck E 7601 [c6:3308] prio=0 @ 5144ms: VideoPlayer[1034]/0 [ 1354.997661] hangcheck E 7602 [c6:3309] prio=0 @ 5140ms: VideoPlayer[1034]/0 [ 1354.997663] hangcheck E 7603 [c6:330a] prio=0 @ 5136ms: VideoPlayer[1034]/0 [ 1354.997664] hangcheck E 7604 [c6:330b] prio=0 @ 5132ms: VideoPlayer[1034]/0 [ 1354.997666] hangcheck E 7605 [c6:330c] prio=0 @ 5128ms: VideoPlayer[1034]/0 [ 1354.997668] hangcheck E 7606 [c6:330d] prio=0 @ 5124ms: VideoPlayer[1034]/0 [ 1354.997669] hangcheck E 7607 [c6:330e] prio=0 @ 5120ms: VideoPlayer[1034]/0 [ 1354.997671] hangcheck E 7608 [c6:330f] prio=0 @ 5120ms: VideoPlayer[1034]/0 [ 1354.997673] hangcheck E 7609 [c6:3310] prio=0 @ 5116ms: VideoPlayer[1034]/0 [ 1354.997675] hangcheck E 760a [c6:3311] prio=0 @ 5116ms: VideoPlayer[1034]/0 [ 1354.997676] hangcheck Queue priority: -2147483648 [ 1354.997677] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1354.997679] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1354.997679] hangcheck HWSP: [ 1354.997683] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1354.997684] hangcheck * [ 1354.997687] hangcheck 00000040 00008002 00000009 00008002 00000009 00008002 00000009 00008002 00000009 [ 1354.997689] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000001 [ 1354.997691] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1354.997692] hangcheck * [ 1354.997694] hangcheck 000000c0 000075eb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1354.997697] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1354.997697] hangcheck * [ 1354.997699] hangcheck Idle? no [ 1356.981517] hangcheck vcs0 [ 1356.981522] hangcheck current seqno 75eb, last 760a, hangcheck 75eb [5984 ms], inflight 31 [ 1356.981524] hangcheck Reset count: 0 (global 0) [ 1356.981525] hangcheck Requests: [ 1356.981528] hangcheck first 75ec [c6:32f3] prio=0 @ 7220ms: VideoPlayer[1034]/0 [ 1356.981531] hangcheck last 760a [c6:3311] prio=0 @ 7100ms: VideoPlayer[1034]/0 [ 1356.981533] hangcheck active 75ec [c6:32f3] prio=0 @ 7220ms: VideoPlayer[1034]/0 [ 1356.981536] hangcheck [head 2ca0, postfix 2cd0, tail 2ce8, batch 0x00000000_1709c000] [ 1356.981538] hangcheck ring->start: 0x06ae8000 [ 1356.981539] hangcheck ring->head: 0x00002c80 [ 1356.981540] hangcheck ring->tail: 0x00003648 [ 1356.981543] hangcheck RING_START: 0x06ae8000 [ 1356.981545] hangcheck RING_HEAD: 0x00002cd0 [ 1356.981548] hangcheck RING_TAIL: 0x00003648 [ 1356.981551] hangcheck RING_CTL: 0x00003001 [ 1356.981555] hangcheck RING_MODE: 0x00000000 [ 1356.981558] hangcheck RING_IMR: fffffefe [ 1356.981563] hangcheck ACTHD: 0x00000000_07e02cd0 [ 1356.981568] hangcheck BBADDR: 0x00000000_1709c9d8 [ 1356.981573] hangcheck DMA_FADDR: 0x00000000_06aeae28 [ 1356.981576] hangcheck IPEIR: 0x00000000 [ 1356.981578] hangcheck IPEHR: 0x13204002 [ 1356.981582] hangcheck Execlist status: 0x00044052 00000009 [ 1356.981586] hangcheck Execlist CSB read 1 [1 cached], write 1 [1 from hws], interrupt posted? no [ 1356.981589] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 7100ms: VideoPlayer[1034]/0 [ 1356.981590] hangcheck ELSP[1] idle [ 1356.981624] hangcheck HW active? 0x5 [ 1356.981626] hangcheck E 75ec [c6:32f3] prio=0 @ 7220ms: VideoPlayer[1034]/0 [ 1356.981628] hangcheck E 75ed [c6:32f4] prio=0 @ 7216ms: VideoPlayer[1034]/0 [ 1356.981630] hangcheck E 75ee [c6:32f5] prio=0 @ 7196ms: VideoPlayer[1034]/0 [ 1356.981632] hangcheck E 75ef [c6:32f6] prio=0 @ 7192ms: VideoPlayer[1034]/0 [ 1356.981634] hangcheck E 75f0 [c6:32f7] prio=0 @ 7192ms: VideoPlayer[1034]/0 [ 1356.981636] hangcheck E 75f1 [c6:32f8] prio=0 @ 7188ms: VideoPlayer[1034]/0 [ 1356.981638] hangcheck E 75f2 [c6:32f9] prio=0 @ 7188ms: VideoPlayer[1034]/0 [ 1356.981640] hangcheck E 75f3 [c6:32fa] prio=0 @ 7184ms: VideoPlayer[1034]/0 [ 1356.981642] hangcheck E 75f4 [c6:32fb] prio=0 @ 7180ms: VideoPlayer[1034]/0 [ 1356.981644] hangcheck E 75f5 [c6:32fc] prio=0 @ 7176ms: VideoPlayer[1034]/0 [ 1356.981645] hangcheck E 75f6 [c6:32fd] prio=0 @ 7172ms: VideoPlayer[1034]/0 [ 1356.981647] hangcheck E 75f7 [c6:32fe] prio=0 @ 7172ms: VideoPlayer[1034]/0 [ 1356.981649] hangcheck E 75f8 [c6:32ff] prio=0 @ 7152ms: VideoPlayer[1034]/0 [ 1356.981651] hangcheck E 75f9 [c6:3300] prio=0 @ 7148ms: VideoPlayer[1034]/0 [ 1356.981653] hangcheck E 75fa [c6:3301] prio=0 @ 7148ms: VideoPlayer[1034]/0 [ 1356.981655] hangcheck E 75fb [c6:3302] prio=0 @ 7144ms: VideoPlayer[1034]/0 [ 1356.981657] hangcheck E 75fc [c6:3303] prio=0 @ 7140ms: VideoPlayer[1034]/0 [ 1356.981658] hangcheck E 75fd [c6:3304] prio=0 @ 7140ms: VideoPlayer[1034]/0 [ 1356.981660] hangcheck E 75fe [c6:3305] prio=0 @ 7136ms: VideoPlayer[1034]/0 [ 1356.981662] hangcheck E 75ff [c6:3306] prio=0 @ 7132ms: VideoPlayer[1034]/0 [ 1356.981664] hangcheck E 7600 [c6:3307] prio=0 @ 7128ms: VideoPlayer[1034]/0 [ 1356.981666] hangcheck E 7601 [c6:3308] prio=0 @ 7128ms: VideoPlayer[1034]/0 [ 1356.981668] hangcheck E 7602 [c6:3309] prio=0 @ 7124ms: VideoPlayer[1034]/0 [ 1356.981669] hangcheck E 7603 [c6:330a] prio=0 @ 7120ms: VideoPlayer[1034]/0 [ 1356.981671] hangcheck E 7604 [c6:330b] prio=0 @ 7116ms: VideoPlayer[1034]/0 [ 1356.981673] hangcheck E 7605 [c6:330c] prio=0 @ 7112ms: VideoPlayer[1034]/0 [ 1356.981675] hangcheck E 7606 [c6:330d] prio=0 @ 7108ms: VideoPlayer[1034]/0 [ 1356.981677] hangcheck E 7607 [c6:330e] prio=0 @ 7104ms: VideoPlayer[1034]/0 [ 1356.981679] hangcheck E 7608 [c6:330f] prio=0 @ 7104ms: VideoPlayer[1034]/0 [ 1356.981681] hangcheck E 7609 [c6:3310] prio=0 @ 7100ms: VideoPlayer[1034]/0 [ 1356.981682] hangcheck E 760a [c6:3311] prio=0 @ 7100ms: VideoPlayer[1034]/0 [ 1356.981683] hangcheck Queue priority: -2147483648 [ 1356.981685] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1356.981686] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1356.981687] hangcheck HWSP: [ 1356.981691] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1356.981692] hangcheck * [ 1356.981695] hangcheck 00000040 00008002 00000009 00008002 00000009 00008002 00000009 00008002 00000009 [ 1356.981697] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000001 [ 1356.981700] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1356.981701] hangcheck * [ 1356.981703] hangcheck 000000c0 000075eb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1356.981706] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1356.981707] hangcheck * [ 1356.981708] hangcheck Idle? no [ 1356.999153] [drm] GPU HANG: ecode 9:2:0xa8dfbffd, reason: Hang on vcs0, action: reset [ 1356.999156] [drm] GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace. [ 1356.999157] [drm] Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel [ 1356.999157] [drm] drm/i915 developers can then reassign to the right component if it's not a kernel issue. [ 1356.999158] [drm] The gpu crash dump is required to analyze gpu hangs, so please always attach it. [ 1356.999159] [drm] GPU crash dump saved to /sys/class/drm/card0/error [ 1356.999445] i915 0000:00:02.0: Resetting vcs0 after gpu hang [ 1357.500072] [drm:intel_gpu_reset [i915]] vcs0: timed out on STOP_RING [ 1357.500164] [drm:intel_gpu_reset [i915]] vcs0: ring head not parked [ 1357.500250] [drm:i915_gem_reset_engine [i915]] context VideoPlayer[1034]/0 marked guilty (score 10) banned? no [ 1357.500326] [drm:i915_gem_reset_engine [i915]] resetting vcs0 to restart from tail of request 0x75ec [ 1361.973526] missed_breadcrumb vcs0 missed breadcrumb at intel_breadcrumbs_hangcheck+0x59/0x80 [i915] [ 1361.973531] missed_breadcrumb current seqno 75ed, last 760a, hangcheck 75ed [1984 ms], inflight 29 [ 1361.973533] missed_breadcrumb Reset count: 1 (global 0) [ 1361.973534] missed_breadcrumb Requests: [ 1361.973537] missed_breadcrumb first 75ee [c6:32f5] prio=0 @ 12188ms: VideoPlayer[1034]/0 [ 1361.973557] missed_breadcrumb last 760a [c6:3311] prio=0 @ 12092ms: VideoPlayer[1034]/0 [ 1361.973559] missed_breadcrumb active 75ee [c6:32f5] prio=0 @ 12188ms: VideoPlayer[1034]/0 [ 1361.973561] missed_breadcrumb [head 2d40, postfix 2d70, tail 2d88, batch 0x00000000_16f2b000] [ 1361.973563] missed_breadcrumb ring->start: 0x06ae8000 [ 1361.973564] missed_breadcrumb ring->head: 0x00002d20 [ 1361.973565] missed_breadcrumb ring->tail: 0x00003648 [ 1361.973574] missed_breadcrumb RING_START: 0x06ae8000 [ 1361.973576] missed_breadcrumb RING_HEAD: 0x00002d70 [ 1361.973579] missed_breadcrumb RING_TAIL: 0x00003648 [ 1361.973582] missed_breadcrumb RING_CTL: 0x00003001 [ 1361.973586] missed_breadcrumb RING_MODE: 0x00000000 [ 1361.973588] missed_breadcrumb RING_IMR: fffffefe [ 1361.973594] missed_breadcrumb ACTHD: 0x00000000_00002d70 [ 1361.973599] missed_breadcrumb BBADDR: 0x00000000_16f2b9d8 [ 1361.973604] missed_breadcrumb DMA_FADDR: 0x00000000_06aeaf40 [ 1361.973606] missed_breadcrumb IPEIR: 0x00000000 [ 1361.973608] missed_breadcrumb IPEHR: 0x13204002 [ 1361.973612] missed_breadcrumb Execlist status: 0x00044032 00000009 [ 1361.973616] missed_breadcrumb Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1361.973618] missed_breadcrumb ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 12092ms: VideoPlayer[1034]/0 [ 1361.973619] missed_breadcrumb ELSP[1] idle [ 1361.973620] missed_breadcrumb HW active? 0x1 [ 1361.973622] missed_breadcrumb E 75ee [c6:32f5] prio=0 @ 12188ms: VideoPlayer[1034]/0 [ 1361.973624] missed_breadcrumb E 75ef [c6:32f6] prio=0 @ 12184ms: VideoPlayer[1034]/0 [ 1361.973626] missed_breadcrumb E 75f0 [c6:32f7] prio=0 @ 12184ms: VideoPlayer[1034]/0 [ 1361.973628] missed_breadcrumb E 75f1 [c6:32f8] prio=0 @ 12180ms: VideoPlayer[1034]/0 [ 1361.973630] missed_breadcrumb E 75f2 [c6:32f9] prio=0 @ 12180ms: VideoPlayer[1034]/0 [ 1361.973632] missed_breadcrumb E 75f3 [c6:32fa] prio=0 @ 12176ms: VideoPlayer[1034]/0 [ 1361.973633] missed_breadcrumb E 75f4 [c6:32fb] prio=0 @ 12172ms: VideoPlayer[1034]/0 [ 1361.973635] missed_breadcrumb E 75f5 [c6:32fc] prio=0 @ 12168ms: VideoPlayer[1034]/0 [ 1361.973637] missed_breadcrumb E 75f6 [c6:32fd] prio=0 @ 12164ms: VideoPlayer[1034]/0 [ 1361.973639] missed_breadcrumb E 75f7 [c6:32fe] prio=0 @ 12164ms: VideoPlayer[1034]/0 [ 1361.973640] missed_breadcrumb E 75f8 [c6:32ff] prio=0 @ 12144ms: VideoPlayer[1034]/0 [ 1361.973642] missed_breadcrumb E 75f9 [c6:3300] prio=0 @ 12140ms: VideoPlayer[1034]/0 [ 1361.973644] missed_breadcrumb E 75fa [c6:3301] prio=0 @ 12140ms: VideoPlayer[1034]/0 [ 1361.973646] missed_breadcrumb E 75fb [c6:3302] prio=0 @ 12136ms: VideoPlayer[1034]/0 [ 1361.973648] missed_breadcrumb E 75fc [c6:3303] prio=0 @ 12132ms: VideoPlayer[1034]/0 [ 1361.973649] missed_breadcrumb E 75fd [c6:3304] prio=0 @ 12132ms: VideoPlayer[1034]/0 [ 1361.973651] missed_breadcrumb E 75fe [c6:3305] prio=0 @ 12128ms: VideoPlayer[1034]/0 [ 1361.973653] missed_breadcrumb E 75ff [c6:3306] prio=0 @ 12124ms: VideoPlayer[1034]/0 [ 1361.973655] missed_breadcrumb E 7600 [c6:3307] prio=0 @ 12120ms: VideoPlayer[1034]/0 [ 1361.973657] missed_breadcrumb E 7601 [c6:3308] prio=0 @ 12120ms: VideoPlayer[1034]/0 [ 1361.973659] missed_breadcrumb E 7602 [c6:3309] prio=0 @ 12116ms: VideoPlayer[1034]/0 [ 1361.973660] missed_breadcrumb E 7603 [c6:330a] prio=0 @ 12112ms: VideoPlayer[1034]/0 [ 1361.973662] missed_breadcrumb E 7604 [c6:330b] prio=0 @ 12108ms: VideoPlayer[1034]/0 [ 1361.973664] missed_breadcrumb E 7605 [c6:330c] prio=0 @ 12104ms: VideoPlayer[1034]/0 [ 1361.973666] missed_breadcrumb E 7606 [c6:330d] prio=0 @ 12100ms: VideoPlayer[1034]/0 [ 1361.973668] missed_breadcrumb E 7607 [c6:330e] prio=0 @ 12096ms: VideoPlayer[1034]/0 [ 1361.973669] missed_breadcrumb E 7608 [c6:330f] prio=0 @ 12096ms: VideoPlayer[1034]/0 [ 1361.973671] missed_breadcrumb E 7609 [c6:3310] prio=0 @ 12092ms: VideoPlayer[1034]/0 [ 1361.973673] missed_breadcrumb E 760a [c6:3311] prio=0 @ 12092ms: VideoPlayer[1034]/0 [ 1361.973674] missed_breadcrumb Queue priority: -2147483648 [ 1361.973676] missed_breadcrumb Vaapi-Output [1112] waiting for 7608 [ 1361.973677] missed_breadcrumb IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1361.973678] missed_breadcrumb HWSP: [ 1361.973682] missed_breadcrumb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1361.973683] missed_breadcrumb * [ 1361.973685] missed_breadcrumb 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1361.973688] missed_breadcrumb 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1361.973690] missed_breadcrumb 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1361.973691] missed_breadcrumb * [ 1361.973693] missed_breadcrumb 000000c0 000075ed 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1361.973696] missed_breadcrumb 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1361.973697] missed_breadcrumb * [ 1361.973699] missed_breadcrumb Idle? no [ 1363.989586] hangcheck vcs0 [ 1363.989594] hangcheck current seqno 75ed, last 760a, hangcheck 75ed [4000 ms], inflight 29 [ 1363.989598] hangcheck Reset count: 1 (global 0) [ 1363.989599] hangcheck Requests: [ 1363.989606] hangcheck first 75ee [c6:32f5] prio=0 @ 14204ms: VideoPlayer[1034]/0 [ 1363.989611] hangcheck last 760a [c6:3311] prio=0 @ 14108ms: VideoPlayer[1034]/0 [ 1363.989615] hangcheck active 75ee [c6:32f5] prio=0 @ 14204ms: VideoPlayer[1034]/0 [ 1363.989620] hangcheck [head 2d40, postfix 2d70, tail 2d88, batch 0x00000000_16f2b000] [ 1363.989623] hangcheck ring->start: 0x06ae8000 [ 1363.989626] hangcheck ring->head: 0x00002d20 [ 1363.989628] hangcheck ring->tail: 0x00003648 [ 1363.989632] hangcheck RING_START: 0x06ae8000 [ 1363.989636] hangcheck RING_HEAD: 0x00002d70 [ 1363.989641] hangcheck RING_TAIL: 0x00003648 [ 1363.989648] hangcheck RING_CTL: 0x00003001 [ 1363.989653] hangcheck RING_MODE: 0x00000000 [ 1363.989657] hangcheck RING_IMR: fffffefe [ 1363.989664] hangcheck ACTHD: 0x00000000_00002d70 [ 1363.989671] hangcheck BBADDR: 0x00000000_16f2b9d8 [ 1363.989678] hangcheck DMA_FADDR: 0x00000000_06aeaf40 [ 1363.989682] hangcheck IPEIR: 0x00000000 [ 1363.989685] hangcheck IPEHR: 0x13204002 [ 1363.989691] hangcheck Execlist status: 0x00044032 00000009 [ 1363.989697] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1363.989702] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 14108ms: VideoPlayer[1034]/0 [ 1363.989705] hangcheck ELSP[1] idle [ 1363.989707] hangcheck HW active? 0x1 [ 1363.989711] hangcheck E 75ee [c6:32f5] prio=0 @ 14204ms: VideoPlayer[1034]/0 [ 1363.989715] hangcheck E 75ef [c6:32f6] prio=0 @ 14200ms: VideoPlayer[1034]/0 [ 1363.989719] hangcheck E 75f0 [c6:32f7] prio=0 @ 14200ms: VideoPlayer[1034]/0 [ 1363.989723] hangcheck E 75f1 [c6:32f8] prio=0 @ 14196ms: VideoPlayer[1034]/0 [ 1363.989727] hangcheck E 75f2 [c6:32f9] prio=0 @ 14196ms: VideoPlayer[1034]/0 [ 1363.989731] hangcheck E 75f3 [c6:32fa] prio=0 @ 14192ms: VideoPlayer[1034]/0 [ 1363.989735] hangcheck E 75f4 [c6:32fb] prio=0 @ 14188ms: VideoPlayer[1034]/0 [ 1363.989739] hangcheck E 75f5 [c6:32fc] prio=0 @ 14184ms: VideoPlayer[1034]/0 [ 1363.989743] hangcheck E 75f6 [c6:32fd] prio=0 @ 14180ms: VideoPlayer[1034]/0 [ 1363.989747] hangcheck E 75f7 [c6:32fe] prio=0 @ 14180ms: VideoPlayer[1034]/0 [ 1363.989751] hangcheck E 75f8 [c6:32ff] prio=0 @ 14160ms: VideoPlayer[1034]/0 [ 1363.989755] hangcheck E 75f9 [c6:3300] prio=0 @ 14156ms: VideoPlayer[1034]/0 [ 1363.989759] hangcheck E 75fa [c6:3301] prio=0 @ 14156ms: VideoPlayer[1034]/0 [ 1363.989763] hangcheck E 75fb [c6:3302] prio=0 @ 14152ms: VideoPlayer[1034]/0 [ 1363.989767] hangcheck E 75fc [c6:3303] prio=0 @ 14148ms: VideoPlayer[1034]/0 [ 1363.989771] hangcheck E 75fd [c6:3304] prio=0 @ 14148ms: VideoPlayer[1034]/0 [ 1363.989775] hangcheck E 75fe [c6:3305] prio=0 @ 14144ms: VideoPlayer[1034]/0 [ 1363.989778] hangcheck E 75ff [c6:3306] prio=0 @ 14140ms: VideoPlayer[1034]/0 [ 1363.989782] hangcheck E 7600 [c6:3307] prio=0 @ 14136ms: VideoPlayer[1034]/0 [ 1363.989786] hangcheck E 7601 [c6:3308] prio=0 @ 14136ms: VideoPlayer[1034]/0 [ 1363.989790] hangcheck E 7602 [c6:3309] prio=0 @ 14132ms: VideoPlayer[1034]/0 [ 1363.989794] hangcheck E 7603 [c6:330a] prio=0 @ 14128ms: VideoPlayer[1034]/0 [ 1363.989798] hangcheck E 7604 [c6:330b] prio=0 @ 14124ms: VideoPlayer[1034]/0 [ 1363.989802] hangcheck E 7605 [c6:330c] prio=0 @ 14120ms: VideoPlayer[1034]/0 [ 1363.989806] hangcheck E 7606 [c6:330d] prio=0 @ 14116ms: VideoPlayer[1034]/0 [ 1363.989810] hangcheck E 7607 [c6:330e] prio=0 @ 14112ms: VideoPlayer[1034]/0 [ 1363.989814] hangcheck E 7608 [c6:330f] prio=0 @ 14112ms: VideoPlayer[1034]/0 [ 1363.989818] hangcheck E 7609 [c6:3310] prio=0 @ 14108ms: VideoPlayer[1034]/0 [ 1363.989822] hangcheck E 760a [c6:3311] prio=0 @ 14108ms: VideoPlayer[1034]/0 [ 1363.989825] hangcheck Queue priority: -2147483648 [ 1363.989828] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1363.989832] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1363.989833] hangcheck HWSP: [ 1363.989841] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1363.989843] hangcheck * [ 1363.989849] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1363.989855] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1363.989860] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1363.989862] hangcheck * [ 1363.989867] hangcheck 000000c0 000075ed 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1363.989873] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1363.989875] hangcheck * [ 1363.989878] hangcheck Idle? no [ 1365.973695] hangcheck vcs0 [ 1365.973700] hangcheck current seqno 75ed, last 760a, hangcheck 75ed [5984 ms], inflight 29 [ 1365.973701] hangcheck Reset count: 1 (global 0) [ 1365.973702] hangcheck Requests: [ 1365.973705] hangcheck first 75ee [c6:32f5] prio=0 @ 16188ms: VideoPlayer[1034]/0 [ 1365.973707] hangcheck last 760a [c6:3311] prio=0 @ 16092ms: VideoPlayer[1034]/0 [ 1365.973709] hangcheck active 75ee [c6:32f5] prio=0 @ 16188ms: VideoPlayer[1034]/0 [ 1365.973711] hangcheck [head 2d40, postfix 2d70, tail 2d88, batch 0x00000000_16f2b000] [ 1365.973713] hangcheck ring->start: 0x06ae8000 [ 1365.973714] hangcheck ring->head: 0x00002d20 [ 1365.973715] hangcheck ring->tail: 0x00003648 [ 1365.973718] hangcheck RING_START: 0x06ae8000 [ 1365.973720] hangcheck RING_HEAD: 0x00002d70 [ 1365.973722] hangcheck RING_TAIL: 0x00003648 [ 1365.973726] hangcheck RING_CTL: 0x00003001 [ 1365.973729] hangcheck RING_MODE: 0x00000000 [ 1365.973732] hangcheck RING_IMR: fffffefe [ 1365.973736] hangcheck ACTHD: 0x00000000_00002d70 [ 1365.973741] hangcheck BBADDR: 0x00000000_16f2b9d8 [ 1365.973746] hangcheck DMA_FADDR: 0x00000000_06aeaf40 [ 1365.973748] hangcheck IPEIR: 0x00000000 [ 1365.973751] hangcheck IPEHR: 0x13204002 [ 1365.973754] hangcheck Execlist status: 0x00044032 00000009 [ 1365.973757] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1365.973760] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 16092ms: VideoPlayer[1034]/0 [ 1365.973761] hangcheck ELSP[1] idle [ 1365.973762] hangcheck HW active? 0x1 [ 1365.973763] hangcheck E 75ee [c6:32f5] prio=0 @ 16188ms: VideoPlayer[1034]/0 [ 1365.973765] hangcheck E 75ef [c6:32f6] prio=0 @ 16184ms: VideoPlayer[1034]/0 [ 1365.973767] hangcheck E 75f0 [c6:32f7] prio=0 @ 16184ms: VideoPlayer[1034]/0 [ 1365.973769] hangcheck E 75f1 [c6:32f8] prio=0 @ 16180ms: VideoPlayer[1034]/0 [ 1365.973770] hangcheck E 75f2 [c6:32f9] prio=0 @ 16180ms: VideoPlayer[1034]/0 [ 1365.973772] hangcheck E 75f3 [c6:32fa] prio=0 @ 16176ms: VideoPlayer[1034]/0 [ 1365.973774] hangcheck E 75f4 [c6:32fb] prio=0 @ 16172ms: VideoPlayer[1034]/0 [ 1365.973776] hangcheck E 75f5 [c6:32fc] prio=0 @ 16168ms: VideoPlayer[1034]/0 [ 1365.973777] hangcheck E 75f6 [c6:32fd] prio=0 @ 16164ms: VideoPlayer[1034]/0 [ 1365.973779] hangcheck E 75f7 [c6:32fe] prio=0 @ 16164ms: VideoPlayer[1034]/0 [ 1365.973781] hangcheck E 75f8 [c6:32ff] prio=0 @ 16144ms: VideoPlayer[1034]/0 [ 1365.973783] hangcheck E 75f9 [c6:3300] prio=0 @ 16140ms: VideoPlayer[1034]/0 [ 1365.973784] hangcheck E 75fa [c6:3301] prio=0 @ 16140ms: VideoPlayer[1034]/0 [ 1365.973786] hangcheck E 75fb [c6:3302] prio=0 @ 16136ms: VideoPlayer[1034]/0 [ 1365.973788] hangcheck E 75fc [c6:3303] prio=0 @ 16132ms: VideoPlayer[1034]/0 [ 1365.973790] hangcheck E 75fd [c6:3304] prio=0 @ 16132ms: VideoPlayer[1034]/0 [ 1365.973791] hangcheck E 75fe [c6:3305] prio=0 @ 16128ms: VideoPlayer[1034]/0 [ 1365.973793] hangcheck E 75ff [c6:3306] prio=0 @ 16124ms: VideoPlayer[1034]/0 [ 1365.973795] hangcheck E 7600 [c6:3307] prio=0 @ 16120ms: VideoPlayer[1034]/0 [ 1365.973797] hangcheck E 7601 [c6:3308] prio=0 @ 16120ms: VideoPlayer[1034]/0 [ 1365.973799] hangcheck E 7602 [c6:3309] prio=0 @ 16116ms: VideoPlayer[1034]/0 [ 1365.973800] hangcheck E 7603 [c6:330a] prio=0 @ 16112ms: VideoPlayer[1034]/0 [ 1365.973802] hangcheck E 7604 [c6:330b] prio=0 @ 16108ms: VideoPlayer[1034]/0 [ 1365.973803] hangcheck E 7605 [c6:330c] prio=0 @ 16104ms: VideoPlayer[1034]/0 [ 1365.973805] hangcheck E 7606 [c6:330d] prio=0 @ 16100ms: VideoPlayer[1034]/0 [ 1365.973807] hangcheck E 7607 [c6:330e] prio=0 @ 16096ms: VideoPlayer[1034]/0 [ 1365.973809] hangcheck E 7608 [c6:330f] prio=0 @ 16096ms: VideoPlayer[1034]/0 [ 1365.973810] hangcheck E 7609 [c6:3310] prio=0 @ 16092ms: VideoPlayer[1034]/0 [ 1365.973812] hangcheck E 760a [c6:3311] prio=0 @ 16092ms: VideoPlayer[1034]/0 [ 1365.973813] hangcheck Queue priority: -2147483648 [ 1365.973814] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1365.973816] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1365.973817] hangcheck HWSP: [ 1365.973820] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1365.973821] hangcheck * [ 1365.973824] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1365.973826] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1365.973828] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1365.973829] hangcheck * [ 1365.973831] hangcheck 000000c0 000075ed 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1365.973834] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1365.973835] hangcheck * [ 1365.973836] hangcheck Idle? no [ 1365.974012] i915 0000:00:02.0: Resetting vcs0 after gpu hang [ 1366.476184] [drm:intel_gpu_reset [i915]] vcs0: timed out on STOP_RING [ 1366.476226] [drm:intel_gpu_reset [i915]] vcs0: ring head not parked [ 1366.476264] [drm:i915_gem_reset_engine [i915]] context VideoPlayer[1034]/0 marked guilty (score 18) banned? no [ 1366.476293] [drm:i915_gem_reset_engine [i915]] resetting vcs0 to restart from tail of request 0x75ee [ 1370.997657] missed_breadcrumb vcs0 missed breadcrumb at intel_breadcrumbs_hangcheck+0x59/0x80 [i915] [ 1370.997662] missed_breadcrumb current seqno 75f2, last 760a, hangcheck 75f2 [1792 ms], inflight 24 [ 1370.997664] missed_breadcrumb Reset count: 2 (global 0) [ 1370.997665] missed_breadcrumb Requests: [ 1370.997668] missed_breadcrumb first 75f3 [c6:32fa] prio=0 @ 21200ms: VideoPlayer[1034]/0 [ 1370.997670] missed_breadcrumb last 760a [c6:3311] prio=0 @ 21116ms: VideoPlayer[1034]/0 [ 1370.997672] missed_breadcrumb active 75f3 [c6:32fa] prio=0 @ 21200ms: VideoPlayer[1034]/0 [ 1370.997675] missed_breadcrumb [head 2ed0, postfix 2f00, tail 2f18, batch 0x00000000_208c2000] [ 1370.997677] missed_breadcrumb ring->start: 0x06ae8000 [ 1370.997678] missed_breadcrumb ring->head: 0x00002eb0 [ 1370.997679] missed_breadcrumb ring->tail: 0x00003648 [ 1370.997702] missed_breadcrumb RING_START: 0x06ae8000 [ 1370.997705] missed_breadcrumb RING_HEAD: 0x00002f00 [ 1370.997707] missed_breadcrumb RING_TAIL: 0x00003648 [ 1370.997711] missed_breadcrumb RING_CTL: 0x00003001 [ 1370.997714] missed_breadcrumb RING_MODE: 0x00000000 [ 1370.997717] missed_breadcrumb RING_IMR: fffffefe [ 1370.997722] missed_breadcrumb ACTHD: 0x00000000_00002f00 [ 1370.997727] missed_breadcrumb BBADDR: 0x00000000_208c29d8 [ 1370.997732] missed_breadcrumb DMA_FADDR: 0x00000000_06aeb0c0 [ 1370.997734] missed_breadcrumb IPEIR: 0x00000000 [ 1370.997736] missed_breadcrumb IPEHR: 0x13204002 [ 1370.997740] missed_breadcrumb Execlist status: 0x00044032 00000009 [ 1370.997743] missed_breadcrumb Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1370.997746] missed_breadcrumb ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 21116ms: VideoPlayer[1034]/0 [ 1370.997747] missed_breadcrumb ELSP[1] idle [ 1370.997748] missed_breadcrumb HW active? 0x1 [ 1370.997750] missed_breadcrumb E 75f3 [c6:32fa] prio=0 @ 21200ms: VideoPlayer[1034]/0 [ 1370.997752] missed_breadcrumb E 75f4 [c6:32fb] prio=0 @ 21196ms: VideoPlayer[1034]/0 [ 1370.997754] missed_breadcrumb E 75f5 [c6:32fc] prio=0 @ 21192ms: VideoPlayer[1034]/0 [ 1370.997755] missed_breadcrumb E 75f6 [c6:32fd] prio=0 @ 21188ms: VideoPlayer[1034]/0 [ 1370.997757] missed_breadcrumb E 75f7 [c6:32fe] prio=0 @ 21188ms: VideoPlayer[1034]/0 [ 1370.997759] missed_breadcrumb E 75f8 [c6:32ff] prio=0 @ 21168ms: VideoPlayer[1034]/0 [ 1370.997761] missed_breadcrumb E 75f9 [c6:3300] prio=0 @ 21164ms: VideoPlayer[1034]/0 [ 1370.997763] missed_breadcrumb E 75fa [c6:3301] prio=0 @ 21164ms: VideoPlayer[1034]/0 [ 1370.997765] missed_breadcrumb E 75fb [c6:3302] prio=0 @ 21160ms: VideoPlayer[1034]/0 [ 1370.997766] missed_breadcrumb E 75fc [c6:3303] prio=0 @ 21156ms: VideoPlayer[1034]/0 [ 1370.997768] missed_breadcrumb E 75fd [c6:3304] prio=0 @ 21156ms: VideoPlayer[1034]/0 [ 1370.997770] missed_breadcrumb E 75fe [c6:3305] prio=0 @ 21152ms: VideoPlayer[1034]/0 [ 1370.997772] missed_breadcrumb E 75ff [c6:3306] prio=0 @ 21148ms: VideoPlayer[1034]/0 [ 1370.997773] missed_breadcrumb E 7600 [c6:3307] prio=0 @ 21144ms: VideoPlayer[1034]/0 [ 1370.997775] missed_breadcrumb E 7601 [c6:3308] prio=0 @ 21144ms: VideoPlayer[1034]/0 [ 1370.997777] missed_breadcrumb E 7602 [c6:3309] prio=0 @ 21140ms: VideoPlayer[1034]/0 [ 1370.997779] missed_breadcrumb E 7603 [c6:330a] prio=0 @ 21136ms: VideoPlayer[1034]/0 [ 1370.997781] missed_breadcrumb E 7604 [c6:330b] prio=0 @ 21132ms: VideoPlayer[1034]/0 [ 1370.997782] missed_breadcrumb E 7605 [c6:330c] prio=0 @ 21128ms: VideoPlayer[1034]/0 [ 1370.997784] missed_breadcrumb E 7606 [c6:330d] prio=0 @ 21124ms: VideoPlayer[1034]/0 [ 1370.997786] missed_breadcrumb E 7607 [c6:330e] prio=0 @ 21120ms: VideoPlayer[1034]/0 [ 1370.997788] missed_breadcrumb E 7608 [c6:330f] prio=0 @ 21120ms: VideoPlayer[1034]/0 [ 1370.997790] missed_breadcrumb E 7609 [c6:3310] prio=0 @ 21116ms: VideoPlayer[1034]/0 [ 1370.997791] missed_breadcrumb E 760a [c6:3311] prio=0 @ 21116ms: VideoPlayer[1034]/0 [ 1370.997792] missed_breadcrumb Queue priority: -2147483648 [ 1370.997794] missed_breadcrumb Vaapi-Output [1112] waiting for 7608 [ 1370.997795] missed_breadcrumb IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1370.997796] missed_breadcrumb HWSP: [ 1370.997800] missed_breadcrumb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1370.997801] missed_breadcrumb * [ 1370.997803] missed_breadcrumb 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1370.997806] missed_breadcrumb 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1370.997808] missed_breadcrumb 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1370.997809] missed_breadcrumb * [ 1370.997811] missed_breadcrumb 000000c0 000075f2 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1370.997813] missed_breadcrumb 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1370.997814] missed_breadcrumb * [ 1370.997816] missed_breadcrumb Idle? no [ 1372.981758] hangcheck vcs0 [ 1372.981763] hangcheck current seqno 75f2, last 760a, hangcheck 75f2 [3776 ms], inflight 24 [ 1372.981765] hangcheck Reset count: 2 (global 0) [ 1372.981765] hangcheck Requests: [ 1372.981769] hangcheck first 75f3 [c6:32fa] prio=0 @ 23184ms: VideoPlayer[1034]/0 [ 1372.981771] hangcheck last 760a [c6:3311] prio=0 @ 23100ms: VideoPlayer[1034]/0 [ 1372.981773] hangcheck active 75f3 [c6:32fa] prio=0 @ 23184ms: VideoPlayer[1034]/0 [ 1372.981775] hangcheck [head 2ed0, postfix 2f00, tail 2f18, batch 0x00000000_208c2000] [ 1372.981777] hangcheck ring->start: 0x06ae8000 [ 1372.981778] hangcheck ring->head: 0x00002eb0 [ 1372.981779] hangcheck ring->tail: 0x00003648 [ 1372.981781] hangcheck RING_START: 0x06ae8000 [ 1372.981784] hangcheck RING_HEAD: 0x00002f00 [ 1372.981786] hangcheck RING_TAIL: 0x00003648 [ 1372.981790] hangcheck RING_CTL: 0x00003001 [ 1372.981793] hangcheck RING_MODE: 0x00000000 [ 1372.981796] hangcheck RING_IMR: fffffefe [ 1372.981801] hangcheck ACTHD: 0x00000000_00002f00 [ 1372.981806] hangcheck BBADDR: 0x00000000_208c29d8 [ 1372.981811] hangcheck DMA_FADDR: 0x00000000_06aeb0c0 [ 1372.981813] hangcheck IPEIR: 0x00000000 [ 1372.981816] hangcheck IPEHR: 0x13204002 [ 1372.981820] hangcheck Execlist status: 0x00044032 00000009 [ 1372.981823] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1372.981825] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 23100ms: VideoPlayer[1034]/0 [ 1372.981826] hangcheck ELSP[1] idle [ 1372.981827] hangcheck HW active? 0x1 [ 1372.981829] hangcheck E 75f3 [c6:32fa] prio=0 @ 23184ms: VideoPlayer[1034]/0 [ 1372.981831] hangcheck E 75f4 [c6:32fb] prio=0 @ 23180ms: VideoPlayer[1034]/0 [ 1372.981833] hangcheck E 75f5 [c6:32fc] prio=0 @ 23176ms: VideoPlayer[1034]/0 [ 1372.981835] hangcheck E 75f6 [c6:32fd] prio=0 @ 23172ms: VideoPlayer[1034]/0 [ 1372.981836] hangcheck E 75f7 [c6:32fe] prio=0 @ 23172ms: VideoPlayer[1034]/0 [ 1372.981838] hangcheck E 75f8 [c6:32ff] prio=0 @ 23152ms: VideoPlayer[1034]/0 [ 1372.981840] hangcheck E 75f9 [c6:3300] prio=0 @ 23148ms: VideoPlayer[1034]/0 [ 1372.981842] hangcheck E 75fa [c6:3301] prio=0 @ 23148ms: VideoPlayer[1034]/0 [ 1372.981844] hangcheck E 75fb [c6:3302] prio=0 @ 23144ms: VideoPlayer[1034]/0 [ 1372.981846] hangcheck E 75fc [c6:3303] prio=0 @ 23140ms: VideoPlayer[1034]/0 [ 1372.981847] hangcheck E 75fd [c6:3304] prio=0 @ 23140ms: VideoPlayer[1034]/0 [ 1372.981849] hangcheck E 75fe [c6:3305] prio=0 @ 23136ms: VideoPlayer[1034]/0 [ 1372.981851] hangcheck E 75ff [c6:3306] prio=0 @ 23132ms: VideoPlayer[1034]/0 [ 1372.981853] hangcheck E 7600 [c6:3307] prio=0 @ 23128ms: VideoPlayer[1034]/0 [ 1372.981854] hangcheck E 7601 [c6:3308] prio=0 @ 23128ms: VideoPlayer[1034]/0 [ 1372.981856] hangcheck E 7602 [c6:3309] prio=0 @ 23124ms: VideoPlayer[1034]/0 [ 1372.981858] hangcheck E 7603 [c6:330a] prio=0 @ 23120ms: VideoPlayer[1034]/0 [ 1372.981860] hangcheck E 7604 [c6:330b] prio=0 @ 23116ms: VideoPlayer[1034]/0 [ 1372.981862] hangcheck E 7605 [c6:330c] prio=0 @ 23112ms: VideoPlayer[1034]/0 [ 1372.981864] hangcheck E 7606 [c6:330d] prio=0 @ 23108ms: VideoPlayer[1034]/0 [ 1372.981865] hangcheck E 7607 [c6:330e] prio=0 @ 23104ms: VideoPlayer[1034]/0 [ 1372.981867] hangcheck E 7608 [c6:330f] prio=0 @ 23104ms: VideoPlayer[1034]/0 [ 1372.981869] hangcheck E 7609 [c6:3310] prio=0 @ 23100ms: VideoPlayer[1034]/0 [ 1372.981871] hangcheck E 760a [c6:3311] prio=0 @ 23100ms: VideoPlayer[1034]/0 [ 1372.981872] hangcheck Queue priority: -2147483648 [ 1372.981873] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1372.981875] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1372.981875] hangcheck HWSP: [ 1372.981879] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1372.981880] hangcheck * [ 1372.981883] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1372.981885] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1372.981887] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1372.981888] hangcheck * [ 1372.981890] hangcheck 000000c0 000075f2 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1372.981893] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1372.981894] hangcheck * [ 1372.981895] hangcheck Idle? no [ 1374.997704] hangcheck vcs0 [ 1374.997709] hangcheck current seqno 75f2, last 760a, hangcheck 75f2 [5792 ms], inflight 24 [ 1374.997710] hangcheck Reset count: 2 (global 0) [ 1374.997711] hangcheck Requests: [ 1374.997714] hangcheck first 75f3 [c6:32fa] prio=0 @ 25200ms: VideoPlayer[1034]/0 [ 1374.997716] hangcheck last 760a [c6:3311] prio=0 @ 25116ms: VideoPlayer[1034]/0 [ 1374.997718] hangcheck active 75f3 [c6:32fa] prio=0 @ 25200ms: VideoPlayer[1034]/0 [ 1374.997720] hangcheck [head 2ed0, postfix 2f00, tail 2f18, batch 0x00000000_208c2000] [ 1374.997722] hangcheck ring->start: 0x06ae8000 [ 1374.997723] hangcheck ring->head: 0x00002eb0 [ 1374.997724] hangcheck ring->tail: 0x00003648 [ 1374.997727] hangcheck RING_START: 0x06ae8000 [ 1374.997729] hangcheck RING_HEAD: 0x00002f00 [ 1374.997731] hangcheck RING_TAIL: 0x00003648 [ 1374.997734] hangcheck RING_CTL: 0x00003001 [ 1374.997738] hangcheck RING_MODE: 0x00000000 [ 1374.997740] hangcheck RING_IMR: fffffefe [ 1374.997745] hangcheck ACTHD: 0x00000000_00002f00 [ 1374.997750] hangcheck BBADDR: 0x00000000_208c29d8 [ 1374.997755] hangcheck DMA_FADDR: 0x00000000_06aeb0c0 [ 1374.997757] hangcheck IPEIR: 0x00000000 [ 1374.997759] hangcheck IPEHR: 0x13204002 [ 1374.997763] hangcheck Execlist status: 0x00044032 00000009 [ 1374.997766] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1374.997769] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 25116ms: VideoPlayer[1034]/0 [ 1374.997770] hangcheck ELSP[1] idle [ 1374.997771] hangcheck HW active? 0x1 [ 1374.997773] hangcheck E 75f3 [c6:32fa] prio=0 @ 25200ms: VideoPlayer[1034]/0 [ 1374.997775] hangcheck E 75f4 [c6:32fb] prio=0 @ 25196ms: VideoPlayer[1034]/0 [ 1374.997776] hangcheck E 75f5 [c6:32fc] prio=0 @ 25192ms: VideoPlayer[1034]/0 [ 1374.997778] hangcheck E 75f6 [c6:32fd] prio=0 @ 25188ms: VideoPlayer[1034]/0 [ 1374.997780] hangcheck E 75f7 [c6:32fe] prio=0 @ 25188ms: VideoPlayer[1034]/0 [ 1374.997782] hangcheck E 75f8 [c6:32ff] prio=0 @ 25168ms: VideoPlayer[1034]/0 [ 1374.997783] hangcheck E 75f9 [c6:3300] prio=0 @ 25164ms: VideoPlayer[1034]/0 [ 1374.997785] hangcheck E 75fa [c6:3301] prio=0 @ 25164ms: VideoPlayer[1034]/0 [ 1374.997787] hangcheck E 75fb [c6:3302] prio=0 @ 25160ms: VideoPlayer[1034]/0 [ 1374.997789] hangcheck E 75fc [c6:3303] prio=0 @ 25156ms: VideoPlayer[1034]/0 [ 1374.997790] hangcheck E 75fd [c6:3304] prio=0 @ 25156ms: VideoPlayer[1034]/0 [ 1374.997792] hangcheck E 75fe [c6:3305] prio=0 @ 25152ms: VideoPlayer[1034]/0 [ 1374.997794] hangcheck E 75ff [c6:3306] prio=0 @ 25148ms: VideoPlayer[1034]/0 [ 1374.997796] hangcheck E 7600 [c6:3307] prio=0 @ 25144ms: VideoPlayer[1034]/0 [ 1374.997797] hangcheck E 7601 [c6:3308] prio=0 @ 25144ms: VideoPlayer[1034]/0 [ 1374.997799] hangcheck E 7602 [c6:3309] prio=0 @ 25140ms: VideoPlayer[1034]/0 [ 1374.997801] hangcheck E 7603 [c6:330a] prio=0 @ 25136ms: VideoPlayer[1034]/0 [ 1374.997802] hangcheck E 7604 [c6:330b] prio=0 @ 25132ms: VideoPlayer[1034]/0 [ 1374.997804] hangcheck E 7605 [c6:330c] prio=0 @ 25128ms: VideoPlayer[1034]/0 [ 1374.997806] hangcheck E 7606 [c6:330d] prio=0 @ 25124ms: VideoPlayer[1034]/0 [ 1374.997808] hangcheck E 7607 [c6:330e] prio=0 @ 25120ms: VideoPlayer[1034]/0 [ 1374.997809] hangcheck E 7608 [c6:330f] prio=0 @ 25120ms: VideoPlayer[1034]/0 [ 1374.997811] hangcheck E 7609 [c6:3310] prio=0 @ 25116ms: VideoPlayer[1034]/0 [ 1374.997812] hangcheck E 760a [c6:3311] prio=0 @ 25116ms: VideoPlayer[1034]/0 [ 1374.997814] hangcheck Queue priority: -2147483648 [ 1374.997815] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1374.997817] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1374.997817] hangcheck HWSP: [ 1374.997821] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1374.997822] hangcheck * [ 1374.997825] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1374.997827] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1374.997829] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1374.997830] hangcheck * [ 1374.997832] hangcheck 000000c0 000075f2 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1374.997835] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1374.997835] hangcheck * [ 1374.997837] hangcheck Idle? no [ 1374.998019] i915 0000:00:02.0: Resetting vcs0 after gpu hang [ 1375.500290] [drm:intel_gpu_reset [i915]] vcs0: timed out on STOP_RING [ 1375.500332] [drm:intel_gpu_reset [i915]] vcs0: ring head not parked [ 1375.500370] [drm:i915_gem_reset_engine [i915]] context VideoPlayer[1034]/0 marked guilty (score 23) banned? no [ 1375.500399] [drm:i915_gem_reset_engine [i915]] resetting vcs0 to restart from tail of request 0x75f3 [ 1379.989785] missed_breadcrumb vcs0 missed breadcrumb at intel_breadcrumbs_hangcheck+0x59/0x80 [i915] [ 1379.989790] missed_breadcrumb current seqno 75f4, last 760a, hangcheck 75f4 [1824 ms], inflight 22 [ 1379.989808] missed_breadcrumb Reset count: 3 (global 0) [ 1379.989809] missed_breadcrumb Requests: [ 1379.989812] missed_breadcrumb first 75f5 [c6:32fc] prio=0 @ 30184ms: VideoPlayer[1034]/0 [ 1379.989814] missed_breadcrumb last 760a [c6:3311] prio=0 @ 30108ms: VideoPlayer[1034]/0 [ 1379.989816] missed_breadcrumb active 75f5 [c6:32fc] prio=0 @ 30184ms: VideoPlayer[1034]/0 [ 1379.989818] missed_breadcrumb [head 2f70, postfix 2fa0, tail 2fb8, batch 0x00000000_20af4000] [ 1379.989820] missed_breadcrumb ring->start: 0x06ae8000 [ 1379.989821] missed_breadcrumb ring->head: 0x00002f50 [ 1379.989822] missed_breadcrumb ring->tail: 0x00003648 [ 1379.989830] missed_breadcrumb RING_START: 0x06ae8000 [ 1379.989832] missed_breadcrumb RING_HEAD: 0x00002fa0 [ 1379.989835] missed_breadcrumb RING_TAIL: 0x00003648 [ 1379.989838] missed_breadcrumb RING_CTL: 0x00003001 [ 1379.989842] missed_breadcrumb RING_MODE: 0x00000000 [ 1379.989844] missed_breadcrumb RING_IMR: fffffefe [ 1379.989850] missed_breadcrumb ACTHD: 0x00000000_00002fa0 [ 1379.989854] missed_breadcrumb BBADDR: 0x00000000_20af49d8 [ 1379.989860] missed_breadcrumb DMA_FADDR: 0x00000000_06aeb180 [ 1379.989862] missed_breadcrumb IPEIR: 0x00000000 [ 1379.989864] missed_breadcrumb IPEHR: 0x13204002 [ 1379.989868] missed_breadcrumb Execlist status: 0x00044032 00000009 [ 1379.989872] missed_breadcrumb Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1379.989874] missed_breadcrumb ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 30108ms: VideoPlayer[1034]/0 [ 1379.989875] missed_breadcrumb ELSP[1] idle [ 1379.989876] missed_breadcrumb HW active? 0x1 [ 1379.989878] missed_breadcrumb E 75f5 [c6:32fc] prio=0 @ 30184ms: VideoPlayer[1034]/0 [ 1379.989880] missed_breadcrumb E 75f6 [c6:32fd] prio=0 @ 30180ms: VideoPlayer[1034]/0 [ 1379.989882] missed_breadcrumb E 75f7 [c6:32fe] prio=0 @ 30180ms: VideoPlayer[1034]/0 [ 1379.989884] missed_breadcrumb E 75f8 [c6:32ff] prio=0 @ 30160ms: VideoPlayer[1034]/0 [ 1379.989886] missed_breadcrumb E 75f9 [c6:3300] prio=0 @ 30156ms: VideoPlayer[1034]/0 [ 1379.989887] missed_breadcrumb E 75fa [c6:3301] prio=0 @ 30156ms: VideoPlayer[1034]/0 [ 1379.989889] missed_breadcrumb E 75fb [c6:3302] prio=0 @ 30152ms: VideoPlayer[1034]/0 [ 1379.989891] missed_breadcrumb E 75fc [c6:3303] prio=0 @ 30148ms: VideoPlayer[1034]/0 [ 1379.989893] missed_breadcrumb E 75fd [c6:3304] prio=0 @ 30148ms: VideoPlayer[1034]/0 [ 1379.989894] missed_breadcrumb E 75fe [c6:3305] prio=0 @ 30144ms: VideoPlayer[1034]/0 [ 1379.989896] missed_breadcrumb E 75ff [c6:3306] prio=0 @ 30140ms: VideoPlayer[1034]/0 [ 1379.989898] missed_breadcrumb E 7600 [c6:3307] prio=0 @ 30136ms: VideoPlayer[1034]/0 [ 1379.989900] missed_breadcrumb E 7601 [c6:3308] prio=0 @ 30136ms: VideoPlayer[1034]/0 [ 1379.989902] missed_breadcrumb E 7602 [c6:3309] prio=0 @ 30132ms: VideoPlayer[1034]/0 [ 1379.989903] missed_breadcrumb E 7603 [c6:330a] prio=0 @ 30128ms: VideoPlayer[1034]/0 [ 1379.989905] missed_breadcrumb E 7604 [c6:330b] prio=0 @ 30124ms: VideoPlayer[1034]/0 [ 1379.989907] missed_breadcrumb E 7605 [c6:330c] prio=0 @ 30120ms: VideoPlayer[1034]/0 [ 1379.989909] missed_breadcrumb E 7606 [c6:330d] prio=0 @ 30116ms: VideoPlayer[1034]/0 [ 1379.989910] missed_breadcrumb E 7607 [c6:330e] prio=0 @ 30112ms: VideoPlayer[1034]/0 [ 1379.989912] missed_breadcrumb E 7608 [c6:330f] prio=0 @ 30112ms: VideoPlayer[1034]/0 [ 1379.989914] missed_breadcrumb E 7609 [c6:3310] prio=0 @ 30108ms: VideoPlayer[1034]/0 [ 1379.989916] missed_breadcrumb E 760a [c6:3311] prio=0 @ 30108ms: VideoPlayer[1034]/0 [ 1379.989917] missed_breadcrumb Queue priority: -2147483648 [ 1379.989919] missed_breadcrumb Vaapi-Output [1112] waiting for 7608 [ 1379.989920] missed_breadcrumb IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1379.989921] missed_breadcrumb HWSP: [ 1379.989925] missed_breadcrumb 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1379.989926] missed_breadcrumb * [ 1379.989928] missed_breadcrumb 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1379.989931] missed_breadcrumb 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1379.989933] missed_breadcrumb 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1379.989934] missed_breadcrumb * [ 1379.989936] missed_breadcrumb 000000c0 000075f4 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1379.989938] missed_breadcrumb 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1379.989939] missed_breadcrumb * [ 1379.989941] missed_breadcrumb Idle? no [ 1381.973791] hangcheck vcs0 [ 1381.973796] hangcheck current seqno 75f4, last 760a, hangcheck 75f4 [3808 ms], inflight 22 [ 1381.973797] hangcheck Reset count: 3 (global 0) [ 1381.973798] hangcheck Requests: [ 1381.973801] hangcheck first 75f5 [c6:32fc] prio=0 @ 32168ms: VideoPlayer[1034]/0 [ 1381.973804] hangcheck last 760a [c6:3311] prio=0 @ 32092ms: VideoPlayer[1034]/0 [ 1381.973806] hangcheck active 75f5 [c6:32fc] prio=0 @ 32168ms: VideoPlayer[1034]/0 [ 1381.973808] hangcheck [head 2f70, postfix 2fa0, tail 2fb8, batch 0x00000000_20af4000] [ 1381.973810] hangcheck ring->start: 0x06ae8000 [ 1381.973811] hangcheck ring->head: 0x00002f50 [ 1381.973812] hangcheck ring->tail: 0x00003648 [ 1381.973814] hangcheck RING_START: 0x06ae8000 [ 1381.973817] hangcheck RING_HEAD: 0x00002fa0 [ 1381.973819] hangcheck RING_TAIL: 0x00003648 [ 1381.973822] hangcheck RING_CTL: 0x00003001 [ 1381.973826] hangcheck RING_MODE: 0x00000000 [ 1381.973828] hangcheck RING_IMR: fffffefe [ 1381.973833] hangcheck ACTHD: 0x00000000_00002fa0 [ 1381.973838] hangcheck BBADDR: 0x00000000_20af49d8 [ 1381.973843] hangcheck DMA_FADDR: 0x00000000_06aeb180 [ 1381.973845] hangcheck IPEIR: 0x00000000 [ 1381.973848] hangcheck IPEHR: 0x13204002 [ 1381.973852] hangcheck Execlist status: 0x00044032 00000009 [ 1381.973855] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1381.973857] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 32092ms: VideoPlayer[1034]/0 [ 1381.973858] hangcheck ELSP[1] idle [ 1381.973859] hangcheck HW active? 0x1 [ 1381.973861] hangcheck E 75f5 [c6:32fc] prio=0 @ 32168ms: VideoPlayer[1034]/0 [ 1381.973863] hangcheck E 75f6 [c6:32fd] prio=0 @ 32164ms: VideoPlayer[1034]/0 [ 1381.973865] hangcheck E 75f7 [c6:32fe] prio=0 @ 32164ms: VideoPlayer[1034]/0 [ 1381.973867] hangcheck E 75f8 [c6:32ff] prio=0 @ 32144ms: VideoPlayer[1034]/0 [ 1381.973869] hangcheck E 75f9 [c6:3300] prio=0 @ 32140ms: VideoPlayer[1034]/0 [ 1381.973870] hangcheck E 75fa [c6:3301] prio=0 @ 32140ms: VideoPlayer[1034]/0 [ 1381.973872] hangcheck E 75fb [c6:3302] prio=0 @ 32136ms: VideoPlayer[1034]/0 [ 1381.973874] hangcheck E 75fc [c6:3303] prio=0 @ 32132ms: VideoPlayer[1034]/0 [ 1381.973876] hangcheck E 75fd [c6:3304] prio=0 @ 32132ms: VideoPlayer[1034]/0 [ 1381.973878] hangcheck E 75fe [c6:3305] prio=0 @ 32128ms: VideoPlayer[1034]/0 [ 1381.973880] hangcheck E 75ff [c6:3306] prio=0 @ 32124ms: VideoPlayer[1034]/0 [ 1381.973882] hangcheck E 7600 [c6:3307] prio=0 @ 32120ms: VideoPlayer[1034]/0 [ 1381.973883] hangcheck E 7601 [c6:3308] prio=0 @ 32120ms: VideoPlayer[1034]/0 [ 1381.973885] hangcheck E 7602 [c6:3309] prio=0 @ 32116ms: VideoPlayer[1034]/0 [ 1381.973887] hangcheck E 7603 [c6:330a] prio=0 @ 32112ms: VideoPlayer[1034]/0 [ 1381.973889] hangcheck E 7604 [c6:330b] prio=0 @ 32108ms: VideoPlayer[1034]/0 [ 1381.973890] hangcheck E 7605 [c6:330c] prio=0 @ 32104ms: VideoPlayer[1034]/0 [ 1381.973892] hangcheck E 7606 [c6:330d] prio=0 @ 32100ms: VideoPlayer[1034]/0 [ 1381.973911] hangcheck E 7607 [c6:330e] prio=0 @ 32096ms: VideoPlayer[1034]/0 [ 1381.973913] hangcheck E 7608 [c6:330f] prio=0 @ 32096ms: VideoPlayer[1034]/0 [ 1381.973914] hangcheck E 7609 [c6:3310] prio=0 @ 32092ms: VideoPlayer[1034]/0 [ 1381.973916] hangcheck E 760a [c6:3311] prio=0 @ 32092ms: VideoPlayer[1034]/0 [ 1381.973917] hangcheck Queue priority: -2147483648 [ 1381.973919] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1381.973920] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1381.973921] hangcheck HWSP: [ 1381.973925] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1381.973926] hangcheck * [ 1381.973928] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1381.973930] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1381.973933] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1381.973934] hangcheck * [ 1381.973936] hangcheck 000000c0 000075f4 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1381.973938] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1381.973939] hangcheck * [ 1381.973941] hangcheck Idle? no [ 1383.989817] hangcheck vcs0 [ 1383.989822] hangcheck current seqno 75f4, last 760a, hangcheck 75f4 [5824 ms], inflight 22 [ 1383.989823] hangcheck Reset count: 3 (global 0) [ 1383.989824] hangcheck Requests: [ 1383.989827] hangcheck first 75f5 [c6:32fc] prio=0 @ 34184ms: VideoPlayer[1034]/0 [ 1383.989829] hangcheck last 760a [c6:3311] prio=0 @ 34108ms: VideoPlayer[1034]/0 [ 1383.989831] hangcheck active 75f5 [c6:32fc] prio=0 @ 34184ms: VideoPlayer[1034]/0 [ 1383.989833] hangcheck [head 2f70, postfix 2fa0, tail 2fb8, batch 0x00000000_20af4000] [ 1383.989835] hangcheck ring->start: 0x06ae8000 [ 1383.989836] hangcheck ring->head: 0x00002f50 [ 1383.989837] hangcheck ring->tail: 0x00003648 [ 1383.989840] hangcheck RING_START: 0x06ae8000 [ 1383.989842] hangcheck RING_HEAD: 0x00002fa0 [ 1383.989844] hangcheck RING_TAIL: 0x00003648 [ 1383.989848] hangcheck RING_CTL: 0x00003001 [ 1383.989851] hangcheck RING_MODE: 0x00000000 [ 1383.989853] hangcheck RING_IMR: fffffefe [ 1383.989858] hangcheck ACTHD: 0x00000000_00002fa0 [ 1383.989863] hangcheck BBADDR: 0x00000000_20af49d8 [ 1383.989868] hangcheck DMA_FADDR: 0x00000000_06aeb180 [ 1383.989870] hangcheck IPEIR: 0x00000000 [ 1383.989873] hangcheck IPEHR: 0x13204002 [ 1383.989877] hangcheck Execlist status: 0x00044032 00000009 [ 1383.989879] hangcheck Execlist CSB read 0 [0 cached], write 0 [0 from hws], interrupt posted? no [ 1383.989882] hangcheck ELSP[0] count=1, rq: 760a [c6:3311] prio=0 @ 34108ms: VideoPlayer[1034]/0 [ 1383.989883] hangcheck ELSP[1] idle [ 1383.989884] hangcheck HW active? 0x1 [ 1383.989886] hangcheck E 75f5 [c6:32fc] prio=0 @ 34184ms: VideoPlayer[1034]/0 [ 1383.989888] hangcheck E 75f6 [c6:32fd] prio=0 @ 34180ms: VideoPlayer[1034]/0 [ 1383.989889] hangcheck E 75f7 [c6:32fe] prio=0 @ 34180ms: VideoPlayer[1034]/0 [ 1383.989891] hangcheck E 75f8 [c6:32ff] prio=0 @ 34160ms: VideoPlayer[1034]/0 [ 1383.989893] hangcheck E 75f9 [c6:3300] prio=0 @ 34156ms: VideoPlayer[1034]/0 [ 1383.989895] hangcheck E 75fa [c6:3301] prio=0 @ 34156ms: VideoPlayer[1034]/0 [ 1383.989896] hangcheck E 75fb [c6:3302] prio=0 @ 34152ms: VideoPlayer[1034]/0 [ 1383.989898] hangcheck E 75fc [c6:3303] prio=0 @ 34148ms: VideoPlayer[1034]/0 [ 1383.989900] hangcheck E 75fd [c6:3304] prio=0 @ 34148ms: VideoPlayer[1034]/0 [ 1383.989902] hangcheck E 75fe [c6:3305] prio=0 @ 34144ms: VideoPlayer[1034]/0 [ 1383.989903] hangcheck E 75ff [c6:3306] prio=0 @ 34140ms: VideoPlayer[1034]/0 [ 1383.989905] hangcheck E 7600 [c6:3307] prio=0 @ 34136ms: VideoPlayer[1034]/0 [ 1383.989907] hangcheck E 7601 [c6:3308] prio=0 @ 34136ms: VideoPlayer[1034]/0 [ 1383.989909] hangcheck E 7602 [c6:3309] prio=0 @ 34132ms: VideoPlayer[1034]/0 [ 1383.989910] hangcheck E 7603 [c6:330a] prio=0 @ 34128ms: VideoPlayer[1034]/0 [ 1383.989912] hangcheck E 7604 [c6:330b] prio=0 @ 34124ms: VideoPlayer[1034]/0 [ 1383.989914] hangcheck E 7605 [c6:330c] prio=0 @ 34120ms: VideoPlayer[1034]/0 [ 1383.989916] hangcheck E 7606 [c6:330d] prio=0 @ 34116ms: VideoPlayer[1034]/0 [ 1383.989917] hangcheck E 7607 [c6:330e] prio=0 @ 34112ms: VideoPlayer[1034]/0 [ 1383.989919] hangcheck E 7608 [c6:330f] prio=0 @ 34112ms: VideoPlayer[1034]/0 [ 1383.989921] hangcheck E 7609 [c6:3310] prio=0 @ 34108ms: VideoPlayer[1034]/0 [ 1383.989922] hangcheck E 760a [c6:3311] prio=0 @ 34108ms: VideoPlayer[1034]/0 [ 1383.989924] hangcheck Queue priority: -2147483648 [ 1383.989925] hangcheck Vaapi-Output [1112] waiting for 7608 [ 1383.989927] hangcheck IRQ? 0x1 (breadcrumbs? yes) (execlists? no) [ 1383.989927] hangcheck HWSP: [ 1383.989931] hangcheck 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1383.989932] hangcheck * [ 1383.989934] hangcheck 00000040 00000001 00000000 00008002 00000009 00008002 00000009 00008002 00000009 [ 1383.989937] hangcheck 00000060 00008002 00000009 00008002 00000009 00000000 00000000 00000000 00000000 [ 1383.989939] hangcheck 00000080 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1383.989940] hangcheck * [ 1383.989942] hangcheck 000000c0 000075f4 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1383.989945] hangcheck 000000e0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1383.989945] hangcheck * [ 1383.989947] hangcheck Idle? no [ 1383.990160] i915 0000:00:02.0: Resetting vcs0 after gpu hang [ 1384.492398] [drm:intel_gpu_reset [i915]] vcs0: timed out on STOP_RING [ 1384.492440] [drm:intel_gpu_reset [i915]] vcs0: ring head not parked [ 1384.492477] [drm:i915_gem_reset_engine [i915]] context VideoPlayer[1034]/0 marked guilty (score 31) banned? no [ 1384.492507] [drm:i915_gem_reset_engine [i915]] resetting vcs0 to restart from tail of request 0x75f5