Loading...
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 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 | // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) /* QLogic qed NIC Driver * Copyright (c) 2015 QLogic Corporation * Copyright (c) 2019-2021 Marvell International Ltd. */ #include <linux/module.h> #include <linux/vmalloc.h> #include <linux/crc32.h> #include "qed.h" #include "qed_cxt.h" #include "qed_hsi.h" #include "qed_dbg_hsi.h" #include "qed_hw.h" #include "qed_mcp.h" #include "qed_reg_addr.h" /* Memory groups enum */ enum mem_groups { MEM_GROUP_PXP_MEM, MEM_GROUP_DMAE_MEM, MEM_GROUP_CM_MEM, MEM_GROUP_QM_MEM, MEM_GROUP_DORQ_MEM, MEM_GROUP_BRB_RAM, MEM_GROUP_BRB_MEM, MEM_GROUP_PRS_MEM, MEM_GROUP_SDM_MEM, MEM_GROUP_PBUF, MEM_GROUP_IOR, MEM_GROUP_RAM, MEM_GROUP_BTB_RAM, MEM_GROUP_RDIF_CTX, MEM_GROUP_TDIF_CTX, MEM_GROUP_CFC_MEM, MEM_GROUP_CONN_CFC_MEM, MEM_GROUP_CAU_PI, MEM_GROUP_CAU_MEM, MEM_GROUP_CAU_MEM_EXT, MEM_GROUP_PXP_ILT, MEM_GROUP_MULD_MEM, MEM_GROUP_BTB_MEM, MEM_GROUP_IGU_MEM, MEM_GROUP_IGU_MSIX, MEM_GROUP_CAU_SB, MEM_GROUP_BMB_RAM, MEM_GROUP_BMB_MEM, MEM_GROUP_TM_MEM, MEM_GROUP_TASK_CFC_MEM, MEM_GROUPS_NUM }; /* Memory groups names */ static const char * const s_mem_group_names[] = { "PXP_MEM", "DMAE_MEM", "CM_MEM", "QM_MEM", "DORQ_MEM", "BRB_RAM", "BRB_MEM", "PRS_MEM", "SDM_MEM", "PBUF", "IOR", "RAM", "BTB_RAM", "RDIF_CTX", "TDIF_CTX", "CFC_MEM", "CONN_CFC_MEM", "CAU_PI", "CAU_MEM", "CAU_MEM_EXT", "PXP_ILT", "MULD_MEM", "BTB_MEM", "IGU_MEM", "IGU_MSIX", "CAU_SB", "BMB_RAM", "BMB_MEM", "TM_MEM", "TASK_CFC_MEM", }; /* Idle check conditions */ static u32 cond5(const u32 *r, const u32 *imm) { return ((r[0] & imm[0]) != imm[1]) && ((r[1] & imm[2]) != imm[3]); } static u32 cond7(const u32 *r, const u32 *imm) { return ((r[0] >> imm[0]) & imm[1]) != imm[2]; } static u32 cond6(const u32 *r, const u32 *imm) { return (r[0] & imm[0]) != imm[1]; } static u32 cond9(const u32 *r, const u32 *imm) { return ((r[0] & imm[0]) >> imm[1]) != (((r[0] & imm[2]) >> imm[3]) | ((r[1] & imm[4]) << imm[5])); } static u32 cond10(const u32 *r, const u32 *imm) { return ((r[0] & imm[0]) >> imm[1]) != (r[0] & imm[2]); } static u32 cond4(const u32 *r, const u32 *imm) { return (r[0] & ~imm[0]) != imm[1]; } static u32 cond0(const u32 *r, const u32 *imm) { return (r[0] & ~r[1]) != imm[0]; } static u32 cond14(const u32 *r, const u32 *imm) { return (r[0] | imm[0]) != imm[1]; } static u32 cond1(const u32 *r, const u32 *imm) { return r[0] != imm[0]; } static u32 cond11(const u32 *r, const u32 *imm) { return r[0] != r[1] && r[2] == imm[0]; } static u32 cond12(const u32 *r, const u32 *imm) { return r[0] != r[1] && r[2] > imm[0]; } static u32 cond3(const u32 *r, const u32 *imm) { return r[0] != r[1]; } static u32 cond13(const u32 *r, const u32 *imm) { return r[0] & imm[0]; } static u32 cond8(const u32 *r, const u32 *imm) { return r[0] < (r[1] - imm[0]); } static u32 cond2(const u32 *r, const u32 *imm) { return r[0] > imm[0]; } /* Array of Idle Check conditions */ static u32(*cond_arr[]) (const u32 *r, const u32 *imm) = { cond0, cond1, cond2, cond3, cond4, cond5, cond6, cond7, cond8, cond9, cond10, cond11, cond12, cond13, cond14, }; #define NUM_PHYS_BLOCKS 84 #define NUM_DBG_RESET_REGS 8 /******************************* Data Types **********************************/ enum hw_types { HW_TYPE_ASIC, PLATFORM_RESERVED, PLATFORM_RESERVED2, PLATFORM_RESERVED3, PLATFORM_RESERVED4, MAX_HW_TYPES }; /* CM context types */ enum cm_ctx_types { CM_CTX_CONN_AG, CM_CTX_CONN_ST, CM_CTX_TASK_AG, CM_CTX_TASK_ST, NUM_CM_CTX_TYPES }; /* Debug bus frame modes */ enum dbg_bus_frame_modes { DBG_BUS_FRAME_MODE_4ST = 0, /* 4 Storm dwords (no HW) */ DBG_BUS_FRAME_MODE_2ST_2HW = 1, /* 2 Storm dwords, 2 HW dwords */ DBG_BUS_FRAME_MODE_1ST_3HW = 2, /* 1 Storm dwords, 3 HW dwords */ DBG_BUS_FRAME_MODE_4HW = 3, /* 4 HW dwords (no Storms) */ DBG_BUS_FRAME_MODE_8HW = 4, /* 8 HW dwords (no Storms) */ DBG_BUS_NUM_FRAME_MODES }; /* Debug bus SEMI frame modes */ enum dbg_bus_semi_frame_modes { DBG_BUS_SEMI_FRAME_MODE_4FAST = 0, /* 4 fast dw */ DBG_BUS_SEMI_FRAME_MODE_2FAST_2SLOW = 1, /* 2 fast dw, 2 slow dw */ DBG_BUS_SEMI_FRAME_MODE_1FAST_3SLOW = 2, /* 1 fast dw,3 slow dw */ DBG_BUS_SEMI_FRAME_MODE_4SLOW = 3, /* 4 slow dw */ DBG_BUS_SEMI_NUM_FRAME_MODES }; /* Debug bus filter types */ enum dbg_bus_filter_types { DBG_BUS_FILTER_TYPE_OFF, /* Filter always off */ DBG_BUS_FILTER_TYPE_PRE, /* Filter before trigger only */ DBG_BUS_FILTER_TYPE_POST, /* Filter after trigger only */ DBG_BUS_FILTER_TYPE_ON /* Filter always on */ }; /* Debug bus pre-trigger recording types */ enum dbg_bus_pre_trigger_types { DBG_BUS_PRE_TRIGGER_FROM_ZERO, /* Record from time 0 */ DBG_BUS_PRE_TRIGGER_NUM_CHUNKS, /* Record some chunks before trigger */ DBG_BUS_PRE_TRIGGER_DROP /* Drop data before trigger */ }; /* Debug bus post-trigger recording types */ enum dbg_bus_post_trigger_types { DBG_BUS_POST_TRIGGER_RECORD, /* Start recording after trigger */ DBG_BUS_POST_TRIGGER_DROP /* Drop data after trigger */ }; /* Debug bus other engine mode */ enum dbg_bus_other_engine_modes { DBG_BUS_OTHER_ENGINE_MODE_NONE, DBG_BUS_OTHER_ENGINE_MODE_DOUBLE_BW_TX, DBG_BUS_OTHER_ENGINE_MODE_DOUBLE_BW_RX, DBG_BUS_OTHER_ENGINE_MODE_CROSS_ENGINE_TX, DBG_BUS_OTHER_ENGINE_MODE_CROSS_ENGINE_RX }; /* DBG block Framing mode definitions */ struct framing_mode_defs { u8 id; u8 blocks_dword_mask; u8 storms_dword_mask; u8 semi_framing_mode_id; u8 full_buf_thr; }; /* Chip constant definitions */ struct chip_defs { const char *name; u8 dwords_per_cycle; u8 num_framing_modes; u32 num_ilt_pages; struct framing_mode_defs *framing_modes; }; /* HW type constant definitions */ struct hw_type_defs { const char *name; u32 delay_factor; u32 dmae_thresh; u32 log_thresh; }; /* RBC reset definitions */ struct rbc_reset_defs { u32 reset_reg_addr; u32 reset_val[MAX_CHIP_IDS]; }; /* Storm constant definitions. * Addresses are in bytes, sizes are in quad-regs. */ struct storm_defs { char letter; enum block_id sem_block_id; enum dbg_bus_clients dbg_client_id[MAX_CHIP_IDS]; bool has_vfc; u32 sem_fast_mem_addr; u32 sem_frame_mode_addr; u32 sem_slow_enable_addr; u32 sem_slow_mode_addr; u32 sem_slow_mode1_conf_addr; u32 sem_sync_dbg_empty_addr; u32 sem_gpre_vect_addr; u32 cm_ctx_wr_addr; u32 cm_ctx_rd_addr[NUM_CM_CTX_TYPES]; u32 cm_ctx_lid_sizes[MAX_CHIP_IDS][NUM_CM_CTX_TYPES]; }; /* Debug Bus Constraint operation constant definitions */ struct dbg_bus_constraint_op_defs { u8 hw_op_val; bool is_cyclic; }; /* Storm Mode definitions */ struct storm_mode_defs { const char *name; bool is_fast_dbg; u8 id_in_hw; u32 src_disable_reg_addr; u32 src_enable_val; bool exists[MAX_CHIP_IDS]; }; struct grc_param_defs { u32 default_val[MAX_CHIP_IDS]; u32 min; u32 max; bool is_preset; bool is_persistent; u32 exclude_all_preset_val; u32 crash_preset_val[MAX_CHIP_IDS]; }; /* Address is in 128b units. Width is in bits. */ struct rss_mem_defs { const char *mem_name; const char *type_name; u32 addr; u32 entry_width; u32 num_entries[MAX_CHIP_IDS]; }; struct vfc_ram_defs { const char *mem_name; const char *type_name; u32 base_row; u32 num_rows; }; struct big_ram_defs { const char *instance_name; enum mem_groups mem_group_id; enum mem_groups ram_mem_group_id; enum dbg_grc_params grc_param; u32 addr_reg_addr; u32 data_reg_addr; u32 is_256b_reg_addr; u32 is_256b_bit_offset[MAX_CHIP_IDS]; u32 ram_size[MAX_CHIP_IDS]; /* In dwords */ }; struct phy_defs { const char *phy_name; /* PHY base GRC address */ u32 base_addr; /* Relative address of indirect TBUS address register (bits 0..7) */ u32 tbus_addr_lo_addr; /* Relative address of indirect TBUS address register (bits 8..10) */ u32 tbus_addr_hi_addr; /* Relative address of indirect TBUS data register (bits 0..7) */ u32 tbus_data_lo_addr; /* Relative address of indirect TBUS data register (bits 8..11) */ u32 tbus_data_hi_addr; }; /* Split type definitions */ struct split_type_defs { const char *name; }; /******************************** Constants **********************************/ #define BYTES_IN_DWORD sizeof(u32) /* In the macros below, size and offset are specified in bits */ #define CEIL_DWORDS(size) DIV_ROUND_UP(size, 32) #define FIELD_BIT_OFFSET(type, field) type ## _ ## field ## _ ## OFFSET #define FIELD_BIT_SIZE(type, field) type ## _ ## field ## _ ## SIZE #define FIELD_DWORD_OFFSET(type, field) \ ((int)(FIELD_BIT_OFFSET(type, field) / 32)) #define FIELD_DWORD_SHIFT(type, field) (FIELD_BIT_OFFSET(type, field) % 32) #define FIELD_BIT_MASK(type, field) \ (((1 << FIELD_BIT_SIZE(type, field)) - 1) << \ FIELD_DWORD_SHIFT(type, field)) #define SET_VAR_FIELD(var, type, field, val) \ do { \ var[FIELD_DWORD_OFFSET(type, field)] &= \ (~FIELD_BIT_MASK(type, field)); \ var[FIELD_DWORD_OFFSET(type, field)] |= \ (val) << FIELD_DWORD_SHIFT(type, field); \ } while (0) #define ARR_REG_WR(dev, ptt, addr, arr, arr_size) \ do { \ for (i = 0; i < (arr_size); i++) \ qed_wr(dev, ptt, addr, (arr)[i]); \ } while (0) #define DWORDS_TO_BYTES(dwords) ((dwords) * BYTES_IN_DWORD) #define BYTES_TO_DWORDS(bytes) ((bytes) / BYTES_IN_DWORD) /* extra lines include a signature line + optional latency events line */ #define NUM_EXTRA_DBG_LINES(block) \ (GET_FIELD((block)->flags, DBG_BLOCK_CHIP_HAS_LATENCY_EVENTS) ? 2 : 1) #define NUM_DBG_LINES(block) \ ((block)->num_of_dbg_bus_lines + NUM_EXTRA_DBG_LINES(block)) #define USE_DMAE true #define PROTECT_WIDE_BUS true #define RAM_LINES_TO_DWORDS(lines) ((lines) * 2) #define RAM_LINES_TO_BYTES(lines) \ DWORDS_TO_BYTES(RAM_LINES_TO_DWORDS(lines)) #define REG_DUMP_LEN_SHIFT 24 #define MEM_DUMP_ENTRY_SIZE_DWORDS \ BYTES_TO_DWORDS(sizeof(struct dbg_dump_mem)) #define IDLE_CHK_RULE_SIZE_DWORDS \ BYTES_TO_DWORDS(sizeof(struct dbg_idle_chk_rule)) #define IDLE_CHK_RESULT_HDR_DWORDS \ BYTES_TO_DWORDS(sizeof(struct dbg_idle_chk_result_hdr)) #define IDLE_CHK_RESULT_REG_HDR_DWORDS \ BYTES_TO_DWORDS(sizeof(struct dbg_idle_chk_result_reg_hdr)) #define PAGE_MEM_DESC_SIZE_DWORDS \ BYTES_TO_DWORDS(sizeof(struct phys_mem_desc)) #define IDLE_CHK_MAX_ENTRIES_SIZE 32 /* The sizes and offsets below are specified in bits */ #define VFC_CAM_CMD_STRUCT_SIZE 64 #define VFC_CAM_CMD_ROW_OFFSET 48 #define VFC_CAM_CMD_ROW_SIZE 9 #define VFC_CAM_ADDR_STRUCT_SIZE 16 #define VFC_CAM_ADDR_OP_OFFSET 0 #define VFC_CAM_ADDR_OP_SIZE 4 #define VFC_CAM_RESP_STRUCT_SIZE 256 #define VFC_RAM_ADDR_STRUCT_SIZE 16 #define VFC_RAM_ADDR_OP_OFFSET 0 #define VFC_RAM_ADDR_OP_SIZE 2 #define VFC_RAM_ADDR_ROW_OFFSET 2 #define VFC_RAM_ADDR_ROW_SIZE 10 #define VFC_RAM_RESP_STRUCT_SIZE 256 #define VFC_CAM_CMD_DWORDS CEIL_DWORDS(VFC_CAM_CMD_STRUCT_SIZE) #define VFC_CAM_ADDR_DWORDS CEIL_DWORDS(VFC_CAM_ADDR_STRUCT_SIZE) #define VFC_CAM_RESP_DWORDS CEIL_DWORDS(VFC_CAM_RESP_STRUCT_SIZE) #define VFC_RAM_CMD_DWORDS VFC_CAM_CMD_DWORDS #define VFC_RAM_ADDR_DWORDS CEIL_DWORDS(VFC_RAM_ADDR_STRUCT_SIZE) #define VFC_RAM_RESP_DWORDS CEIL_DWORDS(VFC_RAM_RESP_STRUCT_SIZE) #define NUM_VFC_RAM_TYPES 4 #define VFC_CAM_NUM_ROWS 512 #define VFC_OPCODE_CAM_RD 14 #define VFC_OPCODE_RAM_RD 0 #define NUM_RSS_MEM_TYPES 5 #define NUM_BIG_RAM_TYPES 3 #define BIG_RAM_NAME_LEN 3 #define NUM_PHY_TBUS_ADDRESSES 2048 #define PHY_DUMP_SIZE_DWORDS (NUM_PHY_TBUS_ADDRESSES / 2) #define RESET_REG_UNRESET_OFFSET 4 #define STALL_DELAY_MS 500 #define STATIC_DEBUG_LINE_DWORDS 9 #define NUM_COMMON_GLOBAL_PARAMS 10 #define MAX_RECURSION_DEPTH 10 #define FW_IMG_KUKU 0 #define FW_IMG_MAIN 1 #define FW_IMG_L2B 2 #define REG_FIFO_ELEMENT_DWORDS 2 #define REG_FIFO_DEPTH_ELEMENTS 32 #define REG_FIFO_DEPTH_DWORDS \ (REG_FIFO_ELEMENT_DWORDS * REG_FIFO_DEPTH_ELEMENTS) #define IGU_FIFO_ELEMENT_DWORDS 4 #define IGU_FIFO_DEPTH_ELEMENTS 64 #define IGU_FIFO_DEPTH_DWORDS \ (IGU_FIFO_ELEMENT_DWORDS * IGU_FIFO_DEPTH_ELEMENTS) #define PROTECTION_OVERRIDE_ELEMENT_DWORDS 2 #define PROTECTION_OVERRIDE_DEPTH_ELEMENTS 20 #define PROTECTION_OVERRIDE_DEPTH_DWORDS \ (PROTECTION_OVERRIDE_DEPTH_ELEMENTS * \ PROTECTION_OVERRIDE_ELEMENT_DWORDS) #define MCP_SPAD_TRACE_OFFSIZE_ADDR \ (MCP_REG_SCRATCH + \ offsetof(struct static_init, sections[SPAD_SECTION_TRACE])) #define MAX_SW_PLTAFORM_STR_SIZE 64 #define EMPTY_FW_VERSION_STR "???_???_???_???" #define EMPTY_FW_IMAGE_STR "???????????????" /***************************** Constant Arrays *******************************/ /* DBG block framing mode definitions, in descending preference order */ static struct framing_mode_defs s_framing_mode_defs[4] = { {DBG_BUS_FRAME_MODE_4ST, 0x0, 0xf, DBG_BUS_SEMI_FRAME_MODE_4FAST, 10}, {DBG_BUS_FRAME_MODE_4HW, 0xf, 0x0, DBG_BUS_SEMI_FRAME_MODE_4SLOW, 10}, {DBG_BUS_FRAME_MODE_2ST_2HW, 0x3, 0xc, DBG_BUS_SEMI_FRAME_MODE_2FAST_2SLOW, 10}, {DBG_BUS_FRAME_MODE_1ST_3HW, 0x7, 0x8, DBG_BUS_SEMI_FRAME_MODE_1FAST_3SLOW, 10} }; /* Chip constant definitions array */ static struct chip_defs s_chip_defs[MAX_CHIP_IDS] = { {"bb", 4, DBG_BUS_NUM_FRAME_MODES, PSWRQ2_REG_ILT_MEMORY_SIZE_BB / 2, s_framing_mode_defs}, {"ah", 4, DBG_BUS_NUM_FRAME_MODES, PSWRQ2_REG_ILT_MEMORY_SIZE_K2 / 2, s_framing_mode_defs} }; /* Storm constant definitions array */ static struct storm_defs s_storm_defs[] = { /* Tstorm */ {'T', BLOCK_TSEM, {DBG_BUS_CLIENT_RBCT, DBG_BUS_CLIENT_RBCT}, true, TSEM_REG_FAST_MEMORY, TSEM_REG_DBG_FRAME_MODE, TSEM_REG_SLOW_DBG_ACTIVE, TSEM_REG_SLOW_DBG_MODE, TSEM_REG_DBG_MODE1_CFG, TSEM_REG_SYNC_DBG_EMPTY, TSEM_REG_DBG_GPRE_VECT, TCM_REG_CTX_RBC_ACCS, {TCM_REG_AGG_CON_CTX, TCM_REG_SM_CON_CTX, TCM_REG_AGG_TASK_CTX, TCM_REG_SM_TASK_CTX}, {{4, 16, 2, 4}, {4, 16, 2, 4}} /* {bb} {k2} */ }, /* Mstorm */ {'M', BLOCK_MSEM, {DBG_BUS_CLIENT_RBCT, DBG_BUS_CLIENT_RBCM}, false, MSEM_REG_FAST_MEMORY, MSEM_REG_DBG_FRAME_MODE, MSEM_REG_SLOW_DBG_ACTIVE, MSEM_REG_SLOW_DBG_MODE, MSEM_REG_DBG_MODE1_CFG, MSEM_REG_SYNC_DBG_EMPTY, MSEM_REG_DBG_GPRE_VECT, MCM_REG_CTX_RBC_ACCS, {MCM_REG_AGG_CON_CTX, MCM_REG_SM_CON_CTX, MCM_REG_AGG_TASK_CTX, MCM_REG_SM_TASK_CTX }, {{1, 10, 2, 7}, {1, 10, 2, 7}} /* {bb} {k2}*/ }, /* Ustorm */ {'U', BLOCK_USEM, {DBG_BUS_CLIENT_RBCU, DBG_BUS_CLIENT_RBCU}, false, USEM_REG_FAST_MEMORY, USEM_REG_DBG_FRAME_MODE, USEM_REG_SLOW_DBG_ACTIVE, USEM_REG_SLOW_DBG_MODE, USEM_REG_DBG_MODE1_CFG, USEM_REG_SYNC_DBG_EMPTY, USEM_REG_DBG_GPRE_VECT, UCM_REG_CTX_RBC_ACCS, {UCM_REG_AGG_CON_CTX, UCM_REG_SM_CON_CTX, UCM_REG_AGG_TASK_CTX, UCM_REG_SM_TASK_CTX}, {{2, 13, 3, 3}, {2, 13, 3, 3}} /* {bb} {k2} */ }, /* Xstorm */ {'X', BLOCK_XSEM, {DBG_BUS_CLIENT_RBCX, DBG_BUS_CLIENT_RBCX}, false, XSEM_REG_FAST_MEMORY, XSEM_REG_DBG_FRAME_MODE, XSEM_REG_SLOW_DBG_ACTIVE, XSEM_REG_SLOW_DBG_MODE, XSEM_REG_DBG_MODE1_CFG, XSEM_REG_SYNC_DBG_EMPTY, XSEM_REG_DBG_GPRE_VECT, XCM_REG_CTX_RBC_ACCS, {XCM_REG_AGG_CON_CTX, XCM_REG_SM_CON_CTX, 0, 0}, {{9, 15, 0, 0}, {9, 15, 0, 0}} /* {bb} {k2} */ }, /* Ystorm */ {'Y', BLOCK_YSEM, {DBG_BUS_CLIENT_RBCX, DBG_BUS_CLIENT_RBCY}, false, YSEM_REG_FAST_MEMORY, YSEM_REG_DBG_FRAME_MODE, YSEM_REG_SLOW_DBG_ACTIVE, YSEM_REG_SLOW_DBG_MODE, YSEM_REG_DBG_MODE1_CFG, YSEM_REG_SYNC_DBG_EMPTY, YSEM_REG_DBG_GPRE_VECT, YCM_REG_CTX_RBC_ACCS, {YCM_REG_AGG_CON_CTX, YCM_REG_SM_CON_CTX, YCM_REG_AGG_TASK_CTX, YCM_REG_SM_TASK_CTX}, {{2, 3, 2, 12}, {2, 3, 2, 12}} /* {bb} {k2} */ }, /* Pstorm */ {'P', BLOCK_PSEM, {DBG_BUS_CLIENT_RBCS, DBG_BUS_CLIENT_RBCS}, true, PSEM_REG_FAST_MEMORY, PSEM_REG_DBG_FRAME_MODE, PSEM_REG_SLOW_DBG_ACTIVE, PSEM_REG_SLOW_DBG_MODE, PSEM_REG_DBG_MODE1_CFG, PSEM_REG_SYNC_DBG_EMPTY, PSEM_REG_DBG_GPRE_VECT, PCM_REG_CTX_RBC_ACCS, {0, PCM_REG_SM_CON_CTX, 0, 0}, {{0, 10, 0, 0}, {0, 10, 0, 0}} /* {bb} {k2} */ }, }; static struct hw_type_defs s_hw_type_defs[] = { /* HW_TYPE_ASIC */ {"asic", 1, 256, 32768}, {"reserved", 0, 0, 0}, {"reserved2", 0, 0, 0}, {"reserved3", 0, 0, 0}, {"reserved4", 0, 0, 0} }; static struct grc_param_defs s_grc_param_defs[] = { /* DBG_GRC_PARAM_DUMP_TSTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_MSTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_USTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_XSTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_YSTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_PSTORM */ {{1, 1}, 0, 1, false, false, 1, {1, 1}}, /* DBG_GRC_PARAM_DUMP_REGS */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_RAM */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_PBUF */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_IOR */ {{0, 0}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_VFC */ {{0, 0}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_CM_CTX */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_ILT */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_RSS */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_CAU */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_QM */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_MCP */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_DORQ */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_CFC */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_IGU */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_BRB */ {{0, 0}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_BTB */ {{0, 0}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_BMB */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_RESERVED1 */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_DUMP_MULD */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_PRS */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_DMAE */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_TM */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_SDM */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_DIF */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_STATIC */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_UNSTALL */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_RESERVED2 */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_MCP_TRACE_META_SIZE */ {{0, 0}, 1, 0xffffffff, false, true, 0, {0, 0}}, /* DBG_GRC_PARAM_EXCLUDE_ALL */ {{0, 0}, 0, 1, true, false, 0, {0, 0}}, /* DBG_GRC_PARAM_CRASH */ {{0, 0}, 0, 1, true, false, 0, {0, 0}}, /* DBG_GRC_PARAM_PARITY_SAFE */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_DUMP_CM */ {{1, 1}, 0, 1, false, false, 0, {1, 1}}, /* DBG_GRC_PARAM_DUMP_PHY */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_NO_MCP */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_NO_FW_VER */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_RESERVED3 */ {{0, 0}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_DUMP_MCP_HW_DUMP */ {{0, 1}, 0, 1, false, false, 0, {0, 1}}, /* DBG_GRC_PARAM_DUMP_ILT_CDUC */ {{1, 1}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_DUMP_ILT_CDUT */ {{1, 1}, 0, 1, false, false, 0, {0, 0}}, /* DBG_GRC_PARAM_DUMP_CAU_EXT */ {{0, 0}, 0, 1, false, false, 0, {1, 1}} }; static struct rss_mem_defs s_rss_mem_defs[] = { {"rss_mem_cid", "rss_cid", 0, 32, {256, 320}}, {"rss_mem_key_msb", "rss_key", 1024, 256, {128, 208}}, {"rss_mem_key_lsb", "rss_key", 2048, 64, {128, 208}}, {"rss_mem_info", "rss_info", 3072, 16, {128, 208}}, {"rss_mem_ind", "rss_ind", 4096, 16, {16384, 26624}} }; static struct vfc_ram_defs s_vfc_ram_defs[] = { {"vfc_ram_tt1", "vfc_ram", 0, 512}, {"vfc_ram_mtt2", "vfc_ram", 512, 128}, {"vfc_ram_stt2", "vfc_ram", 640, 32}, {"vfc_ram_ro_vect", "vfc_ram", 672, 32} }; static struct big_ram_defs s_big_ram_defs[] = { {"BRB", MEM_GROUP_BRB_MEM, MEM_GROUP_BRB_RAM, DBG_GRC_PARAM_DUMP_BRB, BRB_REG_BIG_RAM_ADDRESS, BRB_REG_BIG_RAM_DATA, MISC_REG_BLOCK_256B_EN, {0, 0}, {153600, 180224}}, {"BTB", MEM_GROUP_BTB_MEM, MEM_GROUP_BTB_RAM, DBG_GRC_PARAM_DUMP_BTB, BTB_REG_BIG_RAM_ADDRESS, BTB_REG_BIG_RAM_DATA, MISC_REG_BLOCK_256B_EN, {0, 1}, {92160, 117760}}, {"BMB", MEM_GROUP_BMB_MEM, MEM_GROUP_BMB_RAM, DBG_GRC_PARAM_DUMP_BMB, BMB_REG_BIG_RAM_ADDRESS, BMB_REG_BIG_RAM_DATA, MISCS_REG_BLOCK_256B_EN, {0, 0}, {36864, 36864}} }; static struct rbc_reset_defs s_rbc_reset_defs[] = { {MISCS_REG_RESET_PL_HV, {0x0, 0x400}}, {MISC_REG_RESET_PL_PDA_VMAIN_1, {0x4404040, 0x4404040}}, {MISC_REG_RESET_PL_PDA_VMAIN_2, {0x7, 0x7c00007}}, {MISC_REG_RESET_PL_PDA_VAUX, {0x2, 0x2}}, }; static struct phy_defs s_phy_defs[] = { {"nw_phy", NWS_REG_NWS_CMU_K2, PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_7_0_K2, PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_15_8_K2, PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_7_0_K2, PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_11_8_K2}, {"sgmii_phy", MS_REG_MS_CMU_K2, PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X132_K2, PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X133_K2, PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X130_K2, PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X131_K2}, {"pcie_phy0", PHY_PCIE_REG_PHY0_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X132_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X133_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X130_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X131_K2}, {"pcie_phy1", PHY_PCIE_REG_PHY1_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X132_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X133_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X130_K2, PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X131_K2}, }; static struct split_type_defs s_split_type_defs[] = { /* SPLIT_TYPE_NONE */ {"eng"}, /* SPLIT_TYPE_PORT */ {"port"}, /* SPLIT_TYPE_PF */ {"pf"}, /* SPLIT_TYPE_PORT_PF */ {"port"}, /* SPLIT_TYPE_VF */ {"vf"} }; /******************************** Variables **********************************/ /* The version of the calling app */ static u32 s_app_ver; /**************************** Private Functions ******************************/ static void qed_static_asserts(void) { } /* Reads and returns a single dword from the specified unaligned buffer */ static u32 qed_read_unaligned_dword(u8 *buf) { u32 dword; memcpy((u8 *)&dword, buf, sizeof(dword)); return dword; } /* Sets the value of the specified GRC param */ static void qed_grc_set_param(struct qed_hwfn *p_hwfn, enum dbg_grc_params grc_param, u32 val) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; dev_data->grc.param_val[grc_param] = val; } /* Returns the value of the specified GRC param */ static u32 qed_grc_get_param(struct qed_hwfn *p_hwfn, enum dbg_grc_params grc_param) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; return dev_data->grc.param_val[grc_param]; } /* Initializes the GRC parameters */ static void qed_dbg_grc_init_params(struct qed_hwfn *p_hwfn) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; if (!dev_data->grc.params_initialized) { qed_dbg_grc_set_params_default(p_hwfn); dev_data->grc.params_initialized = 1; } } /* Sets pointer and size for the specified binary buffer type */ static void qed_set_dbg_bin_buf(struct qed_hwfn *p_hwfn, enum bin_dbg_buffer_type buf_type, const u32 *ptr, u32 size) { struct virt_mem_desc *buf = &p_hwfn->dbg_arrays[buf_type]; buf->ptr = (void *)ptr; buf->size = size; } /* Initializes debug data for the specified device */ static enum dbg_status qed_dbg_dev_init(struct qed_hwfn *p_hwfn) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u8 num_pfs = 0, max_pfs_per_port = 0; if (dev_data->initialized) return DBG_STATUS_OK; if (!s_app_ver) return DBG_STATUS_APP_VERSION_NOT_SET; /* Set chip */ if (QED_IS_K2(p_hwfn->cdev)) { dev_data->chip_id = CHIP_K2; dev_data->mode_enable[MODE_K2] = 1; dev_data->num_vfs = MAX_NUM_VFS_K2; num_pfs = MAX_NUM_PFS_K2; max_pfs_per_port = MAX_NUM_PFS_K2 / 2; } else if (QED_IS_BB_B0(p_hwfn->cdev)) { dev_data->chip_id = CHIP_BB; dev_data->mode_enable[MODE_BB] = 1; dev_data->num_vfs = MAX_NUM_VFS_BB; num_pfs = MAX_NUM_PFS_BB; max_pfs_per_port = MAX_NUM_PFS_BB; } else { return DBG_STATUS_UNKNOWN_CHIP; } /* Set HW type */ dev_data->hw_type = HW_TYPE_ASIC; dev_data->mode_enable[MODE_ASIC] = 1; /* Set port mode */ switch (p_hwfn->cdev->num_ports_in_engine) { case 1: dev_data->mode_enable[MODE_PORTS_PER_ENG_1] = 1; break; case 2: dev_data->mode_enable[MODE_PORTS_PER_ENG_2] = 1; break; case 4: dev_data->mode_enable[MODE_PORTS_PER_ENG_4] = 1; break; } /* Set 100G mode */ if (QED_IS_CMT(p_hwfn->cdev)) dev_data->mode_enable[MODE_100G] = 1; /* Set number of ports */ if (dev_data->mode_enable[MODE_PORTS_PER_ENG_1] || dev_data->mode_enable[MODE_100G]) dev_data->num_ports = 1; else if (dev_data->mode_enable[MODE_PORTS_PER_ENG_2]) dev_data->num_ports = 2; else if (dev_data->mode_enable[MODE_PORTS_PER_ENG_4]) dev_data->num_ports = 4; /* Set number of PFs per port */ dev_data->num_pfs_per_port = min_t(u32, num_pfs / dev_data->num_ports, max_pfs_per_port); /* Initializes the GRC parameters */ qed_dbg_grc_init_params(p_hwfn); dev_data->use_dmae = true; dev_data->initialized = 1; return DBG_STATUS_OK; } static const struct dbg_block *get_dbg_block(struct qed_hwfn *p_hwfn, enum block_id block_id) { const struct dbg_block *dbg_block; dbg_block = p_hwfn->dbg_arrays[BIN_BUF_DBG_BLOCKS].ptr; return dbg_block + block_id; } static const struct dbg_block_chip *qed_get_dbg_block_per_chip(struct qed_hwfn *p_hwfn, enum block_id block_id) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; return (const struct dbg_block_chip *) p_hwfn->dbg_arrays[BIN_BUF_DBG_BLOCKS_CHIP_DATA].ptr + block_id * MAX_CHIP_IDS + dev_data->chip_id; } static const struct dbg_reset_reg *qed_get_dbg_reset_reg(struct qed_hwfn *p_hwfn, u8 reset_reg_id) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; return (const struct dbg_reset_reg *) p_hwfn->dbg_arrays[BIN_BUF_DBG_RESET_REGS].ptr + reset_reg_id * MAX_CHIP_IDS + dev_data->chip_id; } /* Reads the FW info structure for the specified Storm from the chip, * and writes it to the specified fw_info pointer. */ static void qed_read_storm_fw_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u8 storm_id, struct fw_info *fw_info) { struct storm_defs *storm = &s_storm_defs[storm_id]; struct fw_info_location fw_info_location; u32 addr, i, size, *dest; memset(&fw_info_location, 0, sizeof(fw_info_location)); memset(fw_info, 0, sizeof(*fw_info)); /* Read first the address that points to fw_info location. * The address is located in the last line of the Storm RAM. */ addr = storm->sem_fast_mem_addr + SEM_FAST_REG_INT_RAM + DWORDS_TO_BYTES(SEM_FAST_REG_INT_RAM_SIZE) - sizeof(fw_info_location); dest = (u32 *)&fw_info_location; size = BYTES_TO_DWORDS(sizeof(fw_info_location)); for (i = 0; i < size; i++, addr += BYTES_IN_DWORD) dest[i] = qed_rd(p_hwfn, p_ptt, addr); /* Read FW version info from Storm RAM */ size = le32_to_cpu(fw_info_location.size); if (!size || size > sizeof(*fw_info)) return; addr = le32_to_cpu(fw_info_location.grc_addr); dest = (u32 *)fw_info; size = BYTES_TO_DWORDS(size); for (i = 0; i < size; i++, addr += BYTES_IN_DWORD) dest[i] = qed_rd(p_hwfn, p_ptt, addr); } /* Dumps the specified string to the specified buffer. * Returns the dumped size in bytes. */ static u32 qed_dump_str(char *dump_buf, bool dump, const char *str) { if (dump) strcpy(dump_buf, str); return (u32)strlen(str) + 1; } /* Dumps zeros to align the specified buffer to dwords. * Returns the dumped size in bytes. */ static u32 qed_dump_align(char *dump_buf, bool dump, u32 byte_offset) { u8 offset_in_dword, align_size; offset_in_dword = (u8)(byte_offset & 0x3); align_size = offset_in_dword ? BYTES_IN_DWORD - offset_in_dword : 0; if (dump && align_size) memset(dump_buf, 0, align_size); return align_size; } /* Writes the specified string param to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_str_param(u32 *dump_buf, bool dump, const char *param_name, const char *param_val) { char *char_buf = (char *)dump_buf; u32 offset = 0; /* Dump param name */ offset += qed_dump_str(char_buf + offset, dump, param_name); /* Indicate a string param value */ if (dump) *(char_buf + offset) = 1; offset++; /* Dump param value */ offset += qed_dump_str(char_buf + offset, dump, param_val); /* Align buffer to next dword */ offset += qed_dump_align(char_buf + offset, dump, offset); return BYTES_TO_DWORDS(offset); } /* Writes the specified numeric param to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_num_param(u32 *dump_buf, bool dump, const char *param_name, u32 param_val) { char *char_buf = (char *)dump_buf; u32 offset = 0; /* Dump param name */ offset += qed_dump_str(char_buf + offset, dump, param_name); /* Indicate a numeric param value */ if (dump) *(char_buf + offset) = 0; offset++; /* Align buffer to next dword */ offset += qed_dump_align(char_buf + offset, dump, offset); /* Dump param value (and change offset from bytes to dwords) */ offset = BYTES_TO_DWORDS(offset); if (dump) *(dump_buf + offset) = param_val; offset++; return offset; } /* Reads the FW version and writes it as a param to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_fw_ver_param(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { char fw_ver_str[16] = EMPTY_FW_VERSION_STR; char fw_img_str[16] = EMPTY_FW_IMAGE_STR; struct fw_info fw_info = { {0}, {0} }; u32 offset = 0; if (dump && !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_FW_VER)) { /* Read FW info from chip */ qed_read_fw_info(p_hwfn, p_ptt, &fw_info); /* Create FW version/image strings */ if (snprintf(fw_ver_str, sizeof(fw_ver_str), "%d_%d_%d_%d", fw_info.ver.num.major, fw_info.ver.num.minor, fw_info.ver.num.rev, fw_info.ver.num.eng) < 0) DP_NOTICE(p_hwfn, "Unexpected debug error: invalid FW version string\n"); switch (fw_info.ver.image_id) { case FW_IMG_KUKU: strcpy(fw_img_str, "kuku"); break; case FW_IMG_MAIN: strcpy(fw_img_str, "main"); break; case FW_IMG_L2B: strcpy(fw_img_str, "l2b"); break; default: strcpy(fw_img_str, "unknown"); break; } } /* Dump FW version, image and timestamp */ offset += qed_dump_str_param(dump_buf + offset, dump, "fw-version", fw_ver_str); offset += qed_dump_str_param(dump_buf + offset, dump, "fw-image", fw_img_str); offset += qed_dump_num_param(dump_buf + offset, dump, "fw-timestamp", le32_to_cpu(fw_info.ver.timestamp)); return offset; } /* Reads the MFW version and writes it as a param to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_mfw_ver_param(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { char mfw_ver_str[16] = EMPTY_FW_VERSION_STR; if (dump && !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_FW_VER)) { u32 global_section_offsize, global_section_addr, mfw_ver; u32 public_data_addr, global_section_offsize_addr; /* Find MCP public data GRC address. Needs to be ORed with * MCP_REG_SCRATCH due to a HW bug. */ public_data_addr = qed_rd(p_hwfn, p_ptt, MISC_REG_SHARED_MEM_ADDR) | MCP_REG_SCRATCH; /* Find MCP public global section offset */ global_section_offsize_addr = public_data_addr + offsetof(struct mcp_public_data, sections) + sizeof(offsize_t) * PUBLIC_GLOBAL; global_section_offsize = qed_rd(p_hwfn, p_ptt, global_section_offsize_addr); global_section_addr = MCP_REG_SCRATCH + (global_section_offsize & OFFSIZE_OFFSET_MASK) * 4; /* Read MFW version from MCP public global section */ mfw_ver = qed_rd(p_hwfn, p_ptt, global_section_addr + offsetof(struct public_global, mfw_ver)); /* Dump MFW version param */ if (snprintf(mfw_ver_str, sizeof(mfw_ver_str), "%d_%d_%d_%d", (u8)(mfw_ver >> 24), (u8)(mfw_ver >> 16), (u8)(mfw_ver >> 8), (u8)mfw_ver) < 0) DP_NOTICE(p_hwfn, "Unexpected debug error: invalid MFW version string\n"); } return qed_dump_str_param(dump_buf, dump, "mfw-version", mfw_ver_str); } /* Reads the chip revision from the chip and writes it as a param to the * specified buffer. Returns the dumped size in dwords. */ static u32 qed_dump_chip_revision_param(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; char param_str[3] = "??"; if (dev_data->hw_type == HW_TYPE_ASIC) { u32 chip_rev, chip_metal; chip_rev = qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_REV); chip_metal = qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_METAL); param_str[0] = 'a' + (u8)chip_rev; param_str[1] = '0' + (u8)chip_metal; } return qed_dump_str_param(dump_buf, dump, "chip-revision", param_str); } /* Writes a section header to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_section_hdr(u32 *dump_buf, bool dump, const char *name, u32 num_params) { return qed_dump_num_param(dump_buf, dump, name, num_params); } /* Writes the common global params to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_dump_common_global_params(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u8 num_specific_global_params) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 offset = 0; u8 num_params; /* Dump global params section header */ num_params = NUM_COMMON_GLOBAL_PARAMS + num_specific_global_params + (dev_data->chip_id == CHIP_BB ? 1 : 0); offset += qed_dump_section_hdr(dump_buf + offset, dump, "global_params", num_params); /* Store params */ offset += qed_dump_fw_ver_param(p_hwfn, p_ptt, dump_buf + offset, dump); offset += qed_dump_mfw_ver_param(p_hwfn, p_ptt, dump_buf + offset, dump); offset += qed_dump_chip_revision_param(p_hwfn, p_ptt, dump_buf + offset, dump); offset += qed_dump_num_param(dump_buf + offset, dump, "tools-version", TOOLS_VERSION); offset += qed_dump_str_param(dump_buf + offset, dump, "chip", s_chip_defs[dev_data->chip_id].name); offset += qed_dump_str_param(dump_buf + offset, dump, "platform", s_hw_type_defs[dev_data->hw_type].name); offset += qed_dump_num_param(dump_buf + offset, dump, "pci-func", p_hwfn->abs_pf_id); offset += qed_dump_num_param(dump_buf + offset, dump, "epoch", qed_get_epoch_time()); if (dev_data->chip_id == CHIP_BB) offset += qed_dump_num_param(dump_buf + offset, dump, "path", QED_PATH_ID(p_hwfn)); return offset; } /* Writes the "last" section (including CRC) to the specified buffer at the * given offset. Returns the dumped size in dwords. */ static u32 qed_dump_last_section(u32 *dump_buf, u32 offset, bool dump) { u32 start_offset = offset; /* Dump CRC section header */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "last", 0); /* Calculate CRC32 and add it to the dword after the "last" section */ if (dump) *(dump_buf + offset) = ~crc32(0xffffffff, (u8 *)dump_buf, DWORDS_TO_BYTES(offset)); offset++; return offset - start_offset; } /* Update blocks reset state */ static void qed_update_blocks_reset_state(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 reg_val[NUM_DBG_RESET_REGS] = { 0 }; u8 rst_reg_id; u32 blk_id; /* Read reset registers */ for (rst_reg_id = 0; rst_reg_id < NUM_DBG_RESET_REGS; rst_reg_id++) { const struct dbg_reset_reg *rst_reg; bool rst_reg_removed; u32 rst_reg_addr; rst_reg = qed_get_dbg_reset_reg(p_hwfn, rst_reg_id); rst_reg_removed = GET_FIELD(rst_reg->data, DBG_RESET_REG_IS_REMOVED); rst_reg_addr = DWORDS_TO_BYTES(GET_FIELD(rst_reg->data, DBG_RESET_REG_ADDR)); if (!rst_reg_removed) reg_val[rst_reg_id] = qed_rd(p_hwfn, p_ptt, rst_reg_addr); } /* Check if blocks are in reset */ for (blk_id = 0; blk_id < NUM_PHYS_BLOCKS; blk_id++) { const struct dbg_block_chip *blk; bool has_rst_reg; bool is_removed; blk = qed_get_dbg_block_per_chip(p_hwfn, (enum block_id)blk_id); is_removed = GET_FIELD(blk->flags, DBG_BLOCK_CHIP_IS_REMOVED); has_rst_reg = GET_FIELD(blk->flags, DBG_BLOCK_CHIP_HAS_RESET_REG); if (!is_removed && has_rst_reg) dev_data->block_in_reset[blk_id] = !(reg_val[blk->reset_reg_id] & BIT(blk->reset_reg_bit_offset)); } } /* is_mode_match recursive function */ static bool qed_is_mode_match_rec(struct qed_hwfn *p_hwfn, u16 *modes_buf_offset, u8 rec_depth) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u8 *dbg_array; bool arg1, arg2; u8 tree_val; if (rec_depth > MAX_RECURSION_DEPTH) { DP_NOTICE(p_hwfn, "Unexpected error: is_mode_match_rec exceeded the max recursion depth. This is probably due to a corrupt init/debug buffer.\n"); return false; } /* Get next element from modes tree buffer */ dbg_array = p_hwfn->dbg_arrays[BIN_BUF_DBG_MODE_TREE].ptr; tree_val = dbg_array[(*modes_buf_offset)++]; switch (tree_val) { case INIT_MODE_OP_NOT: return !qed_is_mode_match_rec(p_hwfn, modes_buf_offset, rec_depth + 1); case INIT_MODE_OP_OR: case INIT_MODE_OP_AND: arg1 = qed_is_mode_match_rec(p_hwfn, modes_buf_offset, rec_depth + 1); arg2 = qed_is_mode_match_rec(p_hwfn, modes_buf_offset, rec_depth + 1); return (tree_val == INIT_MODE_OP_OR) ? (arg1 || arg2) : (arg1 && arg2); default: return dev_data->mode_enable[tree_val - MAX_INIT_MODE_OPS] > 0; } } /* Returns true if the mode (specified using modes_buf_offset) is enabled */ static bool qed_is_mode_match(struct qed_hwfn *p_hwfn, u16 *modes_buf_offset) { return qed_is_mode_match_rec(p_hwfn, modes_buf_offset, 0); } /* Enable / disable the Debug block */ static void qed_bus_enable_dbg_block(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, bool enable) { qed_wr(p_hwfn, p_ptt, DBG_REG_DBG_BLOCK_ON, enable ? 1 : 0); } /* Resets the Debug block */ static void qed_bus_reset_dbg_block(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt) { u32 reset_reg_addr, old_reset_reg_val, new_reset_reg_val; const struct dbg_reset_reg *reset_reg; const struct dbg_block_chip *block; block = qed_get_dbg_block_per_chip(p_hwfn, BLOCK_DBG); reset_reg = qed_get_dbg_reset_reg(p_hwfn, block->reset_reg_id); reset_reg_addr = DWORDS_TO_BYTES(GET_FIELD(reset_reg->data, DBG_RESET_REG_ADDR)); old_reset_reg_val = qed_rd(p_hwfn, p_ptt, reset_reg_addr); new_reset_reg_val = old_reset_reg_val & ~BIT(block->reset_reg_bit_offset); qed_wr(p_hwfn, p_ptt, reset_reg_addr, new_reset_reg_val); qed_wr(p_hwfn, p_ptt, reset_reg_addr, old_reset_reg_val); } /* Enable / disable Debug Bus clients according to the specified mask * (1 = enable, 0 = disable). */ static void qed_bus_enable_clients(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 client_mask) { qed_wr(p_hwfn, p_ptt, DBG_REG_CLIENT_ENABLE, client_mask); } static void qed_bus_config_dbg_line(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, enum block_id block_id, u8 line_id, u8 enable_mask, u8 right_shift, u8 force_valid_mask, u8 force_frame_mask) { const struct dbg_block_chip *block = qed_get_dbg_block_per_chip(p_hwfn, block_id); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(block->dbg_select_reg_addr), line_id); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(block->dbg_dword_enable_reg_addr), enable_mask); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(block->dbg_shift_reg_addr), right_shift); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(block->dbg_force_valid_reg_addr), force_valid_mask); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(block->dbg_force_frame_reg_addr), force_frame_mask); } /* Disable debug bus in all blocks */ static void qed_bus_disable_blocks(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 block_id; /* Disable all blocks */ for (block_id = 0; block_id < MAX_BLOCK_ID; block_id++) { const struct dbg_block_chip *block_per_chip = qed_get_dbg_block_per_chip(p_hwfn, (enum block_id)block_id); if (GET_FIELD(block_per_chip->flags, DBG_BLOCK_CHIP_IS_REMOVED) || dev_data->block_in_reset[block_id]) continue; /* Disable debug bus */ if (GET_FIELD(block_per_chip->flags, DBG_BLOCK_CHIP_HAS_DBG_BUS)) { u32 dbg_en_addr = block_per_chip->dbg_dword_enable_reg_addr; u16 modes_buf_offset = GET_FIELD(block_per_chip->dbg_bus_mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); bool eval_mode = GET_FIELD(block_per_chip->dbg_bus_mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; if (!eval_mode || qed_is_mode_match(p_hwfn, &modes_buf_offset)) qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(dbg_en_addr), 0); } } } /* Returns true if the specified entity (indicated by GRC param) should be * included in the dump, false otherwise. */ static bool qed_grc_is_included(struct qed_hwfn *p_hwfn, enum dbg_grc_params grc_param) { return qed_grc_get_param(p_hwfn, grc_param) > 0; } /* Returns the storm_id that matches the specified Storm letter, * or MAX_DBG_STORMS if invalid storm letter. */ static enum dbg_storms qed_get_id_from_letter(char storm_letter) { u8 storm_id; for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) if (s_storm_defs[storm_id].letter == storm_letter) return (enum dbg_storms)storm_id; return MAX_DBG_STORMS; } /* Returns true of the specified Storm should be included in the dump, false * otherwise. */ static bool qed_grc_is_storm_included(struct qed_hwfn *p_hwfn, enum dbg_storms storm) { return qed_grc_get_param(p_hwfn, (enum dbg_grc_params)storm) > 0; } /* Returns true if the specified memory should be included in the dump, false * otherwise. */ static bool qed_grc_is_mem_included(struct qed_hwfn *p_hwfn, enum block_id block_id, u8 mem_group_id) { const struct dbg_block *block; u8 i; block = get_dbg_block(p_hwfn, block_id); /* If the block is associated with a Storm, check Storm match */ if (block->associated_storm_letter) { enum dbg_storms associated_storm_id = qed_get_id_from_letter(block->associated_storm_letter); if (associated_storm_id == MAX_DBG_STORMS || !qed_grc_is_storm_included(p_hwfn, associated_storm_id)) return false; } for (i = 0; i < NUM_BIG_RAM_TYPES; i++) { struct big_ram_defs *big_ram = &s_big_ram_defs[i]; if (mem_group_id == big_ram->mem_group_id || mem_group_id == big_ram->ram_mem_group_id) return qed_grc_is_included(p_hwfn, big_ram->grc_param); } switch (mem_group_id) { case MEM_GROUP_PXP_ILT: case MEM_GROUP_PXP_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_PXP); case MEM_GROUP_RAM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_RAM); case MEM_GROUP_PBUF: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_PBUF); case MEM_GROUP_CAU_MEM: case MEM_GROUP_CAU_SB: case MEM_GROUP_CAU_PI: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CAU); case MEM_GROUP_CAU_MEM_EXT: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CAU_EXT); case MEM_GROUP_QM_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_QM); case MEM_GROUP_CFC_MEM: case MEM_GROUP_CONN_CFC_MEM: case MEM_GROUP_TASK_CFC_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CFC) || qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CM_CTX); case MEM_GROUP_DORQ_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_DORQ); case MEM_GROUP_IGU_MEM: case MEM_GROUP_IGU_MSIX: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_IGU); case MEM_GROUP_MULD_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_MULD); case MEM_GROUP_PRS_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_PRS); case MEM_GROUP_DMAE_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_DMAE); case MEM_GROUP_TM_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_TM); case MEM_GROUP_SDM_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_SDM); case MEM_GROUP_TDIF_CTX: case MEM_GROUP_RDIF_CTX: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_DIF); case MEM_GROUP_CM_MEM: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CM); case MEM_GROUP_IOR: return qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_IOR); default: return true; } } /* Stalls all Storms */ static void qed_grc_stall_storms(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, bool stall) { u32 reg_addr; u8 storm_id; for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) { if (!qed_grc_is_storm_included(p_hwfn, (enum dbg_storms)storm_id)) continue; reg_addr = s_storm_defs[storm_id].sem_fast_mem_addr + SEM_FAST_REG_STALL_0; qed_wr(p_hwfn, p_ptt, reg_addr, stall ? 1 : 0); } msleep(STALL_DELAY_MS); } /* Takes all blocks out of reset. If rbc_only is true, only RBC clients are * taken out of reset. */ static void qed_grc_unreset_blocks(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, bool rbc_only) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u8 chip_id = dev_data->chip_id; u32 i; /* Take RBCs out of reset */ for (i = 0; i < ARRAY_SIZE(s_rbc_reset_defs); i++) if (s_rbc_reset_defs[i].reset_val[dev_data->chip_id]) qed_wr(p_hwfn, p_ptt, s_rbc_reset_defs[i].reset_reg_addr + RESET_REG_UNRESET_OFFSET, s_rbc_reset_defs[i].reset_val[chip_id]); if (!rbc_only) { u32 reg_val[NUM_DBG_RESET_REGS] = { 0 }; u8 reset_reg_id; u32 block_id; /* Fill reset regs values */ for (block_id = 0; block_id < NUM_PHYS_BLOCKS; block_id++) { bool is_removed, has_reset_reg, unreset_before_dump; const struct dbg_block_chip *block; block = qed_get_dbg_block_per_chip(p_hwfn, (enum block_id) block_id); is_removed = GET_FIELD(block->flags, DBG_BLOCK_CHIP_IS_REMOVED); has_reset_reg = GET_FIELD(block->flags, DBG_BLOCK_CHIP_HAS_RESET_REG); unreset_before_dump = GET_FIELD(block->flags, DBG_BLOCK_CHIP_UNRESET_BEFORE_DUMP); if (!is_removed && has_reset_reg && unreset_before_dump) reg_val[block->reset_reg_id] |= BIT(block->reset_reg_bit_offset); } /* Write reset registers */ for (reset_reg_id = 0; reset_reg_id < NUM_DBG_RESET_REGS; reset_reg_id++) { const struct dbg_reset_reg *reset_reg; u32 reset_reg_addr; reset_reg = qed_get_dbg_reset_reg(p_hwfn, reset_reg_id); if (GET_FIELD (reset_reg->data, DBG_RESET_REG_IS_REMOVED)) continue; if (reg_val[reset_reg_id]) { reset_reg_addr = GET_FIELD(reset_reg->data, DBG_RESET_REG_ADDR); qed_wr(p_hwfn, p_ptt, DWORDS_TO_BYTES(reset_reg_addr) + RESET_REG_UNRESET_OFFSET, reg_val[reset_reg_id]); } } } } /* Returns the attention block data of the specified block */ static const struct dbg_attn_block_type_data * qed_get_block_attn_data(struct qed_hwfn *p_hwfn, enum block_id block_id, enum dbg_attn_type attn_type) { const struct dbg_attn_block *base_attn_block_arr = (const struct dbg_attn_block *) p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_BLOCKS].ptr; return &base_attn_block_arr[block_id].per_type_data[attn_type]; } /* Returns the attention registers of the specified block */ static const struct dbg_attn_reg * qed_get_block_attn_regs(struct qed_hwfn *p_hwfn, enum block_id block_id, enum dbg_attn_type attn_type, u8 *num_attn_regs) { const struct dbg_attn_block_type_data *block_type_data = qed_get_block_attn_data(p_hwfn, block_id, attn_type); *num_attn_regs = block_type_data->num_regs; return (const struct dbg_attn_reg *) p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_REGS].ptr + block_type_data->regs_offset; } /* For each block, clear the status of all parities */ static void qed_grc_clear_all_prty(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; const struct dbg_attn_reg *attn_reg_arr; u32 block_id, sts_clr_address; u8 reg_idx, num_attn_regs; for (block_id = 0; block_id < NUM_PHYS_BLOCKS; block_id++) { if (dev_data->block_in_reset[block_id]) continue; attn_reg_arr = qed_get_block_attn_regs(p_hwfn, (enum block_id)block_id, ATTN_TYPE_PARITY, &num_attn_regs); for (reg_idx = 0; reg_idx < num_attn_regs; reg_idx++) { const struct dbg_attn_reg *reg_data = &attn_reg_arr[reg_idx]; u16 modes_buf_offset; bool eval_mode; /* Check mode */ eval_mode = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; modes_buf_offset = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); sts_clr_address = reg_data->sts_clr_address; /* If Mode match: clear parity status */ if (!eval_mode || qed_is_mode_match(p_hwfn, &modes_buf_offset)) qed_rd(p_hwfn, p_ptt, DWORDS_TO_BYTES(sts_clr_address)); } } } /* Finds the meta data image in NVRAM */ static enum dbg_status qed_find_nvram_image(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 image_type, u32 *nvram_offset_bytes, u32 *nvram_size_bytes, bool b_can_sleep) { u32 ret_mcp_resp, ret_mcp_param, ret_txn_size; struct mcp_file_att file_att; int nvm_result; /* Call NVRAM get file command */ nvm_result = qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt, DRV_MSG_CODE_NVM_GET_FILE_ATT, image_type, &ret_mcp_resp, &ret_mcp_param, &ret_txn_size, (u32 *)&file_att, b_can_sleep); /* Check response */ if (nvm_result || (ret_mcp_resp & FW_MSG_CODE_MASK) != FW_MSG_CODE_NVM_OK) return DBG_STATUS_NVRAM_GET_IMAGE_FAILED; /* Update return values */ *nvram_offset_bytes = file_att.nvm_start_addr; *nvram_size_bytes = file_att.len; DP_VERBOSE(p_hwfn, QED_MSG_DEBUG, "find_nvram_image: found NVRAM image of type %d in NVRAM offset %d bytes with size %d bytes\n", image_type, *nvram_offset_bytes, *nvram_size_bytes); /* Check alignment */ if (*nvram_size_bytes & 0x3) return DBG_STATUS_NON_ALIGNED_NVRAM_IMAGE; return DBG_STATUS_OK; } /* Reads data from NVRAM */ static enum dbg_status qed_nvram_read(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 nvram_offset_bytes, u32 nvram_size_bytes, u32 *ret_buf, bool b_can_sleep) { u32 ret_mcp_resp, ret_mcp_param, ret_read_size, bytes_to_copy; s32 bytes_left = nvram_size_bytes; u32 read_offset = 0, param = 0; DP_VERBOSE(p_hwfn, QED_MSG_DEBUG, "nvram_read: reading image of size %d bytes from NVRAM\n", nvram_size_bytes); do { bytes_to_copy = (bytes_left > MCP_DRV_NVM_BUF_LEN) ? MCP_DRV_NVM_BUF_LEN : bytes_left; /* Call NVRAM read command */ SET_MFW_FIELD(param, DRV_MB_PARAM_NVM_OFFSET, nvram_offset_bytes + read_offset); SET_MFW_FIELD(param, DRV_MB_PARAM_NVM_LEN, bytes_to_copy); if (qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt, DRV_MSG_CODE_NVM_READ_NVRAM, param, &ret_mcp_resp, &ret_mcp_param, &ret_read_size, (u32 *)((u8 *)ret_buf + read_offset), b_can_sleep)) return DBG_STATUS_NVRAM_READ_FAILED; /* Check response */ if ((ret_mcp_resp & FW_MSG_CODE_MASK) != FW_MSG_CODE_NVM_OK) return DBG_STATUS_NVRAM_READ_FAILED; /* Update read offset */ read_offset += ret_read_size; bytes_left -= ret_read_size; } while (bytes_left > 0); return DBG_STATUS_OK; } /* Dumps GRC registers section header. Returns the dumped size in dwords. * the following parameters are dumped: * - count: no. of dumped entries * - split_type: split type * - split_id: split ID (dumped only if split_id != SPLIT_TYPE_NONE) * - reg_type_name: register type name (dumped only if reg_type_name != NULL) */ static u32 qed_grc_dump_regs_hdr(u32 *dump_buf, bool dump, u32 num_reg_entries, enum init_split_types split_type, u8 split_id, const char *reg_type_name) { u8 num_params = 2 + (split_type != SPLIT_TYPE_NONE ? 1 : 0) + (reg_type_name ? 1 : 0); u32 offset = 0; offset += qed_dump_section_hdr(dump_buf + offset, dump, "grc_regs", num_params); offset += qed_dump_num_param(dump_buf + offset, dump, "count", num_reg_entries); offset += qed_dump_str_param(dump_buf + offset, dump, "split", s_split_type_defs[split_type].name); if (split_type != SPLIT_TYPE_NONE) offset += qed_dump_num_param(dump_buf + offset, dump, "id", split_id); if (reg_type_name) offset += qed_dump_str_param(dump_buf + offset, dump, "type", reg_type_name); return offset; } /* Reads the specified registers into the specified buffer. * The addr and len arguments are specified in dwords. */ void qed_read_regs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf, u32 addr, u32 len) { u32 i; for (i = 0; i < len; i++) buf[i] = qed_rd(p_hwfn, p_ptt, DWORDS_TO_BYTES(addr + i)); } /* Dumps the GRC registers in the specified address range. * Returns the dumped size in dwords. * The addr and len arguments are specified in dwords. */ static u32 qed_grc_dump_addr_range(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 addr, u32 len, bool wide_bus, enum init_split_types split_type, u8 split_id) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u8 port_id = 0, pf_id = 0, vf_id = 0; bool read_using_dmae = false; u32 thresh; u16 fid; if (!dump) return len; switch (split_type) { case SPLIT_TYPE_PORT: port_id = split_id; break; case SPLIT_TYPE_PF: pf_id = split_id; break; case SPLIT_TYPE_PORT_PF: port_id = split_id / dev_data->num_pfs_per_port; pf_id = port_id + dev_data->num_ports * (split_id % dev_data->num_pfs_per_port); break; case SPLIT_TYPE_VF: vf_id = split_id; break; default: break; } /* Try reading using DMAE */ if (dev_data->use_dmae && split_type != SPLIT_TYPE_VF && (len >= s_hw_type_defs[dev_data->hw_type].dmae_thresh || (PROTECT_WIDE_BUS && wide_bus))) { struct qed_dmae_params dmae_params; /* Set DMAE params */ memset(&dmae_params, 0, sizeof(dmae_params)); SET_FIELD(dmae_params.flags, QED_DMAE_PARAMS_COMPLETION_DST, 1); switch (split_type) { case SPLIT_TYPE_PORT: SET_FIELD(dmae_params.flags, QED_DMAE_PARAMS_PORT_VALID, 1); dmae_params.port_id = port_id; break; case SPLIT_TYPE_PF: SET_FIELD(dmae_params.flags, QED_DMAE_PARAMS_SRC_PF_VALID, 1); dmae_params.src_pfid = pf_id; break; case SPLIT_TYPE_PORT_PF: SET_FIELD(dmae_params.flags, QED_DMAE_PARAMS_PORT_VALID, 1); SET_FIELD(dmae_params.flags, QED_DMAE_PARAMS_SRC_PF_VALID, 1); dmae_params.port_id = port_id; dmae_params.src_pfid = pf_id; break; default: break; } /* Execute DMAE command */ read_using_dmae = !qed_dmae_grc2host(p_hwfn, p_ptt, DWORDS_TO_BYTES(addr), (u64)(uintptr_t)(dump_buf), len, &dmae_params); if (!read_using_dmae) { dev_data->use_dmae = 0; DP_VERBOSE(p_hwfn, QED_MSG_DEBUG, "Failed reading from chip using DMAE, using GRC instead\n"); } } if (read_using_dmae) goto print_log; /* If not read using DMAE, read using GRC */ /* Set pretend */ if (split_type != dev_data->pretend.split_type || split_id != dev_data->pretend.split_id) { switch (split_type) { case SPLIT_TYPE_PORT: qed_port_pretend(p_hwfn, p_ptt, port_id); break; case SPLIT_TYPE_PF: fid = FIELD_VALUE(PXP_PRETEND_CONCRETE_FID_PFID, pf_id); qed_fid_pretend(p_hwfn, p_ptt, fid); break; case SPLIT_TYPE_PORT_PF: fid = FIELD_VALUE(PXP_PRETEND_CONCRETE_FID_PFID, pf_id); qed_port_fid_pretend(p_hwfn, p_ptt, port_id, fid); break; case SPLIT_TYPE_VF: fid = FIELD_VALUE(PXP_PRETEND_CONCRETE_FID_VFVALID, 1) | FIELD_VALUE(PXP_PRETEND_CONCRETE_FID_VFID, vf_id); qed_fid_pretend(p_hwfn, p_ptt, fid); break; default: break; } dev_data->pretend.split_type = (u8)split_type; dev_data->pretend.split_id = split_id; } /* Read registers using GRC */ qed_read_regs(p_hwfn, p_ptt, dump_buf, addr, len); print_log: /* Print log */ dev_data->num_regs_read += len; thresh = s_hw_type_defs[dev_data->hw_type].log_thresh; if ((dev_data->num_regs_read / thresh) > ((dev_data->num_regs_read - len) / thresh)) DP_VERBOSE(p_hwfn, QED_MSG_DEBUG, "Dumped %d registers...\n", dev_data->num_regs_read); return len; } /* Dumps GRC registers sequence header. Returns the dumped size in dwords. * The addr and len arguments are specified in dwords. */ static u32 qed_grc_dump_reg_entry_hdr(u32 *dump_buf, bool dump, u32 addr, u32 len) { if (dump) *dump_buf = addr | (len << REG_DUMP_LEN_SHIFT); return 1; } /* Dumps GRC registers sequence. Returns the dumped size in dwords. * The addr and len arguments are specified in dwords. */ static u32 qed_grc_dump_reg_entry(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 addr, u32 len, bool wide_bus, enum init_split_types split_type, u8 split_id) { u32 offset = 0; offset += qed_grc_dump_reg_entry_hdr(dump_buf, dump, addr, len); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, len, wide_bus, split_type, split_id); return offset; } /* Dumps GRC registers sequence with skip cycle. * Returns the dumped size in dwords. * - addr: start GRC address in dwords * - total_len: total no. of dwords to dump * - read_len: no. consecutive dwords to read * - skip_len: no. of dwords to skip (and fill with zeros) */ static u32 qed_grc_dump_reg_entry_skip(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 addr, u32 total_len, u32 read_len, u32 skip_len) { u32 offset = 0, reg_offset = 0; offset += qed_grc_dump_reg_entry_hdr(dump_buf, dump, addr, total_len); if (!dump) return offset + total_len; while (reg_offset < total_len) { u32 curr_len = min_t(u32, read_len, total_len - reg_offset); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, curr_len, false, SPLIT_TYPE_NONE, 0); reg_offset += curr_len; addr += curr_len; if (reg_offset < total_len) { curr_len = min_t(u32, skip_len, total_len - skip_len); memset(dump_buf + offset, 0, DWORDS_TO_BYTES(curr_len)); offset += curr_len; reg_offset += curr_len; addr += curr_len; } } return offset; } /* Dumps GRC registers entries. Returns the dumped size in dwords. */ static u32 qed_grc_dump_regs_entries(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct virt_mem_desc input_regs_arr, u32 *dump_buf, bool dump, enum init_split_types split_type, u8 split_id, bool block_enable[MAX_BLOCK_ID], u32 *num_dumped_reg_entries) { u32 i, offset = 0, input_offset = 0; bool mode_match = true; *num_dumped_reg_entries = 0; while (input_offset < BYTES_TO_DWORDS(input_regs_arr.size)) { const struct dbg_dump_cond_hdr *cond_hdr = (const struct dbg_dump_cond_hdr *) input_regs_arr.ptr + input_offset++; u16 modes_buf_offset; bool eval_mode; /* Check mode/block */ eval_mode = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; if (eval_mode) { modes_buf_offset = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); mode_match = qed_is_mode_match(p_hwfn, &modes_buf_offset); } if (!mode_match || !block_enable[cond_hdr->block_id]) { input_offset += cond_hdr->data_size; continue; } for (i = 0; i < cond_hdr->data_size; i++, input_offset++) { const struct dbg_dump_reg *reg = (const struct dbg_dump_reg *) input_regs_arr.ptr + input_offset; u32 addr, len; bool wide_bus; addr = GET_FIELD(reg->data, DBG_DUMP_REG_ADDRESS); len = GET_FIELD(reg->data, DBG_DUMP_REG_LENGTH); wide_bus = GET_FIELD(reg->data, DBG_DUMP_REG_WIDE_BUS); offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, addr, len, wide_bus, split_type, split_id); (*num_dumped_reg_entries)++; } } return offset; } /* Dumps GRC registers entries. Returns the dumped size in dwords. */ static u32 qed_grc_dump_split_data(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct virt_mem_desc input_regs_arr, u32 *dump_buf, bool dump, bool block_enable[MAX_BLOCK_ID], enum init_split_types split_type, u8 split_id, const char *reg_type_name) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; enum init_split_types hdr_split_type = split_type; u32 num_dumped_reg_entries, offset; u8 hdr_split_id = split_id; /* In PORT_PF split type, print a port split header */ if (split_type == SPLIT_TYPE_PORT_PF) { hdr_split_type = SPLIT_TYPE_PORT; hdr_split_id = split_id / dev_data->num_pfs_per_port; } /* Calculate register dump header size (and skip it for now) */ offset = qed_grc_dump_regs_hdr(dump_buf, false, 0, hdr_split_type, hdr_split_id, reg_type_name); /* Dump registers */ offset += qed_grc_dump_regs_entries(p_hwfn, p_ptt, input_regs_arr, dump_buf + offset, dump, split_type, split_id, block_enable, &num_dumped_reg_entries); /* Write register dump header */ if (dump && num_dumped_reg_entries > 0) qed_grc_dump_regs_hdr(dump_buf, dump, num_dumped_reg_entries, hdr_split_type, hdr_split_id, reg_type_name); return num_dumped_reg_entries > 0 ? offset : 0; } /* Dumps registers according to the input registers array. Returns the dumped * size in dwords. */ static u32 qed_grc_dump_registers(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, bool block_enable[MAX_BLOCK_ID], const char *reg_type_name) { struct virt_mem_desc *dbg_buf = &p_hwfn->dbg_arrays[BIN_BUF_DBG_DUMP_REG]; struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 offset = 0, input_offset = 0; while (input_offset < BYTES_TO_DWORDS(dbg_buf->size)) { const struct dbg_dump_split_hdr *split_hdr; struct virt_mem_desc curr_input_regs_arr; enum init_split_types split_type; u16 split_count = 0; u32 split_data_size; u8 split_id; split_hdr = (const struct dbg_dump_split_hdr *) dbg_buf->ptr + input_offset++; split_type = GET_FIELD(split_hdr->hdr, DBG_DUMP_SPLIT_HDR_SPLIT_TYPE_ID); split_data_size = GET_FIELD(split_hdr->hdr, DBG_DUMP_SPLIT_HDR_DATA_SIZE); curr_input_regs_arr.ptr = (u32 *)p_hwfn->dbg_arrays[BIN_BUF_DBG_DUMP_REG].ptr + input_offset; curr_input_regs_arr.size = DWORDS_TO_BYTES(split_data_size); switch (split_type) { case SPLIT_TYPE_NONE: split_count = 1; break; case SPLIT_TYPE_PORT: split_count = dev_data->num_ports; break; case SPLIT_TYPE_PF: case SPLIT_TYPE_PORT_PF: split_count = dev_data->num_ports * dev_data->num_pfs_per_port; break; case SPLIT_TYPE_VF: split_count = dev_data->num_vfs; break; default: return 0; } for (split_id = 0; split_id < split_count; split_id++) offset += qed_grc_dump_split_data(p_hwfn, p_ptt, curr_input_regs_arr, dump_buf + offset, dump, block_enable, split_type, split_id, reg_type_name); input_offset += split_data_size; } /* Cancel pretends (pretend to original PF) */ if (dump) { qed_fid_pretend(p_hwfn, p_ptt, FIELD_VALUE(PXP_PRETEND_CONCRETE_FID_PFID, p_hwfn->rel_pf_id)); dev_data->pretend.split_type = SPLIT_TYPE_NONE; dev_data->pretend.split_id = 0; } return offset; } /* Dump reset registers. Returns the dumped size in dwords. */ static u32 qed_grc_dump_reset_regs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u32 offset = 0, num_regs = 0; u8 reset_reg_id; /* Calculate header size */ offset += qed_grc_dump_regs_hdr(dump_buf, false, 0, SPLIT_TYPE_NONE, 0, "RESET_REGS"); /* Write reset registers */ for (reset_reg_id = 0; reset_reg_id < NUM_DBG_RESET_REGS; reset_reg_id++) { const struct dbg_reset_reg *reset_reg; u32 reset_reg_addr; reset_reg = qed_get_dbg_reset_reg(p_hwfn, reset_reg_id); if (GET_FIELD(reset_reg->data, DBG_RESET_REG_IS_REMOVED)) continue; reset_reg_addr = GET_FIELD(reset_reg->data, DBG_RESET_REG_ADDR); offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, reset_reg_addr, 1, false, SPLIT_TYPE_NONE, 0); num_regs++; } /* Write header */ if (dump) qed_grc_dump_regs_hdr(dump_buf, true, num_regs, SPLIT_TYPE_NONE, 0, "RESET_REGS"); return offset; } /* Dump registers that are modified during GRC Dump and therefore must be * dumped first. Returns the dumped size in dwords. */ static u32 qed_grc_dump_modified_regs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 block_id, offset = 0, stall_regs_offset; const struct dbg_attn_reg *attn_reg_arr; u8 storm_id, reg_idx, num_attn_regs; u32 num_reg_entries = 0; /* Write empty header for attention registers */ offset += qed_grc_dump_regs_hdr(dump_buf, false, 0, SPLIT_TYPE_NONE, 0, "ATTN_REGS"); /* Write parity registers */ for (block_id = 0; block_id < NUM_PHYS_BLOCKS; block_id++) { if (dev_data->block_in_reset[block_id] && dump) continue; attn_reg_arr = qed_get_block_attn_regs(p_hwfn, (enum block_id)block_id, ATTN_TYPE_PARITY, &num_attn_regs); for (reg_idx = 0; reg_idx < num_attn_regs; reg_idx++) { const struct dbg_attn_reg *reg_data = &attn_reg_arr[reg_idx]; u16 modes_buf_offset; bool eval_mode; u32 addr; /* Check mode */ eval_mode = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; modes_buf_offset = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); if (eval_mode && !qed_is_mode_match(p_hwfn, &modes_buf_offset)) continue; /* Mode match: read & dump registers */ addr = reg_data->mask_address; offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, addr, 1, false, SPLIT_TYPE_NONE, 0); addr = GET_FIELD(reg_data->data, DBG_ATTN_REG_STS_ADDRESS); offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, addr, 1, false, SPLIT_TYPE_NONE, 0); num_reg_entries += 2; } } /* Overwrite header for attention registers */ if (dump) qed_grc_dump_regs_hdr(dump_buf, true, num_reg_entries, SPLIT_TYPE_NONE, 0, "ATTN_REGS"); /* Write empty header for stall registers */ stall_regs_offset = offset; offset += qed_grc_dump_regs_hdr(dump_buf, false, 0, SPLIT_TYPE_NONE, 0, "REGS"); /* Write Storm stall status registers */ for (storm_id = 0, num_reg_entries = 0; storm_id < MAX_DBG_STORMS; storm_id++) { struct storm_defs *storm = &s_storm_defs[storm_id]; u32 addr; if (dev_data->block_in_reset[storm->sem_block_id] && dump) continue; addr = BYTES_TO_DWORDS(storm->sem_fast_mem_addr + SEM_FAST_REG_STALLED); offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, addr, 1, false, SPLIT_TYPE_NONE, 0); num_reg_entries++; } /* Overwrite header for stall registers */ if (dump) qed_grc_dump_regs_hdr(dump_buf + stall_regs_offset, true, num_reg_entries, SPLIT_TYPE_NONE, 0, "REGS"); return offset; } /* Dumps registers that can't be represented in the debug arrays */ static u32 qed_grc_dump_special_regs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u32 offset = 0, addr; offset += qed_grc_dump_regs_hdr(dump_buf, dump, 2, SPLIT_TYPE_NONE, 0, "REGS"); /* Dump R/TDIF_REG_DEBUG_ERROR_INFO_SIZE (every 8'th register should be * skipped). */ addr = BYTES_TO_DWORDS(RDIF_REG_DEBUG_ERROR_INFO); offset += qed_grc_dump_reg_entry_skip(p_hwfn, p_ptt, dump_buf + offset, dump, addr, RDIF_REG_DEBUG_ERROR_INFO_SIZE, 7, 1); addr = BYTES_TO_DWORDS(TDIF_REG_DEBUG_ERROR_INFO); offset += qed_grc_dump_reg_entry_skip(p_hwfn, p_ptt, dump_buf + offset, dump, addr, TDIF_REG_DEBUG_ERROR_INFO_SIZE, 7, 1); return offset; } /* Dumps a GRC memory header (section and params). Returns the dumped size in * dwords. The following parameters are dumped: * - name: dumped only if it's not NULL. * - addr: in dwords, dumped only if name is NULL. * - len: in dwords, always dumped. * - width: dumped if it's not zero. * - packed: dumped only if it's not false. * - mem_group: always dumped. * - is_storm: true only if the memory is related to a Storm. * - storm_letter: valid only if is_storm is true. * */ static u32 qed_grc_dump_mem_hdr(struct qed_hwfn *p_hwfn, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, u32 bit_width, bool packed, const char *mem_group, char storm_letter) { u8 num_params = 3; u32 offset = 0; char buf[64]; if (!len) DP_NOTICE(p_hwfn, "Unexpected GRC Dump error: dumped memory size must be non-zero\n"); if (bit_width) num_params++; if (packed) num_params++; /* Dump section header */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "grc_mem", num_params); if (name) { /* Dump name */ if (storm_letter) { strcpy(buf, "?STORM_"); buf[0] = storm_letter; strcpy(buf + strlen(buf), name); } else { strcpy(buf, name); } offset += qed_dump_str_param(dump_buf + offset, dump, "name", buf); } else { /* Dump address */ u32 addr_in_bytes = DWORDS_TO_BYTES(addr); offset += qed_dump_num_param(dump_buf + offset, dump, "addr", addr_in_bytes); } /* Dump len */ offset += qed_dump_num_param(dump_buf + offset, dump, "len", len); /* Dump bit width */ if (bit_width) offset += qed_dump_num_param(dump_buf + offset, dump, "width", bit_width); /* Dump packed */ if (packed) offset += qed_dump_num_param(dump_buf + offset, dump, "packed", 1); /* Dump reg type */ if (storm_letter) { strcpy(buf, "?STORM_"); buf[0] = storm_letter; strcpy(buf + strlen(buf), mem_group); } else { strcpy(buf, mem_group); } offset += qed_dump_str_param(dump_buf + offset, dump, "type", buf); return offset; } /* Dumps a single GRC memory. If name is NULL, the memory is stored by address. * Returns the dumped size in dwords. * The addr and len arguments are specified in dwords. */ static u32 qed_grc_dump_mem(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, bool wide_bus, u32 bit_width, bool packed, const char *mem_group, char storm_letter) { u32 offset = 0; offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, name, addr, len, bit_width, packed, mem_group, storm_letter); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, len, wide_bus, SPLIT_TYPE_NONE, 0); return offset; } /* Dumps GRC memories entries. Returns the dumped size in dwords. */ static u32 qed_grc_dump_mem_entries(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct virt_mem_desc input_mems_arr, u32 *dump_buf, bool dump) { u32 i, offset = 0, input_offset = 0; bool mode_match = true; while (input_offset < BYTES_TO_DWORDS(input_mems_arr.size)) { const struct dbg_dump_cond_hdr *cond_hdr; u16 modes_buf_offset; u32 num_entries; bool eval_mode; cond_hdr = (const struct dbg_dump_cond_hdr *)input_mems_arr.ptr + input_offset++; num_entries = cond_hdr->data_size / MEM_DUMP_ENTRY_SIZE_DWORDS; /* Check required mode */ eval_mode = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; if (eval_mode) { modes_buf_offset = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); mode_match = qed_is_mode_match(p_hwfn, &modes_buf_offset); } if (!mode_match) { input_offset += cond_hdr->data_size; continue; } for (i = 0; i < num_entries; i++, input_offset += MEM_DUMP_ENTRY_SIZE_DWORDS) { const struct dbg_dump_mem *mem = (const struct dbg_dump_mem *)((u32 *) input_mems_arr.ptr + input_offset); const struct dbg_block *block; char storm_letter = 0; u32 mem_addr, mem_len; bool mem_wide_bus; u8 mem_group_id; mem_group_id = GET_FIELD(mem->dword0, DBG_DUMP_MEM_MEM_GROUP_ID); if (mem_group_id >= MEM_GROUPS_NUM) { DP_NOTICE(p_hwfn, "Invalid mem_group_id\n"); return 0; } if (!qed_grc_is_mem_included(p_hwfn, (enum block_id) cond_hdr->block_id, mem_group_id)) continue; mem_addr = GET_FIELD(mem->dword0, DBG_DUMP_MEM_ADDRESS); mem_len = GET_FIELD(mem->dword1, DBG_DUMP_MEM_LENGTH); mem_wide_bus = GET_FIELD(mem->dword1, DBG_DUMP_MEM_WIDE_BUS); block = get_dbg_block(p_hwfn, cond_hdr->block_id); /* If memory is associated with Storm, * update storm details */ if (block->associated_storm_letter) storm_letter = block->associated_storm_letter; /* Dump memory */ offset += qed_grc_dump_mem(p_hwfn, p_ptt, dump_buf + offset, dump, NULL, mem_addr, mem_len, mem_wide_bus, 0, false, s_mem_group_names[mem_group_id], storm_letter); } } return offset; } /* Dumps GRC memories according to the input array dump_mem. * Returns the dumped size in dwords. */ static u32 qed_grc_dump_memories(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct virt_mem_desc *dbg_buf = &p_hwfn->dbg_arrays[BIN_BUF_DBG_DUMP_MEM]; u32 offset = 0, input_offset = 0; while (input_offset < BYTES_TO_DWORDS(dbg_buf->size)) { const struct dbg_dump_split_hdr *split_hdr; struct virt_mem_desc curr_input_mems_arr; enum init_split_types split_type; u32 split_data_size; split_hdr = (const struct dbg_dump_split_hdr *)dbg_buf->ptr + input_offset++; split_type = GET_FIELD(split_hdr->hdr, DBG_DUMP_SPLIT_HDR_SPLIT_TYPE_ID); split_data_size = GET_FIELD(split_hdr->hdr, DBG_DUMP_SPLIT_HDR_DATA_SIZE); curr_input_mems_arr.ptr = (u32 *)dbg_buf->ptr + input_offset; curr_input_mems_arr.size = DWORDS_TO_BYTES(split_data_size); if (split_type == SPLIT_TYPE_NONE) offset += qed_grc_dump_mem_entries(p_hwfn, p_ptt, curr_input_mems_arr, dump_buf + offset, dump); else DP_NOTICE(p_hwfn, "Dumping split memories is currently not supported\n"); input_offset += split_data_size; } return offset; } /* Dumps GRC context data for the specified Storm. * Returns the dumped size in dwords. * The lid_size argument is specified in quad-regs. */ static u32 qed_grc_dump_ctx_data(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, const char *name, u32 num_lids, enum cm_ctx_types ctx_type, u8 storm_id) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; struct storm_defs *storm = &s_storm_defs[storm_id]; u32 i, lid, lid_size, total_size; u32 rd_reg_addr, offset = 0; /* Convert quad-regs to dwords */ lid_size = storm->cm_ctx_lid_sizes[dev_data->chip_id][ctx_type] * 4; if (!lid_size) return 0; total_size = num_lids * lid_size; offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, name, 0, total_size, lid_size * 32, false, name, storm->letter); if (!dump) return offset + total_size; rd_reg_addr = BYTES_TO_DWORDS(storm->cm_ctx_rd_addr[ctx_type]); /* Dump context data */ for (lid = 0; lid < num_lids; lid++) { for (i = 0; i < lid_size; i++) { qed_wr(p_hwfn, p_ptt, storm->cm_ctx_wr_addr, (i << 9) | lid); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, rd_reg_addr, 1, false, SPLIT_TYPE_NONE, 0); } } return offset; } /* Dumps GRC contexts. Returns the dumped size in dwords. */ static u32 qed_grc_dump_ctx(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u32 offset = 0; u8 storm_id; for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) { if (!qed_grc_is_storm_included(p_hwfn, (enum dbg_storms)storm_id)) continue; /* Dump Conn AG context size */ offset += qed_grc_dump_ctx_data(p_hwfn, p_ptt, dump_buf + offset, dump, "CONN_AG_CTX", NUM_OF_LCIDS, CM_CTX_CONN_AG, storm_id); /* Dump Conn ST context size */ offset += qed_grc_dump_ctx_data(p_hwfn, p_ptt, dump_buf + offset, dump, "CONN_ST_CTX", NUM_OF_LCIDS, CM_CTX_CONN_ST, storm_id); /* Dump Task AG context size */ offset += qed_grc_dump_ctx_data(p_hwfn, p_ptt, dump_buf + offset, dump, "TASK_AG_CTX", NUM_OF_LTIDS, CM_CTX_TASK_AG, storm_id); /* Dump Task ST context size */ offset += qed_grc_dump_ctx_data(p_hwfn, p_ptt, dump_buf + offset, dump, "TASK_ST_CTX", NUM_OF_LTIDS, CM_CTX_TASK_ST, storm_id); } return offset; } #define VFC_STATUS_RESP_READY_BIT 0 #define VFC_STATUS_BUSY_BIT 1 #define VFC_STATUS_SENDING_CMD_BIT 2 #define VFC_POLLING_DELAY_MS 1 #define VFC_POLLING_COUNT 20 /* Reads data from VFC. Returns the number of dwords read (0 on error). * Sizes are specified in dwords. */ static u32 qed_grc_dump_read_from_vfc(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct storm_defs *storm, u32 *cmd_data, u32 cmd_size, u32 *addr_data, u32 addr_size, u32 resp_size, u32 *dump_buf) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 vfc_status, polling_ms, polling_count = 0, i; u32 reg_addr, sem_base; bool is_ready = false; sem_base = storm->sem_fast_mem_addr; polling_ms = VFC_POLLING_DELAY_MS * s_hw_type_defs[dev_data->hw_type].delay_factor; /* Write VFC command */ ARR_REG_WR(p_hwfn, p_ptt, sem_base + SEM_FAST_REG_VFC_DATA_WR, cmd_data, cmd_size); /* Write VFC address */ ARR_REG_WR(p_hwfn, p_ptt, sem_base + SEM_FAST_REG_VFC_ADDR, addr_data, addr_size); /* Read response */ for (i = 0; i < resp_size; i++) { /* Poll until ready */ do { reg_addr = sem_base + SEM_FAST_REG_VFC_STATUS; qed_grc_dump_addr_range(p_hwfn, p_ptt, &vfc_status, true, BYTES_TO_DWORDS(reg_addr), 1, false, SPLIT_TYPE_NONE, 0); is_ready = vfc_status & BIT(VFC_STATUS_RESP_READY_BIT); if (!is_ready) { if (polling_count++ == VFC_POLLING_COUNT) return 0; msleep(polling_ms); } } while (!is_ready); reg_addr = sem_base + SEM_FAST_REG_VFC_DATA_RD; qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + i, true, BYTES_TO_DWORDS(reg_addr), 1, false, SPLIT_TYPE_NONE, 0); } return resp_size; } /* Dump VFC CAM. Returns the dumped size in dwords. */ static u32 qed_grc_dump_vfc_cam(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u8 storm_id) { u32 total_size = VFC_CAM_NUM_ROWS * VFC_CAM_RESP_DWORDS; struct storm_defs *storm = &s_storm_defs[storm_id]; u32 cam_addr[VFC_CAM_ADDR_DWORDS] = { 0 }; u32 cam_cmd[VFC_CAM_CMD_DWORDS] = { 0 }; u32 row, offset = 0; offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, "vfc_cam", 0, total_size, 256, false, "vfc_cam", storm->letter); if (!dump) return offset + total_size; /* Prepare CAM address */ SET_VAR_FIELD(cam_addr, VFC_CAM_ADDR, OP, VFC_OPCODE_CAM_RD); /* Read VFC CAM data */ for (row = 0; row < VFC_CAM_NUM_ROWS; row++) { SET_VAR_FIELD(cam_cmd, VFC_CAM_CMD, ROW, row); offset += qed_grc_dump_read_from_vfc(p_hwfn, p_ptt, storm, cam_cmd, VFC_CAM_CMD_DWORDS, cam_addr, VFC_CAM_ADDR_DWORDS, VFC_CAM_RESP_DWORDS, dump_buf + offset); } return offset; } /* Dump VFC RAM. Returns the dumped size in dwords. */ static u32 qed_grc_dump_vfc_ram(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u8 storm_id, struct vfc_ram_defs *ram_defs) { u32 total_size = ram_defs->num_rows * VFC_RAM_RESP_DWORDS; struct storm_defs *storm = &s_storm_defs[storm_id]; u32 ram_addr[VFC_RAM_ADDR_DWORDS] = { 0 }; u32 ram_cmd[VFC_RAM_CMD_DWORDS] = { 0 }; u32 row, offset = 0; offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, ram_defs->mem_name, 0, total_size, 256, false, ram_defs->type_name, storm->letter); if (!dump) return offset + total_size; /* Prepare RAM address */ SET_VAR_FIELD(ram_addr, VFC_RAM_ADDR, OP, VFC_OPCODE_RAM_RD); /* Read VFC RAM data */ for (row = ram_defs->base_row; row < ram_defs->base_row + ram_defs->num_rows; row++) { SET_VAR_FIELD(ram_addr, VFC_RAM_ADDR, ROW, row); offset += qed_grc_dump_read_from_vfc(p_hwfn, p_ptt, storm, ram_cmd, VFC_RAM_CMD_DWORDS, ram_addr, VFC_RAM_ADDR_DWORDS, VFC_RAM_RESP_DWORDS, dump_buf + offset); } return offset; } /* Dumps GRC VFC data. Returns the dumped size in dwords. */ static u32 qed_grc_dump_vfc(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u8 storm_id, i; u32 offset = 0; for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) { if (!qed_grc_is_storm_included(p_hwfn, (enum dbg_storms)storm_id) || !s_storm_defs[storm_id].has_vfc) continue; /* Read CAM */ offset += qed_grc_dump_vfc_cam(p_hwfn, p_ptt, dump_buf + offset, dump, storm_id); /* Read RAM */ for (i = 0; i < NUM_VFC_RAM_TYPES; i++) offset += qed_grc_dump_vfc_ram(p_hwfn, p_ptt, dump_buf + offset, dump, storm_id, &s_vfc_ram_defs[i]); } return offset; } /* Dumps GRC RSS data. Returns the dumped size in dwords. */ static u32 qed_grc_dump_rss(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 offset = 0; u8 rss_mem_id; for (rss_mem_id = 0; rss_mem_id < NUM_RSS_MEM_TYPES; rss_mem_id++) { u32 rss_addr, num_entries, total_dwords; struct rss_mem_defs *rss_defs; u32 addr, num_dwords_to_read; bool packed; rss_defs = &s_rss_mem_defs[rss_mem_id]; rss_addr = rss_defs->addr; num_entries = rss_defs->num_entries[dev_data->chip_id]; total_dwords = (num_entries * rss_defs->entry_width) / 32; packed = (rss_defs->entry_width == 16); offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, rss_defs->mem_name, 0, total_dwords, rss_defs->entry_width, packed, rss_defs->type_name, 0); /* Dump RSS data */ if (!dump) { offset += total_dwords; continue; } addr = BYTES_TO_DWORDS(RSS_REG_RSS_RAM_DATA); while (total_dwords) { num_dwords_to_read = min_t(u32, RSS_REG_RSS_RAM_DATA_SIZE, total_dwords); qed_wr(p_hwfn, p_ptt, RSS_REG_RSS_RAM_ADDR, rss_addr); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, num_dwords_to_read, false, SPLIT_TYPE_NONE, 0); total_dwords -= num_dwords_to_read; rss_addr++; } } return offset; } /* Dumps GRC Big RAM. Returns the dumped size in dwords. */ static u32 qed_grc_dump_big_ram(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u8 big_ram_id) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 block_size, ram_size, offset = 0, reg_val, i; char mem_name[12] = "???_BIG_RAM"; char type_name[8] = "???_RAM"; struct big_ram_defs *big_ram; big_ram = &s_big_ram_defs[big_ram_id]; ram_size = big_ram->ram_size[dev_data->chip_id]; reg_val = qed_rd(p_hwfn, p_ptt, big_ram->is_256b_reg_addr); block_size = reg_val & BIT(big_ram->is_256b_bit_offset[dev_data->chip_id]) ? 256 : 128; strncpy(type_name, big_ram->instance_name, BIG_RAM_NAME_LEN); strncpy(mem_name, big_ram->instance_name, BIG_RAM_NAME_LEN); /* Dump memory header */ offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, mem_name, 0, ram_size, block_size * 8, false, type_name, 0); /* Read and dump Big RAM data */ if (!dump) return offset + ram_size; /* Dump Big RAM */ for (i = 0; i < DIV_ROUND_UP(ram_size, BRB_REG_BIG_RAM_DATA_SIZE); i++) { u32 addr, len; qed_wr(p_hwfn, p_ptt, big_ram->addr_reg_addr, i); addr = BYTES_TO_DWORDS(big_ram->data_reg_addr); len = BRB_REG_BIG_RAM_DATA_SIZE; offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, len, false, SPLIT_TYPE_NONE, 0); } return offset; } /* Dumps MCP scratchpad. Returns the dumped size in dwords. */ static u32 qed_grc_dump_mcp(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { bool block_enable[MAX_BLOCK_ID] = { 0 }; u32 offset = 0, addr; bool halted = false; /* Halt MCP */ if (dump && !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_MCP)) { halted = !qed_mcp_halt(p_hwfn, p_ptt); if (!halted) DP_NOTICE(p_hwfn, "MCP halt failed!\n"); } /* Dump MCP scratchpad */ offset += qed_grc_dump_mem(p_hwfn, p_ptt, dump_buf + offset, dump, NULL, BYTES_TO_DWORDS(MCP_REG_SCRATCH), MCP_REG_SCRATCH_SIZE, false, 0, false, "MCP", 0); /* Dump MCP cpu_reg_file */ offset += qed_grc_dump_mem(p_hwfn, p_ptt, dump_buf + offset, dump, NULL, BYTES_TO_DWORDS(MCP_REG_CPU_REG_FILE), MCP_REG_CPU_REG_FILE_SIZE, false, 0, false, "MCP", 0); /* Dump MCP registers */ block_enable[BLOCK_MCP] = true; offset += qed_grc_dump_registers(p_hwfn, p_ptt, dump_buf + offset, dump, block_enable, "MCP"); /* Dump required non-MCP registers */ offset += qed_grc_dump_regs_hdr(dump_buf + offset, dump, 1, SPLIT_TYPE_NONE, 0, "MCP"); addr = BYTES_TO_DWORDS(MISC_REG_SHARED_MEM_ADDR); offset += qed_grc_dump_reg_entry(p_hwfn, p_ptt, dump_buf + offset, dump, addr, 1, false, SPLIT_TYPE_NONE, 0); /* Release MCP */ if (halted && qed_mcp_resume(p_hwfn, p_ptt)) DP_NOTICE(p_hwfn, "Failed to resume MCP after halt!\n"); return offset; } /* Dumps the tbus indirect memory for all PHYs. * Returns the dumped size in dwords. */ static u32 qed_grc_dump_phy(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u32 offset = 0, tbus_lo_offset, tbus_hi_offset; char mem_name[32]; u8 phy_id; for (phy_id = 0; phy_id < ARRAY_SIZE(s_phy_defs); phy_id++) { u32 addr_lo_addr, addr_hi_addr, data_lo_addr, data_hi_addr; struct phy_defs *phy_defs; u8 *bytes_buf; phy_defs = &s_phy_defs[phy_id]; addr_lo_addr = phy_defs->base_addr + phy_defs->tbus_addr_lo_addr; addr_hi_addr = phy_defs->base_addr + phy_defs->tbus_addr_hi_addr; data_lo_addr = phy_defs->base_addr + phy_defs->tbus_data_lo_addr; data_hi_addr = phy_defs->base_addr + phy_defs->tbus_data_hi_addr; if (snprintf(mem_name, sizeof(mem_name), "tbus_%s", phy_defs->phy_name) < 0) DP_NOTICE(p_hwfn, "Unexpected debug error: invalid PHY memory name\n"); offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, mem_name, 0, PHY_DUMP_SIZE_DWORDS, 16, true, mem_name, 0); if (!dump) { offset += PHY_DUMP_SIZE_DWORDS; continue; } bytes_buf = (u8 *)(dump_buf + offset); for (tbus_hi_offset = 0; tbus_hi_offset < (NUM_PHY_TBUS_ADDRESSES >> 8); tbus_hi_offset++) { qed_wr(p_hwfn, p_ptt, addr_hi_addr, tbus_hi_offset); for (tbus_lo_offset = 0; tbus_lo_offset < 256; tbus_lo_offset++) { qed_wr(p_hwfn, p_ptt, addr_lo_addr, tbus_lo_offset); *(bytes_buf++) = (u8)qed_rd(p_hwfn, p_ptt, data_lo_addr); *(bytes_buf++) = (u8)qed_rd(p_hwfn, p_ptt, data_hi_addr); } } offset += PHY_DUMP_SIZE_DWORDS; } return offset; } /* Dumps the MCP HW dump from NVRAM. Returns the dumped size in dwords. */ static u32 qed_grc_dump_mcp_hw_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { u32 hw_dump_offset_bytes = 0, hw_dump_size_bytes = 0; u32 hw_dump_size_dwords = 0, offset = 0; enum dbg_status status; /* Read HW dump image from NVRAM */ status = qed_find_nvram_image(p_hwfn, p_ptt, NVM_TYPE_HW_DUMP_OUT, &hw_dump_offset_bytes, &hw_dump_size_bytes, false); if (status != DBG_STATUS_OK) return 0; hw_dump_size_dwords = BYTES_TO_DWORDS(hw_dump_size_bytes); /* Dump HW dump image section */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "mcp_hw_dump", 1); offset += qed_dump_num_param(dump_buf + offset, dump, "size", hw_dump_size_dwords); /* Read MCP HW dump image into dump buffer */ if (dump && hw_dump_size_dwords) { status = qed_nvram_read(p_hwfn, p_ptt, hw_dump_offset_bytes, hw_dump_size_bytes, dump_buf + offset, false); if (status != DBG_STATUS_OK) { DP_NOTICE(p_hwfn, "Failed to read MCP HW Dump image from NVRAM\n"); return 0; } } offset += hw_dump_size_dwords; return offset; } /* Dumps Static Debug data. Returns the dumped size in dwords. */ static u32 qed_grc_dump_static_debug(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 block_id, line_id, offset = 0, addr, len; /* Don't dump static debug if a debug bus recording is in progress */ if (dump && qed_rd(p_hwfn, p_ptt, DBG_REG_DBG_BLOCK_ON)) return 0; if (dump) { /* Disable debug bus in all blocks */ qed_bus_disable_blocks(p_hwfn, p_ptt); qed_bus_reset_dbg_block(p_hwfn, p_ptt); qed_wr(p_hwfn, p_ptt, DBG_REG_FRAMING_MODE, DBG_BUS_FRAME_MODE_8HW); qed_wr(p_hwfn, p_ptt, DBG_REG_DEBUG_TARGET, DBG_BUS_TARGET_ID_INT_BUF); qed_wr(p_hwfn, p_ptt, DBG_REG_FULL_MODE, 1); qed_bus_enable_dbg_block(p_hwfn, p_ptt, true); } /* Dump all static debug lines for each relevant block */ for (block_id = 0; block_id < MAX_BLOCK_ID; block_id++) { const struct dbg_block_chip *block_per_chip; const struct dbg_block *block; bool is_removed, has_dbg_bus; u16 modes_buf_offset; u32 block_dwords; block_per_chip = qed_get_dbg_block_per_chip(p_hwfn, (enum block_id)block_id); is_removed = GET_FIELD(block_per_chip->flags, DBG_BLOCK_CHIP_IS_REMOVED); has_dbg_bus = GET_FIELD(block_per_chip->flags, DBG_BLOCK_CHIP_HAS_DBG_BUS); if (!is_removed && has_dbg_bus && GET_FIELD(block_per_chip->dbg_bus_mode.data, DBG_MODE_HDR_EVAL_MODE) > 0) { modes_buf_offset = GET_FIELD(block_per_chip->dbg_bus_mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); if (!qed_is_mode_match(p_hwfn, &modes_buf_offset)) has_dbg_bus = false; } if (is_removed || !has_dbg_bus) continue; block_dwords = NUM_DBG_LINES(block_per_chip) * STATIC_DEBUG_LINE_DWORDS; /* Dump static section params */ block = get_dbg_block(p_hwfn, (enum block_id)block_id); offset += qed_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, block->name, 0, block_dwords, 32, false, "STATIC", 0); if (!dump) { offset += block_dwords; continue; } /* If all lines are invalid - dump zeros */ if (dev_data->block_in_reset[block_id]) { memset(dump_buf + offset, 0, DWORDS_TO_BYTES(block_dwords)); offset += block_dwords; continue; } /* Enable block's client */ qed_bus_enable_clients(p_hwfn, p_ptt, BIT(block_per_chip->dbg_client_id)); addr = BYTES_TO_DWORDS(DBG_REG_CALENDAR_OUT_DATA); len = STATIC_DEBUG_LINE_DWORDS; for (line_id = 0; line_id < (u32)NUM_DBG_LINES(block_per_chip); line_id++) { /* Configure debug line ID */ qed_bus_config_dbg_line(p_hwfn, p_ptt, (enum block_id)block_id, (u8)line_id, 0xf, 0, 0, 0); /* Read debug line info */ offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, len, true, SPLIT_TYPE_NONE, 0); } /* Disable block's client and debug output */ qed_bus_enable_clients(p_hwfn, p_ptt, 0); qed_bus_config_dbg_line(p_hwfn, p_ptt, (enum block_id)block_id, 0, 0, 0, 0, 0); } if (dump) { qed_bus_enable_dbg_block(p_hwfn, p_ptt, false); qed_bus_enable_clients(p_hwfn, p_ptt, 0); } return offset; } /* Performs GRC Dump to the specified buffer. * Returns the dumped size in dwords. */ static enum dbg_status qed_grc_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 *num_dumped_dwords) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; bool parities_masked = false; u32 dwords_read, offset = 0; u8 i; *num_dumped_dwords = 0; dev_data->num_regs_read = 0; /* Update reset state */ if (dump) qed_update_blocks_reset_state(p_hwfn, p_ptt); /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 4); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "grc-dump"); offset += qed_dump_num_param(dump_buf + offset, dump, "num-lcids", NUM_OF_LCIDS); offset += qed_dump_num_param(dump_buf + offset, dump, "num-ltids", NUM_OF_LTIDS); offset += qed_dump_num_param(dump_buf + offset, dump, "num-ports", dev_data->num_ports); /* Dump reset registers (dumped before taking blocks out of reset ) */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_REGS)) offset += qed_grc_dump_reset_regs(p_hwfn, p_ptt, dump_buf + offset, dump); /* Take all blocks out of reset (using reset registers) */ if (dump) { qed_grc_unreset_blocks(p_hwfn, p_ptt, false); qed_update_blocks_reset_state(p_hwfn, p_ptt); } /* Disable all parities using MFW command */ if (dump && !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_MCP)) { parities_masked = !qed_mcp_mask_parities(p_hwfn, p_ptt, 1); if (!parities_masked) { DP_NOTICE(p_hwfn, "Failed to mask parities using MFW\n"); if (qed_grc_get_param (p_hwfn, DBG_GRC_PARAM_PARITY_SAFE)) return DBG_STATUS_MCP_COULD_NOT_MASK_PRTY; } } /* Dump modified registers (dumped before modifying them) */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_REGS)) offset += qed_grc_dump_modified_regs(p_hwfn, p_ptt, dump_buf + offset, dump); /* Stall storms */ if (dump && (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_IOR) || qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_VFC))) qed_grc_stall_storms(p_hwfn, p_ptt, true); /* Dump all regs */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_REGS)) { bool block_enable[MAX_BLOCK_ID]; /* Dump all blocks except MCP */ for (i = 0; i < MAX_BLOCK_ID; i++) block_enable[i] = true; block_enable[BLOCK_MCP] = false; offset += qed_grc_dump_registers(p_hwfn, p_ptt, dump_buf + offset, dump, block_enable, NULL); /* Dump special registers */ offset += qed_grc_dump_special_regs(p_hwfn, p_ptt, dump_buf + offset, dump); } /* Dump memories */ offset += qed_grc_dump_memories(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump MCP */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_MCP)) offset += qed_grc_dump_mcp(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump context */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_CM_CTX)) offset += qed_grc_dump_ctx(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump RSS memories */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_RSS)) offset += qed_grc_dump_rss(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump Big RAM */ for (i = 0; i < NUM_BIG_RAM_TYPES; i++) if (qed_grc_is_included(p_hwfn, s_big_ram_defs[i].grc_param)) offset += qed_grc_dump_big_ram(p_hwfn, p_ptt, dump_buf + offset, dump, i); /* Dump VFC */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_VFC)) { dwords_read = qed_grc_dump_vfc(p_hwfn, p_ptt, dump_buf + offset, dump); offset += dwords_read; if (!dwords_read) return DBG_STATUS_VFC_READ_ERROR; } /* Dump PHY tbus */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_PHY) && dev_data->chip_id == CHIP_K2 && dev_data->hw_type == HW_TYPE_ASIC) offset += qed_grc_dump_phy(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump MCP HW Dump */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_MCP_HW_DUMP) && !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_MCP) && 1) offset += qed_grc_dump_mcp_hw_dump(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump static debug data (only if not during debug bus recording) */ if (qed_grc_is_included(p_hwfn, DBG_GRC_PARAM_DUMP_STATIC) && (!dump || dev_data->bus.state == DBG_BUS_STATE_IDLE)) offset += qed_grc_dump_static_debug(p_hwfn, p_ptt, dump_buf + offset, dump); /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); if (dump) { /* Unstall storms */ if (qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_UNSTALL)) qed_grc_stall_storms(p_hwfn, p_ptt, false); /* Clear parity status */ qed_grc_clear_all_prty(p_hwfn, p_ptt); /* Enable all parities using MFW command */ if (parities_masked) qed_mcp_mask_parities(p_hwfn, p_ptt, 0); } *num_dumped_dwords = offset; return DBG_STATUS_OK; } /* Writes the specified failing Idle Check rule to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_idle_chk_dump_failure(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u16 rule_id, const struct dbg_idle_chk_rule *rule, u16 fail_entry_id, u32 *cond_reg_values) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; const struct dbg_idle_chk_cond_reg *cond_regs; const struct dbg_idle_chk_info_reg *info_regs; u32 i, next_reg_offset = 0, offset = 0; struct dbg_idle_chk_result_hdr *hdr; const union dbg_idle_chk_reg *regs; u8 reg_id; hdr = (struct dbg_idle_chk_result_hdr *)dump_buf; regs = (const union dbg_idle_chk_reg *) p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_REGS].ptr + rule->reg_offset; cond_regs = ®s[0].cond_reg; info_regs = ®s[rule->num_cond_regs].info_reg; /* Dump rule data */ if (dump) { memset(hdr, 0, sizeof(*hdr)); hdr->rule_id = rule_id; hdr->mem_entry_id = fail_entry_id; hdr->severity = rule->severity; hdr->num_dumped_cond_regs = rule->num_cond_regs; } offset += IDLE_CHK_RESULT_HDR_DWORDS; /* Dump condition register values */ for (reg_id = 0; reg_id < rule->num_cond_regs; reg_id++) { const struct dbg_idle_chk_cond_reg *reg = &cond_regs[reg_id]; struct dbg_idle_chk_result_reg_hdr *reg_hdr; reg_hdr = (struct dbg_idle_chk_result_reg_hdr *)(dump_buf + offset); /* Write register header */ if (!dump) { offset += IDLE_CHK_RESULT_REG_HDR_DWORDS + reg->entry_size; continue; } offset += IDLE_CHK_RESULT_REG_HDR_DWORDS; memset(reg_hdr, 0, sizeof(*reg_hdr)); reg_hdr->start_entry = reg->start_entry; reg_hdr->size = reg->entry_size; SET_FIELD(reg_hdr->data, DBG_IDLE_CHK_RESULT_REG_HDR_IS_MEM, reg->num_entries > 1 || reg->start_entry > 0 ? 1 : 0); SET_FIELD(reg_hdr->data, DBG_IDLE_CHK_RESULT_REG_HDR_REG_ID, reg_id); /* Write register values */ for (i = 0; i < reg_hdr->size; i++, next_reg_offset++, offset++) dump_buf[offset] = cond_reg_values[next_reg_offset]; } /* Dump info register values */ for (reg_id = 0; reg_id < rule->num_info_regs; reg_id++) { const struct dbg_idle_chk_info_reg *reg = &info_regs[reg_id]; u32 block_id; /* Check if register's block is in reset */ if (!dump) { offset += IDLE_CHK_RESULT_REG_HDR_DWORDS + reg->size; continue; } block_id = GET_FIELD(reg->data, DBG_IDLE_CHK_INFO_REG_BLOCK_ID); if (block_id >= MAX_BLOCK_ID) { DP_NOTICE(p_hwfn, "Invalid block_id\n"); return 0; } if (!dev_data->block_in_reset[block_id]) { struct dbg_idle_chk_result_reg_hdr *reg_hdr; bool wide_bus, eval_mode, mode_match = true; u16 modes_buf_offset; u32 addr; reg_hdr = (struct dbg_idle_chk_result_reg_hdr *) (dump_buf + offset); /* Check mode */ eval_mode = GET_FIELD(reg->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; if (eval_mode) { modes_buf_offset = GET_FIELD(reg->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); mode_match = qed_is_mode_match(p_hwfn, &modes_buf_offset); } if (!mode_match) continue; addr = GET_FIELD(reg->data, DBG_IDLE_CHK_INFO_REG_ADDRESS); wide_bus = GET_FIELD(reg->data, DBG_IDLE_CHK_INFO_REG_WIDE_BUS); /* Write register header */ offset += IDLE_CHK_RESULT_REG_HDR_DWORDS; hdr->num_dumped_info_regs++; memset(reg_hdr, 0, sizeof(*reg_hdr)); reg_hdr->size = reg->size; SET_FIELD(reg_hdr->data, DBG_IDLE_CHK_RESULT_REG_HDR_REG_ID, rule->num_cond_regs + reg_id); /* Write register values */ offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, reg->size, wide_bus, SPLIT_TYPE_NONE, 0); } } return offset; } /* Dumps idle check rule entries. Returns the dumped size in dwords. */ static u32 qed_idle_chk_dump_rule_entries(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, const struct dbg_idle_chk_rule *input_rules, u32 num_input_rules, u32 *num_failing_rules) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 cond_reg_values[IDLE_CHK_MAX_ENTRIES_SIZE]; u32 i, offset = 0; u16 entry_id; u8 reg_id; *num_failing_rules = 0; for (i = 0; i < num_input_rules; i++) { const struct dbg_idle_chk_cond_reg *cond_regs; const struct dbg_idle_chk_rule *rule; const union dbg_idle_chk_reg *regs; u16 num_reg_entries = 1; bool check_rule = true; const u32 *imm_values; rule = &input_rules[i]; regs = (const union dbg_idle_chk_reg *) p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_REGS].ptr + rule->reg_offset; cond_regs = ®s[0].cond_reg; imm_values = (u32 *)p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_IMMS].ptr + rule->imm_offset; /* Check if all condition register blocks are out of reset, and * find maximal number of entries (all condition registers that * are memories must have the same size, which is > 1). */ for (reg_id = 0; reg_id < rule->num_cond_regs && check_rule; reg_id++) { u32 block_id = GET_FIELD(cond_regs[reg_id].data, DBG_IDLE_CHK_COND_REG_BLOCK_ID); if (block_id >= MAX_BLOCK_ID) { DP_NOTICE(p_hwfn, "Invalid block_id\n"); return 0; } check_rule = !dev_data->block_in_reset[block_id]; if (cond_regs[reg_id].num_entries > num_reg_entries) num_reg_entries = cond_regs[reg_id].num_entries; } if (!check_rule && dump) continue; if (!dump) { u32 entry_dump_size = qed_idle_chk_dump_failure(p_hwfn, p_ptt, dump_buf + offset, false, rule->rule_id, rule, 0, NULL); offset += num_reg_entries * entry_dump_size; (*num_failing_rules) += num_reg_entries; continue; } /* Go over all register entries (number of entries is the same * for all condition registers). */ for (entry_id = 0; entry_id < num_reg_entries; entry_id++) { u32 next_reg_offset = 0; /* Read current entry of all condition registers */ for (reg_id = 0; reg_id < rule->num_cond_regs; reg_id++) { const struct dbg_idle_chk_cond_reg *reg = &cond_regs[reg_id]; u32 padded_entry_size, addr; bool wide_bus; /* Find GRC address (if it's a memory, the * address of the specific entry is calculated). */ addr = GET_FIELD(reg->data, DBG_IDLE_CHK_COND_REG_ADDRESS); wide_bus = GET_FIELD(reg->data, DBG_IDLE_CHK_COND_REG_WIDE_BUS); if (reg->num_entries > 1 || reg->start_entry > 0) { padded_entry_size = reg->entry_size > 1 ? roundup_pow_of_two(reg->entry_size) : 1; addr += (reg->start_entry + entry_id) * padded_entry_size; } /* Read registers */ if (next_reg_offset + reg->entry_size >= IDLE_CHK_MAX_ENTRIES_SIZE) { DP_NOTICE(p_hwfn, "idle check registers entry is too large\n"); return 0; } next_reg_offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, cond_reg_values + next_reg_offset, dump, addr, reg->entry_size, wide_bus, SPLIT_TYPE_NONE, 0); } /* Call rule condition function. * If returns true, it's a failure. */ if ((*cond_arr[rule->cond_id]) (cond_reg_values, imm_values)) { offset += qed_idle_chk_dump_failure(p_hwfn, p_ptt, dump_buf + offset, dump, rule->rule_id, rule, entry_id, cond_reg_values); (*num_failing_rules)++; } } } return offset; } /* Performs Idle Check Dump to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_idle_chk_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct virt_mem_desc *dbg_buf = &p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_RULES]; u32 num_failing_rules_offset, offset = 0, input_offset = 0, num_failing_rules = 0; /* Dump global params - 1 must match below amount of params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "idle-chk"); /* Dump idle check section header with a single parameter */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "idle_chk", 1); num_failing_rules_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "num_rules", 0); while (input_offset < BYTES_TO_DWORDS(dbg_buf->size)) { const struct dbg_idle_chk_cond_hdr *cond_hdr = (const struct dbg_idle_chk_cond_hdr *)dbg_buf->ptr + input_offset++; bool eval_mode, mode_match = true; u32 curr_failing_rules; u16 modes_buf_offset; /* Check mode */ eval_mode = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; if (eval_mode) { modes_buf_offset = GET_FIELD(cond_hdr->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); mode_match = qed_is_mode_match(p_hwfn, &modes_buf_offset); } if (mode_match) { const struct dbg_idle_chk_rule *rule = (const struct dbg_idle_chk_rule *)((u32 *) dbg_buf->ptr + input_offset); u32 num_input_rules = cond_hdr->data_size / IDLE_CHK_RULE_SIZE_DWORDS; offset += qed_idle_chk_dump_rule_entries(p_hwfn, p_ptt, dump_buf + offset, dump, rule, num_input_rules, &curr_failing_rules); num_failing_rules += curr_failing_rules; } input_offset += cond_hdr->data_size; } /* Overwrite num_rules parameter */ if (dump) qed_dump_num_param(dump_buf + num_failing_rules_offset, dump, "num_rules", num_failing_rules); /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); return offset; } /* Get info on the MCP Trace data in the scratchpad: * - trace_data_grc_addr (OUT): trace data GRC address in bytes * - trace_data_size (OUT): trace data size in bytes (without the header) */ static enum dbg_status qed_mcp_trace_get_data_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *trace_data_grc_addr, u32 *trace_data_size) { u32 spad_trace_offsize, signature; /* Read trace section offsize structure from MCP scratchpad */ spad_trace_offsize = qed_rd(p_hwfn, p_ptt, MCP_SPAD_TRACE_OFFSIZE_ADDR); /* Extract trace section address from offsize (in scratchpad) */ *trace_data_grc_addr = MCP_REG_SCRATCH + SECTION_OFFSET(spad_trace_offsize); /* Read signature from MCP trace section */ signature = qed_rd(p_hwfn, p_ptt, *trace_data_grc_addr + offsetof(struct mcp_trace, signature)); if (signature != MFW_TRACE_SIGNATURE) return DBG_STATUS_INVALID_TRACE_SIGNATURE; /* Read trace size from MCP trace section */ *trace_data_size = qed_rd(p_hwfn, p_ptt, *trace_data_grc_addr + offsetof(struct mcp_trace, size)); return DBG_STATUS_OK; } /* Reads MCP trace meta data image from NVRAM * - running_bundle_id (OUT): running bundle ID (invalid when loaded from file) * - trace_meta_offset (OUT): trace meta offset in NVRAM in bytes (invalid when * loaded from file). * - trace_meta_size (OUT): size in bytes of the trace meta data. */ static enum dbg_status qed_mcp_trace_get_meta_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 trace_data_size_bytes, u32 *running_bundle_id, u32 *trace_meta_offset, u32 *trace_meta_size) { u32 spad_trace_offsize, nvram_image_type, running_mfw_addr; /* Read MCP trace section offsize structure from MCP scratchpad */ spad_trace_offsize = qed_rd(p_hwfn, p_ptt, MCP_SPAD_TRACE_OFFSIZE_ADDR); /* Find running bundle ID */ running_mfw_addr = MCP_REG_SCRATCH + SECTION_OFFSET(spad_trace_offsize) + QED_SECTION_SIZE(spad_trace_offsize) + trace_data_size_bytes; *running_bundle_id = qed_rd(p_hwfn, p_ptt, running_mfw_addr); if (*running_bundle_id > 1) return DBG_STATUS_INVALID_NVRAM_BUNDLE; /* Find image in NVRAM */ nvram_image_type = (*running_bundle_id == DIR_ID_1) ? NVM_TYPE_MFW_TRACE1 : NVM_TYPE_MFW_TRACE2; return qed_find_nvram_image(p_hwfn, p_ptt, nvram_image_type, trace_meta_offset, trace_meta_size, true); } /* Reads the MCP Trace meta data from NVRAM into the specified buffer */ static enum dbg_status qed_mcp_trace_read_meta(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 nvram_offset_in_bytes, u32 size_in_bytes, u32 *buf) { u8 modules_num, module_len, i, *byte_buf = (u8 *)buf; enum dbg_status status; u32 signature; /* Read meta data from NVRAM */ status = qed_nvram_read(p_hwfn, p_ptt, nvram_offset_in_bytes, size_in_bytes, buf, true); if (status != DBG_STATUS_OK) return status; /* Extract and check first signature */ signature = qed_read_unaligned_dword(byte_buf); byte_buf += sizeof(signature); if (signature != NVM_MAGIC_VALUE) return DBG_STATUS_INVALID_TRACE_SIGNATURE; /* Extract number of modules */ modules_num = *(byte_buf++); /* Skip all modules */ for (i = 0; i < modules_num; i++) { module_len = *(byte_buf++); byte_buf += module_len; } /* Extract and check second signature */ signature = qed_read_unaligned_dword(byte_buf); byte_buf += sizeof(signature); if (signature != NVM_MAGIC_VALUE) return DBG_STATUS_INVALID_TRACE_SIGNATURE; return DBG_STATUS_OK; } /* Dump MCP Trace */ static enum dbg_status qed_mcp_trace_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 *num_dumped_dwords) { u32 trace_data_grc_addr, trace_data_size_bytes, trace_data_size_dwords; u32 trace_meta_size_dwords = 0, running_bundle_id, offset = 0; u32 trace_meta_offset_bytes = 0, trace_meta_size_bytes = 0; enum dbg_status status; int halted = 0; bool use_mfw; *num_dumped_dwords = 0; use_mfw = !qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_NO_MCP); /* Get trace data info */ status = qed_mcp_trace_get_data_info(p_hwfn, p_ptt, &trace_data_grc_addr, &trace_data_size_bytes); if (status != DBG_STATUS_OK) return status; /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "mcp-trace"); /* Halt MCP while reading from scratchpad so the read data will be * consistent. if halt fails, MCP trace is taken anyway, with a small * risk that it may be corrupt. */ if (dump && use_mfw) { halted = !qed_mcp_halt(p_hwfn, p_ptt); if (!halted) DP_NOTICE(p_hwfn, "MCP halt failed!\n"); } /* Find trace data size */ trace_data_size_dwords = DIV_ROUND_UP(trace_data_size_bytes + sizeof(struct mcp_trace), BYTES_IN_DWORD); /* Dump trace data section header and param */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "mcp_trace_data", 1); offset += qed_dump_num_param(dump_buf + offset, dump, "size", trace_data_size_dwords); /* Read trace data from scratchpad into dump buffer */ offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, BYTES_TO_DWORDS(trace_data_grc_addr), trace_data_size_dwords, false, SPLIT_TYPE_NONE, 0); /* Resume MCP (only if halt succeeded) */ if (halted && qed_mcp_resume(p_hwfn, p_ptt)) DP_NOTICE(p_hwfn, "Failed to resume MCP after halt!\n"); /* Dump trace meta section header */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "mcp_trace_meta", 1); /* If MCP Trace meta size parameter was set, use it. * Otherwise, read trace meta. * trace_meta_size_bytes is dword-aligned. */ trace_meta_size_bytes = qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_MCP_TRACE_META_SIZE); if ((!trace_meta_size_bytes || dump) && use_mfw) status = qed_mcp_trace_get_meta_info(p_hwfn, p_ptt, trace_data_size_bytes, &running_bundle_id, &trace_meta_offset_bytes, &trace_meta_size_bytes); if (status == DBG_STATUS_OK) trace_meta_size_dwords = BYTES_TO_DWORDS(trace_meta_size_bytes); /* Dump trace meta size param */ offset += qed_dump_num_param(dump_buf + offset, dump, "size", trace_meta_size_dwords); /* Read trace meta image into dump buffer */ if (dump && trace_meta_size_dwords) status = qed_mcp_trace_read_meta(p_hwfn, p_ptt, trace_meta_offset_bytes, trace_meta_size_bytes, dump_buf + offset); if (status == DBG_STATUS_OK) offset += trace_meta_size_dwords; /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); *num_dumped_dwords = offset; /* If no mcp access, indicate that the dump doesn't contain the meta * data from NVRAM. */ return use_mfw ? status : DBG_STATUS_NVRAM_GET_IMAGE_FAILED; } /* Dump GRC FIFO */ static enum dbg_status qed_reg_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 *num_dumped_dwords) { u32 dwords_read, size_param_offset, offset = 0, addr, len; bool fifo_has_data; *num_dumped_dwords = 0; /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "reg-fifo"); /* Dump fifo data section header and param. The size param is 0 for * now, and is overwritten after reading the FIFO. */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "reg_fifo_data", 1); size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "size", 0); if (!dump) { /* FIFO max size is REG_FIFO_DEPTH_DWORDS. There is no way to * test how much data is available, except for reading it. */ offset += REG_FIFO_DEPTH_DWORDS; goto out; } fifo_has_data = qed_rd(p_hwfn, p_ptt, GRC_REG_TRACE_FIFO_VALID_DATA) > 0; /* Pull available data from fifo. Use DMAE since this is widebus memory * and must be accessed atomically. Test for dwords_read not passing * buffer size since more entries could be added to the buffer as we are * emptying it. */ addr = BYTES_TO_DWORDS(GRC_REG_TRACE_FIFO); len = REG_FIFO_ELEMENT_DWORDS; for (dwords_read = 0; fifo_has_data && dwords_read < REG_FIFO_DEPTH_DWORDS; dwords_read += REG_FIFO_ELEMENT_DWORDS) { offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, true, addr, len, true, SPLIT_TYPE_NONE, 0); fifo_has_data = qed_rd(p_hwfn, p_ptt, GRC_REG_TRACE_FIFO_VALID_DATA) > 0; } qed_dump_num_param(dump_buf + size_param_offset, dump, "size", dwords_read); out: /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); *num_dumped_dwords = offset; return DBG_STATUS_OK; } /* Dump IGU FIFO */ static enum dbg_status qed_igu_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 *num_dumped_dwords) { u32 dwords_read, size_param_offset, offset = 0, addr, len; bool fifo_has_data; *num_dumped_dwords = 0; /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "igu-fifo"); /* Dump fifo data section header and param. The size param is 0 for * now, and is overwritten after reading the FIFO. */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "igu_fifo_data", 1); size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "size", 0); if (!dump) { /* FIFO max size is IGU_FIFO_DEPTH_DWORDS. There is no way to * test how much data is available, except for reading it. */ offset += IGU_FIFO_DEPTH_DWORDS; goto out; } fifo_has_data = qed_rd(p_hwfn, p_ptt, IGU_REG_ERROR_HANDLING_DATA_VALID) > 0; /* Pull available data from fifo. Use DMAE since this is widebus memory * and must be accessed atomically. Test for dwords_read not passing * buffer size since more entries could be added to the buffer as we are * emptying it. */ addr = BYTES_TO_DWORDS(IGU_REG_ERROR_HANDLING_MEMORY); len = IGU_FIFO_ELEMENT_DWORDS; for (dwords_read = 0; fifo_has_data && dwords_read < IGU_FIFO_DEPTH_DWORDS; dwords_read += IGU_FIFO_ELEMENT_DWORDS) { offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, true, addr, len, true, SPLIT_TYPE_NONE, 0); fifo_has_data = qed_rd(p_hwfn, p_ptt, IGU_REG_ERROR_HANDLING_DATA_VALID) > 0; } qed_dump_num_param(dump_buf + size_param_offset, dump, "size", dwords_read); out: /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); *num_dumped_dwords = offset; return DBG_STATUS_OK; } /* Protection Override dump */ static enum dbg_status qed_protection_override_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 *num_dumped_dwords) { u32 size_param_offset, override_window_dwords, offset = 0, addr; *num_dumped_dwords = 0; /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "protection-override"); /* Dump data section header and param. The size param is 0 for now, * and is overwritten after reading the data. */ offset += qed_dump_section_hdr(dump_buf + offset, dump, "protection_override_data", 1); size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "size", 0); if (!dump) { offset += PROTECTION_OVERRIDE_DEPTH_DWORDS; goto out; } /* Add override window info to buffer */ override_window_dwords = qed_rd(p_hwfn, p_ptt, GRC_REG_NUMBER_VALID_OVERRIDE_WINDOW) * PROTECTION_OVERRIDE_ELEMENT_DWORDS; if (override_window_dwords) { addr = BYTES_TO_DWORDS(GRC_REG_PROTECTION_OVERRIDE_WINDOW); offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, true, addr, override_window_dwords, true, SPLIT_TYPE_NONE, 0); qed_dump_num_param(dump_buf + size_param_offset, dump, "size", override_window_dwords); } out: /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); *num_dumped_dwords = offset; return DBG_STATUS_OK; } /* Performs FW Asserts Dump to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_fw_asserts_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; struct fw_asserts_ram_section *asserts; char storm_letter_str[2] = "?"; struct fw_info fw_info; u32 offset = 0; u8 storm_id; /* Dump global params */ offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 1); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "fw-asserts"); /* Find Storm dump size */ for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) { u32 fw_asserts_section_addr, next_list_idx_addr, next_list_idx; struct storm_defs *storm = &s_storm_defs[storm_id]; u32 last_list_idx, addr; if (dev_data->block_in_reset[storm->sem_block_id]) continue; /* Read FW info for the current Storm */ qed_read_storm_fw_info(p_hwfn, p_ptt, storm_id, &fw_info); asserts = &fw_info.fw_asserts_section; /* Dump FW Asserts section header and params */ storm_letter_str[0] = storm->letter; offset += qed_dump_section_hdr(dump_buf + offset, dump, "fw_asserts", 2); offset += qed_dump_str_param(dump_buf + offset, dump, "storm", storm_letter_str); offset += qed_dump_num_param(dump_buf + offset, dump, "size", asserts->list_element_dword_size); /* Read and dump FW Asserts data */ if (!dump) { offset += asserts->list_element_dword_size; continue; } addr = le16_to_cpu(asserts->section_ram_line_offset); fw_asserts_section_addr = storm->sem_fast_mem_addr + SEM_FAST_REG_INT_RAM + RAM_LINES_TO_BYTES(addr); next_list_idx_addr = fw_asserts_section_addr + DWORDS_TO_BYTES(asserts->list_next_index_dword_offset); next_list_idx = qed_rd(p_hwfn, p_ptt, next_list_idx_addr); last_list_idx = (next_list_idx > 0 ? next_list_idx : asserts->list_num_elements) - 1; addr = BYTES_TO_DWORDS(fw_asserts_section_addr) + asserts->list_dword_offset + last_list_idx * asserts->list_element_dword_size; offset += qed_grc_dump_addr_range(p_hwfn, p_ptt, dump_buf + offset, dump, addr, asserts->list_element_dword_size, false, SPLIT_TYPE_NONE, 0); } /* Dump last section */ offset += qed_dump_last_section(dump_buf, offset, dump); return offset; } /* Dumps the specified ILT pages to the specified buffer. * Returns the dumped size in dwords. */ static u32 qed_ilt_dump_pages_range(u32 *dump_buf, u32 *given_offset, bool *dump, u32 start_page_id, u32 num_pages, struct phys_mem_desc *ilt_pages, bool dump_page_ids, u32 buf_size_in_dwords, u32 *given_actual_dump_size_in_dwords) { u32 actual_dump_size_in_dwords = *given_actual_dump_size_in_dwords; u32 page_id, end_page_id, offset = *given_offset; struct phys_mem_desc *mem_desc = NULL; bool continue_dump = *dump; u32 partial_page_size = 0; if (num_pages == 0) return offset; end_page_id = start_page_id + num_pages - 1; for (page_id = start_page_id; page_id <= end_page_id; page_id++) { mem_desc = &ilt_pages[page_id]; if (!ilt_pages[page_id].virt_addr) continue; if (dump_page_ids) { /* Copy page ID to dump buffer * (if dump is needed and buffer is not full) */ if ((continue_dump) && (offset + 1 > buf_size_in_dwords)) { continue_dump = false; actual_dump_size_in_dwords = offset; } if (continue_dump) *(dump_buf + offset) = page_id; offset++; } else { /* Copy page memory to dump buffer */ if ((continue_dump) && (offset + BYTES_TO_DWORDS(mem_desc->size) > buf_size_in_dwords)) { if (offset + BYTES_TO_DWORDS(mem_desc->size) > buf_size_in_dwords) { partial_page_size = buf_size_in_dwords - offset; memcpy(dump_buf + offset, mem_desc->virt_addr, partial_page_size); continue_dump = false; actual_dump_size_in_dwords = offset + partial_page_size; } } if (continue_dump) memcpy(dump_buf + offset, mem_desc->virt_addr, mem_desc->size); offset += BYTES_TO_DWORDS(mem_desc->size); } } *dump = continue_dump; *given_offset = offset; *given_actual_dump_size_in_dwords = actual_dump_size_in_dwords; return offset; } /* Dumps a section containing the dumped ILT pages. * Returns the dumped size in dwords. */ static u32 qed_ilt_dump_pages_section(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 *given_offset, bool *dump, u32 valid_conn_pf_pages, u32 valid_conn_vf_pages, struct phys_mem_desc *ilt_pages, bool dump_page_ids, u32 buf_size_in_dwords, u32 *given_actual_dump_size_in_dwords) { struct qed_ilt_client_cfg *clients = p_hwfn->p_cxt_mngr->clients; u32 pf_start_line, start_page_id, offset = *given_offset; u32 cdut_pf_init_pages, cdut_vf_init_pages; u32 cdut_pf_work_pages, cdut_vf_work_pages; u32 base_data_offset, size_param_offset; u32 src_pages; u32 section_header_and_param_size; u32 cdut_pf_pages, cdut_vf_pages; u32 actual_dump_size_in_dwords; bool continue_dump = *dump; bool update_size = *dump; const char *section_name; u32 i; actual_dump_size_in_dwords = *given_actual_dump_size_in_dwords; section_name = dump_page_ids ? "ilt_page_ids" : "ilt_page_mem"; cdut_pf_init_pages = qed_get_cdut_num_pf_init_pages(p_hwfn); cdut_vf_init_pages = qed_get_cdut_num_vf_init_pages(p_hwfn); cdut_pf_work_pages = qed_get_cdut_num_pf_work_pages(p_hwfn); cdut_vf_work_pages = qed_get_cdut_num_vf_work_pages(p_hwfn); cdut_pf_pages = cdut_pf_init_pages + cdut_pf_work_pages; cdut_vf_pages = cdut_vf_init_pages + cdut_vf_work_pages; pf_start_line = p_hwfn->p_cxt_mngr->pf_start_line; section_header_and_param_size = qed_dump_section_hdr(NULL, false, section_name, 1) + qed_dump_num_param(NULL, false, "size", 0); if ((continue_dump) && (offset + section_header_and_param_size > buf_size_in_dwords)) { continue_dump = false; update_size = false; actual_dump_size_in_dwords = offset; } offset += qed_dump_section_hdr(dump_buf + offset, continue_dump, section_name, 1); /* Dump size parameter (0 for now, overwritten with real size later) */ size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, continue_dump, "size", 0); base_data_offset = offset; /* CDUC pages are ordered as follows: * - PF pages - valid section (included in PF connection type mapping) * - PF pages - invalid section (not dumped) * - For each VF in the PF: * - VF pages - valid section (included in VF connection type mapping) * - VF pages - invalid section (not dumped) */ if (qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_DUMP_ILT_CDUC)) { /* Dump connection PF pages */ start_page_id = clients[ILT_CLI_CDUC].first.val - pf_start_line; qed_ilt_dump_pages_range(dump_buf, &offset, &continue_dump, start_page_id, valid_conn_pf_pages, ilt_pages, dump_page_ids, buf_size_in_dwords, &actual_dump_size_in_dwords); /* Dump connection VF pages */ start_page_id += clients[ILT_CLI_CDUC].pf_total_lines; for (i = 0; i < p_hwfn->p_cxt_mngr->vf_count; i++, start_page_id += clients[ILT_CLI_CDUC].vf_total_lines) qed_ilt_dump_pages_range(dump_buf, &offset, &continue_dump, start_page_id, valid_conn_vf_pages, ilt_pages, dump_page_ids, buf_size_in_dwords, &actual_dump_size_in_dwords); } /* CDUT pages are ordered as follows: * - PF init pages (not dumped) * - PF work pages * - For each VF in the PF: * - VF init pages (not dumped) * - VF work pages */ if (qed_grc_get_param(p_hwfn, DBG_GRC_PARAM_DUMP_ILT_CDUT)) { /* Dump task PF pages */ start_page_id = clients[ILT_CLI_CDUT].first.val + cdut_pf_init_pages - pf_start_line; qed_ilt_dump_pages_range(dump_buf, &offset, &continue_dump, start_page_id, cdut_pf_work_pages, ilt_pages, dump_page_ids, buf_size_in_dwords, &actual_dump_size_in_dwords); /* Dump task VF pages */ start_page_id = clients[ILT_CLI_CDUT].first.val + cdut_pf_pages + cdut_vf_init_pages - pf_start_line; for (i = 0; i < p_hwfn->p_cxt_mngr->vf_count; i++, start_page_id += cdut_vf_pages) qed_ilt_dump_pages_range(dump_buf, &offset, &continue_dump, start_page_id, cdut_vf_work_pages, ilt_pages, dump_page_ids, buf_size_in_dwords, &actual_dump_size_in_dwords); } /*Dump Searcher pages */ if (clients[ILT_CLI_SRC].active) { start_page_id = clients[ILT_CLI_SRC].first.val - pf_start_line; src_pages = clients[ILT_CLI_SRC].last.val - clients[ILT_CLI_SRC].first.val + 1; qed_ilt_dump_pages_range(dump_buf, &offset, &continue_dump, start_page_id, src_pages, ilt_pages, dump_page_ids, buf_size_in_dwords, &actual_dump_size_in_dwords); } /* Overwrite size param */ if (update_size) { u32 section_size = (*dump == continue_dump) ? offset - base_data_offset : actual_dump_size_in_dwords - base_data_offset; if (section_size > 0) qed_dump_num_param(dump_buf + size_param_offset, *dump, "size", section_size); else if ((section_size == 0) && (*dump != continue_dump)) actual_dump_size_in_dwords -= section_header_and_param_size; } *dump = continue_dump; *given_offset = offset; *given_actual_dump_size_in_dwords = actual_dump_size_in_dwords; return offset; } /* Dumps a section containing the global parameters. * Part of ilt dump process * Returns the dumped size in dwords. */ static u32 qed_ilt_dump_dump_common_global_params(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, bool dump, u32 cduc_page_size, u32 conn_ctx_size, u32 cdut_page_size, u32 *full_dump_size_param_offset, u32 *actual_dump_size_param_offset) { struct qed_ilt_client_cfg *clients = p_hwfn->p_cxt_mngr->clients; u32 offset = 0; offset += qed_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, dump, 30); offset += qed_dump_str_param(dump_buf + offset, dump, "dump-type", "ilt-dump"); offset += qed_dump_num_param(dump_buf + offset, dump, "cduc-page-size", cduc_page_size); offset += qed_dump_num_param(dump_buf + offset, dump, "cduc-first-page-id", clients[ILT_CLI_CDUC].first.val); offset += qed_dump_num_param(dump_buf + offset, dump, "cduc-last-page-id", clients[ILT_CLI_CDUC].last.val); offset += qed_dump_num_param(dump_buf + offset, dump, "cduc-num-pf-pages", clients[ILT_CLI_CDUC].pf_total_lines); offset += qed_dump_num_param(dump_buf + offset, dump, "cduc-num-vf-pages", clients[ILT_CLI_CDUC].vf_total_lines); offset += qed_dump_num_param(dump_buf + offset, dump, "max-conn-ctx-size", conn_ctx_size); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-page-size", cdut_page_size); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-first-page-id", clients[ILT_CLI_CDUT].first.val); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-last-page-id", clients[ILT_CLI_CDUT].last.val); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-num-pf-init-pages", qed_get_cdut_num_pf_init_pages(p_hwfn)); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-num-vf-init-pages", qed_get_cdut_num_vf_init_pages(p_hwfn)); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-num-pf-work-pages", qed_get_cdut_num_pf_work_pages(p_hwfn)); offset += qed_dump_num_param(dump_buf + offset, dump, "cdut-num-vf-work-pages", qed_get_cdut_num_vf_work_pages(p_hwfn)); offset += qed_dump_num_param(dump_buf + offset, dump, "max-task-ctx-size", p_hwfn->p_cxt_mngr->task_ctx_size); offset += qed_dump_num_param(dump_buf + offset, dump, "first-vf-id-in-pf", p_hwfn->p_cxt_mngr->first_vf_in_pf); offset += qed_dump_num_param(dump_buf + offset, dump, "num-vfs-in-pf", p_hwfn->p_cxt_mngr->vf_count); offset += qed_dump_num_param(dump_buf + offset, dump, "ptr-size-bytes", sizeof(void *)); offset += qed_dump_num_param(dump_buf + offset, dump, "pf-start-line", p_hwfn->p_cxt_mngr->pf_start_line); offset += qed_dump_num_param(dump_buf + offset, dump, "page-mem-desc-size-dwords", PAGE_MEM_DESC_SIZE_DWORDS); offset += qed_dump_num_param(dump_buf + offset, dump, "ilt-shadow-size", p_hwfn->p_cxt_mngr->ilt_shadow_size); *full_dump_size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "dump-size-full", 0); *actual_dump_size_param_offset = offset; offset += qed_dump_num_param(dump_buf + offset, dump, "dump-size-actual", 0); offset += qed_dump_num_param(dump_buf + offset, dump, "iscsi_task_pages", p_hwfn->p_cxt_mngr->iscsi_task_pages); offset += qed_dump_num_param(dump_buf + offset, dump, "fcoe_task_pages", p_hwfn->p_cxt_mngr->fcoe_task_pages); offset += qed_dump_num_param(dump_buf + offset, dump, "roce_task_pages", p_hwfn->p_cxt_mngr->roce_task_pages); offset += qed_dump_num_param(dump_buf + offset, dump, "eth_task_pages", p_hwfn->p_cxt_mngr->eth_task_pages); offset += qed_dump_num_param(dump_buf + offset, dump, "src-first-page-id", clients[ILT_CLI_SRC].first.val); offset += qed_dump_num_param(dump_buf + offset, dump, "src-last-page-id", clients[ILT_CLI_SRC].last.val); offset += qed_dump_num_param(dump_buf + offset, dump, "src-is-active", clients[ILT_CLI_SRC].active); /* Additional/Less parameters require matching of number in call to * dump_common_global_params() */ return offset; } /* Dump section containing number of PF CIDs per connection type. * Part of ilt dump process. * Returns the dumped size in dwords. */ static u32 qed_ilt_dump_dump_num_pf_cids(struct qed_hwfn *p_hwfn, u32 *dump_buf, bool dump, u32 *valid_conn_pf_cids) { u32 num_pf_cids = 0; u32 offset = 0; u8 conn_type; offset += qed_dump_section_hdr(dump_buf + offset, dump, "num_pf_cids_per_conn_type", 1); offset += qed_dump_num_param(dump_buf + offset, dump, "size", NUM_OF_CONNECTION_TYPES); for (conn_type = 0, *valid_conn_pf_cids = 0; conn_type < NUM_OF_CONNECTION_TYPES; conn_type++, offset++) { num_pf_cids = p_hwfn->p_cxt_mngr->conn_cfg[conn_type].cid_count; if (dump) *(dump_buf + offset) = num_pf_cids; *valid_conn_pf_cids += num_pf_cids; } return offset; } /* Dump section containing number of VF CIDs per connection type * Part of ilt dump process. * Returns the dumped size in dwords. */ static u32 qed_ilt_dump_dump_num_vf_cids(struct qed_hwfn *p_hwfn, u32 *dump_buf, bool dump, u32 *valid_conn_vf_cids) { u32 num_vf_cids = 0; u32 offset = 0; u8 conn_type; offset += qed_dump_section_hdr(dump_buf + offset, dump, "num_vf_cids_per_conn_type", 1); offset += qed_dump_num_param(dump_buf + offset, dump, "size", NUM_OF_CONNECTION_TYPES); for (conn_type = 0, *valid_conn_vf_cids = 0; conn_type < NUM_OF_CONNECTION_TYPES; conn_type++, offset++) { num_vf_cids = p_hwfn->p_cxt_mngr->conn_cfg[conn_type].cids_per_vf; if (dump) *(dump_buf + offset) = num_vf_cids; *valid_conn_vf_cids += num_vf_cids; } return offset; } /* Performs ILT Dump to the specified buffer. * buf_size_in_dwords - The dumped buffer size. * Returns the dumped size in dwords. */ static u32 qed_ilt_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, bool dump) { #if ((!defined VMWARE) && (!defined UEFI)) struct qed_ilt_client_cfg *clients = p_hwfn->p_cxt_mngr->clients; #endif u32 valid_conn_vf_cids = 0, valid_conn_vf_pages, offset = 0, real_dumped_size = 0; u32 valid_conn_pf_cids = 0, valid_conn_pf_pages, num_pages; u32 num_cids_per_page, conn_ctx_size; u32 cduc_page_size, cdut_page_size; u32 actual_dump_size_in_dwords = 0; struct phys_mem_desc *ilt_pages; u32 actul_dump_off = 0; u32 last_section_size; u32 full_dump_off = 0; u32 section_size = 0; bool continue_dump; u32 page_id; last_section_size = qed_dump_last_section(NULL, 0, false); cduc_page_size = 1 << (clients[ILT_CLI_CDUC].p_size.val + PXP_ILT_PAGE_SIZE_NUM_BITS_MIN); cdut_page_size = 1 << (clients[ILT_CLI_CDUT].p_size.val + PXP_ILT_PAGE_SIZE_NUM_BITS_MIN); conn_ctx_size = p_hwfn->p_cxt_mngr->conn_ctx_size; num_cids_per_page = (int)(cduc_page_size / conn_ctx_size); ilt_pages = p_hwfn->p_cxt_mngr->ilt_shadow; continue_dump = dump; /* if need to dump then save memory for the last section * (last section calculates CRC of dumped data) */ if (dump) { if (buf_size_in_dwords >= last_section_size) { buf_size_in_dwords -= last_section_size; } else { continue_dump = false; actual_dump_size_in_dwords = offset; } } /* Dump global params */ /* if need to dump then first check that there is enough memory * in dumped buffer for this section calculate the size of this * section without dumping. if there is not enough memory - then * stop the dumping. */ if (continue_dump) { section_size = qed_ilt_dump_dump_common_global_params(p_hwfn, p_ptt, NULL, false, cduc_page_size, conn_ctx_size, cdut_page_size, &full_dump_off, &actul_dump_off); if (offset + section_size > buf_size_in_dwords) { continue_dump = false; actual_dump_size_in_dwords = offset; } } offset += qed_ilt_dump_dump_common_global_params(p_hwfn, p_ptt, dump_buf + offset, continue_dump, cduc_page_size, conn_ctx_size, cdut_page_size, &full_dump_off, &actul_dump_off); /* Dump section containing number of PF CIDs per connection type * If need to dump then first check that there is enough memory in * dumped buffer for this section. */ if (continue_dump) { section_size = qed_ilt_dump_dump_num_pf_cids(p_hwfn, NULL, false, &valid_conn_pf_cids); if (offset + section_size > buf_size_in_dwords) { continue_dump = false; actual_dump_size_in_dwords = offset; } } offset += qed_ilt_dump_dump_num_pf_cids(p_hwfn, dump_buf + offset, continue_dump, &valid_conn_pf_cids); /* Dump section containing number of VF CIDs per connection type * If need to dump then first check that there is enough memory in * dumped buffer for this section. */ if (continue_dump) { section_size = qed_ilt_dump_dump_num_vf_cids(p_hwfn, NULL, false, &valid_conn_vf_cids); if (offset + section_size > buf_size_in_dwords) { continue_dump = false; actual_dump_size_in_dwords = offset; } } offset += qed_ilt_dump_dump_num_vf_cids(p_hwfn, dump_buf + offset, continue_dump, &valid_conn_vf_cids); /* Dump section containing physical memory descriptors for each * ILT page. */ num_pages = p_hwfn->p_cxt_mngr->ilt_shadow_size; /* If need to dump then first check that there is enough memory * in dumped buffer for the section header. */ if (continue_dump) { section_size = qed_dump_section_hdr(NULL, false, "ilt_page_desc", 1) + qed_dump_num_param(NULL, false, "size", num_pages * PAGE_MEM_DESC_SIZE_DWORDS); if (offset + section_size > buf_size_in_dwords) { continue_dump = false; actual_dump_size_in_dwords = offset; } } offset += qed_dump_section_hdr(dump_buf + offset, continue_dump, "ilt_page_desc", 1); offset += qed_dump_num_param(dump_buf + offset, continue_dump, "size", num_pages * PAGE_MEM_DESC_SIZE_DWORDS); /* Copy memory descriptors to dump buffer * If need to dump then dump till the dump buffer size */ if (continue_dump) { for (page_id = 0; page_id < num_pages; page_id++, offset += PAGE_MEM_DESC_SIZE_DWORDS) { if (continue_dump && (offset + PAGE_MEM_DESC_SIZE_DWORDS <= buf_size_in_dwords)) { memcpy(dump_buf + offset, &ilt_pages[page_id], DWORDS_TO_BYTES (PAGE_MEM_DESC_SIZE_DWORDS)); } else { if (continue_dump) { continue_dump = false; actual_dump_size_in_dwords = offset; } } } } else { offset += num_pages * PAGE_MEM_DESC_SIZE_DWORDS; } valid_conn_pf_pages = DIV_ROUND_UP(valid_conn_pf_cids, num_cids_per_page); valid_conn_vf_pages = DIV_ROUND_UP(valid_conn_vf_cids, num_cids_per_page); /* Dump ILT pages IDs */ qed_ilt_dump_pages_section(p_hwfn, dump_buf, &offset, &continue_dump, valid_conn_pf_pages, valid_conn_vf_pages, ilt_pages, true, buf_size_in_dwords, &actual_dump_size_in_dwords); /* Dump ILT pages memory */ qed_ilt_dump_pages_section(p_hwfn, dump_buf, &offset, &continue_dump, valid_conn_pf_pages, valid_conn_vf_pages, ilt_pages, false, buf_size_in_dwords, &actual_dump_size_in_dwords); real_dumped_size = (continue_dump == dump) ? offset : actual_dump_size_in_dwords; qed_dump_num_param(dump_buf + full_dump_off, dump, "full-dump-size", offset + last_section_size); qed_dump_num_param(dump_buf + actul_dump_off, dump, "actual-dump-size", real_dumped_size + last_section_size); /* Dump last section */ real_dumped_size += qed_dump_last_section(dump_buf, real_dumped_size, dump); return real_dumped_size; } /***************************** Public Functions *******************************/ enum dbg_status qed_dbg_set_bin_ptr(struct qed_hwfn *p_hwfn, const u8 * const bin_ptr) { struct bin_buffer_hdr *buf_hdrs = (struct bin_buffer_hdr *)bin_ptr; u8 buf_id; /* Convert binary data to debug arrays */ for (buf_id = 0; buf_id < MAX_BIN_DBG_BUFFER_TYPE; buf_id++) qed_set_dbg_bin_buf(p_hwfn, buf_id, (u32 *)(bin_ptr + buf_hdrs[buf_id].offset), buf_hdrs[buf_id].length); return DBG_STATUS_OK; } static enum dbg_status qed_dbg_set_app_ver(u32 ver) { if (ver < TOOLS_VERSION) return DBG_STATUS_UNSUPPORTED_APP_VERSION; s_app_ver = ver; return DBG_STATUS_OK; } bool qed_read_fw_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct fw_info *fw_info) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u8 storm_id; for (storm_id = 0; storm_id < MAX_DBG_STORMS; storm_id++) { struct storm_defs *storm = &s_storm_defs[storm_id]; /* Skip Storm if it's in reset */ if (dev_data->block_in_reset[storm->sem_block_id]) continue; /* Read FW info for the current Storm */ qed_read_storm_fw_info(p_hwfn, p_ptt, storm_id, fw_info); return true; } return false; } enum dbg_status qed_dbg_grc_config(struct qed_hwfn *p_hwfn, enum dbg_grc_params grc_param, u32 val) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; enum dbg_status status; int i; DP_VERBOSE(p_hwfn, QED_MSG_DEBUG, "dbg_grc_config: paramId = %d, val = %d\n", grc_param, val); status = qed_dbg_dev_init(p_hwfn); if (status != DBG_STATUS_OK) return status; /* Initializes the GRC parameters (if not initialized). Needed in order * to set the default parameter values for the first time. */ qed_dbg_grc_init_params(p_hwfn); if (grc_param >= MAX_DBG_GRC_PARAMS) return DBG_STATUS_INVALID_ARGS; if (val < s_grc_param_defs[grc_param].min || val > s_grc_param_defs[grc_param].max) return DBG_STATUS_INVALID_ARGS; if (s_grc_param_defs[grc_param].is_preset) { /* Preset param */ /* Disabling a preset is not allowed. Call * dbg_grc_set_params_default instead. */ if (!val) return DBG_STATUS_INVALID_ARGS; /* Update all params with the preset values */ for (i = 0; i < MAX_DBG_GRC_PARAMS; i++) { struct grc_param_defs *defs = &s_grc_param_defs[i]; u32 preset_val; /* Skip persistent params */ if (defs->is_persistent) continue; /* Find preset value */ if (grc_param == DBG_GRC_PARAM_EXCLUDE_ALL) preset_val = defs->exclude_all_preset_val; else if (grc_param == DBG_GRC_PARAM_CRASH) preset_val = defs->crash_preset_val[dev_data->chip_id]; else return DBG_STATUS_INVALID_ARGS; qed_grc_set_param(p_hwfn, i, preset_val); } } else { /* Regular param - set its value */ qed_grc_set_param(p_hwfn, grc_param, val); } return DBG_STATUS_OK; } /* Assign default GRC param values */ void qed_dbg_grc_set_params_default(struct qed_hwfn *p_hwfn) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; u32 i; for (i = 0; i < MAX_DBG_GRC_PARAMS; i++) if (!s_grc_param_defs[i].is_persistent) dev_data->grc.param_val[i] = s_grc_param_defs[i].default_val[dev_data->chip_id]; } enum dbg_status qed_dbg_grc_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; if (!p_hwfn->dbg_arrays[BIN_BUF_DBG_MODE_TREE].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_DUMP_REG].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_DUMP_MEM].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_BLOCKS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_REGS].ptr) return DBG_STATUS_DBG_ARRAY_NOT_SET; return qed_grc_dump(p_hwfn, p_ptt, NULL, false, buf_size); } enum dbg_status qed_dbg_grc_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_grc_get_dump_buf_size(p_hwfn, p_ptt, &needed_buf_size_in_dwords); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Doesn't do anything, needed for compile time asserts */ qed_static_asserts(); /* GRC Dump */ status = qed_grc_dump(p_hwfn, p_ptt, dump_buf, true, num_dumped_dwords); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return status; } enum dbg_status qed_dbg_idle_chk_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; struct idle_chk_data *idle_chk = &dev_data->idle_chk; enum dbg_status status; *buf_size = 0; status = qed_dbg_dev_init(p_hwfn); if (status != DBG_STATUS_OK) return status; if (!p_hwfn->dbg_arrays[BIN_BUF_DBG_MODE_TREE].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_REGS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_IMMS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_RULES].ptr) return DBG_STATUS_DBG_ARRAY_NOT_SET; if (!idle_chk->buf_size_set) { idle_chk->buf_size = qed_idle_chk_dump(p_hwfn, p_ptt, NULL, false); idle_chk->buf_size_set = true; } *buf_size = idle_chk->buf_size; return DBG_STATUS_OK; } enum dbg_status qed_dbg_idle_chk_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_idle_chk_get_dump_buf_size(p_hwfn, p_ptt, &needed_buf_size_in_dwords); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Update reset state */ qed_grc_unreset_blocks(p_hwfn, p_ptt, true); qed_update_blocks_reset_state(p_hwfn, p_ptt); /* Idle Check Dump */ *num_dumped_dwords = qed_idle_chk_dump(p_hwfn, p_ptt, dump_buf, true); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return DBG_STATUS_OK; } enum dbg_status qed_dbg_mcp_trace_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; return qed_mcp_trace_dump(p_hwfn, p_ptt, NULL, false, buf_size); } enum dbg_status qed_dbg_mcp_trace_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords; enum dbg_status status; status = qed_dbg_mcp_trace_get_dump_buf_size(p_hwfn, p_ptt, &needed_buf_size_in_dwords); if (status != DBG_STATUS_OK && status != DBG_STATUS_NVRAM_GET_IMAGE_FAILED) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Update reset state */ qed_update_blocks_reset_state(p_hwfn, p_ptt); /* Perform dump */ status = qed_mcp_trace_dump(p_hwfn, p_ptt, dump_buf, true, num_dumped_dwords); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return status; } enum dbg_status qed_dbg_reg_fifo_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; return qed_reg_fifo_dump(p_hwfn, p_ptt, NULL, false, buf_size); } enum dbg_status qed_dbg_reg_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_reg_fifo_get_dump_buf_size(p_hwfn, p_ptt, &needed_buf_size_in_dwords); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Update reset state */ qed_update_blocks_reset_state(p_hwfn, p_ptt); status = qed_reg_fifo_dump(p_hwfn, p_ptt, dump_buf, true, num_dumped_dwords); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return status; } enum dbg_status qed_dbg_igu_fifo_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; return qed_igu_fifo_dump(p_hwfn, p_ptt, NULL, false, buf_size); } enum dbg_status qed_dbg_igu_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_igu_fifo_get_dump_buf_size(p_hwfn, p_ptt, &needed_buf_size_in_dwords); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Update reset state */ qed_update_blocks_reset_state(p_hwfn, p_ptt); status = qed_igu_fifo_dump(p_hwfn, p_ptt, dump_buf, true, num_dumped_dwords); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return status; } enum dbg_status qed_dbg_protection_override_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; return qed_protection_override_dump(p_hwfn, p_ptt, NULL, false, buf_size); } enum dbg_status qed_dbg_protection_override_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords, *p_size = &needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_protection_override_get_dump_buf_size(p_hwfn, p_ptt, p_size); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; /* Update reset state */ qed_update_blocks_reset_state(p_hwfn, p_ptt); status = qed_protection_override_dump(p_hwfn, p_ptt, dump_buf, true, num_dumped_dwords); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return status; } enum dbg_status qed_dbg_fw_asserts_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; /* Update reset state */ qed_update_blocks_reset_state(p_hwfn, p_ptt); *buf_size = qed_fw_asserts_dump(p_hwfn, p_ptt, NULL, false); return DBG_STATUS_OK; } enum dbg_status qed_dbg_fw_asserts_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { u32 needed_buf_size_in_dwords, *p_size = &needed_buf_size_in_dwords; enum dbg_status status; *num_dumped_dwords = 0; status = qed_dbg_fw_asserts_get_dump_buf_size(p_hwfn, p_ptt, p_size); if (status != DBG_STATUS_OK) return status; if (buf_size_in_dwords < needed_buf_size_in_dwords) return DBG_STATUS_DUMP_BUF_TOO_SMALL; *num_dumped_dwords = qed_fw_asserts_dump(p_hwfn, p_ptt, dump_buf, true); /* Revert GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return DBG_STATUS_OK; } static enum dbg_status qed_dbg_ilt_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf_size) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); *buf_size = 0; if (status != DBG_STATUS_OK) return status; *buf_size = qed_ilt_dump(p_hwfn, p_ptt, NULL, 0, false); return DBG_STATUS_OK; } static enum dbg_status qed_dbg_ilt_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size_in_dwords, u32 *num_dumped_dwords) { *num_dumped_dwords = qed_ilt_dump(p_hwfn, p_ptt, dump_buf, buf_size_in_dwords, true); /* Reveret GRC params to their default */ qed_dbg_grc_set_params_default(p_hwfn); return DBG_STATUS_OK; } enum dbg_status qed_dbg_read_attn(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, enum block_id block_id, enum dbg_attn_type attn_type, bool clear_status, struct dbg_attn_block_result *results) { enum dbg_status status = qed_dbg_dev_init(p_hwfn); u8 reg_idx, num_attn_regs, num_result_regs = 0; const struct dbg_attn_reg *attn_reg_arr; if (status != DBG_STATUS_OK) return status; if (!p_hwfn->dbg_arrays[BIN_BUF_DBG_MODE_TREE].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_BLOCKS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_REGS].ptr) return DBG_STATUS_DBG_ARRAY_NOT_SET; attn_reg_arr = qed_get_block_attn_regs(p_hwfn, block_id, attn_type, &num_attn_regs); for (reg_idx = 0; reg_idx < num_attn_regs; reg_idx++) { const struct dbg_attn_reg *reg_data = &attn_reg_arr[reg_idx]; struct dbg_attn_reg_result *reg_result; u32 sts_addr, sts_val; u16 modes_buf_offset; bool eval_mode; /* Check mode */ eval_mode = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_EVAL_MODE) > 0; modes_buf_offset = GET_FIELD(reg_data->mode.data, DBG_MODE_HDR_MODES_BUF_OFFSET); if (eval_mode && !qed_is_mode_match(p_hwfn, &modes_buf_offset)) continue; /* Mode match - read attention status register */ sts_addr = DWORDS_TO_BYTES(clear_status ? reg_data->sts_clr_address : GET_FIELD(reg_data->data, DBG_ATTN_REG_STS_ADDRESS)); sts_val = qed_rd(p_hwfn, p_ptt, sts_addr); if (!sts_val) continue; /* Non-zero attention status - add to results */ reg_result = &results->reg_results[num_result_regs]; SET_FIELD(reg_result->data, DBG_ATTN_REG_RESULT_STS_ADDRESS, sts_addr); SET_FIELD(reg_result->data, DBG_ATTN_REG_RESULT_NUM_REG_ATTN, GET_FIELD(reg_data->data, DBG_ATTN_REG_NUM_REG_ATTN)); reg_result->block_attn_offset = reg_data->block_attn_offset; reg_result->sts_val = sts_val; reg_result->mask_val = qed_rd(p_hwfn, p_ptt, DWORDS_TO_BYTES (reg_data->mask_address)); num_result_regs++; } results->block_id = (u8)block_id; results->names_offset = qed_get_block_attn_data(p_hwfn, block_id, attn_type)->names_offset; SET_FIELD(results->data, DBG_ATTN_BLOCK_RESULT_ATTN_TYPE, attn_type); SET_FIELD(results->data, DBG_ATTN_BLOCK_RESULT_NUM_REGS, num_result_regs); return DBG_STATUS_OK; } /******************************* Data Types **********************************/ /* REG fifo element */ struct reg_fifo_element { u64 data; #define REG_FIFO_ELEMENT_ADDRESS_SHIFT 0 #define REG_FIFO_ELEMENT_ADDRESS_MASK 0x7fffff #define REG_FIFO_ELEMENT_ACCESS_SHIFT 23 #define REG_FIFO_ELEMENT_ACCESS_MASK 0x1 #define REG_FIFO_ELEMENT_PF_SHIFT 24 #define REG_FIFO_ELEMENT_PF_MASK 0xf #define REG_FIFO_ELEMENT_VF_SHIFT 28 #define REG_FIFO_ELEMENT_VF_MASK 0xff #define REG_FIFO_ELEMENT_PORT_SHIFT 36 #define REG_FIFO_ELEMENT_PORT_MASK 0x3 #define REG_FIFO_ELEMENT_PRIVILEGE_SHIFT 38 #define REG_FIFO_ELEMENT_PRIVILEGE_MASK 0x3 #define REG_FIFO_ELEMENT_PROTECTION_SHIFT 40 #define REG_FIFO_ELEMENT_PROTECTION_MASK 0x7 #define REG_FIFO_ELEMENT_MASTER_SHIFT 43 #define REG_FIFO_ELEMENT_MASTER_MASK 0xf #define REG_FIFO_ELEMENT_ERROR_SHIFT 47 #define REG_FIFO_ELEMENT_ERROR_MASK 0x1f }; /* REG fifo error element */ struct reg_fifo_err { u32 err_code; const char *err_msg; }; /* IGU fifo element */ struct igu_fifo_element { u32 dword0; #define IGU_FIFO_ELEMENT_DWORD0_FID_SHIFT 0 #define IGU_FIFO_ELEMENT_DWORD0_FID_MASK 0xff #define IGU_FIFO_ELEMENT_DWORD0_IS_PF_SHIFT 8 #define IGU_FIFO_ELEMENT_DWORD0_IS_PF_MASK 0x1 #define IGU_FIFO_ELEMENT_DWORD0_SOURCE_SHIFT 9 #define IGU_FIFO_ELEMENT_DWORD0_SOURCE_MASK 0xf #define IGU_FIFO_ELEMENT_DWORD0_ERR_TYPE_SHIFT 13 #define IGU_FIFO_ELEMENT_DWORD0_ERR_TYPE_MASK 0xf #define IGU_FIFO_ELEMENT_DWORD0_CMD_ADDR_SHIFT 17 #define IGU_FIFO_ELEMENT_DWORD0_CMD_ADDR_MASK 0x7fff u32 dword1; u32 dword2; #define IGU_FIFO_ELEMENT_DWORD12_IS_WR_CMD_SHIFT 0 #define IGU_FIFO_ELEMENT_DWORD12_IS_WR_CMD_MASK 0x1 #define IGU_FIFO_ELEMENT_DWORD12_WR_DATA_SHIFT 1 #define IGU_FIFO_ELEMENT_DWORD12_WR_DATA_MASK 0xffffffff u32 reserved; }; struct igu_fifo_wr_data { u32 data; #define IGU_FIFO_WR_DATA_PROD_CONS_SHIFT 0 #define IGU_FIFO_WR_DATA_PROD_CONS_MASK 0xffffff #define IGU_FIFO_WR_DATA_UPDATE_FLAG_SHIFT 24 #define IGU_FIFO_WR_DATA_UPDATE_FLAG_MASK 0x1 #define IGU_FIFO_WR_DATA_EN_DIS_INT_FOR_SB_SHIFT 25 #define IGU_FIFO_WR_DATA_EN_DIS_INT_FOR_SB_MASK 0x3 #define IGU_FIFO_WR_DATA_SEGMENT_SHIFT 27 #define IGU_FIFO_WR_DATA_SEGMENT_MASK 0x1 #define IGU_FIFO_WR_DATA_TIMER_MASK_SHIFT 28 #define IGU_FIFO_WR_DATA_TIMER_MASK_MASK 0x1 #define IGU_FIFO_WR_DATA_CMD_TYPE_SHIFT 31 #define IGU_FIFO_WR_DATA_CMD_TYPE_MASK 0x1 }; struct igu_fifo_cleanup_wr_data { u32 data; #define IGU_FIFO_CLEANUP_WR_DATA_RESERVED_SHIFT 0 #define IGU_FIFO_CLEANUP_WR_DATA_RESERVED_MASK 0x7ffffff #define IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_VAL_SHIFT 27 #define IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_VAL_MASK 0x1 #define IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_TYPE_SHIFT 28 #define IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_TYPE_MASK 0x7 #define IGU_FIFO_CLEANUP_WR_DATA_CMD_TYPE_SHIFT 31 #define IGU_FIFO_CLEANUP_WR_DATA_CMD_TYPE_MASK 0x1 }; /* Protection override element */ struct protection_override_element { u64 data; #define PROTECTION_OVERRIDE_ELEMENT_ADDRESS_SHIFT 0 #define PROTECTION_OVERRIDE_ELEMENT_ADDRESS_MASK 0x7fffff #define PROTECTION_OVERRIDE_ELEMENT_WINDOW_SIZE_SHIFT 23 #define PROTECTION_OVERRIDE_ELEMENT_WINDOW_SIZE_MASK 0xffffff #define PROTECTION_OVERRIDE_ELEMENT_READ_SHIFT 47 #define PROTECTION_OVERRIDE_ELEMENT_READ_MASK 0x1 #define PROTECTION_OVERRIDE_ELEMENT_WRITE_SHIFT 48 #define PROTECTION_OVERRIDE_ELEMENT_WRITE_MASK 0x1 #define PROTECTION_OVERRIDE_ELEMENT_READ_PROTECTION_SHIFT 49 #define PROTECTION_OVERRIDE_ELEMENT_READ_PROTECTION_MASK 0x7 #define PROTECTION_OVERRIDE_ELEMENT_WRITE_PROTECTION_SHIFT 52 #define PROTECTION_OVERRIDE_ELEMENT_WRITE_PROTECTION_MASK 0x7 }; enum igu_fifo_sources { IGU_SRC_PXP0, IGU_SRC_PXP1, IGU_SRC_PXP2, IGU_SRC_PXP3, IGU_SRC_PXP4, IGU_SRC_PXP5, IGU_SRC_PXP6, IGU_SRC_PXP7, IGU_SRC_CAU, IGU_SRC_ATTN, IGU_SRC_GRC }; enum igu_fifo_addr_types { IGU_ADDR_TYPE_MSIX_MEM, IGU_ADDR_TYPE_WRITE_PBA, IGU_ADDR_TYPE_WRITE_INT_ACK, IGU_ADDR_TYPE_WRITE_ATTN_BITS, IGU_ADDR_TYPE_READ_INT, IGU_ADDR_TYPE_WRITE_PROD_UPDATE, IGU_ADDR_TYPE_RESERVED }; struct igu_fifo_addr_data { u16 start_addr; u16 end_addr; char *desc; char *vf_desc; enum igu_fifo_addr_types type; }; /******************************** Constants **********************************/ #define MAX_MSG_LEN 1024 #define MCP_TRACE_MAX_MODULE_LEN 8 #define MCP_TRACE_FORMAT_MAX_PARAMS 3 #define MCP_TRACE_FORMAT_PARAM_WIDTH \ (MCP_TRACE_FORMAT_P2_SIZE_OFFSET - MCP_TRACE_FORMAT_P1_SIZE_OFFSET) #define REG_FIFO_ELEMENT_ADDR_FACTOR 4 #define REG_FIFO_ELEMENT_IS_PF_VF_VAL 127 #define PROTECTION_OVERRIDE_ELEMENT_ADDR_FACTOR 4 /***************************** Constant Arrays *******************************/ /* Status string array */ static const char * const s_status_str[] = { /* DBG_STATUS_OK */ "Operation completed successfully", /* DBG_STATUS_APP_VERSION_NOT_SET */ "Debug application version wasn't set", /* DBG_STATUS_UNSUPPORTED_APP_VERSION */ "Unsupported debug application version", /* DBG_STATUS_DBG_BLOCK_NOT_RESET */ "The debug block wasn't reset since the last recording", /* DBG_STATUS_INVALID_ARGS */ "Invalid arguments", /* DBG_STATUS_OUTPUT_ALREADY_SET */ "The debug output was already set", /* DBG_STATUS_INVALID_PCI_BUF_SIZE */ "Invalid PCI buffer size", /* DBG_STATUS_PCI_BUF_ALLOC_FAILED */ "PCI buffer allocation failed", /* DBG_STATUS_PCI_BUF_NOT_ALLOCATED */ "A PCI buffer wasn't allocated", /* DBG_STATUS_INVALID_FILTER_TRIGGER_DWORDS */ "The filter/trigger constraint dword offsets are not enabled for recording", /* DBG_STATUS_NO_MATCHING_FRAMING_MODE */ "No matching framing mode", /* DBG_STATUS_VFC_READ_ERROR */ "Error reading from VFC", /* DBG_STATUS_STORM_ALREADY_ENABLED */ "The Storm was already enabled", /* DBG_STATUS_STORM_NOT_ENABLED */ "The specified Storm wasn't enabled", /* DBG_STATUS_BLOCK_ALREADY_ENABLED */ "The block was already enabled", /* DBG_STATUS_BLOCK_NOT_ENABLED */ "The specified block wasn't enabled", /* DBG_STATUS_NO_INPUT_ENABLED */ "No input was enabled for recording", /* DBG_STATUS_NO_FILTER_TRIGGER_256B */ "Filters and triggers are not allowed in E4 256-bit mode", /* DBG_STATUS_FILTER_ALREADY_ENABLED */ "The filter was already enabled", /* DBG_STATUS_TRIGGER_ALREADY_ENABLED */ "The trigger was already enabled", /* DBG_STATUS_TRIGGER_NOT_ENABLED */ "The trigger wasn't enabled", /* DBG_STATUS_CANT_ADD_CONSTRAINT */ "A constraint can be added only after a filter was enabled or a trigger state was added", /* DBG_STATUS_TOO_MANY_TRIGGER_STATES */ "Cannot add more than 3 trigger states", /* DBG_STATUS_TOO_MANY_CONSTRAINTS */ "Cannot add more than 4 constraints per filter or trigger state", /* DBG_STATUS_RECORDING_NOT_STARTED */ "The recording wasn't started", /* DBG_STATUS_DATA_DIDNT_TRIGGER */ "A trigger was configured, but it didn't trigger", /* DBG_STATUS_NO_DATA_RECORDED */ "No data was recorded", /* DBG_STATUS_DUMP_BUF_TOO_SMALL */ "Dump buffer is too small", /* DBG_STATUS_DUMP_NOT_CHUNK_ALIGNED */ "Dumped data is not aligned to chunks", /* DBG_STATUS_UNKNOWN_CHIP */ "Unknown chip", /* DBG_STATUS_VIRT_MEM_ALLOC_FAILED */ "Failed allocating virtual memory", /* DBG_STATUS_BLOCK_IN_RESET */ "The input block is in reset", /* DBG_STATUS_INVALID_TRACE_SIGNATURE */ "Invalid MCP trace signature found in NVRAM", /* DBG_STATUS_INVALID_NVRAM_BUNDLE */ "Invalid bundle ID found in NVRAM", /* DBG_STATUS_NVRAM_GET_IMAGE_FAILED */ "Failed getting NVRAM image", /* DBG_STATUS_NON_ALIGNED_NVRAM_IMAGE */ "NVRAM image is not dword-aligned", /* DBG_STATUS_NVRAM_READ_FAILED */ "Failed reading from NVRAM", /* DBG_STATUS_IDLE_CHK_PARSE_FAILED */ "Idle check parsing failed", /* DBG_STATUS_MCP_TRACE_BAD_DATA */ "MCP Trace data is corrupt", /* DBG_STATUS_MCP_TRACE_NO_META */ "Dump doesn't contain meta data - it must be provided in image file", /* DBG_STATUS_MCP_COULD_NOT_HALT */ "Failed to halt MCP", /* DBG_STATUS_MCP_COULD_NOT_RESUME */ "Failed to resume MCP after halt", /* DBG_STATUS_RESERVED0 */ "", /* DBG_STATUS_SEMI_FIFO_NOT_EMPTY */ "Failed to empty SEMI sync FIFO", /* DBG_STATUS_IGU_FIFO_BAD_DATA */ "IGU FIFO data is corrupt", /* DBG_STATUS_MCP_COULD_NOT_MASK_PRTY */ "MCP failed to mask parities", /* DBG_STATUS_FW_ASSERTS_PARSE_FAILED */ "FW Asserts parsing failed", /* DBG_STATUS_REG_FIFO_BAD_DATA */ "GRC FIFO data is corrupt", /* DBG_STATUS_PROTECTION_OVERRIDE_BAD_DATA */ "Protection Override data is corrupt", /* DBG_STATUS_DBG_ARRAY_NOT_SET */ "Debug arrays were not set (when using binary files, dbg_set_bin_ptr must be called)", /* DBG_STATUS_RESERVED1 */ "", /* DBG_STATUS_NON_MATCHING_LINES */ "Non-matching debug lines - in E4, all lines must be of the same type (either 128b or 256b)", /* DBG_STATUS_INSUFFICIENT_HW_IDS */ "Insufficient HW IDs. Try to record less Storms/blocks", /* DBG_STATUS_DBG_BUS_IN_USE */ "The debug bus is in use", /* DBG_STATUS_INVALID_STORM_DBG_MODE */ "The storm debug mode is not supported in the current chip", /* DBG_STATUS_OTHER_ENGINE_BB_ONLY */ "Other engine is supported only in BB", /* DBG_STATUS_FILTER_SINGLE_HW_ID */ "The configured filter mode requires a single Storm/block input", /* DBG_STATUS_TRIGGER_SINGLE_HW_ID */ "The configured filter mode requires that all the constraints of a single trigger state will be defined on a single Storm/block input", /* DBG_STATUS_MISSING_TRIGGER_STATE_STORM */ "When triggering on Storm data, the Storm to trigger on must be specified", /* DBG_STATUS_MDUMP2_FAILED_TO_REQUEST_OFFSIZE */ "Failed to request MDUMP2 Offsize", /* DBG_STATUS_MDUMP2_FAILED_VALIDATION_OF_DATA_CRC */ "Expected CRC (part of the MDUMP2 data) is different than the calculated CRC over that data", /* DBG_STATUS_MDUMP2_INVALID_SIGNATURE */ "Invalid Signature found at start of MDUMP2", /* DBG_STATUS_MDUMP2_INVALID_LOG_SIZE */ "Invalid Log Size of MDUMP2", /* DBG_STATUS_MDUMP2_INVALID_LOG_HDR */ "Invalid Log Header of MDUMP2", /* DBG_STATUS_MDUMP2_INVALID_LOG_DATA */ "Invalid Log Data of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_EXTRACTING_NUM_PORTS */ "Could not extract number of ports from regval buf of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_EXTRACTING_MFW_STATUS */ "Could not extract MFW (link) status from regval buf of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_DISPLAYING_LINKDUMP */ "Could not display linkdump of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_READING_PHY_CFG */ "Could not read PHY CFG of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_READING_PLL_MODE */ "Could not read PLL Mode of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_READING_LANE_REGS */ "Could not read TSCF/TSCE Lane Regs of MDUMP2", /* DBG_STATUS_MDUMP2_ERROR_ALLOCATING_BUF */ "Could not allocate MDUMP2 reg-val internal buffer" }; /* Idle check severity names array */ static const char * const s_idle_chk_severity_str[] = { "Error", "Error if no traffic", "Warning" }; /* MCP Trace level names array */ static const char * const s_mcp_trace_level_str[] = { "ERROR", "TRACE", "DEBUG" }; /* Access type names array */ static const char * const s_access_strs[] = { "read", "write" }; /* Privilege type names array */ static const char * const s_privilege_strs[] = { "VF", "PDA", "HV", "UA" }; /* Protection type names array */ static const char * const s_protection_strs[] = { "(default)", "(default)", "(default)", "(default)", "override VF", "override PDA", "override HV", "override UA" }; /* Master type names array */ static const char * const s_master_strs[] = { "???", "pxp", "mcp", "msdm", "psdm", "ysdm", "usdm", "tsdm", "xsdm", "dbu", "dmae", "jdap", "???", "???", "???", "???" }; /* REG FIFO error messages array */ static struct reg_fifo_err s_reg_fifo_errors[] = { {1, "grc timeout"}, {2, "address doesn't belong to any block"}, {4, "reserved address in block or write to read-only address"}, {8, "privilege/protection mismatch"}, {16, "path isolation error"}, {17, "RSL error"} }; /* IGU FIFO sources array */ static const char * const s_igu_fifo_source_strs[] = { "TSTORM", "MSTORM", "USTORM", "XSTORM", "YSTORM", "PSTORM", "PCIE", "NIG_QM_PBF", "CAU", "ATTN", "GRC", }; /* IGU FIFO error messages */ static const char * const s_igu_fifo_error_strs[] = { "no error", "length error", "function disabled", "VF sent command to attention address", "host sent prod update command", "read of during interrupt register while in MIMD mode", "access to PXP BAR reserved address", "producer update command to attention index", "unknown error", "SB index not valid", "SB relative index and FID not found", "FID not match", "command with error flag asserted (PCI error or CAU discard)", "VF sent cleanup and RF cleanup is disabled", "cleanup command on type bigger than 4" }; /* IGU FIFO address data */ static const struct igu_fifo_addr_data s_igu_fifo_addr_data[] = { {0x0, 0x101, "MSI-X Memory", NULL, IGU_ADDR_TYPE_MSIX_MEM}, {0x102, 0x1ff, "reserved", NULL, IGU_ADDR_TYPE_RESERVED}, {0x200, 0x200, "Write PBA[0:63]", NULL, IGU_ADDR_TYPE_WRITE_PBA}, {0x201, 0x201, "Write PBA[64:127]", "reserved", IGU_ADDR_TYPE_WRITE_PBA}, {0x202, 0x202, "Write PBA[128]", "reserved", IGU_ADDR_TYPE_WRITE_PBA}, {0x203, 0x3ff, "reserved", NULL, IGU_ADDR_TYPE_RESERVED}, {0x400, 0x5ef, "Write interrupt acknowledgment", NULL, IGU_ADDR_TYPE_WRITE_INT_ACK}, {0x5f0, 0x5f0, "Attention bits update", NULL, IGU_ADDR_TYPE_WRITE_ATTN_BITS}, {0x5f1, 0x5f1, "Attention bits set", NULL, IGU_ADDR_TYPE_WRITE_ATTN_BITS}, {0x5f2, 0x5f2, "Attention bits clear", NULL, IGU_ADDR_TYPE_WRITE_ATTN_BITS}, {0x5f3, 0x5f3, "Read interrupt 0:63 with mask", NULL, IGU_ADDR_TYPE_READ_INT}, {0x5f4, 0x5f4, "Read interrupt 0:31 with mask", NULL, IGU_ADDR_TYPE_READ_INT}, {0x5f5, 0x5f5, "Read interrupt 32:63 with mask", NULL, IGU_ADDR_TYPE_READ_INT}, {0x5f6, 0x5f6, "Read interrupt 0:63 without mask", NULL, IGU_ADDR_TYPE_READ_INT}, {0x5f7, 0x5ff, "reserved", NULL, IGU_ADDR_TYPE_RESERVED}, {0x600, 0x7ff, "Producer update", NULL, IGU_ADDR_TYPE_WRITE_PROD_UPDATE} }; /******************************** Variables **********************************/ /* Temporary buffer, used for print size calculations */ static char s_temp_buf[MAX_MSG_LEN]; /**************************** Private Functions ******************************/ static void qed_user_static_asserts(void) { } static u32 qed_cyclic_add(u32 a, u32 b, u32 size) { return (a + b) % size; } static u32 qed_cyclic_sub(u32 a, u32 b, u32 size) { return (size + a - b) % size; } /* Reads the specified number of bytes from the specified cyclic buffer (up to 4 * bytes) and returns them as a dword value. the specified buffer offset is * updated. */ static u32 qed_read_from_cyclic_buf(void *buf, u32 *offset, u32 buf_size, u8 num_bytes_to_read) { u8 i, *val_ptr, *bytes_buf = (u8 *)buf; u32 val = 0; val_ptr = (u8 *)&val; /* Assume running on a LITTLE ENDIAN and the buffer is network order * (BIG ENDIAN), as high order bytes are placed in lower memory address. */ for (i = 0; i < num_bytes_to_read; i++) { val_ptr[i] = bytes_buf[*offset]; *offset = qed_cyclic_add(*offset, 1, buf_size); } return val; } /* Reads and returns the next byte from the specified buffer. * The specified buffer offset is updated. */ static u8 qed_read_byte_from_buf(void *buf, u32 *offset) { return ((u8 *)buf)[(*offset)++]; } /* Reads and returns the next dword from the specified buffer. * The specified buffer offset is updated. */ static u32 qed_read_dword_from_buf(void *buf, u32 *offset) { u32 dword_val = *(u32 *)&((u8 *)buf)[*offset]; *offset += 4; return dword_val; } /* Reads the next string from the specified buffer, and copies it to the * specified pointer. The specified buffer offset is updated. */ static void qed_read_str_from_buf(void *buf, u32 *offset, u32 size, char *dest) { const char *source_str = &((const char *)buf)[*offset]; strncpy(dest, source_str, size); dest[size - 1] = '\0'; *offset += size; } /* Returns a pointer to the specified offset (in bytes) of the specified buffer. * If the specified buffer in NULL, a temporary buffer pointer is returned. */ static char *qed_get_buf_ptr(void *buf, u32 offset) { return buf ? (char *)buf + offset : s_temp_buf; } /* Reads a param from the specified buffer. Returns the number of dwords read. * If the returned str_param is NULL, the param is numeric and its value is * returned in num_param. * Otheriwise, the param is a string and its pointer is returned in str_param. */ static u32 qed_read_param(u32 *dump_buf, const char **param_name, const char **param_str_val, u32 *param_num_val) { char *char_buf = (char *)dump_buf; size_t offset = 0; /* Extract param name */ *param_name = char_buf; offset += strlen(*param_name) + 1; /* Check param type */ if (*(char_buf + offset++)) { /* String param */ *param_str_val = char_buf + offset; *param_num_val = 0; offset += strlen(*param_str_val) + 1; if (offset & 0x3) offset += (4 - (offset & 0x3)); } else { /* Numeric param */ *param_str_val = NULL; if (offset & 0x3) offset += (4 - (offset & 0x3)); *param_num_val = *(u32 *)(char_buf + offset); offset += 4; } return (u32)offset / 4; } /* Reads a section header from the specified buffer. * Returns the number of dwords read. */ static u32 qed_read_section_hdr(u32 *dump_buf, const char **section_name, u32 *num_section_params) { const char *param_str_val; return qed_read_param(dump_buf, section_name, ¶m_str_val, num_section_params); } /* Reads section params from the specified buffer and prints them to the results * buffer. Returns the number of dwords read. */ static u32 qed_print_section_params(u32 *dump_buf, u32 num_section_params, char *results_buf, u32 *num_chars_printed) { u32 i, dump_offset = 0, results_offset = 0; for (i = 0; i < num_section_params; i++) { const char *param_name, *param_str_val; u32 param_num_val = 0; dump_offset += qed_read_param(dump_buf + dump_offset, ¶m_name, ¶m_str_val, ¶m_num_val); if (param_str_val) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "%s: %s\n", param_name, param_str_val); else if (strcmp(param_name, "fw-timestamp")) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "%s: %d\n", param_name, param_num_val); } results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\n"); *num_chars_printed = results_offset; return dump_offset; } /* Returns the block name that matches the specified block ID, * or NULL if not found. */ static const char *qed_dbg_get_block_name(struct qed_hwfn *p_hwfn, enum block_id block_id) { const struct dbg_block_user *block = (const struct dbg_block_user *) p_hwfn->dbg_arrays[BIN_BUF_DBG_BLOCKS_USER_DATA].ptr + block_id; return (const char *)block->name; } static struct dbg_tools_user_data *qed_dbg_get_user_data(struct qed_hwfn *p_hwfn) { return (struct dbg_tools_user_data *)p_hwfn->dbg_user_info; } /* Parses the idle check rules and returns the number of characters printed. * In case of parsing error, returns 0. */ static u32 qed_parse_idle_chk_dump_rules(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 *dump_buf_end, u32 num_rules, bool print_fw_idle_chk, char *results_buf, u32 *num_errors, u32 *num_warnings) { /* Offset in results_buf in bytes */ u32 results_offset = 0; u32 rule_idx; u16 i, j; *num_errors = 0; *num_warnings = 0; /* Go over dumped results */ for (rule_idx = 0; rule_idx < num_rules && dump_buf < dump_buf_end; rule_idx++) { const struct dbg_idle_chk_rule_parsing_data *rule_parsing_data; struct dbg_idle_chk_result_hdr *hdr; const char *parsing_str, *lsi_msg; u32 parsing_str_offset; bool has_fw_msg; u8 curr_reg_id; hdr = (struct dbg_idle_chk_result_hdr *)dump_buf; rule_parsing_data = (const struct dbg_idle_chk_rule_parsing_data *) p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_PARSING_DATA].ptr + hdr->rule_id; parsing_str_offset = GET_FIELD(rule_parsing_data->data, DBG_IDLE_CHK_RULE_PARSING_DATA_STR_OFFSET); has_fw_msg = GET_FIELD(rule_parsing_data->data, DBG_IDLE_CHK_RULE_PARSING_DATA_HAS_FW_MSG) > 0; parsing_str = (const char *) p_hwfn->dbg_arrays[BIN_BUF_DBG_PARSING_STRINGS].ptr + parsing_str_offset; lsi_msg = parsing_str; curr_reg_id = 0; if (hdr->severity >= MAX_DBG_IDLE_CHK_SEVERITY_TYPES) return 0; /* Skip rule header */ dump_buf += BYTES_TO_DWORDS(sizeof(*hdr)); /* Update errors/warnings count */ if (hdr->severity == IDLE_CHK_SEVERITY_ERROR || hdr->severity == IDLE_CHK_SEVERITY_ERROR_NO_TRAFFIC) (*num_errors)++; else (*num_warnings)++; /* Print rule severity */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "%s: ", s_idle_chk_severity_str[hdr->severity]); /* Print rule message */ if (has_fw_msg) parsing_str += strlen(parsing_str) + 1; results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "%s.", has_fw_msg && print_fw_idle_chk ? parsing_str : lsi_msg); parsing_str += strlen(parsing_str) + 1; /* Print register values */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), " Registers:"); for (i = 0; i < hdr->num_dumped_cond_regs + hdr->num_dumped_info_regs; i++) { struct dbg_idle_chk_result_reg_hdr *reg_hdr; bool is_mem; u8 reg_id; reg_hdr = (struct dbg_idle_chk_result_reg_hdr *)dump_buf; is_mem = GET_FIELD(reg_hdr->data, DBG_IDLE_CHK_RESULT_REG_HDR_IS_MEM); reg_id = GET_FIELD(reg_hdr->data, DBG_IDLE_CHK_RESULT_REG_HDR_REG_ID); /* Skip reg header */ dump_buf += BYTES_TO_DWORDS(sizeof(*reg_hdr)); /* Skip register names until the required reg_id is * reached. */ for (; reg_id > curr_reg_id; curr_reg_id++) parsing_str += strlen(parsing_str) + 1; results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), " %s", parsing_str); if (i < hdr->num_dumped_cond_regs && is_mem) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "[%d]", hdr->mem_entry_id + reg_hdr->start_entry); results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "="); for (j = 0; j < reg_hdr->size; j++, dump_buf++) { results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "0x%x", *dump_buf); if (j < reg_hdr->size - 1) results_offset += sprintf(qed_get_buf_ptr (results_buf, results_offset), ","); } } results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\n"); } /* Check if end of dump buffer was exceeded */ if (dump_buf > dump_buf_end) return 0; return results_offset; } /* Parses an idle check dump buffer. * If result_buf is not NULL, the idle check results are printed to it. * In any case, the required results buffer size is assigned to * parsed_results_bytes. * The parsing status is returned. */ static enum dbg_status qed_parse_idle_chk_dump(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf, u32 *parsed_results_bytes, u32 *num_errors, u32 *num_warnings) { u32 num_section_params = 0, num_rules, num_rules_not_dumped; const char *section_name, *param_name, *param_str_val; u32 *dump_buf_end = dump_buf + num_dumped_dwords; /* Offset in results_buf in bytes */ u32 results_offset = 0; *parsed_results_bytes = 0; *num_errors = 0; *num_warnings = 0; if (!p_hwfn->dbg_arrays[BIN_BUF_DBG_PARSING_STRINGS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_IDLE_CHK_PARSING_DATA].ptr) return DBG_STATUS_DBG_ARRAY_NOT_SET; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); /* Read idle_chk section * There may be 1 or 2 idle_chk section parameters: * - 1st is "num_rules" * - 2nd is "num_rules_not_dumped" (optional) */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "idle_chk") || (num_section_params != 2 && num_section_params != 1)) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, &num_rules); if (strcmp(param_name, "num_rules")) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; if (num_section_params > 1) { dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, &num_rules_not_dumped); if (strcmp(param_name, "num_rules_not_dumped")) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; } else { num_rules_not_dumped = 0; } if (num_rules) { u32 rules_print_size; /* Print FW output */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "FW_IDLE_CHECK:\n"); rules_print_size = qed_parse_idle_chk_dump_rules(p_hwfn, dump_buf, dump_buf_end, num_rules, true, results_buf ? results_buf + results_offset : NULL, num_errors, num_warnings); results_offset += rules_print_size; if (!rules_print_size) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; /* Print LSI output */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\nLSI_IDLE_CHECK:\n"); rules_print_size = qed_parse_idle_chk_dump_rules(p_hwfn, dump_buf, dump_buf_end, num_rules, false, results_buf ? results_buf + results_offset : NULL, num_errors, num_warnings); results_offset += rules_print_size; if (!rules_print_size) return DBG_STATUS_IDLE_CHK_PARSE_FAILED; } /* Print errors/warnings count */ if (*num_errors) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\nIdle Check failed!!! (with %d errors and %d warnings)\n", *num_errors, *num_warnings); else if (*num_warnings) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\nIdle Check completed successfully (with %d warnings)\n", *num_warnings); else results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\nIdle Check completed successfully\n"); if (num_rules_not_dumped) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\nIdle Check Partially dumped : num_rules_not_dumped = %d\n", num_rules_not_dumped); /* Add 1 for string NULL termination */ *parsed_results_bytes = results_offset + 1; return DBG_STATUS_OK; } /* Allocates and fills MCP Trace meta data based on the specified meta data * dump buffer. * Returns debug status code. */ static enum dbg_status qed_mcp_trace_alloc_meta_data(struct qed_hwfn *p_hwfn, const u32 *meta_buf) { struct dbg_tools_user_data *dev_user_data; u32 offset = 0, signature, i; struct mcp_trace_meta *meta; u8 *meta_buf_bytes; dev_user_data = qed_dbg_get_user_data(p_hwfn); meta = &dev_user_data->mcp_trace_meta; meta_buf_bytes = (u8 *)meta_buf; /* Free the previous meta before loading a new one. */ if (meta->is_allocated) qed_mcp_trace_free_meta_data(p_hwfn); memset(meta, 0, sizeof(*meta)); /* Read first signature */ signature = qed_read_dword_from_buf(meta_buf_bytes, &offset); if (signature != NVM_MAGIC_VALUE) return DBG_STATUS_INVALID_TRACE_SIGNATURE; /* Read no. of modules and allocate memory for their pointers */ meta->modules_num = qed_read_byte_from_buf(meta_buf_bytes, &offset); meta->modules = kcalloc(meta->modules_num, sizeof(char *), GFP_KERNEL); if (!meta->modules) return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; /* Allocate and read all module strings */ for (i = 0; i < meta->modules_num; i++) { u8 module_len = qed_read_byte_from_buf(meta_buf_bytes, &offset); *(meta->modules + i) = kzalloc(module_len, GFP_KERNEL); if (!(*(meta->modules + i))) { /* Update number of modules to be released */ meta->modules_num = i ? i - 1 : 0; return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; } qed_read_str_from_buf(meta_buf_bytes, &offset, module_len, *(meta->modules + i)); if (module_len > MCP_TRACE_MAX_MODULE_LEN) (*(meta->modules + i))[MCP_TRACE_MAX_MODULE_LEN] = '\0'; } /* Read second signature */ signature = qed_read_dword_from_buf(meta_buf_bytes, &offset); if (signature != NVM_MAGIC_VALUE) return DBG_STATUS_INVALID_TRACE_SIGNATURE; /* Read number of formats and allocate memory for all formats */ meta->formats_num = qed_read_dword_from_buf(meta_buf_bytes, &offset); meta->formats = kcalloc(meta->formats_num, sizeof(struct mcp_trace_format), GFP_KERNEL); if (!meta->formats) return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; /* Allocate and read all strings */ for (i = 0; i < meta->formats_num; i++) { struct mcp_trace_format *format_ptr = &meta->formats[i]; u8 format_len; format_ptr->data = qed_read_dword_from_buf(meta_buf_bytes, &offset); format_len = GET_MFW_FIELD(format_ptr->data, MCP_TRACE_FORMAT_LEN); format_ptr->format_str = kzalloc(format_len, GFP_KERNEL); if (!format_ptr->format_str) { /* Update number of modules to be released */ meta->formats_num = i ? i - 1 : 0; return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; } qed_read_str_from_buf(meta_buf_bytes, &offset, format_len, format_ptr->format_str); } meta->is_allocated = true; return DBG_STATUS_OK; } /* Parses an MCP trace buffer. If result_buf is not NULL, the MCP Trace results * are printed to it. The parsing status is returned. * Arguments: * trace_buf - MCP trace cyclic buffer * trace_buf_size - MCP trace cyclic buffer size in bytes * data_offset - offset in bytes of the data to parse in the MCP trace cyclic * buffer. * data_size - size in bytes of data to parse. * parsed_buf - destination buffer for parsed data. * parsed_results_bytes - size of parsed data in bytes. */ static enum dbg_status qed_parse_mcp_trace_buf(struct qed_hwfn *p_hwfn, u8 *trace_buf, u32 trace_buf_size, u32 data_offset, u32 data_size, char *parsed_buf, u32 *parsed_results_bytes) { struct dbg_tools_user_data *dev_user_data; struct mcp_trace_meta *meta; u32 param_mask, param_shift; enum dbg_status status; dev_user_data = qed_dbg_get_user_data(p_hwfn); meta = &dev_user_data->mcp_trace_meta; *parsed_results_bytes = 0; if (!meta->is_allocated) return DBG_STATUS_MCP_TRACE_BAD_DATA; status = DBG_STATUS_OK; while (data_size) { struct mcp_trace_format *format_ptr; u8 format_level, format_module; u32 params[3] = { 0, 0, 0 }; u32 header, format_idx, i; if (data_size < MFW_TRACE_ENTRY_SIZE) return DBG_STATUS_MCP_TRACE_BAD_DATA; header = qed_read_from_cyclic_buf(trace_buf, &data_offset, trace_buf_size, MFW_TRACE_ENTRY_SIZE); data_size -= MFW_TRACE_ENTRY_SIZE; format_idx = header & MFW_TRACE_EVENTID_MASK; /* Skip message if its index doesn't exist in the meta data */ if (format_idx >= meta->formats_num) { u8 format_size = (u8)GET_MFW_FIELD(header, MFW_TRACE_PRM_SIZE); if (data_size < format_size) return DBG_STATUS_MCP_TRACE_BAD_DATA; data_offset = qed_cyclic_add(data_offset, format_size, trace_buf_size); data_size -= format_size; continue; } format_ptr = &meta->formats[format_idx]; for (i = 0, param_mask = MCP_TRACE_FORMAT_P1_SIZE_MASK, param_shift = MCP_TRACE_FORMAT_P1_SIZE_OFFSET; i < MCP_TRACE_FORMAT_MAX_PARAMS; i++, param_mask <<= MCP_TRACE_FORMAT_PARAM_WIDTH, param_shift += MCP_TRACE_FORMAT_PARAM_WIDTH) { /* Extract param size (0..3) */ u8 param_size = (u8)((format_ptr->data & param_mask) >> param_shift); /* If the param size is zero, there are no other * parameters. */ if (!param_size) break; /* Size is encoded using 2 bits, where 3 is used to * encode 4. */ if (param_size == 3) param_size = 4; if (data_size < param_size) return DBG_STATUS_MCP_TRACE_BAD_DATA; params[i] = qed_read_from_cyclic_buf(trace_buf, &data_offset, trace_buf_size, param_size); data_size -= param_size; } format_level = (u8)GET_MFW_FIELD(format_ptr->data, MCP_TRACE_FORMAT_LEVEL); format_module = (u8)GET_MFW_FIELD(format_ptr->data, MCP_TRACE_FORMAT_MODULE); if (format_level >= ARRAY_SIZE(s_mcp_trace_level_str)) return DBG_STATUS_MCP_TRACE_BAD_DATA; /* Print current message to results buffer */ *parsed_results_bytes += sprintf(qed_get_buf_ptr(parsed_buf, *parsed_results_bytes), "%s %-8s: ", s_mcp_trace_level_str[format_level], meta->modules[format_module]); *parsed_results_bytes += sprintf(qed_get_buf_ptr(parsed_buf, *parsed_results_bytes), format_ptr->format_str, params[0], params[1], params[2]); } /* Add string NULL terminator */ (*parsed_results_bytes)++; return status; } /* Parses an MCP Trace dump buffer. * If result_buf is not NULL, the MCP Trace results are printed to it. * In any case, the required results buffer size is assigned to * parsed_results_bytes. * The parsing status is returned. */ static enum dbg_status qed_parse_mcp_trace_dump(struct qed_hwfn *p_hwfn, u32 *dump_buf, char *results_buf, u32 *parsed_results_bytes, bool free_meta_data) { const char *section_name, *param_name, *param_str_val; u32 data_size, trace_data_dwords, trace_meta_dwords; u32 offset, results_offset, results_buf_bytes; u32 param_num_val, num_section_params; struct mcp_trace *trace; enum dbg_status status; const u32 *meta_buf; u8 *trace_buf; *parsed_results_bytes = 0; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_MCP_TRACE_BAD_DATA; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); /* Read trace_data section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "mcp_trace_data") || num_section_params != 1) return DBG_STATUS_MCP_TRACE_BAD_DATA; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (strcmp(param_name, "size")) return DBG_STATUS_MCP_TRACE_BAD_DATA; trace_data_dwords = param_num_val; /* Prepare trace info */ trace = (struct mcp_trace *)dump_buf; if (trace->signature != MFW_TRACE_SIGNATURE || !trace->size) return DBG_STATUS_MCP_TRACE_BAD_DATA; trace_buf = (u8 *)dump_buf + sizeof(*trace); offset = trace->trace_oldest; data_size = qed_cyclic_sub(trace->trace_prod, offset, trace->size); dump_buf += trace_data_dwords; /* Read meta_data section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "mcp_trace_meta")) return DBG_STATUS_MCP_TRACE_BAD_DATA; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (strcmp(param_name, "size")) return DBG_STATUS_MCP_TRACE_BAD_DATA; trace_meta_dwords = param_num_val; /* Choose meta data buffer */ if (!trace_meta_dwords) { /* Dump doesn't include meta data */ struct dbg_tools_user_data *dev_user_data = qed_dbg_get_user_data(p_hwfn); if (!dev_user_data->mcp_trace_user_meta_buf) return DBG_STATUS_MCP_TRACE_NO_META; meta_buf = dev_user_data->mcp_trace_user_meta_buf; } else { /* Dump includes meta data */ meta_buf = dump_buf; } /* Allocate meta data memory */ status = qed_mcp_trace_alloc_meta_data(p_hwfn, meta_buf); if (status != DBG_STATUS_OK) return status; status = qed_parse_mcp_trace_buf(p_hwfn, trace_buf, trace->size, offset, data_size, results_buf ? results_buf + results_offset : NULL, &results_buf_bytes); if (status != DBG_STATUS_OK) return status; if (free_meta_data) qed_mcp_trace_free_meta_data(p_hwfn); *parsed_results_bytes = results_offset + results_buf_bytes; return DBG_STATUS_OK; } /* Parses a Reg FIFO dump buffer. * If result_buf is not NULL, the Reg FIFO results are printed to it. * In any case, the required results buffer size is assigned to * parsed_results_bytes. * The parsing status is returned. */ static enum dbg_status qed_parse_reg_fifo_dump(u32 *dump_buf, char *results_buf, u32 *parsed_results_bytes) { const char *section_name, *param_name, *param_str_val; u32 param_num_val, num_section_params, num_elements; struct reg_fifo_element *elements; u8 i, j, err_code, vf_val; u32 results_offset = 0; char vf_str[4]; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_REG_FIFO_BAD_DATA; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); /* Read reg_fifo_data section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "reg_fifo_data")) return DBG_STATUS_REG_FIFO_BAD_DATA; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (strcmp(param_name, "size")) return DBG_STATUS_REG_FIFO_BAD_DATA; if (param_num_val % REG_FIFO_ELEMENT_DWORDS) return DBG_STATUS_REG_FIFO_BAD_DATA; num_elements = param_num_val / REG_FIFO_ELEMENT_DWORDS; elements = (struct reg_fifo_element *)dump_buf; /* Decode elements */ for (i = 0; i < num_elements; i++) { const char *err_msg = NULL; /* Discover if element belongs to a VF or a PF */ vf_val = GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_VF); if (vf_val == REG_FIFO_ELEMENT_IS_PF_VF_VAL) sprintf(vf_str, "%s", "N/A"); else sprintf(vf_str, "%d", vf_val); /* Find error message */ err_code = GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_ERROR); for (j = 0; j < ARRAY_SIZE(s_reg_fifo_errors) && !err_msg; j++) if (err_code == s_reg_fifo_errors[j].err_code) err_msg = s_reg_fifo_errors[j].err_msg; /* Add parsed element to parsed buffer */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "raw: 0x%016llx, address: 0x%07x, access: %-5s, pf: %2d, vf: %s, port: %d, privilege: %-3s, protection: %-12s, master: %-4s, error: %s\n", elements[i].data, (u32)GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_ADDRESS) * REG_FIFO_ELEMENT_ADDR_FACTOR, s_access_strs[GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_ACCESS)], (u32)GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_PF), vf_str, (u32)GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_PORT), s_privilege_strs[GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_PRIVILEGE)], s_protection_strs[GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_PROTECTION)], s_master_strs[GET_FIELD(elements[i].data, REG_FIFO_ELEMENT_MASTER)], err_msg ? err_msg : "unknown error code"); } results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "fifo contained %d elements", num_elements); /* Add 1 for string NULL termination */ *parsed_results_bytes = results_offset + 1; return DBG_STATUS_OK; } static enum dbg_status qed_parse_igu_fifo_element(struct igu_fifo_element *element, char *results_buf, u32 *results_offset) { const struct igu_fifo_addr_data *found_addr = NULL; u8 source, err_type, i, is_cleanup; char parsed_addr_data[32]; char parsed_wr_data[256]; u32 wr_data, prod_cons; bool is_wr_cmd, is_pf; u16 cmd_addr; u64 dword12; /* Dword12 (dword index 1 and 2) contains bits 32..95 of the * FIFO element. */ dword12 = ((u64)element->dword2 << 32) | element->dword1; is_wr_cmd = GET_FIELD(dword12, IGU_FIFO_ELEMENT_DWORD12_IS_WR_CMD); is_pf = GET_FIELD(element->dword0, IGU_FIFO_ELEMENT_DWORD0_IS_PF); cmd_addr = GET_FIELD(element->dword0, IGU_FIFO_ELEMENT_DWORD0_CMD_ADDR); source = GET_FIELD(element->dword0, IGU_FIFO_ELEMENT_DWORD0_SOURCE); err_type = GET_FIELD(element->dword0, IGU_FIFO_ELEMENT_DWORD0_ERR_TYPE); if (source >= ARRAY_SIZE(s_igu_fifo_source_strs)) return DBG_STATUS_IGU_FIFO_BAD_DATA; if (err_type >= ARRAY_SIZE(s_igu_fifo_error_strs)) return DBG_STATUS_IGU_FIFO_BAD_DATA; /* Find address data */ for (i = 0; i < ARRAY_SIZE(s_igu_fifo_addr_data) && !found_addr; i++) { const struct igu_fifo_addr_data *curr_addr = &s_igu_fifo_addr_data[i]; if (cmd_addr >= curr_addr->start_addr && cmd_addr <= curr_addr->end_addr) found_addr = curr_addr; } if (!found_addr) return DBG_STATUS_IGU_FIFO_BAD_DATA; /* Prepare parsed address data */ switch (found_addr->type) { case IGU_ADDR_TYPE_MSIX_MEM: sprintf(parsed_addr_data, " vector_num = 0x%x", cmd_addr / 2); break; case IGU_ADDR_TYPE_WRITE_INT_ACK: case IGU_ADDR_TYPE_WRITE_PROD_UPDATE: sprintf(parsed_addr_data, " SB = 0x%x", cmd_addr - found_addr->start_addr); break; default: parsed_addr_data[0] = '\0'; } if (!is_wr_cmd) { parsed_wr_data[0] = '\0'; goto out; } /* Prepare parsed write data */ wr_data = GET_FIELD(dword12, IGU_FIFO_ELEMENT_DWORD12_WR_DATA); prod_cons = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_PROD_CONS); is_cleanup = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_CMD_TYPE); if (source == IGU_SRC_ATTN) { sprintf(parsed_wr_data, "prod: 0x%x, ", prod_cons); } else { if (is_cleanup) { u8 cleanup_val, cleanup_type; cleanup_val = GET_FIELD(wr_data, IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_VAL); cleanup_type = GET_FIELD(wr_data, IGU_FIFO_CLEANUP_WR_DATA_CLEANUP_TYPE); sprintf(parsed_wr_data, "cmd_type: cleanup, cleanup_val: %s, cleanup_type : %d, ", cleanup_val ? "set" : "clear", cleanup_type); } else { u8 update_flag, en_dis_int_for_sb, segment; u8 timer_mask; update_flag = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_UPDATE_FLAG); en_dis_int_for_sb = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_EN_DIS_INT_FOR_SB); segment = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_SEGMENT); timer_mask = GET_FIELD(wr_data, IGU_FIFO_WR_DATA_TIMER_MASK); sprintf(parsed_wr_data, "cmd_type: prod/cons update, prod/cons: 0x%x, update_flag: %s, en_dis_int_for_sb : %s, segment : %s, timer_mask = %d, ", prod_cons, update_flag ? "update" : "nop", en_dis_int_for_sb ? (en_dis_int_for_sb == 1 ? "disable" : "nop") : "enable", segment ? "attn" : "regular", timer_mask); } } out: /* Add parsed element to parsed buffer */ *results_offset += sprintf(qed_get_buf_ptr(results_buf, *results_offset), "raw: 0x%01x%08x%08x, %s: %d, source : %s, type : %s, cmd_addr : 0x%x(%s%s), %serror: %s\n", element->dword2, element->dword1, element->dword0, is_pf ? "pf" : "vf", GET_FIELD(element->dword0, IGU_FIFO_ELEMENT_DWORD0_FID), s_igu_fifo_source_strs[source], is_wr_cmd ? "wr" : "rd", cmd_addr, (!is_pf && found_addr->vf_desc) ? found_addr->vf_desc : found_addr->desc, parsed_addr_data, parsed_wr_data, s_igu_fifo_error_strs[err_type]); return DBG_STATUS_OK; } /* Parses an IGU FIFO dump buffer. * If result_buf is not NULL, the IGU FIFO results are printed to it. * In any case, the required results buffer size is assigned to * parsed_results_bytes. * The parsing status is returned. */ static enum dbg_status qed_parse_igu_fifo_dump(u32 *dump_buf, char *results_buf, u32 *parsed_results_bytes) { const char *section_name, *param_name, *param_str_val; u32 param_num_val, num_section_params, num_elements; struct igu_fifo_element *elements; enum dbg_status status; u32 results_offset = 0; u8 i; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_IGU_FIFO_BAD_DATA; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); /* Read igu_fifo_data section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "igu_fifo_data")) return DBG_STATUS_IGU_FIFO_BAD_DATA; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (strcmp(param_name, "size")) return DBG_STATUS_IGU_FIFO_BAD_DATA; if (param_num_val % IGU_FIFO_ELEMENT_DWORDS) return DBG_STATUS_IGU_FIFO_BAD_DATA; num_elements = param_num_val / IGU_FIFO_ELEMENT_DWORDS; elements = (struct igu_fifo_element *)dump_buf; /* Decode elements */ for (i = 0; i < num_elements; i++) { status = qed_parse_igu_fifo_element(&elements[i], results_buf, &results_offset); if (status != DBG_STATUS_OK) return status; } results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "fifo contained %d elements", num_elements); /* Add 1 for string NULL termination */ *parsed_results_bytes = results_offset + 1; return DBG_STATUS_OK; } static enum dbg_status qed_parse_protection_override_dump(u32 *dump_buf, char *results_buf, u32 *parsed_results_bytes) { const char *section_name, *param_name, *param_str_val; u32 param_num_val, num_section_params, num_elements; struct protection_override_element *elements; u32 results_offset = 0; u8 i; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_PROTECTION_OVERRIDE_BAD_DATA; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); /* Read protection_override_data section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "protection_override_data")) return DBG_STATUS_PROTECTION_OVERRIDE_BAD_DATA; dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (strcmp(param_name, "size")) return DBG_STATUS_PROTECTION_OVERRIDE_BAD_DATA; if (param_num_val % PROTECTION_OVERRIDE_ELEMENT_DWORDS) return DBG_STATUS_PROTECTION_OVERRIDE_BAD_DATA; num_elements = param_num_val / PROTECTION_OVERRIDE_ELEMENT_DWORDS; elements = (struct protection_override_element *)dump_buf; /* Decode elements */ for (i = 0; i < num_elements; i++) { u32 address = GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_ADDRESS) * PROTECTION_OVERRIDE_ELEMENT_ADDR_FACTOR; results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "window %2d, address: 0x%07x, size: %7d regs, read: %d, write: %d, read protection: %-12s, write protection: %-12s\n", i, address, (u32)GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_WINDOW_SIZE), (u32)GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_READ), (u32)GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_WRITE), s_protection_strs[GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_READ_PROTECTION)], s_protection_strs[GET_FIELD(elements[i].data, PROTECTION_OVERRIDE_ELEMENT_WRITE_PROTECTION)]); } results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "protection override contained %d elements", num_elements); /* Add 1 for string NULL termination */ *parsed_results_bytes = results_offset + 1; return DBG_STATUS_OK; } /* Parses a FW Asserts dump buffer. * If result_buf is not NULL, the FW Asserts results are printed to it. * In any case, the required results buffer size is assigned to * parsed_results_bytes. * The parsing status is returned. */ static enum dbg_status qed_parse_fw_asserts_dump(u32 *dump_buf, char *results_buf, u32 *parsed_results_bytes) { u32 num_section_params, param_num_val, i, results_offset = 0; const char *param_name, *param_str_val, *section_name; bool last_section_found = false; *parsed_results_bytes = 0; /* Read global_params section */ dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (strcmp(section_name, "global_params")) return DBG_STATUS_FW_ASSERTS_PARSE_FAILED; /* Print global params */ dump_buf += qed_print_section_params(dump_buf, num_section_params, results_buf, &results_offset); while (!last_section_found) { dump_buf += qed_read_section_hdr(dump_buf, §ion_name, &num_section_params); if (!strcmp(section_name, "fw_asserts")) { /* Extract params */ const char *storm_letter = NULL; u32 storm_dump_size = 0; for (i = 0; i < num_section_params; i++) { dump_buf += qed_read_param(dump_buf, ¶m_name, ¶m_str_val, ¶m_num_val); if (!strcmp(param_name, "storm")) storm_letter = param_str_val; else if (!strcmp(param_name, "size")) storm_dump_size = param_num_val; else return DBG_STATUS_FW_ASSERTS_PARSE_FAILED; } if (!storm_letter || !storm_dump_size) return DBG_STATUS_FW_ASSERTS_PARSE_FAILED; /* Print data */ results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "\n%sSTORM_ASSERT: size=%d\n", storm_letter, storm_dump_size); for (i = 0; i < storm_dump_size; i++, dump_buf++) results_offset += sprintf(qed_get_buf_ptr(results_buf, results_offset), "%08x\n", *dump_buf); } else if (!strcmp(section_name, "last")) { last_section_found = true; } else { return DBG_STATUS_FW_ASSERTS_PARSE_FAILED; } } /* Add 1 for string NULL termination */ *parsed_results_bytes = results_offset + 1; return DBG_STATUS_OK; } /***************************** Public Functions *******************************/ enum dbg_status qed_dbg_user_set_bin_ptr(struct qed_hwfn *p_hwfn, const u8 * const bin_ptr) { struct bin_buffer_hdr *buf_hdrs = (struct bin_buffer_hdr *)bin_ptr; u8 buf_id; /* Convert binary data to debug arrays */ for (buf_id = 0; buf_id < MAX_BIN_DBG_BUFFER_TYPE; buf_id++) qed_set_dbg_bin_buf(p_hwfn, (enum bin_dbg_buffer_type)buf_id, (u32 *)(bin_ptr + buf_hdrs[buf_id].offset), buf_hdrs[buf_id].length); return DBG_STATUS_OK; } enum dbg_status qed_dbg_alloc_user_data(struct qed_hwfn *p_hwfn, void **user_data_ptr) { *user_data_ptr = kzalloc(sizeof(struct dbg_tools_user_data), GFP_KERNEL); if (!(*user_data_ptr)) return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; return DBG_STATUS_OK; } const char *qed_dbg_get_status_str(enum dbg_status status) { return (status < MAX_DBG_STATUS) ? s_status_str[status] : "Invalid debug status"; } enum dbg_status qed_get_idle_chk_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { u32 num_errors, num_warnings; return qed_parse_idle_chk_dump(p_hwfn, dump_buf, num_dumped_dwords, NULL, results_buf_size, &num_errors, &num_warnings); } enum dbg_status qed_print_idle_chk_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf, u32 *num_errors, u32 *num_warnings) { u32 parsed_buf_size; return qed_parse_idle_chk_dump(p_hwfn, dump_buf, num_dumped_dwords, results_buf, &parsed_buf_size, num_errors, num_warnings); } void qed_dbg_mcp_trace_set_meta_data(struct qed_hwfn *p_hwfn, const u32 *meta_buf) { struct dbg_tools_user_data *dev_user_data = qed_dbg_get_user_data(p_hwfn); dev_user_data->mcp_trace_user_meta_buf = meta_buf; } enum dbg_status qed_get_mcp_trace_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { return qed_parse_mcp_trace_dump(p_hwfn, dump_buf, NULL, results_buf_size, true); } enum dbg_status qed_print_mcp_trace_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 parsed_buf_size; /* Doesn't do anything, needed for compile time asserts */ qed_user_static_asserts(); return qed_parse_mcp_trace_dump(p_hwfn, dump_buf, results_buf, &parsed_buf_size, true); } enum dbg_status qed_print_mcp_trace_results_cont(struct qed_hwfn *p_hwfn, u32 *dump_buf, char *results_buf) { u32 parsed_buf_size; return qed_parse_mcp_trace_dump(p_hwfn, dump_buf, results_buf, &parsed_buf_size, false); } enum dbg_status qed_print_mcp_trace_line(struct qed_hwfn *p_hwfn, u8 *dump_buf, u32 num_dumped_bytes, char *results_buf) { u32 parsed_results_bytes; return qed_parse_mcp_trace_buf(p_hwfn, dump_buf, num_dumped_bytes, 0, num_dumped_bytes, results_buf, &parsed_results_bytes); } /* Frees the specified MCP Trace meta data */ void qed_mcp_trace_free_meta_data(struct qed_hwfn *p_hwfn) { struct dbg_tools_user_data *dev_user_data; struct mcp_trace_meta *meta; u32 i; dev_user_data = qed_dbg_get_user_data(p_hwfn); meta = &dev_user_data->mcp_trace_meta; if (!meta->is_allocated) return; /* Release modules */ if (meta->modules) { for (i = 0; i < meta->modules_num; i++) kfree(meta->modules[i]); kfree(meta->modules); } /* Release formats */ if (meta->formats) { for (i = 0; i < meta->formats_num; i++) kfree(meta->formats[i].format_str); kfree(meta->formats); } meta->is_allocated = false; } enum dbg_status qed_get_reg_fifo_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { return qed_parse_reg_fifo_dump(dump_buf, NULL, results_buf_size); } enum dbg_status qed_print_reg_fifo_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 parsed_buf_size; return qed_parse_reg_fifo_dump(dump_buf, results_buf, &parsed_buf_size); } enum dbg_status qed_get_igu_fifo_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { return qed_parse_igu_fifo_dump(dump_buf, NULL, results_buf_size); } enum dbg_status qed_print_igu_fifo_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 parsed_buf_size; return qed_parse_igu_fifo_dump(dump_buf, results_buf, &parsed_buf_size); } enum dbg_status qed_get_protection_override_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { return qed_parse_protection_override_dump(dump_buf, NULL, results_buf_size); } enum dbg_status qed_print_protection_override_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 parsed_buf_size; return qed_parse_protection_override_dump(dump_buf, results_buf, &parsed_buf_size); } enum dbg_status qed_get_fw_asserts_results_buf_size(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size) { return qed_parse_fw_asserts_dump(dump_buf, NULL, results_buf_size); } enum dbg_status qed_print_fw_asserts_results(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 parsed_buf_size; return qed_parse_fw_asserts_dump(dump_buf, results_buf, &parsed_buf_size); } enum dbg_status qed_dbg_parse_attn(struct qed_hwfn *p_hwfn, struct dbg_attn_block_result *results) { const u32 *block_attn_name_offsets; const char *attn_name_base; const char *block_name; enum dbg_attn_type attn_type; u8 num_regs, i, j; num_regs = GET_FIELD(results->data, DBG_ATTN_BLOCK_RESULT_NUM_REGS); attn_type = GET_FIELD(results->data, DBG_ATTN_BLOCK_RESULT_ATTN_TYPE); block_name = qed_dbg_get_block_name(p_hwfn, results->block_id); if (!block_name) return DBG_STATUS_INVALID_ARGS; if (!p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_INDEXES].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_NAME_OFFSETS].ptr || !p_hwfn->dbg_arrays[BIN_BUF_DBG_PARSING_STRINGS].ptr) return DBG_STATUS_DBG_ARRAY_NOT_SET; block_attn_name_offsets = (u32 *)p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_NAME_OFFSETS].ptr + results->names_offset; attn_name_base = p_hwfn->dbg_arrays[BIN_BUF_DBG_PARSING_STRINGS].ptr; /* Go over registers with a non-zero attention status */ for (i = 0; i < num_regs; i++) { struct dbg_attn_bit_mapping *bit_mapping; struct dbg_attn_reg_result *reg_result; u8 num_reg_attn, bit_idx = 0; reg_result = &results->reg_results[i]; num_reg_attn = GET_FIELD(reg_result->data, DBG_ATTN_REG_RESULT_NUM_REG_ATTN); bit_mapping = (struct dbg_attn_bit_mapping *) p_hwfn->dbg_arrays[BIN_BUF_DBG_ATTN_INDEXES].ptr + reg_result->block_attn_offset; /* Go over attention status bits */ for (j = 0; j < num_reg_attn; j++) { u16 attn_idx_val = GET_FIELD(bit_mapping[j].data, DBG_ATTN_BIT_MAPPING_VAL); const char *attn_name, *attn_type_str, *masked_str; u32 attn_name_offset; u32 sts_addr; /* Check if bit mask should be advanced (due to unused * bits). */ if (GET_FIELD(bit_mapping[j].data, DBG_ATTN_BIT_MAPPING_IS_UNUSED_BIT_CNT)) { bit_idx += (u8)attn_idx_val; continue; } /* Check current bit index */ if (reg_result->sts_val & BIT(bit_idx)) { /* An attention bit with value=1 was found * Find attention name */ attn_name_offset = block_attn_name_offsets[attn_idx_val]; attn_name = attn_name_base + attn_name_offset; attn_type_str = (attn_type == ATTN_TYPE_INTERRUPT ? "Interrupt" : "Parity"); masked_str = reg_result->mask_val & BIT(bit_idx) ? " [masked]" : ""; sts_addr = GET_FIELD(reg_result->data, DBG_ATTN_REG_RESULT_STS_ADDRESS); DP_NOTICE(p_hwfn, "%s (%s) : %s [address 0x%08x, bit %d]%s\n", block_name, attn_type_str, attn_name, sts_addr * 4, bit_idx, masked_str); } bit_idx++; } } return DBG_STATUS_OK; } /* Wrapper for unifying the idle_chk and mcp_trace api */ static enum dbg_status qed_print_idle_chk_results_wrapper(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf) { u32 num_errors, num_warnnings; return qed_print_idle_chk_results(p_hwfn, dump_buf, num_dumped_dwords, results_buf, &num_errors, &num_warnnings); } static DEFINE_MUTEX(qed_dbg_lock); #define MAX_PHY_RESULT_BUFFER 9000 /******************************** Feature Meta data section ******************/ #define GRC_NUM_STR_FUNCS 2 #define IDLE_CHK_NUM_STR_FUNCS 1 #define MCP_TRACE_NUM_STR_FUNCS 1 #define REG_FIFO_NUM_STR_FUNCS 1 #define IGU_FIFO_NUM_STR_FUNCS 1 #define PROTECTION_OVERRIDE_NUM_STR_FUNCS 1 #define FW_ASSERTS_NUM_STR_FUNCS 1 #define ILT_NUM_STR_FUNCS 1 #define PHY_NUM_STR_FUNCS 20 /* Feature meta data lookup table */ static struct { char *name; u32 num_funcs; enum dbg_status (*get_size)(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *size); enum dbg_status (*perform_dump)(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *dump_buf, u32 buf_size, u32 *dumped_dwords); enum dbg_status (*print_results)(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, char *results_buf); enum dbg_status (*results_buf_size)(struct qed_hwfn *p_hwfn, u32 *dump_buf, u32 num_dumped_dwords, u32 *results_buf_size); const struct qed_func_lookup *hsi_func_lookup; } qed_features_lookup[] = { { "grc", GRC_NUM_STR_FUNCS, qed_dbg_grc_get_dump_buf_size, qed_dbg_grc_dump, NULL, NULL, NULL}, { "idle_chk", IDLE_CHK_NUM_STR_FUNCS, qed_dbg_idle_chk_get_dump_buf_size, qed_dbg_idle_chk_dump, qed_print_idle_chk_results_wrapper, qed_get_idle_chk_results_buf_size, NULL}, { "mcp_trace", MCP_TRACE_NUM_STR_FUNCS, qed_dbg_mcp_trace_get_dump_buf_size, qed_dbg_mcp_trace_dump, qed_print_mcp_trace_results, qed_get_mcp_trace_results_buf_size, NULL}, { "reg_fifo", REG_FIFO_NUM_STR_FUNCS, qed_dbg_reg_fifo_get_dump_buf_size, qed_dbg_reg_fifo_dump, qed_print_reg_fifo_results, qed_get_reg_fifo_results_buf_size, NULL}, { "igu_fifo", IGU_FIFO_NUM_STR_FUNCS, qed_dbg_igu_fifo_get_dump_buf_size, qed_dbg_igu_fifo_dump, qed_print_igu_fifo_results, qed_get_igu_fifo_results_buf_size, NULL}, { "protection_override", PROTECTION_OVERRIDE_NUM_STR_FUNCS, qed_dbg_protection_override_get_dump_buf_size, qed_dbg_protection_override_dump, qed_print_protection_override_results, qed_get_protection_override_results_buf_size, NULL}, { "fw_asserts", FW_ASSERTS_NUM_STR_FUNCS, qed_dbg_fw_asserts_get_dump_buf_size, qed_dbg_fw_asserts_dump, qed_print_fw_asserts_results, qed_get_fw_asserts_results_buf_size, NULL}, { "ilt", ILT_NUM_STR_FUNCS, qed_dbg_ilt_get_dump_buf_size, qed_dbg_ilt_dump, NULL, NULL, NULL},}; static void qed_dbg_print_feature(u8 *p_text_buf, u32 text_size) { u32 i, precision = 80; if (!p_text_buf) return; pr_notice("\n%.*s", precision, p_text_buf); for (i = precision; i < text_size; i += precision) pr_cont("%.*s", precision, p_text_buf + i); pr_cont("\n"); } #define QED_RESULTS_BUF_MIN_SIZE 16 /* Generic function for decoding debug feature info */ static enum dbg_status format_feature(struct qed_hwfn *p_hwfn, enum qed_dbg_features feature_idx) { struct qed_dbg_feature *feature = &p_hwfn->cdev->dbg_features[feature_idx]; u32 txt_size_bytes, null_char_pos, i; u32 *dbuf, dwords; enum dbg_status rc; char *text_buf; /* Check if feature supports formatting capability */ if (!qed_features_lookup[feature_idx].results_buf_size) return DBG_STATUS_OK; dbuf = (u32 *)feature->dump_buf; dwords = feature->dumped_dwords; /* Obtain size of formatted output */ rc = qed_features_lookup[feature_idx].results_buf_size(p_hwfn, dbuf, dwords, &txt_size_bytes); if (rc != DBG_STATUS_OK) return rc; /* Make sure that the allocated size is a multiple of dword * (4 bytes). */ null_char_pos = txt_size_bytes - 1; txt_size_bytes = (txt_size_bytes + 3) & ~0x3; if (txt_size_bytes < QED_RESULTS_BUF_MIN_SIZE) { DP_NOTICE(p_hwfn->cdev, "formatted size of feature was too small %d. Aborting\n", txt_size_bytes); return DBG_STATUS_INVALID_ARGS; } /* allocate temp text buf */ text_buf = vzalloc(txt_size_bytes); if (!text_buf) { DP_NOTICE(p_hwfn->cdev, "failed to allocate text buffer. Aborting\n"); return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; } /* Decode feature opcodes to string on temp buf */ rc = qed_features_lookup[feature_idx].print_results(p_hwfn, dbuf, dwords, text_buf); if (rc != DBG_STATUS_OK) { vfree(text_buf); return rc; } /* Replace the original null character with a '\n' character. * The bytes that were added as a result of the dword alignment are also * padded with '\n' characters. */ for (i = null_char_pos; i < txt_size_bytes; i++) text_buf[i] = '\n'; /* Dump printable feature to log */ if (p_hwfn->cdev->print_dbg_data) qed_dbg_print_feature(text_buf, txt_size_bytes); /* Dump binary data as is to the output file */ if (p_hwfn->cdev->dbg_bin_dump) { vfree(text_buf); return rc; } /* Free the old dump_buf and point the dump_buf to the newly allocated * and formatted text buffer. */ vfree(feature->dump_buf); feature->dump_buf = text_buf; feature->buf_size = txt_size_bytes; feature->dumped_dwords = txt_size_bytes / 4; return rc; } #define MAX_DBG_FEATURE_SIZE_DWORDS 0x3FFFFFFF /* Generic function for performing the dump of a debug feature. */ static enum dbg_status qed_dbg_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, enum qed_dbg_features feature_idx) { struct qed_dbg_feature *feature = &p_hwfn->cdev->dbg_features[feature_idx]; u32 buf_size_dwords, *dbuf, *dwords; enum dbg_status rc; DP_NOTICE(p_hwfn->cdev, "Collecting a debug feature [\"%s\"]\n", qed_features_lookup[feature_idx].name); /* Dump_buf was already allocated need to free (this can happen if dump * was called but file was never read). * We can't use the buffer as is since size may have changed. */ if (feature->dump_buf) { vfree(feature->dump_buf); feature->dump_buf = NULL; } /* Get buffer size from hsi, allocate accordingly, and perform the * dump. */ rc = qed_features_lookup[feature_idx].get_size(p_hwfn, p_ptt, &buf_size_dwords); if (rc != DBG_STATUS_OK && rc != DBG_STATUS_NVRAM_GET_IMAGE_FAILED) return rc; if (buf_size_dwords > MAX_DBG_FEATURE_SIZE_DWORDS) { feature->buf_size = 0; DP_NOTICE(p_hwfn->cdev, "Debug feature [\"%s\"] size (0x%x dwords) exceeds maximum size (0x%x dwords)\n", qed_features_lookup[feature_idx].name, buf_size_dwords, MAX_DBG_FEATURE_SIZE_DWORDS); return DBG_STATUS_OK; } feature->buf_size = buf_size_dwords * sizeof(u32); feature->dump_buf = vmalloc(feature->buf_size); if (!feature->dump_buf) return DBG_STATUS_VIRT_MEM_ALLOC_FAILED; dbuf = (u32 *)feature->dump_buf; dwords = &feature->dumped_dwords; rc = qed_features_lookup[feature_idx].perform_dump(p_hwfn, p_ptt, dbuf, feature->buf_size / sizeof(u32), dwords); /* If mcp is stuck we get DBG_STATUS_NVRAM_GET_IMAGE_FAILED error. * In this case the buffer holds valid binary data, but we won't able * to parse it (since parsing relies on data in NVRAM which is only * accessible when MFW is responsive). skip the formatting but return * success so that binary data is provided. */ if (rc == DBG_STATUS_NVRAM_GET_IMAGE_FAILED) return DBG_STATUS_OK; if (rc != DBG_STATUS_OK) return rc; /* Format output */ rc = format_feature(p_hwfn, feature_idx); return rc; } int qed_dbg_grc(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_GRC, num_dumped_bytes); } int qed_dbg_grc_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_GRC); } int qed_dbg_idle_chk(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_IDLE_CHK, num_dumped_bytes); } int qed_dbg_idle_chk_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_IDLE_CHK); } int qed_dbg_reg_fifo(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_REG_FIFO, num_dumped_bytes); } int qed_dbg_reg_fifo_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_REG_FIFO); } int qed_dbg_igu_fifo(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_IGU_FIFO, num_dumped_bytes); } int qed_dbg_igu_fifo_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_IGU_FIFO); } static int qed_dbg_nvm_image_length(struct qed_hwfn *p_hwfn, enum qed_nvm_images image_id, u32 *length) { struct qed_nvm_image_att image_att; int rc; *length = 0; rc = qed_mcp_get_nvm_image_att(p_hwfn, image_id, &image_att); if (rc) return rc; *length = image_att.length; return rc; } static int qed_dbg_nvm_image(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes, enum qed_nvm_images image_id) { struct qed_hwfn *p_hwfn = &cdev->hwfns[cdev->engine_for_debug]; u32 len_rounded; int rc; *num_dumped_bytes = 0; rc = qed_dbg_nvm_image_length(p_hwfn, image_id, &len_rounded); if (rc) return rc; DP_NOTICE(p_hwfn->cdev, "Collecting a debug feature [\"nvram image %d\"]\n", image_id); len_rounded = roundup(len_rounded, sizeof(u32)); rc = qed_mcp_get_nvm_image(p_hwfn, image_id, buffer, len_rounded); if (rc) return rc; /* QED_NVM_IMAGE_NVM_META image is not swapped like other images */ if (image_id != QED_NVM_IMAGE_NVM_META) cpu_to_be32_array((__force __be32 *)buffer, (const u32 *)buffer, len_rounded / sizeof(u32)); *num_dumped_bytes = len_rounded; return rc; } int qed_dbg_protection_override(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_PROTECTION_OVERRIDE, num_dumped_bytes); } int qed_dbg_protection_override_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_PROTECTION_OVERRIDE); } int qed_dbg_fw_asserts(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_FW_ASSERTS, num_dumped_bytes); } int qed_dbg_fw_asserts_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_FW_ASSERTS); } int qed_dbg_ilt(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_ILT, num_dumped_bytes); } int qed_dbg_ilt_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_ILT); } int qed_dbg_mcp_trace(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes) { return qed_dbg_feature(cdev, buffer, DBG_FEATURE_MCP_TRACE, num_dumped_bytes); } int qed_dbg_mcp_trace_size(struct qed_dev *cdev) { return qed_dbg_feature_size(cdev, DBG_FEATURE_MCP_TRACE); } /* Defines the amount of bytes allocated for recording the length of debugfs * feature buffer. */ #define REGDUMP_HEADER_SIZE sizeof(u32) #define REGDUMP_HEADER_SIZE_SHIFT 0 #define REGDUMP_HEADER_SIZE_MASK 0xffffff #define REGDUMP_HEADER_FEATURE_SHIFT 24 #define REGDUMP_HEADER_FEATURE_MASK 0x1f #define REGDUMP_HEADER_BIN_DUMP_SHIFT 29 #define REGDUMP_HEADER_BIN_DUMP_MASK 0x1 #define REGDUMP_HEADER_OMIT_ENGINE_SHIFT 30 #define REGDUMP_HEADER_OMIT_ENGINE_MASK 0x1 #define REGDUMP_HEADER_ENGINE_SHIFT 31 #define REGDUMP_HEADER_ENGINE_MASK 0x1 #define REGDUMP_MAX_SIZE 0x1000000 #define ILT_DUMP_MAX_SIZE (1024 * 1024 * 15) enum debug_print_features { OLD_MODE = 0, IDLE_CHK = 1, GRC_DUMP = 2, MCP_TRACE = 3, REG_FIFO = 4, PROTECTION_OVERRIDE = 5, IGU_FIFO = 6, PHY = 7, FW_ASSERTS = 8, NVM_CFG1 = 9, DEFAULT_CFG = 10, NVM_META = 11, MDUMP = 12, ILT_DUMP = 13, }; static u32 qed_calc_regdump_header(struct qed_dev *cdev, enum debug_print_features feature, int engine, u32 feature_size, u8 omit_engine, u8 dbg_bin_dump) { u32 res = 0; SET_FIELD(res, REGDUMP_HEADER_SIZE, feature_size); if (res != feature_size) DP_NOTICE(cdev, "Feature %d is too large (size 0x%x) and will corrupt the dump\n", feature, feature_size); SET_FIELD(res, REGDUMP_HEADER_FEATURE, feature); SET_FIELD(res, REGDUMP_HEADER_BIN_DUMP, dbg_bin_dump); SET_FIELD(res, REGDUMP_HEADER_OMIT_ENGINE, omit_engine); SET_FIELD(res, REGDUMP_HEADER_ENGINE, engine); return res; } int qed_dbg_all_data(struct qed_dev *cdev, void *buffer) { u8 cur_engine, omit_engine = 0, org_engine; struct qed_hwfn *p_hwfn = &cdev->hwfns[cdev->engine_for_debug]; struct dbg_tools_data *dev_data = &p_hwfn->dbg_info; int grc_params[MAX_DBG_GRC_PARAMS], rc, i; u32 offset = 0, feature_size; for (i = 0; i < MAX_DBG_GRC_PARAMS; i++) grc_params[i] = dev_data->grc.param_val[i]; if (!QED_IS_CMT(cdev)) omit_engine = 1; cdev->dbg_bin_dump = 1; mutex_lock(&qed_dbg_lock); org_engine = qed_get_debug_engine(cdev); for (cur_engine = 0; cur_engine < cdev->num_hwfns; cur_engine++) { /* Collect idle_chks and grcDump for each hw function */ DP_VERBOSE(cdev, QED_MSG_DEBUG, "obtaining idle_chk and grcdump for current engine\n"); qed_set_debug_engine(cdev, cur_engine); /* First idle_chk */ rc = qed_dbg_idle_chk(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, IDLE_CHK, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_idle_chk failed. rc = %d\n", rc); } /* Second idle_chk */ rc = qed_dbg_idle_chk(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, IDLE_CHK, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_idle_chk failed. rc = %d\n", rc); } /* reg_fifo dump */ rc = qed_dbg_reg_fifo(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, REG_FIFO, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_reg_fifo failed. rc = %d\n", rc); } /* igu_fifo dump */ rc = qed_dbg_igu_fifo(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, IGU_FIFO, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_igu_fifo failed. rc = %d", rc); } /* protection_override dump */ rc = qed_dbg_protection_override(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, PROTECTION_OVERRIDE, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_protection_override failed. rc = %d\n", rc); } /* fw_asserts dump */ rc = qed_dbg_fw_asserts(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, FW_ASSERTS, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_fw_asserts failed. rc = %d\n", rc); } feature_size = qed_dbg_ilt_size(cdev); if (!cdev->disable_ilt_dump && feature_size < ILT_DUMP_MAX_SIZE) { rc = qed_dbg_ilt(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, ILT_DUMP, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_ilt failed. rc = %d\n", rc); } } /* Grc dump - must be last because when mcp stuck it will * clutter idle_chk, reg_fifo, ... */ for (i = 0; i < MAX_DBG_GRC_PARAMS; i++) dev_data->grc.param_val[i] = grc_params[i]; rc = qed_dbg_grc(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, GRC_DUMP, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_grc failed. rc = %d", rc); } } qed_set_debug_engine(cdev, org_engine); /* mcp_trace */ rc = qed_dbg_mcp_trace(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, MCP_TRACE, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else { DP_ERR(cdev, "qed_dbg_mcp_trace failed. rc = %d\n", rc); } /* nvm cfg1 */ rc = qed_dbg_nvm_image(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size, QED_NVM_IMAGE_NVM_CFG1); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, NVM_CFG1, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else if (rc != -ENOENT) { DP_ERR(cdev, "qed_dbg_nvm_image failed for image %d (%s), rc = %d\n", QED_NVM_IMAGE_NVM_CFG1, "QED_NVM_IMAGE_NVM_CFG1", rc); } /* nvm default */ rc = qed_dbg_nvm_image(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size, QED_NVM_IMAGE_DEFAULT_CFG); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, DEFAULT_CFG, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else if (rc != -ENOENT) { DP_ERR(cdev, "qed_dbg_nvm_image failed for image %d (%s), rc = %d\n", QED_NVM_IMAGE_DEFAULT_CFG, "QED_NVM_IMAGE_DEFAULT_CFG", rc); } /* nvm meta */ rc = qed_dbg_nvm_image(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size, QED_NVM_IMAGE_NVM_META); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, NVM_META, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else if (rc != -ENOENT) { DP_ERR(cdev, "qed_dbg_nvm_image failed for image %d (%s), rc = %d\n", QED_NVM_IMAGE_NVM_META, "QED_NVM_IMAGE_NVM_META", rc); } /* nvm mdump */ rc = qed_dbg_nvm_image(cdev, (u8 *)buffer + offset + REGDUMP_HEADER_SIZE, &feature_size, QED_NVM_IMAGE_MDUMP); if (!rc) { *(u32 *)((u8 *)buffer + offset) = qed_calc_regdump_header(cdev, MDUMP, cur_engine, feature_size, omit_engine, cdev->dbg_bin_dump); offset += (feature_size + REGDUMP_HEADER_SIZE); } else if (rc != -ENOENT) { DP_ERR(cdev, "qed_dbg_nvm_image failed for image %d (%s), rc = %d\n", QED_NVM_IMAGE_MDUMP, "QED_NVM_IMAGE_MDUMP", rc); } mutex_unlock(&qed_dbg_lock); cdev->dbg_bin_dump = 0; return 0; } int qed_dbg_all_data_size(struct qed_dev *cdev) { u32 regs_len = 0, image_len = 0, ilt_len = 0, total_ilt_len = 0; struct qed_hwfn *p_hwfn = &cdev->hwfns[cdev->engine_for_debug]; u8 cur_engine, org_engine; cdev->disable_ilt_dump = false; org_engine = qed_get_debug_engine(cdev); for (cur_engine = 0; cur_engine < cdev->num_hwfns; cur_engine++) { /* Engine specific */ DP_VERBOSE(cdev, QED_MSG_DEBUG, "calculating idle_chk and grcdump register length for current engine\n"); qed_set_debug_engine(cdev, cur_engine); regs_len += REGDUMP_HEADER_SIZE + qed_dbg_idle_chk_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_idle_chk_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_grc_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_reg_fifo_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_igu_fifo_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_protection_override_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_fw_asserts_size(cdev); ilt_len = REGDUMP_HEADER_SIZE + qed_dbg_ilt_size(cdev); if (ilt_len < ILT_DUMP_MAX_SIZE) { total_ilt_len += ilt_len; regs_len += ilt_len; } } qed_set_debug_engine(cdev, org_engine); /* Engine common */ regs_len += REGDUMP_HEADER_SIZE + qed_dbg_mcp_trace_size(cdev) + REGDUMP_HEADER_SIZE + qed_dbg_phy_size(cdev); qed_dbg_nvm_image_length(p_hwfn, QED_NVM_IMAGE_NVM_CFG1, &image_len); if (image_len) regs_len += REGDUMP_HEADER_SIZE + image_len; qed_dbg_nvm_image_length(p_hwfn, QED_NVM_IMAGE_DEFAULT_CFG, &image_len); if (image_len) regs_len += REGDUMP_HEADER_SIZE + image_len; qed_dbg_nvm_image_length(p_hwfn, QED_NVM_IMAGE_NVM_META, &image_len); if (image_len) regs_len += REGDUMP_HEADER_SIZE + image_len; qed_dbg_nvm_image_length(p_hwfn, QED_NVM_IMAGE_MDUMP, &image_len); if (image_len) regs_len += REGDUMP_HEADER_SIZE + image_len; if (regs_len > REGDUMP_MAX_SIZE) { DP_VERBOSE(cdev, QED_MSG_DEBUG, "Dump exceeds max size 0x%x, disable ILT dump\n", REGDUMP_MAX_SIZE); cdev->disable_ilt_dump = true; regs_len -= total_ilt_len; } return regs_len; } int qed_dbg_feature(struct qed_dev *cdev, void *buffer, enum qed_dbg_features feature, u32 *num_dumped_bytes) { struct qed_dbg_feature *qed_feature = &cdev->dbg_features[feature]; struct qed_hwfn *p_hwfn = &cdev->hwfns[cdev->engine_for_debug]; enum dbg_status dbg_rc; struct qed_ptt *p_ptt; int rc = 0; /* Acquire ptt */ p_ptt = qed_ptt_acquire(p_hwfn); if (!p_ptt) return -EINVAL; /* Get dump */ dbg_rc = qed_dbg_dump(p_hwfn, p_ptt, feature); if (dbg_rc != DBG_STATUS_OK) { DP_VERBOSE(cdev, QED_MSG_DEBUG, "%s\n", qed_dbg_get_status_str(dbg_rc)); *num_dumped_bytes = 0; rc = -EINVAL; goto out; } DP_VERBOSE(cdev, QED_MSG_DEBUG, "copying debugfs feature to external buffer\n"); memcpy(buffer, qed_feature->dump_buf, qed_feature->buf_size); *num_dumped_bytes = cdev->dbg_features[feature].dumped_dwords * 4; out: qed_ptt_release(p_hwfn, p_ptt); return rc; } int qed_dbg_feature_size(struct qed_dev *cdev, enum qed_dbg_features feature) { struct qed_dbg_feature *qed_feature = &cdev->dbg_features[feature]; struct qed_hwfn *p_hwfn = &cdev->hwfns[cdev->engine_for_debug]; struct qed_ptt *p_ptt = qed_ptt_acquire(p_hwfn); u32 buf_size_dwords; enum dbg_status rc; if (!p_ptt) return -EINVAL; rc = qed_features_lookup[feature].get_size(p_hwfn, p_ptt, &buf_size_dwords); if (rc != DBG_STATUS_OK) buf_size_dwords = 0; /* Feature will not be dumped if it exceeds maximum size */ if (buf_size_dwords > MAX_DBG_FEATURE_SIZE_DWORDS) buf_size_dwords = 0; qed_ptt_release(p_hwfn, p_ptt); qed_feature->buf_size = buf_size_dwords * sizeof(u32); return qed_feature->buf_size; } int qed_dbg_phy_size(struct qed_dev *cdev) { /* return max size of phy info and * phy mac_stat multiplied by the number of ports */ return MAX_PHY_RESULT_BUFFER * (1 + qed_device_num_ports(cdev)); } u8 qed_get_debug_engine(struct qed_dev *cdev) { return cdev->engine_for_debug; } void qed_set_debug_engine(struct qed_dev *cdev, int engine_number) { DP_VERBOSE(cdev, QED_MSG_DEBUG, "set debug engine to %d\n", engine_number); cdev->engine_for_debug = engine_number; } void qed_dbg_pf_init(struct qed_dev *cdev) { const u8 *dbg_values = NULL; int i; /* Sync ver with debugbus qed code */ qed_dbg_set_app_ver(TOOLS_VERSION); /* Debug values are after init values. * The offset is the first dword of the file. */ dbg_values = cdev->firmware->data + *(u32 *)cdev->firmware->data; for_each_hwfn(cdev, i) { qed_dbg_set_bin_ptr(&cdev->hwfns[i], dbg_values); qed_dbg_user_set_bin_ptr(&cdev->hwfns[i], dbg_values); } /* Set the hwfn to be 0 as default */ cdev->engine_for_debug = 0; } void qed_dbg_pf_exit(struct qed_dev *cdev) { struct qed_dbg_feature *feature = NULL; enum qed_dbg_features feature_idx; /* debug features' buffers may be allocated if debug feature was used * but dump wasn't called */ for (feature_idx = 0; feature_idx < DBG_FEATURE_NUM; feature_idx++) { feature = &cdev->dbg_features[feature_idx]; if (feature->dump_buf) { vfree(feature->dump_buf); feature->dump_buf = NULL; } } } |