Linux Audio
Check our new training course
Embedded Linux Audio
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
/* SPDX-License-Identifier: GPL-2.0 */ /* * mt8192-reg.h -- Mediatek 8192 audio driver reg definition * * Copyright (c) 2020 MediaTek Inc. * Author: Shane Chien <shane.chien@mediatek.com> */ #ifndef _MT8192_REG_H_ #define _MT8192_REG_H_ /* reg bit enum */ enum { MT8192_MEMIF_PBUF_SIZE_32_BYTES, MT8192_MEMIF_PBUF_SIZE_64_BYTES, MT8192_MEMIF_PBUF_SIZE_128_BYTES, MT8192_MEMIF_PBUF_SIZE_256_BYTES, MT8192_MEMIF_PBUF_SIZE_NUM, }; /***************************************************************************** * R E G I S T E R D E F I N I T I O N *****************************************************************************/ /* AUDIO_TOP_CON3 */ #define BCK_INVERSE_SFT 3 #define BCK_INVERSE_MASK 0x1 #define BCK_INVERSE_MASK_SFT (0x1 << 3) /* AFE_DAC_CON0 */ #define VUL12_ON_SFT 31 #define VUL12_ON_MASK 0x1 #define VUL12_ON_MASK_SFT (0x1 << 31) #define MOD_DAI_ON_SFT 30 #define MOD_DAI_ON_MASK 0x1 #define MOD_DAI_ON_MASK_SFT (0x1 << 30) #define DAI_ON_SFT 29 #define DAI_ON_MASK 0x1 #define DAI_ON_MASK_SFT (0x1 << 29) #define DAI2_ON_SFT 28 #define DAI2_ON_MASK 0x1 #define DAI2_ON_MASK_SFT (0x1 << 28) #define VUL6_ON_SFT 23 #define VUL6_ON_MASK 0x1 #define VUL6_ON_MASK_SFT (0x1 << 23) #define VUL5_ON_SFT 22 #define VUL5_ON_MASK 0x1 #define VUL5_ON_MASK_SFT (0x1 << 22) #define VUL4_ON_SFT 21 #define VUL4_ON_MASK 0x1 #define VUL4_ON_MASK_SFT (0x1 << 21) #define VUL3_ON_SFT 20 #define VUL3_ON_MASK 0x1 #define VUL3_ON_MASK_SFT (0x1 << 20) #define VUL2_ON_SFT 19 #define VUL2_ON_MASK 0x1 #define VUL2_ON_MASK_SFT (0x1 << 19) #define VUL_ON_SFT 18 #define VUL_ON_MASK 0x1 #define VUL_ON_MASK_SFT (0x1 << 18) #define AWB2_ON_SFT 17 #define AWB2_ON_MASK 0x1 #define AWB2_ON_MASK_SFT (0x1 << 17) #define AWB_ON_SFT 16 #define AWB_ON_MASK 0x1 #define AWB_ON_MASK_SFT (0x1 << 16) #define DL12_ON_SFT 15 #define DL12_ON_MASK 0x1 #define DL12_ON_MASK_SFT (0x1 << 15) #define DL9_ON_SFT 12 #define DL9_ON_MASK 0x1 #define DL9_ON_MASK_SFT (0x1 << 12) #define DL8_ON_SFT 11 #define DL8_ON_MASK 0x1 #define DL8_ON_MASK_SFT (0x1 << 11) #define DL7_ON_SFT 10 #define DL7_ON_MASK 0x1 #define DL7_ON_MASK_SFT (0x1 << 10) #define DL6_ON_SFT 9 #define DL6_ON_MASK 0x1 #define DL6_ON_MASK_SFT (0x1 << 9) #define DL5_ON_SFT 8 #define DL5_ON_MASK 0x1 #define DL5_ON_MASK_SFT (0x1 << 8) #define DL4_ON_SFT 7 #define DL4_ON_MASK 0x1 #define DL4_ON_MASK_SFT (0x1 << 7) #define DL3_ON_SFT 6 #define DL3_ON_MASK 0x1 #define DL3_ON_MASK_SFT (0x1 << 6) #define DL2_ON_SFT 5 #define DL2_ON_MASK 0x1 #define DL2_ON_MASK_SFT (0x1 << 5) #define DL1_ON_SFT 4 #define DL1_ON_MASK 0x1 #define DL1_ON_MASK_SFT (0x1 << 4) #define HDMI_OUT_ON_SFT 1 #define HDMI_OUT_ON_MASK 0x1 #define HDMI_OUT_ON_MASK_SFT (0x1 << 1) #define AFE_ON_SFT 0 #define AFE_ON_MASK 0x1 #define AFE_ON_MASK_SFT (0x1 << 0) /* AFE_DAC_MON */ #define AFE_ON_RETM_SFT 0 #define AFE_ON_RETM_MASK 0x1 #define AFE_ON_RETM_MASK_SFT (0x1 << 0) /* AFE_I2S_CON */ #define BCK_NEG_EG_LATCH_SFT 30 #define BCK_NEG_EG_LATCH_MASK 0x1 #define BCK_NEG_EG_LATCH_MASK_SFT (0x1 << 30) #define BCK_INV_SFT 29 #define BCK_INV_MASK 0x1 #define BCK_INV_MASK_SFT (0x1 << 29) #define I2SIN_PAD_SEL_SFT 28 #define I2SIN_PAD_SEL_MASK 0x1 #define I2SIN_PAD_SEL_MASK_SFT (0x1 << 28) #define I2S_LOOPBACK_SFT 20 #define I2S_LOOPBACK_MASK 0x1 #define I2S_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S1_HD_EN_SFT 12 #define I2S1_HD_EN_MASK 0x1 #define I2S1_HD_EN_MASK_SFT (0x1 << 12) #define I2S_OUT_MODE_SFT 8 #define I2S_OUT_MODE_MASK 0xf #define I2S_OUT_MODE_MASK_SFT (0xf << 8) #define INV_PAD_CTRL_SFT 7 #define INV_PAD_CTRL_MASK 0x1 #define INV_PAD_CTRL_MASK_SFT (0x1 << 7) #define I2S_BYPSRC_SFT 6 #define I2S_BYPSRC_MASK 0x1 #define I2S_BYPSRC_MASK_SFT (0x1 << 6) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S_FMT_SFT 3 #define I2S_FMT_MASK 0x1 #define I2S_FMT_MASK_SFT (0x1 << 3) #define I2S_SRC_SFT 2 #define I2S_SRC_MASK 0x1 #define I2S_SRC_MASK_SFT (0x1 << 2) #define I2S_WLEN_SFT 1 #define I2S_WLEN_MASK 0x1 #define I2S_WLEN_MASK_SFT (0x1 << 1) #define I2S_EN_SFT 0 #define I2S_EN_MASK 0x1 #define I2S_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON1 */ #define I2S2_LR_SWAP_SFT 31 #define I2S2_LR_SWAP_MASK 0x1 #define I2S2_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S2_SEL_O19_O20_SFT 18 #define I2S2_SEL_O19_O20_MASK 0x1 #define I2S2_SEL_O19_O20_MASK_SFT (0x1 << 18) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S2_SEL_O03_O04_SFT 16 #define I2S2_SEL_O03_O04_MASK 0x1 #define I2S2_SEL_O03_O04_MASK_SFT (0x1 << 16) #define I2S2_32BIT_EN_SFT 13 #define I2S2_32BIT_EN_MASK 0x1 #define I2S2_32BIT_EN_MASK_SFT (0x1 << 13) #define I2S2_HD_EN_SFT 12 #define I2S2_HD_EN_MASK 0x1 #define I2S2_HD_EN_MASK_SFT (0x1 << 12) #define I2S2_OUT_MODE_SFT 8 #define I2S2_OUT_MODE_MASK 0xf #define I2S2_OUT_MODE_MASK_SFT (0xf << 8) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S2_FMT_SFT 3 #define I2S2_FMT_MASK 0x1 #define I2S2_FMT_MASK_SFT (0x1 << 3) #define I2S2_WLEN_SFT 1 #define I2S2_WLEN_MASK 0x1 #define I2S2_WLEN_MASK_SFT (0x1 << 1) #define I2S2_EN_SFT 0 #define I2S2_EN_MASK 0x1 #define I2S2_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON2 */ #define I2S3_LR_SWAP_SFT 31 #define I2S3_LR_SWAP_MASK 0x1 #define I2S3_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S3_UPDATE_WORD_SFT 24 #define I2S3_UPDATE_WORD_MASK 0x1f #define I2S3_UPDATE_WORD_MASK_SFT (0x1f << 24) #define I2S3_BCK_INV_SFT 23 #define I2S3_BCK_INV_MASK 0x1 #define I2S3_BCK_INV_MASK_SFT (0x1 << 23) #define I2S3_FPGA_BIT_TEST_SFT 22 #define I2S3_FPGA_BIT_TEST_MASK 0x1 #define I2S3_FPGA_BIT_TEST_MASK_SFT (0x1 << 22) #define I2S3_FPGA_BIT_SFT 21 #define I2S3_FPGA_BIT_MASK 0x1 #define I2S3_FPGA_BIT_MASK_SFT (0x1 << 21) #define I2S3_LOOPBACK_SFT 20 #define I2S3_LOOPBACK_MASK 0x1 #define I2S3_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S3_HD_EN_SFT 12 #define I2S3_HD_EN_MASK 0x1 #define I2S3_HD_EN_MASK_SFT (0x1 << 12) #define I2S3_OUT_MODE_SFT 8 #define I2S3_OUT_MODE_MASK 0xf #define I2S3_OUT_MODE_MASK_SFT (0xf << 8) #define I2S3_FMT_SFT 3 #define I2S3_FMT_MASK 0x1 #define I2S3_FMT_MASK_SFT (0x1 << 3) #define I2S3_WLEN_SFT 1 #define I2S3_WLEN_MASK 0x1 #define I2S3_WLEN_MASK_SFT (0x1 << 1) #define I2S3_EN_SFT 0 #define I2S3_EN_MASK 0x1 #define I2S3_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON3 */ #define I2S4_LR_SWAP_SFT 31 #define I2S4_LR_SWAP_MASK 0x1 #define I2S4_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S4_32BIT_EN_SFT 13 #define I2S4_32BIT_EN_MASK 0x1 #define I2S4_32BIT_EN_MASK_SFT (0x1 << 13) #define I2S4_HD_EN_SFT 12 #define I2S4_HD_EN_MASK 0x1 #define I2S4_HD_EN_MASK_SFT (0x1 << 12) #define I2S4_OUT_MODE_SFT 8 #define I2S4_OUT_MODE_MASK 0xf #define I2S4_OUT_MODE_MASK_SFT (0xf << 8) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S4_FMT_SFT 3 #define I2S4_FMT_MASK 0x1 #define I2S4_FMT_MASK_SFT (0x1 << 3) #define I2S4_WLEN_SFT 1 #define I2S4_WLEN_MASK 0x1 #define I2S4_WLEN_MASK_SFT (0x1 << 1) #define I2S4_EN_SFT 0 #define I2S4_EN_MASK 0x1 #define I2S4_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON4 */ #define I2S5_LR_SWAP_SFT 31 #define I2S5_LR_SWAP_MASK 0x1 #define I2S5_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S_LOOPBACK_SFT 20 #define I2S_LOOPBACK_MASK 0x1 #define I2S_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S5_32BIT_EN_SFT 13 #define I2S5_32BIT_EN_MASK 0x1 #define I2S5_32BIT_EN_MASK_SFT (0x1 << 13) #define I2S5_HD_EN_SFT 12 #define I2S5_HD_EN_MASK 0x1 #define I2S5_HD_EN_MASK_SFT (0x1 << 12) #define I2S5_OUT_MODE_SFT 8 #define I2S5_OUT_MODE_MASK 0xf #define I2S5_OUT_MODE_MASK_SFT (0xf << 8) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S5_FMT_SFT 3 #define I2S5_FMT_MASK 0x1 #define I2S5_FMT_MASK_SFT (0x1 << 3) #define I2S5_WLEN_SFT 1 #define I2S5_WLEN_MASK 0x1 #define I2S5_WLEN_MASK_SFT (0x1 << 1) #define I2S5_EN_SFT 0 #define I2S5_EN_MASK 0x1 #define I2S5_EN_MASK_SFT (0x1 << 0) /* AFE_CONNSYS_I2S_CON */ #define BCK_NEG_EG_LATCH_SFT 30 #define BCK_NEG_EG_LATCH_MASK 0x1 #define BCK_NEG_EG_LATCH_MASK_SFT (0x1 << 30) #define BCK_INV_SFT 29 #define BCK_INV_MASK 0x1 #define BCK_INV_MASK_SFT (0x1 << 29) #define I2SIN_PAD_SEL_SFT 28 #define I2SIN_PAD_SEL_MASK 0x1 #define I2SIN_PAD_SEL_MASK_SFT (0x1 << 28) #define I2S_LOOPBACK_SFT 20 #define I2S_LOOPBACK_MASK 0x1 #define I2S_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S_MODE_SFT 8 #define I2S_MODE_MASK 0xf #define I2S_MODE_MASK_SFT (0xf << 8) #define INV_PAD_CTRL_SFT 7 #define INV_PAD_CTRL_MASK 0x1 #define INV_PAD_CTRL_MASK_SFT (0x1 << 7) #define I2S_BYPSRC_SFT 6 #define I2S_BYPSRC_MASK 0x1 #define I2S_BYPSRC_MASK_SFT (0x1 << 6) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S_FMT_SFT 3 #define I2S_FMT_MASK 0x1 #define I2S_FMT_MASK_SFT (0x1 << 3) #define I2S_SRC_SFT 2 #define I2S_SRC_MASK 0x1 #define I2S_SRC_MASK_SFT (0x1 << 2) #define I2S_WLEN_SFT 1 #define I2S_WLEN_MASK 0x1 #define I2S_WLEN_MASK_SFT (0x1 << 1) #define I2S_EN_SFT 0 #define I2S_EN_MASK 0x1 #define I2S_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON6 */ #define BCK_NEG_EG_LATCH_SFT 30 #define BCK_NEG_EG_LATCH_MASK 0x1 #define BCK_NEG_EG_LATCH_MASK_SFT (0x1 << 30) #define BCK_INV_SFT 29 #define BCK_INV_MASK 0x1 #define BCK_INV_MASK_SFT (0x1 << 29) #define I2S6_LOOPBACK_SFT 20 #define I2S6_LOOPBACK_MASK 0x1 #define I2S6_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S6_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S6_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S6_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S6_HD_EN_SFT 12 #define I2S6_HD_EN_MASK 0x1 #define I2S6_HD_EN_MASK_SFT (0x1 << 12) #define I2S6_OUT_MODE_SFT 8 #define I2S6_OUT_MODE_MASK 0xf #define I2S6_OUT_MODE_MASK_SFT (0xf << 8) #define I2S6_BYPSRC_SFT 6 #define I2S6_BYPSRC_MASK 0x1 #define I2S6_BYPSRC_MASK_SFT (0x1 << 6) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S6_FMT_SFT 3 #define I2S6_FMT_MASK 0x1 #define I2S6_FMT_MASK_SFT (0x1 << 3) #define I2S6_SRC_SFT 2 #define I2S6_SRC_MASK 0x1 #define I2S6_SRC_MASK_SFT (0x1 << 2) #define I2S6_WLEN_SFT 1 #define I2S6_WLEN_MASK 0x1 #define I2S6_WLEN_MASK_SFT (0x1 << 1) #define I2S6_EN_SFT 0 #define I2S6_EN_MASK 0x1 #define I2S6_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON7 */ #define I2S7_LR_SWAP_SFT 31 #define I2S7_LR_SWAP_MASK 0x1 #define I2S7_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S7_32BIT_EN_SFT 13 #define I2S7_32BIT_EN_MASK 0x1 #define I2S7_32BIT_EN_MASK_SFT (0x1 << 13) #define I2S7_HD_EN_SFT 12 #define I2S7_HD_EN_MASK 0x1 #define I2S7_HD_EN_MASK_SFT (0x1 << 12) #define I2S7_OUT_MODE_SFT 8 #define I2S7_OUT_MODE_MASK 0xf #define I2S7_OUT_MODE_MASK_SFT (0xf << 8) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S7_FMT_SFT 3 #define I2S7_FMT_MASK 0x1 #define I2S7_FMT_MASK_SFT (0x1 << 3) #define I2S7_WLEN_SFT 1 #define I2S7_WLEN_MASK 0x1 #define I2S7_WLEN_MASK_SFT (0x1 << 1) #define I2S7_EN_SFT 0 #define I2S7_EN_MASK 0x1 #define I2S7_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON8 */ #define BCK_NEG_EG_LATCH_SFT 30 #define BCK_NEG_EG_LATCH_MASK 0x1 #define BCK_NEG_EG_LATCH_MASK_SFT (0x1 << 30) #define BCK_INV_SFT 29 #define BCK_INV_MASK 0x1 #define BCK_INV_MASK_SFT (0x1 << 29) #define I2S8_LOOPBACK_SFT 20 #define I2S8_LOOPBACK_MASK 0x1 #define I2S8_LOOPBACK_MASK_SFT (0x1 << 20) #define I2S8_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S8_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S8_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S8_HD_EN_SFT 12 #define I2S8_HD_EN_MASK 0x1 #define I2S8_HD_EN_MASK_SFT (0x1 << 12) #define I2S8_OUT_MODE_SFT 8 #define I2S8_OUT_MODE_MASK 0xf #define I2S8_OUT_MODE_MASK_SFT (0xf << 8) #define I2S8_BYPSRC_SFT 6 #define I2S8_BYPSRC_MASK 0x1 #define I2S8_BYPSRC_MASK_SFT (0x1 << 6) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S8_FMT_SFT 3 #define I2S8_FMT_MASK 0x1 #define I2S8_FMT_MASK_SFT (0x1 << 3) #define I2S8_SRC_SFT 2 #define I2S8_SRC_MASK 0x1 #define I2S8_SRC_MASK_SFT (0x1 << 2) #define I2S8_WLEN_SFT 1 #define I2S8_WLEN_MASK 0x1 #define I2S8_WLEN_MASK_SFT (0x1 << 1) #define I2S8_EN_SFT 0 #define I2S8_EN_MASK 0x1 #define I2S8_EN_MASK_SFT (0x1 << 0) /* AFE_I2S_CON9 */ #define I2S9_LR_SWAP_SFT 31 #define I2S9_LR_SWAP_MASK 0x1 #define I2S9_LR_SWAP_MASK_SFT (0x1 << 31) #define I2S_ONOFF_NOT_RESET_CK_ENABLE_SFT 17 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK 0x1 #define I2S_ONOFF_NOT_RESET_CK_ENABLE_MASK_SFT (0x1 << 17) #define I2S9_32BIT_EN_SFT 13 #define I2S9_32BIT_EN_MASK 0x1 #define I2S9_32BIT_EN_MASK_SFT (0x1 << 13) #define I2S9_HD_EN_SFT 12 #define I2S9_HD_EN_MASK 0x1 #define I2S9_HD_EN_MASK_SFT (0x1 << 12) #define I2S9_OUT_MODE_SFT 8 #define I2S9_OUT_MODE_MASK 0xf #define I2S9_OUT_MODE_MASK_SFT (0xf << 8) #define INV_LRCK_SFT 5 #define INV_LRCK_MASK 0x1 #define INV_LRCK_MASK_SFT (0x1 << 5) #define I2S9_FMT_SFT 3 #define I2S9_FMT_MASK 0x1 #define I2S9_FMT_MASK_SFT (0x1 << 3) #define I2S9_WLEN_SFT 1 #define I2S9_WLEN_MASK 0x1 #define I2S9_WLEN_MASK_SFT (0x1 << 1) #define I2S9_EN_SFT 0 #define I2S9_EN_MASK 0x1 #define I2S9_EN_MASK_SFT (0x1 << 0) /* AFE_ASRC_2CH_CON2 */ #define CHSET_O16BIT_SFT 19 #define CHSET_O16BIT_MASK 0x1 #define CHSET_O16BIT_MASK_SFT (0x1 << 19) #define CHSET_CLR_IIR_HISTORY_SFT 17 #define CHSET_CLR_IIR_HISTORY_MASK 0x1 #define CHSET_CLR_IIR_HISTORY_MASK_SFT (0x1 << 17) #define CHSET_IS_MONO_SFT 16 #define CHSET_IS_MONO_MASK 0x1 #define CHSET_IS_MONO_MASK_SFT (0x1 << 16) #define CHSET_IIR_EN_SFT 11 #define CHSET_IIR_EN_MASK 0x1 #define CHSET_IIR_EN_MASK_SFT (0x1 << 11) #define CHSET_IIR_STAGE_SFT 8 #define CHSET_IIR_STAGE_MASK 0x7 #define CHSET_IIR_STAGE_MASK_SFT (0x7 << 8) #define CHSET_STR_CLR_SFT 5 #define CHSET_STR_CLR_MASK 0x1 #define CHSET_STR_CLR_MASK_SFT (0x1 << 5) #define CHSET_ON_SFT 2 #define CHSET_ON_MASK 0x1 #define CHSET_ON_MASK_SFT (0x1 << 2) #define COEFF_SRAM_CTRL_SFT 1 #define COEFF_SRAM_CTRL_MASK 0x1 #define COEFF_SRAM_CTRL_MASK_SFT (0x1 << 1) #define ASM_ON_SFT 0 #define ASM_ON_MASK 0x1 #define ASM_ON_MASK_SFT (0x1 << 0) /* AFE_GAIN1_CON0 */ #define GAIN1_SAMPLE_PER_STEP_SFT 8 #define GAIN1_SAMPLE_PER_STEP_MASK 0xff #define GAIN1_SAMPLE_PER_STEP_MASK_SFT (0xff << 8) #define GAIN1_MODE_SFT 4 #define GAIN1_MODE_MASK 0xf #define GAIN1_MODE_MASK_SFT (0xf << 4) #define GAIN1_ON_SFT 0 #define GAIN1_ON_MASK 0x1 #define GAIN1_ON_MASK_SFT (0x1 << 0) /* AFE_GAIN1_CON1 */ #define GAIN1_TARGET_SFT 0 #define GAIN1_TARGET_MASK 0xfffffff #define GAIN1_TARGET_MASK_SFT (0xfffffff << 0) /* AFE_GAIN2_CON0 */ #define GAIN2_SAMPLE_PER_STEP_SFT 8 #define GAIN2_SAMPLE_PER_STEP_MASK 0xff #define GAIN2_SAMPLE_PER_STEP_MASK_SFT (0xff << 8) #define GAIN2_MODE_SFT 4 #define GAIN2_MODE_MASK 0xf #define GAIN2_MODE_MASK_SFT (0xf << 4) #define GAIN2_ON_SFT 0 #define GAIN2_ON_MASK 0x1 #define GAIN2_ON_MASK_SFT (0x1 << 0) /* AFE_GAIN2_CON1 */ #define GAIN2_TARGET_SFT 0 #define GAIN2_TARGET_MASK 0xfffffff #define GAIN2_TARGET_MASK_SFT (0xfffffff << 0) /* AFE_GAIN1_CUR */ #define AFE_GAIN1_CUR_SFT 0 #define AFE_GAIN1_CUR_MASK 0xfffffff #define AFE_GAIN1_CUR_MASK_SFT (0xfffffff << 0) /* AFE_GAIN2_CUR */ #define AFE_GAIN2_CUR_SFT 0 #define AFE_GAIN2_CUR_MASK 0xfffffff #define AFE_GAIN2_CUR_MASK_SFT (0xfffffff << 0) /* PCM_INTF_CON1 */ #define PCM_FIX_VALUE_SEL_SFT 31 #define PCM_FIX_VALUE_SEL_MASK 0x1 #define PCM_FIX_VALUE_SEL_MASK_SFT (0x1 << 31) #define PCM_BUFFER_LOOPBACK_SFT 30 #define PCM_BUFFER_LOOPBACK_MASK 0x1 #define PCM_BUFFER_LOOPBACK_MASK_SFT (0x1 << 30) #define PCM_PARALLEL_LOOPBACK_SFT 29 #define PCM_PARALLEL_LOOPBACK_MASK 0x1 #define PCM_PARALLEL_LOOPBACK_MASK_SFT (0x1 << 29) #define PCM_SERIAL_LOOPBACK_SFT 28 #define PCM_SERIAL_LOOPBACK_MASK 0x1 #define PCM_SERIAL_LOOPBACK_MASK_SFT (0x1 << 28) #define PCM_DAI_PCM_LOOPBACK_SFT 27 #define PCM_DAI_PCM_LOOPBACK_MASK 0x1 #define PCM_DAI_PCM_LOOPBACK_MASK_SFT (0x1 << 27) #define PCM_I2S_PCM_LOOPBACK_SFT 26 #define PCM_I2S_PCM_LOOPBACK_MASK 0x1 #define PCM_I2S_PCM_LOOPBACK_MASK_SFT (0x1 << 26) #define PCM_SYNC_DELSEL_SFT 25 #define PCM_SYNC_DELSEL_MASK 0x1 #define PCM_SYNC_DELSEL_MASK_SFT (0x1 << 25) #define PCM_TX_LR_SWAP_SFT 24 #define PCM_TX_LR_SWAP_MASK 0x1 #define PCM_TX_LR_SWAP_MASK_SFT (0x1 << 24) #define PCM_SYNC_OUT_INV_SFT 23 #define PCM_SYNC_OUT_INV_MASK 0x1 #define PCM_SYNC_OUT_INV_MASK_SFT (0x1 << 23) #define PCM_BCLK_OUT_INV_SFT 22 #define PCM_BCLK_OUT_INV_MASK 0x1 #define PCM_BCLK_OUT_INV_MASK_SFT (0x1 << 22) #define PCM_SYNC_IN_INV_SFT 21 #define PCM_SYNC_IN_INV_MASK 0x1 #define PCM_SYNC_IN_INV_MASK_SFT (0x1 << 21) #define PCM_BCLK_IN_INV_SFT 20 #define PCM_BCLK_IN_INV_MASK 0x1 #define PCM_BCLK_IN_INV_MASK_SFT (0x1 << 20) #define PCM_TX_LCH_RPT_SFT 19 #define PCM_TX_LCH_RPT_MASK 0x1 #define PCM_TX_LCH_RPT_MASK_SFT (0x1 << 19) #define PCM_VBT_16K_MODE_SFT 18 #define PCM_VBT_16K_MODE_MASK 0x1 #define PCM_VBT_16K_MODE_MASK_SFT (0x1 << 18) #define PCM_EXT_MODEM_SFT 17 #define PCM_EXT_MODEM_MASK 0x1 #define PCM_EXT_MODEM_MASK_SFT (0x1 << 17) #define PCM_24BIT_SFT 16 #define PCM_24BIT_MASK 0x1 #define PCM_24BIT_MASK_SFT (0x1 << 16) #define PCM_WLEN_SFT 14 #define PCM_WLEN_MASK 0x3 #define PCM_WLEN_MASK_SFT (0x3 << 14) #define PCM_SYNC_LENGTH_SFT 9 #define PCM_SYNC_LENGTH_MASK 0x1f #define PCM_SYNC_LENGTH_MASK_SFT (0x1f << 9) #define PCM_SYNC_TYPE_SFT 8 #define PCM_SYNC_TYPE_MASK 0x1 #define PCM_SYNC_TYPE_MASK_SFT (0x1 << 8) #define PCM_BT_MODE_SFT 7 #define PCM_BT_MODE_MASK 0x1 #define PCM_BT_MODE_MASK_SFT (0x1 << 7) #define PCM_BYP_ASRC_SFT 6 #define PCM_BYP_ASRC_MASK 0x1 #define PCM_BYP_ASRC_MASK_SFT (0x1 << 6) #define PCM_SLAVE_SFT 5 #define PCM_SLAVE_MASK 0x1 #define PCM_SLAVE_MASK_SFT (0x1 << 5) #define PCM_MODE_SFT 3 #define PCM_MODE_MASK 0x3 #define PCM_MODE_MASK_SFT (0x3 << 3) #define PCM_FMT_SFT 1 #define PCM_FMT_MASK 0x3 #define PCM_FMT_MASK_SFT (0x3 << 1) #define PCM_EN_SFT 0 #define PCM_EN_MASK 0x1 #define PCM_EN_MASK_SFT (0x1 << 0) /* PCM_INTF_CON2 */ #define PCM1_TX_FIFO_OV_SFT 31 #define PCM1_TX_FIFO_OV_MASK 0x1 #define PCM1_TX_FIFO_OV_MASK_SFT (0x1 << 31) #define PCM1_RX_FIFO_OV_SFT 30 #define PCM1_RX_FIFO_OV_MASK 0x1 #define PCM1_RX_FIFO_OV_MASK_SFT (0x1 << 30) #define PCM2_TX_FIFO_OV_SFT 29 #define PCM2_TX_FIFO_OV_MASK 0x1 #define PCM2_TX_FIFO_OV_MASK_SFT (0x1 << 29) #define PCM2_RX_FIFO_OV_SFT 28 #define PCM2_RX_FIFO_OV_MASK 0x1 #define PCM2_RX_FIFO_OV_MASK_SFT (0x1 << 28) #define PCM1_SYNC_GLITCH_SFT 27 #define PCM1_SYNC_GLITCH_MASK 0x1 #define PCM1_SYNC_GLITCH_MASK_SFT (0x1 << 27) #define PCM2_SYNC_GLITCH_SFT 26 #define PCM2_SYNC_GLITCH_MASK 0x1 #define PCM2_SYNC_GLITCH_MASK_SFT (0x1 << 26) #define TX3_RCH_DBG_MODE_SFT 17 #define TX3_RCH_DBG_MODE_MASK 0x1 #define TX3_RCH_DBG_MODE_MASK_SFT (0x1 << 17) #define PCM1_PCM2_LOOPBACK_SFT 16 #define PCM1_PCM2_LOOPBACK_MASK 0x1 #define PCM1_PCM2_LOOPBACK_MASK_SFT (0x1 << 16) #define DAI_PCM_LOOPBACK_CH_SFT 14 #define DAI_PCM_LOOPBACK_CH_MASK 0x3 #define DAI_PCM_LOOPBACK_CH_MASK_SFT (0x3 << 14) #define I2S_PCM_LOOPBACK_CH_SFT 12 #define I2S_PCM_LOOPBACK_CH_MASK 0x3 #define I2S_PCM_LOOPBACK_CH_MASK_SFT (0x3 << 12) #define TX_FIX_VALUE_SFT 0 #define TX_FIX_VALUE_MASK 0xff #define TX_FIX_VALUE_MASK_SFT (0xff << 0) /* PCM2_INTF_CON */ #define PCM2_TX_FIX_VALUE_SFT 24 #define PCM2_TX_FIX_VALUE_MASK 0xff #define PCM2_TX_FIX_VALUE_MASK_SFT (0xff << 24) #define PCM2_FIX_VALUE_SEL_SFT 23 #define PCM2_FIX_VALUE_SEL_MASK 0x1 #define PCM2_FIX_VALUE_SEL_MASK_SFT (0x1 << 23) #define PCM2_BUFFER_LOOPBACK_SFT 22 #define PCM2_BUFFER_LOOPBACK_MASK 0x1 #define PCM2_BUFFER_LOOPBACK_MASK_SFT (0x1 << 22) #define PCM2_PARALLEL_LOOPBACK_SFT 21 #define PCM2_PARALLEL_LOOPBACK_MASK 0x1 #define PCM2_PARALLEL_LOOPBACK_MASK_SFT (0x1 << 21) #define PCM2_SERIAL_LOOPBACK_SFT 20 #define PCM2_SERIAL_LOOPBACK_MASK 0x1 #define PCM2_SERIAL_LOOPBACK_MASK_SFT (0x1 << 20) #define PCM2_DAI_PCM_LOOPBACK_SFT 19 #define PCM2_DAI_PCM_LOOPBACK_MASK 0x1 #define PCM2_DAI_PCM_LOOPBACK_MASK_SFT (0x1 << 19) #define PCM2_I2S_PCM_LOOPBACK_SFT 18 #define PCM2_I2S_PCM_LOOPBACK_MASK 0x1 #define PCM2_I2S_PCM_LOOPBACK_MASK_SFT (0x1 << 18) #define PCM2_SYNC_DELSEL_SFT 17 #define PCM2_SYNC_DELSEL_MASK 0x1 #define PCM2_SYNC_DELSEL_MASK_SFT (0x1 << 17) #define PCM2_TX_LR_SWAP_SFT 16 #define PCM2_TX_LR_SWAP_MASK 0x1 #define PCM2_TX_LR_SWAP_MASK_SFT (0x1 << 16) #define PCM2_SYNC_IN_INV_SFT 15 #define PCM2_SYNC_IN_INV_MASK 0x1 #define PCM2_SYNC_IN_INV_MASK_SFT (0x1 << 15) #define PCM2_BCLK_IN_INV_SFT 14 #define PCM2_BCLK_IN_INV_MASK 0x1 #define PCM2_BCLK_IN_INV_MASK_SFT (0x1 << 14) #define PCM2_TX_LCH_RPT_SFT 13 #define PCM2_TX_LCH_RPT_MASK 0x1 #define PCM2_TX_LCH_RPT_MASK_SFT (0x1 << 13) #define PCM2_VBT_16K_MODE_SFT 12 #define PCM2_VBT_16K_MODE_MASK 0x1 #define PCM2_VBT_16K_MODE_MASK_SFT (0x1 << 12) #define PCM2_LOOPBACK_CH_SEL_SFT 10 #define PCM2_LOOPBACK_CH_SEL_MASK 0x3 #define PCM2_LOOPBACK_CH_SEL_MASK_SFT (0x3 << 10) #define PCM2_TX2_BT_MODE_SFT 8 #define PCM2_TX2_BT_MODE_MASK 0x1 #define PCM2_TX2_BT_MODE_MASK_SFT (0x1 << 8) #define PCM2_BT_MODE_SFT 7 #define PCM2_BT_MODE_MASK 0x1 #define PCM2_BT_MODE_MASK_SFT (0x1 << 7) #define PCM2_AFIFO_SFT 6 #define PCM2_AFIFO_MASK 0x1 #define PCM2_AFIFO_MASK_SFT (0x1 << 6) #define PCM2_WLEN_SFT 5 #define PCM2_WLEN_MASK 0x1 #define PCM2_WLEN_MASK_SFT (0x1 << 5) #define PCM2_MODE_SFT 3 #define PCM2_MODE_MASK 0x3 #define PCM2_MODE_MASK_SFT (0x3 << 3) #define PCM2_FMT_SFT 1 #define PCM2_FMT_MASK 0x3 #define PCM2_FMT_MASK_SFT (0x3 << 1) #define PCM2_EN_SFT 0 #define PCM2_EN_MASK 0x1 #define PCM2_EN_MASK_SFT (0x1 << 0) /* AFE_ADDA_MTKAIF_CFG0 */ #define MTKAIF_RXIF_CLKINV_ADC_SFT 31 #define MTKAIF_RXIF_CLKINV_ADC_MASK 0x1 #define MTKAIF_RXIF_CLKINV_ADC_MASK_SFT (0x1 << 31) #define MTKAIF_RXIF_BYPASS_SRC_SFT 17 #define MTKAIF_RXIF_BYPASS_SRC_MASK 0x1 #define MTKAIF_RXIF_BYPASS_SRC_MASK_SFT (0x1 << 17) #define MTKAIF_RXIF_PROTOCOL2_SFT 16 #define MTKAIF_RXIF_PROTOCOL2_MASK 0x1 #define MTKAIF_RXIF_PROTOCOL2_MASK_SFT (0x1 << 16) #define MTKAIF_TXIF_BYPASS_SRC_SFT 5 #define MTKAIF_TXIF_BYPASS_SRC_MASK 0x1 #define MTKAIF_TXIF_BYPASS_SRC_MASK_SFT (0x1 << 5) #define MTKAIF_TXIF_PROTOCOL2_SFT 4 #define MTKAIF_TXIF_PROTOCOL2_MASK 0x1 #define MTKAIF_TXIF_PROTOCOL2_MASK_SFT (0x1 << 4) #define MTKAIF_TXIF_8TO5_SFT 2 #define MTKAIF_TXIF_8TO5_MASK 0x1 #define MTKAIF_TXIF_8TO5_MASK_SFT (0x1 << 2) #define MTKAIF_RXIF_8TO5_SFT 1 #define MTKAIF_RXIF_8TO5_MASK 0x1 #define MTKAIF_RXIF_8TO5_MASK_SFT (0x1 << 1) #define MTKAIF_IF_LOOPBACK1_SFT 0 #define MTKAIF_IF_LOOPBACK1_MASK 0x1 #define MTKAIF_IF_LOOPBACK1_MASK_SFT (0x1 << 0) /* AFE_ADDA_MTKAIF_RX_CFG2 */ #define MTKAIF_RXIF_DETECT_ON_PROTOCOL2_SFT 16 #define MTKAIF_RXIF_DETECT_ON_PROTOCOL2_MASK 0x1 #define MTKAIF_RXIF_DETECT_ON_PROTOCOL2_MASK_SFT (0x1 << 16) #define MTKAIF_RXIF_DELAY_CYCLE_SFT 12 #define MTKAIF_RXIF_DELAY_CYCLE_MASK 0xf #define MTKAIF_RXIF_DELAY_CYCLE_MASK_SFT (0xf << 12) #define MTKAIF_RXIF_DELAY_DATA_SFT 8 #define MTKAIF_RXIF_DELAY_DATA_MASK 0x1 #define MTKAIF_RXIF_DELAY_DATA_MASK_SFT (0x1 << 8) #define MTKAIF_RXIF_FIFO_RSP_PROTOCOL2_SFT 4 #define MTKAIF_RXIF_FIFO_RSP_PROTOCOL2_MASK 0x7 #define MTKAIF_RXIF_FIFO_RSP_PROTOCOL2_MASK_SFT (0x7 << 4) /* AFE_ADDA_DL_SRC2_CON0 */ #define DL_2_INPUT_MODE_CTL_SFT 28 #define DL_2_INPUT_MODE_CTL_MASK 0xf #define DL_2_INPUT_MODE_CTL_MASK_SFT (0xf << 28) #define DL_2_CH1_SATURATION_EN_CTL_SFT 27 #define DL_2_CH1_SATURATION_EN_CTL_MASK 0x1 #define DL_2_CH1_SATURATION_EN_CTL_MASK_SFT (0x1 << 27) #define DL_2_CH2_SATURATION_EN_CTL_SFT 26 #define DL_2_CH2_SATURATION_EN_CTL_MASK 0x1 #define DL_2_CH2_SATURATION_EN_CTL_MASK_SFT (0x1 << 26) #define DL_2_OUTPUT_SEL_CTL_SFT 24 #define DL_2_OUTPUT_SEL_CTL_MASK 0x3 #define DL_2_OUTPUT_SEL_CTL_MASK_SFT (0x3 << 24) #define DL_2_FADEIN_0START_EN_SFT 16 #define DL_2_FADEIN_0START_EN_MASK 0x3 #define DL_2_FADEIN_0START_EN_MASK_SFT (0x3 << 16) #define DL_DISABLE_HW_CG_CTL_SFT 15 #define DL_DISABLE_HW_CG_CTL_MASK 0x1 #define DL_DISABLE_HW_CG_CTL_MASK_SFT (0x1 << 15) #define C_DATA_EN_SEL_CTL_PRE_SFT 14 #define C_DATA_EN_SEL_CTL_PRE_MASK 0x1 #define C_DATA_EN_SEL_CTL_PRE_MASK_SFT (0x1 << 14) #define DL_2_SIDE_TONE_ON_CTL_PRE_SFT 13 #define DL_2_SIDE_TONE_ON_CTL_PRE_MASK 0x1 #define DL_2_SIDE_TONE_ON_CTL_PRE_MASK_SFT (0x1 << 13) #define DL_2_MUTE_CH1_OFF_CTL_PRE_SFT 12 #define DL_2_MUTE_CH1_OFF_CTL_PRE_MASK 0x1 #define DL_2_MUTE_CH1_OFF_CTL_PRE_MASK_SFT (0x1 << 12) #define DL_2_MUTE_CH2_OFF_CTL_PRE_SFT 11 #define DL_2_MUTE_CH2_OFF_CTL_PRE_MASK 0x1 #define DL_2_MUTE_CH2_OFF_CTL_PRE_MASK_SFT (0x1 << 11) #define DL2_ARAMPSP_CTL_PRE_SFT 9 #define DL2_ARAMPSP_CTL_PRE_MASK 0x3 #define DL2_ARAMPSP_CTL_PRE_MASK_SFT (0x3 << 9) #define DL_2_IIRMODE_CTL_PRE_SFT 6 #define DL_2_IIRMODE_CTL_PRE_MASK 0x7 #define DL_2_IIRMODE_CTL_PRE_MASK_SFT (0x7 << 6) #define DL_2_VOICE_MODE_CTL_PRE_SFT 5 #define DL_2_VOICE_MODE_CTL_PRE_MASK 0x1 #define DL_2_VOICE_MODE_CTL_PRE_MASK_SFT (0x1 << 5) #define D2_2_MUTE_CH1_ON_CTL_PRE_SFT 4 #define D2_2_MUTE_CH1_ON_CTL_PRE_MASK 0x1 #define D2_2_MUTE_CH1_ON_CTL_PRE_MASK_SFT (0x1 << 4) #define D2_2_MUTE_CH2_ON_CTL_PRE_SFT 3 #define D2_2_MUTE_CH2_ON_CTL_PRE_MASK 0x1 #define D2_2_MUTE_CH2_ON_CTL_PRE_MASK_SFT (0x1 << 3) #define DL_2_IIR_ON_CTL_PRE_SFT 2 #define DL_2_IIR_ON_CTL_PRE_MASK 0x1 #define DL_2_IIR_ON_CTL_PRE_MASK_SFT (0x1 << 2) #define DL_2_GAIN_ON_CTL_PRE_SFT 1 #define DL_2_GAIN_ON_CTL_PRE_MASK 0x1 #define DL_2_GAIN_ON_CTL_PRE_MASK_SFT (0x1 << 1) #define DL_2_SRC_ON_TMP_CTL_PRE_SFT 0 #define DL_2_SRC_ON_TMP_CTL_PRE_MASK 0x1 #define DL_2_SRC_ON_TMP_CTL_PRE_MASK_SFT (0x1 << 0) /* AFE_ADDA_DL_SRC2_CON1 */ #define DL_2_GAIN_CTL_PRE_SFT 16 #define DL_2_GAIN_CTL_PRE_MASK 0xffff #define DL_2_GAIN_CTL_PRE_MASK_SFT (0xffff << 16) #define DL_2_GAIN_MODE_CTL_SFT 0 #define DL_2_GAIN_MODE_CTL_MASK 0x1 #define DL_2_GAIN_MODE_CTL_MASK_SFT (0x1 << 0) /* AFE_ADDA_UL_SRC_CON0 */ #define ULCF_CFG_EN_CTL_SFT 31 #define ULCF_CFG_EN_CTL_MASK 0x1 #define ULCF_CFG_EN_CTL_MASK_SFT (0x1 << 31) #define UL_DMIC_PHASE_SEL_CH1_SFT 27 #define UL_DMIC_PHASE_SEL_CH1_MASK 0x7 #define UL_DMIC_PHASE_SEL_CH1_MASK_SFT (0x7 << 27) #define UL_DMIC_PHASE_SEL_CH2_SFT 24 #define UL_DMIC_PHASE_SEL_CH2_MASK 0x7 #define UL_DMIC_PHASE_SEL_CH2_MASK_SFT (0x7 << 24) #define UL_MODE_3P25M_CH2_CTL_SFT 22 #define UL_MODE_3P25M_CH2_CTL_MASK 0x1 #define UL_MODE_3P25M_CH2_CTL_MASK_SFT (0x1 << 22) #define UL_MODE_3P25M_CH1_CTL_SFT 21 #define UL_MODE_3P25M_CH1_CTL_MASK 0x1 #define UL_MODE_3P25M_CH1_CTL_MASK_SFT (0x1 << 21) #define UL_VOICE_MODE_CH1_CH2_CTL_SFT 17 #define UL_VOICE_MODE_CH1_CH2_CTL_MASK 0x7 #define UL_VOICE_MODE_CH1_CH2_CTL_MASK_SFT (0x7 << 17) #define UL_AP_DMIC_ON_SFT 16 #define UL_AP_DMIC_ON_MASK 0x1 #define UL_AP_DMIC_ON_MASK_SFT (0x1 << 16) #define DMIC_LOW_POWER_MODE_CTL_SFT 14 #define DMIC_LOW_POWER_MODE_CTL_MASK 0x3 #define DMIC_LOW_POWER_MODE_CTL_MASK_SFT (0x3 << 14) #define UL_DISABLE_HW_CG_CTL_SFT 12 #define UL_DISABLE_HW_CG_CTL_MASK 0x1 #define UL_DISABLE_HW_CG_CTL_MASK_SFT (0x1 << 12) #define UL_IIR_ON_TMP_CTL_SFT 10 #define UL_IIR_ON_TMP_CTL_MASK 0x1 #define UL_IIR_ON_TMP_CTL_MASK_SFT (0x1 << 10) #define UL_IIRMODE_CTL_SFT 7 #define UL_IIRMODE_CTL_MASK 0x7 #define UL_IIRMODE_CTL_MASK_SFT (0x7 << 7) #define DIGMIC_4P33M_SEL_SFT 6 #define DIGMIC_4P33M_SEL_MASK 0x1 #define DIGMIC_4P33M_SEL_MASK_SFT (0x1 << 6) #define DIGMIC_3P25M_1P625M_SEL_CTL_SFT 5 #define DIGMIC_3P25M_1P625M_SEL_CTL_MASK 0x1 #define DIGMIC_3P25M_1P625M_SEL_CTL_MASK_SFT (0x1 << 5) #define UL_LOOP_BACK_MODE_CTL_SFT 2 #define UL_LOOP_BACK_MODE_CTL_MASK 0x1 #define UL_LOOP_BACK_MODE_CTL_MASK_SFT (0x1 << 2) #define UL_SDM_3_LEVEL_CTL_SFT 1 #define UL_SDM_3_LEVEL_CTL_MASK 0x1 #define UL_SDM_3_LEVEL_CTL_MASK_SFT (0x1 << 1) #define UL_SRC_ON_TMP_CTL_SFT 0 #define UL_SRC_ON_TMP_CTL_MASK 0x1 #define UL_SRC_ON_TMP_CTL_MASK_SFT (0x1 << 0) /* AFE_ADDA_UL_SRC_CON1 */ #define C_DAC_EN_CTL_SFT 27 #define C_DAC_EN_CTL_MASK 0x1 #define C_DAC_EN_CTL_MASK_SFT (0x1 << 27) #define C_MUTE_SW_CTL_SFT 26 #define C_MUTE_SW_CTL_MASK 0x1 #define C_MUTE_SW_CTL_MASK_SFT (0x1 << 26) #define ASDM_SRC_SEL_CTL_SFT 25 #define ASDM_SRC_SEL_CTL_MASK 0x1 #define ASDM_SRC_SEL_CTL_MASK_SFT (0x1 << 25) #define C_AMP_DIV_CH2_CTL_SFT 21 #define C_AMP_DIV_CH2_CTL_MASK 0x7 #define C_AMP_DIV_CH2_CTL_MASK_SFT (0x7 << 21) #define C_FREQ_DIV_CH2_CTL_SFT 16 #define C_FREQ_DIV_CH2_CTL_MASK 0x1f #define C_FREQ_DIV_CH2_CTL_MASK_SFT (0x1f << 16) #define C_SINE_MODE_CH2_CTL_SFT 12 #define C_SINE_MODE_CH2_CTL_MASK 0xf #define C_SINE_MODE_CH2_CTL_MASK_SFT (0xf << 12) #define C_AMP_DIV_CH1_CTL_SFT 9 #define C_AMP_DIV_CH1_CTL_MASK 0x7 #define C_AMP_DIV_CH1_CTL_MASK_SFT (0x7 << 9) #define C_FREQ_DIV_CH1_CTL_SFT 4 #define C_FREQ_DIV_CH1_CTL_MASK 0x1f #define C_FREQ_DIV_CH1_CTL_MASK_SFT (0x1f << 4) #define C_SINE_MODE_CH1_CTL_SFT 0 #define C_SINE_MODE_CH1_CTL_MASK 0xf #define C_SINE_MODE_CH1_CTL_MASK_SFT (0xf << 0) /* AFE_ADDA_TOP_CON0 */ #define C_LOOP_BACK_MODE_CTL_SFT 12 #define C_LOOP_BACK_MODE_CTL_MASK 0xf #define C_LOOP_BACK_MODE_CTL_MASK_SFT (0xf << 12) #define ADDA_UL_GAIN_MODE_SFT 8 #define ADDA_UL_GAIN_MODE_MASK 0x3 #define ADDA_UL_GAIN_MODE_MASK_SFT (0x3 << 8) #define C_EXT_ADC_CTL_SFT 0 #define C_EXT_ADC_CTL_MASK 0x1 #define C_EXT_ADC_CTL_MASK_SFT (0x1 << 0) /* AFE_ADDA_UL_DL_CON0 */ #define AFE_ADDA_UL_LR_SWAP_SFT 31 #define AFE_ADDA_UL_LR_SWAP_MASK 0x1 #define AFE_ADDA_UL_LR_SWAP_MASK_SFT (0x1 << 31) #define AFE_ADDA_CKDIV_RST_SFT 30 #define AFE_ADDA_CKDIV_RST_MASK 0x1 #define AFE_ADDA_CKDIV_RST_MASK_SFT (0x1 << 30) #define AFE_ADDA_FIFO_AUTO_RST_SFT 29 #define AFE_ADDA_FIFO_AUTO_RST_MASK 0x1 #define AFE_ADDA_FIFO_AUTO_RST_MASK_SFT (0x1 << 29) #define AFE_ADDA_UL_FIFO_DIGMIC_TESTIN_SFT 21 #define AFE_ADDA_UL_FIFO_DIGMIC_TESTIN_MASK 0x3 #define AFE_ADDA_UL_FIFO_DIGMIC_TESTIN_MASK_SFT (0x3 << 21) #define AFE_ADDA_UL_FIFO_DIGMIC_WDATA_TESTEN_SFT 20 #define AFE_ADDA_UL_FIFO_DIGMIC_WDATA_TESTEN_MASK 0x1 #define AFE_ADDA_UL_FIFO_DIGMIC_WDATA_TESTEN_MASK_SFT (0x1 << 20) #define AFE_ADDA6_UL_LR_SWAP_SFT 15 #define AFE_ADDA6_UL_LR_SWAP_MASK 0x1 #define AFE_ADDA6_UL_LR_SWAP_MASK_SFT (0x1 << 15) #define AFE_ADDA6_CKDIV_RST_SFT 14 #define AFE_ADDA6_CKDIV_RST_MASK 0x1 #define AFE_ADDA6_CKDIV_RST_MASK_SFT (0x1 << 14) #define AFE_ADDA6_FIFO_AUTO_RST_SFT 13 #define AFE_ADDA6_FIFO_AUTO_RST_MASK 0x1 #define AFE_ADDA6_FIFO_AUTO_RST_MASK_SFT (0x1 << 13) #define AFE_ADDA6_UL_FIFO_DIGMIC_TESTIN_SFT 5 #define AFE_ADDA6_UL_FIFO_DIGMIC_TESTIN_MASK 0x3 #define AFE_ADDA6_UL_FIFO_DIGMIC_TESTIN_MASK_SFT (0x3 << 5) #define AFE_ADDA6_UL_FIFO_DIGMIC_WDATA_TESTEN_SFT 4 #define AFE_ADDA6_UL_FIFO_DIGMIC_WDATA_TESTEN_MASK 0x1 #define AFE_ADDA6_UL_FIFO_DIGMIC_WDATA_TESTEN_MASK_SFT (0x1 << 4) #define ADDA_AFE_ON_SFT 0 #define ADDA_AFE_ON_MASK 0x1 #define ADDA_AFE_ON_MASK_SFT (0x1 << 0) /* AFE_SIDETONE_CON0 */ #define R_RDY_SFT 30 #define R_RDY_MASK 0x1 #define R_RDY_MASK_SFT (0x1 << 30) #define W_RDY_SFT 29 #define W_RDY_MASK 0x1 #define W_RDY_MASK_SFT (0x1 << 29) #define R_W_EN_SFT 25 #define R_W_EN_MASK 0x1 #define R_W_EN_MASK_SFT (0x1 << 25) #define R_W_SEL_SFT 24 #define R_W_SEL_MASK 0x1 #define R_W_SEL_MASK_SFT (0x1 << 24) #define SEL_CH2_SFT 23 #define SEL_CH2_MASK 0x1 #define SEL_CH2_MASK_SFT (0x1 << 23) #define SIDE_TONE_COEFFICIENT_ADDR_SFT 16 #define SIDE_TONE_COEFFICIENT_ADDR_MASK 0x1f #define SIDE_TONE_COEFFICIENT_ADDR_MASK_SFT (0x1f << 16) #define SIDE_TONE_COEFFICIENT_SFT 0 #define SIDE_TONE_COEFFICIENT_MASK 0xffff #define SIDE_TONE_COEFFICIENT_MASK_SFT (0xffff << 0) /* AFE_SIDETONE_COEFF */ #define SIDE_TONE_COEFF_SFT 0 #define SIDE_TONE_COEFF_MASK 0xffff #define SIDE_TONE_COEFF_MASK_SFT (0xffff << 0) /* AFE_SIDETONE_CON1 */ #define STF_BYPASS_MODE_SFT 31 #define STF_BYPASS_MODE_MASK 0x1 #define STF_BYPASS_MODE_MASK_SFT (0x1 << 31) #define STF_BYPASS_MODE_O28_O29_SFT 30 #define STF_BYPASS_MODE_O28_O29_MASK 0x1 #define STF_BYPASS_MODE_O28_O29_MASK_SFT (0x1 << 30) #define STF_BYPASS_MODE_I2S4_SFT 29 #define STF_BYPASS_MODE_I2S4_MASK 0x1 #define STF_BYPASS_MODE_I2S4_MASK_SFT (0x1 << 29) #define STF_BYPASS_MODE_I2S5_SFT 28 #define STF_BYPASS_MODE_I2S5_MASK 0x1 #define STF_BYPASS_MODE_I2S5_MASK_SFT (0x1 << 28) #define STF_BYPASS_MODE_DL3_SFT 27 #define STF_BYPASS_MODE_DL3_MASK 0x1 #define STF_BYPASS_MODE_DL3_MASK_SFT (0x1 << 27) #define STF_BYPASS_MODE_I2S7_SFT 26 #define STF_BYPASS_MODE_I2S7_MASK 0x1 #define STF_BYPASS_MODE_I2S7_MASK_SFT (0x1 << 26) #define STF_BYPASS_MODE_I2S9_SFT 25 #define STF_BYPASS_MODE_I2S9_MASK 0x1 #define STF_BYPASS_MODE_I2S9_MASK_SFT (0x1 << 25) #define STF_O19O20_OUT_EN_SEL_SFT 13 #define STF_O19O20_OUT_EN_SEL_MASK 0x1 #define STF_O19O20_OUT_EN_SEL_MASK_SFT (0x1 << 13) #define STF_SOURCE_FROM_O19O20_SFT 12 #define STF_SOURCE_FROM_O19O20_MASK 0x1 #define STF_SOURCE_FROM_O19O20_MASK_SFT (0x1 << 12) #define SIDE_TONE_ON_SFT 8 #define SIDE_TONE_ON_MASK 0x1 #define SIDE_TONE_ON_MASK_SFT (0x1 << 8) #define SIDE_TONE_HALF_TAP_NUM_SFT 0 #define SIDE_TONE_HALF_TAP_NUM_MASK 0x3f #define SIDE_TONE_HALF_TAP_NUM_MASK_SFT (0x3f << 0) /* AFE_SIDETONE_GAIN */ #define POSITIVE_GAIN_SFT 16 #define POSITIVE_GAIN_MASK 0x7 #define POSITIVE_GAIN_MASK_SFT (0x7 << 16) #define SIDE_TONE_GAIN_SFT 0 #define SIDE_TONE_GAIN_MASK 0xffff #define SIDE_TONE_GAIN_MASK_SFT (0xffff << 0) /* AFE_ADDA_DL_SDM_DCCOMP_CON */ #define USE_3RD_SDM_SFT 28 #define USE_3RD_SDM_MASK 0x1 #define USE_3RD_SDM_MASK_SFT (0x1 << 28) #define DL_FIFO_START_POINT_SFT 24 #define DL_FIFO_START_POINT_MASK 0x7 #define DL_FIFO_START_POINT_MASK_SFT (0x7 << 24) #define DL_FIFO_SWAP_SFT 20 #define DL_FIFO_SWAP_MASK 0x1 #define DL_FIFO_SWAP_MASK_SFT (0x1 << 20) #define C_AUDSDM1ORDSELECT_CTL_SFT 19 #define C_AUDSDM1ORDSELECT_CTL_MASK 0x1 #define C_AUDSDM1ORDSELECT_CTL_MASK_SFT (0x1 << 19) #define C_SDM7BITSEL_CTL_SFT 18 #define C_SDM7BITSEL_CTL_MASK 0x1 #define C_SDM7BITSEL_CTL_MASK_SFT (0x1 << 18) #define GAIN_AT_SDM_RST_PRE_CTL_SFT 15 #define GAIN_AT_SDM_RST_PRE_CTL_MASK 0x1 #define GAIN_AT_SDM_RST_PRE_CTL_MASK_SFT (0x1 << 15) #define DL_DCM_AUTO_IDLE_EN_SFT 14 #define DL_DCM_AUTO_IDLE_EN_MASK 0x1 #define DL_DCM_AUTO_IDLE_EN_MASK_SFT (0x1 << 14) #define AFE_DL_SRC_DCM_EN_SFT 13 #define AFE_DL_SRC_DCM_EN_MASK 0x1 #define AFE_DL_SRC_DCM_EN_MASK_SFT (0x1 << 13) #define AFE_DL_POST_SRC_DCM_EN_SFT 12 #define AFE_DL_POST_SRC_DCM_EN_MASK 0x1 #define AFE_DL_POST_SRC_DCM_EN_MASK_SFT (0x1 << 12) #define AUD_SDM_MONO_SFT 9 #define AUD_SDM_MONO_MASK 0x1 #define AUD_SDM_MONO_MASK_SFT (0x1 << 9) #define AUD_DC_COMP_EN_SFT 8 #define AUD_DC_COMP_EN_MASK 0x1 #define AUD_DC_COMP_EN_MASK_SFT (0x1 << 8) #define ATTGAIN_CTL_SFT 0 #define ATTGAIN_CTL_MASK 0x3f #define ATTGAIN_CTL_MASK_SFT (0x3f << 0) /* AFE_SINEGEN_CON0 */ #define DAC_EN_SFT 26 #define DAC_EN_MASK 0x1 #define DAC_EN_MASK_SFT (0x1 << 26) #define MUTE_SW_CH2_SFT 25 #define MUTE_SW_CH2_MASK 0x1 #define MUTE_SW_CH2_MASK_SFT (0x1 << 25) #define MUTE_SW_CH1_SFT 24 #define MUTE_SW_CH1_MASK 0x1 #define MUTE_SW_CH1_MASK_SFT (0x1 << 24) #define SINE_MODE_CH2_SFT 20 #define SINE_MODE_CH2_MASK 0xf #define SINE_MODE_CH2_MASK_SFT (0xf << 20) #define AMP_DIV_CH2_SFT 17 #define AMP_DIV_CH2_MASK 0x7 #define AMP_DIV_CH2_MASK_SFT (0x7 << 17) #define FREQ_DIV_CH2_SFT 12 #define FREQ_DIV_CH2_MASK 0x1f #define FREQ_DIV_CH2_MASK_SFT (0x1f << 12) #define SINE_MODE_CH1_SFT 8 #define SINE_MODE_CH1_MASK 0xf #define SINE_MODE_CH1_MASK_SFT (0xf << 8) #define AMP_DIV_CH1_SFT 5 #define AMP_DIV_CH1_MASK 0x7 #define AMP_DIV_CH1_MASK_SFT (0x7 << 5) #define FREQ_DIV_CH1_SFT 0 #define FREQ_DIV_CH1_MASK 0x1f #define FREQ_DIV_CH1_MASK_SFT (0x1f << 0) /* AFE_SINEGEN_CON2 */ #define INNER_LOOP_BACK_MODE_SFT 0 #define INNER_LOOP_BACK_MODE_MASK 0x3f #define INNER_LOOP_BACK_MODE_MASK_SFT (0x3f << 0) /* AFE_HD_ENGEN_ENABLE */ #define AFE_24M_ON_SFT 1 #define AFE_24M_ON_MASK 0x1 #define AFE_24M_ON_MASK_SFT (0x1 << 1) #define AFE_22M_ON_SFT 0 #define AFE_22M_ON_MASK 0x1 #define AFE_22M_ON_MASK_SFT (0x1 << 0) /* AFE_ADDA_DL_NLE_FIFO_MON */ #define DL_NLE_FIFO_WBIN_SFT 8 #define DL_NLE_FIFO_WBIN_MASK 0xf #define DL_NLE_FIFO_WBIN_MASK_SFT (0xf << 8) #define DL_NLE_FIFO_RBIN_SFT 4 #define DL_NLE_FIFO_RBIN_MASK 0xf #define DL_NLE_FIFO_RBIN_MASK_SFT (0xf << 4) #define DL_NLE_FIFO_RDACTIVE_SFT 3 #define DL_NLE_FIFO_RDACTIVE_MASK 0x1 #define DL_NLE_FIFO_RDACTIVE_MASK_SFT (0x1 << 3) #define DL_NLE_FIFO_STARTRD_SFT 2 #define DL_NLE_FIFO_STARTRD_MASK 0x1 #define DL_NLE_FIFO_STARTRD_MASK_SFT (0x1 << 2) #define DL_NLE_FIFO_RD_EMPTY_SFT 1 #define DL_NLE_FIFO_RD_EMPTY_MASK 0x1 #define DL_NLE_FIFO_RD_EMPTY_MASK_SFT (0x1 << 1) #define DL_NLE_FIFO_WR_FULL_SFT 0 #define DL_NLE_FIFO_WR_FULL_MASK 0x1 #define DL_NLE_FIFO_WR_FULL_MASK_SFT (0x1 << 0) /* AFE_DL1_CON0 */ #define DL1_MODE_SFT 24 #define DL1_MODE_MASK 0xf #define DL1_MODE_MASK_SFT (0xf << 24) #define DL1_MINLEN_SFT 20 #define DL1_MINLEN_MASK 0xf #define DL1_MINLEN_MASK_SFT (0xf << 20) #define DL1_MAXLEN_SFT 16 #define DL1_MAXLEN_MASK 0xf #define DL1_MAXLEN_MASK_SFT (0xf << 16) #define DL1_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL1_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL1_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL1_PBUF_SIZE_SFT 12 #define DL1_PBUF_SIZE_MASK 0x3 #define DL1_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL1_MONO_SFT 8 #define DL1_MONO_MASK 0x1 #define DL1_MONO_MASK_SFT (0x1 << 8) #define DL1_NORMAL_MODE_SFT 5 #define DL1_NORMAL_MODE_MASK 0x1 #define DL1_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL1_HALIGN_SFT 4 #define DL1_HALIGN_MASK 0x1 #define DL1_HALIGN_MASK_SFT (0x1 << 4) #define DL1_HD_MODE_SFT 0 #define DL1_HD_MODE_MASK 0x3 #define DL1_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL2_CON0 */ #define DL2_MODE_SFT 24 #define DL2_MODE_MASK 0xf #define DL2_MODE_MASK_SFT (0xf << 24) #define DL2_MINLEN_SFT 20 #define DL2_MINLEN_MASK 0xf #define DL2_MINLEN_MASK_SFT (0xf << 20) #define DL2_MAXLEN_SFT 16 #define DL2_MAXLEN_MASK 0xf #define DL2_MAXLEN_MASK_SFT (0xf << 16) #define DL2_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL2_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL2_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL2_PBUF_SIZE_SFT 12 #define DL2_PBUF_SIZE_MASK 0x3 #define DL2_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL2_MONO_SFT 8 #define DL2_MONO_MASK 0x1 #define DL2_MONO_MASK_SFT (0x1 << 8) #define DL2_NORMAL_MODE_SFT 5 #define DL2_NORMAL_MODE_MASK 0x1 #define DL2_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL2_HALIGN_SFT 4 #define DL2_HALIGN_MASK 0x1 #define DL2_HALIGN_MASK_SFT (0x1 << 4) #define DL2_HD_MODE_SFT 0 #define DL2_HD_MODE_MASK 0x3 #define DL2_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL3_CON0 */ #define DL3_MODE_SFT 24 #define DL3_MODE_MASK 0xf #define DL3_MODE_MASK_SFT (0xf << 24) #define DL3_MINLEN_SFT 20 #define DL3_MINLEN_MASK 0xf #define DL3_MINLEN_MASK_SFT (0xf << 20) #define DL3_MAXLEN_SFT 16 #define DL3_MAXLEN_MASK 0xf #define DL3_MAXLEN_MASK_SFT (0xf << 16) #define DL3_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL3_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL3_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL3_PBUF_SIZE_SFT 12 #define DL3_PBUF_SIZE_MASK 0x3 #define DL3_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL3_MONO_SFT 8 #define DL3_MONO_MASK 0x1 #define DL3_MONO_MASK_SFT (0x1 << 8) #define DL3_NORMAL_MODE_SFT 5 #define DL3_NORMAL_MODE_MASK 0x1 #define DL3_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL3_HALIGN_SFT 4 #define DL3_HALIGN_MASK 0x1 #define DL3_HALIGN_MASK_SFT (0x1 << 4) #define DL3_HD_MODE_SFT 0 #define DL3_HD_MODE_MASK 0x3 #define DL3_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL4_CON0 */ #define DL4_MODE_SFT 24 #define DL4_MODE_MASK 0xf #define DL4_MODE_MASK_SFT (0xf << 24) #define DL4_MINLEN_SFT 20 #define DL4_MINLEN_MASK 0xf #define DL4_MINLEN_MASK_SFT (0xf << 20) #define DL4_MAXLEN_SFT 16 #define DL4_MAXLEN_MASK 0xf #define DL4_MAXLEN_MASK_SFT (0xf << 16) #define DL4_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL4_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL4_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL4_PBUF_SIZE_SFT 12 #define DL4_PBUF_SIZE_MASK 0x3 #define DL4_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL4_MONO_SFT 8 #define DL4_MONO_MASK 0x1 #define DL4_MONO_MASK_SFT (0x1 << 8) #define DL4_NORMAL_MODE_SFT 5 #define DL4_NORMAL_MODE_MASK 0x1 #define DL4_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL4_HALIGN_SFT 4 #define DL4_HALIGN_MASK 0x1 #define DL4_HALIGN_MASK_SFT (0x1 << 4) #define DL4_HD_MODE_SFT 0 #define DL4_HD_MODE_MASK 0x3 #define DL4_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL5_CON0 */ #define DL5_MODE_SFT 24 #define DL5_MODE_MASK 0xf #define DL5_MODE_MASK_SFT (0xf << 24) #define DL5_MINLEN_SFT 20 #define DL5_MINLEN_MASK 0xf #define DL5_MINLEN_MASK_SFT (0xf << 20) #define DL5_MAXLEN_SFT 16 #define DL5_MAXLEN_MASK 0xf #define DL5_MAXLEN_MASK_SFT (0xf << 16) #define DL5_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL5_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL5_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL5_PBUF_SIZE_SFT 12 #define DL5_PBUF_SIZE_MASK 0x3 #define DL5_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL5_MONO_SFT 8 #define DL5_MONO_MASK 0x1 #define DL5_MONO_MASK_SFT (0x1 << 8) #define DL5_NORMAL_MODE_SFT 5 #define DL5_NORMAL_MODE_MASK 0x1 #define DL5_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL5_HALIGN_SFT 4 #define DL5_HALIGN_MASK 0x1 #define DL5_HALIGN_MASK_SFT (0x1 << 4) #define DL5_HD_MODE_SFT 0 #define DL5_HD_MODE_MASK 0x3 #define DL5_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL6_CON0 */ #define DL6_MODE_SFT 24 #define DL6_MODE_MASK 0xf #define DL6_MODE_MASK_SFT (0xf << 24) #define DL6_MINLEN_SFT 20 #define DL6_MINLEN_MASK 0xf #define DL6_MINLEN_MASK_SFT (0xf << 20) #define DL6_MAXLEN_SFT 16 #define DL6_MAXLEN_MASK 0xf #define DL6_MAXLEN_MASK_SFT (0xf << 16) #define DL6_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL6_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL6_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL6_PBUF_SIZE_SFT 12 #define DL6_PBUF_SIZE_MASK 0x3 #define DL6_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL6_MONO_SFT 8 #define DL6_MONO_MASK 0x1 #define DL6_MONO_MASK_SFT (0x1 << 8) #define DL6_NORMAL_MODE_SFT 5 #define DL6_NORMAL_MODE_MASK 0x1 #define DL6_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL6_HALIGN_SFT 4 #define DL6_HALIGN_MASK 0x1 #define DL6_HALIGN_MASK_SFT (0x1 << 4) #define DL6_HD_MODE_SFT 0 #define DL6_HD_MODE_MASK 0x3 #define DL6_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL7_CON0 */ #define DL7_MODE_SFT 24 #define DL7_MODE_MASK 0xf #define DL7_MODE_MASK_SFT (0xf << 24) #define DL7_MINLEN_SFT 20 #define DL7_MINLEN_MASK 0xf #define DL7_MINLEN_MASK_SFT (0xf << 20) #define DL7_MAXLEN_SFT 16 #define DL7_MAXLEN_MASK 0xf #define DL7_MAXLEN_MASK_SFT (0xf << 16) #define DL7_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL7_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL7_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL7_PBUF_SIZE_SFT 12 #define DL7_PBUF_SIZE_MASK 0x3 #define DL7_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL7_MONO_SFT 8 #define DL7_MONO_MASK 0x1 #define DL7_MONO_MASK_SFT (0x1 << 8) #define DL7_NORMAL_MODE_SFT 5 #define DL7_NORMAL_MODE_MASK 0x1 #define DL7_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL7_HALIGN_SFT 4 #define DL7_HALIGN_MASK 0x1 #define DL7_HALIGN_MASK_SFT (0x1 << 4) #define DL7_HD_MODE_SFT 0 #define DL7_HD_MODE_MASK 0x3 #define DL7_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL8_CON0 */ #define DL8_MODE_SFT 24 #define DL8_MODE_MASK 0xf #define DL8_MODE_MASK_SFT (0xf << 24) #define DL8_MINLEN_SFT 20 #define DL8_MINLEN_MASK 0xf #define DL8_MINLEN_MASK_SFT (0xf << 20) #define DL8_MAXLEN_SFT 16 #define DL8_MAXLEN_MASK 0xf #define DL8_MAXLEN_MASK_SFT (0xf << 16) #define DL8_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL8_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL8_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL8_PBUF_SIZE_SFT 12 #define DL8_PBUF_SIZE_MASK 0x3 #define DL8_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL8_MONO_SFT 8 #define DL8_MONO_MASK 0x1 #define DL8_MONO_MASK_SFT (0x1 << 8) #define DL8_NORMAL_MODE_SFT 5 #define DL8_NORMAL_MODE_MASK 0x1 #define DL8_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL8_HALIGN_SFT 4 #define DL8_HALIGN_MASK 0x1 #define DL8_HALIGN_MASK_SFT (0x1 << 4) #define DL8_HD_MODE_SFT 0 #define DL8_HD_MODE_MASK 0x3 #define DL8_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL9_CON0 */ #define DL9_MODE_SFT 24 #define DL9_MODE_MASK 0xf #define DL9_MODE_MASK_SFT (0xf << 24) #define DL9_MINLEN_SFT 20 #define DL9_MINLEN_MASK 0xf #define DL9_MINLEN_MASK_SFT (0xf << 20) #define DL9_MAXLEN_SFT 16 #define DL9_MAXLEN_MASK 0xf #define DL9_MAXLEN_MASK_SFT (0xf << 16) #define DL9_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL9_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL9_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL9_PBUF_SIZE_SFT 12 #define DL9_PBUF_SIZE_MASK 0x3 #define DL9_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL9_MONO_SFT 8 #define DL9_MONO_MASK 0x1 #define DL9_MONO_MASK_SFT (0x1 << 8) #define DL9_NORMAL_MODE_SFT 5 #define DL9_NORMAL_MODE_MASK 0x1 #define DL9_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL9_HALIGN_SFT 4 #define DL9_HALIGN_MASK 0x1 #define DL9_HALIGN_MASK_SFT (0x1 << 4) #define DL9_HD_MODE_SFT 0 #define DL9_HD_MODE_MASK 0x3 #define DL9_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DL12_CON0 */ #define DL12_MODE_SFT 24 #define DL12_MODE_MASK 0xf #define DL12_MODE_MASK_SFT (0xf << 24) #define DL12_MINLEN_SFT 20 #define DL12_MINLEN_MASK 0xf #define DL12_MINLEN_MASK_SFT (0xf << 20) #define DL12_MAXLEN_SFT 16 #define DL12_MAXLEN_MASK 0xf #define DL12_MAXLEN_MASK_SFT (0xf << 16) #define DL12_SW_CLEAR_BUF_EMPTY_SFT 15 #define DL12_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define DL12_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define DL12_PBUF_SIZE_SFT 12 #define DL12_PBUF_SIZE_MASK 0x3 #define DL12_PBUF_SIZE_MASK_SFT (0x3 << 12) #define DL12_4CH_EN_SFT 11 #define DL12_4CH_EN_MASK 0x1 #define DL12_4CH_EN_MASK_SFT (0x1 << 11) #define DL12_MONO_SFT 8 #define DL12_MONO_MASK 0x1 #define DL12_MONO_MASK_SFT (0x1 << 8) #define DL12_NORMAL_MODE_SFT 5 #define DL12_NORMAL_MODE_MASK 0x1 #define DL12_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DL12_HALIGN_SFT 4 #define DL12_HALIGN_MASK 0x1 #define DL12_HALIGN_MASK_SFT (0x1 << 4) #define DL12_HD_MODE_SFT 0 #define DL12_HD_MODE_MASK 0x3 #define DL12_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_AWB_CON0 */ #define AWB_MODE_SFT 24 #define AWB_MODE_MASK 0xf #define AWB_MODE_MASK_SFT (0xf << 24) #define AWB_SW_CLEAR_BUF_FULL_SFT 15 #define AWB_SW_CLEAR_BUF_FULL_MASK 0x1 #define AWB_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define AWB_R_MONO_SFT 9 #define AWB_R_MONO_MASK 0x1 #define AWB_R_MONO_MASK_SFT (0x1 << 9) #define AWB_MONO_SFT 8 #define AWB_MONO_MASK 0x1 #define AWB_MONO_MASK_SFT (0x1 << 8) #define AWB_WR_SIGN_SFT 6 #define AWB_WR_SIGN_MASK 0x1 #define AWB_WR_SIGN_MASK_SFT (0x1 << 6) #define AWB_NORMAL_MODE_SFT 5 #define AWB_NORMAL_MODE_MASK 0x1 #define AWB_NORMAL_MODE_MASK_SFT (0x1 << 5) #define AWB_HALIGN_SFT 4 #define AWB_HALIGN_MASK 0x1 #define AWB_HALIGN_MASK_SFT (0x1 << 4) #define AWB_HD_MODE_SFT 0 #define AWB_HD_MODE_MASK 0x3 #define AWB_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_AWB2_CON0 */ #define AWB2_MODE_SFT 24 #define AWB2_MODE_MASK 0xf #define AWB2_MODE_MASK_SFT (0xf << 24) #define AWB2_SW_CLEAR_BUF_FULL_SFT 15 #define AWB2_SW_CLEAR_BUF_FULL_MASK 0x1 #define AWB2_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define AWB2_R_MONO_SFT 9 #define AWB2_R_MONO_MASK 0x1 #define AWB2_R_MONO_MASK_SFT (0x1 << 9) #define AWB2_MONO_SFT 8 #define AWB2_MONO_MASK 0x1 #define AWB2_MONO_MASK_SFT (0x1 << 8) #define AWB2_WR_SIGN_SFT 6 #define AWB2_WR_SIGN_MASK 0x1 #define AWB2_WR_SIGN_MASK_SFT (0x1 << 6) #define AWB2_NORMAL_MODE_SFT 5 #define AWB2_NORMAL_MODE_MASK 0x1 #define AWB2_NORMAL_MODE_MASK_SFT (0x1 << 5) #define AWB2_HALIGN_SFT 4 #define AWB2_HALIGN_MASK 0x1 #define AWB2_HALIGN_MASK_SFT (0x1 << 4) #define AWB2_HD_MODE_SFT 0 #define AWB2_HD_MODE_MASK 0x3 #define AWB2_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL_CON0 */ #define VUL_MODE_SFT 24 #define VUL_MODE_MASK 0xf #define VUL_MODE_MASK_SFT (0xf << 24) #define VUL_SW_CLEAR_BUF_FULL_SFT 15 #define VUL_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL_R_MONO_SFT 9 #define VUL_R_MONO_MASK 0x1 #define VUL_R_MONO_MASK_SFT (0x1 << 9) #define VUL_MONO_SFT 8 #define VUL_MONO_MASK 0x1 #define VUL_MONO_MASK_SFT (0x1 << 8) #define VUL_WR_SIGN_SFT 6 #define VUL_WR_SIGN_MASK 0x1 #define VUL_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL_NORMAL_MODE_SFT 5 #define VUL_NORMAL_MODE_MASK 0x1 #define VUL_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL_HALIGN_SFT 4 #define VUL_HALIGN_MASK 0x1 #define VUL_HALIGN_MASK_SFT (0x1 << 4) #define VUL_HD_MODE_SFT 0 #define VUL_HD_MODE_MASK 0x3 #define VUL_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL12_CON0 */ #define VUL12_MODE_SFT 24 #define VUL12_MODE_MASK 0xf #define VUL12_MODE_MASK_SFT (0xf << 24) #define VUL12_SW_CLEAR_BUF_FULL_SFT 15 #define VUL12_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL12_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL12_4CH_EN_SFT 11 #define VUL12_4CH_EN_MASK 0x1 #define VUL12_4CH_EN_MASK_SFT (0x1 << 11) #define VUL12_R_MONO_SFT 9 #define VUL12_R_MONO_MASK 0x1 #define VUL12_R_MONO_MASK_SFT (0x1 << 9) #define VUL12_MONO_SFT 8 #define VUL12_MONO_MASK 0x1 #define VUL12_MONO_MASK_SFT (0x1 << 8) #define VUL12_WR_SIGN_SFT 6 #define VUL12_WR_SIGN_MASK 0x1 #define VUL12_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL12_NORMAL_MODE_SFT 5 #define VUL12_NORMAL_MODE_MASK 0x1 #define VUL12_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL12_HALIGN_SFT 4 #define VUL12_HALIGN_MASK 0x1 #define VUL12_HALIGN_MASK_SFT (0x1 << 4) #define VUL12_HD_MODE_SFT 0 #define VUL12_HD_MODE_MASK 0x3 #define VUL12_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL2_CON0 */ #define VUL2_MODE_SFT 24 #define VUL2_MODE_MASK 0xf #define VUL2_MODE_MASK_SFT (0xf << 24) #define VUL2_SW_CLEAR_BUF_FULL_SFT 15 #define VUL2_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL2_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL2_R_MONO_SFT 9 #define VUL2_R_MONO_MASK 0x1 #define VUL2_R_MONO_MASK_SFT (0x1 << 9) #define VUL2_MONO_SFT 8 #define VUL2_MONO_MASK 0x1 #define VUL2_MONO_MASK_SFT (0x1 << 8) #define VUL2_WR_SIGN_SFT 6 #define VUL2_WR_SIGN_MASK 0x1 #define VUL2_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL2_NORMAL_MODE_SFT 5 #define VUL2_NORMAL_MODE_MASK 0x1 #define VUL2_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL2_HALIGN_SFT 4 #define VUL2_HALIGN_MASK 0x1 #define VUL2_HALIGN_MASK_SFT (0x1 << 4) #define VUL2_HD_MODE_SFT 0 #define VUL2_HD_MODE_MASK 0x3 #define VUL2_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL3_CON0 */ #define VUL3_MODE_SFT 24 #define VUL3_MODE_MASK 0xf #define VUL3_MODE_MASK_SFT (0xf << 24) #define VUL3_SW_CLEAR_BUF_FULL_SFT 15 #define VUL3_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL3_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL3_R_MONO_SFT 9 #define VUL3_R_MONO_MASK 0x1 #define VUL3_R_MONO_MASK_SFT (0x1 << 9) #define VUL3_MONO_SFT 8 #define VUL3_MONO_MASK 0x1 #define VUL3_MONO_MASK_SFT (0x1 << 8) #define VUL3_WR_SIGN_SFT 6 #define VUL3_WR_SIGN_MASK 0x1 #define VUL3_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL3_NORMAL_MODE_SFT 5 #define VUL3_NORMAL_MODE_MASK 0x1 #define VUL3_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL3_HALIGN_SFT 4 #define VUL3_HALIGN_MASK 0x1 #define VUL3_HALIGN_MASK_SFT (0x1 << 4) #define VUL3_HD_MODE_SFT 0 #define VUL3_HD_MODE_MASK 0x3 #define VUL3_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL4_CON0 */ #define VUL4_MODE_SFT 24 #define VUL4_MODE_MASK 0xf #define VUL4_MODE_MASK_SFT (0xf << 24) #define VUL4_SW_CLEAR_BUF_FULL_SFT 15 #define VUL4_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL4_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL4_R_MONO_SFT 9 #define VUL4_R_MONO_MASK 0x1 #define VUL4_R_MONO_MASK_SFT (0x1 << 9) #define VUL4_MONO_SFT 8 #define VUL4_MONO_MASK 0x1 #define VUL4_MONO_MASK_SFT (0x1 << 8) #define VUL4_WR_SIGN_SFT 6 #define VUL4_WR_SIGN_MASK 0x1 #define VUL4_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL4_NORMAL_MODE_SFT 5 #define VUL4_NORMAL_MODE_MASK 0x1 #define VUL4_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL4_HALIGN_SFT 4 #define VUL4_HALIGN_MASK 0x1 #define VUL4_HALIGN_MASK_SFT (0x1 << 4) #define VUL4_HD_MODE_SFT 0 #define VUL4_HD_MODE_MASK 0x3 #define VUL4_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL5_CON0 */ #define VUL5_MODE_SFT 24 #define VUL5_MODE_MASK 0xf #define VUL5_MODE_MASK_SFT (0xf << 24) #define VUL5_SW_CLEAR_BUF_FULL_SFT 15 #define VUL5_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL5_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL5_R_MONO_SFT 9 #define VUL5_R_MONO_MASK 0x1 #define VUL5_R_MONO_MASK_SFT (0x1 << 9) #define VUL5_MONO_SFT 8 #define VUL5_MONO_MASK 0x1 #define VUL5_MONO_MASK_SFT (0x1 << 8) #define VUL5_WR_SIGN_SFT 6 #define VUL5_WR_SIGN_MASK 0x1 #define VUL5_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL5_NORMAL_MODE_SFT 5 #define VUL5_NORMAL_MODE_MASK 0x1 #define VUL5_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL5_HALIGN_SFT 4 #define VUL5_HALIGN_MASK 0x1 #define VUL5_HALIGN_MASK_SFT (0x1 << 4) #define VUL5_HD_MODE_SFT 0 #define VUL5_HD_MODE_MASK 0x3 #define VUL5_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_VUL6_CON0 */ #define VUL6_MODE_SFT 24 #define VUL6_MODE_MASK 0xf #define VUL6_MODE_MASK_SFT (0xf << 24) #define VUL6_SW_CLEAR_BUF_FULL_SFT 15 #define VUL6_SW_CLEAR_BUF_FULL_MASK 0x1 #define VUL6_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define VUL6_R_MONO_SFT 9 #define VUL6_R_MONO_MASK 0x1 #define VUL6_R_MONO_MASK_SFT (0x1 << 9) #define VUL6_MONO_SFT 8 #define VUL6_MONO_MASK 0x1 #define VUL6_MONO_MASK_SFT (0x1 << 8) #define VUL6_WR_SIGN_SFT 6 #define VUL6_WR_SIGN_MASK 0x1 #define VUL6_WR_SIGN_MASK_SFT (0x1 << 6) #define VUL6_NORMAL_MODE_SFT 5 #define VUL6_NORMAL_MODE_MASK 0x1 #define VUL6_NORMAL_MODE_MASK_SFT (0x1 << 5) #define VUL6_HALIGN_SFT 4 #define VUL6_HALIGN_MASK 0x1 #define VUL6_HALIGN_MASK_SFT (0x1 << 4) #define VUL6_HD_MODE_SFT 0 #define VUL6_HD_MODE_MASK 0x3 #define VUL6_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DAI_CON0 */ #define DAI_MODE_SFT 24 #define DAI_MODE_MASK 0x3 #define DAI_MODE_MASK_SFT (0x3 << 24) #define DAI_SW_CLEAR_BUF_FULL_SFT 15 #define DAI_SW_CLEAR_BUF_FULL_MASK 0x1 #define DAI_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define DAI_DUPLICATE_WR_SFT 10 #define DAI_DUPLICATE_WR_MASK 0x1 #define DAI_DUPLICATE_WR_MASK_SFT (0x1 << 10) #define DAI_MONO_SFT 8 #define DAI_MONO_MASK 0x1 #define DAI_MONO_MASK_SFT (0x1 << 8) #define DAI_WR_SIGN_SFT 6 #define DAI_WR_SIGN_MASK 0x1 #define DAI_WR_SIGN_MASK_SFT (0x1 << 6) #define DAI_NORMAL_MODE_SFT 5 #define DAI_NORMAL_MODE_MASK 0x1 #define DAI_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DAI_HALIGN_SFT 4 #define DAI_HALIGN_MASK 0x1 #define DAI_HALIGN_MASK_SFT (0x1 << 4) #define DAI_HD_MODE_SFT 0 #define DAI_HD_MODE_MASK 0x3 #define DAI_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_MOD_DAI_CON0 */ #define MOD_DAI_MODE_SFT 24 #define MOD_DAI_MODE_MASK 0x3 #define MOD_DAI_MODE_MASK_SFT (0x3 << 24) #define MOD_DAI_SW_CLEAR_BUF_FULL_SFT 15 #define MOD_DAI_SW_CLEAR_BUF_FULL_MASK 0x1 #define MOD_DAI_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define MOD_DAI_DUPLICATE_WR_SFT 10 #define MOD_DAI_DUPLICATE_WR_MASK 0x1 #define MOD_DAI_DUPLICATE_WR_MASK_SFT (0x1 << 10) #define MOD_DAI_MONO_SFT 8 #define MOD_DAI_MONO_MASK 0x1 #define MOD_DAI_MONO_MASK_SFT (0x1 << 8) #define MOD_DAI_WR_SIGN_SFT 6 #define MOD_DAI_WR_SIGN_MASK 0x1 #define MOD_DAI_WR_SIGN_MASK_SFT (0x1 << 6) #define MOD_DAI_NORMAL_MODE_SFT 5 #define MOD_DAI_NORMAL_MODE_MASK 0x1 #define MOD_DAI_NORMAL_MODE_MASK_SFT (0x1 << 5) #define MOD_DAI_HALIGN_SFT 4 #define MOD_DAI_HALIGN_MASK 0x1 #define MOD_DAI_HALIGN_MASK_SFT (0x1 << 4) #define MOD_DAI_HD_MODE_SFT 0 #define MOD_DAI_HD_MODE_MASK 0x3 #define MOD_DAI_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_DAI2_CON0 */ #define DAI2_MODE_SFT 24 #define DAI2_MODE_MASK 0xf #define DAI2_MODE_MASK_SFT (0xf << 24) #define DAI2_SW_CLEAR_BUF_FULL_SFT 15 #define DAI2_SW_CLEAR_BUF_FULL_MASK 0x1 #define DAI2_SW_CLEAR_BUF_FULL_MASK_SFT (0x1 << 15) #define DAI2_DUPLICATE_WR_SFT 10 #define DAI2_DUPLICATE_WR_MASK 0x1 #define DAI2_DUPLICATE_WR_MASK_SFT (0x1 << 10) #define DAI2_MONO_SFT 8 #define DAI2_MONO_MASK 0x1 #define DAI2_MONO_MASK_SFT (0x1 << 8) #define DAI2_WR_SIGN_SFT 6 #define DAI2_WR_SIGN_MASK 0x1 #define DAI2_WR_SIGN_MASK_SFT (0x1 << 6) #define DAI2_NORMAL_MODE_SFT 5 #define DAI2_NORMAL_MODE_MASK 0x1 #define DAI2_NORMAL_MODE_MASK_SFT (0x1 << 5) #define DAI2_HALIGN_SFT 4 #define DAI2_HALIGN_MASK 0x1 #define DAI2_HALIGN_MASK_SFT (0x1 << 4) #define DAI2_HD_MODE_SFT 0 #define DAI2_HD_MODE_MASK 0x3 #define DAI2_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_MEMIF_CON0 */ #define CPU_COMPACT_MODE_SFT 2 #define CPU_COMPACT_MODE_MASK 0x1 #define CPU_COMPACT_MODE_MASK_SFT (0x1 << 2) #define CPU_HD_ALIGN_SFT 1 #define CPU_HD_ALIGN_MASK 0x1 #define CPU_HD_ALIGN_MASK_SFT (0x1 << 1) #define SYSRAM_SIGN_SFT 0 #define SYSRAM_SIGN_MASK 0x1 #define SYSRAM_SIGN_MASK_SFT (0x1 << 0) /* AFE_HDMI_OUT_CON0 */ #define HDMI_CH_NUM_SFT 24 #define HDMI_CH_NUM_MASK 0xf #define HDMI_CH_NUM_MASK_SFT (0xf << 24) #define HDMI_OUT_MINLEN_SFT 20 #define HDMI_OUT_MINLEN_MASK 0xf #define HDMI_OUT_MINLEN_MASK_SFT (0xf << 20) #define HDMI_OUT_MAXLEN_SFT 16 #define HDMI_OUT_MAXLEN_MASK 0xf #define HDMI_OUT_MAXLEN_MASK_SFT (0xf << 16) #define HDMI_OUT_SW_CLEAR_BUF_EMPTY_SFT 15 #define HDMI_OUT_SW_CLEAR_BUF_EMPTY_MASK 0x1 #define HDMI_OUT_SW_CLEAR_BUF_EMPTY_MASK_SFT (0x1 << 15) #define HDMI_OUT_PBUF_SIZE_SFT 12 #define HDMI_OUT_PBUF_SIZE_MASK 0x3 #define HDMI_OUT_PBUF_SIZE_MASK_SFT (0x3 << 12) #define HDMI_OUT_NORMAL_MODE_SFT 5 #define HDMI_OUT_NORMAL_MODE_MASK 0x1 #define HDMI_OUT_NORMAL_MODE_MASK_SFT (0x1 << 5) #define HDMI_OUT_HALIGN_SFT 4 #define HDMI_OUT_HALIGN_MASK 0x1 #define HDMI_OUT_HALIGN_MASK_SFT (0x1 << 4) #define HDMI_OUT_HD_MODE_SFT 0 #define HDMI_OUT_HD_MODE_MASK 0x3 #define HDMI_OUT_HD_MODE_MASK_SFT (0x3 << 0) /* AFE_IRQ_MCU_CON0 */ #define IRQ31_MCU_ON_SFT 31 #define IRQ31_MCU_ON_MASK 0x1 #define IRQ31_MCU_ON_MASK_SFT (0x1 << 31) #define IRQ26_MCU_ON_SFT 26 #define IRQ26_MCU_ON_MASK 0x1 #define IRQ26_MCU_ON_MASK_SFT (0x1 << 26) #define IRQ25_MCU_ON_SFT 25 #define IRQ25_MCU_ON_MASK 0x1 #define IRQ25_MCU_ON_MASK_SFT (0x1 << 25) #define IRQ24_MCU_ON_SFT 24 #define IRQ24_MCU_ON_MASK 0x1 #define IRQ24_MCU_ON_MASK_SFT (0x1 << 24) #define IRQ23_MCU_ON_SFT 23 #define IRQ23_MCU_ON_MASK 0x1 #define IRQ23_MCU_ON_MASK_SFT (0x1 << 23) #define IRQ22_MCU_ON_SFT 22 #define IRQ22_MCU_ON_MASK 0x1 #define IRQ22_MCU_ON_MASK_SFT (0x1 << 22) #define IRQ21_MCU_ON_SFT 21 #define IRQ21_MCU_ON_MASK 0x1 #define IRQ21_MCU_ON_MASK_SFT (0x1 << 21) #define IRQ20_MCU_ON_SFT 20 #define IRQ20_MCU_ON_MASK 0x1 #define IRQ20_MCU_ON_MASK_SFT (0x1 << 20) #define IRQ19_MCU_ON_SFT 19 #define IRQ19_MCU_ON_MASK 0x1 #define IRQ19_MCU_ON_MASK_SFT (0x1 << 19) #define IRQ18_MCU_ON_SFT 18 #define IRQ18_MCU_ON_MASK 0x1 #define IRQ18_MCU_ON_MASK_SFT (0x1 << 18) #define IRQ17_MCU_ON_SFT 17 #define IRQ17_MCU_ON_MASK 0x1 #define IRQ17_MCU_ON_MASK_SFT (0x1 << 17) #define IRQ16_MCU_ON_SFT 16 #define IRQ16_MCU_ON_MASK 0x1 #define IRQ16_MCU_ON_MASK_SFT (0x1 << 16) #define IRQ15_MCU_ON_SFT 15 #define IRQ15_MCU_ON_MASK 0x1 #define IRQ15_MCU_ON_MASK_SFT (0x1 << 15) #define IRQ14_MCU_ON_SFT 14 #define IRQ14_MCU_ON_MASK 0x1 #define IRQ14_MCU_ON_MASK_SFT (0x1 << 14) #define IRQ13_MCU_ON_SFT 13 #define IRQ13_MCU_ON_MASK 0x1 #define IRQ13_MCU_ON_MASK_SFT (0x1 << 13) #define IRQ12_MCU_ON_SFT 12 #define IRQ12_MCU_ON_MASK 0x1 #define IRQ12_MCU_ON_MASK_SFT (0x1 << 12) #define IRQ11_MCU_ON_SFT 11 #define IRQ11_MCU_ON_MASK 0x1 #define IRQ11_MCU_ON_MASK_SFT (0x1 << 11) #define IRQ10_MCU_ON_SFT 10 #define IRQ10_MCU_ON_MASK 0x1 #define IRQ10_MCU_ON_MASK_SFT (0x1 << 10) #define IRQ9_MCU_ON_SFT 9 #define IRQ9_MCU_ON_MASK 0x1 #define IRQ9_MCU_ON_MASK_SFT (0x1 << 9) #define IRQ8_MCU_ON_SFT 8 #define IRQ8_MCU_ON_MASK 0x1 #define IRQ8_MCU_ON_MASK_SFT (0x1 << 8) #define IRQ7_MCU_ON_SFT 7 #define IRQ7_MCU_ON_MASK 0x1 #define IRQ7_MCU_ON_MASK_SFT (0x1 << 7) #define IRQ6_MCU_ON_SFT 6 #define IRQ6_MCU_ON_MASK 0x1 #define IRQ6_MCU_ON_MASK_SFT (0x1 << 6) #define IRQ5_MCU_ON_SFT 5 #define IRQ5_MCU_ON_MASK 0x1 #define IRQ5_MCU_ON_MASK_SFT (0x1 << 5) #define IRQ4_MCU_ON_SFT 4 #define IRQ4_MCU_ON_MASK 0x1 #define IRQ4_MCU_ON_MASK_SFT (0x1 << 4) #define IRQ3_MCU_ON_SFT 3 #define IRQ3_MCU_ON_MASK 0x1 #define IRQ3_MCU_ON_MASK_SFT (0x1 << 3) #define IRQ2_MCU_ON_SFT 2 #define IRQ2_MCU_ON_MASK 0x1 #define IRQ2_MCU_ON_MASK_SFT (0x1 << 2) #define IRQ1_MCU_ON_SFT 1 #define IRQ1_MCU_ON_MASK 0x1 #define IRQ1_MCU_ON_MASK_SFT (0x1 << 1) #define IRQ0_MCU_ON_SFT 0 #define IRQ0_MCU_ON_MASK 0x1 #define IRQ0_MCU_ON_MASK_SFT (0x1 << 0) /* AFE_IRQ_MCU_CON1 */ #define IRQ7_MCU_MODE_SFT 28 #define IRQ7_MCU_MODE_MASK 0xf #define IRQ7_MCU_MODE_MASK_SFT (0xf << 28) #define IRQ6_MCU_MODE_SFT 24 #define IRQ6_MCU_MODE_MASK 0xf #define IRQ6_MCU_MODE_MASK_SFT (0xf << 24) #define IRQ5_MCU_MODE_SFT 20 #define IRQ5_MCU_MODE_MASK 0xf #define IRQ5_MCU_MODE_MASK_SFT (0xf << 20) #define IRQ4_MCU_MODE_SFT 16 #define IRQ4_MCU_MODE_MASK 0xf #define IRQ4_MCU_MODE_MASK_SFT (0xf << 16) #define IRQ3_MCU_MODE_SFT 12 #define IRQ3_MCU_MODE_MASK 0xf #define IRQ3_MCU_MODE_MASK_SFT (0xf << 12) #define IRQ2_MCU_MODE_SFT 8 #define IRQ2_MCU_MODE_MASK 0xf #define IRQ2_MCU_MODE_MASK_SFT (0xf << 8) #define IRQ1_MCU_MODE_SFT 4 #define IRQ1_MCU_MODE_MASK 0xf #define IRQ1_MCU_MODE_MASK_SFT (0xf << 4) #define IRQ0_MCU_MODE_SFT 0 #define IRQ0_MCU_MODE_MASK 0xf #define IRQ0_MCU_MODE_MASK_SFT (0xf << 0) /* AFE_IRQ_MCU_CON2 */ #define IRQ15_MCU_MODE_SFT 28 #define IRQ15_MCU_MODE_MASK 0xf #define IRQ15_MCU_MODE_MASK_SFT (0xf << 28) #define IRQ14_MCU_MODE_SFT 24 #define IRQ14_MCU_MODE_MASK 0xf #define IRQ14_MCU_MODE_MASK_SFT (0xf << 24) #define IRQ13_MCU_MODE_SFT 20 #define IRQ13_MCU_MODE_MASK 0xf #define IRQ13_MCU_MODE_MASK_SFT (0xf << 20) #define IRQ12_MCU_MODE_SFT 16 #define IRQ12_MCU_MODE_MASK 0xf #define IRQ12_MCU_MODE_MASK_SFT (0xf << 16) #define IRQ11_MCU_MODE_SFT 12 #define IRQ11_MCU_MODE_MASK 0xf #define IRQ11_MCU_MODE_MASK_SFT (0xf << 12) #define IRQ10_MCU_MODE_SFT 8 #define IRQ10_MCU_MODE_MASK 0xf #define IRQ10_MCU_MODE_MASK_SFT (0xf << 8) #define IRQ9_MCU_MODE_SFT 4 #define IRQ9_MCU_MODE_MASK 0xf #define IRQ9_MCU_MODE_MASK_SFT (0xf << 4) #define IRQ8_MCU_MODE_SFT 0 #define IRQ8_MCU_MODE_MASK 0xf #define IRQ8_MCU_MODE_MASK_SFT (0xf << 0) /* AFE_IRQ_MCU_CON3 */ #define IRQ23_MCU_MODE_SFT 28 #define IRQ23_MCU_MODE_MASK 0xf #define IRQ23_MCU_MODE_MASK_SFT (0xf << 28) #define IRQ22_MCU_MODE_SFT 24 #define IRQ22_MCU_MODE_MASK 0xf #define IRQ22_MCU_MODE_MASK_SFT (0xf << 24) #define IRQ21_MCU_MODE_SFT 20 #define IRQ21_MCU_MODE_MASK 0xf #define IRQ21_MCU_MODE_MASK_SFT (0xf << 20) #define IRQ20_MCU_MODE_SFT 16 #define IRQ20_MCU_MODE_MASK 0xf #define IRQ20_MCU_MODE_MASK_SFT (0xf << 16) #define IRQ19_MCU_MODE_SFT 12 #define IRQ19_MCU_MODE_MASK 0xf #define IRQ19_MCU_MODE_MASK_SFT (0xf << 12) #define IRQ18_MCU_MODE_SFT 8 #define IRQ18_MCU_MODE_MASK 0xf #define IRQ18_MCU_MODE_MASK_SFT (0xf << 8) #define IRQ17_MCU_MODE_SFT 4 #define IRQ17_MCU_MODE_MASK 0xf #define IRQ17_MCU_MODE_MASK_SFT (0xf << 4) #define IRQ16_MCU_MODE_SFT 0 #define IRQ16_MCU_MODE_MASK 0xf #define IRQ16_MCU_MODE_MASK_SFT (0xf << 0) /* AFE_IRQ_MCU_CON4 */ #define IRQ26_MCU_MODE_SFT 8 #define IRQ26_MCU_MODE_MASK 0xf #define IRQ26_MCU_MODE_MASK_SFT (0xf << 8) #define IRQ25_MCU_MODE_SFT 4 #define IRQ25_MCU_MODE_MASK 0xf #define IRQ25_MCU_MODE_MASK_SFT (0xf << 4) #define IRQ24_MCU_MODE_SFT 0 #define IRQ24_MCU_MODE_MASK 0xf #define IRQ24_MCU_MODE_MASK_SFT (0xf << 0) /* AFE_IRQ_MCU_CLR */ #define IRQ31_MCU_CLR_SFT 31 #define IRQ31_MCU_CLR_MASK 0x1 #define IRQ31_MCU_CLR_MASK_SFT (0x1 << 31) #define IRQ26_MCU_CLR_SFT 26 #define IRQ26_MCU_CLR_MASK 0x1 #define IRQ26_MCU_CLR_MASK_SFT (0x1 << 26) #define IRQ25_MCU_CLR_SFT 25 #define IRQ25_MCU_CLR_MASK 0x1 #define IRQ25_MCU_CLR_MASK_SFT (0x1 << 25) #define IRQ24_MCU_CLR_SFT 24 #define IRQ24_MCU_CLR_MASK 0x1 #define IRQ24_MCU_CLR_MASK_SFT (0x1 << 24) #define IRQ23_MCU_CLR_SFT 23 #define IRQ23_MCU_CLR_MASK 0x1 #define IRQ23_MCU_CLR_MASK_SFT (0x1 << 23) #define IRQ22_MCU_CLR_SFT 22 #define IRQ22_MCU_CLR_MASK 0x1 #define IRQ22_MCU_CLR_MASK_SFT (0x1 << 22) #define IRQ21_MCU_CLR_SFT 21 #define IRQ21_MCU_CLR_MASK 0x1 #define IRQ21_MCU_CLR_MASK_SFT (0x1 << 21) #define IRQ20_MCU_CLR_SFT 20 #define IRQ20_MCU_CLR_MASK 0x1 #define IRQ20_MCU_CLR_MASK_SFT (0x1 << 20) #define IRQ19_MCU_CLR_SFT 19 #define IRQ19_MCU_CLR_MASK 0x1 #define IRQ19_MCU_CLR_MASK_SFT (0x1 << 19) #define IRQ18_MCU_CLR_SFT 18 #define IRQ18_MCU_CLR_MASK 0x1 #define IRQ18_MCU_CLR_MASK_SFT (0x1 << 18) #define IRQ17_MCU_CLR_SFT 17 #define IRQ17_MCU_CLR_MASK 0x1 #define IRQ17_MCU_CLR_MASK_SFT (0x1 << 17) #define IRQ16_MCU_CLR_SFT 16 #define IRQ16_MCU_CLR_MASK 0x1 #define IRQ16_MCU_CLR_MASK_SFT (0x1 << 16) #define IRQ15_MCU_CLR_SFT 15 #define IRQ15_MCU_CLR_MASK 0x1 #define IRQ15_MCU_CLR_MASK_SFT (0x1 << 15) #define IRQ14_MCU_CLR_SFT 14 #define IRQ14_MCU_CLR_MASK 0x1 #define IRQ14_MCU_CLR_MASK_SFT (0x1 << 14) #define IRQ13_MCU_CLR_SFT 13 #define IRQ13_MCU_CLR_MASK 0x1 #define IRQ13_MCU_CLR_MASK_SFT (0x1 << 13) #define IRQ12_MCU_CLR_SFT 12 #define IRQ12_MCU_CLR_MASK 0x1 #define IRQ12_MCU_CLR_MASK_SFT (0x1 << 12) #define IRQ11_MCU_CLR_SFT 11 #define IRQ11_MCU_CLR_MASK 0x1 #define IRQ11_MCU_CLR_MASK_SFT (0x1 << 11) #define IRQ10_MCU_CLR_SFT 10 #define IRQ10_MCU_CLR_MASK 0x1 #define IRQ10_MCU_CLR_MASK_SFT (0x1 << 10) #define IRQ9_MCU_CLR_SFT 9 #define IRQ9_MCU_CLR_MASK 0x1 #define IRQ9_MCU_CLR_MASK_SFT (0x1 << 9) #define IRQ8_MCU_CLR_SFT 8 #define IRQ8_MCU_CLR_MASK 0x1 #define IRQ8_MCU_CLR_MASK_SFT (0x1 << 8) #define IRQ7_MCU_CLR_SFT 7 #define IRQ7_MCU_CLR_MASK 0x1 #define IRQ7_MCU_CLR_MASK_SFT (0x1 << 7) #define IRQ6_MCU_CLR_SFT 6 #define IRQ6_MCU_CLR_MASK 0x1 #define IRQ6_MCU_CLR_MASK_SFT (0x1 << 6) #define IRQ5_MCU_CLR_SFT 5 #define IRQ5_MCU_CLR_MASK 0x1 #define IRQ5_MCU_CLR_MASK_SFT (0x1 << 5) #define IRQ4_MCU_CLR_SFT 4 #define IRQ4_MCU_CLR_MASK 0x1 #define IRQ4_MCU_CLR_MASK_SFT (0x1 << 4) #define IRQ3_MCU_CLR_SFT 3 #define IRQ3_MCU_CLR_MASK 0x1 #define IRQ3_MCU_CLR_MASK_SFT (0x1 << 3) #define IRQ2_MCU_CLR_SFT 2 #define IRQ2_MCU_CLR_MASK 0x1 #define IRQ2_MCU_CLR_MASK_SFT (0x1 << 2) #define IRQ1_MCU_CLR_SFT 1 #define IRQ1_MCU_CLR_MASK 0x1 #define IRQ1_MCU_CLR_MASK_SFT (0x1 << 1) #define IRQ0_MCU_CLR_SFT 0 #define IRQ0_MCU_CLR_MASK 0x1 #define IRQ0_MCU_CLR_MASK_SFT (0x1 << 0) /* AFE_IRQ_MCU_EN */ #define IRQ31_MCU_EN_SFT 31 #define IRQ30_MCU_EN_SFT 30 #define IRQ29_MCU_EN_SFT 29 #define IRQ28_MCU_EN_SFT 28 #define IRQ27_MCU_EN_SFT 27 #define IRQ26_MCU_EN_SFT 26 #define IRQ25_MCU_EN_SFT 25 #define IRQ24_MCU_EN_SFT 24 #define IRQ23_MCU_EN_SFT 23 #define IRQ22_MCU_EN_SFT 22 #define IRQ21_MCU_EN_SFT 21 #define IRQ20_MCU_EN_SFT 20 #define IRQ19_MCU_EN_SFT 19 #define IRQ18_MCU_EN_SFT 18 #define IRQ17_MCU_EN_SFT 17 #define IRQ16_MCU_EN_SFT 16 #define IRQ15_MCU_EN_SFT 15 #define IRQ14_MCU_EN_SFT 14 #define IRQ13_MCU_EN_SFT 13 #define IRQ12_MCU_EN_SFT 12 #define IRQ11_MCU_EN_SFT 11 #define IRQ10_MCU_EN_SFT 10 #define IRQ9_MCU_EN_SFT 9 #define IRQ8_MCU_EN_SFT 8 #define IRQ7_MCU_EN_SFT 7 #define IRQ6_MCU_EN_SFT 6 #define IRQ5_MCU_EN_SFT 5 #define IRQ4_MCU_EN_SFT 4 #define IRQ3_MCU_EN_SFT 3 #define IRQ2_MCU_EN_SFT 2 #define IRQ1_MCU_EN_SFT 1 #define IRQ0_MCU_EN_SFT 0 /* AFE_IRQ_MCU_SCP_EN */ #define IRQ31_MCU_SCP_EN_SFT 31 #define IRQ30_MCU_SCP_EN_SFT 30 #define IRQ29_MCU_SCP_EN_SFT 29 #define IRQ28_MCU_SCP_EN_SFT 28 #define IRQ27_MCU_SCP_EN_SFT 27 #define IRQ26_MCU_SCP_EN_SFT 26 #define IRQ25_MCU_SCP_EN_SFT 25 #define IRQ24_MCU_SCP_EN_SFT 24 #define IRQ23_MCU_SCP_EN_SFT 23 #define IRQ22_MCU_SCP_EN_SFT 22 #define IRQ21_MCU_SCP_EN_SFT 21 #define IRQ20_MCU_SCP_EN_SFT 20 #define IRQ19_MCU_SCP_EN_SFT 19 #define IRQ18_MCU_SCP_EN_SFT 18 #define IRQ17_MCU_SCP_EN_SFT 17 #define IRQ16_MCU_SCP_EN_SFT 16 #define IRQ15_MCU_SCP_EN_SFT 15 #define IRQ14_MCU_SCP_EN_SFT 14 #define IRQ13_MCU_SCP_EN_SFT 13 #define IRQ12_MCU_SCP_EN_SFT 12 #define IRQ11_MCU_SCP_EN_SFT 11 #define IRQ10_MCU_SCP_EN_SFT 10 #define IRQ9_MCU_SCP_EN_SFT 9 #define IRQ8_MCU_SCP_EN_SFT 8 #define IRQ7_MCU_SCP_EN_SFT 7 #define IRQ6_MCU_SCP_EN_SFT 6 #define IRQ5_MCU_SCP_EN_SFT 5 #define IRQ4_MCU_SCP_EN_SFT 4 #define IRQ3_MCU_SCP_EN_SFT 3 #define IRQ2_MCU_SCP_EN_SFT 2 #define IRQ1_MCU_SCP_EN_SFT 1 #define IRQ0_MCU_SCP_EN_SFT 0 /* AFE_TDM_CON1 */ #define TDM_EN_SFT 0 #define TDM_EN_MASK 0x1 #define TDM_EN_MASK_SFT (0x1 << 0) #define LRCK_INVERSE_SFT 2 #define LRCK_INVERSE_MASK 0x1 #define LRCK_INVERSE_MASK_SFT (0x1 << 2) #define DELAY_DATA_SFT 3 #define DELAY_DATA_MASK 0x1 #define DELAY_DATA_MASK_SFT (0x1 << 3) #define LEFT_ALIGN_SFT 4 #define LEFT_ALIGN_MASK 0x1 #define LEFT_ALIGN_MASK_SFT (0x1 << 4) #define WLEN_SFT 8 #define WLEN_MASK 0x3 #define WLEN_MASK_SFT (0x3 << 8) #define CHANNEL_NUM_SFT 10 #define CHANNEL_NUM_MASK 0x3 #define CHANNEL_NUM_MASK_SFT (0x3 << 10) #define CHANNEL_BCK_CYCLES_SFT 12 #define CHANNEL_BCK_CYCLES_MASK 0x3 #define CHANNEL_BCK_CYCLES_MASK_SFT (0x3 << 12) #define DAC_BIT_NUM_SFT 16 #define DAC_BIT_NUM_MASK 0x1f #define DAC_BIT_NUM_MASK_SFT (0x1f << 16) #define LRCK_TDM_WIDTH_SFT 24 #define LRCK_TDM_WIDTH_MASK 0xff #define LRCK_TDM_WIDTH_MASK_SFT (0xff << 24) /* AFE_TDM_CON2 */ #define ST_CH_PAIR_SOUT0_SFT 0 #define ST_CH_PAIR_SOUT0_MASK 0x7 #define ST_CH_PAIR_SOUT0_MASK_SFT (0x7 << 0) #define ST_CH_PAIR_SOUT1_SFT 4 #define ST_CH_PAIR_SOUT1_MASK 0x7 #define ST_CH_PAIR_SOUT1_MASK_SFT (0x7 << 4) #define ST_CH_PAIR_SOUT2_SFT 8 #define ST_CH_PAIR_SOUT2_MASK 0x7 #define ST_CH_PAIR_SOUT2_MASK_SFT (0x7 << 8) #define ST_CH_PAIR_SOUT3_SFT 12 #define ST_CH_PAIR_SOUT3_MASK 0x7 #define ST_CH_PAIR_SOUT3_MASK_SFT (0x7 << 12) #define TDM_FIX_VALUE_SEL_SFT 16 #define TDM_FIX_VALUE_SEL_MASK 0x1 #define TDM_FIX_VALUE_SEL_MASK_SFT (0x1 << 16) #define TDM_I2S_LOOPBACK_SFT 20 #define TDM_I2S_LOOPBACK_MASK 0x1 #define TDM_I2S_LOOPBACK_MASK_SFT (0x1 << 20) #define TDM_I2S_LOOPBACK_CH_SFT 21 #define TDM_I2S_LOOPBACK_CH_MASK 0x3 #define TDM_I2S_LOOPBACK_CH_MASK_SFT (0x3 << 21) #define TDM_FIX_VALUE_SFT 24 #define TDM_FIX_VALUE_MASK 0xff #define TDM_FIX_VALUE_MASK_SFT (0xff << 24) /* AFE_HDMI_CONN0 */ #define HDMI_O_7_SFT 21 #define HDMI_O_7_MASK 0x7 #define HDMI_O_7_MASK_SFT (0x7 << 21) #define HDMI_O_6_SFT 18 #define HDMI_O_6_MASK 0x7 #define HDMI_O_6_MASK_SFT (0x7 << 18) #define HDMI_O_5_SFT 15 #define HDMI_O_5_MASK 0x7 #define HDMI_O_5_MASK_SFT (0x7 << 15) #define HDMI_O_4_SFT 12 #define HDMI_O_4_MASK 0x7 #define HDMI_O_4_MASK_SFT (0x7 << 12) #define HDMI_O_3_SFT 9 #define HDMI_O_3_MASK 0x7 #define HDMI_O_3_MASK_SFT (0x7 << 9) #define HDMI_O_2_SFT 6 #define HDMI_O_2_MASK 0x7 #define HDMI_O_2_MASK_SFT (0x7 << 6) #define HDMI_O_1_SFT 3 #define HDMI_O_1_MASK 0x7 #define HDMI_O_1_MASK_SFT (0x7 << 3) #define HDMI_O_0_SFT 0 #define HDMI_O_0_MASK 0x7 #define HDMI_O_0_MASK_SFT (0x7 << 0) /* AFE_AUD_PAD_TOP */ #define AUD_PAD_TOP_MON_SFT 15 #define AUD_PAD_TOP_MON_MASK 0x1ffff #define AUD_PAD_TOP_MON_MASK_SFT (0x1ffff << 15) #define AUD_PAD_TOP_FIFO_RSP_SFT 4 #define AUD_PAD_TOP_FIFO_RSP_MASK 0xf #define AUD_PAD_TOP_FIFO_RSP_MASK_SFT (0xf << 4) #define RG_RX_PROTOCOL2_SFT 3 #define RG_RX_PROTOCOL2_MASK 0x1 #define RG_RX_PROTOCOL2_MASK_SFT (0x1 << 3) #define RESERVDED_01_SFT 1 #define RESERVDED_01_MASK 0x3 #define RESERVDED_01_MASK_SFT (0x3 << 1) #define RG_RX_FIFO_ON_SFT 0 #define RG_RX_FIFO_ON_MASK 0x1 #define RG_RX_FIFO_ON_MASK_SFT (0x1 << 0) /* AFE_ADDA_MTKAIF_SYNCWORD_CFG */ #define RG_ADDA6_MTKAIF_RX_SYNC_WORD2_DISABLE_SFT 23 #define RG_ADDA6_MTKAIF_RX_SYNC_WORD2_DISABLE_MASK 0x1 #define RG_ADDA6_MTKAIF_RX_SYNC_WORD2_DISABLE_MASK_SFT (0x1 << 23) /* AFE_ADDA_MTKAIF_RX_CFG0 */ #define MTKAIF_RXIF_VOICE_MODE_SFT 20 #define MTKAIF_RXIF_VOICE_MODE_MASK 0xf #define MTKAIF_RXIF_VOICE_MODE_MASK_SFT (0xf << 20) #define MTKAIF_RXIF_DETECT_ON_SFT 16 #define MTKAIF_RXIF_DETECT_ON_MASK 0x1 #define MTKAIF_RXIF_DETECT_ON_MASK_SFT (0x1 << 16) #define MTKAIF_RXIF_DATA_BIT_SFT 8 #define MTKAIF_RXIF_DATA_BIT_MASK 0x7 #define MTKAIF_RXIF_DATA_BIT_MASK_SFT (0x7 << 8) #define MTKAIF_RXIF_FIFO_RSP_SFT 4 #define MTKAIF_RXIF_FIFO_RSP_MASK 0x7 #define MTKAIF_RXIF_FIFO_RSP_MASK_SFT (0x7 << 4) #define MTKAIF_RXIF_DATA_MODE_SFT 0 #define MTKAIF_RXIF_DATA_MODE_MASK 0x1 #define MTKAIF_RXIF_DATA_MODE_MASK_SFT (0x1 << 0) /* GENERAL_ASRC_MODE */ #define GENERAL2_ASRCOUT_MODE_SFT 12 #define GENERAL2_ASRCOUT_MODE_MASK 0xf #define GENERAL2_ASRCOUT_MODE_MASK_SFT (0xf << 12) #define GENERAL2_ASRCIN_MODE_SFT 8 #define GENERAL2_ASRCIN_MODE_MASK 0xf #define GENERAL2_ASRCIN_MODE_MASK_SFT (0xf << 8) #define GENERAL1_ASRCOUT_MODE_SFT 4 #define GENERAL1_ASRCOUT_MODE_MASK 0xf #define GENERAL1_ASRCOUT_MODE_MASK_SFT (0xf << 4) #define GENERAL1_ASRCIN_MODE_SFT 0 #define GENERAL1_ASRCIN_MODE_MASK 0xf #define GENERAL1_ASRCIN_MODE_MASK_SFT (0xf << 0) /* GENERAL_ASRC_EN_ON */ #define GENERAL2_ASRC_EN_ON_SFT 1 #define GENERAL2_ASRC_EN_ON_MASK 0x1 #define GENERAL2_ASRC_EN_ON_MASK_SFT (0x1 << 1) #define GENERAL1_ASRC_EN_ON_SFT 0 #define GENERAL1_ASRC_EN_ON_MASK 0x1 #define GENERAL1_ASRC_EN_ON_MASK_SFT (0x1 << 0) /* AFE_GENERAL1_ASRC_2CH_CON0 */ #define G_SRC_CHSET_STR_CLR_SFT 4 #define G_SRC_CHSET_STR_CLR_MASK 0x1 #define G_SRC_CHSET_STR_CLR_MASK_SFT (0x1 << 4) #define G_SRC_CHSET_ON_SFT 2 #define G_SRC_CHSET_ON_MASK 0x1 #define G_SRC_CHSET_ON_MASK_SFT (0x1 << 2) #define G_SRC_COEFF_SRAM_CTRL_SFT 1 #define G_SRC_COEFF_SRAM_CTRL_MASK 0x1 #define G_SRC_COEFF_SRAM_CTRL_MASK_SFT (0x1 << 1) #define G_SRC_ASM_ON_SFT 0 #define G_SRC_ASM_ON_MASK 0x1 #define G_SRC_ASM_ON_MASK_SFT (0x1 << 0) /* AFE_GENERAL1_ASRC_2CH_CON3 */ #define G_SRC_ASM_FREQ_4_SFT 0 #define G_SRC_ASM_FREQ_4_MASK 0xffffff #define G_SRC_ASM_FREQ_4_MASK_SFT (0xffffff << 0) /* AFE_GENERAL1_ASRC_2CH_CON4 */ #define G_SRC_ASM_FREQ_5_SFT 0 #define G_SRC_ASM_FREQ_5_MASK 0xffffff #define G_SRC_ASM_FREQ_5_MASK_SFT (0xffffff << 0) /* AFE_GENERAL1_ASRC_2CH_CON13 */ #define G_SRC_COEFF_SRAM_ADR_SFT 0 #define G_SRC_COEFF_SRAM_ADR_MASK 0x3f #define G_SRC_COEFF_SRAM_ADR_MASK_SFT (0x3f << 0) /* AFE_GENERAL1_ASRC_2CH_CON2 */ #define G_SRC_CHSET_O16BIT_SFT 19 #define G_SRC_CHSET_O16BIT_MASK 0x1 #define G_SRC_CHSET_O16BIT_MASK_SFT (0x1 << 19) #define G_SRC_CHSET_CLR_IIR_HISTORY_SFT 17 #define G_SRC_CHSET_CLR_IIR_HISTORY_MASK 0x1 #define G_SRC_CHSET_CLR_IIR_HISTORY_MASK_SFT (0x1 << 17) #define G_SRC_CHSET_IS_MONO_SFT 16 #define G_SRC_CHSET_IS_MONO_MASK 0x1 #define G_SRC_CHSET_IS_MONO_MASK_SFT (0x1 << 16) #define G_SRC_CHSET_IIR_EN_SFT 11 #define G_SRC_CHSET_IIR_EN_MASK 0x1 #define G_SRC_CHSET_IIR_EN_MASK_SFT (0x1 << 11) #define G_SRC_CHSET_IIR_STAGE_SFT 8 #define G_SRC_CHSET_IIR_STAGE_MASK 0x7 #define G_SRC_CHSET_IIR_STAGE_MASK_SFT (0x7 << 8) #define G_SRC_CHSET_STR_CLR_RU_SFT 5 #define G_SRC_CHSET_STR_CLR_RU_MASK 0x1 #define G_SRC_CHSET_STR_CLR_RU_MASK_SFT (0x1 << 5) #define G_SRC_CHSET_ON_SFT 2 #define G_SRC_CHSET_ON_MASK 0x1 #define G_SRC_CHSET_ON_MASK_SFT (0x1 << 2) #define G_SRC_COEFF_SRAM_CTRL_SFT 1 #define G_SRC_COEFF_SRAM_CTRL_MASK 0x1 #define G_SRC_COEFF_SRAM_CTRL_MASK_SFT (0x1 << 1) #define G_SRC_ASM_ON_SFT 0 #define G_SRC_ASM_ON_MASK 0x1 #define G_SRC_ASM_ON_MASK_SFT (0x1 << 0) /* AFE_ADDA_DL_SDM_AUTO_RESET_CON */ #define ADDA_SDM_AUTO_RESET_ONOFF_SFT 31 #define ADDA_SDM_AUTO_RESET_ONOFF_MASK 0x1 #define ADDA_SDM_AUTO_RESET_ONOFF_MASK_SFT (0x1 << 31) /* AFE_ADDA_3RD_DAC_DL_SDM_AUTO_RESET_CON */ #define ADDA_3RD_DAC_SDM_AUTO_RESET_ONOFF_SFT 31 #define ADDA_3RD_DAC_SDM_AUTO_RESET_ONOFF_MASK 0x1 #define ADDA_3RD_DAC_SDM_AUTO_RESET_ONOFF_MASK_SFT (0x1 << 31) /* AFE_TINY_CONN0 */ #define O_3_CFG_SFT 24 #define O_3_CFG_MASK 0x1f #define O_3_CFG_MASK_SFT (0x1f << 24) #define O_2_CFG_SFT 16 #define O_2_CFG_MASK 0x1f #define O_2_CFG_MASK_SFT (0x1f << 16) #define O_1_CFG_SFT 8 #define O_1_CFG_MASK 0x1f #define O_1_CFG_MASK_SFT (0x1f << 8) #define O_0_CFG_SFT 0 #define O_0_CFG_MASK 0x1f #define O_0_CFG_MASK_SFT (0x1f << 0) /* AFE_TINY_CONN5 */ #define O_23_CFG_SFT 24 #define O_23_CFG_MASK 0x1f #define O_23_CFG_MASK_SFT (0x1f << 24) #define O_22_CFG_SFT 16 #define O_22_CFG_MASK 0x1f #define O_22_CFG_MASK_SFT (0x1f << 16) #define O_21_CFG_SFT 8 #define O_21_CFG_MASK 0x1f #define O_21_CFG_MASK_SFT (0x1f << 8) #define O_20_CFG_SFT 0 #define O_20_CFG_MASK 0x1f #define O_20_CFG_MASK_SFT (0x1f << 0) /* AFE_MEMIF_CONN */ #define VUL6_USE_TINY_SFT 8 #define VUL6_USE_TINY_MASK 1 #define VUL6_USE_TINY_MASK_SFT (0x1 << 8) #define VUL5_USE_TINY_SFT 7 #define VUL5_USE_TINY_MASK 1 #define VUL5_USE_TINY_MASK_SFT (0x1 << 7) #define VUL4_USE_TINY_SFT 6 #define VUL4_USE_TINY_MASK 1 #define VUL4_USE_TINY_MASK_SFT (0x1 << 6) #define VUL3_USE_TINY_SFT 5 #define VUL3_USE_TINY_MASK 1 #define VUL3_USE_TINY_MASK_SFT (0x1 << 5) #define AWB2_USE_TINY_SFT 4 #define AWB2_USE_TINY_MASK 1 #define AWB2_USE_TINY_MASK_SFT (0x1 << 4) #define AWB_USE_TINY_SFT 3 #define AWB_USE_TINY_MASK 1 #define AWB_USE_TINY_MASK_SFT (0x1 << 3) #define VUL12_USE_TINY_SFT 2 #define VUL12_USE_TINY_MASK 1 #define VUL12_USE_TINY_MASK_SFT (0x1 << 2) #define VUL2_USE_TINY_SFT 1 #define VUL2_USE_TINY_MASK 1 #define VUL2_USE_TINY_MASK_SFT (0x1 << 1) #define VUL1_USE_TINY_SFT 0 #define VUL1_USE_TINY_MASK 1 #define VUL1_USE_TINY_MASK_SFT (0x1 << 0) /* AFE_ASRC_2CH_CON0 */ #define CON0_CHSET_STR_CLR_SFT 4 #define CON0_CHSET_STR_CLR_MASK 1 #define CON0_CHSET_STR_CLR_MASK_SFT (0x1 << 4) #define CON0_ASM_ON_SFT 0 #define CON0_ASM_ON_MASK 1 #define CON0_ASM_ON_MASK_SFT (0x1 << 0) /* AFE_ASRC_2CH_CON5 */ #define CALI_EN_SFT 0 #define CALI_EN_MASK 1 #define CALI_EN_MASK_SFT (0x1 << 0) #define AUDIO_TOP_CON0 0x0000 #define AUDIO_TOP_CON1 0x0004 #define AUDIO_TOP_CON2 0x0008 #define AUDIO_TOP_CON3 0x000c #define AFE_DAC_CON0 0x0010 #define AFE_I2S_CON 0x0018 #define AFE_CONN0 0x0020 #define AFE_CONN1 0x0024 #define AFE_CONN2 0x0028 #define AFE_CONN3 0x002c #define AFE_CONN4 0x0030 #define AFE_I2S_CON1 0x0034 #define AFE_I2S_CON2 0x0038 #define AFE_I2S_CON3 0x0040 #define AFE_CONN5 0x0044 #define AFE_CONN_24BIT 0x0048 #define AFE_DL1_CON0 0x004c #define AFE_DL1_BASE_MSB 0x0050 #define AFE_DL1_BASE 0x0054 #define AFE_DL1_CUR_MSB 0x0058 #define AFE_DL1_CUR 0x005c #define AFE_DL1_END_MSB 0x0060 #define AFE_DL1_END 0x0064 #define AFE_DL2_CON0 0x0068 #define AFE_DL2_BASE_MSB 0x006c #define AFE_DL2_BASE 0x0070 #define AFE_DL2_CUR_MSB 0x0074 #define AFE_DL2_CUR 0x0078 #define AFE_DL2_END_MSB 0x007c #define AFE_DL2_END 0x0080 #define AFE_DL3_CON0 0x0084 #define AFE_DL3_BASE_MSB 0x0088 #define AFE_DL3_BASE 0x008c #define AFE_DL3_CUR_MSB 0x0090 #define AFE_DL3_CUR 0x0094 #define AFE_DL3_END_MSB 0x0098 #define AFE_DL3_END 0x009c #define AFE_CONN6 0x00bc #define AFE_DL4_CON0 0x00cc #define AFE_DL4_BASE_MSB 0x00d0 #define AFE_DL4_BASE 0x00d4 #define AFE_DL4_CUR_MSB 0x00d8 #define AFE_DL4_CUR 0x00dc #define AFE_DL4_END_MSB 0x00e0 #define AFE_DL4_END 0x00e4 #define AFE_DL12_CON0 0x00e8 #define AFE_DL12_BASE_MSB 0x00ec #define AFE_DL12_BASE 0x00f0 #define AFE_DL12_CUR_MSB 0x00f4 #define AFE_DL12_CUR 0x00f8 #define AFE_DL12_END_MSB 0x00fc #define AFE_DL12_END 0x0100 #define AFE_ADDA_DL_SRC2_CON0 0x0108 #define AFE_ADDA_DL_SRC2_CON1 0x010c #define AFE_ADDA_UL_SRC_CON0 0x0114 #define AFE_ADDA_UL_SRC_CON1 0x0118 #define AFE_ADDA_TOP_CON0 0x0120 #define AFE_ADDA_UL_DL_CON0 0x0124 #define AFE_ADDA_SRC_DEBUG 0x012c #define AFE_ADDA_SRC_DEBUG_MON0 0x0130 #define AFE_ADDA_SRC_DEBUG_MON1 0x0134 #define AFE_ADDA_UL_SRC_MON0 0x0148 #define AFE_ADDA_UL_SRC_MON1 0x014c #define AFE_SECURE_CON0 0x0150 #define AFE_SRAM_BOUND 0x0154 #define AFE_SECURE_CON1 0x0158 #define AFE_SECURE_CONN0 0x015c #define AFE_VUL_CON0 0x0170 #define AFE_VUL_BASE_MSB 0x0174 #define AFE_VUL_BASE 0x0178 #define AFE_VUL_CUR_MSB 0x017c #define AFE_VUL_CUR 0x0180 #define AFE_VUL_END_MSB 0x0184 #define AFE_VUL_END 0x0188 #define AFE_ADDA_3RD_DAC_DL_SDM_AUTO_RESET_CON 0x018c #define AFE_ADDA_3RD_DAC_DL_SRC2_CON0 0x0190 #define AFE_ADDA_3RD_DAC_DL_SRC2_CON1 0x0194 #define AFE_ADDA_3RD_DAC_PREDIS_CON0 0x01a0 #define AFE_ADDA_3RD_DAC_PREDIS_CON1 0x01a4 #define AFE_ADDA_3RD_DAC_PREDIS_CON2 0x01a8 #define AFE_ADDA_3RD_DAC_PREDIS_CON3 0x01ac #define AFE_ADDA_3RD_DAC_DL_SDM_DCCOMP_CON 0x01b0 #define AFE_ADDA_3RD_DAC_DL_SDM_TEST 0x01b4 #define AFE_ADDA_3RD_DAC_DL_DC_COMP_CFG0 0x01b8 #define AFE_ADDA_3RD_DAC_DL_DC_COMP_CFG1 0x01bc #define AFE_ADDA_3RD_DAC_DL_SDM_FIFO_MON 0x01c0 #define AFE_ADDA_3RD_DAC_DL_SRC_LCH_MON 0x01c4 #define AFE_ADDA_3RD_DAC_DL_SRC_RCH_MON 0x01c8 #define AFE_ADDA_3RD_DAC_DL_SDM_OUT_MON 0x01cc #define AFE_SIDETONE_DEBUG 0x01d0 #define AFE_SIDETONE_MON 0x01d4 #define AFE_ADDA_3RD_DAC_DL_SDM_DITHER_CON 0x01d8 #define AFE_SINEGEN_CON2 0x01dc #define AFE_SIDETONE_CON0 0x01e0 #define AFE_SIDETONE_COEFF 0x01e4 #define AFE_SIDETONE_CON1 0x01e8 #define AFE_SIDETONE_GAIN 0x01ec #define AFE_SINEGEN_CON0 0x01f0 #define AFE_I2S_MON2 0x01f8 #define AFE_SINEGEN_CON_TDM 0x01fc #define AFE_TOP_CON0 0x0200 #define AFE_VUL2_CON0 0x020c #define AFE_VUL2_BASE_MSB 0x0210 #define AFE_VUL2_BASE 0x0214 #define AFE_VUL2_CUR_MSB 0x0218 #define AFE_VUL2_CUR 0x021c #define AFE_VUL2_END_MSB 0x0220 #define AFE_VUL2_END 0x0224 #define AFE_VUL3_CON0 0x0228 #define AFE_VUL3_BASE_MSB 0x022c #define AFE_VUL3_BASE 0x0230 #define AFE_VUL3_CUR_MSB 0x0234 #define AFE_VUL3_CUR 0x0238 #define AFE_VUL3_END_MSB 0x023c #define AFE_VUL3_END 0x0240 #define AFE_BUSY 0x0244 #define AFE_BUS_CFG 0x0250 #define AFE_ADDA_PREDIS_CON0 0x0260 #define AFE_ADDA_PREDIS_CON1 0x0264 #define AFE_I2S_MON 0x027c #define AFE_ADDA_IIR_COEF_02_01 0x0290 #define AFE_ADDA_IIR_COEF_04_03 0x0294 #define AFE_ADDA_IIR_COEF_06_05 0x0298 #define AFE_ADDA_IIR_COEF_08_07 0x029c #define AFE_ADDA_IIR_COEF_10_09 0x02a0 #define AFE_IRQ_MCU_CON1 0x02e4 #define AFE_IRQ_MCU_CON2 0x02e8 #define AFE_DAC_MON 0x02ec #define AFE_IRQ_MCU_CON3 0x02f0 #define AFE_IRQ_MCU_CON4 0x02f4 #define AFE_IRQ_MCU_CNT0 0x0300 #define AFE_IRQ_MCU_CNT6 0x0304 #define AFE_IRQ_MCU_CNT8 0x0308 #define AFE_IRQ_MCU_DSP2_EN 0x030c #define AFE_IRQ0_MCU_CNT_MON 0x0310 #define AFE_IRQ6_MCU_CNT_MON 0x0314 #define AFE_VUL4_CON0 0x0358 #define AFE_VUL4_BASE_MSB 0x035c #define AFE_VUL4_BASE 0x0360 #define AFE_VUL4_CUR_MSB 0x0364 #define AFE_VUL4_CUR 0x0368 #define AFE_VUL4_END_MSB 0x036c #define AFE_VUL4_END 0x0370 #define AFE_VUL12_CON0 0x0374 #define AFE_VUL12_BASE_MSB 0x0378 #define AFE_VUL12_BASE 0x037c #define AFE_VUL12_CUR_MSB 0x0380 #define AFE_VUL12_CUR 0x0384 #define AFE_VUL12_END_MSB 0x0388 #define AFE_VUL12_END 0x038c #define AFE_HDMI_CONN0 0x0390 #define AFE_IRQ3_MCU_CNT_MON 0x0398 #define AFE_IRQ4_MCU_CNT_MON 0x039c #define AFE_IRQ_MCU_CON0 0x03a0 #define AFE_IRQ_MCU_STATUS 0x03a4 #define AFE_IRQ_MCU_CLR 0x03a8 #define AFE_IRQ_MCU_CNT1 0x03ac #define AFE_IRQ_MCU_CNT2 0x03b0 #define AFE_IRQ_MCU_EN 0x03b4 #define AFE_IRQ_MCU_MON2 0x03b8 #define AFE_IRQ_MCU_CNT5 0x03bc #define AFE_IRQ1_MCU_CNT_MON 0x03c0 #define AFE_IRQ2_MCU_CNT_MON 0x03c4 #define AFE_IRQ5_MCU_CNT_MON 0x03cc #define AFE_IRQ_MCU_DSP_EN 0x03d0 #define AFE_IRQ_MCU_SCP_EN 0x03d4 #define AFE_IRQ_MCU_CNT7 0x03dc #define AFE_IRQ7_MCU_CNT_MON 0x03e0 #define AFE_IRQ_MCU_CNT3 0x03e4 #define AFE_IRQ_MCU_CNT4 0x03e8 #define AFE_IRQ_MCU_CNT11 0x03ec #define AFE_APLL1_TUNER_CFG 0x03f0 #define AFE_APLL2_TUNER_CFG 0x03f4 #define AFE_IRQ_MCU_MISS_CLR 0x03f8 #define AFE_CONN33 0x0408 #define AFE_IRQ_MCU_CNT12 0x040c #define AFE_GAIN1_CON0 0x0410 #define AFE_GAIN1_CON1 0x0414 #define AFE_GAIN1_CON2 0x0418 #define AFE_GAIN1_CON3 0x041c #define AFE_CONN7 0x0420 #define AFE_GAIN1_CUR 0x0424 #define AFE_GAIN2_CON0 0x0428 #define AFE_GAIN2_CON1 0x042c #define AFE_GAIN2_CON2 0x0430 #define AFE_GAIN2_CON3 0x0434 #define AFE_CONN8 0x0438 #define AFE_GAIN2_CUR 0x043c #define AFE_CONN9 0x0440 #define AFE_CONN10 0x0444 #define AFE_CONN11 0x0448 #define AFE_CONN12 0x044c #define AFE_CONN13 0x0450 #define AFE_CONN14 0x0454 #define AFE_CONN15 0x0458 #define AFE_CONN16 0x045c #define AFE_CONN17 0x0460 #define AFE_CONN18 0x0464 #define AFE_CONN19 0x0468 #define AFE_CONN20 0x046c #define AFE_CONN21 0x0470 #define AFE_CONN22 0x0474 #define AFE_CONN23 0x0478 #define AFE_CONN24 0x047c #define AFE_CONN_RS 0x0494 #define AFE_CONN_DI 0x0498 #define AFE_CONN25 0x04b0 #define AFE_CONN26 0x04b4 #define AFE_CONN27 0x04b8 #define AFE_CONN28 0x04bc #define AFE_CONN29 0x04c0 #define AFE_CONN30 0x04c4 #define AFE_CONN31 0x04c8 #define AFE_CONN32 0x04cc #define AFE_SRAM_DELSEL_CON1 0x04f4 #define AFE_CONN56 0x0500 #define AFE_CONN57 0x0504 #define AFE_CONN56_1 0x0510 #define AFE_CONN57_1 0x0514 #define AFE_TINY_CONN2 0x0520 #define AFE_TINY_CONN3 0x0524 #define AFE_TINY_CONN4 0x0528 #define AFE_TINY_CONN5 0x052c #define PCM_INTF_CON1 0x0530 #define PCM_INTF_CON2 0x0538 #define PCM2_INTF_CON 0x053c #define AFE_TDM_CON1 0x0548 #define AFE_TDM_CON2 0x054c #define AFE_I2S_CON6 0x0564 #define AFE_I2S_CON7 0x0568 #define AFE_I2S_CON8 0x056c #define AFE_I2S_CON9 0x0570 #define AFE_CONN34 0x0580 #define FPGA_CFG0 0x05b0 #define FPGA_CFG1 0x05b4 #define FPGA_CFG2 0x05c0 #define FPGA_CFG3 0x05c4 #define AUDIO_TOP_DBG_CON 0x05c8 #define AUDIO_TOP_DBG_MON0 0x05cc #define AUDIO_TOP_DBG_MON1 0x05d0 #define AFE_IRQ8_MCU_CNT_MON 0x05e4 #define AFE_IRQ11_MCU_CNT_MON 0x05e8 #define AFE_IRQ12_MCU_CNT_MON 0x05ec #define AFE_IRQ_MCU_CNT9 0x0600 #define AFE_IRQ_MCU_CNT10 0x0604 #define AFE_IRQ_MCU_CNT13 0x0608 #define AFE_IRQ_MCU_CNT14 0x060c #define AFE_IRQ_MCU_CNT15 0x0610 #define AFE_IRQ_MCU_CNT16 0x0614 #define AFE_IRQ_MCU_CNT17 0x0618 #define AFE_IRQ_MCU_CNT18 0x061c #define AFE_IRQ_MCU_CNT19 0x0620 #define AFE_IRQ_MCU_CNT20 0x0624 #define AFE_IRQ_MCU_CNT21 0x0628 #define AFE_IRQ_MCU_CNT22 0x062c #define AFE_IRQ_MCU_CNT23 0x0630 #define AFE_IRQ_MCU_CNT24 0x0634 #define AFE_IRQ_MCU_CNT25 0x0638 #define AFE_IRQ_MCU_CNT26 0x063c #define AFE_IRQ_MCU_CNT31 0x0640 #define AFE_TINY_CONN6 0x0650 #define AFE_TINY_CONN7 0x0654 #define AFE_IRQ9_MCU_CNT_MON 0x0660 #define AFE_IRQ10_MCU_CNT_MON 0x0664 #define AFE_IRQ13_MCU_CNT_MON 0x0668 #define AFE_IRQ14_MCU_CNT_MON 0x066c #define AFE_IRQ15_MCU_CNT_MON 0x0670 #define AFE_IRQ16_MCU_CNT_MON 0x0674 #define AFE_IRQ17_MCU_CNT_MON 0x0678 #define AFE_IRQ18_MCU_CNT_MON 0x067c #define AFE_IRQ19_MCU_CNT_MON 0x0680 #define AFE_IRQ20_MCU_CNT_MON 0x0684 #define AFE_IRQ21_MCU_CNT_MON 0x0688 #define AFE_IRQ22_MCU_CNT_MON 0x068c #define AFE_IRQ23_MCU_CNT_MON 0x0690 #define AFE_IRQ24_MCU_CNT_MON 0x0694 #define AFE_IRQ25_MCU_CNT_MON 0x0698 #define AFE_IRQ26_MCU_CNT_MON 0x069c #define AFE_IRQ31_MCU_CNT_MON 0x06a0 #define AFE_GENERAL_REG0 0x0800 #define AFE_GENERAL_REG1 0x0804 #define AFE_GENERAL_REG2 0x0808 #define AFE_GENERAL_REG3 0x080c #define AFE_GENERAL_REG4 0x0810 #define AFE_GENERAL_REG5 0x0814 #define AFE_GENERAL_REG6 0x0818 #define AFE_GENERAL_REG7 0x081c #define AFE_GENERAL_REG8 0x0820 #define AFE_GENERAL_REG9 0x0824 #define AFE_GENERAL_REG10 0x0828 #define AFE_GENERAL_REG11 0x082c #define AFE_GENERAL_REG12 0x0830 #define AFE_GENERAL_REG13 0x0834 #define AFE_GENERAL_REG14 0x0838 #define AFE_GENERAL_REG15 0x083c #define AFE_CBIP_CFG0 0x0840 #define AFE_CBIP_MON0 0x0844 #define AFE_CBIP_SLV_MUX_MON0 0x0848 #define AFE_CBIP_SLV_DECODER_MON0 0x084c #define AFE_ADDA6_MTKAIF_MON0 0x0854 #define AFE_ADDA6_MTKAIF_MON1 0x0858 #define AFE_AWB_CON0 0x085c #define AFE_AWB_BASE_MSB 0x0860 #define AFE_AWB_BASE 0x0864 #define AFE_AWB_CUR_MSB 0x0868 #define AFE_AWB_CUR 0x086c #define AFE_AWB_END_MSB 0x0870 #define AFE_AWB_END 0x0874 #define AFE_AWB2_CON0 0x0878 #define AFE_AWB2_BASE_MSB 0x087c #define AFE_AWB2_BASE 0x0880 #define AFE_AWB2_CUR_MSB 0x0884 #define AFE_AWB2_CUR 0x0888 #define AFE_AWB2_END_MSB 0x088c #define AFE_AWB2_END 0x0890 #define AFE_DAI_CON0 0x0894 #define AFE_DAI_BASE_MSB 0x0898 #define AFE_DAI_BASE 0x089c #define AFE_DAI_CUR_MSB 0x08a0 #define AFE_DAI_CUR 0x08a4 #define AFE_DAI_END_MSB 0x08a8 #define AFE_DAI_END 0x08ac #define AFE_DAI2_CON0 0x08b0 #define AFE_DAI2_BASE_MSB 0x08b4 #define AFE_DAI2_BASE 0x08b8 #define AFE_DAI2_CUR_MSB 0x08bc #define AFE_DAI2_CUR 0x08c0 #define AFE_DAI2_END_MSB 0x08c4 #define AFE_DAI2_END 0x08c8 #define AFE_MEMIF_CON0 0x08cc #define AFE_CONN0_1 0x0900 #define AFE_CONN1_1 0x0904 #define AFE_CONN2_1 0x0908 #define AFE_CONN3_1 0x090c #define AFE_CONN4_1 0x0910 #define AFE_CONN5_1 0x0914 #define AFE_CONN6_1 0x0918 #define AFE_CONN7_1 0x091c #define AFE_CONN8_1 0x0920 #define AFE_CONN9_1 0x0924 #define AFE_CONN10_1 0x0928 #define AFE_CONN11_1 0x092c #define AFE_CONN12_1 0x0930 #define AFE_CONN13_1 0x0934 #define AFE_CONN14_1 0x0938 #define AFE_CONN15_1 0x093c #define AFE_CONN16_1 0x0940 #define AFE_CONN17_1 0x0944 #define AFE_CONN18_1 0x0948 #define AFE_CONN19_1 0x094c #define AFE_CONN20_1 0x0950 #define AFE_CONN21_1 0x0954 #define AFE_CONN22_1 0x0958 #define AFE_CONN23_1 0x095c #define AFE_CONN24_1 0x0960 #define AFE_CONN25_1 0x0964 #define AFE_CONN26_1 0x0968 #define AFE_CONN27_1 0x096c #define AFE_CONN28_1 0x0970 #define AFE_CONN29_1 0x0974 #define AFE_CONN30_1 0x0978 #define AFE_CONN31_1 0x097c #define AFE_CONN32_1 0x0980 #define AFE_CONN33_1 0x0984 #define AFE_CONN34_1 0x0988 #define AFE_CONN_RS_1 0x098c #define AFE_CONN_DI_1 0x0990 #define AFE_CONN_24BIT_1 0x0994 #define AFE_CONN_REG 0x0998 #define AFE_CONN35 0x09a0 #define AFE_CONN36 0x09a4 #define AFE_CONN37 0x09a8 #define AFE_CONN38 0x09ac #define AFE_CONN35_1 0x09b0 #define AFE_CONN36_1 0x09b4 #define AFE_CONN37_1 0x09b8 #define AFE_CONN38_1 0x09bc #define AFE_CONN39 0x09c0 #define AFE_CONN40 0x09c4 #define AFE_CONN41 0x09c8 #define AFE_CONN42 0x09cc #define AFE_SGEN_CON_SGEN32 0x09d0 #define AFE_CONN39_1 0x09e0 #define AFE_CONN40_1 0x09e4 #define AFE_CONN41_1 0x09e8 #define AFE_CONN42_1 0x09ec #define AFE_I2S_CON4 0x09f8 #define AFE_ADDA6_TOP_CON0 0x0a80 #define AFE_ADDA6_UL_SRC_CON0 0x0a84 #define AFE_ADDA6_UL_SRC_CON1 0x0a88 #define AFE_ADDA6_SRC_DEBUG 0x0a8c #define AFE_ADDA6_SRC_DEBUG_MON0 0x0a90 #define AFE_ADDA6_ULCF_CFG_02_01 0x0aa0 #define AFE_ADDA6_ULCF_CFG_04_03 0x0aa4 #define AFE_ADDA6_ULCF_CFG_06_05 0x0aa8 #define AFE_ADDA6_ULCF_CFG_08_07 0x0aac #define AFE_ADDA6_ULCF_CFG_10_09 0x0ab0 #define AFE_ADDA6_ULCF_CFG_12_11 0x0ab4 #define AFE_ADDA6_ULCF_CFG_14_13 0x0ab8 #define AFE_ADDA6_ULCF_CFG_16_15 0x0abc #define AFE_ADDA6_ULCF_CFG_18_17 0x0ac0 #define AFE_ADDA6_ULCF_CFG_20_19 0x0ac4 #define AFE_ADDA6_ULCF_CFG_22_21 0x0ac8 #define AFE_ADDA6_ULCF_CFG_24_23 0x0acc #define AFE_ADDA6_ULCF_CFG_26_25 0x0ad0 #define AFE_ADDA6_ULCF_CFG_28_27 0x0ad4 #define AFE_ADDA6_ULCF_CFG_30_29 0x0ad8 #define AFE_ADD6A_UL_SRC_MON0 0x0ae4 #define AFE_ADDA6_UL_SRC_MON1 0x0ae8 #define AFE_TINY_CONN0 0x0af0 #define AFE_TINY_CONN1 0x0af4 #define AFE_CONN43 0x0af8 #define AFE_CONN43_1 0x0afc #define AFE_MOD_DAI_CON0 0x0b00 #define AFE_MOD_DAI_BASE_MSB 0x0b04 #define AFE_MOD_DAI_BASE 0x0b08 #define AFE_MOD_DAI_CUR_MSB 0x0b0c #define AFE_MOD_DAI_CUR 0x0b10 #define AFE_MOD_DAI_END_MSB 0x0b14 #define AFE_MOD_DAI_END 0x0b18 #define AFE_HDMI_OUT_CON0 0x0b1c #define AFE_HDMI_OUT_BASE_MSB 0x0b20 #define AFE_HDMI_OUT_BASE 0x0b24 #define AFE_HDMI_OUT_CUR_MSB 0x0b28 #define AFE_HDMI_OUT_CUR 0x0b2c #define AFE_HDMI_OUT_END_MSB 0x0b30 #define AFE_HDMI_OUT_END 0x0b34 #define AFE_AWB_RCH_MON 0x0b70 #define AFE_AWB_LCH_MON 0x0b74 #define AFE_VUL_RCH_MON 0x0b78 #define AFE_VUL_LCH_MON 0x0b7c #define AFE_VUL12_RCH_MON 0x0b80 #define AFE_VUL12_LCH_MON 0x0b84 #define AFE_VUL2_RCH_MON 0x0b88 #define AFE_VUL2_LCH_MON 0x0b8c #define AFE_DAI_DATA_MON 0x0b90 #define AFE_MOD_DAI_DATA_MON 0x0b94 #define AFE_DAI2_DATA_MON 0x0b98 #define AFE_AWB2_RCH_MON 0x0b9c #define AFE_AWB2_LCH_MON 0x0ba0 #define AFE_VUL3_RCH_MON 0x0ba4 #define AFE_VUL3_LCH_MON 0x0ba8 #define AFE_VUL4_RCH_MON 0x0bac #define AFE_VUL4_LCH_MON 0x0bb0 #define AFE_VUL5_RCH_MON 0x0bb4 #define AFE_VUL5_LCH_MON 0x0bb8 #define AFE_VUL6_RCH_MON 0x0bbc #define AFE_VUL6_LCH_MON 0x0bc0 #define AFE_DL1_RCH_MON 0x0bc4 #define AFE_DL1_LCH_MON 0x0bc8 #define AFE_DL2_RCH_MON 0x0bcc #define AFE_DL2_LCH_MON 0x0bd0 #define AFE_DL12_RCH1_MON 0x0bd4 #define AFE_DL12_LCH1_MON 0x0bd8 #define AFE_DL12_RCH2_MON 0x0bdc #define AFE_DL12_LCH2_MON 0x0be0 #define AFE_DL3_RCH_MON 0x0be4 #define AFE_DL3_LCH_MON 0x0be8 #define AFE_DL4_RCH_MON 0x0bec #define AFE_DL4_LCH_MON 0x0bf0 #define AFE_DL5_RCH_MON 0x0bf4 #define AFE_DL5_LCH_MON 0x0bf8 #define AFE_DL6_RCH_MON 0x0bfc #define AFE_DL6_LCH_MON 0x0c00 #define AFE_DL7_RCH_MON 0x0c04 #define AFE_DL7_LCH_MON 0x0c08 #define AFE_DL8_RCH_MON 0x0c0c #define AFE_DL8_LCH_MON 0x0c10 #define AFE_VUL5_CON0 0x0c14 #define AFE_VUL5_BASE_MSB 0x0c18 #define AFE_VUL5_BASE 0x0c1c #define AFE_VUL5_CUR_MSB 0x0c20 #define AFE_VUL5_CUR 0x0c24 #define AFE_VUL5_END_MSB 0x0c28 #define AFE_VUL5_END 0x0c2c #define AFE_VUL6_CON0 0x0c30 #define AFE_VUL6_BASE_MSB 0x0c34 #define AFE_VUL6_BASE 0x0c38 #define AFE_VUL6_CUR_MSB 0x0c3c #define AFE_VUL6_CUR 0x0c40 #define AFE_VUL6_END_MSB 0x0c44 #define AFE_VUL6_END 0x0c48 #define AFE_ADDA_DL_SDM_DCCOMP_CON 0x0c50 #define AFE_ADDA_DL_SDM_TEST 0x0c54 #define AFE_ADDA_DL_DC_COMP_CFG0 0x0c58 #define AFE_ADDA_DL_DC_COMP_CFG1 0x0c5c #define AFE_ADDA_DL_SDM_FIFO_MON 0x0c60 #define AFE_ADDA_DL_SRC_LCH_MON 0x0c64 #define AFE_ADDA_DL_SRC_RCH_MON 0x0c68 #define AFE_ADDA_DL_SDM_OUT_MON 0x0c6c #define AFE_ADDA_DL_SDM_DITHER_CON 0x0c70 #define AFE_ADDA_DL_SDM_AUTO_RESET_CON 0x0c74 #define AFE_CONNSYS_I2S_CON 0x0c78 #define AFE_CONNSYS_I2S_MON 0x0c7c #define AFE_ASRC_2CH_CON0 0x0c80 #define AFE_ASRC_2CH_CON1 0x0c84 #define AFE_ASRC_2CH_CON2 0x0c88 #define AFE_ASRC_2CH_CON3 0x0c8c #define AFE_ASRC_2CH_CON4 0x0c90 #define AFE_ASRC_2CH_CON5 0x0c94 #define AFE_ASRC_2CH_CON6 0x0c98 #define AFE_ASRC_2CH_CON7 0x0c9c #define AFE_ASRC_2CH_CON8 0x0ca0 #define AFE_ASRC_2CH_CON9 0x0ca4 #define AFE_ASRC_2CH_CON10 0x0ca8 #define AFE_ASRC_2CH_CON12 0x0cb0 #define AFE_ASRC_2CH_CON13 0x0cb4 #define AFE_ADDA6_IIR_COEF_02_01 0x0ce0 #define AFE_ADDA6_IIR_COEF_04_03 0x0ce4 #define AFE_ADDA6_IIR_COEF_06_05 0x0ce8 #define AFE_ADDA6_IIR_COEF_08_07 0x0cec #define AFE_ADDA6_IIR_COEF_10_09 0x0cf0 #define AFE_SE_PROT_SIDEBAND 0x0d38 #define AFE_SE_DOMAIN_SIDEBAND0 0x0d3c #define AFE_ADDA_PREDIS_CON2 0x0d40 #define AFE_ADDA_PREDIS_CON3 0x0d44 #define AFE_MEMIF_CONN 0x0d50 #define AFE_SE_DOMAIN_SIDEBAND1 0x0d54 #define AFE_SE_DOMAIN_SIDEBAND2 0x0d58 #define AFE_SE_DOMAIN_SIDEBAND3 0x0d5c #define AFE_CONN44 0x0d70 #define AFE_CONN45 0x0d74 #define AFE_CONN46 0x0d78 #define AFE_CONN47 0x0d7c #define AFE_CONN44_1 0x0d80 #define AFE_CONN45_1 0x0d84 #define AFE_CONN46_1 0x0d88 #define AFE_CONN47_1 0x0d8c #define AFE_DL9_CUR_MSB 0x0dc0 #define AFE_DL9_CUR 0x0dc4 #define AFE_DL9_END_MSB 0x0dc8 #define AFE_DL9_END 0x0dcc #define AFE_HD_ENGEN_ENABLE 0x0dd0 #define AFE_ADDA_DL_NLE_FIFO_MON 0x0dfc #define AFE_ADDA_MTKAIF_CFG0 0x0e00 #define AFE_ADDA_MTKAIF_SYNCWORD_CFG 0x0e14 #define AFE_ADDA_MTKAIF_RX_CFG0 0x0e20 #define AFE_ADDA_MTKAIF_RX_CFG1 0x0e24 #define AFE_ADDA_MTKAIF_RX_CFG2 0x0e28 #define AFE_ADDA_MTKAIF_MON0 0x0e34 #define AFE_ADDA_MTKAIF_MON1 0x0e38 #define AFE_AUD_PAD_TOP 0x0e40 #define AFE_DL_NLE_R_CFG0 0x0e44 #define AFE_DL_NLE_R_CFG1 0x0e48 #define AFE_DL_NLE_L_CFG0 0x0e4c #define AFE_DL_NLE_L_CFG1 0x0e50 #define AFE_DL_NLE_R_MON0 0x0e54 #define AFE_DL_NLE_R_MON1 0x0e58 #define AFE_DL_NLE_R_MON2 0x0e5c #define AFE_DL_NLE_L_MON0 0x0e60 #define AFE_DL_NLE_L_MON1 0x0e64 #define AFE_DL_NLE_L_MON2 0x0e68 #define AFE_DL_NLE_GAIN_CFG0 0x0e6c #define AFE_ADDA6_MTKAIF_CFG0 0x0e70 #define AFE_ADDA6_MTKAIF_RX_CFG0 0x0e74 #define AFE_ADDA6_MTKAIF_RX_CFG1 0x0e78 #define AFE_ADDA6_MTKAIF_RX_CFG2 0x0e7c #define AFE_GENERAL1_ASRC_2CH_CON0 0x0e80 #define AFE_GENERAL1_ASRC_2CH_CON1 0x0e84 #define AFE_GENERAL1_ASRC_2CH_CON2 0x0e88 #define AFE_GENERAL1_ASRC_2CH_CON3 0x0e8c #define AFE_GENERAL1_ASRC_2CH_CON4 0x0e90 #define AFE_GENERAL1_ASRC_2CH_CON5 0x0e94 #define AFE_GENERAL1_ASRC_2CH_CON6 0x0e98 #define AFE_GENERAL1_ASRC_2CH_CON7 0x0e9c #define AFE_GENERAL1_ASRC_2CH_CON8 0x0ea0 #define AFE_GENERAL1_ASRC_2CH_CON9 0x0ea4 #define AFE_GENERAL1_ASRC_2CH_CON10 0x0ea8 #define AFE_GENERAL1_ASRC_2CH_CON12 0x0eb0 #define AFE_GENERAL1_ASRC_2CH_CON13 0x0eb4 #define GENERAL_ASRC_MODE 0x0eb8 #define GENERAL_ASRC_EN_ON 0x0ebc #define AFE_CONN48 0x0ec0 #define AFE_CONN49 0x0ec4 #define AFE_CONN50 0x0ec8 #define AFE_CONN51 0x0ecc #define AFE_CONN52 0x0ed0 #define AFE_CONN53 0x0ed4 #define AFE_CONN54 0x0ed8 #define AFE_CONN55 0x0edc #define AFE_CONN48_1 0x0ee0 #define AFE_CONN49_1 0x0ee4 #define AFE_CONN50_1 0x0ee8 #define AFE_CONN51_1 0x0eec #define AFE_CONN52_1 0x0ef0 #define AFE_CONN53_1 0x0ef4 #define AFE_CONN54_1 0x0ef8 #define AFE_CONN55_1 0x0efc #define AFE_GENERAL2_ASRC_2CH_CON0 0x0f00 #define AFE_GENERAL2_ASRC_2CH_CON1 0x0f04 #define AFE_GENERAL2_ASRC_2CH_CON2 0x0f08 #define AFE_GENERAL2_ASRC_2CH_CON3 0x0f0c #define AFE_GENERAL2_ASRC_2CH_CON4 0x0f10 #define AFE_GENERAL2_ASRC_2CH_CON5 0x0f14 #define AFE_GENERAL2_ASRC_2CH_CON6 0x0f18 #define AFE_GENERAL2_ASRC_2CH_CON7 0x0f1c #define AFE_GENERAL2_ASRC_2CH_CON8 0x0f20 #define AFE_GENERAL2_ASRC_2CH_CON9 0x0f24 #define AFE_GENERAL2_ASRC_2CH_CON10 0x0f28 #define AFE_GENERAL2_ASRC_2CH_CON12 0x0f30 #define AFE_GENERAL2_ASRC_2CH_CON13 0x0f34 #define AFE_DL9_RCH_MON 0x0f38 #define AFE_DL9_LCH_MON 0x0f3c #define AFE_DL5_CON0 0x0f4c #define AFE_DL5_BASE_MSB 0x0f50 #define AFE_DL5_BASE 0x0f54 #define AFE_DL5_CUR_MSB 0x0f58 #define AFE_DL5_CUR 0x0f5c #define AFE_DL5_END_MSB 0x0f60 #define AFE_DL5_END 0x0f64 #define AFE_DL6_CON0 0x0f68 #define AFE_DL6_BASE_MSB 0x0f6c #define AFE_DL6_BASE 0x0f70 #define AFE_DL6_CUR_MSB 0x0f74 #define AFE_DL6_CUR 0x0f78 #define AFE_DL6_END_MSB 0x0f7c #define AFE_DL6_END 0x0f80 #define AFE_DL7_CON0 0x0f84 #define AFE_DL7_BASE_MSB 0x0f88 #define AFE_DL7_BASE 0x0f8c #define AFE_DL7_CUR_MSB 0x0f90 #define AFE_DL7_CUR 0x0f94 #define AFE_DL7_END_MSB 0x0f98 #define AFE_DL7_END 0x0f9c #define AFE_DL8_CON0 0x0fa0 #define AFE_DL8_BASE_MSB 0x0fa4 #define AFE_DL8_BASE 0x0fa8 #define AFE_DL8_CUR_MSB 0x0fac #define AFE_DL8_CUR 0x0fb0 #define AFE_DL8_END_MSB 0x0fb4 #define AFE_DL8_END 0x0fb8 #define AFE_DL9_CON0 0x0fbc #define AFE_DL9_BASE_MSB 0x0fc0 #define AFE_DL9_BASE 0x0fc4 #define AFE_SE_SECURE_CON 0x1004 #define AFE_PROT_SIDEBAND_MON 0x1008 #define AFE_DOMAIN_SIDEBAND0_MON 0x100c #define AFE_DOMAIN_SIDEBAND1_MON 0x1010 #define AFE_DOMAIN_SIDEBAND2_MON 0x1014 #define AFE_DOMAIN_SIDEBAND3_MON 0x1018 #define AFE_SECURE_MASK_CONN0 0x1020 #define AFE_SECURE_MASK_CONN1 0x1024 #define AFE_SECURE_MASK_CONN2 0x1028 #define AFE_SECURE_MASK_CONN3 0x102c #define AFE_SECURE_MASK_CONN4 0x1030 #define AFE_SECURE_MASK_CONN5 0x1034 #define AFE_SECURE_MASK_CONN6 0x1038 #define AFE_SECURE_MASK_CONN7 0x103c #define AFE_SECURE_MASK_CONN8 0x1040 #define AFE_SECURE_MASK_CONN9 0x1044 #define AFE_SECURE_MASK_CONN10 0x1048 #define AFE_SECURE_MASK_CONN11 0x104c #define AFE_SECURE_MASK_CONN12 0x1050 #define AFE_SECURE_MASK_CONN13 0x1054 #define AFE_SECURE_MASK_CONN14 0x1058 #define AFE_SECURE_MASK_CONN15 0x105c #define AFE_SECURE_MASK_CONN16 0x1060 #define AFE_SECURE_MASK_CONN17 0x1064 #define AFE_SECURE_MASK_CONN18 0x1068 #define AFE_SECURE_MASK_CONN19 0x106c #define AFE_SECURE_MASK_CONN20 0x1070 #define AFE_SECURE_MASK_CONN21 0x1074 #define AFE_SECURE_MASK_CONN22 0x1078 #define AFE_SECURE_MASK_CONN23 0x107c #define AFE_SECURE_MASK_CONN24 0x1080 #define AFE_SECURE_MASK_CONN25 0x1084 #define AFE_SECURE_MASK_CONN26 0x1088 #define AFE_SECURE_MASK_CONN27 0x108c #define AFE_SECURE_MASK_CONN28 0x1090 #define AFE_SECURE_MASK_CONN29 0x1094 #define AFE_SECURE_MASK_CONN30 0x1098 #define AFE_SECURE_MASK_CONN31 0x109c #define AFE_SECURE_MASK_CONN32 0x10a0 #define AFE_SECURE_MASK_CONN33 0x10a4 #define AFE_SECURE_MASK_CONN34 0x10a8 #define AFE_SECURE_MASK_CONN35 0x10ac #define AFE_SECURE_MASK_CONN36 0x10b0 #define AFE_SECURE_MASK_CONN37 0x10b4 #define AFE_SECURE_MASK_CONN38 0x10b8 #define AFE_SECURE_MASK_CONN39 0x10bc #define AFE_SECURE_MASK_CONN40 0x10c0 #define AFE_SECURE_MASK_CONN41 0x10c4 #define AFE_SECURE_MASK_CONN42 0x10c8 #define AFE_SECURE_MASK_CONN43 0x10cc #define AFE_SECURE_MASK_CONN44 0x10d0 #define AFE_SECURE_MASK_CONN45 0x10d4 #define AFE_SECURE_MASK_CONN46 0x10d8 #define AFE_SECURE_MASK_CONN47 0x10dc #define AFE_SECURE_MASK_CONN48 0x10e0 #define AFE_SECURE_MASK_CONN49 0x10e4 #define AFE_SECURE_MASK_CONN50 0x10e8 #define AFE_SECURE_MASK_CONN51 0x10ec #define AFE_SECURE_MASK_CONN52 0x10f0 #define AFE_SECURE_MASK_CONN53 0x10f4 #define AFE_SECURE_MASK_CONN54 0x10f8 #define AFE_SECURE_MASK_CONN55 0x10fc #define AFE_SECURE_MASK_CONN56 0x1100 #define AFE_SECURE_MASK_CONN57 0x1104 #define AFE_SECURE_MASK_CONN0_1 0x1108 #define AFE_SECURE_MASK_CONN1_1 0x110c #define AFE_SECURE_MASK_CONN2_1 0x1110 #define AFE_SECURE_MASK_CONN3_1 0x1114 #define AFE_SECURE_MASK_CONN4_1 0x1118 #define AFE_SECURE_MASK_CONN5_1 0x111c #define AFE_SECURE_MASK_CONN6_1 0x1120 #define AFE_SECURE_MASK_CONN7_1 0x1124 #define AFE_SECURE_MASK_CONN8_1 0x1128 #define AFE_SECURE_MASK_CONN9_1 0x112c #define AFE_SECURE_MASK_CONN10_1 0x1130 #define AFE_SECURE_MASK_CONN11_1 0x1134 #define AFE_SECURE_MASK_CONN12_1 0x1138 #define AFE_SECURE_MASK_CONN13_1 0x113c #define AFE_SECURE_MASK_CONN14_1 0x1140 #define AFE_SECURE_MASK_CONN15_1 0x1144 #define AFE_SECURE_MASK_CONN16_1 0x1148 #define AFE_SECURE_MASK_CONN17_1 0x114c #define AFE_SECURE_MASK_CONN18_1 0x1150 #define AFE_SECURE_MASK_CONN19_1 0x1154 #define AFE_SECURE_MASK_CONN20_1 0x1158 #define AFE_SECURE_MASK_CONN21_1 0x115c #define AFE_SECURE_MASK_CONN22_1 0x1160 #define AFE_SECURE_MASK_CONN23_1 0x1164 #define AFE_SECURE_MASK_CONN24_1 0x1168 #define AFE_SECURE_MASK_CONN25_1 0x116c #define AFE_SECURE_MASK_CONN26_1 0x1170 #define AFE_SECURE_MASK_CONN27_1 0x1174 #define AFE_SECURE_MASK_CONN28_1 0x1178 #define AFE_SECURE_MASK_CONN29_1 0x117c #define AFE_SECURE_MASK_CONN30_1 0x1180 #define AFE_SECURE_MASK_CONN31_1 0x1184 #define AFE_SECURE_MASK_CONN32_1 0x1188 #define AFE_SECURE_MASK_CONN33_1 0x118c #define AFE_SECURE_MASK_CONN34_1 0x1190 #define AFE_SECURE_MASK_CONN35_1 0x1194 #define AFE_SECURE_MASK_CONN36_1 0x1198 #define AFE_SECURE_MASK_CONN37_1 0x119c #define AFE_SECURE_MASK_CONN38_1 0x11a0 #define AFE_SECURE_MASK_CONN39_1 0x11a4 #define AFE_SECURE_MASK_CONN40_1 0x11a8 #define AFE_SECURE_MASK_CONN41_1 0x11ac #define AFE_SECURE_MASK_CONN42_1 0x11b0 #define AFE_SECURE_MASK_CONN43_1 0x11b4 #define AFE_SECURE_MASK_CONN44_1 0x11b8 #define AFE_SECURE_MASK_CONN45_1 0x11bc #define AFE_SECURE_MASK_CONN46_1 0x11c0 #define AFE_SECURE_MASK_CONN47_1 0x11c4 #define AFE_SECURE_MASK_CONN48_1 0x11c8 #define AFE_SECURE_MASK_CONN49_1 0x11cc #define AFE_SECURE_MASK_CONN50_1 0x11d0 #define AFE_SECURE_MASK_CONN51_1 0x11d4 #define AFE_SECURE_MASK_CONN52_1 0x11d8 #define AFE_SECURE_MASK_CONN53_1 0x11dc #define AFE_SECURE_MASK_CONN54_1 0x11e0 #define AFE_SECURE_MASK_CONN55_1 0x11e4 #define AFE_SECURE_MASK_CONN56_1 0x11e8 #define AFE_SECURE_MASK_TINY_CONN0 0x1200 #define AFE_SECURE_MASK_TINY_CONN1 0x1204 #define AFE_SECURE_MASK_TINY_CONN2 0x1208 #define AFE_SECURE_MASK_TINY_CONN3 0x120c #define AFE_SECURE_MASK_TINY_CONN4 0x1210 #define AFE_SECURE_MASK_TINY_CONN5 0x1214 #define AFE_SECURE_MASK_TINY_CONN6 0x1218 #define AFE_SECURE_MASK_TINY_CONN7 0x121c #define AFE_MAX_REGISTER AFE_SECURE_MASK_TINY_CONN7 #define AFE_IRQ_STATUS_BITS 0x87FFFFFF #define AFE_IRQ_CNT_SHIFT 0 #define AFE_IRQ_CNT_MASK 0x3ffff #endif