aboutsummaryrefslogtreecommitdiffstats
path: root/lib/uuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/uuid.c')
0 files changed, 0 insertions, 0 deletions
href='#n217'>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
/*
 * Pinctrl data for the NVIDIA Tegra186 pinmux
 *
 * Copyright (c) 2015, NVIDIA CORPORATION.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/pinctrl/pinctrl.h>
#include <linux/pinctrl/pinmux.h>
#include <linux/tegra-pmc.h>

#include "pinctrl-tegra.h"

/*
 * Most pins affected by the pinmux can also be GPIOs. Define these first.
 * These must match how the GPIO driver names/numbers its pins.
 */
#define _GPIO(offset)				(offset)

#define TEGRA_PIN_PEX_L0_RST_N_PA0                    _GPIO(0)
#define TEGRA_PIN_PEX_L0_CLKREQ_N_PA1                    _GPIO(1)
#define TEGRA_PIN_PEX_WAKE_N_PA2                    _GPIO(2)
#define TEGRA_PIN_PEX_L1_RST_N_PA3                    _GPIO(3)
#define TEGRA_PIN_PEX_L1_CLKREQ_N_PA4                    _GPIO(4)
#define TEGRA_PIN_PEX_L2_RST_N_PA5                    _GPIO(5)
#define TEGRA_PIN_PEX_L2_CLKREQ_N_PA6                    _GPIO(6)
#define TEGRA_PIN_UART4_TX_PB0                    _GPIO(8)
#define TEGRA_PIN_UART4_RX_PB1                    _GPIO(9)
#define TEGRA_PIN_UART4_RTS_PB2                    _GPIO(10)
#define TEGRA_PIN_UART4_CTS_PB3                    _GPIO(11)
#define TEGRA_PIN_GPIO_WAN1_PB4                    _GPIO(12)
#define TEGRA_PIN_GPIO_WAN2_PB5                    _GPIO(13)
#define TEGRA_PIN_GPIO_WAN3_PB6                    _GPIO(14)
#define TEGRA_PIN_GPIO_WAN4_PC0                    _GPIO(16)
#define TEGRA_PIN_DAP2_SCLK_PC1                    _GPIO(17)
#define TEGRA_PIN_DAP2_DOUT_PC2                    _GPIO(18)
#define TEGRA_PIN_DAP2_DIN_PC3                    _GPIO(19)
#define TEGRA_PIN_DAP2_FS_PC4                    _GPIO(20)
#define TEGRA_PIN_GEN1_I2C_SCL_PC5                    _GPIO(21)
#define TEGRA_PIN_GEN1_I2C_SDA_PC6                    _GPIO(22)
#define TEGRA_PIN_SDMMC1_CLK_PD0                    _GPIO(24)
#define TEGRA_PIN_SDMMC1_CMD_PD1                    _GPIO(25)
#define TEGRA_PIN_SDMMC1_DAT0_PD2                    _GPIO(26)
#define TEGRA_PIN_SDMMC1_DAT1_PD3                    _GPIO(27)
#define TEGRA_PIN_SDMMC1_DAT2_PD4                    _GPIO(28)
#define TEGRA_PIN_SDMMC1_DAT3_PD5                    _GPIO(29)
#define TEGRA_PIN_EQOS_TXC_PE0                    _GPIO(32)
#define TEGRA_PIN_EQOS_TD0_PE1                    _GPIO(33)
#define TEGRA_PIN_EQOS_TD1_PE2                    _GPIO(34)
#define TEGRA_PIN_EQOS_TD2_PE3                    _GPIO(35)
#define TEGRA_PIN_EQOS_TD3_PE4                    _GPIO(36)
#define TEGRA_PIN_EQOS_TX_CTL_PE5                    _GPIO(37)
#define TEGRA_PIN_EQOS_RD0_PE6                    _GPIO(38)
#define TEGRA_PIN_EQOS_RD1_PE7                    _GPIO(39)
#define TEGRA_PIN_EQOS_RD2_PF0                    _GPIO(40)
#define TEGRA_PIN_EQOS_RD3_PF1                    _GPIO(41)
#define TEGRA_PIN_EQOS_RX_CTL_PF2                    _GPIO(42)
#define TEGRA_PIN_EQOS_RXC_PF3                    _GPIO(43)
#define TEGRA_PIN_EQOS_MDIO_PF4                    _GPIO(44)
#define TEGRA_PIN_EQOS_MDC_PF5                    _GPIO(45)
#define TEGRA_PIN_SDMMC3_CLK_PG0                    _GPIO(48)
#define TEGRA_PIN_SDMMC3_CMD_PG1                    _GPIO(49)
#define TEGRA_PIN_SDMMC3_DAT0_PG2                    _GPIO(50)
#define TEGRA_PIN_SDMMC3_DAT1_PG3                    _GPIO(51)
#define TEGRA_PIN_SDMMC3_DAT2_PG4                    _GPIO(52)
#define TEGRA_PIN_SDMMC3_DAT3_PG5                    _GPIO(53)
#define TEGRA_PIN_GPIO_WAN5_PH0                    _GPIO(56)
#define TEGRA_PIN_GPIO_WAN6_PH1                    _GPIO(57)
#define TEGRA_PIN_GPIO_WAN7_PH2                    _GPIO(58)
#define TEGRA_PIN_GPIO_WAN8_PH3                    _GPIO(59)
#define TEGRA_PIN_BCPU_PWR_REQ_PH4                    _GPIO(60)
#define TEGRA_PIN_MCPU_PWR_REQ_PH5                    _GPIO(61)
#define TEGRA_PIN_GPU_PWR_REQ_PH6                    _GPIO(62)
#define TEGRA_PIN_GPIO_PQ0_PI0                    _GPIO(64)
#define TEGRA_PIN_GPIO_PQ1_PI1                    _GPIO(65)
#define TEGRA_PIN_GPIO_PQ2_PI2                    _GPIO(66)
#define TEGRA_PIN_GPIO_PQ3_PI3                    _GPIO(67)
#define TEGRA_PIN_GPIO_PQ4_PI4                    _GPIO(68)
#define TEGRA_PIN_GPIO_PQ5_PI5                    _GPIO(69)
#define TEGRA_PIN_GPIO_PQ6_PI6                    _GPIO(70)
#define TEGRA_PIN_GPIO_PQ7_PI7                    _GPIO(71)
#define TEGRA_PIN_DAP1_SCLK_PJ0                    _GPIO(72)
#define TEGRA_PIN_DAP1_DOUT_PJ1                    _GPIO(73)
#define TEGRA_PIN_DAP1_DIN_PJ2                    _GPIO(74)
#define TEGRA_PIN_DAP1_FS_PJ3                    _GPIO(75)
#define TEGRA_PIN_AUD_MCLK_PJ4                    _GPIO(76)
#define TEGRA_PIN_GPIO_AUD0_PJ5                    _GPIO(77)
#define TEGRA_PIN_GPIO_AUD1_PJ6                    _GPIO(78)
#define TEGRA_PIN_GPIO_AUD2_PJ7                    _GPIO(79)
#define TEGRA_PIN_GPIO_AUD3_PK0                    _GPIO(80)
#define TEGRA_PIN_GEN7_I2C_SCL_PL0                    _GPIO(88)
#define TEGRA_PIN_GEN7_I2C_SDA_PL1                    _GPIO(89)
#define TEGRA_PIN_GEN9_I2C_SCL_PL2                    _GPIO(90)
#define TEGRA_PIN_GEN9_I2C_SDA_PL3                    _GPIO(91)
#define TEGRA_PIN_USB_VBUS_EN0_PL4                    _GPIO(92)
#define TEGRA_PIN_USB_VBUS_EN1_PL5                    _GPIO(93)
#define TEGRA_PIN_GP_PWM6_PL6                    _GPIO(94)
#define TEGRA_PIN_GP_PWM7_PL7                    _GPIO(95)
#define TEGRA_PIN_DMIC1_DAT_PM0                    _GPIO(96)
#define TEGRA_PIN_DMIC1_CLK_PM1                    _GPIO(97)
#define TEGRA_PIN_DMIC2_DAT_PM2                    _GPIO(98)
#define TEGRA_PIN_DMIC2_CLK_PM3                    _GPIO(99)
#define TEGRA_PIN_DMIC4_DAT_PM4                    _GPIO(100)
#define TEGRA_PIN_DMIC4_CLK_PM5                    _GPIO(101)
#define TEGRA_PIN_GPIO_CAM1_PN0                    _GPIO(104)
#define TEGRA_PIN_GPIO_CAM2_PN1                    _GPIO(105)
#define TEGRA_PIN_GPIO_CAM3_PN2                    _GPIO(106)
#define TEGRA_PIN_GPIO_CAM4_PN3                    _GPIO(107)
#define TEGRA_PIN_GPIO_CAM5_PN4                    _GPIO(108)
#define TEGRA_PIN_GPIO_CAM6_PN5                    _GPIO(109)
#define TEGRA_PIN_GPIO_CAM7_PN6                    _GPIO(110)
#define TEGRA_PIN_EXTPERIPH1_CLK_PO0                    _GPIO(112)
#define TEGRA_PIN_EXTPERIPH2_CLK_PO1                    _GPIO(113)
#define TEGRA_PIN_CAM_I2C_SCL_PO2                    _GPIO(114)
#define TEGRA_PIN_CAM_I2C_SDA_PO3                    _GPIO(115)
#define TEGRA_PIN_DP_AUX_CH0_HPD_PP0                    _GPIO(120)
#define TEGRA_PIN_DP_AUX_CH1_HPD_PP1                    _GPIO(121)
#define TEGRA_PIN_HDMI_CEC_PP2                    _GPIO(122)
#define TEGRA_PIN_GPIO_EDP0_PP3                    _GPIO(123)
#define TEGRA_PIN_GPIO_EDP1_PP4                    _GPIO(124)
#define TEGRA_PIN_GPIO_EDP2_PP5                    _GPIO(125)
#define TEGRA_PIN_GPIO_EDP3_PP6                    _GPIO(126)
#define TEGRA_PIN_DIRECTDC1_CLK_PQ0                    _GPIO(128)
#define TEGRA_PIN_DIRECTDC1_IN_PQ1                    _GPIO(129)
#define TEGRA_PIN_DIRECTDC1_OUT0_PQ2                    _GPIO(130)
#define TEGRA_PIN_DIRECTDC1_OUT1_PQ3                    _GPIO(131)
#define TEGRA_PIN_DIRECTDC1_OUT2_PQ4                    _GPIO(132)
#define TEGRA_PIN_DIRECTDC1_OUT3_PQ5                    _GPIO(133)
#define TEGRA_PIN_QSPI_SCK_PR0                    _GPIO(136)
#define TEGRA_PIN_QSPI_IO0_PR1                    _GPIO(137)
#define TEGRA_PIN_QSPI_IO1_PR2                    _GPIO(138)
#define TEGRA_PIN_QSPI_IO2_PR3                    _GPIO(139)
#define TEGRA_PIN_QSPI_IO3_PR4                    _GPIO(140)
#define TEGRA_PIN_QSPI_CS_N_PR5                    _GPIO(141)
#define TEGRA_PIN_PWR_I2C_SCL_PS0                    _GPIO(144)
#define TEGRA_PIN_PWR_I2C_SDA_PS1                    _GPIO(145)
#define TEGRA_PIN_BATT_OC_PS2                    _GPIO(146)
#define TEGRA_PIN_SAFE_STATE_PS3                    _GPIO(147)
#define TEGRA_PIN_VCOMP_ALERT_PS4                    _GPIO(148)
#define TEGRA_PIN_UART1_TX_PT0                    _GPIO(152)
#define TEGRA_PIN_UART1_RX_PT1                    _GPIO(153)
#define TEGRA_PIN_UART1_RTS_PT2                    _GPIO(154)
#define TEGRA_PIN_UART1_CTS_PT3                    _GPIO(155)
#define TEGRA_PIN_GPIO_DIS0_PU0                    _GPIO(160)
#define TEGRA_PIN_GPIO_DIS1_PU1                    _GPIO(161)
#define TEGRA_PIN_GPIO_DIS2_PU2                    _GPIO(162)
#define TEGRA_PIN_GPIO_DIS3_PU3                    _GPIO(163)
#define TEGRA_PIN_GPIO_DIS4_PU4                    _GPIO(164)
#define TEGRA_PIN_GPIO_DIS5_PU5                    _GPIO(165)
#define TEGRA_PIN_GPIO_SEN0_PV0                    _GPIO(168)
#define TEGRA_PIN_GPIO_SEN1_PV1                    _GPIO(169)
#define TEGRA_PIN_GPIO_SEN2_PV2                    _GPIO(170)
#define TEGRA_PIN_GPIO_SEN3_PV3                    _GPIO(171)
#define TEGRA_PIN_GPIO_SEN4_PV4                    _GPIO(172)
#define TEGRA_PIN_GPIO_SEN5_PV5                    _GPIO(173)
#define TEGRA_PIN_GPIO_SEN6_PV6                    _GPIO(174)
#define TEGRA_PIN_GPIO_SEN7_PV7                    _GPIO(175)
#define TEGRA_PIN_GEN8_I2C_SCL_PW0                    _GPIO(176)
#define TEGRA_PIN_GEN8_I2C_SDA_PW1                    _GPIO(177)
#define TEGRA_PIN_UART3_TX_PW2                    _GPIO(178)
#define TEGRA_PIN_UART3_RX_PW3                    _GPIO(179)
#define TEGRA_PIN_UART3_RTS_PW4                    _GPIO(180)
#define TEGRA_PIN_UART3_CTS_PW5                    _GPIO(181)
#define TEGRA_PIN_UART7_TX_PW6                    _GPIO(182)
#define TEGRA_PIN_UART7_RX_PW7                    _GPIO(183)
#define TEGRA_PIN_UART2_TX_PX0                    _GPIO(184)
#define TEGRA_PIN_UART2_RX_PX1                    _GPIO(185)
#define TEGRA_PIN_UART2_RTS_PX2                    _GPIO(186)
#define TEGRA_PIN_UART2_CTS_PX3                    _GPIO(187)
#define TEGRA_PIN_UART5_TX_PX4                    _GPIO(188)
#define TEGRA_PIN_UART5_RX_PX5                    _GPIO(189)
#define TEGRA_PIN_UART5_RTS_PX6                    _GPIO(190)
#define TEGRA_PIN_UART5_CTS_PX7                    _GPIO(191)
#define TEGRA_PIN_GPIO_MDM1_PY0                    _GPIO(192)
#define TEGRA_PIN_GPIO_MDM2_PY1                    _GPIO(193)
#define TEGRA_PIN_GPIO_MDM3_PY2                    _GPIO(194)
#define TEGRA_PIN_GPIO_MDM4_PY3                    _GPIO(195)
#define TEGRA_PIN_GPIO_MDM5_PY4                    _GPIO(196)
#define TEGRA_PIN_GPIO_MDM6_PY5                    _GPIO(197)
#define TEGRA_PIN_GPIO_MDM7_PY6                    _GPIO(198)
#define TEGRA_PIN_CAN1_DOUT_PZ0                    _GPIO(200)
#define TEGRA_PIN_CAN1_DIN_PZ1                    _GPIO(201)
#define TEGRA_PIN_CAN0_DOUT_PZ2                    _GPIO(202)
#define TEGRA_PIN_CAN0_DIN_PZ3                    _GPIO(203)
#define TEGRA_PIN_CAN_GPIO0_PAA0                    _GPIO(208)
#define TEGRA_PIN_CAN_GPIO1_PAA1                    _GPIO(209)
#define TEGRA_PIN_CAN_GPIO2_PAA2                    _GPIO(210)
#define TEGRA_PIN_CAN_GPIO3_PAA3                    _GPIO(211)
#define TEGRA_PIN_CAN_GPIO4_PAA4                    _GPIO(212)
#define TEGRA_PIN_CAN_GPIO5_PAA5                    _GPIO(213)
#define TEGRA_PIN_CAN_GPIO6_PAA6                    _GPIO(214)
#define TEGRA_PIN_CAN_GPIO7_PAA7                    _GPIO(215)
#define TEGRA_PIN_UFS0_REF_CLK_PBB0                    _GPIO(216)
#define TEGRA_PIN_UFS0_RST_PBB1                    _GPIO(217)
#define TEGRA_PIN_DAP4_SCLK_PCC0                    _GPIO(224)
#define TEGRA_PIN_DAP4_DOUT_PCC1                    _GPIO(225)
#define TEGRA_PIN_DAP4_DIN_PCC2                    _GPIO(226)
#define TEGRA_PIN_DAP4_FS_PCC3                    _GPIO(227)
#define TEGRA_PIN_GPIO_SEN8_PEE0                    _GPIO(240)
#define TEGRA_PIN_GPIO_SEN9_PEE1                    _GPIO(241)
#define TEGRA_PIN_TOUCH_CLK_PEE2                    _GPIO(242)
#define TEGRA_PIN_POWER_ON_PFF0                    _GPIO(248)
#define TEGRA_PIN_GPIO_SW1_PFF1                    _GPIO(249)
#define TEGRA_PIN_GPIO_SW2_PFF2                    _GPIO(250)
#define TEGRA_PIN_GPIO_SW3_PFF3                    _GPIO(251)
#define TEGRA_PIN_GPIO_SW4_PFF4                    _GPIO(252)

/* All non-GPIO pins follow */
#define NUM_GPIOS	(TEGRA_PIN_GPIO_SW4_PFF4 + 1)
#define _PIN(offset)	(NUM_GPIOS + (offset))

/* Non-GPIO pins */
#define TEGRA_PIN_DIRECTDC_COMP 		_PIN(0)
#define TEGRA_PIN_SDMMC1_COMP		_PIN(1)
#define TEGRA_PIN_EQOS_COMP			_PIN(2)
#define TEGRA_PIN_SDMMC3_COMP		_PIN(3)
#define TEGRA_PIN_QSPI_COMP			_PIN(4)
#define TEGRA_PIN_SHUTDOWN			_PIN(5)
#define TEGRA_PIN_PMU_INT				_PIN(6)
#define TEGRA_PIN_SOC_PWR_REQ			_PIN(7)
#define TEGRA_PIN_CLK_32K_IN			_PIN(8)

#define DRV_BANK	0
#define MUX_BANK	1

static const struct pinctrl_pin_desc  tegra186_pins[] = {
	PINCTRL_PIN(TEGRA_PIN_PEX_L0_RST_N_PA0, "PEX_L0_RST_N_PA0"),
	PINCTRL_PIN(TEGRA_PIN_PEX_L0_CLKREQ_N_PA1, "PEX_L0_CLKREQ_N_PA1"),
	PINCTRL_PIN(TEGRA_PIN_PEX_WAKE_N_PA2, "PEX_WAKE_N_PA2"),
	PINCTRL_PIN(TEGRA_PIN_PEX_L1_RST_N_PA3, "PEX_L1_RST_N_PA3"),
	PINCTRL_PIN(TEGRA_PIN_PEX_L1_CLKREQ_N_PA4, "PEX_L1_CLKREQ_N_PA4"),
	PINCTRL_PIN(TEGRA_PIN_PEX_L2_RST_N_PA5, "PEX_L2_RST_N_PA5"),
	PINCTRL_PIN(TEGRA_PIN_PEX_L2_CLKREQ_N_PA6, "PEX_L2_CLKREQ_N_PA6"),
	PINCTRL_PIN(TEGRA_PIN_UART4_TX_PB0, "UART4_TX_PB0"),
	PINCTRL_PIN(TEGRA_PIN_UART4_RX_PB1, "UART4_RX_PB1"),
	PINCTRL_PIN(TEGRA_PIN_UART4_RTS_PB2, "UART4_RTS_PB2"),
	PINCTRL_PIN(TEGRA_PIN_UART4_CTS_PB3, "UART4_CTS_PB3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN1_PB4, "GPIO_WAN1_PB4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN2_PB5, "GPIO_WAN2_PB5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN3_PB6, "GPIO_WAN3_PB6"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN4_PC0, "GPIO_WAN4_PC0"),
	PINCTRL_PIN(TEGRA_PIN_DAP2_SCLK_PC1, "DAP2_SCLK_PC1"),
	PINCTRL_PIN(TEGRA_PIN_DAP2_DOUT_PC2, "DAP2_DOUT_PC2"),
	PINCTRL_PIN(TEGRA_PIN_DAP2_DIN_PC3, "DAP2_DIN_PC3"),
	PINCTRL_PIN(TEGRA_PIN_DAP2_FS_PC4, "DAP2_FS_PC4"),
	PINCTRL_PIN(TEGRA_PIN_GEN1_I2C_SCL_PC5, "GEN1_I2C_SCL_PC5"),
	PINCTRL_PIN(TEGRA_PIN_GEN1_I2C_SDA_PC6, "GEN1_I2C_SDA_PC6"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_CLK_PD0, "SDMMC1_CLK_PD0"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_CMD_PD1, "SDMMC1_CMD_PD1"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_DAT0_PD2, "SDMMC1_DAT0_PD2"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_DAT1_PD3, "SDMMC1_DAT1_PD3"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_DAT2_PD4, "SDMMC1_DAT2_PD4"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_DAT3_PD5, "SDMMC1_DAT3_PD5"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TXC_PE0, "EQOS_TXC_PE0"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TD0_PE1, "EQOS_TD0_PE1"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TD1_PE2, "EQOS_TD1_PE2"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TD2_PE3, "EQOS_TD2_PE3"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TD3_PE4, "EQOS_TD3_PE4"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_TX_CTL_PE5, "EQOS_TX_CTL_PE5"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RD0_PE6, "EQOS_RD0_PE6"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RD1_PE7, "EQOS_RD1_PE7"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RD2_PF0, "EQOS_RD2_PF0"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RD3_PF1, "EQOS_RD3_PF1"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RX_CTL_PF2, "EQOS_RX_CTL_PF2"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_RXC_PF3, "EQOS_RXC_PF3"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_MDIO_PF4, "EQOS_MDIO_PF4"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_MDC_PF5, "EQOS_MDC_PF5"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_CLK_PG0, "SDMMC3_CLK_PG0"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_CMD_PG1, "SDMMC3_CMD_PG1"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_DAT0_PG2, "SDMMC3_DAT0_PG2"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_DAT1_PG3, "SDMMC3_DAT1_PG3"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_DAT2_PG4, "SDMMC3_DAT2_PG4"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_DAT3_PG5, "SDMMC3_DAT3_PG5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN5_PH0, "GPIO_WAN5_PH0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN6_PH1, "GPIO_WAN6_PH1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN7_PH2, "GPIO_WAN7_PH2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_WAN8_PH3, "GPIO_WAN8_PH3"),
	PINCTRL_PIN(TEGRA_PIN_BCPU_PWR_REQ_PH4, "BCPU_PWR_REQ_PH4"),
	PINCTRL_PIN(TEGRA_PIN_MCPU_PWR_REQ_PH5, "MCPU_PWR_REQ_PH5"),
	PINCTRL_PIN(TEGRA_PIN_GPU_PWR_REQ_PH6, "GPU_PWR_REQ_PH6"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ0_PI0, "GPIO_PQ0_PI0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ1_PI1, "GPIO_PQ1_PI1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ2_PI2, "GPIO_PQ2_PI2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ3_PI3, "GPIO_PQ3_PI3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ4_PI4, "GPIO_PQ4_PI4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ5_PI5, "GPIO_PQ5_PI5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ6_PI6, "GPIO_PQ6_PI6"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_PQ7_PI7, "GPIO_PQ7_PI7"),
	PINCTRL_PIN(TEGRA_PIN_DAP1_SCLK_PJ0, "DAP1_SCLK_PJ0"),
	PINCTRL_PIN(TEGRA_PIN_DAP1_DOUT_PJ1, "DAP1_DOUT_PJ1"),
	PINCTRL_PIN(TEGRA_PIN_DAP1_DIN_PJ2, "DAP1_DIN_PJ2"),
	PINCTRL_PIN(TEGRA_PIN_DAP1_FS_PJ3, "DAP1_FS_PJ3"),
	PINCTRL_PIN(TEGRA_PIN_AUD_MCLK_PJ4, "AUD_MCLK_PJ4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_AUD0_PJ5, "GPIO_AUD0_PJ5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_AUD1_PJ6, "GPIO_AUD1_PJ6"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_AUD2_PJ7, "GPIO_AUD2_PJ7"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_AUD3_PK0, "GPIO_AUD3_PK0"),
	PINCTRL_PIN(TEGRA_PIN_GEN7_I2C_SCL_PL0, "GEN7_I2C_SCL_PL0"),
	PINCTRL_PIN(TEGRA_PIN_GEN7_I2C_SDA_PL1, "GEN7_I2C_SDA_PL1"),
	PINCTRL_PIN(TEGRA_PIN_GEN9_I2C_SCL_PL2, "GEN9_I2C_SCL_PL2"),
	PINCTRL_PIN(TEGRA_PIN_GEN9_I2C_SDA_PL3, "GEN9_I2C_SDA_PL3"),
	PINCTRL_PIN(TEGRA_PIN_USB_VBUS_EN0_PL4, "USB_VBUS_EN0_PL4"),
	PINCTRL_PIN(TEGRA_PIN_USB_VBUS_EN1_PL5, "USB_VBUS_EN1_PL5"),
	PINCTRL_PIN(TEGRA_PIN_GP_PWM6_PL6, "GP_PWM6_PL6"),
	PINCTRL_PIN(TEGRA_PIN_GP_PWM7_PL7, "GP_PWM7_PL7"),
	PINCTRL_PIN(TEGRA_PIN_DMIC1_DAT_PM0, "DMIC1_DAT_PM0"),
	PINCTRL_PIN(TEGRA_PIN_DMIC1_CLK_PM1, "DMIC1_CLK_PM1"),
	PINCTRL_PIN(TEGRA_PIN_DMIC2_DAT_PM2, "DMIC2_DAT_PM2"),
	PINCTRL_PIN(TEGRA_PIN_DMIC2_CLK_PM3, "DMIC2_CLK_PM3"),
	PINCTRL_PIN(TEGRA_PIN_DMIC4_DAT_PM4, "DMIC4_DAT_PM4"),
	PINCTRL_PIN(TEGRA_PIN_DMIC4_CLK_PM5, "DMIC4_CLK_PM5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM1_PN0, "GPIO_CAM1_PN0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM2_PN1, "GPIO_CAM2_PN1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM3_PN2, "GPIO_CAM3_PN2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM4_PN3, "GPIO_CAM4_PN3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM5_PN4, "GPIO_CAM5_PN4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM6_PN5, "GPIO_CAM6_PN5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_CAM7_PN6, "GPIO_CAM7_PN6"),
	PINCTRL_PIN(TEGRA_PIN_EXTPERIPH1_CLK_PO0, "EXTPERIPH1_CLK_PO0"),
	PINCTRL_PIN(TEGRA_PIN_EXTPERIPH2_CLK_PO1, "EXTPERIPH2_CLK_PO1"),
	PINCTRL_PIN(TEGRA_PIN_CAM_I2C_SCL_PO2, "CAM_I2C_SCL_PO2"),
	PINCTRL_PIN(TEGRA_PIN_CAM_I2C_SDA_PO3, "CAM_I2C_SDA_PO3"),
	PINCTRL_PIN(TEGRA_PIN_DP_AUX_CH0_HPD_PP0, "DP_AUX_CH0_HPD_PP0"),
	PINCTRL_PIN(TEGRA_PIN_DP_AUX_CH1_HPD_PP1, "DP_AUX_CH1_HPD_PP1"),
	PINCTRL_PIN(TEGRA_PIN_HDMI_CEC_PP2, "HDMI_CEC_PP2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_EDP0_PP3, "GPIO_EDP0_PP3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_EDP1_PP4, "GPIO_EDP1_PP4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_EDP2_PP5, "GPIO_EDP2_PP5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_EDP3_PP6, "GPIO_EDP3_PP6"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_CLK_PQ0, "DIRECTDC1_CLK_PQ0"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_IN_PQ1, "DIRECTDC1_IN_PQ1"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_OUT0_PQ2, "DIRECTDC1_OUT0_PQ2"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_OUT1_PQ3, "DIRECTDC1_OUT1_PQ3"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_OUT2_PQ4, "DIRECTDC1_OUT2_PQ4"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC1_OUT3_PQ5, "DIRECTDC1_OUT3_PQ5"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_SCK_PR0, "QSPI_SCK_PR0"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_IO0_PR1, "QSPI_IO0_PR1"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_IO1_PR2, "QSPI_IO1_PR2"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_IO2_PR3, "QSPI_IO2_PR3"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_IO3_PR4, "QSPI_IO3_PR4"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_CS_N_PR5, "QSPI_CS_N_PR5"),
	PINCTRL_PIN(TEGRA_PIN_PWR_I2C_SCL_PS0, "PWR_I2C_SCL_PS0"),
	PINCTRL_PIN(TEGRA_PIN_PWR_I2C_SDA_PS1, "PWR_I2C_SDA_PS1"),
	PINCTRL_PIN(TEGRA_PIN_BATT_OC_PS2, "BATT_OC_PS2"),
	PINCTRL_PIN(TEGRA_PIN_SAFE_STATE_PS3, "SAFE_STATE_PS3"),
	PINCTRL_PIN(TEGRA_PIN_VCOMP_ALERT_PS4, "VCOMP_ALERT_PS4"),
	PINCTRL_PIN(TEGRA_PIN_UART1_TX_PT0, "UART1_TX_PT0"),
	PINCTRL_PIN(TEGRA_PIN_UART1_RX_PT1, "UART1_RX_PT1"),
	PINCTRL_PIN(TEGRA_PIN_UART1_RTS_PT2, "UART1_RTS_PT2"),
	PINCTRL_PIN(TEGRA_PIN_UART1_CTS_PT3, "UART1_CTS_PT3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS0_PU0, "GPIO_DIS0_PU0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS1_PU1, "GPIO_DIS1_PU1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS2_PU2, "GPIO_DIS2_PU2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS3_PU3, "GPIO_DIS3_PU3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS4_PU4, "GPIO_DIS4_PU4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_DIS5_PU5, "GPIO_DIS5_PU5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN0_PV0, "GPIO_SEN0_PV0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN1_PV1, "GPIO_SEN1_PV1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN2_PV2, "GPIO_SEN2_PV2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN3_PV3, "GPIO_SEN3_PV3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN4_PV4, "GPIO_SEN4_PV4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN5_PV5, "GPIO_SEN5_PV5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN6_PV6, "GPIO_SEN6_PV6"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN7_PV7, "GPIO_SEN7_PV7"),
	PINCTRL_PIN(TEGRA_PIN_GEN8_I2C_SCL_PW0, "GEN8_I2C_SCL_PW0"),
	PINCTRL_PIN(TEGRA_PIN_GEN8_I2C_SDA_PW1, "GEN8_I2C_SDA_PW1"),
	PINCTRL_PIN(TEGRA_PIN_UART3_TX_PW2, "UART3_TX_PW2"),
	PINCTRL_PIN(TEGRA_PIN_UART3_RX_PW3, "UART3_RX_PW3"),
	PINCTRL_PIN(TEGRA_PIN_UART3_RTS_PW4, "UART3_RTS_PW4"),
	PINCTRL_PIN(TEGRA_PIN_UART3_CTS_PW5, "UART3_CTS_PW5"),
	PINCTRL_PIN(TEGRA_PIN_UART7_TX_PW6, "UART7_TX_PW6"),
	PINCTRL_PIN(TEGRA_PIN_UART7_RX_PW7, "UART7_RX_PW7"),
	PINCTRL_PIN(TEGRA_PIN_UART2_TX_PX0, "UART2_TX_PX0"),
	PINCTRL_PIN(TEGRA_PIN_UART2_RX_PX1, "UART2_RX_PX1"),
	PINCTRL_PIN(TEGRA_PIN_UART2_RTS_PX2, "UART2_RTS_PX2"),
	PINCTRL_PIN(TEGRA_PIN_UART2_CTS_PX3, "UART2_CTS_PX3"),
	PINCTRL_PIN(TEGRA_PIN_UART5_TX_PX4, "UART5_TX_PX4"),
	PINCTRL_PIN(TEGRA_PIN_UART5_RX_PX5, "UART5_RX_PX5"),
	PINCTRL_PIN(TEGRA_PIN_UART5_RTS_PX6, "UART5_RTS_PX6"),
	PINCTRL_PIN(TEGRA_PIN_UART5_CTS_PX7, "UART5_CTS_PX7"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM1_PY0, "GPIO_MDM1_PY0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM2_PY1, "GPIO_MDM2_PY1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM3_PY2, "GPIO_MDM3_PY2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM4_PY3, "GPIO_MDM4_PY3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM5_PY4, "GPIO_MDM5_PY4"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM6_PY5, "GPIO_MDM6_PY5"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_MDM7_PY6, "GPIO_MDM7_PY6"),
	PINCTRL_PIN(TEGRA_PIN_CAN1_DOUT_PZ0, "CAN1_DOUT_PZ0"),
	PINCTRL_PIN(TEGRA_PIN_CAN1_DIN_PZ1, "CAN1_DIN_PZ1"),
	PINCTRL_PIN(TEGRA_PIN_CAN0_DOUT_PZ2, "CAN0_DOUT_PZ2"),
	PINCTRL_PIN(TEGRA_PIN_CAN0_DIN_PZ3, "CAN0_DIN_PZ3"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO0_PAA0, "CAN_GPIO0_PAA0"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO1_PAA1, "CAN_GPIO1_PAA1"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO2_PAA2, "CAN_GPIO2_PAA2"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO3_PAA3, "CAN_GPIO3_PAA3"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO4_PAA4, "CAN_GPIO4_PAA4"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO5_PAA5, "CAN_GPIO5_PAA5"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO6_PAA6, "CAN_GPIO6_PAA6"),
	PINCTRL_PIN(TEGRA_PIN_CAN_GPIO7_PAA7, "CAN_GPIO7_PAA7"),
	PINCTRL_PIN(TEGRA_PIN_UFS0_REF_CLK_PBB0, "UFS0_REF_CLK_PBB0"),
	PINCTRL_PIN(TEGRA_PIN_UFS0_RST_PBB1, "UFS0_RST_PBB1"),
	PINCTRL_PIN(TEGRA_PIN_DAP4_SCLK_PCC0, "DAP4_SCLK_PCC0"),
	PINCTRL_PIN(TEGRA_PIN_DAP4_DOUT_PCC1, "DAP4_DOUT_PCC1"),
	PINCTRL_PIN(TEGRA_PIN_DAP4_DIN_PCC2, "DAP4_DIN_PCC2"),
	PINCTRL_PIN(TEGRA_PIN_DAP4_FS_PCC3, "DAP4_FS_PCC3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN8_PEE0, "GPIO_SEN8_PEE0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SEN9_PEE1, "GPIO_SEN9_PEE1"),
	PINCTRL_PIN(TEGRA_PIN_TOUCH_CLK_PEE2, "TOUCH_CLK_PEE2"),
	PINCTRL_PIN(TEGRA_PIN_POWER_ON_PFF0, "POWER_ON_PFF0"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SW1_PFF1, "GPIO_SW1_PFF1"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SW2_PFF2, "GPIO_SW2_PFF2"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SW3_PFF3, "GPIO_SW3_PFF3"),
	PINCTRL_PIN(TEGRA_PIN_GPIO_SW4_PFF4, "GPIO_SW4_PFF4"),
	PINCTRL_PIN(TEGRA_PIN_DIRECTDC_COMP, "DIRECTDC_COMP"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC1_COMP,	"SDMMC1_COMP"),
	PINCTRL_PIN(TEGRA_PIN_EQOS_COMP, "EQOS_COMP"),
	PINCTRL_PIN(TEGRA_PIN_SDMMC3_COMP, "SDMMC3_COMP"),
	PINCTRL_PIN(TEGRA_PIN_QSPI_COMP, "QSPI_COMP"),
	PINCTRL_PIN(TEGRA_PIN_SHUTDOWN, "SHUTDOWN"),
	PINCTRL_PIN(TEGRA_PIN_PMU_INT, "PMU_INT"),
	PINCTRL_PIN(TEGRA_PIN_SOC_PWR_REQ, "SOC_PWR_REQ"),
	PINCTRL_PIN(TEGRA_PIN_CLK_32K_IN, "CLK_32K_IN"),

};

static const unsigned pex_l0_rst_n_pa0_pins[] = {
	TEGRA_PIN_PEX_L0_RST_N_PA0,
};

static const unsigned pex_l0_clkreq_n_pa1_pins[] = {
	TEGRA_PIN_PEX_L0_CLKREQ_N_PA1,
};

static const unsigned pex_wake_n_pa2_pins[] = {
	TEGRA_PIN_PEX_WAKE_N_PA2,
};

static const unsigned pex_l1_rst_n_pa3_pins[] = {
	TEGRA_PIN_PEX_L1_RST_N_PA3,
};

static const unsigned pex_l1_clkreq_n_pa4_pins[] = {
	TEGRA_PIN_PEX_L1_CLKREQ_N_PA4,
};

static const unsigned pex_l2_rst_n_pa5_pins[] = {
	TEGRA_PIN_PEX_L2_RST_N_PA5,
};

static const unsigned pex_l2_clkreq_n_pa6_pins[] = {
	TEGRA_PIN_PEX_L2_CLKREQ_N_PA6,
};

static const unsigned uart4_tx_pb0_pins[] = {
	TEGRA_PIN_UART4_TX_PB0,
};

static const unsigned uart4_rx_pb1_pins[] = {
	TEGRA_PIN_UART4_RX_PB1,
};

static const unsigned uart4_rts_pb2_pins[] = {
	TEGRA_PIN_UART4_RTS_PB2,
};

static const unsigned uart4_cts_pb3_pins[] = {
	TEGRA_PIN_UART4_CTS_PB3,
};

static const unsigned gpio_wan1_pb4_pins[] = {
	TEGRA_PIN_GPIO_WAN1_PB4,
};

static const unsigned gpio_wan2_pb5_pins[] = {
	TEGRA_PIN_GPIO_WAN2_PB5,
};

static const unsigned gpio_wan3_pb6_pins[] = {
	TEGRA_PIN_GPIO_WAN3_PB6,
};

static const unsigned gpio_wan4_pc0_pins[] = {
	TEGRA_PIN_GPIO_WAN4_PC0,
};

static const unsigned dap2_sclk_pc1_pins[] = {
	TEGRA_PIN_DAP2_SCLK_PC1,
};

static const unsigned dap2_dout_pc2_pins[] = {
	TEGRA_PIN_DAP2_DOUT_PC2,
};

static const unsigned dap2_din_pc3_pins[] = {
	TEGRA_PIN_DAP2_DIN_PC3,
};

static const unsigned dap2_fs_pc4_pins[] = {
	TEGRA_PIN_DAP2_FS_PC4,
};

static const unsigned gen1_i2c_scl_pc5_pins[] = {
	TEGRA_PIN_GEN1_I2C_SCL_PC5,
};

static const unsigned gen1_i2c_sda_pc6_pins[] = {
	TEGRA_PIN_GEN1_I2C_SDA_PC6,
};

static const unsigned sdmmc1_clk_pd0_pins[] = {
	TEGRA_PIN_SDMMC1_CLK_PD0,
};

static const unsigned sdmmc1_cmd_pd1_pins[] = {
	TEGRA_PIN_SDMMC1_CMD_PD1,
};

static const unsigned sdmmc1_comp_pins[] = {
	TEGRA_PIN_SDMMC1_COMP,
};

static const unsigned sdmmc1_dat0_pd2_pins[] = {
	TEGRA_PIN_SDMMC1_DAT0_PD2,
};

static const unsigned sdmmc1_dat1_pd3_pins[] = {
	TEGRA_PIN_SDMMC1_DAT1_PD3,
};

static const unsigned sdmmc1_dat2_pd4_pins[] = {
	TEGRA_PIN_SDMMC1_DAT2_PD4,
};

static const unsigned sdmmc1_dat3_pd5_pins[] = {
TEGRA_PIN_SDMMC1_DAT3_PD5,
};

static const unsigned eqos_txc_pe0_pins[] = {
	TEGRA_PIN_EQOS_TXC_PE0,
};

static const unsigned eqos_td0_pe1_pins[] = {
	TEGRA_PIN_EQOS_TD0_PE1,
};

static const unsigned eqos_td1_pe2_pins[] = {
	TEGRA_PIN_EQOS_TD1_PE2,
};

static const unsigned eqos_td2_pe3_pins[] = {
	TEGRA_PIN_EQOS_TD2_PE3,
};

static const unsigned eqos_td3_pe4_pins[] = {
	TEGRA_PIN_EQOS_TD3_PE4,
};

static const unsigned eqos_tx_ctl_pe5_pins[] = {
	TEGRA_PIN_EQOS_TX_CTL_PE5,
};

static const unsigned eqos_rd0_pe6_pins[] = {
	TEGRA_PIN_EQOS_RD0_PE6,
};

static const unsigned eqos_rd1_pe7_pins[] = {
	TEGRA_PIN_EQOS_RD1_PE7,
};

static const unsigned eqos_rd2_pf0_pins[] = {
	TEGRA_PIN_EQOS_RD2_PF0,
};

static const unsigned eqos_rd3_pf1_pins[] = {
	TEGRA_PIN_EQOS_RD3_PF1,
};

static const unsigned eqos_rx_ctl_pf2_pins[] = {
	TEGRA_PIN_EQOS_RX_CTL_PF2,
};

static const unsigned eqos_rxc_pf3_pins[] = {
	TEGRA_PIN_EQOS_RXC_PF3,
};

static const unsigned eqos_mdio_pf4_pins[] = {
	TEGRA_PIN_EQOS_MDIO_PF4,
};

static const unsigned eqos_mdc_pf5_pins[] = {
	TEGRA_PIN_EQOS_MDC_PF5,
};

static const unsigned eqos_comp_pins[] = {
	TEGRA_PIN_EQOS_COMP,
};

static const unsigned sdmmc4_clk_pcc4_pins[] = {};

static const unsigned sdmmc4_cmd_pt7_pins[] = {};

static const unsigned sdmmc4_dqs_pins[] = {};

static const unsigned sdmmc4_dat7_pins[] = {};

static const unsigned sdmmc4_dat6_pins[] = {};

static const unsigned sdmmc4_dat5_pins[] = {};

static const unsigned sdmmc4_dat4_pins[] = {};

static const unsigned sdmmc4_dat3_pins[] = {};

static const unsigned sdmmc4_dat2_pins[] = {};

static const unsigned sdmmc4_dat1_pins[] = {};

static const unsigned sdmmc4_dat0_pins[] = {};

static const unsigned sdmmc3_clk_pg0_pins[] = {
	TEGRA_PIN_SDMMC3_CLK_PG0,
};

static const unsigned sdmmc3_cmd_pg1_pins[] = {
	TEGRA_PIN_SDMMC3_CMD_PG1,
};

static const unsigned sdmmc3_dat0_pg2_pins[] = {
	TEGRA_PIN_SDMMC3_DAT0_PG2,
};

static const unsigned sdmmc3_comp_pins[] = {
	TEGRA_PIN_SDMMC3_COMP,
};

static const unsigned sdmmc3_dat1_pg3_pins[] = {
	TEGRA_PIN_SDMMC3_DAT1_PG3,
};

static const unsigned sdmmc3_dat2_pg4_pins[] = {
	TEGRA_PIN_SDMMC3_DAT2_PG4,
};

static const unsigned sdmmc3_dat3_pg5_pins[] = {
	TEGRA_PIN_SDMMC3_DAT3_PG5,
};

static const unsigned gpio_wan5_ph0_pins[] = {
	TEGRA_PIN_GPIO_WAN5_PH0,
};

static const unsigned gpio_wan6_ph1_pins[] = {
	TEGRA_PIN_GPIO_WAN6_PH1,
};

static const unsigned gpio_wan7_ph2_pins[] = {
	TEGRA_PIN_GPIO_WAN7_PH2,
};

static const unsigned gpio_wan8_ph3_pins[] = {
	TEGRA_PIN_GPIO_WAN8_PH3,
};

static const unsigned bcpu_pwr_req_ph4_pins[] = {
	TEGRA_PIN_BCPU_PWR_REQ_PH4,
};

static const unsigned mcpu_pwr_req_ph5_pins[] = {
	TEGRA_PIN_MCPU_PWR_REQ_PH5,
};

static const unsigned gpu_pwr_req_ph6_pins[] = {
	TEGRA_PIN_GPU_PWR_REQ_PH6,
};

static const unsigned gpio_pq0_pi0_pins[] = {
	TEGRA_PIN_GPIO_PQ0_PI0,
};

static const unsigned gpio_pq1_pi1_pins[] = {
	TEGRA_PIN_GPIO_PQ1_PI1,
};

static const unsigned gpio_pq2_pi2_pins[] = {
	TEGRA_PIN_GPIO_PQ2_PI2,
};

static const unsigned gpio_pq3_pi3_pins[] = {
	TEGRA_PIN_GPIO_PQ3_PI3,
};

static const unsigned gpio_pq4_pi4_pins[] = {
	TEGRA_PIN_GPIO_PQ4_PI4,
};

static const unsigned gpio_pq5_pi5_pins[] = {
	TEGRA_PIN_GPIO_PQ5_PI5,
};

static const unsigned gpio_pq6_pi6_pins[] = {
	TEGRA_PIN_GPIO_PQ6_PI6,
};

static const unsigned gpio_pq7_pi7_pins[] = {
	TEGRA_PIN_GPIO_PQ7_PI7,
};

static const unsigned dap1_sclk_pj0_pins[] = {
	TEGRA_PIN_DAP1_SCLK_PJ0,
};

static const unsigned dap1_dout_pj1_pins[] = {
	TEGRA_PIN_DAP1_DOUT_PJ1,
};

static const unsigned dap1_din_pj2_pins[] = {
	TEGRA_PIN_DAP1_DIN_PJ2,
};

static const unsigned dap1_fs_pj3_pins[] = {
	TEGRA_PIN_DAP1_FS_PJ3,
};

static const unsigned aud_mclk_pj4_pins[] = {
	TEGRA_PIN_AUD_MCLK_PJ4,
};

static const unsigned gpio_aud0_pj5_pins[] = {
	TEGRA_PIN_GPIO_AUD0_PJ5,
};

static const unsigned gpio_aud1_pj6_pins[] = {
	TEGRA_PIN_GPIO_AUD1_PJ6,
};

static const unsigned gpio_aud2_pj7_pins[] = {
	TEGRA_PIN_GPIO_AUD2_PJ7,
};

static const unsigned gpio_aud3_pk0_pins[] = {
	TEGRA_PIN_GPIO_AUD3_PK0,
};

static const unsigned gen7_i2c_scl_pl0_pins[] = {
	TEGRA_PIN_GEN7_I2C_SCL_PL0,
};

static const unsigned gen7_i2c_sda_pl1_pins[] = {
	TEGRA_PIN_GEN7_I2C_SDA_PL1,
};

static const unsigned gen9_i2c_scl_pl2_pins[] = {
	TEGRA_PIN_GEN9_I2C_SCL_PL2,
};

static const unsigned gen9_i2c_sda_pl3_pins[] = {
	TEGRA_PIN_GEN9_I2C_SDA_PL3,
};

static const unsigned usb_vbus_en0_pl4_pins[] = {
	TEGRA_PIN_USB_VBUS_EN0_PL4,
};

static const unsigned usb_vbus_en1_pl5_pins[] = {
	TEGRA_PIN_USB_VBUS_EN1_PL5,
};

static const unsigned gp_pwm6_pl6_pins[] = {
	TEGRA_PIN_GP_PWM6_PL6,
};

static const unsigned gp_pwm7_pl7_pins[] = {
	TEGRA_PIN_GP_PWM7_PL7,
};

static const unsigned dmic1_dat_pm0_pins[] = {
	TEGRA_PIN_DMIC1_DAT_PM0,
};

static const unsigned dmic1_clk_pm1_pins[] = {
	TEGRA_PIN_DMIC1_CLK_PM1,
};

static const unsigned dmic2_dat_pm2_pins[] = {
	TEGRA_PIN_DMIC2_DAT_PM2,
};

static const unsigned dmic2_clk_pm3_pins[] = {
	TEGRA_PIN_DMIC2_CLK_PM3,
};

static const unsigned dmic4_dat_pm4_pins[] = {
	TEGRA_PIN_DMIC4_DAT_PM4,
};

static const unsigned dmic4_clk_pm5_pins[] = {
	TEGRA_PIN_DMIC4_CLK_PM5,
};

static const unsigned gpio_cam1_pn0_pins[] = {
	TEGRA_PIN_GPIO_CAM1_PN0,
};

static const unsigned gpio_cam2_pn1_pins[] = {
	TEGRA_PIN_GPIO_CAM2_PN1,
};

static const unsigned gpio_cam3_pn2_pins[] = {
	TEGRA_PIN_GPIO_CAM3_PN2,
};

static const unsigned gpio_cam4_pn3_pins[] = {
	TEGRA_PIN_GPIO_CAM4_PN3,
};

static const unsigned gpio_cam5_pn4_pins[] = {
	TEGRA_PIN_GPIO_CAM5_PN4,
};

static const unsigned gpio_cam6_pn5_pins[] = {
	TEGRA_PIN_GPIO_CAM6_PN5,
};

static const unsigned gpio_cam7_pn6_pins[] = {
	TEGRA_PIN_GPIO_CAM7_PN6,
};

static const unsigned extperiph1_clk_po0_pins[] = {
	TEGRA_PIN_EXTPERIPH1_CLK_PO0,
};

static const unsigned extperiph2_clk_po1_pins[] = {
	TEGRA_PIN_EXTPERIPH2_CLK_PO1,
};

static const unsigned cam_i2c_scl_po2_pins[] = {
	TEGRA_PIN_CAM_I2C_SCL_PO2,
};

static const unsigned cam_i2c_sda_po3_pins[] = {
	TEGRA_PIN_CAM_I2C_SDA_PO3,
};

static const unsigned dp_aux_ch0_hpd_pp0_pins[] = {
	TEGRA_PIN_DP_AUX_CH0_HPD_PP0,
};

static const unsigned dp_aux_ch1_hpd_pp1_pins[] = {
	TEGRA_PIN_DP_AUX_CH1_HPD_PP1,
};

static const unsigned hdmi_cec_pp2_pins[] = {
	TEGRA_PIN_HDMI_CEC_PP2,
};

static const unsigned gpio_edp0_pp3_pins[] = {
	TEGRA_PIN_GPIO_EDP0_PP3,
};

static const unsigned gpio_edp1_pp4_pins[] = {
	TEGRA_PIN_GPIO_EDP1_PP4,
};

static const unsigned gpio_edp2_pp5_pins[] = {
	TEGRA_PIN_GPIO_EDP2_PP5,
};

static const unsigned gpio_edp3_pp6_pins[] = {
	TEGRA_PIN_GPIO_EDP3_PP6,
};

static const unsigned directdc1_clk_pq0_pins[] = {
	TEGRA_PIN_DIRECTDC1_CLK_PQ0,
};

static const unsigned directdc_comp_pins[] = {
	TEGRA_PIN_DIRECTDC_COMP,
};

static const unsigned directdc1_in_pq1_pins[] = {
	TEGRA_PIN_DIRECTDC1_IN_PQ1,
};

static const unsigned directdc1_out0_pq2_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT0_PQ2,
};

static const unsigned directdc1_out1_pq3_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT1_PQ3,
};

static const unsigned directdc1_out2_pq4_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT2_PQ4,
};

static const unsigned directdc1_out3_pq5_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT3_PQ5,
};

static const unsigned qspi_sck_pr0_pins[] = {
	TEGRA_PIN_QSPI_SCK_PR0,
};

static const unsigned qspi_io0_pr1_pins[] = {
	TEGRA_PIN_QSPI_IO0_PR1,
};

static const unsigned qspi_io1_pr2_pins[] = {
	TEGRA_PIN_QSPI_IO1_PR2,
};

static const unsigned qspi_io2_pr3_pins[] = {
	TEGRA_PIN_QSPI_IO2_PR3,
};

static const unsigned qspi_io3_pr4_pins[] = {
	TEGRA_PIN_QSPI_IO3_PR4,
};

static const unsigned qspi_cs_n_pr5_pins[] = {
	TEGRA_PIN_QSPI_CS_N_PR5,
};

static const unsigned qspi_comp_pins[] = {
	TEGRA_PIN_QSPI_COMP,
};

static const unsigned pwr_i2c_scl_ps0_pins[] = {
	TEGRA_PIN_PWR_I2C_SCL_PS0,
};

static const unsigned pwr_i2c_sda_ps1_pins[] = {
	TEGRA_PIN_PWR_I2C_SDA_PS1,
};

static const unsigned batt_oc_ps2_pins[] = {
	TEGRA_PIN_BATT_OC_PS2,
};

static const unsigned safe_state_ps3_pins[] = {
	TEGRA_PIN_SAFE_STATE_PS3,
};

static const unsigned vcomp_alert_ps4_pins[] = {
	TEGRA_PIN_VCOMP_ALERT_PS4,
};

static const unsigned soc_pwr_req_pins[] = {
	TEGRA_PIN_SOC_PWR_REQ,
};

static const unsigned uart1_tx_pt0_pins[] = {
	TEGRA_PIN_UART1_TX_PT0,
};

static const unsigned uart1_rx_pt1_pins[] = {
	TEGRA_PIN_UART1_RX_PT1,
};

static const unsigned uart1_rts_pt2_pins[] = {
	TEGRA_PIN_UART1_RTS_PT2,
};

static const unsigned uart1_cts_pt3_pins[] = {
	TEGRA_PIN_UART1_CTS_PT3,
};

static const unsigned gpio_dis0_pu0_pins[] = {
	TEGRA_PIN_GPIO_DIS0_PU0,
};

static const unsigned gpio_dis1_pu1_pins[] = {
	TEGRA_PIN_GPIO_DIS1_PU1,
};

static const unsigned gpio_dis2_pu2_pins[] = {
	TEGRA_PIN_GPIO_DIS2_PU2,
};

static const unsigned gpio_dis3_pu3_pins[] = {
	TEGRA_PIN_GPIO_DIS3_PU3,
};

static const unsigned gpio_dis4_pu4_pins[] = {
	TEGRA_PIN_GPIO_DIS4_PU4,
};

static const unsigned gpio_dis5_pu5_pins[] = {
	TEGRA_PIN_GPIO_DIS5_PU5,
};

static const unsigned gpio_sen0_pv0_pins[] = {
	TEGRA_PIN_GPIO_SEN0_PV0,
};

static const unsigned gpio_sen1_pv1_pins[] = {
	TEGRA_PIN_GPIO_SEN1_PV1,
};

static const unsigned gpio_sen2_pv2_pins[] = {
	TEGRA_PIN_GPIO_SEN2_PV2,
};

static const unsigned gpio_sen3_pv3_pins[] = {
	TEGRA_PIN_GPIO_SEN3_PV3,
};

static const unsigned gpio_sen4_pv4_pins[] = {
	TEGRA_PIN_GPIO_SEN4_PV4,
};

static const unsigned gpio_sen5_pv5_pins[] = {
	TEGRA_PIN_GPIO_SEN5_PV5,
};

static const unsigned gpio_sen6_pv6_pins[] = {
	TEGRA_PIN_GPIO_SEN6_PV6,
};

static const unsigned gpio_sen7_pv7_pins[] = {
	TEGRA_PIN_GPIO_SEN7_PV7,
};

static const unsigned gen8_i2c_scl_pw0_pins[] = {
	TEGRA_PIN_GEN8_I2C_SCL_PW0,
};

static const unsigned gen8_i2c_sda_pw1_pins[] = {
	TEGRA_PIN_GEN8_I2C_SDA_PW1,
};

static const unsigned uart3_tx_pw2_pins[] = {
	TEGRA_PIN_UART3_TX_PW2,
};

static const unsigned uart3_rx_pw3_pins[] = {
	TEGRA_PIN_UART3_RX_PW3,
};

static const unsigned uart3_rts_pw4_pins[] = {
	TEGRA_PIN_UART3_RTS_PW4,
};

static const unsigned uart3_cts_pw5_pins[] = {
	TEGRA_PIN_UART3_CTS_PW5,
};

static const unsigned uart7_tx_pw6_pins[] = {
	TEGRA_PIN_UART7_TX_PW6,
};

static const unsigned uart7_rx_pw7_pins[] = {
	TEGRA_PIN_UART7_RX_PW7,
};

static const unsigned uart2_tx_px0_pins[] = {
	TEGRA_PIN_UART2_TX_PX0,
};

static const unsigned uart2_rx_px1_pins[] = {
	TEGRA_PIN_UART2_RX_PX1,
};

static const unsigned uart2_rts_px2_pins[] = {
	TEGRA_PIN_UART2_RTS_PX2,
};

static const unsigned uart2_cts_px3_pins[] = {
	TEGRA_PIN_UART2_CTS_PX3,
};

static const unsigned uart5_tx_px4_pins[] = {
	TEGRA_PIN_UART5_TX_PX4,
};

static const unsigned uart5_rx_px5_pins[] = {
	TEGRA_PIN_UART5_RX_PX5,
};

static const unsigned uart5_rts_px6_pins[] = {
	TEGRA_PIN_UART5_RTS_PX6,
};

static const unsigned uart5_cts_px7_pins[] = {
	TEGRA_PIN_UART5_CTS_PX7,
};

static const unsigned gpio_mdm1_py0_pins[] = {
	TEGRA_PIN_GPIO_MDM1_PY0,
};

static const unsigned gpio_mdm2_py1_pins[] = {
	TEGRA_PIN_GPIO_MDM2_PY1,
};

static const unsigned gpio_mdm3_py2_pins[] = {
	TEGRA_PIN_GPIO_MDM3_PY2,
};

static const unsigned gpio_mdm4_py3_pins[] = {
	TEGRA_PIN_GPIO_MDM4_PY3,
};

static const unsigned gpio_mdm5_py4_pins[] = {
	TEGRA_PIN_GPIO_MDM5_PY4,
};

static const unsigned gpio_mdm6_py5_pins[] = {
	TEGRA_PIN_GPIO_MDM6_PY5,
};

static const unsigned gpio_mdm7_py6_pins[] = {
	TEGRA_PIN_GPIO_MDM7_PY6,
};

static const unsigned can1_dout_pz0_pins[] = {
	TEGRA_PIN_CAN1_DOUT_PZ0,
};

static const unsigned can1_din_pz1_pins[] = {
	TEGRA_PIN_CAN1_DIN_PZ1,
};

static const unsigned can0_dout_pz2_pins[] = {
	TEGRA_PIN_CAN0_DOUT_PZ2,
};

static const unsigned can0_din_pz3_pins[] = {
	TEGRA_PIN_CAN0_DIN_PZ3,
};

static const unsigned can_gpio0_paa0_pins[] = {
	TEGRA_PIN_CAN_GPIO0_PAA0,
};

static const unsigned can_gpio1_paa1_pins[] = {
	TEGRA_PIN_CAN_GPIO1_PAA1,
};

static const unsigned can_gpio2_paa2_pins[] = {
	TEGRA_PIN_CAN_GPIO2_PAA2,
};

static const unsigned can_gpio3_paa3_pins[] = {
	TEGRA_PIN_CAN_GPIO3_PAA3,
};

static const unsigned can_gpio4_paa4_pins[] = {
	TEGRA_PIN_CAN_GPIO4_PAA4,
};

static const unsigned can_gpio5_paa5_pins[] = {
	TEGRA_PIN_CAN_GPIO5_PAA5,
};

static const unsigned can_gpio6_paa6_pins[] = {
	TEGRA_PIN_CAN_GPIO6_PAA6,
};

static const unsigned can_gpio7_paa7_pins[] = {
	TEGRA_PIN_CAN_GPIO7_PAA7,
};

static const unsigned ufs0_ref_clk_pbb0_pins[] = {
	TEGRA_PIN_UFS0_REF_CLK_PBB0,
};

static const unsigned ufs0_rst_pbb1_pins[] = {
	TEGRA_PIN_UFS0_RST_PBB1,
};

static const unsigned dap4_sclk_pcc0_pins[] = {
	TEGRA_PIN_DAP4_SCLK_PCC0,
};

static const unsigned dap4_dout_pcc1_pins[] = {
	TEGRA_PIN_DAP4_DOUT_PCC1,
};

static const unsigned dap4_din_pcc2_pins[] = {
	TEGRA_PIN_DAP4_DIN_PCC2,
};

static const unsigned dap4_fs_pcc3_pins[] = {
	TEGRA_PIN_DAP4_FS_PCC3,
};

static const unsigned gpio_sen8_pee0_pins[] = {
	TEGRA_PIN_GPIO_SEN8_PEE0,
};

static const unsigned gpio_sen9_pee1_pins[] = {
	TEGRA_PIN_GPIO_SEN9_PEE1,
};


static const unsigned touch_clk_pee2_pins[] = {
	TEGRA_PIN_TOUCH_CLK_PEE2,
};

static const unsigned power_on_pff0_pins[] = {
	TEGRA_PIN_POWER_ON_PFF0,
};

static const unsigned gpio_sw1_pff1_pins[] = {
	TEGRA_PIN_GPIO_SW1_PFF1,
};

static const unsigned gpio_sw2_pff2_pins[] = {
	TEGRA_PIN_GPIO_SW2_PFF2,
};

static const unsigned gpio_sw3_pff3_pins[] = {
	TEGRA_PIN_GPIO_SW3_PFF3,
};

static const unsigned gpio_sw4_pff4_pins[] = {
	TEGRA_PIN_GPIO_SW4_PFF4,
};

static const unsigned clk_32k_in_pins[] = {
	TEGRA_PIN_CLK_32K_IN,
};

static const unsigned shutdown_pins[] = {
	TEGRA_PIN_SHUTDOWN,
};

static const unsigned pmu_int_pins[] = {
	TEGRA_PIN_PMU_INT,
};

static const unsigned drive_ufs0_rst_pins[] = {
	TEGRA_PIN_UFS0_RST_PBB1,
};

static const unsigned drive_ufs0_ref_clk_pins[] = {
	TEGRA_PIN_UFS0_REF_CLK_PBB0,
};

static const unsigned drive_gpio_wan8_pins[] = {
	TEGRA_PIN_GPIO_WAN8_PH3,
};

static const unsigned drive_gpio_wan7_pins[] = {
	TEGRA_PIN_GPIO_WAN7_PH2,
};

static const unsigned drive_gpio_wan6_pins[] = {
	TEGRA_PIN_GPIO_WAN6_PH1,
};

static const unsigned drive_gpio_wan5_pins[] = {
	TEGRA_PIN_GPIO_WAN5_PH0,
};

static const unsigned drive_uart2_tx_pins[] = {
	TEGRA_PIN_UART2_TX_PX0,
};

static const unsigned drive_uart2_rx_pins[] = {
	TEGRA_PIN_UART2_RX_PX1,
};

static const unsigned drive_uart2_rts_pins[] = {
	TEGRA_PIN_UART2_RTS_PX2,
};

static const unsigned drive_uart2_cts_pins[] = {
	TEGRA_PIN_UART2_CTS_PX3,
};

static const unsigned drive_uart5_rx_pins[] = {
	TEGRA_PIN_UART5_RX_PX5,
};

static const unsigned drive_uart5_tx_pins[] = {
	TEGRA_PIN_UART5_TX_PX4,
};

static const unsigned drive_uart5_rts_pins[] = {
	TEGRA_PIN_UART5_RTS_PX6,
};

static const unsigned drive_uart5_cts_pins[] = {
	TEGRA_PIN_UART5_CTS_PX7,
};

static const unsigned drive_gpio_mdm1_pins[] = {
	TEGRA_PIN_GPIO_MDM1_PY0,
};

static const unsigned drive_gpio_mdm2_pins[] = {
	TEGRA_PIN_GPIO_MDM2_PY1,
};

static const unsigned drive_gpio_mdm3_pins[] = {
	TEGRA_PIN_GPIO_MDM3_PY2,
};

static const unsigned drive_gpio_mdm4_pins[] = {
	TEGRA_PIN_GPIO_MDM4_PY3,
};

static const unsigned drive_gpio_mdm5_pins[] = {
	TEGRA_PIN_GPIO_MDM5_PY4,
};

static const unsigned drive_gpio_mdm6_pins[] = {
	TEGRA_PIN_GPIO_MDM6_PY5,
};

static const unsigned drive_gpio_mdm7_pins[] = {
	TEGRA_PIN_GPIO_MDM7_PY6,
};

static const unsigned drive_bcpu_pwr_req_pins[] = {
	TEGRA_PIN_BCPU_PWR_REQ_PH4,
};

static const unsigned drive_mcpu_pwr_req_pins[] = {
	TEGRA_PIN_MCPU_PWR_REQ_PH5,
};

static const unsigned drive_gpu_pwr_req_pins[] = {
	TEGRA_PIN_GPU_PWR_REQ_PH6,
};

static const unsigned drive_gen7_i2c_scl_pins[] = {
	TEGRA_PIN_GEN7_I2C_SCL_PL0,
};

static const unsigned drive_gen7_i2c_sda_pins[] = {
	TEGRA_PIN_GEN7_I2C_SDA_PL1,
};

static const unsigned drive_gen9_i2c_sda_pins[] = {
	TEGRA_PIN_GEN9_I2C_SDA_PL3,
};

static const unsigned drive_gen9_i2c_scl_pins[] = {
	TEGRA_PIN_GEN9_I2C_SCL_PL2,
};

static const unsigned drive_usb_vbus_en0_pins[] = {
	TEGRA_PIN_USB_VBUS_EN0_PL4,
};

static const unsigned drive_usb_vbus_en1_pins[] = {
	TEGRA_PIN_USB_VBUS_EN1_PL5,
};

static const unsigned drive_gp_pwm7_pins[] = {
	TEGRA_PIN_GP_PWM7_PL7,
};

static const unsigned drive_gp_pwm6_pins[] = {
	TEGRA_PIN_GP_PWM6_PL6,
};

static const unsigned drive_gpio_sw1_pins[] = {
	TEGRA_PIN_GPIO_SW1_PFF1,
};

static const unsigned drive_gpio_sw2_pins[] = {
	TEGRA_PIN_GPIO_SW2_PFF2,
};

static const unsigned drive_gpio_sw3_pins[] = {
	TEGRA_PIN_GPIO_SW3_PFF3,
};

static const unsigned drive_gpio_sw4_pins[] = {
	TEGRA_PIN_GPIO_SW4_PFF4,
};

static const unsigned drive_shutdown_pins[] = {
	TEGRA_PIN_SHUTDOWN,
};

static const unsigned drive_pmu_int_pins[] = {
};

static const unsigned drive_safe_state_pins[] = {
	TEGRA_PIN_SAFE_STATE_PS3,
};

static const unsigned drive_vcomp_alert_pins[] = {
	TEGRA_PIN_VCOMP_ALERT_PS4,
};

static const unsigned drive_soc_pwr_req_pins[] = {
	TEGRA_PIN_SOC_PWR_REQ,
};

static const unsigned drive_batt_oc_pins[] = {
	TEGRA_PIN_BATT_OC_PS2,
};

static const unsigned drive_clk_32k_in_pins[] = {
	TEGRA_PIN_CLK_32K_IN,
};

static const unsigned drive_power_on_pins[] = {
	TEGRA_PIN_POWER_ON_PFF0,
};

static const unsigned drive_pwr_i2c_scl_pins[] = {
	TEGRA_PIN_PWR_I2C_SCL_PS0,
};

static const unsigned drive_pwr_i2c_sda_pins[] = {
	TEGRA_PIN_PWR_I2C_SDA_PS1,
};

static const unsigned drive_gpio_dis0_pins[] = {
	TEGRA_PIN_GPIO_DIS0_PU0,
};

static const unsigned drive_gpio_dis1_pins[] = {
	TEGRA_PIN_GPIO_DIS1_PU1,
};

static const unsigned drive_gpio_dis2_pins[] = {
	TEGRA_PIN_GPIO_DIS2_PU2,
};

static const unsigned drive_gpio_dis3_pins[] = {
	TEGRA_PIN_GPIO_DIS3_PU3,
};

static const unsigned drive_gpio_dis4_pins[] = {
	TEGRA_PIN_GPIO_DIS4_PU4,
};

static const unsigned drive_gpio_dis5_pins[] = {
	TEGRA_PIN_GPIO_DIS5_PU5,
};

static const unsigned drive_qspi_io3_pins[] = {
	TEGRA_PIN_QSPI_IO3_PR4,
};

static const unsigned drive_qspi_io2_pins[] = {
	TEGRA_PIN_QSPI_IO2_PR3,
};

static const unsigned drive_qspi_io1_pins[] = {
	TEGRA_PIN_QSPI_IO1_PR2,
};

static const unsigned drive_qspi_io0_pins[] = {
	TEGRA_PIN_QSPI_IO0_PR1,
};

static const unsigned drive_qspi_sck_pins[] = {
	TEGRA_PIN_QSPI_SCK_PR0,
};

static const unsigned drive_qspi_cs_n_pins[] = {
	TEGRA_PIN_QSPI_CS_N_PR5,
};

static const unsigned drive_sdmmc3_dat3_pins[] = {
	TEGRA_PIN_SDMMC3_DAT3_PG5,
};

static const unsigned drive_sdmmc3_dat2_pins[] = {
	TEGRA_PIN_SDMMC3_DAT2_PG4,
};

static const unsigned drive_sdmmc3_dat1_pins[] = {
	TEGRA_PIN_SDMMC3_DAT1_PG3,
};

static const unsigned drive_sdmmc3_dat0_pins[] = {
	TEGRA_PIN_SDMMC3_DAT0_PG2,
};

static const unsigned drive_sdmmc3_cmd_pins[] = {
	TEGRA_PIN_SDMMC3_CMD_PG1,
};

static const unsigned drive_sdmmc3_clk_pins[] = {
	TEGRA_PIN_SDMMC3_CLK_PG0,
};

static const unsigned drive_eqos_td3_pins[] = {
	TEGRA_PIN_EQOS_TD3_PE4,
};

static const unsigned drive_eqos_td2_pins[] = {
	TEGRA_PIN_EQOS_TD2_PE3,
};

static const unsigned drive_eqos_td1_pins[] = {
	TEGRA_PIN_EQOS_TD1_PE2,
};

static const unsigned drive_eqos_td0_pins[] = {
	TEGRA_PIN_EQOS_TD0_PE1,
};

static const unsigned drive_eqos_rd3_pins[] = {
	TEGRA_PIN_EQOS_RD3_PF1,
};

static const unsigned drive_eqos_rd2_pins[] = {
	TEGRA_PIN_EQOS_RD2_PF0,
};

static const unsigned drive_eqos_rd1_pins[] = {
	TEGRA_PIN_EQOS_RD1_PE7,
};

static const unsigned drive_eqos_mdio_pins[] = {
	TEGRA_PIN_EQOS_MDIO_PF4,
};

static const unsigned drive_eqos_rd0_pins[] = {
	TEGRA_PIN_EQOS_RD0_PE6,
};

static const unsigned drive_eqos_mdc_pins[] = {
	TEGRA_PIN_EQOS_MDC_PF5,
};

static const unsigned drive_eqos_txc_pins[] = {
	TEGRA_PIN_EQOS_TXC_PE0,
};

static const unsigned drive_eqos_rxc_pins[] = {
	TEGRA_PIN_EQOS_RXC_PF3,
};

static const unsigned drive_eqos_tx_ctl_pins[] = {
	TEGRA_PIN_EQOS_TX_CTL_PE5,
};

static const unsigned drive_eqos_rx_ctl_pins[] = {
	TEGRA_PIN_EQOS_RX_CTL_PF2,
};

static const unsigned drive_sdmmc1_clk_pins[] = {
	TEGRA_PIN_SDMMC1_CLK_PD0,
};

static const unsigned drive_sdmmc1_cmd_pins[] = {
	TEGRA_PIN_SDMMC1_CMD_PD1,
};

static const unsigned drive_sdmmc1_dat3_pins[] = {
	TEGRA_PIN_SDMMC1_DAT3_PD5,
};

static const unsigned drive_sdmmc1_dat2_pins[] = {
	TEGRA_PIN_SDMMC1_DAT2_PD4,
};

static const unsigned drive_sdmmc1_dat1_pins[] = {
	TEGRA_PIN_SDMMC1_DAT1_PD3,
};

static const unsigned drive_sdmmc1_dat0_pins[] = {
	TEGRA_PIN_SDMMC1_DAT0_PD2,
};

static const unsigned drive_pex_l2_clkreq_n_pins[] = {
	TEGRA_PIN_PEX_L2_CLKREQ_N_PA6,
};

static const unsigned drive_pex_wake_n_pins[] = {
	TEGRA_PIN_PEX_WAKE_N_PA2,
};

static const unsigned drive_pex_l1_clkreq_n_pins[] = {
	TEGRA_PIN_PEX_L1_CLKREQ_N_PA4,
};

static const unsigned drive_pex_l1_rst_n_pins[] = {
	TEGRA_PIN_PEX_L1_RST_N_PA3,
};

static const unsigned drive_pex_l0_clkreq_n_pins[] = {
	TEGRA_PIN_PEX_L0_CLKREQ_N_PA1,
};

static const unsigned drive_pex_l0_rst_n_pins[] = {
	TEGRA_PIN_PEX_L0_RST_N_PA0,
};

static const unsigned drive_pex_l2_rst_n_pins[] = {
	TEGRA_PIN_PEX_L2_RST_N_PA5,
};

static const unsigned drive_gpio_edp2_pins[] = {
	TEGRA_PIN_GPIO_EDP2_PP5,
};

static const unsigned drive_gpio_edp3_pins[] = {
	TEGRA_PIN_GPIO_EDP3_PP6,
};

static const unsigned drive_gpio_edp0_pins[] = {
	TEGRA_PIN_GPIO_EDP0_PP3,
};

static const unsigned drive_gpio_edp1_pins[] = {
	TEGRA_PIN_GPIO_EDP1_PP4,
};

static const unsigned drive_dp_aux_ch0_hpd_pins[] = {
	TEGRA_PIN_DP_AUX_CH0_HPD_PP0,
};

static const unsigned drive_dp_aux_ch1_hpd_pins[] = {
	TEGRA_PIN_DP_AUX_CH1_HPD_PP1,
};

static const unsigned drive_hdmi_cec_pins[] = {
	TEGRA_PIN_HDMI_CEC_PP2,
};

static const unsigned drive_gpio_pq0_pins[] = {
	TEGRA_PIN_GPIO_PQ0_PI0,
};

static const unsigned drive_gpio_pq1_pins[] = {
	TEGRA_PIN_GPIO_PQ1_PI1,
};

static const unsigned drive_gpio_pq2_pins[] = {
	TEGRA_PIN_GPIO_PQ2_PI2,
};

static const unsigned drive_gpio_pq3_pins[] = {
	TEGRA_PIN_GPIO_PQ3_PI3,
};

static const unsigned drive_gpio_pq4_pins[] = {
	TEGRA_PIN_GPIO_PQ4_PI4,
};

static const unsigned drive_gpio_pq5_pins[] = {
	TEGRA_PIN_GPIO_PQ5_PI5,
};

static const unsigned drive_gpio_pq6_pins[] = {
	TEGRA_PIN_GPIO_PQ6_PI6,
};

static const unsigned drive_gpio_pq7_pins[] = {
	TEGRA_PIN_GPIO_PQ7_PI7,
};

static const unsigned drive_dap2_din_pins[] = {
	TEGRA_PIN_DAP2_DIN_PC3,
};

static const unsigned drive_dap2_dout_pins[] = {
	TEGRA_PIN_DAP2_DOUT_PC2,
};

static const unsigned drive_dap2_fs_pins[] = {
	TEGRA_PIN_DAP2_FS_PC4,
};

static const unsigned drive_dap2_sclk_pins[] = {
	TEGRA_PIN_DAP2_SCLK_PC1,
};

static const unsigned drive_uart4_cts_pins[] = {
	TEGRA_PIN_UART4_CTS_PB3,
};

static const unsigned drive_uart4_rts_pins[] = {
	TEGRA_PIN_UART4_RTS_PB2,
};

static const unsigned drive_uart4_rx_pins[] = {
	TEGRA_PIN_UART4_RX_PB1,
};

static const unsigned drive_uart4_tx_pins[] = {
	TEGRA_PIN_UART4_TX_PB0,
};

static const unsigned drive_gpio_wan4_pins[] = {
	TEGRA_PIN_GPIO_WAN4_PC0,
};

static const unsigned drive_gpio_wan3_pins[] = {
	TEGRA_PIN_GPIO_WAN3_PB6,
};

static const unsigned drive_gpio_wan2_pins[] = {
	TEGRA_PIN_GPIO_WAN2_PB5,
};

static const unsigned drive_gpio_wan1_pins[] = {
	TEGRA_PIN_GPIO_WAN1_PB4,
};

static const unsigned drive_gen1_i2c_scl_pins[] = {
	TEGRA_PIN_GEN1_I2C_SCL_PC5,
};

static const unsigned drive_gen1_i2c_sda_pins[] = {
	TEGRA_PIN_GEN1_I2C_SDA_PC6,
};

static const unsigned drive_extperiph2_clk_pins[] = {
	TEGRA_PIN_EXTPERIPH1_CLK_PO0,
};

static const unsigned drive_extperiph1_clk_pins[] = {
	TEGRA_PIN_EXTPERIPH2_CLK_PO1,
};

static const unsigned drive_cam_i2c_sda_pins[] = {
	TEGRA_PIN_CAM_I2C_SDA_PO3,
};

static const unsigned drive_cam_i2c_scl_pins[] = {
	TEGRA_PIN_CAM_I2C_SCL_PO2,
};

static const unsigned drive_gpio_cam1_pins[] = {
	TEGRA_PIN_GPIO_CAM1_PN0,
};

static const unsigned drive_gpio_cam2_pins[] = {
	TEGRA_PIN_GPIO_CAM2_PN1,
};

static const unsigned drive_gpio_cam3_pins[] = {
	TEGRA_PIN_GPIO_CAM3_PN2,
};

static const unsigned drive_gpio_cam4_pins[] = {
	TEGRA_PIN_GPIO_CAM4_PN3,
};

static const unsigned drive_gpio_cam5_pins[] = {
	TEGRA_PIN_GPIO_CAM5_PN4,
};

static const unsigned drive_gpio_cam6_pins[] = {
	TEGRA_PIN_GPIO_CAM6_PN5,
};

static const unsigned drive_gpio_cam7_pins[] = {
	TEGRA_PIN_GPIO_CAM7_PN6,
};

static const unsigned drive_dmic1_clk_pins[] = {
	TEGRA_PIN_DMIC1_CLK_PM1,
};

static const unsigned drive_dmic1_dat_pins[] = {
	TEGRA_PIN_DMIC1_DAT_PM0,
};

static const unsigned drive_dmic2_dat_pins[] = {
	TEGRA_PIN_DMIC2_DAT_PM2,
};

static const unsigned drive_dmic2_clk_pins[] = {
	TEGRA_PIN_DMIC2_CLK_PM3,
};

static const unsigned drive_dmic4_dat_pins[] = {
	TEGRA_PIN_DMIC4_DAT_PM4,
};

static const unsigned drive_dmic4_clk_pins[] = {
	TEGRA_PIN_DMIC4_CLK_PM5,
};

static const unsigned drive_dap4_fs_pins[] = {
	TEGRA_PIN_DAP4_FS_PCC3,
};

static const unsigned drive_dap4_din_pins[] = {
	TEGRA_PIN_DAP4_DIN_PCC2,
};

static const unsigned drive_dap4_dout_pins[] = {
	TEGRA_PIN_DAP4_DOUT_PCC1,
};

static const unsigned drive_dap4_sclk_pins[] = {
	TEGRA_PIN_DAP4_SCLK_PCC0,
};

static const unsigned drive_gpio_aud3_pins[] = {
	TEGRA_PIN_GPIO_AUD3_PK0,
};

static const unsigned drive_gpio_aud2_pins[] = {
	TEGRA_PIN_GPIO_AUD2_PJ7,
};

static const unsigned drive_gpio_aud1_pins[] = {
	TEGRA_PIN_GPIO_AUD1_PJ6,
};

static const unsigned drive_gpio_aud0_pins[] = {
	TEGRA_PIN_GPIO_AUD0_PJ5,
};

static const unsigned drive_aud_mclk_pins[] = {
	TEGRA_PIN_AUD_MCLK_PJ4,
};

static const unsigned drive_dap1_fs_pins[] = {
	TEGRA_PIN_DAP1_FS_PJ3,
};

static const unsigned drive_dap1_din_pins[] = {
	TEGRA_PIN_DAP1_DIN_PJ2,
};

static const unsigned drive_dap1_dout_pins[] = {
	TEGRA_PIN_DAP1_DOUT_PJ1,
};

static const unsigned drive_dap1_sclk_pins[] = {
	TEGRA_PIN_DAP1_SCLK_PJ0,
};

static const unsigned drive_touch_clk_pins[] = {
	TEGRA_PIN_TOUCH_CLK_PEE2,
};

static const unsigned drive_uart3_cts_pins[] = {
	TEGRA_PIN_UART3_CTS_PW5,
};

static const unsigned drive_uart3_rts_pins[] = {
	TEGRA_PIN_UART3_RTS_PW4,
};

static const unsigned drive_uart3_rx_pins[] = {
	TEGRA_PIN_UART3_RX_PW3,
};

static const unsigned drive_uart3_tx_pins[] = {
	TEGRA_PIN_UART3_TX_PW2,
};

static const unsigned drive_gen8_i2c_sda_pins[] = {
	TEGRA_PIN_GEN8_I2C_SDA_PW1,
};

static const unsigned drive_gen8_i2c_scl_pins[] = {
	TEGRA_PIN_GEN8_I2C_SCL_PW0,
};

static const unsigned drive_uart7_rx_pins[] = {
	TEGRA_PIN_UART7_RX_PW7,
};

static const unsigned drive_uart7_tx_pins[] = {
	TEGRA_PIN_UART7_TX_PW6,
};

static const unsigned drive_gpio_sen0_pins[] = {
	TEGRA_PIN_GPIO_SEN0_PV0,
};

static const unsigned drive_gpio_sen1_pins[] = {
	TEGRA_PIN_GPIO_SEN1_PV1,
};

static const unsigned drive_gpio_sen2_pins[] = {
	TEGRA_PIN_GPIO_SEN2_PV2,
};

static const unsigned drive_gpio_sen3_pins[] = {
	TEGRA_PIN_GPIO_SEN3_PV3,
};

static const unsigned drive_gpio_sen4_pins[] = {
	TEGRA_PIN_GPIO_SEN4_PV4,
};

static const unsigned drive_gpio_sen5_pins[] = {
	TEGRA_PIN_GPIO_SEN5_PV5,
};

static const unsigned drive_gpio_sen6_pins[] = {
	TEGRA_PIN_GPIO_SEN6_PV6,
};

static const unsigned drive_gpio_sen7_pins[] = {
	TEGRA_PIN_GPIO_SEN7_PV7,
};

static const unsigned drive_gpio_sen8_pins[] = {
	TEGRA_PIN_GPIO_SEN8_PEE0,
};

static const unsigned drive_gpio_sen9_pins[] = {
	TEGRA_PIN_GPIO_SEN9_PEE1,
};

static const unsigned drive_can_gpio7_pins[] = {
	TEGRA_PIN_CAN_GPIO7_PAA7,
};

static const unsigned drive_can1_dout_pins[] = {
	TEGRA_PIN_CAN1_DOUT_PZ0,
};

static const unsigned drive_can1_din_pins[] = {
	TEGRA_PIN_CAN1_DIN_PZ1,
};

static const unsigned drive_can0_dout_pins[] = {
	TEGRA_PIN_CAN0_DOUT_PZ2,
};

static const unsigned drive_can0_din_pins[] = {
	TEGRA_PIN_CAN0_DIN_PZ3,
};

static const unsigned drive_can_gpio0_pins[] = {
	TEGRA_PIN_CAN_GPIO0_PAA0,
};

static const unsigned drive_can_gpio1_pins[] = {
	TEGRA_PIN_CAN_GPIO1_PAA1,
};

static const unsigned drive_can_gpio2_pins[] = {
	TEGRA_PIN_CAN_GPIO2_PAA2,
};

static const unsigned drive_can_gpio3_pins[] = {
	TEGRA_PIN_CAN_GPIO3_PAA3,
};

static const unsigned drive_can_gpio4_pins[] = {
	TEGRA_PIN_CAN_GPIO4_PAA4,
};

static const unsigned drive_can_gpio5_pins[] = {
	TEGRA_PIN_CAN_GPIO5_PAA5,
};

static const unsigned drive_can_gpio6_pins[] = {
	TEGRA_PIN_CAN_GPIO6_PAA6,
};

static const unsigned drive_uart1_cts_pins[] = {
	TEGRA_PIN_UART1_CTS_PT3,
};

static const unsigned drive_uart1_rts_pins[] = {
	TEGRA_PIN_UART1_RTS_PT2,
};

static const unsigned drive_uart1_rx_pins[] = {
	TEGRA_PIN_UART1_RX_PT1,
};

static const unsigned drive_uart1_tx_pins[] = {
	TEGRA_PIN_UART1_TX_PT0,
};

static const unsigned drive_directdc1_out3_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT3_PQ5,
};

static const unsigned drive_directdc1_out2_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT2_PQ4,
};

static const unsigned drive_directdc1_out1_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT1_PQ3,
};

static const unsigned drive_directdc1_out0_pins[] = {
	TEGRA_PIN_DIRECTDC1_OUT0_PQ2,
};

static const unsigned drive_directdc1_clk_pins[] = {
	TEGRA_PIN_DIRECTDC1_CLK_PQ0,
};

static const unsigned drive_directdc1_in_pins[] = {
	TEGRA_PIN_DIRECTDC1_IN_PQ1,
};

enum tegra_mux_dt {
	TEGRA_MUX_RSVD0,
	TEGRA_MUX_RSVD1,
	TEGRA_MUX_RSVD2,
	TEGRA_MUX_RSVD3,
	TEGRA_MUX_TOUCH,
	TEGRA_MUX_UARTC,
	TEGRA_MUX_I2C8,
	TEGRA_MUX_UARTG,
	TEGRA_MUX_SPI2,
	TEGRA_MUX_GP,
	TEGRA_MUX_DCA,
	TEGRA_MUX_WDT,
	TEGRA_MUX_I2C2,
	TEGRA_MUX_CAN1,
	TEGRA_MUX_CAN0,
	TEGRA_MUX_DMIC3,
	TEGRA_MUX_DMIC5,
	TEGRA_MUX_GPIO,
	TEGRA_MUX_DSPK1,
	TEGRA_MUX_DSPK0,
	TEGRA_MUX_SPDIF,
	TEGRA_MUX_AUD,
	TEGRA_MUX_I2S1,
	TEGRA_MUX_DMIC1,
	TEGRA_MUX_DMIC2,
	TEGRA_MUX_I2S3,
	TEGRA_MUX_DMIC4,
	TEGRA_MUX_I2S4,
	TEGRA_MUX_EXTPERIPH2,
	TEGRA_MUX_EXTPERIPH1,
	TEGRA_MUX_I2C3,
	TEGRA_MUX_VGP1,
	TEGRA_MUX_VGP2,
	TEGRA_MUX_VGP3,
	TEGRA_MUX_VGP4,
	TEGRA_MUX_VGP5,
	TEGRA_MUX_VGP6,
	TEGRA_MUX_EXTPERIPH3,
	TEGRA_MUX_EXTPERIPH4,
	TEGRA_MUX_SPI4,
	TEGRA_MUX_I2S2,
	TEGRA_MUX_UARTD,
	TEGRA_MUX_I2C1,
	TEGRA_MUX_UARTA,
	TEGRA_MUX_DIRECTDC1,
	TEGRA_MUX_DIRECTDC,
	TEGRA_MUX_IQC0,
	TEGRA_MUX_IQC1,
	TEGRA_MUX_I2S6,
	TEGRA_MUX_DTV,
	TEGRA_MUX_UARTF,
	TEGRA_MUX_SDMMC3,
	TEGRA_MUX_SDMMC1,
	TEGRA_MUX_DP,
	TEGRA_MUX_HDMI,
	TEGRA_MUX_PE2,
	TEGRA_MUX_SATA,
	TEGRA_MUX_PE,
	TEGRA_MUX_PE1,
	TEGRA_MUX_PE0,
	TEGRA_MUX_SOC,
	TEGRA_MUX_EQOS,
	TEGRA_MUX_SDMMC2,
	TEGRA_MUX_QSPI,
	TEGRA_MUX_SCE,
	TEGRA_MUX_I2C5,
	TEGRA_MUX_DISPLAYA,
	TEGRA_MUX_DISPLAYB,
	TEGRA_MUX_DCC,
	TEGRA_MUX_SPI1,
	TEGRA_MUX_UARTB,
	TEGRA_MUX_UARTE,
	TEGRA_MUX_SPI3,
	TEGRA_MUX_NV,
	TEGRA_MUX_CCLA,
	TEGRA_MUX_I2C7,
	TEGRA_MUX_I2C9,
	TEGRA_MUX_I2S5,
	TEGRA_MUX_USB,
	TEGRA_MUX_UFS0,
};

static const char * const rsvd0_groups[] = {
	"gpio_sen0_pv0",
	"gpio_sen5_pv5",
	"gpio_sen6_pv6",
	"gpio_sen7_pv7",
	"gpio_sen8_pee0",
	"gpio_sen9_pee1",
	"can_gpio7_paa7",
	"can_gpio0_paa0",
	"can_gpio1_paa1",
	"can_gpio3_paa3",
	"can_gpio4_paa4",
	"can_gpio5_paa5",
	"can_gpio6_paa6",
	"gpio_aud3_pk0",
	"gpio_aud2_pj7",
	"gpio_aud1_pj6",
	"gpio_aud0_pj5",
	"gpio_cam7_pn6",
	"gpio_wan4_pc0",
	"gpio_wan3_pb6",
	"gpio_wan2_pb5",
	"gpio_wan1_pb4",
	"gpio_pq0_pi0",
	"gpio_pq1_pi1",
	"gpio_pq2_pi2",
	"gpio_pq3_pi3",
	"gpio_pq4_pi4",
	"gpio_pq5_pi5",
	"gpio_pq6_pi6",
	"gpio_pq7_pi7",
	"gpio_edp2_pp5",
	"gpio_edp3_pp6",
	"gpio_edp0_pp3",
	"gpio_edp1_pp4",
	"sdmmc4_clk_pcc4",
	"sdmmc4_cmd_pt7",
	"sdmmc4_dqs",
	"sdmmc4_dat7",
	"sdmmc4_dat6",
	"sdmmc4_dat5",
	"sdmmc4_dat4",
	"sdmmc4_dat3",
	"sdmmc4_dat2",
	"sdmmc4_dat1",
	"sdmmc4_dat0",
	"gpio_sw1_pff1",
	"gpio_sw2_pff2",
	"gpio_sw3_pff3",
	"gpio_sw4_pff4",
	"shutdown",
	"power_on_pff0",
	"gpio_dis0_pu0",
	"gpio_dis1_pu1",
	"gpio_dis2_pu2",
	"gpio_dis3_pu3",
	"gpio_dis4_pu4",
	"gpio_dis5_pu5",
	"gpio_wan8_ph3",
	"gpio_wan7_ph2",
	"gpio_wan6_ph1",
	"gpio_wan5_ph0",
	"gpio_mdm1_py0",
	"gpio_mdm2_py1",
	"gpio_mdm3_py2",
	"gpio_mdm4_py3",
	"gpio_mdm5_py4",
	"gpio_mdm7_py6",
	"bcpu_pwr_req_ph4",
	"mcpu_pwr_req_ph5",
	"gpu_pwr_req_ph6",
};

static const char * const rsvd1_groups[] = {
	"touch_clk_pee2",
	"uart3_cts_pw5",
	"uart3_rts_pw4",
	"uart3_rx_pw3",
	"uart3_tx_pw2",
	"gen8_i2c_sda_pw1",
	"gen8_i2c_scl_pw0",
	"uart7_rx_pw7",
	"uart7_tx_pw6",
	"gpio_sen0_pv0",
	"gpio_sen1_pv1",
	"gpio_sen2_pv2",
	"gpio_sen3_pv3",
	"gpio_sen4_pv4",
	"gpio_sen5_pv5",
	"can1_dout_pz0",
	"can1_din_pz1",
	"can0_dout_pz2",
	"can0_din_pz3",
	"can_gpio2_paa2",
	"can_gpio3_paa3",
	"can_gpio4_paa4",
	"can_gpio5_paa5",
	"can_gpio6_paa6",
	"gpio_aud1_pj6",
	"gpio_aud0_pj5",
	"aud_mclk_pj4",
	"dap1_fs_pj3",
	"dap1_din_pj2",
	"dap1_dout_pj1",
	"dap1_sclk_pj0",
	"dap4_fs_pcc3",
	"dap4_din_pcc2",
	"dap4_dout_pcc1",
	"dap4_sclk_pcc0",
	"extperiph2_clk_po1",
	"extperiph1_clk_po0",
	"cam_i2c_sda_po3",
	"cam_i2c_scl_po2",
	"gpio_cam1_pn0",
	"dap2_din_pc3",
	"dap2_dout_pc2",
	"dap2_fs_pc4",
	"dap2_sclk_pc1",
	"uart4_cts_pb3",
	"uart4_rts_pb2",
	"uart4_rx_pb1",
	"uart4_tx_pb0",
	"gpio_wan4_pc0",
	"gpio_wan3_pb6",
	"gpio_wan2_pb5",
	"gpio_wan1_pb4",
	"gen1_i2c_scl_pc5",
	"gen1_i2c_sda_pc6",
	"uart1_cts_pt3",
	"uart1_rts_pt2",
	"uart1_rx_pt1",
	"uart1_tx_pt0",
	"directdc1_out3_pq5",
	"directdc1_out2_pq4",
	"directdc1_out1_pq3",
	"directdc1_out0_pq2",
	"directdc1_in_pq1",
	"directdc1_clk_pq0",
	"dp_aux_ch0_hpd_pp0",
	"dp_aux_ch1_hpd_pp1",
	"hdmi_cec_pp2",
	"pex_wake_n_pa2",
	"pex_l1_clkreq_n_pa4",
	"pex_l1_rst_n_pa3",
	"pex_l0_clkreq_n_pa1",
	"pex_l0_rst_n_pa0",
	"sdmmc1_clk_pd0",
	"sdmmc1_cmd_pd1",
	"sdmmc1_dat3_pd5",
	"sdmmc1_dat2_pd4",
	"sdmmc1_dat1_pd3",
	"sdmmc1_dat0_pd2",
	"eqos_mdc_pf5",
	"sdmmc3_dat3_pg5",
	"sdmmc3_dat2_pg4",
	"sdmmc3_dat1_pg3",
	"sdmmc3_dat0_pg2",
	"sdmmc3_comp",
	"sdmmc3_cmd_pg1",
	"sdmmc3_clk_pg0",
	"sdmmc4_clk_pcc4",
	"sdmmc4_cmd_pt7",
	"sdmmc4_dqs",
	"sdmmc4_dat7",
	"sdmmc4_dat6",
	"sdmmc4_dat5",
	"sdmmc4_dat4",
	"sdmmc4_dat3",
	"sdmmc4_dat2",
	"sdmmc4_dat1",
	"sdmmc4_dat0",
	"qspi_io3_pr4",
	"qspi_io2_pr3",
	"qspi_io1_pr2",
	"qspi_io0_pr1",
	"qspi_sck_pr0",
	"qspi_cs_n_pr5",
	"qspi_comp",
	"gpio_sw1_pff1",
	"gpio_sw2_pff2",
	"gpio_sw3_pff3",
	"gpio_sw4_pff4",
	"shutdown",
	"safe_state_ps3",
	"vcomp_alert_ps4",
	"batt_oc_ps2",
	"power_on_pff0",
	"pwr_i2c_scl_ps0",
	"pwr_i2c_sda_ps1",
	"gpio_dis1_pu1",
	"gpio_dis3_pu3",
	"gpio_wan8_ph3",
	"gpio_wan7_ph2",
	"gpio_wan6_ph1",
	"gpio_wan5_ph0",
	"uart2_tx_px0",
	"uart2_rx_px1",
	"uart2_rts_px2",
	"uart2_cts_px3",
	"gpio_mdm1_py0",
	"gpio_mdm2_py1",
	"gpio_mdm3_py2",
	"gpio_mdm6_py5",
	"gpio_mdm7_py6",
	"bcpu_pwr_req_ph4",
	"mcpu_pwr_req_ph5",
	"gpu_pwr_req_ph6",
	"usb_vbus_en0_pl4",
	"usb_vbus_en1_pl5",
	"gp_pwm7_pl7",
	"gp_pwm6_pl6",
	"ufs0_rst_pbb1",
	"ufs0_ref_clk_pbb0",
};

static const char * const rsvd2_groups[] = {
	"touch_clk_pee2",
	"uart3_cts_pw5",
	"uart3_rts_pw4",
	"uart3_rx_pw3",
	"uart3_tx_pw2",
	"gen8_i2c_sda_pw1",
	"gen8_i2c_scl_pw0",
	"uart7_rx_pw7",
	"uart7_tx_pw6",
	"gpio_sen0_pv0",
	"gpio_sen1_pv1",
	"gpio_sen2_pv2",
	"gpio_sen3_pv3",
	"gpio_sen4_pv4",
	"gpio_sen5_pv5",
	"gpio_sen6_pv6",
	"gpio_sen7_pv7",
	"gpio_sen8_pee0",
	"gpio_sen9_pee1",
	"can_gpio7_paa7",
	"can1_dout_pz0",
	"can1_din_pz1",
	"can0_dout_pz2",
	"can0_din_pz3",
	"can_gpio2_paa2",
	"can_gpio3_paa3",
	"can_gpio4_paa4",
	"can_gpio5_paa5",
	"can_gpio6_paa6",
	"gpio_aud1_pj6",
	"gpio_aud0_pj5",
	"aud_mclk_pj4",
	"dap1_fs_pj3",
	"dap1_din_pj2",
	"dap1_dout_pj1",
	"dap1_sclk_pj0",
	"dmic1_clk_pm1",
	"dmic1_dat_pm0",
	"dmic2_dat_pm2",
	"dmic2_clk_pm3",
	"dmic4_dat_pm4",
	"dmic4_clk_pm5",
	"dap4_fs_pcc3",
	"dap4_din_pcc2",
	"dap4_dout_pcc1",
	"dap4_sclk_pcc0",
	"extperiph2_clk_po1",
	"extperiph1_clk_po0",
	"cam_i2c_sda_po3",
	"cam_i2c_scl_po2",
	"gpio_cam1_pn0",
	"gpio_cam2_pn1",
	"gpio_cam3_pn2",
	"gpio_cam4_pn3",
	"gpio_cam5_pn4",
	"gpio_cam6_pn5",
	"gpio_cam7_pn6",
	"dap2_din_pc3",
	"dap2_dout_pc2",
	"dap2_fs_pc4",
	"dap2_sclk_pc1",
	"uart4_cts_pb3",
	"uart4_rts_pb2",
	"uart4_rx_pb1",
	"uart4_tx_pb0",
	"gpio_wan4_pc0",
	"gpio_wan3_pb6",
	"gpio_wan2_pb5",
	"gpio_wan1_pb4",
	"gen1_i2c_scl_pc5",
	"gen1_i2c_sda_pc6",
	"uart1_cts_pt3",
	"uart1_rts_pt2",
	"uart1_rx_pt1",
	"uart1_tx_pt0",
	"directdc1_out3_pq5",
	"directdc1_out2_pq4",
	"directdc1_out1_pq3",
	"directdc1_out0_pq2",
	"directdc1_in_pq1",
	"directdc1_clk_pq0",
	"dp_aux_ch0_hpd_pp0",
	"dp_aux_ch1_hpd_pp1",
	"hdmi_cec_pp2",
	"pex_wake_n_pa2",
	"pex_l1_clkreq_n_pa4",
	"pex_l1_rst_n_pa3",
	"pex_l0_clkreq_n_pa1",
	"pex_l0_rst_n_pa0",
	"sdmmc1_clk_pd0",
	"sdmmc1_cmd_pd1",
	"sdmmc1_dat3_pd5",
	"sdmmc1_dat2_pd4",
	"sdmmc1_dat1_pd3",
	"sdmmc1_dat0_pd2",
	"eqos_td3_pe4",
	"eqos_td2_pe3",
	"eqos_td1_pe2",
	"eqos_td0_pe1",
	"eqos_rd3_pf1",
	"eqos_rd2_pf0",
	"eqos_rd1_pe7",
	"eqos_mdio_pf4",
	"eqos_rd0_pe6",
	"eqos_mdc_pf5",
	"eqos_comp",
	"eqos_txc_pe0",
	"eqos_rxc_pf3",
	"eqos_tx_ctl_pe5",
	"eqos_rx_ctl_pf2",
	"sdmmc3_dat3_pg5",
	"sdmmc3_dat2_pg4",
	"sdmmc3_dat1_pg3",
	"sdmmc3_dat0_pg2",
	"sdmmc3_comp",
	"sdmmc3_cmd_pg1",
	"sdmmc3_clk_pg0",
	"sdmmc4_clk_pcc4",
	"sdmmc4_cmd_pt7",
	"sdmmc4_dqs",
	"sdmmc4_dat7",
	"sdmmc4_dat6",
	"sdmmc4_dat5",
	"sdmmc4_dat4",
	"sdmmc4_dat3",
	"sdmmc4_dat2",
	"sdmmc4_dat1",
	"sdmmc4_dat0",
	"qspi_io3_pr4",
	"qspi_io2_pr3",
	"qspi_io1_pr2",
	"qspi_io0_pr1",
	"qspi_sck_pr0",
	"qspi_cs_n_pr5",
	"qspi_comp",
	"gpio_sw1_pff1",
	"gpio_sw2_pff2",
	"gpio_sw3_pff3",
	"gpio_sw4_pff4",
	"shutdown",
	"safe_state_ps3",
	"vcomp_alert_ps4",
	"batt_oc_ps2",
	"power_on_pff0",
	"pwr_i2c_scl_ps0",
	"pwr_i2c_sda_ps1",
	"gpio_dis0_pu0",
	"gpio_dis2_pu2",
	"gpio_dis4_pu4",
	"uart2_tx_px0",
	"uart2_rx_px1",
	"uart2_rts_px2",
	"uart2_cts_px3",
	"uart5_rts_px6",
	"uart5_cts_px7",
	"gpio_mdm1_py0",
	"gpio_mdm2_py1",
	"gpio_mdm3_py2",
	"gpio_mdm5_py4",
	"gpio_mdm6_py5",
	"gpio_mdm7_py6",
	"bcpu_pwr_req_ph4",
	"mcpu_pwr_req_ph5",
	"gpu_pwr_req_ph6",
	"gen7_i2c_scl_pl0",
	"gen7_i2c_sda_pl1",
	"gen9_i2c_sda_pl3",
	"gen9_i2c_scl_pl2",
	"usb_vbus_en0_pl4",
	"usb_vbus_en1_pl5",
	"gp_pwm7_pl7",
	"gp_pwm6_pl6",
	"ufs0_rst_pbb1",
	"ufs0_ref_clk_pbb0",
};

static const char * const rsvd3_groups[] = {
	"touch_clk_pee2",
	"uart3_cts_pw5",
	"uart3_rts_pw4",
	"uart3_rx_pw3",
	"uart3_tx_pw2",
	"gen8_i2c_sda_pw1",
	"gen8_i2c_scl_pw0",
	"uart7_rx_pw7",
	"uart7_tx_pw6",
	"gpio_sen0_pv0",
	"gpio_sen1_pv1",
	"gpio_sen2_pv2",
	"gpio_sen3_pv3",
	"gpio_sen4_pv4",
	"gpio_sen5_pv5",
	"gpio_sen6_pv6",
	"gpio_sen7_pv7",
	"gpio_sen8_pee0",
	"gpio_sen9_pee1",
	"can_gpio7_paa7",
	"can1_dout_pz0",
	"can1_din_pz1",
	"can0_dout_pz2",
	"can0_din_pz3",
	"can_gpio0_paa0",
	"can_gpio1_paa1",
	"can_gpio2_paa2",
	"can_gpio3_paa3",
	"can_gpio4_paa4",
	"can_gpio5_paa5",
	"can_gpio6_paa6",
	"gpio_aud3_pk0",
	"gpio_aud2_pj7",
	"gpio_aud1_pj6",
	"gpio_aud0_pj5",
	"aud_mclk_pj4",
	"dap1_fs_pj3",
	"dap1_din_pj2",
	"dap1_dout_pj1",
	"dap1_sclk_pj0",
	"dmic1_clk_pm1",
	"dmic1_dat_pm0",
	"dmic2_dat_pm2",
	"dmic2_clk_pm3",
	"dmic4_dat_pm4",
	"dmic4_clk_pm5",
	"dap4_fs_pcc3",
	"dap4_din_pcc2",
	"dap4_dout_pcc1",
	"dap4_sclk_pcc0",
	"extperiph2_clk_po1",
	"extperiph1_clk_po0",
	"cam_i2c_sda_po3",
	"cam_i2c_scl_po2",
	"gpio_cam1_pn0",
	"gpio_cam2_pn1",
	"gpio_cam3_pn2",
	"gpio_cam4_pn3",
	"gpio_cam5_pn4",
	"gpio_cam6_pn5",
	"gpio_cam7_pn6",
	"dap2_din_pc3",
	"dap2_dout_pc2",
	"dap2_fs_pc4",
	"dap2_sclk_pc1",
	"uart4_cts_pb3",
	"uart4_rts_pb2",
	"uart4_rx_pb1",
	"uart4_tx_pb0",
	"gpio_wan4_pc0",
	"gpio_wan3_pb6",
	"gpio_wan2_pb5",
	"gpio_wan1_pb4",
	"gen1_i2c_scl_pc5",
	"gen1_i2c_sda_pc6",
	"uart1_cts_pt3",
	"uart1_rts_pt2",
	"uart1_rx_pt1",
	"uart1_tx_pt0",
	"directdc1_out3_pq5",
	"directdc1_out2_pq4",
	"directdc1_out1_pq3",
	"directdc1_out0_pq2",
	"directdc1_in_pq1",
	"directdc1_clk_pq0",
	"gpio_pq0_pi0",
	"gpio_pq1_pi1",
	"gpio_pq2_pi2",
	"gpio_pq3_pi3",
	"gpio_pq4_pi4",
	"gpio_pq5_pi5",
	"gpio_pq6_pi6",
	"gpio_pq7_pi7",
	"gpio_edp2_pp5",
	"gpio_edp3_pp6",
	"gpio_edp0_pp3",
	"gpio_edp1_pp4",
	"dp_aux_ch0_hpd_pp0",
	"dp_aux_ch1_hpd_pp1",
	"hdmi_cec_pp2",
	"pex_l2_clkreq_n",
	"pex_wake_n_pa2",
	"pex_l1_clkreq_n_pa4",
	"pex_l1_rst_n_pa3",
	"pex_l0_clkreq_n_pa1",
	"pex_l0_rst_n_pa0",
	"pex_l2_rst_n_pa5",
	"sdmmc1_clk_pd0",
	"sdmmc1_cmd_pd1",
	"sdmmc1_dat3_pd5",
	"sdmmc1_dat2_pd4",
	"sdmmc1_dat1_pd3",
	"sdmmc1_dat0_pd2",
	"eqos_td3_pe4",
	"eqos_td2_pe3",
	"eqos_td1_pe2",
	"eqos_td0_pe1",
	"eqos_rd3_pf1",
	"eqos_rd2_pf0",
	"eqos_rd1_pe7",
	"eqos_mdio_pf4",
	"eqos_rd0_pe6",
	"eqos_mdc_pf5",
	"eqos_comp",
	"eqos_txc_pe0",
	"eqos_rxc_pf3",
	"eqos_tx_ctl_pe5",
	"eqos_rx_ctl_pf2",
	"sdmmc3_dat3_pg5",
	"sdmmc3_dat2_pg4",