blob: 448c89b8cd7cca3fee422945c7f8751a58bf4b99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* @DVB-S/DVB-S2 STMicroelectronics STV0900 register definitions
* Author Manfred Voelkel, August 2013
* (c) 2013 Digital Devices GmbH Germany. All rights reserved
*
* =======================================================================
* Registers Declaration (Internal ST, All Applications )
* -------------------------
* Each register (RSTV0910__XXXXX) is defined by its address (2 bytes).
* Each field (FSTV0910__XXXXX) is defined as follow:
* [register address -- 2bytes][field offset -- 4 bits][unused -- 3 bits]
* [field sign -- 1 bit][field mask -- 1byte]
* =======================================================================
*/
/* MID */
#define RSTV0910_MID 0xf100
#define FSTV0910_MCHIP_IDENT 0xf10040f0
#define FSTV0910_MRELEASE 0xf100000f
/* DID */
#define RSTV0910_DID 0xf101
#define FSTV0910_DEVICE_ID 0xf10100ff
/* DACR1 */
#define RSTV0910_DACR1 0xf113
#define FSTV0910_DAC_MODE 0xf11350e0
#define FSTV0910_DAC_VALUE1 0xf113000f
/* DACR2 */
#define RSTV0910_DACR2 0xf114
#define FSTV0910_DAC_VALUE0 0xf11400ff
/* PADCFG */
#define RSTV0910_PADCFG 0xf11a
#define FSTV0910_AGCRF2_OPD 0xf11a3008
#define FSTV0910_AGCRF2_XOR 0xf11a2004
#define FSTV0910_AGCRF1_OPD 0xf11a1002
#define FSTV0910_AGCRF1_XOR 0xf11a0001
/* OUTCFG2 */
#define RSTV0910_OUTCFG2 0xf11b
#define FSTV0910_TS2_ERROR_XOR 0xf11b7080
#define FSTV0910_TS2_DPN_XOR 0xf11b6040
#define FSTV0910_TS2_STROUT_XOR 0xf11b5020
#define FSTV0910_TS2_CLOCKOUT_XOR 0xf11b4010
#define FSTV0910_TS1_ERROR_XOR 0xf11b3008
#define FSTV0910_TS1_DPN_XOR 0xf11b2004
#define FSTV0910_TS1_STROUT_XOR 0xf11b1002
#define FSTV0910_TS1_CLOCKOUT_XOR 0xf11b0001
/* OUTCFG */
#define RSTV0910_OUTCFG 0xf11c
#define FSTV0910_TS2_OUTSER_HZ 0xf11c5020
#define FSTV0910_TS1_OUTSER_HZ 0xf11c4010
#define FSTV0910_TS2_OUTPAR_HZ 0xf11c3008
#define FSTV0910_TS1_OUTPAR_HZ 0xf11c2004
#define FSTV0910_TS_SERDATA0 0xf11c1002
/* IRQSTATUS3 */
#define RSTV0910_IRQSTATUS3 0xf120
#define FSTV0910_SPLL_LOCK 0xf1205020
#define FSTV0910_SSTREAM_LCK_1 0xf1204010
#define FSTV0910_SSTREAM_LCK_2 0xf1203008
#define FSTV0910_SDVBS1_PRF_2 0xf1201002
#define FSTV0910_SDVBS1_PRF_1 0xf1200001
/* IRQSTATUS2 */
#define RSTV0910_IRQSTATUS2 0xf121
#define FSTV0910_SSPY_ENDSIM_1 0xf1217080
#define FSTV0910_SSPY_ENDSIM_2 0xf1216040
#define FSTV0910_SPKTDEL_ERROR_2 0xf1214010
#define FSTV0910_SPKTDEL_LOCKB_2 0xf1213008
#define FSTV0910_SPKTDEL_LOCK_2 0xf1212004
#define FSTV0910_SPKTDEL_ERROR_1 0xf1211002
#define FSTV0910_SPKTDEL_LOCKB_1 0xf1210001
/* IRQSTATUS1 */
#define RSTV0910_IRQSTATUS1 0xf122
#define FSTV0910_SPKTDEL_LOCK_1 0xf1227080
#define FSTV0910_SFEC_LOCKB_2 0xf1226040
#define FSTV0910_SFEC_LOCK_2 0xf1225020
#define FSTV0910_SFEC_LOCKB_1 0xf1224010
#define FSTV0910_SFEC_LOCK_1 0xf1223008
#define FSTV0910_SDEMOD_LOCKB_2 0xf1222004
#define FSTV0910_SDEMOD_LOCK_2 0xf1221002
#define FSTV0910_SDEMOD_IRQ_2 0xf1220001
/* IRQSTATUS0 */
#define RSTV0910_IRQSTATUS0 0xf123
#define FSTV0910_SDEMOD_LOCKB_1 0xf1237080
#define FSTV0910_SDEMOD_LOCK_1 0xf1236040
#define FSTV0910_SDEMOD_IRQ_1 0xf1235020
#define FSTV0910_SBCH_ERRFLAG 0xf1234010
#define FSTV0910_SDISEQC2_IRQ 0xf1232004
#define FSTV0910_SDISEQC1_IRQ 0xf1230001
/* IRQMASK3 */
#define RSTV0910_IRQMASK3 0xf124
#define FSTV0910_MPLL_LOCK 0xf1245020
#define FSTV0910_MSTREAM_LCK_1 0xf1244010
#define FSTV0910_MSTREAM_LCK_2 0xf1243008
#define FSTV0910_MDVBS1_PRF_2 0xf1241002
#define FSTV0910_MDVBS1_PRF_1 0xf1240001
/* IRQMASK2 */
#define RSTV0910_IRQMASK2 0xf125
#define FSTV0910_MSPY_ENDSIM_1 0xf1257080
#define FSTV0910_MSPY_ENDSIM_2 0xf1256040
#define FSTV0910_MPKTDEL_ERROR_2 0xf1254010
#define FSTV0910_MPKTDEL_LOCKB_2 0xf1253008
#define FSTV0910_MPKTDEL_LOCK_2 0xf1252004
#define FSTV0910_MPKTDEL_ERROR_1 0xf1251002
#define FSTV0910_MPKTDEL_LOCKB_1 0xf1250001
/* IRQMASK1 */
#define RSTV0910_IRQMASK1 0xf126
#define FSTV0910_MPKTDEL_LOCK_1 0xf1267080
#define FSTV0910_MFEC_LOCKB_2 0xf1266040
#define FSTV0910_MFEC_LOCK_2 0xf1265020
#define FSTV0910_MFEC_LOCKB_1 0xf1264010
#define FSTV0910_MFEC_LOCK_1 0xf1263008
#define FSTV0910_MDEMOD_LOCKB_2 0xf1262004
#define FSTV0910_MDEMOD_LOCK_2 0xf1261002
#define FSTV0910_MDEMOD_IRQ_2 0xf1260001
/* IRQMASK0 */
#define RSTV0910_IRQMASK0 0xf127
#define FSTV0910_MDEMOD_LOCKB_1 0xf1277080
#define FSTV0910_MDEMOD_LOCK_1 0xf1276040
#define FSTV0910_MDEMOD_IRQ_1 0xf1275020
#define FSTV0910_MBCH_ERRFLAG 0xf1274010
#define FSTV0910_MDISEQC2_IRQ 0xf1272004
#define FSTV0910_MDISEQC1_IRQ 0xf1270001
/* I2CCFG */
#define RSTV0910_I2CCFG 0xf129
#define FSTV0910_I2C_FASTMODE 0xf1293008
#define FSTV0910_I2CADDR_INC 0xf1290003
/* P1_I2CRPT */
#define RSTV0910_P1_I2CRPT 0xf12a
#define FSTV0910_P1_I2CT_ON 0xf12a7080
#define FSTV0910_P1_ENARPT_LEVEL 0xf12a4070
#define FSTV0910_P1_SCLT_DELAY 0xf12a3008
#define FSTV0910_P1_STOP_ENABLE 0xf12a2004
#define FSTV0910_P1_STOP_SDAT2SDA 0xf12a1002
/* P2_I2CRPT */
#define RSTV0910_P2_I2CRPT 0xf12b
#define FSTV0910_P2_I2CT_ON 0xf12b7080
#define FSTV0910_P2_ENARPT_LEVEL 0xf12b4070
#define FSTV0910_P2_SCLT_DELAY 0xf12b3008
#define FSTV0910_P2_STOP_ENABLE 0xf12b2004
#define FSTV0910_P2_STOP_SDAT2SDA 0xf12b1002
/* GPIO0CFG */
#define RSTV0910_GPIO0CFG 0xf140
#define FSTV0910_GPIO0_OPD 0xf1407080
#define FSTV0910_GPIO0_CONFIG 0xf140107e
#define FSTV0910_GPIO0_XOR 0xf1400001
/* GPIO1CFG */
#define RSTV0910_GPIO1CFG 0xf141
#define FSTV0910_GPIO1_OPD 0xf1417080
#define FSTV0910_GPIO1_CONFIG 0xf141107e
#define FSTV0910_GPIO1_XOR 0xf1410001
/* GPIO2CFG */
#define RSTV0910_GPIO2CFG 0xf142
#define FSTV0910_GPIO2_OPD 0xf1427080
#define FSTV0910_GPIO2_CONFIG 0xf142107e
#define FSTV0910_GPIO2_XOR 0xf1420001
/* GPIO3CFG */
#define RSTV0910_GPIO3CFG 0xf143
#define FSTV0910_GPIO3_OPD 0xf1437080
#define FSTV0910_GPIO3_CONFIG 0xf143107e
#define FSTV0910_GPIO3_XOR 0xf1430001
/* GPIO4CFG */
#define RSTV0910_GPIO4CFG 0xf144
#define FSTV0910_GPIO4_OPD 0xf1447080
#define FSTV0910_GPIO4_CONFIG 0xf144107e
#define FSTV0910_GPIO4_XOR 0xf1440001
/* GPIO5CFG */
#define RSTV0910_GPIO5CFG 0xf145
#define FSTV0910_GPIO5_OPD 0xf1457080
#define FSTV0910_GPIO5_CONFIG 0xf145107e
#define FSTV0910_GPIO5_XOR 0xf1450001
/* GPIO6CFG */
#define RSTV0910_GPIO6CFG 0xf146
#define FSTV0910_GPIO6_OPD 0xf1467080
#define FSTV0910_GPIO6_CONFIG 0xf146107e
#define FSTV0910_GPIO6_XOR 0xf1460001
/* GPIO7CFG */
#define RSTV0910_GPIO7CFG 0xf147
#define FSTV0910_GPIO7_OPD 0xf1477080
#define FSTV0910_GPIO7_CONFIG 0xf147107e
#define FSTV0910_GPIO7_XOR 0xf1470001
/* GPIO8CFG */
#define RSTV0910_GPIO8CFG 0xf148
#define FSTV0910_GPIO8_OPD 0xf1487080
#define FSTV0910_GPIO8_CONFIG 0xf148107e
#define FSTV0910_GPIO8_XOR 0xf1480001
/* GPIO9CFG */
#define RSTV0910_GPIO9CFG 0xf149
#define FSTV0910_GPIO9_OPD 0xf1497080
#define FSTV0910_GPIO9_CONFIG 0xf149107e
#define FSTV0910_GPIO9_XOR 0xf1490001
/* GPIO10CFG */
#define RSTV0910_GPIO10CFG 0xf14a
#define FSTV0910_GPIO10_OPD 0xf14a7080
#define FSTV0910_GPIO10_CONFIG 0xf14a107e
#define FSTV0910_GPIO10_XOR 0xf14a0001
/* GPIO11CFG */
#define RSTV0910_GPIO11CFG 0xf14b
#define FSTV0910_GPIO11_OPD 0xf14b7080
#define FSTV0910_GPIO11_CONFIG 0xf14b107e
#define FSTV0910_GPIO11_XOR 0xf14b0001
/* GPIO12CFG */
#define RSTV0910_GPIO12CFG 0xf14c
#define FSTV0910_GPIO12_OPD 0xf14c7080
#define FSTV0910_GPIO12_CONFIG 0xf14c107e
#define FSTV0910_GPIO12_XOR 0xf14c0001
/* GPIO13CFG */
#define RSTV0910_GPIO13CFG 0xf14d
#define FSTV0910_GPIO13_OPD 0xf14d7080
#define FSTV0910_GPIO13_CONFIG 0xf14d107e
#define FSTV0910_GPIO13_XOR 0xf14d0001
/* GPIO14CFG */
#define RSTV0910_GPIO14CFG 0xf14e
#define FSTV0910_GPIO14_OPD 0xf14e7080
#define FSTV0910_GPIO14_CONFIG 0xf14e107e
#define FSTV0910_GPIO14_XOR 0xf14e0001
/* GPIO15CFG */
#define RSTV0910_GPIO15CFG 0xf14f
#define FSTV0910_GPIO15_OPD 0xf14f7080
#define FSTV0910_GPIO15_CONFIG 0xf14f107e
#define FSTV0910_GPIO15_XOR 0xf14f0001
/* GPIO16CFG */
#define RSTV0910_GPIO16CFG 0xf150
#define FSTV0910_GPIO16_OPD 0xf1507080
#define FSTV0910_GPIO16_CONFIG 0xf150107e
#define FSTV0910_GPIO16_XOR 0xf1500001
/* GPIO17CFG */
#define RSTV0910_GPIO17CFG 0xf151
#define FSTV0910_GPIO17_OPD 0xf1517080
#define FSTV0910_GPIO17_CONFIG 0xf151107e
#define FSTV0910_GPIO17_XOR 0xf1510001
/* GPIO18CFG */
#define RSTV0910_GPIO18CFG 0xf152
#define FSTV0910_GPIO18_OPD 0xf1527080
#define FSTV0910_GPIO18_CONFIG 0xf152107e
#define FSTV0910_GPIO18_XOR 0xf1520001
/* GPIO19CFG */
#define RSTV0910_GPIO19CFG 0xf153
#define FSTV0910_GPIO19_OPD 0xf1537080
#define FSTV0910_GPIO19_CONFIG 0xf153107e
#define FSTV0910_GPIO19_XOR 0xf1530001
/* GPIO20CFG */
#define RSTV0910_GPIO20CFG 0xf154
#define FSTV0910_GPIO20_OPD 0xf1547080
#define FSTV0910_GPIO20_CONFIG 0xf154107e
#define FSTV0910_GPIO20_XOR 0xf1540001
/* GPIO21CFG */
#define RSTV0910_GPIO21CFG 0xf155
#define FSTV0910_GPIO21_OPD 0xf1557080
#define FSTV0910_GPIO21_CONFIG 0xf155107e
#define FSTV0910_GPIO21_XOR 0xf1550001
/* GPIO22CFG */
#define RSTV0910_GPIO22CFG 0xf156
#define FSTV0910_GPIO22_OPD 0xf1567080
#define FSTV0910_GPIO22_CONFIG 0xf156107e
#define FSTV0910_GPIO22_XOR 0xf1560001
/* STRSTATUS1 */
#define RSTV0910_STRSTATUS1 0xf16a
#define FSTV0910_STRSTATUS_SEL2 0xf16a40f0
#define FSTV0910_STRSTATUS_SEL1 0xf16a000f
/* STRSTATUS2 */
#define RSTV0910_STRSTATUS2 0xf16b
#define FSTV0910_STRSTATUS_SEL4 0xf16b40f0
#define FSTV0910_STRSTATUS_SEL3 0xf16b000f
/* STRSTATUS3 */
#define RSTV0910_STRSTATUS3 0xf16c
#define FSTV0910_STRSTATUS_SEL6 0xf16c40f0
#define FSTV0910_STRSTATUS_SEL5 0xf16c000f
/* FSKTFC2 */
#define RSTV0910_FSKTFC2 0xf170
#define FSTV0910_FSKT_KMOD 0xf17020fc
#define FSTV0910_FSKT_CAR2 0xf1700003
/* FSKTFC1 */
#define RSTV0910_FSKTFC1 0xf171
#define FSTV0910_FSKT_CAR1 0xf17100ff
/* FSKTFC0 */
#define RSTV0910_FSKTFC0 0xf172
#define FSTV0910_FSKT_CAR0 0xf17200ff
/* FSKTDELTAF1 */
#define RSTV0910_FSKTDELTAF1 0xf173
#define FSTV0910_FSKT_DELTAF1 0xf173000f
/* FSKTDELTAF0 */
#define RSTV0910_FSKTDELTAF0 0xf174
#define FSTV0910_FSKT_DELTAF0 0xf17400ff
/* FSKTCTRL */
#define RSTV0910_FSKTCTRL 0xf175
#define FSTV0910_FSKT_PINSEL 0xf1757080
#define FSTV0910_FSKT_EN_SGN 0xf1756040
#define FSTV0910_FSKT_MOD_SGN 0xf1755020
#define FSTV0910_FSKT_MOD_EN 0xf175201c
#define FSTV0910_FSKT_DACMODE 0xf1750003
/* FSKRFC2 */
#define RSTV0910_FSKRFC2 0xf176
#define FSTV0910_FSKR_DETSGN 0xf1766040
#define FSTV0910_FSKR_OUTSGN 0xf1765020
#define FSTV0910_FSKR_KAGC 0xf176201c
#define FSTV0910_FSKR_CAR2 0xf1760003
/* FSKRFC1 */
#define RSTV0910_FSKRFC1 0xf177
#define FSTV0910_FSKR_CAR1 0xf17700ff
/* FSKRFC0 */
#define RSTV0910_FSKRFC0 0xf178
#define FSTV0910_FSKR_CAR0 0xf17800ff
/* FSKRK1 */
#define RSTV0910_FSKRK1 0xf179
#define FSTV0910_FSKR_K1_EXP 0xf17950e0
#define FSTV0910_FSKR_K1_MANT 0xf179001f
/* FSKRK2 */
#define RSTV0910_FSKRK2 0xf17a
#define FSTV0910_FSKR_K2_EXP 0xf17a50e0
#define FSTV0910_FSKR_K2_MANT 0xf17a001f
/* FSKRAGCR */
#define RSTV0910_FSKRAGCR 0xf17b
#define FSTV0910_FSKR_OUTCTL 0xf17b60c0
#define FSTV0910_FSKR_AGC_REF 0xf17b003f
/* FSKRAGC */
#define RSTV0910_FSKRAGC 0xf17c
#define FSTV0910_FSKR_AGC_ACCU 0xf17c00ff
/* FSKRALPHA */
#define RSTV0910_FSKRALPHA 0xf17d
#define FSTV0910_FSKR_ALPHA_EXP 0xf17d201c
#define FSTV0910_FSKR_ALPHA_M 0xf17d0003
/* FSKRPLTH1 */
#define RSTV0910_FSKRPLTH1 0xf17e
#define FSTV0910_FSKR_BETA 0xf17e40f0
#define FSTV0910_FSKR_PLL_TRESH1 0xf17e000f
/* FSKRPLTH0 */
#define RSTV0910_FSKRPLTH0 0xf17f
#define FSTV0910_FSKR_PLL_TRESH0 0xf17f00ff
/* FSKRDF1 */
#define RSTV0910_FSKRDF1 0xf180
#define FSTV0910_FSKR_OUT 0xf1807080
#define FSTV0910_FSKR_STATE 0xf1805060
#define FSTV0910_FSKR_DELTAF1 0xf180001f
/* FSKRDF0 */
#define RSTV0910_FSKRDF0 0xf181
#define FSTV0910_FSKR_DELTAF0 0xf18100ff
/* FSKRSTEPP */
#define RSTV0910_FSKRSTEPP 0xf182
#define FSTV0910_FSKR_STEP_PLUS 0xf18200ff
/* FSKRSTEPM */
#define RSTV0910_FSKRSTEPM 0xf183
#define FSTV0910_FSKR_STEP_MINUS 0xf18300ff
/* FSKRDET1 */
#define RSTV0910_FSKRDET1 0xf184
#define FSTV0910_FSKR_DETECT 0xf1847080
#define FSTV0910_FSKR_CARDET_ACCU1 0xf184000f
/* FSKRDET0 */
#define RSTV0910_FSKRDET0 0xf185
#define FSTV0910_FSKR_CARDET_ACCU0 0xf18500ff
/* FSKRDTH1 */
#define RSTV0910_FSKRDTH1 0xf186
#define FSTV0910_FSKR_CARLOSS_THRESH1 0xf18640f0
#define FSTV0910_FSKR_CARDET_THRESH1 0xf186000f
/* FSKRDTH0 */
#define RSTV0910_FSKRDTH0 0xf187
#define FSTV0910_FSKR_CARDET_THRESH0 0xf18700ff
/* FSKRLOSS */
#define RSTV0910_FSKRLOSS 0xf188
#define FSTV0910_FSKR_CARLOSS_THRESH0 0xf18800ff
/* NCOARSE */
#define RSTV0910_NCOARSE 0xf1b3
#define FSTV0910_CP 0xf1b330f8
#define FSTV0910_IDF 0xf1b30007
/* NCOARSE1 */
#define RSTV0910_NCOARSE1 0xf1b4
#define FSTV0910_N_DIV 0xf1b400ff
/* NCOARSE2 */
#define RSTV0910_NCOARSE2 0xf1b5
#define FSTV0910_ODF 0xf1b5003f
/* SYNTCTRL */
#define RSTV0910_SYNTCTRL 0xf1b6
#define FSTV0910_STANDBY 0xf1b67080
#define FSTV0910_BYPASSPLLCORE 0xf1b66040
#define FSTV0910_STOP_PLL 0xf1b63008
#define FSTV0910_OSCI_E 0xf1b61002
/* FILTCTRL */
#define RSTV0910_FILTCTRL 0xf1b7
#define FSTV0910_INV_CLKFSK 0xf1b71002
#define FSTV0910_BYPASS_APPLI 0xf1b70001
/* PLLSTAT */
#define RSTV0910_PLLSTAT 0xf1b8
#define FSTV0910_PLLLOCK 0xf1b80001
/* STOPCLK1 */
#define RSTV0910_STOPCLK1 0xf1c2
#define FSTV0910_INV_CLKADCI2 0xf1c22004
#define FSTV0910_INV_CLKADCI1 0xf1c20001
/* STOPCLK2 */
#define RSTV0910_STOPCLK2 0xf1c3
#define FSTV0910_STOP_DVBS2FEC2 0xf1c35020
#define FSTV0910_STOP_DVBS2FEC 0xf1c34010
#define FSTV0910_STOP_DVBS1FEC2 0xf1c33008
#define FSTV0910_STOP_DVBS1FEC 0xf1c32004
#define FSTV0910_STOP_DEMOD2 0xf1c31002
#define FSTV0910_STOP_DEMOD 0xf1c30001
/* PREGCTL */
#define RSTV0910_PREGCTL 0xf1c8
#define FSTV0910_REG3V3TO2V5_POFF 0xf1c87080
/* TSTTNR0 */
#define RSTV0910_TSTTNR0 0xf1df
#define FSTV0910_FSK_PON 0xf1df2004
/* TSTTNR1 */
#define RSTV0910_TSTTNR1 0xf1e0
#define FSTV0910_ADC1_PON 0xf1e01002
/* TSTTNR2 */
#define RSTV0910_TSTTNR2 0xf1e1
#define FSTV0910_I2C_DISEQC_PON 0xf1e15020
#define FSTV0910_DISEQC_CLKDIV 0xf1e1000f
/* TSTTNR3 */
#define RSTV0910_TSTTNR3 0xf1e2
#define FSTV0910_ADC2_PON 0xf1e21002
/* P2_IQCONST */
#define RSTV0910_P2_IQCONST 0xf200
#define FSTV0910_P2_CONSTEL_SELECT 0xf2005060
#define FSTV0910_P2_IQSYMB_SEL 0xf200001f
/* P2_NOSCFG */
#define RSTV0910_P2_NOSCFG 0xf201
#define FSTV0910_P2_DUMMYPL_NOSDATA 0xf2015020
#define FSTV0910_P2_NOSPLH_BETA 0xf2013018
#define FSTV0910_P2_NOSDATA_BETA 0xf2010007
/* P2_ISYMB */
#define RSTV0910_P2_ISYMB 0xf202
#define FSTV0910_P2_I_SYMBOL 0xf20201ff
/* P2_QSYMB */
#define RSTV0910_P2_QSYMB 0xf203
#define FSTV0910_P2_Q_SYMBOL 0xf20301ff
/* P2_AGC1CFG */
#define RSTV0910_P2_AGC1CFG 0xf204
#define FSTV0910_P2_DC_FROZEN 0xf2047080
#define FSTV0910_P2_DC_CORRECT 0xf2046040
#define FSTV0910_P2_AMM_FROZEN 0xf2045020
#define FSTV0910_P2_AMM_CORRECT 0xf2044010
#define FSTV0910_P2_QUAD_FROZEN 0xf2043008
#define FSTV0910_P2_QUAD_CORRECT 0xf2042004
/* P2_AGC1CN */
#define RSTV0910_P2_AGC1CN 0xf206
#define FSTV0910_P2_AGC1_LOCKED 0xf2067080
#define FSTV0910_P2_AGC1_MINPOWER 0xf2064010
#define FSTV0910_P2_AGCOUT_FAST 0xf2063008
#define FSTV0910_P2_AGCIQ_BETA 0xf2060007
/* P2_AGC1REF */
#define RSTV0910_P2_AGC1REF 0xf207
#define FSTV0910_P2_AGCIQ_REF 0xf20700ff
/* P2_IDCCOMP */
#define RSTV0910_P2_IDCCOMP 0xf208
#define FSTV0910_P2_IAVERAGE_ADJ 0xf20801ff
/* P2_QDCCOMP */
#define RSTV0910_P2_QDCCOMP 0xf209
#define FSTV0910_P2_QAVERAGE_ADJ 0xf20901ff
/* P2_POWERI */
#define RSTV0910_P2_POWERI 0xf20a
#define FSTV0910_P2_POWER_I 0xf20a00ff
/* P2_POWERQ */
#define RSTV0910_P2_POWERQ 0xf20b
#define FSTV0910_P2_POWER_Q 0xf20b00ff
/* P2_AGC1AMM */
#define RSTV0910_P2_AGC1AMM 0xf20c
#define FSTV0910_P2_AMM_VALUE 0xf20c00ff
/* P2_AGC1QUAD */
#define RSTV0910_P2_AGC1QUAD 0xf20d
#define FSTV0910_P2_QUAD_VALUE 0xf20d01ff
/* P2_AGCIQIN1 */
#define RSTV0910_P2_AGCIQIN1 0xf20e
#define FSTV0910_P2_AGCIQ_VALUE1 0xf20e00ff
/* P2_AGCIQIN0 */
#define RSTV0910_P2_AGCIQIN0 0xf20f
#define FSTV0910_P2_AGCIQ_VALUE0 0xf20f00ff
/* P2_DEMOD */
#define RSTV0910_P2_DEMOD 0xf210
#define FSTV0910_P2_MANUALS2_ROLLOFF 0xf2107080
#define FSTV0910_P2_SPECINV_CONTROL 0xf2104030
#define FSTV0910_P2_MANUALSX_ROLLOFF 0xf2102004
#define FSTV0910_P2_ROLLOFF_CONTROL 0xf2100003
/* P2_DMDMODCOD */
#define RSTV0910_P2_DMDMODCOD 0xf211
#define FSTV0910_P2_MANUAL_MODCOD 0xf2117080
#define FSTV0910_P2_DEMOD_MODCOD 0xf211207c
#define FSTV0910_P2_DEMOD_TYPE 0xf2110003
/* P2_DSTATUS */
#define RSTV0910_P2_DSTATUS 0xf212
#define FSTV0910_P2_CAR_LOCK 0xf2127080
#define FSTV0910_P2_TMGLOCK_QUALITY 0xf2125060
#define FSTV0910_P2_LOCK_DEFINITIF 0xf2123008
#define FSTV0910_P2_OVADC_DETECT 0xf2120001
/* P2_DSTATUS2 */
#define RSTV0910_P2_DSTATUS2 0xf213
#define FSTV0910_P2_DEMOD_DELOCK 0xf2137080
#define FSTV0910_P2_MODCODRQ_SYNCTAG 0xf2135020
#define FSTV0910_P2_POLYPH_SATEVENT 0xf2134010
#define FSTV0910_P2_AGC1_NOSIGNALACK 0xf2133008
#define FSTV0910_P2_AGC2_OVERFLOW 0xf2132004
#define FSTV0910_P2_CFR_OVERFLOW 0xf2131002
#define FSTV0910_P2_GAMMA_OVERUNDER 0xf2130001
/* P2_DMDCFGMD */
#define RSTV0910_P2_DMDCFGMD 0xf214
#define FSTV0910_P2_DVBS2_ENABLE 0xf2147080
#define FSTV0910_P2_DVBS1_ENABLE 0xf2146040
#define FSTV0910_P2_SCAN_ENABLE 0xf2144010
#define FSTV0910_P2_CFR_AUTOSCAN 0xf2143008
#define FSTV0910_P2_TUN_RNG 0xf2140003
/* P2_DMDCFG2 */
#define RSTV0910_P2_DMDCFG2 0xf215
#define FSTV0910_P2_S1S2_SEQUENTIAL 0xf2156040
#define FSTV0910_P2_INFINITE_RELOCK 0xf2154010
/* P2_DMDISTATE */
#define RSTV0910_P2_DMDISTATE 0xf216
#define FSTV0910_P2_I2C_NORESETDMODE 0xf2167080
#define FSTV0910_P2_I2C_DEMOD_MODE 0xf216001f
/* P2_DMDT0M */
#define RSTV0910_P2_DMDT0M 0xf217
#define FSTV0910_P2_DMDT0_MIN 0xf21700ff
/* P2_DMDSTATE */
#define RSTV0910_P2_DMDSTATE 0xf21b
#define FSTV0910_P2_HEADER_MODE 0xf21b5060
/* P2_DMDFLYW */
#define RSTV0910_P2_DMDFLYW 0xf21c
#define FSTV0910_P2_I2C_IRQVAL 0xf21c40f0
#define FSTV0910_P2_FLYWHEEL_CPT 0xf21c000f
/* P2_DSTATUS3 */
#define RSTV0910_P2_DSTATUS3 0xf21d
#define FSTV0910_P2_CFR_ZIGZAG 0xf21d7080
#define FSTV0910_P2_DEMOD_CFGMODE 0xf21d5060
#define FSTV0910_P2_GAMMA_LOWBAUDRATE 0xf21d4010
/* P2_DMDCFG3 */
#define RSTV0910_P2_DMDCFG3 0xf21e
#define FSTV0910_P2_NOSTOP_FIFOFULL 0xf21e3008
/* P2_DMDCFG4 */
#define RSTV0910_P2_DMDCFG4 0xf21f
#define FSTV0910_P2_DIS_VITLOCK 0xf21f7080
#define FSTV0910_P2_DIS_CLKENABLE 0xf21f2004
/* P2_CORRELMANT */
#define RSTV0910_P2_CORRELMANT 0xf220
#define FSTV0910_P2_CORREL_MANT 0xf22000ff
/* P2_CORRELABS */
#define RSTV0910_P2_CORRELABS 0xf221
#define FSTV0910_P2_CORREL_ABS 0xf22100ff
/* P2_CORRELEXP */
#define RSTV0910_P2_CORRELEXP 0xf222
#define FSTV0910_P2_CORREL_ABSEXP 0xf22240f0
#define FSTV0910_P2_CORREL_EXP 0xf222000f
/* P2_PLHMODCOD */
#define RSTV0910_P2_PLHMODCOD 0xf224
#define FSTV0910_P2_SPECINV_DEMOD 0xf2247080
#define FSTV0910_P2_PLH_MODCOD 0xf224207c
#define FSTV0910_P2_PLH_TYPE 0xf2240003
/* P2_DMDREG */
#define RSTV0910_P2_DMDREG 0xf225
#define FSTV0910_P2_DECIM_PLFRAMES 0xf2250001
/* P2_AGCNADJ */
#define RSTV0910_P2_AGCNADJ 0xf226
#define FSTV0910_P2_RADJOFF_AGC2 0xf2267080
#define FSTV0910_P2_RADJOFF_AGC1 0xf2266040
#define FSTV0910_P2_AGC_NADJ 0xf226013f
/* P2_AGCKS */
#define RSTV0910_P2_AGCKS 0xf227
#define FSTV0910_P2_RSADJ_MANUALCFG 0xf2277080
#define FSTV0910_P2_RSADJ_CCMMODE 0xf2276040
#define FSTV0910_P2_RADJ_SPSK 0xf227013f
/* P2_AGCKQ */
#define RSTV0910_P2_AGCKQ 0xf228
#define FSTV0910_P2_RADJON_DVBS1 0xf2286040
#define FSTV0910_P2_RADJ_QPSK 0xf228013f
/* P2_AGCK8 */
#define RSTV0910_P2_AGCK8 0xf229
#define FSTV0910_P2_RADJ_8PSK 0xf229013f
/* P2_AGCK16 */
#define RSTV0910_P2_AGCK16 0xf22a
#define FSTV0910_P2_R2ADJOFF_16APSK 0xf22a6040
#define FSTV0910_P2_R1ADJOFF_16APSK 0xf22a5020
#define FSTV0910_P2_RADJ_16APSK 0xf22a011f
/* P2_AGCK32 */
#define RSTV0910_P2_AGCK32 0xf22b
#define FSTV0910_P2_R3ADJOFF_32APSK 0xf22b7080
#define FSTV0910_P2_R2ADJOFF_32APSK 0xf22b6040
#define FSTV0910_P2_R1ADJOFF_32APSK 0xf22b5020
#define FSTV0910_P2_RADJ_32APSK 0xf22b011f
/* P2_AGC2O */
#define RSTV0910_P2_AGC2O 0xf22c
#define FSTV0910_P2_CSTENV_MODE 0xf22c60c0
#define FSTV0910_P2_AGC2_COEF 0xf22c0007
/* P2_AGC2REF */
#define RSTV0910_P2_AGC2REF 0xf22d
#define FSTV0910_P2_AGC2_REF 0xf22d00ff
/* P2_AGC1ADJ */
#define RSTV0910_P2_AGC1ADJ 0xf22e
#define FSTV0910_P2_AGC1_ADJUSTED 0xf22e007f
/* P2_AGCRSADJ */
#define RSTV0910_P2_AGCRSADJ 0xf22f
#define FSTV0910_P2_RS_ADJUSTED 0xf22f007f
/* P2_AGCRQADJ */
#define RSTV0910_P2_AGCRQADJ 0xf230
#define FSTV0910_P2_RQ_ADJUSTED 0xf230007f
/* P2_AGCR8ADJ */
#define RSTV0910_P2_AGCR8ADJ 0xf231
#define FSTV0910_P2_R8_ADJUSTED 0xf231007f
/* P2_AGCR1ADJ */
#define RSTV0910_P2_AGCR1ADJ 0xf232
#define FSTV0910_P2_R1_ADJUSTED 0xf232007f
/* P2_AGCR2ADJ */
#define RSTV0910_P2_AGCR2ADJ 0xf233
#define FSTV0910_P2_R2_ADJUSTED 0xf233007f
/* P2_AGCR3ADJ */
#define RSTV0910_P2_AGCR3ADJ 0xf234
#define FSTV0910_P2_R3_ADJUSTED 0xf234007f
/* P2_AGCREFADJ */
#define RSTV0910_P2_AGCREFADJ 0xf235
#define FSTV0910_P2_AGC2REF_ADJUSTED 0xf235007f
/* P2_AGC2I1 */
#define RSTV0910_P2_AGC2I1 0xf236
#define FSTV0910_P2_AGC2_INTEGRATOR1 0xf23600ff
/* P2_AGC2I0 */
#define RSTV0910_P2_AGC2I0 0xf237
#define FSTV0910_P2_AGC2_INTEGRATOR0 0xf23700ff
/* P2_CARCFG */
#define RSTV0910_P2_CARCFG 0xf238
#define FSTV0910_P2_ROTAON 0xf2382004
#define FSTV0910_P2_PH_DET_ALGO 0xf2380003
/* P2_ACLC */
#define RSTV0910_P2_ACLC 0xf239
#define FSTV0910_P2_CAR_ALPHA_MANT 0xf2394030
#define FSTV0910_P2_CAR_ALPHA_EXP 0xf239000f
/* P2_BCLC */
#define RSTV0910_P2_BCLC 0xf23a
#define FSTV0910_P2_CAR_BETA_MANT 0xf23a4030
#define FSTV0910_P2_CAR_BETA_EXP 0xf23a000f
/* P2_ACLCS2 */
#define RSTV0910_P2_ACLCS2 0xf23b
#define FSTV0910_P2_CARS2_APLHA_MANTISSE 0xf23b4030
#define FSTV0910_P2_CARS2_ALPHA_EXP 0xf23b000f
/* P2_BCLCS2 */
#define RSTV0910_P2_BCLCS2 0xf23c
#define FSTV0910_P2_CARS2_BETA_MANTISSE 0xf23c4030
#define FSTV0910_P2_CARS2_BETA_EXP 0xf23c000f
/* P2_CARFREQ */
#define RSTV0910_P2_CARFREQ 0xf23d
#define FSTV0910_P2_KC_COARSE_EXP 0xf23d40f0
#define FSTV0910_P2_BETA_FREQ 0xf23d000f
/* P2_CARHDR */
#define RSTV0910_P2_CARHDR 0xf23e
#define FSTV0910_P2_K_FREQ_HDR 0xf23e00ff
/* P2_LDT */
#define RSTV0910_P2_LDT 0xf23f
#define FSTV0910_P2_CARLOCK_THRES 0xf23f01ff
/* P2_LDT2 */
#define RSTV0910_P2_LDT2 0xf240
#define FSTV0910_P2_CARLOCK_THRES2 0xf24001ff
/* P2_CFRICFG */
#define RSTV0910_P2_CFRICFG 0xf241
#define FSTV0910_P2_NEG_CFRSTEP 0xf2410001
/* P2_CFRUP1 */
#define RSTV0910_P2_CFRUP1 0xf242
#define FSTV0910_P2_CFR_UP1 0xf24201ff
/* P2_CFRUP0 */
#define RSTV0910_P2_CFRUP0 0xf243
#define FSTV0910_P2_CFR_UP0 0xf24300ff
/* P2_CFRIBASE1 */
#define RSTV0910_P2_CFRIBASE1 0xf244
#define FSTV0910_P2_CFRINIT_BASE1 0xf24400ff
/* P2_CFRIBASE0 */
#define RSTV0910_P2_CFRIBASE0 0xf245
#define FSTV0910_P2_CFRINIT_BASE0 0xf24500ff
/* P2_CFRLOW1 */
#define RSTV0910_P2_CFRLOW1 0xf246
#define FSTV0910_P2_CFR_LOW1 0xf24601ff
/* P2_CFRLOW0 */
#define RSTV0910_P2_CFRLOW0 0xf247
#define FSTV0910_P2_CFR_LOW0 0xf24700ff
/* P2_CFRINIT1 */
#define RSTV0910_P2_CFRINIT1 0xf248
#define FSTV0910_P2_CFR_INIT1 0xf24801ff
/* P2_CFRINIT0 */
#define RSTV0910_P2_CFRINIT0 0xf249
#define FSTV0910_P2_CFR_INIT0 0xf24900ff
/* P2_CFRINC1 */
#define RSTV0910_P2_CFRINC1 0xf24a
#define FSTV0910_P2_MANUAL_CFRINC 0xf24a7080
#define FSTV0910_P2_CFR_INC1 0xf24a003f
/* P2_CFRINC0 */
#define RSTV0910_P2_CFRINC0 0xf24b
#define FSTV0910_P2_CFR_INC0 0xf24b00ff
/* P2_CFR2 */
#define RSTV0910_P2_CFR2 0xf24c
#define FSTV0910_P2_CAR_FREQ2 0xf24c01ff
/* P2_CFR1 */
#define RSTV0910_P2_CFR1 0xf24d
#define FSTV0910_P2_CAR_FREQ1 0xf24d00ff
/* P2_CFR0 */
#define RSTV0910_P2_CFR0 0xf24e
#define FSTV0910_P2_CAR_FREQ0 0xf24e00ff
/* P2_LDI */
#define RSTV0910_P2_LDI 0xf24f
#define FSTV0910_P2_LOCK_DET_INTEGR 0xf24f01ff
/* P2_TMGCFG */
#define RSTV0910_P2_TMGCFG 0xf250
#define FSTV0910_P2_TMGLOCK_BETA 0xf25060c0
#define FSTV0910_P2_DO_TIMING_CORR 0xf2504010
#define FSTV0910_P2_TMG_MINFREQ 0xf2500003
/* P2_RTC */
#define RSTV0910_P2_RTC 0xf251
#define FSTV0910_P2_TMGALPHA_EXP 0xf25140f0
#define FSTV0910_P2_TMGBETA_EXP 0xf251000f
/* P2_RTCS2 */
#define RSTV0910_P2_RTCS2 0xf252
#define FSTV0910_P2_TMGALPHAS2_EXP 0xf25240f0
#define FSTV0910_P2_TMGBETAS2_EXP 0xf252000f
/* P2_TMGTHRISE */
#define RSTV0910_P2_TMGTHRISE 0xf253
#define FSTV0910_P2_TMGLOCK_THRISE 0xf25300ff
/* P2_TMGTHFALL */
#define RSTV0910_P2_TMGTHFALL 0xf254
#define FSTV0910_P2_TMGLOCK_THFALL 0xf25400ff
/* P2_SFRUPRATIO */
#define RSTV0910_P2_SFRUPRATIO 0xf255
#define FSTV0910_P2_SFR_UPRATIO 0xf25500ff
/* P2_SFRLOWRATIO */
#define RSTV0910_P2_SFRLOWRATIO 0xf256
#define FSTV0910_P2_SFR_LOWRATIO 0xf25600ff
/* P2_KTTMG */
#define RSTV0910_P2_KTTMG 0xf257
#define FSTV0910_P2_KT_TMG_EXP 0xf25740f0
/* P2_KREFTMG */
#define RSTV0910_P2_KREFTMG 0xf258
#define FSTV0910_P2_KREF_TMG 0xf25800ff
/* P2_SFRSTEP */
#define RSTV0910_P2_SFRSTEP 0xf259
#define FSTV0910_P2_SFR_SCANSTEP 0xf25940f0
#define FSTV0910_P2_SFR_CENTERSTEP 0xf259000f
/* P2_TMGCFG2 */
#define RSTV0910_P2_TMGCFG2 0xf25a
#define FSTV0910_P2_DIS_AUTOSAMP 0xf25a3008
#define FSTV0910_P2_SFRRATIO_FINE 0xf25a0001
/* P2_KREFTMG2 */
#define RSTV0910_P2_KREFTMG2 0xf25b
#define FSTV0910_P2_KREF_TMG2 0xf25b00ff
/* P2_TMGCFG3 */
#define RSTV0910_P2_TMGCFG3 0xf25d
#define FSTV0910_P2_CONT_TMGCENTER 0xf25d3008
#define FSTV0910_P2_AUTO_GUP 0xf25d2004
#define FSTV0910_P2_AUTO_GLOW 0xf25d1002
/* P2_SFRINIT1 */
#define RSTV0910_P2_SFRINIT1 0xf25e
#define FSTV0910_P2_SFR_INIT1 0xf25e00ff
/* P2_SFRINIT0 */
#define RSTV0910_P2_SFRINIT0 0xf25f
#define FSTV0910_P2_SFR_INIT0 0xf25f00ff
/* P2_SFRUP1 */
#define RSTV0910_P2_SFRUP1 0xf260
#define FSTV0910_P2_SYMB_FREQ_UP1 0xf26000ff
/* P2_SFRUP0 */
#define RSTV0910_P2_SFRUP0 0xf261
#define FSTV0910_P2_SYMB_FREQ_UP0 0xf26100ff
/* P2_SFRLOW1 */
#define RSTV0910_P2_SFRLOW1 0xf262
#define FSTV0910_P2_SYMB_FREQ_LOW1 0xf26200ff
/* P2_SFRLOW0 */
#define RSTV0910_P2_SFRLOW0 0xf263
#define FSTV0910_P2_SYMB_FREQ_LOW0 0xf26300ff
/* P2_SFR3 */
#define RSTV0910_P2_SFR3 0xf264
#define FSTV0910_P2_SYMB_FREQ3 0xf26400ff
/* P2_SFR2 */
#define RSTV0910_P2_SFR2 0xf265
#define FSTV0910_P2_SYMB_FREQ2 0xf26500ff
/* P2_SFR1 */
#define RSTV0910_P2_SFR1 0xf266
#define FSTV0910_P2_SYMB_FREQ1 0xf26600ff
/* P2_SFR0 */
#define RSTV0910_P2_SFR0 0xf267
#define FSTV0910_P2_SYMB_FREQ0 0xf26700ff
/* P2_TMGREG2 */
#define RSTV0910_P2_TMGREG2 0xf268
#define FSTV0910_P2_TMGREG2 0xf26800ff
/* P2_TMGREG1 */
#define RSTV0910_P2_TMGREG1 0xf269
#define FSTV0910_P2_TMGREG1 0xf26900ff
/* P2_TMGREG0 */
#define RSTV0910_P2_TMGREG0 0xf26a
#define FSTV0910_P2_TMGREG0 0xf26a00ff
/* P2_TMGLOCK1 */
#define RSTV0910_P2_TMGLOCK1 0xf26b
#define FSTV0910_P2_TMGLOCK_LEVEL1 0xf26b01ff
/* P2_TMGLOCK0 */
#define RSTV0910_P2_TMGLOCK0 0xf26c
#define FSTV0910_P2_TMGLOCK_LEVEL0 0xf26c00ff
/* P2_TMGOBS */
#define RSTV0910_P2_TMGOBS 0xf26d
#define FSTV0910_P2_ROLLOFF_STATUS 0xf26d60c0
/* P2_EQUALCFG */
#define RSTV0910_P2_EQUALCFG 0xf26f
#define FSTV0910_P2_EQUAL_ON 0xf26f6040
#define FSTV0910_P2_MU_EQUALDFE 0xf26f0007
/* P2_EQUAI1 */
#define RSTV0910_P2_EQUAI1 0xf270
#define FSTV0910_P2_EQUA_ACCI1 0xf27001ff
/* P2_EQUAQ1 */
#define RSTV0910_P2_EQUAQ1 0xf271
#define FSTV0910_P2_EQUA_ACCQ1 0xf27101ff
/* P2_EQUAI2 */
#define RSTV0910_P2_EQUAI2 0xf272
#define FSTV0910_P2_EQUA_ACCI2 0xf27201ff
/* P2_EQUAQ2 */
#define RSTV0910_P2_EQUAQ2 0xf273
#define FSTV0910_P2_EQUA_ACCQ2 0xf27301ff
/* P2_EQUAI3 */
#define RSTV0910_P2_EQUAI3 0xf274
#define FSTV0910_P2_EQUA_ACCI3 0xf27401ff
/* P2_EQUAQ3 */
#define RSTV0910_P2_EQUAQ3 0xf275
#define FSTV0910_P2_EQUA_ACCQ3 0xf27501ff
/* P2_EQUAI4 */
#define RSTV0910_P2_EQUAI4 0xf276
#define FSTV0910_P2_EQUA_ACCI4 0xf27601ff
/* P2_EQUAQ4 */
#define RSTV0910_P2_EQUAQ4 0xf277
#define FSTV0910_P2_EQUA_ACCQ4 0xf27701ff
/* P2_EQUAI5 */
#define RSTV0910_P2_EQUAI5 0xf278
#define FSTV0910_P2_EQUA_ACCI5 0xf27801ff
/* P2_EQUAQ5 */
#define RSTV0910_P2_EQUAQ5 0xf279
#define FSTV0910_P2_EQUA_ACCQ5 0xf27901ff
/* P2_EQUAI6 */
#define RSTV0910_P2_EQUAI6 0xf27a
#define FSTV0910_P2_EQUA_ACCI6 0xf27a01ff
/* P2_EQUAQ6 */
#define RSTV0910_P2_EQUAQ6 0xf27b
#define FSTV0910_P2_EQUA_ACCQ6 0xf27b01ff
/* P2_EQUAI7 */
#define RSTV0910_P2_EQUAI7 0xf27c
#define FSTV0910_P2_EQUA_ACCI7 0xf27c01ff
/* P2_EQUAQ7 */
#define RSTV0910_P2_EQUAQ7 0xf27d
#define FSTV0910_P2_EQUA_ACCQ7 0xf27d01ff
/* P2_EQUAI8 */
#define RSTV0910_P2_EQUAI8 0xf27e
#define FSTV0910_P2_EQUA_ACCI8 0xf27e01ff
/* P2_EQUAQ8 */
#define RSTV0910_P2_EQUAQ8 0xf27f
#define FSTV0910_P2_EQUA_ACCQ8 0xf27f01ff
/* P2_NNOSDATAT1 */
#define RSTV0910_P2_NNOSDATAT1 0xf280
#define FSTV0910_P2_NOSDATAT_NORMED1 0xf28000ff
/* P2_NNOSDATAT0 */
#define RSTV0910_P2_NNOSDATAT0 0xf281
#define FSTV0910_P2_NOSDATAT_NORMED0 0xf28100ff
/* P2_NNOSDATA1 */
#define RSTV0910_P2_NNOSDATA1 0xf282
#define FSTV0910_P2_NOSDATA_NORMED1 0xf28200ff
/* P2_NNOSDATA0 */
#define RSTV0910_P2_NNOSDATA0 0xf283
#define FSTV0910_P2_NOSDATA_NORMED0 0xf28300ff
/* P2_NNOSPLHT1 */
#define RSTV0910_P2_NNOSPLHT1 0xf284
#define FSTV0910_P2_NOSPLHT_NORMED1 0xf28400ff
/* P2_NNOSPLHT0 */
#define RSTV0910_P2_NNOSPLHT0 0xf285
#define FSTV0910_P2_NOSPLHT_NORMED0 0xf28500ff
/* P2_NNOSPLH1 */
#define RSTV0910_P2_NNOSPLH1 0xf286
#define FSTV0910_P2_NOSPLH_NORMED1 0xf28600ff
/* P2_NNOSPLH0 */
#define RSTV0910_P2_NNOSPLH0 0xf287
#define FSTV0910_P2_NOSPLH_NORMED0 0xf28700ff
/* P2_NOSDATAT1 */
#define RSTV0910_P2_NOSDATAT1 0xf288
#define FSTV0910_P2_NOSDATAT_UNNORMED1 0xf28800ff
/* P2_NOSDATAT0 */
#define RSTV0910_P2_NOSDATAT0 0xf289
#define FSTV0910_P2_NOSDATAT_UNNORMED0 0xf28900ff
/* P2_NNOSFRAME1 */
#define RSTV0910_P2_NNOSFRAME1 0xf28a
#define FSTV0910_P2_NOSFRAME_NORMED1 0xf28a00ff
/* P2_NNOSFRAME0 */
#define RSTV0910_P2_NNOSFRAME0 0xf28b
#define FSTV0910_P2_NOSFRAME_NORMED0 0xf28b00ff
/* P2_NNOSRAD1 */
#define RSTV0910_P2_NNOSRAD1 0xf28c
#define FSTV0910_P2_NOSRADIAL_NORMED1 0xf28c00ff
/* P2_NNOSRAD0 */
#define RSTV0910_P2_NNOSRAD0 0xf28d
#define FSTV0910_P2_NOSRADIAL_NORMED0 0xf28d00ff
/* P2_NOSCFGF1 */
#define RSTV0910_P2_NOSCFGF1 0xf28e
#define FSTV0910_P2_LOWNOISE_MESURE 0xf28e7080
#define FSTV0910_P2_NOS_DELFRAME 0xf28e6040
#define FSTV0910_P2_NOSDATA_MODE 0xf28e4030
#define FSTV0910_P2_FRAMESEL_TYPESEL 0xf28e200c
#define FSTV0910_P2_FRAMESEL_TYPE 0xf28e0003
/* P2_NOSCFGF2 */
#define RSTV0910_P2_NOSCFGF2 0xf28f
#define FSTV0910_P2_DIS_NOSPILOTS 0xf28f7080
#define FSTV0910_P2_FRAMESEL_MODCODSEL 0xf28f5060
#define FSTV0910_P2_FRAMESEL_MODCOD 0xf28f001f
/* P2_CAR2CFG */
#define RSTV0910_P2_CAR2CFG 0xf290
#define FSTV0910_P2_ROTA2ON 0xf2902004
#define FSTV0910_P2_PH_DET_ALGO2 0xf2900003
/* P2_CFR2CFR1 */
#define RSTV0910_P2_CFR2CFR1 0xf291
#define FSTV0910_P2_EN_S2CAR2CENTER 0xf2915020
#define FSTV0910_P2_CFR2TOCFR1_BETA 0xf2910007
/* P2_CAR3CFG */
#define RSTV0910_P2_CAR3CFG 0xf292
#define FSTV0910_P2_CARRIER23_MODE 0xf29260c0
#define FSTV0910_P2_CAR3INTERM_DVBS1 0xf2925020
#define FSTV0910_P2_ABAMPLIF_MODE 0xf2923018
#define FSTV0910_P2_CARRIER3_ALPHA3DL 0xf2920007
/* P2_CFR22 */
#define RSTV0910_P2_CFR22 0xf293
#define FSTV0910_P2_CAR2_FREQ2 0xf29301ff
/* P2_CFR21 */
#define RSTV0910_P2_CFR21 0xf294
#define FSTV0910_P2_CAR2_FREQ1 0xf29400ff
/* P2_CFR20 */
#define RSTV0910_P2_CFR20 0xf295
#define FSTV0910_P2_CAR2_FREQ0 0xf29500ff
/* P2_ACLC2S2Q */
#define RSTV0910_P2_ACLC2S2Q 0xf297
#define FSTV0910_P2_ENAB_SPSKSYMB 0xf2977080
#define FSTV0910_P2_CAR2S2_Q_ALPH_M 0xf2974030
#define FSTV0910_P2_CAR2S2_Q_ALPH_E 0xf297000f
/* P2_ACLC2S28 */
#define RSTV0910_P2_ACLC2S28 0xf298
#define FSTV0910_P2_CAR2S2_8_ALPH_M 0xf2984030
#define FSTV0910_P2_CAR2S2_8_ALPH_E 0xf298000f
/* P2_ACLC2S216A */
#define RSTV0910_P2_ACLC2S216A 0xf299
#define FSTV0910_P2_CAR2S2_16A_ALPH_M 0xf2994030
#define FSTV0910_P2_CAR2S2_16A_ALPH_E 0xf299000f
/* P2_ACLC2S232A */
#define RSTV0910_P2_ACLC2S232A 0xf29a
#define FSTV0910_P2_CAR2S2_32A_ALPH_M 0xf29a4030
#define FSTV0910_P2_CAR2S2_32A_ALPH_E 0xf29a000f
/* P2_BCLC2S2Q */
#define RSTV0910_P2_BCLC2S2Q 0xf29c
#define FSTV0910_P2_CAR2S2_Q_BETA_M 0xf29c4030
#define FSTV0910_P2_CAR2S2_Q_BETA_E 0xf29c000f
/* P2_BCLC2S28 */
#define RSTV0910_P2_BCLC2S28 0xf29d
#define FSTV0910_P2_CAR2S2_8_BETA_M 0xf29d4030
#define FSTV0910_P2_CAR2S2_8_BETA_E 0xf29d000f
/* P2_BCLC2S216A */
#define RSTV0910_P2_BCLC2S216A 0xf29e
#define FSTV0910_P2_DVBS2S216A_NIP 0xf29e7080
#define FSTV0910_P2_CAR2S2_16A_BETA_M 0xf29e4030
#define FSTV0910_P2_CAR2S2_16A_BETA_E 0xf29e000f
/* P2_BCLC2S232A */
#define RSTV0910_P2_BCLC2S232A 0xf29f
#define FSTV0910_P2_DVBS2S232A_NIP 0xf29f7080
#define FSTV0910_P2_CAR2S2_32A_BETA_M 0xf29f4030
#define FSTV0910_P2_CAR2S2_32A_BETA_E 0xf29f000f
/* P2_PLROOT2 */
#define RSTV0910_P2_PLROOT2 0xf2ac
#define FSTV0910_P2_PLSCRAMB_MODE 0xf2ac200c
#define FSTV0910_P2_PLSCRAMB_ROOT2 0xf2ac0003
/* P2_PLROOT1 */
#define RSTV0910_P2_PLROOT1 0xf2ad
#define FSTV0910_P2_PLSCRAMB_ROOT1 0xf2ad00ff
/* P2_PLROOT0 */
#define RSTV0910_P2_PLROOT0 0xf2ae
#define FSTV0910_P2_PLSCRAMB_ROOT0 0xf2ae00ff
/* P2_MODCODLST0 */
#define RSTV0910_P2_MODCODLST0 0xf2b0
#define FSTV0910_P2_NACCES_MODCODCH 0xf2b00001
/* P2_MODCODLST1 */
#define RSTV0910_P2_MODCODLST1 0xf2b1
#define FSTV0910_P2_SYMBRATE_FILTER 0xf2b13008
#define FSTV0910_P2_NRESET_MODCODLST 0xf2b12004
#define FSTV0910_P2_DIS_32PSK_9_10 0xf2b10003
/* P2_MODCODLST2 */
#define RSTV0910_P2_MODCODLST2 0xf2b2
#define FSTV0910_P2_DIS_32PSK_8_9 0xf2b240f0
#define FSTV0910_P2_DIS_32PSK_5_6 0xf2b2000f
/* P2_MODCODLST3 */
#define RSTV0910_P2_MODCODLST3 0xf2b3
#define FSTV0910_P2_DIS_32PSK_4_5 0xf2b340f0
#define FSTV0910_P2_DIS_32PSK_3_4 0xf2b3000f
/* P2_MODCODLST4 */
#define RSTV0910_P2_MODCODLST4 0xf2b4
#define FSTV0910_P2_DUMMYPL_PILOT 0xf2b47080
#define FSTV0910_P2_DUMMYPL_NOPILOT 0xf2b46040
#define FSTV0910_P2_DIS_16PSK_9_10 0xf2b44030
#define FSTV0910_P2_DIS_16PSK_8_9 0xf2b4000f
/* P2_MODCODLST5 */
#define RSTV0910_P2_MODCODLST5 0xf2b5
#define FSTV0910_P2_DIS_16PSK_5_6 0xf2b540f0
#define FSTV0910_P2_DIS_16PSK_4_5 0xf2b5000f
/* P2_MODCODLST6 */
#define RSTV0910_P2_MODCODLST6 0xf2b6
#define FSTV0910_P2_DIS_16PSK_3_4 0xf2b640f0
#define FSTV0910_P2_DIS_16PSK_2_3 0xf2b6000f
/* P2_MODCODLST7 */
#define RSTV0910_P2_MODCODLST7 0xf2b7
#define FSTV0910_P2_MODCOD_NNOSFILTER 0xf2b77080
#define FSTV0910_P2_DIS_8PSK_9_10 0xf2b74030
#define FSTV0910_P2_DIS_8PSK_8_9 0xf2b7000f
/* P2_MODCODLST8 */
#define RSTV0910_P2_MODCODLST8 0xf2b8
#define FSTV0910_P2_DIS_8PSK_5_6 0xf2b840f0
#define FSTV0910_P2_DIS_8PSK_3_4 0xf2b8000f
/* P2_MODCODLST9 */
#define RSTV0910_P2_MODCODLST9 0xf2b9
#define FSTV0910_P2_DIS_8PSK_2_3 0xf2b940f0
#define FSTV0910_P2_DIS_8PSK_3_5 0xf2b9000f
/* P2_MODCODLSTA */
#define RSTV0910_P2_MODCODLSTA 0xf2ba
#define FSTV0910_P2_NOSFILTER_LIMITE 0xf2ba7080
#define FSTV0910_P2_DIS_QPSK_9_10 0xf2ba4030
#define FSTV0910_P2_DIS_QPSK_8_9 0xf2ba000f
/* P2_MODCODLSTB */
#define RSTV0910_P2_MODCODLSTB 0xf2bb
#define FSTV0910_P2_DIS_QPSK_5_6 0xf2bb40f0
#define FSTV0910_P2_DIS_QPSK_4_5 0xf2bb000f
/* P2_MODCODLSTC */
#define RSTV0910_P2_MODCODLSTC 0xf2bc
#define FSTV0910_P2_DIS_QPSK_3_4 0xf2bc40f0
#define FSTV0910_P2_DIS_QPSK_2_3 0xf2bc000f
/* P2_MODCODLSTD */
#define RSTV0910_P2_MODCODLSTD 0xf2bd
#define FSTV0910_P2_DIS_QPSK_3_5 0xf2bd40f0
#define FSTV0910_P2_DIS_QPSK_1_2 0xf2bd000f
/* P2_MODCODLSTE */
#define RSTV0910_P2_MODCODLSTE 0xf2be
#define FSTV0910_P2_DIS_QPSK_2_5 0xf2be40f0
#define FSTV0910_P2_DIS_QPSK_1_3 0xf2be000f
/* P2_MODCODLSTF */
#define RSTV0910_P2_MODCODLSTF 0xf2bf
#define FSTV0910_P2_DIS_QPSK_1_4 0xf2bf40f0
#define FSTV0910_P2_DEMOD_INVMODLST 0xf2bf3008
#define FSTV0910_P2_DEMODOUT_ENABLE 0xf2bf2004
#define FSTV0910_P2_DDEMOD_NSET 0xf2bf1002
#define FSTV0910_P2_MODCOD_NSTOCK 0xf2bf0001
/* P2_GAUSSR0 */
#define RSTV0910_P2_GAUSSR0 0xf2c0
#define FSTV0910_P2_EN_CCIMODE 0xf2c07080
#define FSTV0910_P2_R0_GAUSSIEN 0xf2c0007f
/* P2_CCIR0 */
#define RSTV0910_P2_CCIR0 0xf2c1
#define FSTV0910_P2_CCIDETECT_PLHONLY 0xf2c17080
#define FSTV0910_P2_R0_CCI 0xf2c1007f
/* P2_CCIQUANT */
#define RSTV0910_P2_CCIQUANT 0xf2c2
#define FSTV0910_P2_CCI_BETA 0xf2c250e0
#define FSTV0910_P2_CCI_QUANT 0xf2c2001f
/* P2_CCITHRES */
#define RSTV0910_P2_CCITHRES 0xf2c3
#define FSTV0910_P2_CCI_THRESHOLD 0xf2c300ff
/* P2_CCIACC */
#define RSTV0910_P2_CCIACC 0xf2c4
#define FSTV0910_P2_CCI_VALUE 0xf2c400ff
/* P2_DSTATUS4 */
#define RSTV0910_P2_DSTATUS4 0xf2c5
#define FSTV0910_P2_RAINFADE_DETECT 0xf2c57080
#define FSTV0910_P2_NOTHRES2_FAIL 0xf2c56040
#define FSTV0910_P2_NOTHRES1_FAIL 0xf2c55020
#define FSTV0910_P2_DMDPROG_ERROR 0xf2c52004
#define FSTV0910_P2_CSTENV_DETECT 0xf2c51002
#define FSTV0910_P2_DETECTION_TRIAX 0xf2c50001
/* P2_DMDRESCFG */
#define RSTV0910_P2_DMDRESCFG 0xf2c6
#define FSTV0910_P2_DMDRES_RESET 0xf2c67080
#define FSTV0910_P2_DMDRES_STRALL 0xf2c63008
#define FSTV0910_P2_DMDRES_NEWONLY 0xf2c62004
#define FSTV0910_P2_DMDRES_NOSTORE 0xf2c61002
/* P2_DMDRESADR */
#define RSTV0910_P2_DMDRESADR 0xf2c7
#define FSTV0910_P2_DMDRES_VALIDCFR 0xf2c76040
#define FSTV0910_P2_DMDRES_MEMFULL 0xf2c74030
#define FSTV0910_P2_DMDRES_RESNBR 0xf2c7000f
/* P2_DMDRESDATA7 */
#define RSTV0910_P2_DMDRESDATA7 0xf2c8
#define FSTV0910_P2_DMDRES_DATA7 0xf2c800ff
/* P2_DMDRESDATA6 */
#define RSTV0910_P2_DMDRESDATA6 0xf2c9
#define FSTV0910_P2_DMDRES_DATA6 0xf2c900ff
/* P2_DMDRESDATA5 */
#define RSTV0910_P2_DMDRESDATA5 0xf2ca
#define FSTV0910_P2_DMDRES_DATA5 0xf2ca00ff
/* P2_DMDRESDATA4 */
#define RSTV0910_P2_DMDRESDATA4 0xf2cb
#define FSTV0910_P2_DMDRES_DATA4 0xf2cb00ff
/* P2_DMDRESDATA3 */
#define RSTV0910_P2_DMDRESDATA3 0xf2cc
#define FSTV0910_P2_DMDRES_DATA3 0xf2cc00ff
/* P2_DMDRESDATA2 */
#define RSTV0910_P2_DMDRESDATA2 0xf2cd
#define FSTV0910_P2_DMDRES_DATA2 0xf2cd00ff
/* P2_DMDRESDATA1 */
#define RSTV0910_P2_DMDRESDATA1 0xf2ce
#define FSTV0910_P2_DMDRES_DATA1 0xf2ce00ff
/* P2_DMDRESDATA0 */
#define RSTV0910_P2_DMDRESDATA0 0xf2cf
#define FSTV0910_P2_DMDRES_DATA0 0xf2cf00ff
/* P2_FFEI1 */
#define RSTV0910_P2_FFEI1 0xf2d0
#define FSTV0910_P2_FFE_ACCI1 0xf2d001ff
/* P2_FFEQ1 */
#define RSTV0910_P2_FFEQ1 0xf2d1
#define FSTV0910_P2_FFE_ACCQ1 0xf2d101ff
/* P2_FFEI2 */
#define RSTV0910_P2_FFEI2 0xf2d2
#define FSTV0910_P2_FFE_ACCI2 0xf2d201ff
/* P2_FFEQ2 */
#define RSTV0910_P2_FFEQ2 0xf2d3
#define FSTV0910_P2_FFE_ACCQ2 0xf2d301ff
/* P2_FFEI3 */
#define RSTV0910_P2_FFEI3 0xf2d4
#define FSTV0910_P2_FFE_ACCI3 0xf2d401ff
/* P2_FFEQ3 */
#define RSTV0910_P2_FFEQ3 0xf2d5
#define FSTV0910_P2_FFE_ACCQ3 0xf2d501ff
/* P2_FFEI4 */
#define RSTV0910_P2_FFEI4 0xf2d6
#define FSTV0910_P2_FFE_ACCI4 0xf2d601ff
/* P2_FFEQ4 */
#define RSTV0910_P2_FFEQ4 0xf2d7
#define FSTV0910_P2_FFE_ACCQ4 0xf2d701ff
/* P2_FFECFG */
#define RSTV0910_P2_FFECFG 0xf2d8
#define FSTV0910_P2_EQUALFFE_ON 0xf2d86040
#define FSTV0910_P2_EQUAL_USEDSYMB 0xf2d84030
#define FSTV0910_P2_MU_EQUALFFE 0xf2d80007
/* P2_TNRCFG2 */
#define RSTV0910_P2_TNRCFG2 0xf2e1
#define FSTV0910_P2_TUN_IQSWAP 0xf2e17080
/* P2_SMAPCOEF7 */
#define RSTV0910_P2_SMAPCOEF7 0xf300
#define FSTV0910_P2_DIS_QSCALE 0xf3007080
#define FSTV0910_P2_SMAPCOEF_Q_LLR12 0xf300017f
/* P2_SMAPCOEF6 */
#define RSTV0910_P2_SMAPCOEF6 0xf301
#define FSTV0910_P2_DIS_AGC2SCALE 0xf3017080
#define FSTV0910_P2_ADJ_8PSKLLR1 0xf3012004
#define FSTV0910_P2_OLD_8PSKLLR1 0xf3011002
#define FSTV0910_P2_DIS_AB8PSK 0xf3010001
/* P2_SMAPCOEF5 */
#define RSTV0910_P2_SMAPCOEF5 0xf302
#define FSTV0910_P2_DIS_8SCALE 0xf3027080
#define FSTV0910_P2_SMAPCOEF_8P_LLR23 0xf302017f
/* P2_SMAPCOEF4 */
#define RSTV0910_P2_SMAPCOEF4 0xf303
#define FSTV0910_P2_SMAPCOEF_16APSK_LLR12 0xf303017f
/* P2_SMAPCOEF3 */
#define RSTV0910_P2_SMAPCOEF3 0xf304
#define FSTV0910_P2_SMAPCOEF_16APSK_LLR34 0xf304017f
/* P2_SMAPCOEF2 */
#define RSTV0910_P2_SMAPCOEF2 0xf305
#define FSTV0910_P2_SMAPCOEF_32APSK_R2R3 0xf30541f0
#define FSTV0910_P2_SMAPCOEF_32APSK_LLR2 0xf305010f
/* P2_SMAPCOEF1 */
#define RSTV0910_P2_SMAPCOEF1 0xf306
#define FSTV0910_P2_DIS_16SCALE 0xf3067080
#define FSTV0910_P2_SMAPCOEF_32_LLR34 0xf306017f
/* P2_SMAPCOEF0 */
#define RSTV0910_P2_SMAPCOEF0 0xf307
#define FSTV0910_P2_DIS_32SCALE 0xf3077080
#define FSTV0910_P2_SMAPCOEF_32_LLR15 0xf307017f
/* P2_NOSTHRES1 */
#define RSTV0910_P2_NOSTHRES1 0xf309
#define FSTV0910_P2_NOS_THRESHOLD1 0xf30900ff
/* P2_NOSTHRES2 */
#define RSTV0910_P2_NOSTHRES2 0xf30a
#define FSTV0910_P2_NOS_THRESHOLD2 0xf30a00ff
/* P2_NOSDIFF1 */
#define RSTV0910_P2_NOSDIFF1 0xf30b
#define FSTV0910_P2_NOSTHRES1_DIFF 0xf30b00ff
/* P2_RAINFADE */
#define RSTV0910_P2_RAINFADE 0xf30c
#define FSTV0910_P2_NOSTHRES_DATAT 0xf30c7080
#define FSTV0910_P2_RAINFADE_CNLIMIT 0xf30c4070
#define FSTV0910_P2_RAINFADE_TIMEOUT 0xf30c0007
/* P2_NOSRAMCFG */
#define RSTV0910_P2_NOSRAMCFG 0xf30d
#define FSTV0910_P2_NOSRAM_ACTIVATION 0xf30d4030
#define FSTV0910_P2_NOSRAM_CNRONLY 0xf30d3008
#define FSTV0910_P2_NOSRAM_LGNCNR1 0xf30d0007
/* P2_NOSRAMPOS */
#define RSTV0910_P2_NOSRAMPOS 0xf30e
#define FSTV0910_P2_NOSRAM_LGNCNR0 0xf30e40f0
#define FSTV0910_P2_NOSRAM_VALIDE 0xf30e2004
#define FSTV0910_P2_NOSRAM_CNRVAL1 0xf30e0003
/* P2_NOSRAMVAL */
#define RSTV0910_P2_NOSRAMVAL 0xf30f
#define FSTV0910_P2_NOSRAM_CNRVAL0 0xf30f00ff
/* P2_DMDPLHSTAT */
#define RSTV0910_P2_DMDPLHSTAT 0xf320
#define FSTV0910_P2_PLH_STATISTIC 0xf32000ff
/* P2_LOCKTIME3 */
#define RSTV0910_P2_LOCKTIME3 0xf322
#define FSTV0910_P2_DEMOD_LOCKTIME3 0xf32200ff
/* P2_LOCKTIME2 */
#define RSTV0910_P2_LOCKTIME2 0xf323
#define FSTV0910_P2_DEMOD_LOCKTIME2 0xf32300ff
/* P2_LOCKTIME1 */
#define RSTV0910_P2_LOCKTIME1 0xf324
#define FSTV0910_P2_DEMOD_LOCKTIME1 0xf32400ff
/* P2_LOCKTIME0 */
#define RSTV0910_P2_LOCKTIME0 0xf325
#define FSTV0910_P2_DEMOD_LOCKTIME0 0xf32500ff
/* P2_VITSCALE */
#define RSTV0910_P2_VITSCALE 0xf332
#define FSTV0910_P2_NVTH_NOSRANGE 0xf3327080
#define FSTV0910_P2_VERROR_MAXMODE 0xf3326040
#define FSTV0910_P2_NSLOWSN_LOCKED 0xf3323008
#define FSTV0910_P2_DIS_RSFLOCK 0xf3321002
/* P2_FECM */
#define RSTV0910_P2_FECM 0xf333
#define FSTV0910_P2_DSS_DVB 0xf3337080
#define FSTV0910_P2_DSS_SRCH 0xf3334010
#define FSTV0910_P2_SYNCVIT 0xf3331002
#define FSTV0910_P2_IQINV 0xf3330001
/* P2_VTH12 */
#define RSTV0910_P2_VTH12 0xf334
#define FSTV0910_P2_VTH12 0xf33400ff
/* P2_VTH23 */
#define RSTV0910_P2_VTH23 0xf335
#define FSTV0910_P2_VTH23 0xf33500ff
/* P2_VTH34 */
#define RSTV0910_P2_VTH34 0xf336
#define FSTV0910_P2_VTH34 0xf33600ff
/* P2_VTH56 */
#define RSTV0910_P2_VTH56 0xf337
#define FSTV0910_P2_VTH56 0xf33700ff
/* P2_VTH67 */
#define RSTV0910_P2_VTH67 0xf338
#define FSTV0910_P2_VTH67 0xf33800ff
/* P2_VTH78 */
#define RSTV0910_P2_VTH78 0xf339
#define FSTV0910_P2_VTH78 0xf33900ff
/* P2_VITCURPUN */
#define RSTV0910_P2_VITCURPUN 0xf33a
#define FSTV0910_P2_VIT_CURPUN 0xf33a001f
/* P2_VERROR */
#define RSTV0910_P2_VERROR 0xf33b
#define FSTV0910_P2_REGERR_VIT 0xf33b00ff
/* P2_PRVIT */
#define RSTV0910_P2_PRVIT 0xf33c
#define FSTV0910_P2_DIS_VTHLOCK 0xf33c6040
#define FSTV0910_P2_E7_8VIT 0xf33c5020
#define FSTV0910_P2_E6_7VIT 0xf33c4010
#define FSTV0910_P2_E5_6VIT 0xf33c3008
#define FSTV0910_P2_E3_4VIT 0xf33c2004
#define FSTV0910_P2_E2_3VIT 0xf33c1002
#define FSTV0910_P2_E1_2VIT 0xf33c0001
/* P2_VAVSRVIT */
#define RSTV0910_P2_VAVSRVIT 0xf33d
#define FSTV0910_P2_AMVIT 0xf33d7080
#define FSTV0910_P2_FROZENVIT 0xf33d6040
#define FSTV0910_P2_SNVIT 0xf33d4030
#define FSTV0910_P2_TOVVIT 0xf33d200c
#define FSTV0910_P2_HYPVIT 0xf33d0003
/* P2_VSTATUSVIT */
#define RSTV0910_P2_VSTATUSVIT 0xf33e
#define FSTV0910_P2_PRFVIT 0xf33e4010
#define FSTV0910_P2_LOCKEDVIT 0xf33e3008
/* P2_VTHINUSE */
#define RSTV0910_P2_VTHINUSE 0xf33f
#define FSTV0910_P2_VIT_INUSE 0xf33f00ff
/* P2_KDIV12 */
#define RSTV0910_P2_KDIV12 0xf340
#define FSTV0910_P2_K_DIVIDER_12 0xf340007f
/* P2_KDIV23 */
#define RSTV0910_P2_KDIV23 0xf341
#define FSTV0910_P2_K_DIVIDER_23 0xf341007f
/* P2_KDIV34 */
#define RSTV0910_P2_KDIV34 0xf342
#define FSTV0910_P2_K_DIVIDER_34 0xf342007f
/* P2_KDIV56 */
#define RSTV0910_P2_KDIV56 0xf343
#define FSTV0910_P2_K_DIVIDER_56 0xf343007f
/* P2_KDIV67 */
#define RSTV0910_P2_KDIV67 0xf344
#define FSTV0910_P2_K_DIVIDER_67 0xf344007f
/* P2_KDIV78 */
#define RSTV0910_P2_KDIV78 0xf345
#define FSTV0910_P2_K_DIVIDER_78 0xf345007f
/* P2_TSPIDFLT1 */
#define RSTV0910_P2_TSPIDFLT1 0xf346
#define FSTV0910_P2_PIDFLT_ADDR 0xf34600ff
/* P2_TSPIDFLT0 */
#define RSTV0910_P2_TSPIDFLT0 0xf347
#define FSTV0910_P2_PIDFLT_DATA 0xf34700ff
/* P2_PDELCTRL0 */
#define RSTV0910_P2_PDELCTRL0 0xf34f
#define FSTV0910_P2_ISIOBS_MODE 0xf34f4030
/* P2_PDELCTRL1 */
#define RSTV0910_P2_PDELCTRL1 0xf350
#define FSTV0910_P2_INV_MISMASK 0xf3507080
#define FSTV0910_P2_FILTER_EN 0xf3505020
#define FSTV0910_P2_HYSTEN 0xf3503008
#define FSTV0910_P2_HYSTSWRST 0xf3502004
#define FSTV0910_P2_EN_MIS00 0xf3501002
#define FSTV0910_P2_ALGOSWRST 0xf3500001
/* P2_PDELCTRL2 */
#define RSTV0910_P2_PDELCTRL2 0xf351
#define FSTV0910_P2_FORCE_CONTINUOUS 0xf3517080
#define FSTV0910_P2_RESET_UPKO_COUNT 0xf3516040
#define FSTV0910_P2_USER_PKTDELIN_NB 0xf3515020
#define FSTV0910_P2_FRAME_MODE 0xf3511002
/* P2_HYSTTHRESH */
#define RSTV0910_P2_HYSTTHRESH 0xf354
#define FSTV0910_P2_DELIN_LOCKTHRES 0xf35440f0
#define FSTV0910_P2_DELIN_UNLOCKTHRES 0xf354000f
/* P2_UPLCCST0 */
#define RSTV0910_P2_UPLCCST0 0xf358
#define FSTV0910_P2_UPL_CST0 0xf35830f8
#define FSTV0910_P2_UPL_MODE 0xf3580007
/* P2_ISIENTRY */
#define RSTV0910_P2_ISIENTRY 0xf35e
#define FSTV0910_P2_ISI_ENTRY 0xf35e00ff
/* P2_ISIBITENA */
#define RSTV0910_P2_ISIBITENA 0xf35f
#define FSTV0910_P2_ISI_BIT_EN 0xf35f00ff
/* P2_MATSTR1 */
#define RSTV0910_P2_MATSTR1 0xf360
#define FSTV0910_P2_MATYPE_CURRENT1 0xf36000ff
/* P2_MATSTR0 */
#define RSTV0910_P2_MATSTR0 0xf361
#define FSTV0910_P2_MATYPE_CURRENT0 0xf36100ff
/* P2_UPLSTR1 */
#define RSTV0910_P2_UPLSTR1 0xf362
#define FSTV0910_P2_UPL_CURRENT1 0xf36200ff
/* P2_UPLSTR0 */
#define RSTV0910_P2_UPLSTR0 0xf363
#define FSTV0910_P2_UPL_CURRENT0 0xf36300ff
/* P2_DFLSTR1 */
#define RSTV0910_P2_DFLSTR1 0xf364
#define FSTV0910_P2_DFL_CURRENT1 0xf36400ff
/* P2_DFLSTR0 */
#define RSTV0910_P2_DFLSTR0 0xf365
#define FSTV0910_P2_DFL_CURRENT0 0xf36500ff
/* P2_SYNCSTR */
#define RSTV0910_P2_SYNCSTR 0xf366
#define FSTV0910_P2_SYNC_CURRENT 0xf36600ff
/* P2_SYNCDSTR1 */
#define RSTV0910_P2_SYNCDSTR1 0xf367
#define FSTV0910_P2_SYNCD_CURRENT1 0xf36700ff
/* P2_SYNCDSTR0 */
#define RSTV0910_P2_SYNCDSTR0 0xf368
#define FSTV0910_P2_SYNCD_CURRENT0 0xf36800ff
/* P2_PDELSTATUS1 */
#define RSTV0910_P2_PDELSTATUS1 0xf369
#define FSTV0910_P2_PKTDELIN_DELOCK 0xf3697080
#define FSTV0910_P2_SYNCDUPDFL_BADDFL 0xf3696040
#define FSTV0910_P2_UNACCEPTED_STREAM 0xf3694010
#define FSTV0910_P2_BCH_ERROR_FLAG 0xf3693008
#define FSTV0910_P2_PKTDELIN_LOCK 0xf3691002
#define FSTV0910_P2_FIRST_LOCK 0xf3690001
/* P2_PDELSTATUS2 */
#define RSTV0910_P2_PDELSTATUS2 0xf36a
#define FSTV0910_P2_FRAME_MODCOD 0xf36a207c
#define FSTV0910_P2_FRAME_TYPE 0xf36a0003
/* P2_BBFCRCKO1 */
#define RSTV0910_P2_BBFCRCKO1 0xf36b
#define FSTV0910_P2_BBHCRC_KOCNT1 0xf36b00ff
/* P2_BBFCRCKO0 */
#define RSTV0910_P2_BBFCRCKO0 0xf36c
#define FSTV0910_P2_BBHCRC_KOCNT0 0xf36c00ff
/* P2_UPCRCKO1 */
#define RSTV0910_P2_UPCRCKO1 0xf36d
#define FSTV0910_P2_PKTCRC_KOCNT1 0xf36d00ff
/* P2_UPCRCKO0 */
#define RSTV0910_P2_UPCRCKO0 0xf36e
#define FSTV0910_P2_PKTCRC_KOCNT0 0xf36e00ff
/* P2_PDELCTRL3 */
#define RSTV0910_P2_PDELCTRL3 0xf36f
#define FSTV0910_P2_NOFIFO_BCHERR 0xf36f5020
#define FSTV0910_P2_PKTDELIN_DELACMERR 0xf36f4010
/* P2_TSSTATEM */
#define RSTV0910_P2_TSSTATEM 0xf370
#define FSTV0910_P2_TSDIL_ON 0xf3707080
#define FSTV0910_P2_TSRS_ON 0xf3705020
#define FSTV0910_P2_TSDESCRAMB_ON 0xf3704010
#define FSTV0910_P2_TSFRAME_MODE 0xf3703008
#define FSTV0910_P2_TS_DISABLE 0xf3702004
#define FSTV0910_P2_TSACM_MODE 0xf3701002
#define FSTV0910_P2_TSOUT_NOSYNC 0xf3700001
/* P2_TSSTATEL */
#define RSTV0910_P2_TSSTATEL 0xf371
#define FSTV0910_P2_TSNOSYNCBYTE 0xf3717080
#define FSTV0910_P2_TSPARITY_ON 0xf3716040
#define FSTV0910_P2_TSISSYI_ON 0xf3713008
#define FSTV0910_P2_TSNPD_ON 0xf3712004
#define FSTV0910_P2_TSCRC8_ON 0xf3711002
#define FSTV0910_P2_TSDSS_PACKET 0xf3710001
/* P2_TSCFGH */
#define RSTV0910_P2_TSCFGH 0xf372
#define FSTV0910_P2_TSFIFO_DVBCI 0xf3727080
#define FSTV0910_P2_TSFIFO_SERIAL 0xf3726040
#define FSTV0910_P2_TSFIFO_TEIUPDATE 0xf3725020
#define FSTV0910_P2_TSFIFO_DUTY50 0xf3724010
#define FSTV0910_P2_TSFIFO_HSGNLOUT 0xf3723008
#define FSTV0910_P2_TSFIFO_ERRMODE 0xf3721006
#define FSTV0910_P2_RST_HWARE 0xf3720001
/* P2_TSCFGM */
#define RSTV0910_P2_TSCFGM 0xf373
#define FSTV0910_P2_TSFIFO_MANSPEED 0xf37360c0
#define FSTV0910_P2_TSFIFO_PERMDATA 0xf3735020
#define FSTV0910_P2_TSFIFO_NONEWSGNL 0xf3734010
#define FSTV0910_P2_TSFIFO_INVDATA 0xf3730001
/* P2_TSCFGL */
#define RSTV0910_P2_TSCFGL 0xf374
#define FSTV0910_P2_TSFIFO_BCLKDEL1CK 0xf37460c0
#define FSTV0910_P2_BCHERROR_MODE 0xf3744030
#define FSTV0910_P2_TSFIFO_NSGNL2DATA 0xf3743008
#define FSTV0910_P2_TSFIFO_EMBINDVB 0xf3742004
#define FSTV0910_P2_TSFIFO_BITSPEED 0xf3740003
/* P2_TSSYNC */
#define RSTV0910_P2_TSSYNC 0xf375
#define FSTV0910_P2_TSFIFO_SYNCMODE 0xf3753018
/* P2_TSINSDELH */
#define RSTV0910_P2_TSINSDELH 0xf376
#define FSTV0910_P2_TSDEL_SYNCBYTE 0xf3767080
#define FSTV0910_P2_TSDEL_XXHEADER 0xf3766040
#define FSTV0910_P2_TSDEL_DATAFIELD 0xf3764010
#define FSTV0910_P2_TSINSDEL_RSPARITY 0xf3761002
#define FSTV0910_P2_TSINSDEL_CRC8 0xf3760001
/* P2_TSINSDELM */
#define RSTV0910_P2_TSINSDELM 0xf377
#define FSTV0910_P2_TSINS_EMODCOD 0xf3774010
#define FSTV0910_P2_TSINS_TOKEN 0xf3773008
#define FSTV0910_P2_TSINS_XXXERR 0xf3772004
#define FSTV0910_P2_TSINS_MATYPE 0xf3771002
#define FSTV0910_P2_TSINS_UPL 0xf3770001
/* P2_TSINSDELL */
#define RSTV0910_P2_TSINSDELL 0xf378
#define FSTV0910_P2_TSINS_DFL 0xf3787080
#define FSTV0910_P2_TSINS_SYNCD 0xf3786040
#define FSTV0910_P2_TSINS_BLOCLEN 0xf3785020
#define FSTV0910_P2_TSINS_SIGPCOUNT 0xf3784010
#define FSTV0910_P2_TSINS_FIFO 0xf3783008
#define FSTV0910_P2_TSINS_REALPACK 0xf3782004
#define FSTV0910_P2_TSINS_TSCONFIG 0xf3781002
#define FSTV0910_P2_TSINS_LATENCY 0xf3780001
/* P2_TSDIVN */
#define RSTV0910_P2_TSDIVN 0xf379
#define FSTV0910_P2_TSFIFO_SPEEDMODE 0xf37960c0
#define FSTV0910_P2_TSFIFO_RISEOK 0xf3790007
/* P2_TSCFG4 */
#define RSTV0910_P2_TSCFG4 0xf37a
#define FSTV0910_P2_TSFIFO_TSSPEEDMODE 0xf37a60c0
/* P2_TSSPEED */
#define RSTV0910_P2_TSSPEED 0xf380
#define FSTV0910_P2_TSFIFO_OUTSPEED 0xf38000ff
/* P2_TSSTATUS */
#define RSTV0910_P2_TSSTATUS 0xf381
#define FSTV0910_P2_TSFIFO_LINEOK 0xf3817080
#define FSTV0910_P2_TSFIFO_ERROR 0xf3816040
#define FSTV0910_P2_TSFIFO_NOSYNC 0xf3814010
#define FSTV0910_P2_TSREGUL_ERROR 0xf3812004
#define FSTV0910_P2_DIL_READY 0xf3810001
/* P2_TSSTATUS2 */
#define RSTV0910_P2_TSSTATUS2 0xf382
#define FSTV0910_P2_TSFIFO_DEMODSEL 0xf3827080
#define FSTV0910_P2_TSFIFOSPEED_STORE 0xf3826040
#define FSTV0910_P2_DILXX_RESET 0xf3825020
#define FSTV0910_P2_SCRAMBDETECT 0xf3821002
/* P2_TSBITRATE1 */
#define RSTV0910_P2_TSBITRATE1 0xf383
#define FSTV0910_P2_TSFIFO_BITRATE1 0xf38300ff
/* P2_TSBITRATE0 */
#define RSTV0910_P2_TSBITRATE0 0xf384
#define FSTV0910_P2_TSFIFO_BITRATE0 0xf38400ff
/* P2_TSPACKLEN1 */
#define RSTV0910_P2_TSPACKLEN1 0xf385
#define FSTV0910_P2_TSFIFO_PACKCPT 0xf38550e0
/* P2_TSDLY2 */
#define RSTV0910_P2_TSDLY2 0xf389
#define FSTV0910_P2_SOFFIFO_LATENCY2 0xf389000f
/* P2_TSDLY1 */
#define RSTV0910_P2_TSDLY1 0xf38a
#define FSTV0910_P2_SOFFIFO_LATENCY1 0xf38a00ff
/* P2_TSDLY0 */
#define RSTV0910_P2_TSDLY0 0xf38b
#define FSTV0910_P2_SOFFIFO_LATENCY0 0xf38b00ff
/* P2_TSNPDAV */
#define RSTV0910_P2_TSNPDAV 0xf38c
#define FSTV0910_P2_TSNPD_AVERAGE 0xf38c00ff
/* P2_TSBUFSTAT2 */
#define RSTV0910_P2_TSBUFSTAT2 0xf38d
#define FSTV0910_P2_TSISCR_3BYTES 0xf38d7080
#define FSTV0910_P2_TSISCR_NEWDATA 0xf38d6040
#define FSTV0910_P2_TSISCR_BUFSTAT2 0xf38d003f
/* P2_TSBUFSTAT1 */
#define RSTV0910_P2_TSBUFSTAT1 0xf38e
#define FSTV0910_P2_TSISCR_BUFSTAT1 0xf38e00ff
/* P2_TSBUFSTAT0 */
#define RSTV0910_P2_TSBUFSTAT0 0xf38f
#define FSTV0910_P2_TSISCR_BUFSTAT0 0xf38f00ff
/* P2_TSDEBUGL */
#define RSTV0910_P2_TSDEBUGL 0xf391
#define FSTV0910_P2_TSFIFO_ERROR_EVNT 0xf3912004
#define FSTV0910_P2_TSFIFO_OVERFLOWM 0xf3910001
/* P2_TSDLYSET2 */
#define RSTV0910_P2_TSDLYSET2 0xf392
#define FSTV0910_P2_SOFFIFO_OFFSET 0xf39260c0
#define FSTV0910_P2_HYSTERESIS_THRESHOLD 0xf3924030
#define FSTV0910_P2_SOFFIFO_SYMBOFFS2 0xf392000f
/* P2_TSDLYSET1 */
#define RSTV0910_P2_TSDLYSET1 0xf393
#define FSTV0910_P2_SOFFIFO_SYMBOFFS1 0xf39300ff
/* P2_TSDLYSET0 */
#define RSTV0910_P2_TSDLYSET0 0xf394
#define FSTV0910_P2_SOFFIFO_SYMBOFFS0 0xf39400ff
/* P2_ERRCTRL1 */
#define RSTV0910_P2_ERRCTRL1 0xf398
#define FSTV0910_P2_ERR_SOURCE1 0xf39840f0
#define FSTV0910_P2_NUM_EVENT1 0xf3980007
/* P2_ERRCNT12 */
#define RSTV0910_P2_ERRCNT12 0xf399
#define FSTV0910_P2_ERRCNT1_OLDVALUE 0xf3997080
#define FSTV0910_P2_ERR_CNT12 0xf399007f
/* P2_ERRCNT11 */
#define RSTV0910_P2_ERRCNT11 0xf39a
#define FSTV0910_P2_ERR_CNT11 0xf39a00ff
/* P2_ERRCNT10 */
#define RSTV0910_P2_ERRCNT10 0xf39b
#define FSTV0910_P2_ERR_CNT10 0xf39b00ff
/* P2_ERRCTRL2 */
#define RSTV0910_P2_ERRCTRL2 0xf39c
#define FSTV0910_P2_ERR_SOURCE2 0xf39c40f0
#define FSTV0910_P2_NUM_EVENT2 0xf39c0007
/* P2_ERRCNT22 */
#define RSTV0910_P2_ERRCNT22 0xf39d
#define FSTV0910_P2_ERRCNT2_OLDVALUE 0xf39d7080
#define FSTV0910_P2_ERR_CNT22 0xf39d007f
/* P2_ERRCNT21 */
#define RSTV0910_P2_ERRCNT21 0xf39e
#define FSTV0910_P2_ERR_CNT21 0xf39e00ff
/* P2_ERRCNT20 */
#define RSTV0910_P2_ERRCNT20 0xf39f
#define FSTV0910_P2_ERR_CNT20 0xf39f00ff
/* P2_FECSPY */
#define RSTV0910_P2_FECSPY 0xf3a0
#define FSTV0910_P2_SPY_ENABLE 0xf3a07080
#define FSTV0910_P2_NO_SYNCBYTE 0xf3a06040
#define FSTV0910_P2_SERIAL_MODE 0xf3a05020
#define FSTV0910_P2_UNUSUAL_PACKET 0xf3a04010
#define FSTV0910_P2_BERMETER_DATAMODE 0xf3a0200c
#define FSTV0910_P2_BERMETER_LMODE 0xf3a01002
#define FSTV0910_P2_BERMETER_RESET 0xf3a00001
/* P2_FSPYCFG */
#define RSTV0910_P2_FSPYCFG 0xf3a1
#define FSTV0910_P2_FECSPY_INPUT 0xf3a160c0
#define FSTV0910_P2_RST_ON_ERROR 0xf3a15020
#define FSTV0910_P2_ONE_SHOT 0xf3a14010
#define FSTV0910_P2_I2C_MODE 0xf3a1200c
#define FSTV0910_P2_SPY_HYSTERESIS 0xf3a10003
/* P2_FSPYDATA */
#define RSTV0910_P2_FSPYDATA 0xf3a2
#define FSTV0910_P2_SPY_STUFFING 0xf3a27080
#define FSTV0910_P2_SPY_CNULLPKT 0xf3a25020
#define FSTV0910_P2_SPY_OUTDATA_MODE 0xf3a2001f
/* P2_FSPYOUT */
#define RSTV0910_P2_FSPYOUT 0xf3a3
#define FSTV0910_P2_FSPY_DIRECT 0xf3a37080
#define FSTV0910_P2_STUFF_MODE 0xf3a30007
/* P2_FSTATUS */
#define RSTV0910_P2_FSTATUS 0xf3a4
#define FSTV0910_P2_SPY_ENDSIM 0xf3a47080
#define FSTV0910_P2_VALID_SIM 0xf3a46040
#define FSTV0910_P2_FOUND_SIGNAL 0xf3a45020
#define FSTV0910_P2_DSS_SYNCBYTE 0xf3a44010
#define FSTV0910_P2_RESULT_STATE 0xf3a4000f
/* P2_FBERCPT4 */
#define RSTV0910_P2_FBERCPT4 0xf3a8
#define FSTV0910_P2_FBERMETER_CPT4 0xf3a800ff
/* P2_FBERCPT3 */
#define RSTV0910_P2_FBERCPT3 0xf3a9
#define FSTV0910_P2_FBERMETER_CPT3 0xf3a900ff
/* P2_FBERCPT2 */
#define RSTV0910_P2_FBERCPT2 0xf3aa
#define FSTV0910_P2_FBERMETER_CPT2 0xf3aa00ff
/* P2_FBERCPT1 */
#define RSTV0910_P2_FBERCPT1 0xf3ab
#define FSTV0910_P2_FBERMETER_CPT1 0xf3ab00ff
/* P2_FBERCPT0 */
#define RSTV0910_P2_FBERCPT0 0xf3ac
#define FSTV0910_P2_FBERMETER_CPT0 0xf3ac00ff
/* P2_FBERERR2 */
#define RSTV0910_P2_FBERERR2 0xf3ad
#define FSTV0910_P2_FBERMETER_ERR2 0xf3ad00ff
/* P2_FBERERR1 */
#define RSTV0910_P2_FBERERR1 0xf3ae
#define FSTV0910_P2_FBERMETER_ERR1 0xf3ae00ff
/* P2_FBERERR0 */
#define RSTV0910_P2_FBERERR0 0xf3af
#define FSTV0910_P2_FBERMETER_ERR0 0xf3af00ff
/* P2_FSPYBER */
#define RSTV0910_P2_FSPYBER 0xf3b2
#define FSTV0910_P2_FSPYBER_SYNCBYTE 0xf3b24010
#define FSTV0910_P2_FSPYBER_UNSYNC 0xf3b23008
#define FSTV0910_P2_FSPYBER_CTIME 0xf3b20007
/* P2_SFERROR */
#define RSTV0910_P2_SFERROR 0xf3c1
#define FSTV0910_P2_SFEC_REGERR_VIT 0xf3c100ff
/* P2_SFECSTATUS */
#define RSTV0910_P2_SFECSTATUS 0xf3c3
#define FSTV0910_P2_SFEC_ON 0xf3c37080
#define FSTV0910_P2_SFEC_OFF 0xf3c36040
#define FSTV0910_P2_LOCKEDSFEC 0xf3c33008
#define FSTV0910_P2_SFEC_DELOCK 0xf3c32004
#define FSTV0910_P2_SFEC_DEMODSEL 0xf3c31002
#define FSTV0910_P2_SFEC_OVFON 0xf3c30001
/* P2_SFKDIV12 */
#define RSTV0910_P2_SFKDIV12 0xf3c4
#define FSTV0910_P2_SFECKDIV12_MAN 0xf3c47080
/* P2_SFKDIV23 */
#define RSTV0910_P2_SFKDIV23 0xf3c5
#define FSTV0910_P2_SFECKDIV23_MAN 0xf3c57080
/* P2_SFKDIV34 */
#define RSTV0910_P2_SFKDIV34 0xf3c6
#define FSTV0910_P2_SFECKDIV34_MAN 0xf3c67080
/* P2_SFKDIV56 */
#define RSTV0910_P2_SFKDIV56 0xf3c7
#define FSTV0910_P2_SFECKDIV56_MAN 0xf3c77080
/* P2_SFKDIV67 */
#define RSTV0910_P2_SFKDIV67 0xf3c8
#define FSTV0910_P2_SFECKDIV67_MAN 0xf3c87080
/* P2_SFKDIV78 */
#define RSTV0910_P2_SFKDIV78 0xf3c9
#define FSTV0910_P2_SFECKDIV78_MAN 0xf3c97080
/* P2_SFSTATUS */
#define RSTV0910_P2_SFSTATUS 0xf3cc
#define FSTV0910_P2_SFEC_LINEOK 0xf3cc7080
#define FSTV0910_P2_SFEC_ERROR 0xf3cc6040
#define FSTV0910_P2_SFEC_DATA7 0xf3cc5020
#define FSTV0910_P2_SFEC_PKTDNBRFAIL 0xf3cc4010
#define FSTV0910_P2_TSSFEC_DEMODSEL 0xf3cc3008
#define FSTV0910_P2_SFEC_NOSYNC 0xf3cc2004
#define FSTV0910_P2_SFEC_UNREGULA 0xf3cc1002
#define FSTV0910_P2_SFEC_READY 0xf3cc0001
/* P2_SFDLYSET2 */
#define RSTV0910_P2_SFDLYSET2 0xf3d0
#define FSTV0910_P2_SFEC_DISABLE 0xf3d01002
/* P2_SFERRCTRL */
#define RSTV0910_P2_SFERRCTRL 0xf3d8
#define FSTV0910_P2_SFEC_ERR_SOURCE 0xf3d840f0
#define FSTV0910_P2_SFEC_NUM_EVENT 0xf3d80007
/* P2_SFERRCNT2 */
#define RSTV0910_P2_SFERRCNT2 0xf3d9
#define FSTV0910_P2_SFERRC_OLDVALUE 0xf3d97080
#define FSTV0910_P2_SFEC_ERR_CNT2 0xf3d9007f
/* P2_SFERRCNT1 */
#define RSTV0910_P2_SFERRCNT1 0xf3da
#define FSTV0910_P2_SFEC_ERR_CNT1 0xf3da00ff
/* P2_SFERRCNT0 */
#define RSTV0910_P2_SFERRCNT0 0xf3db
#define FSTV0910_P2_SFEC_ERR_CNT0 0xf3db00ff
/* P1_IQCONST */
#define RSTV0910_P1_IQCONST 0xf400
#define FSTV0910_P1_CONSTEL_SELECT 0xf4005060
#define FSTV0910_P1_IQSYMB_SEL 0xf400001f
/* P1_NOSCFG */
#define RSTV0910_P1_NOSCFG 0xf401
#define FSTV0910_P1_DUMMYPL_NOSDATA 0xf4015020
#define FSTV0910_P1_NOSPLH_BETA 0xf4013018
#define FSTV0910_P1_NOSDATA_BETA 0xf4010007
/* P1_ISYMB */
#define RSTV0910_P1_ISYMB 0xf402
#define FSTV0910_P1_I_SYMBOL 0xf40201ff
/* P1_QSYMB */
#define RSTV0910_P1_QSYMB 0xf403
#define FSTV0910_P1_Q_SYMBOL 0xf40301ff
/* P1_AGC1CFG */
#define RSTV0910_P1_AGC1CFG 0xf404
#define FSTV0910_P1_DC_FROZEN 0xf4047080
#define FSTV0910_P1_DC_CORRECT 0xf4046040
#define FSTV0910_P1_AMM_FROZEN 0xf4045020
#define FSTV0910_P1_AMM_CORRECT 0xf4044010
#define FSTV0910_P1_QUAD_FROZEN 0xf4043008
#define FSTV0910_P1_QUAD_CORRECT 0xf4042004
/* P1_AGC1CN */
#define RSTV0910_P1_AGC1CN 0xf406
#define FSTV0910_P1_AGC1_LOCKED 0xf4067080
#define FSTV0910_P1_AGC1_MINPOWER 0xf4064010
#define FSTV0910_P1_AGCOUT_FAST 0xf4063008
#define FSTV0910_P1_AGCIQ_BETA 0xf4060007
/* P1_AGC1REF */
#define RSTV0910_P1_AGC1REF 0xf407
#define FSTV0910_P1_AGCIQ_REF 0xf40700ff
/* P1_IDCCOMP */
#define RSTV0910_P1_IDCCOMP 0xf408
#define FSTV0910_P1_IAVERAGE_ADJ 0xf40801ff
/* P1_QDCCOMP */
#define RSTV0910_P1_QDCCOMP 0xf409
#define FSTV0910_P1_QAVERAGE_ADJ 0xf40901ff
/* P1_POWERI */
#define RSTV0910_P1_POWERI 0xf40a
#define FSTV0910_P1_POWER_I 0xf40a00ff
/* P1_POWERQ */
#define RSTV0910_P1_POWERQ 0xf40b
#define FSTV0910_P1_POWER_Q 0xf40b00ff
/* P1_AGC1AMM */
#define RSTV0910_P1_AGC1AMM 0xf40c
#define FSTV0910_P1_AMM_VALUE 0xf40c00ff
/* P1_AGC1QUAD */
#define RSTV0910_P1_AGC1QUAD 0xf40d
#define FSTV0910_P1_QUAD_VALUE 0xf40d01ff
/* P1_AGCIQIN1 */
#define RSTV0910_P1_AGCIQIN1 0xf40e
#define FSTV0910_P1_AGCIQ_VALUE1 0xf40e00ff
/* P1_AGCIQIN0 */
#define RSTV0910_P1_AGCIQIN0 0xf40f
#define FSTV0910_P1_AGCIQ_VALUE0 0xf40f00ff
/* P1_DEMOD */
#define RSTV0910_P1_DEMOD 0xf410
#define FSTV0910_P1_MANUALS2_ROLLOFF 0xf4107080
#define FSTV0910_P1_SPECINV_CONTROL 0xf4104030
#define FSTV0910_P1_MANUALSX_ROLLOFF 0xf4102004
#define FSTV0910_P1_ROLLOFF_CONTROL 0xf4100003
/* P1_DMDMODCOD */
#define RSTV0910_P1_DMDMODCOD 0xf411
#define FSTV0910_P1_MANUAL_MODCOD 0xf4117080
#define FSTV0910_P1_DEMOD_MODCOD 0xf411207c
#define FSTV0910_P1_DEMOD_TYPE 0xf4110003
/* P1_DSTATUS */
#define RSTV0910_P1_DSTATUS 0xf412
#define FSTV0910_P1_CAR_LOCK 0xf4127080
#define FSTV0910_P1_TMGLOCK_QUALITY 0xf4125060
#define FSTV0910_P1_LOCK_DEFINITIF 0xf4123008
#define FSTV0910_P1_OVADC_DETECT 0xf4120001
/* P1_DSTATUS2 */
#define RSTV0910_P1_DSTATUS2 0xf413
#define FSTV0910_P1_DEMOD_DELOCK 0xf4137080
#define FSTV0910_P1_MODCODRQ_SYNCTAG 0xf4135020
#define FSTV0910_P1_POLYPH_SATEVENT 0xf4134010
#define FSTV0910_P1_AGC1_NOSIGNALACK 0xf4133008
#define FSTV0910_P1_AGC2_OVERFLOW 0xf4132004
#define FSTV0910_P1_CFR_OVERFLOW 0xf4131002
#define FSTV0910_P1_GAMMA_OVERUNDER 0xf4130001
/* P1_DMDCFGMD */
#define RSTV0910_P1_DMDCFGMD 0xf414
#define FSTV0910_P1_DVBS2_ENABLE 0xf4147080
#define FSTV0910_P1_DVBS1_ENABLE 0xf4146040
#define FSTV0910_P1_SCAN_ENABLE 0xf4144010
#define FSTV0910_P1_CFR_AUTOSCAN 0xf4143008
#define FSTV0910_P1_TUN_RNG 0xf4140003
/* P1_DMDCFG2 */
#define RSTV0910_P1_DMDCFG2 0xf415
#define FSTV0910_P1_S1S2_SEQUENTIAL 0xf4156040
#define FSTV0910_P1_INFINITE_RELOCK 0xf4154010
/* P1_DMDISTATE */
#define RSTV0910_P1_DMDISTATE 0xf416
#define FSTV0910_P1_I2C_NORESETDMODE 0xf4167080
#define FSTV0910_P1_I2C_DEMOD_MODE 0xf416001f
/* P1_DMDT0M */
#define RSTV0910_P1_DMDT0M 0xf417
#define FSTV0910_P1_DMDT0_MIN 0xf41700ff
/* P1_DMDSTATE */
#define RSTV0910_P1_DMDSTATE 0xf41b
#define FSTV0910_P1_HEADER_MODE 0xf41b5060
/* P1_DMDFLYW */
#define RSTV0910_P1_DMDFLYW 0xf41c
#define FSTV0910_P1_I2C_IRQVAL 0xf41c40f0
#define FSTV0910_P1_FLYWHEEL_CPT 0xf41c000f
/* P1_DSTATUS3 */
#define RSTV0910_P1_DSTATUS3 0xf41d
#define FSTV0910_P1_CFR_ZIGZAG 0xf41d7080
#define FSTV0910_P1_DEMOD_CFGMODE 0xf41d5060
#define FSTV0910_P1_GAMMA_LOWBAUDRATE 0xf41d4010
/* P1_DMDCFG3 */
#define RSTV0910_P1_DMDCFG3 0xf41e
#define FSTV0910_P1_NOSTOP_FIFOFULL 0xf41e3008
/* P1_DMDCFG4 */
#define RSTV0910_P1_DMDCFG4 0xf41f
#define FSTV0910_P1_DIS_VITLOCK 0xf41f7080
#define FSTV0910_P1_DIS_CLKENABLE 0xf41f2004
/* P1_CORRELMANT */
#define RSTV0910_P1_CORRELMANT 0xf420
#define FSTV0910_P1_CORREL_MANT 0xf42000ff
/* P1_CORRELABS */
#define RSTV0910_P1_CORRELABS 0xf421
#define FSTV0910_P1_CORREL_ABS 0xf42100ff
/* P1_CORRELEXP */
#define RSTV0910_P1_CORRELEXP 0xf422
#define FSTV0910_P1_CORREL_ABSEXP 0xf42240f0
#define FSTV0910_P1_CORREL_EXP 0xf422000f
/* P1_PLHMODCOD */
#define RSTV0910_P1_PLHMODCOD 0xf424
#define FSTV0910_P1_SPECINV_DEMOD 0xf4247080
#define FSTV0910_P1_PLH_MODCOD 0xf424207c
#define FSTV0910_P1_PLH_TYPE 0xf4240003
/* P1_DMDREG */
#define RSTV0910_P1_DMDREG 0xf425
#define FSTV0910_P1_DECIM_PLFRAMES 0xf4250001
/* P1_AGCNADJ */
#define RSTV0910_P1_AGCNADJ 0xf426
#define FSTV0910_P1_RADJOFF_AGC2 0xf4267080
#define FSTV0910_P1_RADJOFF_AGC1 0xf4266040
#define FSTV0910_P1_AGC_NADJ 0xf426013f
/* P1_AGCKS */
#define RSTV0910_P1_AGCKS 0xf427
#define FSTV0910_P1_RSADJ_MANUALCFG 0xf4277080
#define FSTV0910_P1_RSADJ_CCMMODE 0xf4276040
#define FSTV0910_P1_RADJ_SPSK 0xf427013f
/* P1_AGCKQ */
#define RSTV0910_P1_AGCKQ 0xf428
#define FSTV0910_P1_RADJON_DVBS1 0xf4286040
#define FSTV0910_P1_RADJ_QPSK 0xf428013f
/* P1_AGCK8 */
#define RSTV0910_P1_AGCK8 0xf429
#define FSTV0910_P1_RADJ_8PSK 0xf429013f
/* P1_AGCK16 */
#define RSTV0910_P1_AGCK16 0xf42a
#define FSTV0910_P1_R2ADJOFF_16APSK 0xf42a6040
#define FSTV0910_P1_R1ADJOFF_16APSK 0xf42a5020
#define FSTV0910_P1_RADJ_16APSK 0xf42a011f
/* P1_AGCK32 */
#define RSTV0910_P1_AGCK32 0xf42b
#define FSTV0910_P1_R3ADJOFF_32APSK 0xf42b7080
#define FSTV0910_P1_R2ADJOFF_32APSK 0xf42b6040
#define FSTV0910_P1_R1ADJOFF_32APSK 0xf42b5020
#define FSTV0910_P1_RADJ_32APSK 0xf42b011f
/* P1_AGC2O */
#define RSTV0910_P1_AGC2O 0xf42c
#define FSTV0910_P1_CSTENV_MODE 0xf42c60c0
#define FSTV0910_P1_AGC2_COEF 0xf42c0007
/* P1_AGC2REF */
#define RSTV0910_P1_AGC2REF 0xf42d
#define FSTV0910_P1_AGC2_REF 0xf42d00ff
/* P1_AGC1ADJ */
#define RSTV0910_P1_AGC1ADJ 0xf42e
#define FSTV0910_P1_AGC1_ADJUSTED 0xf42e007f
/* P1_AGCRSADJ */
#define RSTV0910_P1_AGCRSADJ 0xf42f
#define FSTV0910_P1_RS_ADJUSTED 0xf42f007f
/* P1_AGCRQADJ */
#define RSTV0910_P1_AGCRQADJ 0xf430
#define FSTV0910_P1_RQ_ADJUSTED 0xf430007f
/* P1_AGCR8ADJ */
#define RSTV0910_P1_AGCR8ADJ 0xf431
#define FSTV0910_P1_R8_ADJUSTED 0xf431007f
/* P1_AGCR1ADJ */
#define RSTV0910_P1_AGCR1ADJ 0xf432
#define FSTV0910_P1_R1_ADJUSTED 0xf432007f
/* P1_AGCR2ADJ */
#define RSTV0910_P1_AGCR2ADJ 0xf433
#define FSTV0910_P1_R2_ADJUSTED 0xf433007f
/* P1_AGCR3ADJ */
#define RSTV0910_P1_AGCR3ADJ 0xf434
#define FSTV0910_P1_R3_ADJUSTED 0xf434007f
/* P1_AGCREFADJ */
#define RSTV0910_P1_AGCREFADJ 0xf435
#define FSTV0910_P1_AGC2REF_ADJUSTED 0xf435007f
/* P1_AGC2I1 */
#define RSTV0910_P1_AGC2I1 0xf436
#define FSTV0910_P1_AGC2_INTEGRATOR1 0xf43600ff
/* P1_AGC2I0 */
#define RSTV0910_P1_AGC2I0 0xf437
#define FSTV0910_P1_AGC2_INTEGRATOR0 0xf43700ff
/* P1_CARCFG */
#define RSTV0910_P1_CARCFG 0xf438
#define FSTV0910_P1_ROTAON 0xf4382004
#define FSTV0910_P1_PH_DET_ALGO 0xf4380003
/* P1_ACLC */
#define RSTV0910_P1_ACLC 0xf439
#define FSTV0910_P1_CAR_ALPHA_MANT 0xf4394030
#define FSTV0910_P1_CAR_ALPHA_EXP 0xf439000f
/* P1_BCLC */
#define RSTV0910_P1_BCLC 0xf43a
#define FSTV0910_P1_CAR_BETA_MANT 0xf43a4030
#define FSTV0910_P1_CAR_BETA_EXP 0xf43a000f
/* P1_ACLCS2 */
#define RSTV0910_P1_ACLCS2 0xf43b
#define FSTV0910_P1_CARS2_APLHA_MANTISSE 0xf43b4030
#define FSTV0910_P1_CARS2_ALPHA_EXP 0xf43b000f
/* P1_BCLCS2 */
#define RSTV0910_P1_BCLCS2 0xf43c
#define FSTV0910_P1_CARS2_BETA_MANTISSE 0xf43c4030
#define FSTV0910_P1_CARS2_BETA_EXP 0xf43c000f
/* P1_CARFREQ */
#define RSTV0910_P1_CARFREQ 0xf43d
#define FSTV0910_P1_KC_COARSE_EXP 0xf43d40f0
#define FSTV0910_P1_BETA_FREQ 0xf43d000f
/* P1_CARHDR */
#define RSTV0910_P1_CARHDR 0xf43e
#define FSTV0910_P1_K_FREQ_HDR 0xf43e00ff
/* P1_LDT */
#define RSTV0910_P1_LDT 0xf43f
#define FSTV0910_P1_CARLOCK_THRES 0xf43f01ff
/* P1_LDT2 */
#define RSTV0910_P1_LDT2 0xf440
#define FSTV0910_P1_CARLOCK_THRES2 0xf44001ff
/* P1_CFRICFG */
#define RSTV0910_P1_CFRICFG 0xf441
#define FSTV0910_P1_NEG_CFRSTEP 0xf4410001
/* P1_CFRUP1 */
#define RSTV0910_P1_CFRUP1 0xf442
#define FSTV0910_P1_CFR_UP1 0xf44201ff
/* P1_CFRUP0 */
#define RSTV0910_P1_CFRUP0 0xf443
#define FSTV0910_P1_CFR_UP0 0xf44300ff
/* P1_CFRIBASE1 */
#define RSTV0910_P1_CFRIBASE1 0xf444
#define FSTV0910_P1_CFRINIT_BASE1 0xf44400ff
/* P1_CFRIBASE0 */
#define RSTV0910_P1_CFRIBASE0 0xf445
#define FSTV0910_P1_CFRINIT_BASE0 0xf44500ff
/* P1_CFRLOW1 */
#define RSTV0910_P1_CFRLOW1 0xf446
#define FSTV0910_P1_CFR_LOW1 0xf44601ff
/* P1_CFRLOW0 */
#define RSTV0910_P1_CFRLOW0 0xf447
#define FSTV0910_P1_CFR_LOW0 0xf44700ff
/* P1_CFRINIT1 */
#define RSTV0910_P1_CFRINIT1 0xf448
#define FSTV0910_P1_CFR_INIT1 0xf44801ff
/* P1_CFRINIT0 */
#define RSTV0910_P1_CFRINIT0 0xf449
#define FSTV0910_P1_CFR_INIT0 0xf44900ff
/* P1_CFRINC1 */
#define RSTV0910_P1_CFRINC1 0xf44a
#define FSTV0910_P1_MANUAL_CFRINC 0xf44a7080
#define FSTV0910_P1_CFR_INC1 0xf44a003f
/* P1_CFRINC0 */
#define RSTV0910_P1_CFRINC0 0xf44b
#define FSTV0910_P1_CFR_INC0 0xf44b00ff
/* P1_CFR2 */
#define RSTV0910_P1_CFR2 0xf44c
#define FSTV0910_P1_CAR_FREQ2 0xf44c01ff
/* P1_CFR1 */
#define RSTV0910_P1_CFR1 0xf44d
#define FSTV0910_P1_CAR_FREQ1 0xf44d00ff
/* P1_CFR0 */
#define RSTV0910_P1_CFR0 0xf44e
#define FSTV0910_P1_CAR_FREQ0 0xf44e00ff
/* P1_LDI */
#define RSTV0910_P1_LDI 0xf44f
#define FSTV0910_P1_LOCK_DET_INTEGR 0xf44f01ff
/* P1_TMGCFG */
#define RSTV0910_P1_TMGCFG 0xf450
#define FSTV0910_P1_TMGLOCK_BETA 0xf45060c0
#define FSTV0910_P1_DO_TIMING_CORR 0xf4504010
#define FSTV0910_P1_TMG_MINFREQ 0xf4500003
/* P1_RTC */
#define RSTV0910_P1_RTC 0xf451
#define FSTV0910_P1_TMGALPHA_EXP 0xf45140f0
#define FSTV0910_P1_TMGBETA_EXP 0xf451000f
/* P1_RTCS2 */
#define RSTV0910_P1_RTCS2 0xf452
#define FSTV0910_P1_TMGALPHAS2_EXP 0xf45240f0
#define FSTV0910_P1_TMGBETAS2_EXP 0xf452000f
/* P1_TMGTHRISE */
#define RSTV0910_P1_TMGTHRISE 0xf453
#define FSTV0910_P1_TMGLOCK_THRISE 0xf45300ff
/* P1_TMGTHFALL */
#define RSTV0910_P1_TMGTHFALL 0xf454
#define FSTV0910_P1_TMGLOCK_THFALL 0xf45400ff
/* P1_SFRUPRATIO */
#define RSTV0910_P1_SFRUPRATIO 0xf455
#define FSTV0910_P1_SFR_UPRATIO 0xf45500ff
/* P1_SFRLOWRATIO */
#define RSTV0910_P1_SFRLOWRATIO 0xf456
#define FSTV0910_P1_SFR_LOWRATIO 0xf45600ff
/* P1_KTTMG */
#define RSTV0910_P1_KTTMG 0xf457
#define FSTV0910_P1_KT_TMG_EXP 0xf45740f0
/* P1_KREFTMG */
#define RSTV0910_P1_KREFTMG 0xf458
#define FSTV0910_P1_KREF_TMG 0xf45800ff
/* P1_SFRSTEP */
#define RSTV0910_P1_SFRSTEP 0xf459
#define FSTV0910_P1_SFR_SCANSTEP 0xf45940f0
#define FSTV0910_P1_SFR_CENTERSTEP 0xf459000f
/* P1_TMGCFG2 */
#define RSTV0910_P1_TMGCFG2 0xf45a
#define FSTV0910_P1_DIS_AUTOSAMP 0xf45a3008
#define FSTV0910_P1_SFRRATIO_FINE 0xf45a0001
/* P1_KREFTMG2 */
#define RSTV0910_P1_KREFTMG2 0xf45b
#define FSTV0910_P1_KREF_TMG2 0xf45b00ff
/* P1_TMGCFG3 */
#define RSTV0910_P1_TMGCFG3 0xf45d
#define FSTV0910_P1_CONT_TMGCENTER 0xf45d3008
#define FSTV0910_P1_AUTO_GUP 0xf45d2004
#define FSTV0910_P1_AUTO_GLOW 0xf45d1002
/* P1_SFRINIT1 */
#define RSTV0910_P1_SFRINIT1 0xf45e
#define FSTV0910_P1_SFR_INIT1 0xf45e00ff
/* P1_SFRINIT0 */
#define RSTV0910_P1_SFRINIT0 0xf45f
#define FSTV0910_P1_SFR_INIT0 0xf45f00ff
/* P1_SFRUP1 */
#define RSTV0910_P1_SFRUP1 0xf460
#define FSTV0910_P1_SYMB_FREQ_UP1 0xf46000ff
/* P1_SFRUP0 */
#define RSTV0910_P1_SFRUP0 0xf461
#define FSTV0910_P1_SYMB_FREQ_UP0 0xf46100ff
/* P1_SFRLOW1 */
#define RSTV0910_P1_SFRLOW1 0xf462
#define FSTV0910_P1_SYMB_FREQ_LOW1 0xf46200ff
/* P1_SFRLOW0 */
#define RSTV0910_P1_SFRLOW0 0xf463
#define FSTV0910_P1_SYMB_FREQ_LOW0 0xf46300ff
/* P1_SFR3 */
#define RSTV0910_P1_SFR3 0xf464
#define FSTV0910_P1_SYMB_FREQ3 0xf46400ff
/* P1_SFR2 */
#define RSTV0910_P1_SFR2 0xf465
#define FSTV0910_P1_SYMB_FREQ2 0xf46500ff
/* P1_SFR1 */
#define RSTV0910_P1_SFR1 0xf466
#define FSTV0910_P1_SYMB_FREQ1 0xf46600ff
/* P1_SFR0 */
#define RSTV0910_P1_SFR0 0xf467
#define FSTV0910_P1_SYMB_FREQ0 0xf46700ff
/* P1_TMGREG2 */
#define RSTV0910_P1_TMGREG2 0xf468
#define FSTV0910_P1_TMGREG2 0xf46800ff
/* P1_TMGREG1 */
#define RSTV0910_P1_TMGREG1 0xf469
#define FSTV0910_P1_TMGREG1 0xf46900ff
/* P1_TMGREG0 */
#define RSTV0910_P1_TMGREG0 0xf46a
#define FSTV0910_P1_TMGREG0 0xf46a00ff
/* P1_TMGLOCK1 */
#define RSTV0910_P1_TMGLOCK1 0xf46b
#define FSTV0910_P1_TMGLOCK_LEVEL1 0xf46b01ff
/* P1_TMGLOCK0 */
#define RSTV0910_P1_TMGLOCK0 0xf46c
#define FSTV0910_P1_TMGLOCK_LEVEL0 0xf46c00ff
/* P1_TMGOBS */
#define RSTV0910_P1_TMGOBS 0xf46d
#define FSTV0910_P1_ROLLOFF_STATUS 0xf46d60c0
/* P1_EQUALCFG */
#define RSTV0910_P1_EQUALCFG 0xf46f
#define FSTV0910_P1_EQUAL_ON 0xf46f6040
#define FSTV0910_P1_MU_EQUALDFE 0xf46f0007
/* P1_EQUAI1 */
#define RSTV0910_P1_EQUAI1 0xf470
#define FSTV0910_P1_EQUA_ACCI1 0xf47001ff
/* P1_EQUAQ1 */
#define RSTV0910_P1_EQUAQ1 0xf471
#define FSTV0910_P1_EQUA_ACCQ1 0xf47101ff
/* P1_EQUAI2 */
#define RSTV0910_P1_EQUAI2 0xf472
#define FSTV0910_P1_EQUA_ACCI2 0xf47201ff
/* P1_EQUAQ2 */
#define RSTV0910_P1_EQUAQ2 0xf473
#define FSTV0910_P1_EQUA_ACCQ2 0xf47301ff
/* P1_EQUAI3 */
#define RSTV0910_P1_EQUAI3 0xf474
#define FSTV0910_P1_EQUA_ACCI3 0xf47401ff
/* P1_EQUAQ3 */
#define RSTV0910_P1_EQUAQ3 0xf475
#define FSTV0910_P1_EQUA_ACCQ3 0xf47501ff
/* P1_EQUAI4 */
#define RSTV0910_P1_EQUAI4 0xf476
#define FSTV0910_P1_EQUA_ACCI4 0xf47601ff
/* P1_EQUAQ4 */
#define RSTV0910_P1_EQUAQ4 0xf477
#define FSTV0910_P1_EQUA_ACCQ4 0xf47701ff
/* P1_EQUAI5 */
#define RSTV0910_P1_EQUAI5 0xf478
#define FSTV0910_P1_EQUA_ACCI5 0xf47801ff
/* P1_EQUAQ5 */
#define RSTV0910_P1_EQUAQ5 0xf479
#define FSTV0910_P1_EQUA_ACCQ5 0xf47901ff
/* P1_EQUAI6 */
#define RSTV0910_P1_EQUAI6 0xf47a
#define FSTV0910_P1_EQUA_ACCI6 0xf47a01ff
/* P1_EQUAQ6 */
#define RSTV0910_P1_EQUAQ6 0xf47b
#define FSTV0910_P1_EQUA_ACCQ6 0xf47b01ff
/* P1_EQUAI7 */
#define RSTV0910_P1_EQUAI7 0xf47c
#define FSTV0910_P1_EQUA_ACCI7 0xf47c01ff
/* P1_EQUAQ7 */
#define RSTV0910_P1_EQUAQ7 0xf47d
#define FSTV0910_P1_EQUA_ACCQ7 0xf47d01ff
/* P1_EQUAI8 */
#define RSTV0910_P1_EQUAI8 0xf47e
#define FSTV0910_P1_EQUA_ACCI8 0xf47e01ff
/* P1_EQUAQ8 */
#define RSTV0910_P1_EQUAQ8 0xf47f
#define FSTV0910_P1_EQUA_ACCQ8 0xf47f01ff
/* P1_NNOSDATAT1 */
#define RSTV0910_P1_NNOSDATAT1 0xf480
#define FSTV0910_P1_NOSDATAT_NORMED1 0xf48000ff
/* P1_NNOSDATAT0 */
#define RSTV0910_P1_NNOSDATAT0 0xf481
#define FSTV0910_P1_NOSDATAT_NORMED0 0xf48100ff
/* P1_NNOSDATA1 */
#define RSTV0910_P1_NNOSDATA1 0xf482
#define FSTV0910_P1_NOSDATA_NORMED1 0xf48200ff
/* P1_NNOSDATA0 */
#define RSTV0910_P1_NNOSDATA0 0xf483
#define FSTV0910_P1_NOSDATA_NORMED0 0xf48300ff
/* P1_NNOSPLHT1 */
#define RSTV0910_P1_NNOSPLHT1 0xf484
#define FSTV0910_P1_NOSPLHT_NORMED1 0xf48400ff
/* P1_NNOSPLHT0 */
#define RSTV0910_P1_NNOSPLHT0 0xf485
#define FSTV0910_P1_NOSPLHT_NORMED0 0xf48500ff
/* P1_NNOSPLH1 */
#define RSTV0910_P1_NNOSPLH1 0xf486
#define FSTV0910_P1_NOSPLH_NORMED1 0xf48600ff
/* P1_NNOSPLH0 */
#define RSTV0910_P1_NNOSPLH0 0xf487
#define FSTV0910_P1_NOSPLH_NORMED0 0xf48700ff
/* P1_NOSDATAT1 */
#define RSTV0910_P1_NOSDATAT1 0xf488
#define FSTV0910_P1_NOSDATAT_UNNORMED1 0xf48800ff
/* P1_NOSDATAT0 */
#define RSTV0910_P1_NOSDATAT0 0xf489
#define FSTV0910_P1_NOSDATAT_UNNORMED0 0xf48900ff
/* P1_NNOSFRAME1 */
#define RSTV0910_P1_NNOSFRAME1 0xf48a
#define FSTV0910_P1_NOSFRAME_NORMED1 0xf48a00ff
/* P1_NNOSFRAME0 */
#define RSTV0910_P1_NNOSFRAME0 0xf48b
#define FSTV0910_P1_NOSFRAME_NORMED0 0xf48b00ff
/* P1_NNOSRAD1 */
#define RSTV0910_P1_NNOSRAD1 0xf48c
#define FSTV0910_P1_NOSRADIAL_NORMED1 0xf48c00ff
/* P1_NNOSRAD0 */
#define RSTV0910_P1_NNOSRAD0 0xf48d
#define FSTV0910_P1_NOSRADIAL_NORMED0 0xf48d00ff
/* P1_NOSCFGF1 */
#define RSTV0910_P1_NOSCFGF1 0xf48e
#define FSTV0910_P1_LOWNOISE_MESURE 0xf48e7080
#define FSTV0910_P1_NOS_DELFRAME 0xf48e6040
#define FSTV0910_P1_NOSDATA_MODE 0xf48e4030
#define FSTV0910_P1_FRAMESEL_TYPESEL 0xf48e200c
#define FSTV0910_P1_FRAMESEL_TYPE 0xf48e0003
/* P1_NOSCFGF2 */
#define RSTV0910_P1_NOSCFGF2 0xf48f
#define FSTV0910_P1_DIS_NOSPILOTS 0xf48f7080
#define FSTV0910_P1_FRAMESEL_MODCODSEL 0xf48f5060
#define FSTV0910_P1_FRAMESEL_MODCOD 0xf48f001f
/* P1_CAR2CFG */
#define RSTV0910_P1_CAR2CFG 0xf490
#define FSTV0910_P1_ROTA2ON 0xf4902004
#define FSTV0910_P1_PH_DET_ALGO2 0xf4900003
/* P1_CFR2CFR1 */
#define RSTV0910_P1_CFR2CFR1 0xf491
#define FSTV0910_P1_EN_S2CAR2CENTER 0xf4915020
#define FSTV0910_P1_CFR2TOCFR1_BETA 0xf4910007
/* P1_CAR3CFG */
#define RSTV0910_P1_CAR3CFG 0xf492
#define FSTV0910_P1_CARRIER23_MODE 0xf49260c0
#define FSTV0910_P1_CAR3INTERM_DVBS1 0xf4925020
#define FSTV0910_P1_ABAMPLIF_MODE 0xf4923018
#define FSTV0910_P1_CARRIER3_ALPHA3DL 0xf4920007
/* P1_CFR22 */
#define RSTV0910_P1_CFR22 0xf493
#define FSTV0910_P1_CAR2_FREQ2 0xf49301ff
/* P1_CFR21 */
#define RSTV0910_P1_CFR21 0xf494
#define FSTV0910_P1_CAR2_FREQ1 0xf49400ff
/* P1_CFR20 */
#define RSTV0910_P1_CFR20 0xf495
#define FSTV0910_P1_CAR2_FREQ0 0xf49500ff
/* P1_ACLC2S2Q */
#define RSTV0910_P1_ACLC2S2Q 0xf497
#define FSTV0910_P1_ENAB_SPSKSYMB 0xf4977080
#define FSTV0910_P1_CAR2S2_Q_ALPH_M 0xf4974030
#define FSTV0910_P1_CAR2S2_Q_ALPH_E 0xf497000f
/* P1_ACLC2S28 */
#define RSTV0910_P1_ACLC2S28 0xf498
#define FSTV0910_P1_CAR2S2_8_ALPH_M 0xf4984030
#define FSTV0910_P1_CAR2S2_8_ALPH_E 0xf498000f
/* P1_ACLC2S216A */
#define RSTV0910_P1_ACLC2S216A 0xf499
#define FSTV0910_P1_CAR2S2_16A_ALPH_M 0xf4994030
#define FSTV0910_P1_CAR2S2_16A_ALPH_E 0xf499000f
/* P1_ACLC2S232A */
#define RSTV0910_P1_ACLC2S232A 0xf49a
#define FSTV0910_P1_CAR2S2_32A_ALPH_M 0xf49a4030
#define FSTV0910_P1_CAR2S2_32A_ALPH_E 0xf49a000f
/* P1_BCLC2S2Q */
#define RSTV0910_P1_BCLC2S2Q 0xf49c
#define FSTV0910_P1_CAR2S2_Q_BETA_M 0xf49c4030
#define FSTV0910_P1_CAR2S2_Q_BETA_E 0xf49c000f
/* P1_BCLC2S28 */
#define RSTV0910_P1_BCLC2S28 0xf49d
#define FSTV0910_P1_CAR2S2_8_BETA_M 0xf49d4030
#define FSTV0910_P1_CAR2S2_8_BETA_E 0xf49d000f
/* P1_BCLC2S216A */
#define RSTV0910_P1_BCLC2S216A 0xf49e
#define FSTV0910_P1_DVBS2S216A_NIP 0xf49e7080
#define FSTV0910_P1_CAR2S2_16A_BETA_M 0xf49e4030
#define FSTV0910_P1_CAR2S2_16A_BETA_E 0xf49e000f
/* P1_BCLC2S232A */
#define RSTV0910_P1_BCLC2S232A 0xf49f
#define FSTV0910_P1_DVBS2S232A_NIP 0xf49f7080
#define FSTV0910_P1_CAR2S2_32A_BETA_M 0xf49f4030
#define FSTV0910_P1_CAR2S2_32A_BETA_E 0xf49f000f
/* P1_PLROOT2 */
#define RSTV0910_P1_PLROOT2 0xf4ac
#define FSTV0910_P1_PLSCRAMB_MODE 0xf4ac200c
#define FSTV0910_P1_PLSCRAMB_ROOT2 0xf4ac0003
/* P1_PLROOT1 */
#define RSTV0910_P1_PLROOT1 0xf4ad
#define FSTV0910_P1_PLSCRAMB_ROOT1 0xf4ad00ff
/* P1_PLROOT0 */
#define RSTV0910_P1_PLROOT0 0xf4ae
#define FSTV0910_P1_PLSCRAMB_ROOT0 0xf4ae00ff
/* P1_MODCODLST0 */
#define RSTV0910_P1_MODCODLST0 0xf4b0
#define FSTV0910_P1_NACCES_MODCODCH 0xf4b00001
/* P1_MODCODLST1 */
#define RSTV0910_P1_MODCODLST1 0xf4b1
#define FSTV0910_P1_SYMBRATE_FILTER 0xf4b13008
#define FSTV0910_P1_NRESET_MODCODLST 0xf4b12004
#define FSTV0910_P1_DIS_32PSK_9_10 0xf4b10003
/* P1_MODCODLST2 */
#define RSTV0910_P1_MODCODLST2 0xf4b2
#define FSTV0910_P1_DIS_32PSK_8_9 0xf4b240f0
#define FSTV0910_P1_DIS_32PSK_5_6 0xf4b2000f
/* P1_MODCODLST3 */
#define RSTV0910_P1_MODCODLST3 0xf4b3
#define FSTV0910_P1_DIS_32PSK_4_5 0xf4b340f0
#define FSTV0910_P1_DIS_32PSK_3_4 0xf4b3000f
/* P1_MODCODLST4 */
#define RSTV0910_P1_MODCODLST4 0xf4b4
#define FSTV0910_P1_DUMMYPL_PILOT 0xf4b47080
#define FSTV0910_P1_DUMMYPL_NOPILOT 0xf4b46040
#define FSTV0910_P1_DIS_16PSK_9_10 0xf4b44030
#define FSTV0910_P1_DIS_16PSK_8_9 0xf4b4000f
/* P1_MODCODLST5 */
#define RSTV0910_P1_MODCODLST5 0xf4b5
#define FSTV0910_P1_DIS_16PSK_5_6 0xf4b540f0
#define FSTV0910_P1_DIS_16PSK_4_5 0xf4b5000f
/* P1_MODCODLST6 */
#define RSTV0910_P1_MODCODLST6 0xf4b6
#define FSTV0910_P1_DIS_16PSK_3_4 0xf4b640f0
#define FSTV0910_P1_DIS_16PSK_2_3 0xf4b6000f
/* P1_MODCODLST7 */
#define RSTV0910_P1_MODCODLST7 0xf4b7
#define FSTV0910_P1_MODCOD_NNOSFILTER 0xf4b77080
#define FSTV0910_P1_DIS_8PSK_9_10 0xf4b74030
#define FSTV0910_P1_DIS_8PSK_8_9 0xf4b7000f
/* P1_MODCODLST8 */
#define RSTV0910_P1_MODCODLST8 0xf4b8
#define FSTV0910_P1_DIS_8PSK_5_6 0xf4b840f0
#define FSTV0910_P1_DIS_8PSK_3_4 0xf4b8000f
/* P1_MODCODLST9 */
#define RSTV0910_P1_MODCODLST9 0xf4b9
#define FSTV0910_P1_DIS_8PSK_2_3 0xf4b940f0
#define FSTV0910_P1_DIS_8PSK_3_5 0xf4b9000f
/* P1_MODCODLSTA */
#define RSTV0910_P1_MODCODLSTA 0xf4ba
#define FSTV0910_P1_NOSFILTER_LIMITE 0xf4ba7080
#define FSTV0910_P1_DIS_QPSK_9_10 0xf4ba4030
#define FSTV0910_P1_DIS_QPSK_8_9 0xf4ba000f
/* P1_MODCODLSTB */
#define RSTV0910_P1_MODCODLSTB 0xf4bb
#define FSTV0910_P1_DIS_QPSK_5_6 0xf4bb40f0
#define FSTV0910_P1_DIS_QPSK_4_5 0xf4bb000f
/* P1_MODCODLSTC */
#define RSTV0910_P1_MODCODLSTC 0xf4bc
#define FSTV0910_P1_DIS_QPSK_3_4 0xf4bc40f0
#define FSTV0910_P1_DIS_QPSK_2_3 0xf4bc000f
/* P1_MODCODLSTD */
#define RSTV0910_P1_MODCODLSTD 0xf4bd
#define FSTV0910_P1_DIS_QPSK_3_5 0xf4bd40f0
#define FSTV0910_P1_DIS_QPSK_1_2 0xf4bd000f
/* P1_MODCODLSTE */
#define RSTV0910_P1_MODCODLSTE 0xf4be
#define FSTV0910_P1_DIS_QPSK_2_5 0xf4be40f0
#define FSTV0910_P1_DIS_QPSK_1_3 0xf4be000f
/* P1_MODCODLSTF */
#define RSTV0910_P1_MODCODLSTF 0xf4bf
#define FSTV0910_P1_DIS_QPSK_1_4 0xf4bf40f0
#define FSTV0910_P1_DEMOD_INVMODLST 0xf4bf3008
#define FSTV0910_P1_DEMODOUT_ENABLE 0xf4bf2004
#define FSTV0910_P1_DDEMOD_NSET 0xf4bf1002
#define FSTV0910_P1_MODCOD_NSTOCK 0xf4bf0001
/* P1_GAUSSR0 */
#define RSTV0910_P1_GAUSSR0 0xf4c0
#define FSTV0910_P1_EN_CCIMODE 0xf4c07080
#define FSTV0910_P1_R0_GAUSSIEN 0xf4c0007f
/* P1_CCIR0 */
#define RSTV0910_P1_CCIR0 0xf4c1
#define FSTV0910_P1_CCIDETECT_PLHONLY 0xf4c17080
#define FSTV0910_P1_R0_CCI 0xf4c1007f
/* P1_CCIQUANT */
#define RSTV0910_P1_CCIQUANT 0xf4c2
#define FSTV0910_P1_CCI_BETA 0xf4c250e0
#define FSTV0910_P1_CCI_QUANT 0xf4c2001f
/* P1_CCITHRES */
#define RSTV0910_P1_CCITHRES 0xf4c3
#define FSTV0910_P1_CCI_THRESHOLD 0xf4c300ff
/* P1_CCIACC */
#define RSTV0910_P1_CCIACC 0xf4c4
#define FSTV0910_P1_CCI_VALUE 0xf4c400ff
/* P1_DSTATUS4 */
#define RSTV0910_P1_DSTATUS4 0xf4c5
#define FSTV0910_P1_RAINFADE_DETECT 0xf4c57080
#define FSTV0910_P1_NOTHRES2_FAIL 0xf4c56040
#define FSTV0910_P1_NOTHRES1_FAIL 0xf4c55020
#define FSTV0910_P1_DMDPROG_ERROR 0xf4c52004
#define FSTV0910_P1_CSTENV_DETECT 0xf4c51002
#define FSTV0910_P1_DETECTION_TRIAX 0xf4c50001
/* P1_DMDRESCFG */
#define RSTV0910_P1_DMDRESCFG 0xf4c6
#define FSTV0910_P1_DMDRES_RESET 0xf4c67080
#define FSTV0910_P1_DMDRES_STRALL 0xf4c63008
#define FSTV0910_P1_DMDRES_NEWONLY 0xf4c62004
#define FSTV0910_P1_DMDRES_NOSTORE 0xf4c61002
/* P1_DMDRESADR */
#define RSTV0910_P1_DMDRESADR 0xf4c7
#define FSTV0910_P1_DMDRES_VALIDCFR 0xf4c76040
#define FSTV0910_P1_DMDRES_MEMFULL 0xf4c74030
#define FSTV0910_P1_DMDRES_RESNBR 0xf4c7000f
/* P1_DMDRESDATA7 */
#define RSTV0910_P1_DMDRESDATA7 0xf4c8
#define FSTV0910_P1_DMDRES_DATA7 0xf4c800ff
/* P1_DMDRESDATA6 */
#define RSTV0910_P1_DMDRESDATA6 0xf4c9
#define FSTV0910_P1_DMDRES_DATA6 0xf4c900ff
/* P1_DMDRESDATA5 */
#define RSTV0910_P1_DMDRESDATA5 0xf4ca
#define FSTV0910_P1_DMDRES_DATA5 0xf4ca00ff
/* P1_DMDRESDATA4 */
#define RSTV0910_P1_DMDRESDATA4 0xf4cb
#define FSTV0910_P1_DMDRES_DATA4 0xf4cb00ff
/* P1_DMDRESDATA3 */
#define RSTV0910_P1_DMDRESDATA3 0xf4cc
#define FSTV0910_P1_DMDRES_DATA3 0xf4cc00ff
/* P1_DMDRESDATA2 */
#define RSTV0910_P1_DMDRESDATA2 0xf4cd
#define FSTV0910_P1_DMDRES_DATA2 0xf4cd00ff
/* P1_DMDRESDATA1 */
#define RSTV0910_P1_DMDRESDATA1 0xf4ce
#define FSTV0910_P1_DMDRES_DATA1 0xf4ce00ff
/* P1_DMDRESDATA0 */
#define RSTV0910_P1_DMDRESDATA0 0xf4cf
#define FSTV0910_P1_DMDRES_DATA0 0xf4cf00ff
/* P1_FFEI1 */
#define RSTV0910_P1_FFEI1 0xf4d0
#define FSTV0910_P1_FFE_ACCI1 0xf4d001ff
/* P1_FFEQ1 */
#define RSTV0910_P1_FFEQ1 0xf4d1
#define FSTV0910_P1_FFE_ACCQ1 0xf4d101ff
/* P1_FFEI2 */
#define RSTV0910_P1_FFEI2 0xf4d2
#define FSTV0910_P1_FFE_ACCI2 0xf4d201ff
/* P1_FFEQ2 */
#define RSTV0910_P1_FFEQ2 0xf4d3
#define FSTV0910_P1_FFE_ACCQ2 0xf4d301ff
/* P1_FFEI3 */
#define RSTV0910_P1_FFEI3 0xf4d4
#define FSTV0910_P1_FFE_ACCI3 0xf4d401ff
/* P1_FFEQ3 */
#define RSTV0910_P1_FFEQ3 0xf4d5
#define FSTV0910_P1_FFE_ACCQ3 0xf4d501ff
/* P1_FFEI4 */
#define RSTV0910_P1_FFEI4 0xf4d6
#define FSTV0910_P1_FFE_ACCI4 0xf4d601ff
/* P1_FFEQ4 */
#define RSTV0910_P1_FFEQ4 0xf4d7
#define FSTV0910_P1_FFE_ACCQ4 0xf4d701ff
/* P1_FFECFG */
#define RSTV0910_P1_FFECFG 0xf4d8
#define FSTV0910_P1_EQUALFFE_ON 0xf4d86040
#define FSTV0910_P1_EQUAL_USEDSYMB 0xf4d84030
#define FSTV0910_P1_MU_EQUALFFE 0xf4d80007
/* P1_TNRCFG2 */
#define RSTV0910_P1_TNRCFG2 0xf4e1
#define FSTV0910_P1_TUN_IQSWAP 0xf4e17080
/* P1_SMAPCOEF7 */
#define RSTV0910_P1_SMAPCOEF7 0xf500
#define FSTV0910_P1_DIS_QSCALE 0xf5007080
#define FSTV0910_P1_SMAPCOEF_Q_LLR12 0xf500017f
/* P1_SMAPCOEF6 */
#define RSTV0910_P1_SMAPCOEF6 0xf501
#define FSTV0910_P1_DIS_AGC2SCALE 0xf5017080
#define FSTV0910_P1_ADJ_8PSKLLR1 0xf5012004
#define FSTV0910_P1_OLD_8PSKLLR1 0xf5011002
#define FSTV0910_P1_DIS_AB8PSK 0xf5010001
/* P1_SMAPCOEF5 */
#define RSTV0910_P1_SMAPCOEF5 0xf502
#define FSTV0910_P1_DIS_8SCALE 0xf5027080
#define FSTV0910_P1_SMAPCOEF_8P_LLR23 0xf502017f
/* P1_SMAPCOEF4 */
#define RSTV0910_P1_SMAPCOEF4 0xf503
#define FSTV0910_P1_SMAPCOEF_16APSK_LLR12 0xf503017f
/* P1_SMAPCOEF3 */
#define RSTV0910_P1_SMAPCOEF3 0xf504
#define FSTV0910_P1_SMAPCOEF_16APSK_LLR34 0xf504017f
/* P1_SMAPCOEF2 */
#define RSTV0910_P1_SMAPCOEF2 0xf505
#define FSTV0910_P1_SMAPCOEF_32APSK_R2R3 0xf50541f0
#define FSTV0910_P1_SMAPCOEF_32APSK_LLR2 0xf505010f
/* P1_SMAPCOEF1 */
#define RSTV0910_P1_SMAPCOEF1 0xf506
#define FSTV0910_P1_DIS_16SCALE 0xf5067080
#define FSTV0910_P1_SMAPCOEF_32_LLR34 0xf506017f
/* P1_SMAPCOEF0 */
#define RSTV0910_P1_SMAPCOEF0 0xf507
#define FSTV0910_P1_DIS_32SCALE 0xf5077080
#define FSTV0910_P1_SMAPCOEF_32_LLR15 0xf507017f
/* P1_NOSTHRES1 */
#define RSTV0910_P1_NOSTHRES1 0xf509
#define FSTV0910_P1_NOS_THRESHOLD1 0xf50900ff
/* P1_NOSTHRES2 */
#define RSTV0910_P1_NOSTHRES2 0xf50a
#define FSTV0910_P1_NOS_THRESHOLD2 0xf50a00ff
/* P1_NOSDIFF1 */
#define RSTV0910_P1_NOSDIFF1 0xf50b
#define FSTV0910_P1_NOSTHRES1_DIFF 0xf50b00ff
/* P1_RAINFADE */
#define RSTV0910_P1_RAINFADE 0xf50c
#define FSTV0910_P1_NOSTHRES_DATAT 0xf50c7080
#define FSTV0910_P1_RAINFADE_CNLIMIT 0xf50c4070
#define FSTV0910_P1_RAINFADE_TIMEOUT 0xf50c0007
/* P1_NOSRAMCFG */
#define RSTV0910_P1_NOSRAMCFG 0xf50d
#define FSTV0910_P1_NOSRAM_ACTIVATION 0xf50d4030
#define FSTV0910_P1_NOSRAM_CNRONLY 0xf50d3008
#define FSTV0910_P1_NOSRAM_LGNCNR1 0xf50d0007
/* P1_NOSRAMPOS */
#define RSTV0910_P1_NOSRAMPOS 0xf50e
#define FSTV0910_P1_NOSRAM_LGNCNR0 0xf50e40f0
#define FSTV0910_P1_NOSRAM_VALIDE 0xf50e2004
#define FSTV0910_P1_NOSRAM_CNRVAL1 0xf50e0003
/* P1_NOSRAMVAL */
#define RSTV0910_P1_NOSRAMVAL 0xf50f
#define FSTV0910_P1_NOSRAM_CNRVAL0 0xf50f00ff
/* P1_DMDPLHSTAT */
#define RSTV0910_P1_DMDPLHSTAT 0xf520
#define FSTV0910_P1_PLH_STATISTIC 0xf52000ff
/* P1_LOCKTIME3 */
#define RSTV0910_P1_LOCKTIME3 0xf522
#define FSTV0910_P1_DEMOD_LOCKTIME3 0xf52200ff
/* P1_LOCKTIME2 */
#define RSTV0910_P1_LOCKTIME2 0xf523
#define FSTV0910_P1_DEMOD_LOCKTIME2 0xf52300ff
/* P1_LOCKTIME1 */
#define RSTV0910_P1_LOCKTIME1 0xf524
#define FSTV0910_P1_DEMOD_LOCKTIME1 0xf52400ff
/* P1_LOCKTIME0 */
#define RSTV0910_P1_LOCKTIME0 0xf525
#define FSTV0910_P1_DEMOD_LOCKTIME0 0xf52500ff
/* P1_VITSCALE */
#define RSTV0910_P1_VITSCALE 0xf532
#define FSTV0910_P1_NVTH_NOSRANGE 0xf5327080
#define FSTV0910_P1_VERROR_MAXMODE 0xf5326040
#define FSTV0910_P1_NSLOWSN_LOCKED 0xf5323008
#define FSTV0910_P1_DIS_RSFLOCK 0xf5321002
/* P1_FECM */
#define RSTV0910_P1_FECM 0xf533
#define FSTV0910_P1_DSS_DVB 0xf5337080
#define FSTV0910_P1_DSS_SRCH 0xf5334010
#define FSTV0910_P1_SYNCVIT 0xf5331002
#define FSTV0910_P1_IQINV 0xf5330001
/* P1_VTH12 */
#define RSTV0910_P1_VTH12 0xf534
#define FSTV0910_P1_VTH12 0xf53400ff
/* P1_VTH23 */
#define RSTV0910_P1_VTH23 0xf535
#define FSTV0910_P1_VTH23 0xf53500ff
/* P1_VTH34 */
#define RSTV0910_P1_VTH34 0xf536
#define FSTV0910_P1_VTH34 0xf53600ff
/* P1_VTH56 */
#define RSTV0910_P1_VTH56 0xf537
#define FSTV0910_P1_VTH56 0xf53700ff
/* P1_VTH67 */
#define RSTV0910_P1_VTH67 0xf538
#define FSTV0910_P1_VTH67 0xf53800ff
/* P1_VTH78 */
#define RSTV0910_P1_VTH78 0xf539
#define FSTV0910_P1_VTH78 0xf53900ff
/* P1_VITCURPUN */
#define RSTV0910_P1_VITCURPUN 0xf53a
#define FSTV0910_P1_VIT_CURPUN 0xf53a001f
/* P1_VERROR */
#define RSTV0910_P1_VERROR 0xf53b
#define FSTV0910_P1_REGERR_VIT 0xf53b00ff
/* P1_PRVIT */
#define RSTV0910_P1_PRVIT 0xf53c
#define FSTV0910_P1_DIS_VTHLOCK 0xf53c6040
#define FSTV0910_P1_E7_8VIT 0xf53c5020
#define FSTV0910_P1_E6_7VIT 0xf53c4010
#define FSTV0910_P1_E5_6VIT 0xf53c3008
#define FSTV0910_P1_E3_4VIT 0xf53c2004
#define FSTV0910_P1_E2_3VIT 0xf53c1002
#define FSTV0910_P1_E1_2VIT 0xf53c0001
/* P1_VAVSRVIT */
#define RSTV0910_P1_VAVSRVIT 0xf53d
#define FSTV0910_P1_AMVIT 0xf53d7080
#define FSTV0910_P1_FROZENVIT 0xf53d6040
#define FSTV0910_P1_SNVIT 0xf53d4030
#define FSTV0910_P1_TOVVIT 0xf53d200c
#define FSTV0910_P1_HYPVIT 0xf53d0003
/* P1_VSTATUSVIT */
#define RSTV0910_P1_VSTATUSVIT 0xf53e
#define FSTV0910_P1_PRFVIT 0xf53e4010
#define FSTV0910_P1_LOCKEDVIT 0xf53e3008
/* P1_VTHINUSE */
#define RSTV0910_P1_VTHINUSE 0xf53f
#define FSTV0910_P1_VIT_INUSE 0xf53f00ff
/* P1_KDIV12 */
#define RSTV0910_P1_KDIV12 0xf540
#define FSTV0910_P1_K_DIVIDER_12 0xf540007f
/* P1_KDIV23 */
#define RSTV0910_P1_KDIV23 0xf541
#define FSTV0910_P1_K_DIVIDER_23 0xf541007f
/* P1_KDIV34 */
#define RSTV0910_P1_KDIV34 0xf542
#define FSTV0910_P1_K_DIVIDER_34 0xf542007f
/* P1_KDIV56 */
#define RSTV0910_P1_KDIV56 0xf543
#define FSTV0910_P1_K_DIVIDER_56 0xf543007f
/* P1_KDIV67 */
#define RSTV0910_P1_KDIV67 0xf544
#define FSTV0910_P1_K_DIVIDER_67 0xf544007f
/* P1_KDIV78 */
#define RSTV0910_P1_KDIV78 0xf545
#define FSTV0910_P1_K_DIVIDER_78 0xf545007f
/* P1_TSPIDFLT1 */
#define RSTV0910_P1_TSPIDFLT1 0xf546
#define FSTV0910_P1_PIDFLT_ADDR 0xf54600ff
/* P1_TSPIDFLT0 */
#define RSTV0910_P1_TSPIDFLT0 0xf547
#define FSTV0910_P1_PIDFLT_DATA 0xf54700ff
/* P1_PDELCTRL0 */
#define RSTV0910_P1_PDELCTRL0 0xf54f
#define FSTV0910_P1_ISIOBS_MODE 0xf54f4030
/* P1_PDELCTRL1 */
#define RSTV0910_P1_PDELCTRL1 0xf550
#define FSTV0910_P1_INV_MISMASK 0xf5507080
#define FSTV0910_P1_FILTER_EN 0xf5505020
#define FSTV0910_P1_HYSTEN 0xf5503008
#define FSTV0910_P1_HYSTSWRST 0xf5502004
#define FSTV0910_P1_EN_MIS00 0xf5501002
#define FSTV0910_P1_ALGOSWRST 0xf5500001
/* P1_PDELCTRL2 */
#define RSTV0910_P1_PDELCTRL2 0xf551
#define FSTV0910_P1_FORCE_CONTINUOUS 0xf5517080
#define FSTV0910_P1_RESET_UPKO_COUNT 0xf5516040
#define FSTV0910_P1_USER_PKTDELIN_NB 0xf5515020
#define FSTV0910_P1_FRAME_MODE 0xf5511002
/* P1_HYSTTHRESH */
#define RSTV0910_P1_HYSTTHRESH 0xf554
#define FSTV0910_P1_DELIN_LOCKTHRES 0xf55440f0
#define FSTV0910_P1_DELIN_UNLOCKTHRES 0xf554000f
/* P1_UPLCCST0 */
#define RSTV0910_P1_UPLCCST0 0xf558
#define FSTV0910_P1_UPL_CST0 0xf55830f8
#define FSTV0910_P1_UPL_MODE 0xf5580007
/* P1_ISIENTRY */
#define RSTV0910_P1_ISIENTRY 0xf55e
#define FSTV0910_P1_ISI_ENTRY 0xf55e00ff
/* P1_ISIBITENA */
#define RSTV0910_P1_ISIBITENA 0xf55f
#define FSTV0910_P1_ISI_BIT_EN 0xf55f00ff
/* P1_MATSTR1 */
#define RSTV0910_P1_MATSTR1 0xf560
#define FSTV0910_P1_MATYPE_CURRENT1 0xf56000ff
/* P1_MATSTR0 */
#define RSTV0910_P1_MATSTR0 0xf561
#define FSTV0910_P1_MATYPE_CURRENT0 0xf56100ff
/* P1_UPLSTR1 */
#define RSTV0910_P1_UPLSTR1 0xf562
#define FSTV0910_P1_UPL_CURRENT1 0xf56200ff
/* P1_UPLSTR0 */
#define RSTV0910_P1_UPLSTR0 0xf563
#define FSTV0910_P1_UPL_CURRENT0 0xf56300ff
/* P1_DFLSTR1 */
#define RSTV0910_P1_DFLSTR1 0xf564
#define FSTV0910_P1_DFL_CURRENT1 0xf56400ff
/* P1_DFLSTR0 */
#define RSTV0910_P1_DFLSTR0 0xf565
#define FSTV0910_P1_DFL_CURRENT0 0xf56500ff
/* P1_SYNCSTR */
#define RSTV0910_P1_SYNCSTR 0xf566
#define FSTV0910_P1_SYNC_CURRENT 0xf56600ff
/* P1_SYNCDSTR1 */
#define RSTV0910_P1_SYNCDSTR1 0xf567
#define FSTV0910_P1_SYNCD_CURRENT1 0xf56700ff
/* P1_SYNCDSTR0 */
#define RSTV0910_P1_SYNCDSTR0 0xf568
#define FSTV0910_P1_SYNCD_CURRENT0 0xf56800ff
/* P1_PDELSTATUS1 */
#define RSTV0910_P1_PDELSTATUS1 0xf569
#define FSTV0910_P1_PKTDELIN_DELOCK 0xf5697080
#define FSTV0910_P1_SYNCDUPDFL_BADDFL 0xf5696040
#define FSTV0910_P1_UNACCEPTED_STREAM 0xf5694010
#define FSTV0910_P1_BCH_ERROR_FLAG 0xf5693008
#define FSTV0910_P1_PKTDELIN_LOCK 0xf5691002
#define FSTV0910_P1_FIRST_LOCK 0xf5690001
/* P1_PDELSTATUS2 */
#define RSTV0910_P1_PDELSTATUS2 0xf56a
#define FSTV0910_P1_FRAME_MODCOD 0xf56a207c
#define FSTV0910_P1_FRAME_TYPE 0xf56a0003
/* P1_BBFCRCKO1 */
#define RSTV0910_P1_BBFCRCKO1 0xf56b
#define FSTV0910_P1_BBHCRC_KOCNT1 0xf56b00ff
/* P1_BBFCRCKO0 */
#define RSTV0910_P1_BBFCRCKO0 0xf56c
#define FSTV0910_P1_BBHCRC_KOCNT0 0xf56c00ff
/* P1_UPCRCKO1 */
#define RSTV0910_P1_UPCRCKO1 0xf56d
#define FSTV0910_P1_PKTCRC_KOCNT1 0xf56d00ff
/* P1_UPCRCKO0 */
#define RSTV0910_P1_UPCRCKO0 0xf56e
#define FSTV0910_P1_PKTCRC_KOCNT0 0xf56e00ff
/* P1_PDELCTRL3 */
#define RSTV0910_P1_PDELCTRL3 0xf56f
#define FSTV0910_P1_NOFIFO_BCHERR 0xf56f5020
#define FSTV0910_P1_PKTDELIN_DELACMERR 0xf56f4010
/* P1_TSSTATEM */
#define RSTV0910_P1_TSSTATEM 0xf570
#define FSTV0910_P1_TSDIL_ON 0xf5707080
#define FSTV0910_P1_TSRS_ON 0xf5705020
#define FSTV0910_P1_TSDESCRAMB_ON 0xf5704010
#define FSTV0910_P1_TSFRAME_MODE 0xf5703008
#define FSTV0910_P1_TS_DISABLE 0xf5702004
#define FSTV0910_P1_TSACM_MODE 0xf5701002
#define FSTV0910_P1_TSOUT_NOSYNC 0xf5700001
/* P1_TSSTATEL */
#define RSTV0910_P1_TSSTATEL 0xf571
#define FSTV0910_P1_TSNOSYNCBYTE 0xf5717080
#define FSTV0910_P1_TSPARITY_ON 0xf5716040
#define FSTV0910_P1_TSISSYI_ON 0xf5713008
#define FSTV0910_P1_TSNPD_ON 0xf5712004
#define FSTV0910_P1_TSCRC8_ON 0xf5711002
#define FSTV0910_P1_TSDSS_PACKET 0xf5710001
/* P1_TSCFGH */
#define RSTV0910_P1_TSCFGH 0xf572
#define FSTV0910_P1_TSFIFO_DVBCI 0xf5727080
#define FSTV0910_P1_TSFIFO_SERIAL 0xf5726040
#define FSTV0910_P1_TSFIFO_TEIUPDATE 0xf5725020
#define FSTV0910_P1_TSFIFO_DUTY50 0xf5724010
#define FSTV0910_P1_TSFIFO_HSGNLOUT 0xf5723008
#define FSTV0910_P1_TSFIFO_ERRMODE 0xf5721006
#define FSTV0910_P1_RST_HWARE 0xf5720001
/* P1_TSCFGM */
#define RSTV0910_P1_TSCFGM 0xf573
#define FSTV0910_P1_TSFIFO_MANSPEED 0xf57360c0
#define FSTV0910_P1_TSFIFO_PERMDATA 0xf5735020
#define FSTV0910_P1_TSFIFO_NONEWSGNL 0xf5734010
#define FSTV0910_P1_TSFIFO_INVDATA 0xf5730001
/* P1_TSCFGL */
#define RSTV0910_P1_TSCFGL 0xf574
#define FSTV0910_P1_TSFIFO_BCLKDEL1CK 0xf57460c0
#define FSTV0910_P1_BCHERROR_MODE 0xf5744030
#define FSTV0910_P1_TSFIFO_NSGNL2DATA 0xf5743008
#define FSTV0910_P1_TSFIFO_EMBINDVB 0xf5742004
#define FSTV0910_P1_TSFIFO_BITSPEED 0xf5740003
/* P1_TSSYNC */
#define RSTV0910_P1_TSSYNC 0xf575
#define FSTV0910_P1_TSFIFO_SYNCMODE 0xf5753018
/* P1_TSINSDELH */
#define RSTV0910_P1_TSINSDELH 0xf576
#define FSTV0910_P1_TSDEL_SYNCBYTE 0xf5767080
#define FSTV0910_P1_TSDEL_XXHEADER 0xf5766040
#define FSTV0910_P1_TSDEL_DATAFIELD 0xf5764010
#define FSTV0910_P1_TSINSDEL_RSPARITY 0xf5761002
#define FSTV0910_P1_TSINSDEL_CRC8 0xf5760001
/* P1_TSINSDELM */
#define RSTV0910_P1_TSINSDELM 0xf577
#define FSTV0910_P1_TSINS_EMODCOD 0xf5774010
#define FSTV0910_P1_TSINS_TOKEN 0xf5773008
#define FSTV0910_P1_TSINS_XXXERR 0xf5772004
#define FSTV0910_P1_TSINS_MATYPE 0xf5771002
#define FSTV0910_P1_TSINS_UPL 0xf5770001
/* P1_TSINSDELL */
#define RSTV0910_P1_TSINSDELL 0xf578
#define FSTV0910_P1_TSINS_DFL 0xf5787080
#define FSTV0910_P1_TSINS_SYNCD 0xf5786040
#define FSTV0910_P1_TSINS_BLOCLEN 0xf5785020
#define FSTV0910_P1_TSINS_SIGPCOUNT 0xf5784010
#define FSTV0910_P1_TSINS_FIFO 0xf5783008
#define FSTV0910_P1_TSINS_REALPACK 0xf5782004
#define FSTV0910_P1_TSINS_TSCONFIG 0xf5781002
#define FSTV0910_P1_TSINS_LATENCY 0xf5780001
/* P1_TSDIVN */
#define RSTV0910_P1_TSDIVN 0xf579
#define FSTV0910_P1_TSFIFO_SPEEDMODE 0xf57960c0
#define FSTV0910_P1_TSFIFO_RISEOK 0xf5790007
/* P1_TSCFG4 */
#define RSTV0910_P1_TSCFG4 0xf57a
#define FSTV0910_P1_TSFIFO_TSSPEEDMODE 0xf57a60c0
/* P1_TSSPEED */
#define RSTV0910_P1_TSSPEED 0xf580
#define FSTV0910_P1_TSFIFO_OUTSPEED 0xf58000ff
/* P1_TSSTATUS */
#define RSTV0910_P1_TSSTATUS 0xf581
#define FSTV0910_P1_TSFIFO_LINEOK 0xf5817080
#define FSTV0910_P1_TSFIFO_ERROR 0xf5816040
#define FSTV0910_P1_TSFIFO_NOSYNC 0xf5814010
#define FSTV0910_P1_TSREGUL_ERROR 0xf5812004
#define FSTV0910_P1_DIL_READY 0xf5810001
/* P1_TSSTATUS2 */
#define RSTV0910_P1_TSSTATUS2 0xf582
#define FSTV0910_P1_TSFIFO_DEMODSEL 0xf5827080
#define FSTV0910_P1_TSFIFOSPEED_STORE 0xf5826040
#define FSTV0910_P1_DILXX_RESET 0xf5825020
#define FSTV0910_P1_SCRAMBDETECT 0xf5821002
/* P1_TSBITRATE1 */
#define RSTV0910_P1_TSBITRATE1 0xf583
#define FSTV0910_P1_TSFIFO_BITRATE1 0xf58300ff
/* P1_TSBITRATE0 */
#define RSTV0910_P1_TSBITRATE0 0xf584
#define FSTV0910_P1_TSFIFO_BITRATE0 0xf58400ff
/* P1_TSPACKLEN1 */
#define RSTV0910_P1_TSPACKLEN1 0xf585
#define FSTV0910_P1_TSFIFO_PACKCPT 0xf58550e0
/* P1_TSDLY2 */
#define RSTV0910_P1_TSDLY2 0xf589
#define FSTV0910_P1_SOFFIFO_LATENCY2 0xf589000f
/* P1_TSDLY1 */
#define RSTV0910_P1_TSDLY1 0xf58a
#define FSTV0910_P1_SOFFIFO_LATENCY1 0xf58a00ff
/* P1_TSDLY0 */
#define RSTV0910_P1_TSDLY0 0xf58b
#define FSTV0910_P1_SOFFIFO_LATENCY0 0xf58b00ff
/* P1_TSNPDAV */
#define RSTV0910_P1_TSNPDAV 0xf58c
#define FSTV0910_P1_TSNPD_AVERAGE 0xf58c00ff
/* P1_TSBUFSTAT2 */
#define RSTV0910_P1_TSBUFSTAT2 0xf58d
#define FSTV0910_P1_TSISCR_3BYTES 0xf58d7080
#define FSTV0910_P1_TSISCR_NEWDATA 0xf58d6040
#define FSTV0910_P1_TSISCR_BUFSTAT2 0xf58d003f
/* P1_TSBUFSTAT1 */
#define RSTV0910_P1_TSBUFSTAT1 0xf58e
#define FSTV0910_P1_TSISCR_BUFSTAT1 0xf58e00ff
/* P1_TSBUFSTAT0 */
#define RSTV0910_P1_TSBUFSTAT0 0xf58f
#define FSTV0910_P1_TSISCR_BUFSTAT0 0xf58f00ff
/* P1_TSDEBUGL */
#define RSTV0910_P1_TSDEBUGL 0xf591
#define FSTV0910_P1_TSFIFO_ERROR_EVNT 0xf5912004
#define FSTV0910_P1_TSFIFO_OVERFLOWM 0xf5910001
/* P1_TSDLYSET2 */
#define RSTV0910_P1_TSDLYSET2 0xf592
#define FSTV0910_P1_SOFFIFO_OFFSET 0xf59260c0
#define FSTV0910_P1_HYSTERESIS_THRESHOLD 0xf5924030
#define FSTV0910_P1_SOFFIFO_SYMBOFFS2 0xf592000f
/* P1_TSDLYSET1 */
#define RSTV0910_P1_TSDLYSET1 0xf593
#define FSTV0910_P1_SOFFIFO_SYMBOFFS1 0xf59300ff
/* P1_TSDLYSET0 */
#define RSTV0910_P1_TSDLYSET0 0xf594
#define FSTV0910_P1_SOFFIFO_SYMBOFFS0 0xf59400ff
/* P1_ERRCTRL1 */
#define RSTV0910_P1_ERRCTRL1 0xf598
#define FSTV0910_P1_ERR_SOURCE1 0xf59840f0
#define FSTV0910_P1_NUM_EVENT1 0xf5980007
/* P1_ERRCNT12 */
#define RSTV0910_P1_ERRCNT12 0xf599
#define FSTV0910_P1_ERRCNT1_OLDVALUE 0xf5997080
#define FSTV0910_P1_ERR_CNT12 0xf599007f
/* P1_ERRCNT11 */
#define RSTV0910_P1_ERRCNT11 0xf59a
#define FSTV0910_P1_ERR_CNT11 0xf59a00ff
/* P1_ERRCNT10 */
#define RSTV0910_P1_ERRCNT10 0xf59b
#define FSTV0910_P1_ERR_CNT10 0xf59b00ff
/* P1_ERRCTRL2 */
#define RSTV0910_P1_ERRCTRL2 0xf59c
#define FSTV0910_P1_ERR_SOURCE2 0xf59c40f0
#define FSTV0910_P1_NUM_EVENT2 0xf59c0007
/* P1_ERRCNT22 */
#define RSTV0910_P1_ERRCNT22 0xf59d
#define FSTV0910_P1_ERRCNT2_OLDVALUE 0xf59d7080
#define FSTV0910_P1_ERR_CNT22 0xf59d007f
/* P1_ERRCNT21 */
#define RSTV0910_P1_ERRCNT21 0xf59e
#define FSTV0910_P1_ERR_CNT21 0xf59e00ff
/* P1_ERRCNT20 */
#define RSTV0910_P1_ERRCNT20 0xf59f
#define FSTV0910_P1_ERR_CNT20 0xf59f00ff
/* P1_FECSPY */
#define RSTV0910_P1_FECSPY 0xf5a0
#define FSTV0910_P1_SPY_ENABLE 0xf5a07080
#define FSTV0910_P1_NO_SYNCBYTE 0xf5a06040
#define FSTV0910_P1_SERIAL_MODE 0xf5a05020
#define FSTV0910_P1_UNUSUAL_PACKET 0xf5a04010
#define FSTV0910_P1_BERMETER_DATAMODE 0xf5a0200c
#define FSTV0910_P1_BERMETER_LMODE 0xf5a01002
#define FSTV0910_P1_BERMETER_RESET 0xf5a00001
/* P1_FSPYCFG */
#define RSTV0910_P1_FSPYCFG 0xf5a1
#define FSTV0910_P1_FECSPY_INPUT 0xf5a160c0
#define FSTV0910_P1_RST_ON_ERROR 0xf5a15020
#define FSTV0910_P1_ONE_SHOT 0xf5a14010
#define FSTV0910_P1_I2C_MODE 0xf5a1200c
#define FSTV0910_P1_SPY_HYSTERESIS 0xf5a10003
/* P1_FSPYDATA */
#define RSTV0910_P1_FSPYDATA 0xf5a2
#define FSTV0910_P1_SPY_STUFFING 0xf5a27080
#define FSTV0910_P1_SPY_CNULLPKT 0xf5a25020
#define FSTV0910_P1_SPY_OUTDATA_MODE 0xf5a2001f
/* P1_FSPYOUT */
#define RSTV0910_P1_FSPYOUT 0xf5a3
#define FSTV0910_P1_FSPY_DIRECT 0xf5a37080
#define FSTV0910_P1_STUFF_MODE 0xf5a30007
/* P1_FSTATUS */
#define RSTV0910_P1_FSTATUS 0xf5a4
#define FSTV0910_P1_SPY_ENDSIM 0xf5a47080
#define FSTV0910_P1_VALID_SIM 0xf5a46040
#define FSTV0910_P1_FOUND_SIGNAL 0xf5a45020
#define FSTV0910_P1_DSS_SYNCBYTE 0xf5a44010
#define FSTV0910_P1_RESULT_STATE 0xf5a4000f
/* P1_FBERCPT4 */
#define RSTV0910_P1_FBERCPT4 0xf5a8
#define FSTV0910_P1_FBERMETER_CPT4 0xf5a800ff
/* P1_FBERCPT3 */
#define RSTV0910_P1_FBERCPT3 0xf5a9
#define FSTV0910_P1_FBERMETER_CPT3 0xf5a900ff
/* P1_FBERCPT2 */
#define RSTV0910_P1_FBERCPT2 0xf5aa
#define FSTV0910_P1_FBERMETER_CPT2 0xf5aa00ff
/* P1_FBERCPT1 */
#define RSTV0910_P1_FBERCPT1 0xf5ab
#define FSTV0910_P1_FBERMETER_CPT1 0xf5ab00ff
/* P1_FBERCPT0 */
#define RSTV0910_P1_FBERCPT0 0xf5ac
#define FSTV0910_P1_FBERMETER_CPT0 0xf5ac00ff
/* P1_FBERERR2 */
#define RSTV0910_P1_FBERERR2 0xf5ad
#define FSTV0910_P1_FBERMETER_ERR2 0xf5ad00ff
/* P1_FBERERR1 */
#define RSTV0910_P1_FBERERR1 0xf5ae
#define FSTV0910_P1_FBERMETER_ERR1 0xf5ae00ff
/* P1_FBERERR0 */
#define RSTV0910_P1_FBERERR0 0xf5af
#define FSTV0910_P1_FBERMETER_ERR0 0xf5af00ff
/* P1_FSPYBER */
#define RSTV0910_P1_FSPYBER 0xf5b2
#define FSTV0910_P1_FSPYBER_SYNCBYTE 0xf5b24010
#define FSTV0910_P1_FSPYBER_UNSYNC 0xf5b23008
#define FSTV0910_P1_FSPYBER_CTIME 0xf5b20007
/* P1_SFERROR */
#define RSTV0910_P1_SFERROR 0xf5c1
#define FSTV0910_P1_SFEC_REGERR_VIT 0xf5c100ff
/* P1_SFECSTATUS */
#define RSTV0910_P1_SFECSTATUS 0xf5c3
#define FSTV0910_P1_SFEC_ON 0xf5c37080
#define FSTV0910_P1_SFEC_OFF 0xf5c36040
#define FSTV0910_P1_LOCKEDSFEC 0xf5c33008
#define FSTV0910_P1_SFEC_DELOCK 0xf5c32004
#define FSTV0910_P1_SFEC_DEMODSEL 0xf5c31002
#define FSTV0910_P1_SFEC_OVFON 0xf5c30001
/* P1_SFKDIV12 */
#define RSTV0910_P1_SFKDIV12 0xf5c4
#define FSTV0910_P1_SFECKDIV12_MAN 0xf5c47080
/* P1_SFKDIV23 */
#define RSTV0910_P1_SFKDIV23 0xf5c5
#define FSTV0910_P1_SFECKDIV23_MAN 0xf5c57080
/* P1_SFKDIV34 */
#define RSTV0910_P1_SFKDIV34 0xf5c6
#define FSTV0910_P1_SFECKDIV34_MAN 0xf5c67080
/* P1_SFKDIV56 */
#define RSTV0910_P1_SFKDIV56 0xf5c7
#define FSTV0910_P1_SFECKDIV56_MAN 0xf5c77080
/* P1_SFKDIV67 */
#define RSTV0910_P1_SFKDIV67 0xf5c8
#define FSTV0910_P1_SFECKDIV67_MAN 0xf5c87080
/* P1_SFKDIV78 */
#define RSTV0910_P1_SFKDIV78 0xf5c9
#define FSTV0910_P1_SFECKDIV78_MAN 0xf5c97080
/* P1_SFSTATUS */
#define RSTV0910_P1_SFSTATUS 0xf5cc
#define FSTV0910_P1_SFEC_LINEOK 0xf5cc7080
#define FSTV0910_P1_SFEC_ERROR 0xf5cc6040
#define FSTV0910_P1_SFEC_DATA7 0xf5cc5020
#define FSTV0910_P1_SFEC_PKTDNBRFAIL 0xf5cc4010
#define FSTV0910_P1_TSSFEC_DEMODSEL 0xf5cc3008
#define FSTV0910_P1_SFEC_NOSYNC 0xf5cc2004
#define FSTV0910_P1_SFEC_UNREGULA 0xf5cc1002
#define FSTV0910_P1_SFEC_READY 0xf5cc0001
/* P1_SFDLYSET2 */
#define RSTV0910_P1_SFDLYSET2 0xf5d0
#define FSTV0910_P1_SFEC_DISABLE 0xf5d01002
/* P1_SFERRCTRL */
#define RSTV0910_P1_SFERRCTRL 0xf5d8
#define FSTV0910_P1_SFEC_ERR_SOURCE 0xf5d840f0
#define FSTV0910_P1_SFEC_NUM_EVENT 0xf5d80007
/* P1_SFERRCNT2 */
#define RSTV0910_P1_SFERRCNT2 0xf5d9
#define FSTV0910_P1_SFERRC_OLDVALUE 0xf5d97080
#define FSTV0910_P1_SFEC_ERR_CNT2 0xf5d9007f
/* P1_SFERRCNT1 */
#define RSTV0910_P1_SFERRCNT1 0xf5da
#define FSTV0910_P1_SFEC_ERR_CNT1 0xf5da00ff
/* P1_SFERRCNT0 */
#define RSTV0910_P1_SFERRCNT0 0xf5db
#define FSTV0910_P1_SFEC_ERR_CNT0 0xf5db00ff
/* RCCFG2 */
#define RSTV0910_RCCFG2 0xf600
#define FSTV0910_TSRCFIFO_DVBCI 0xf6007080
#define FSTV0910_TSRCFIFO_SERIAL 0xf6006040
#define FSTV0910_TSRCFIFO_DISABLE 0xf6005020
#define FSTV0910_TSFIFO_2TORC 0xf6004010
#define FSTV0910_TSRCFIFO_HSGNLOUT 0xf6003008
#define FSTV0910_TSRCFIFO_ERRMODE 0xf6001006
/* RCCFG1 */
#define RSTV0910_RCCFG1 0xf601
#define FSTV0910_TSRCFIFO_MANSPEED 0xf60160c0
#define FSTV0910_TSRCFIFO_PERMDATA 0xf6015020
#define FSTV0910_TSRCFIFO_NONEWSGNL 0xf6014010
#define FSTV0910_TSRCFIFO_INVDATA 0xf6010001
/* RCCFG0 */
#define RSTV0910_RCCFG0 0xf602
#define FSTV0910_TSRCFIFO_BCLKDEL1CK 0xf60260c0
#define FSTV0910_TSRCFIFO_DUTY50 0xf6024010
#define FSTV0910_TSRCFIFO_NSGNL2DATA 0xf6023008
#define FSTV0910_TSRCFIFO_NPDSGNL 0xf6022004
/* RCINSDEL2 */
#define RSTV0910_RCINSDEL2 0xf603
#define FSTV0910_TSRCDEL_SYNCBYTE 0xf6037080
#define FSTV0910_TSRCDEL_XXHEADER 0xf6036040
#define FSTV0910_TSRCDEL_BBHEADER 0xf6035020
#define FSTV0910_TSRCDEL_DATAFIELD 0xf6034010
#define FSTV0910_TSRCINSDEL_ISCR 0xf6033008
#define FSTV0910_TSRCINSDEL_NPD 0xf6032004
#define FSTV0910_TSRCINSDEL_RSPARITY 0xf6031002
#define FSTV0910_TSRCINSDEL_CRC8 0xf6030001
/* RCINSDEL1 */
#define RSTV0910_RCINSDEL1 0xf604
#define FSTV0910_TSRCINS_BBPADDING 0xf6047080
#define FSTV0910_TSRCINS_BCHFEC 0xf6046040
#define FSTV0910_TSRCINS_EMODCOD 0xf6044010
#define FSTV0910_TSRCINS_TOKEN 0xf6043008
#define FSTV0910_TSRCINS_XXXERR 0xf6042004
#define FSTV0910_TSRCINS_MATYPE 0xf6041002
#define FSTV0910_TSRCINS_UPL 0xf6040001
/* RCINSDEL0 */
#define RSTV0910_RCINSDEL0 0xf605
#define FSTV0910_TSRCINS_DFL 0xf6057080
#define FSTV0910_TSRCINS_SYNCD 0xf6056040
#define FSTV0910_TSRCINS_BLOCLEN 0xf6055020
#define FSTV0910_TSRCINS_SIGPCOUNT 0xf6054010
#define FSTV0910_TSRCINS_FIFO 0xf6053008
#define FSTV0910_TSRCINS_REALPACK 0xf6052004
#define FSTV0910_TSRCINS_TSCONFIG 0xf6051002
#define FSTV0910_TSRCINS_LATENCY 0xf6050001
/* RCSTATUS */
#define RSTV0910_RCSTATUS 0xf606
#define FSTV0910_TSRCFIFO_LINEOK 0xf6067080
#define FSTV0910_TSRCFIFO_ERROR 0xf6066040
#define FSTV0910_TSRCREGUL_ERROR 0xf6064010
#define FSTV0910_TSRCFIFO_DEMODSEL 0xf6063008
#define FSTV0910_TSRCFIFOSPEED_STORE 0xf6062004
#define FSTV0910_TSRCSPEED_IMPOSSIBLE 0xf6060001
/* RCSPEED */
#define RSTV0910_RCSPEED 0xf607
#define FSTV0910_TSRCFIFO_OUTSPEED 0xf60700ff
/* TSGENERAL */
#define RSTV0910_TSGENERAL 0xf630
#define FSTV0910_TSFIFO_DISTS2PAR 0xf6306040
#define FSTV0910_MUXSTREAM_OUTMODE 0xf6303008
#define FSTV0910_TSFIFO_PERMPARAL 0xf6301006
/* P1_DISIRQCFG */
#define RSTV0910_P1_DISIRQCFG 0xf700
#define FSTV0910_P1_ENRXEND 0xf7006040
#define FSTV0910_P1_ENRXFIFO8B 0xf7005020
#define FSTV0910_P1_ENTRFINISH 0xf7004010
#define FSTV0910_P1_ENTIMEOUT 0xf7003008
#define FSTV0910_P1_ENTXEND 0xf7002004
#define FSTV0910_P1_ENTXFIFO64B 0xf7001002
#define FSTV0910_P1_ENGAPBURST 0xf7000001
/* P1_DISIRQSTAT */
#define RSTV0910_P1_DISIRQSTAT 0xf701
#define FSTV0910_P1_IRQRXEND 0xf7016040
#define FSTV0910_P1_IRQRXFIFO8B 0xf7015020
#define FSTV0910_P1_IRQTRFINISH 0xf7014010
#define FSTV0910_P1_IRQTIMEOUT 0xf7013008
#define FSTV0910_P1_IRQTXEND 0xf7012004
#define FSTV0910_P1_IRQTXFIFO64B 0xf7011002
#define FSTV0910_P1_IRQGAPBURST 0xf7010001
/* P1_DISTXCFG */
#define RSTV0910_P1_DISTXCFG 0xf702
#define FSTV0910_P1_DISTX_RESET 0xf7027080
#define FSTV0910_P1_TIM_OFF 0xf7026040
#define FSTV0910_P1_TIM_CMD 0xf7024030
#define FSTV0910_P1_ENVELOP 0xf7023008
#define FSTV0910_P1_DIS_PRECHARGE 0xf7022004
#define FSTV0910_P1_DISEQC_MODE 0xf7020003
/* P1_DISTXSTATUS */
#define RSTV0910_P1_DISTXSTATUS 0xf703
#define FSTV0910_P1_TX_FIFO_FULL 0xf7036040
#define FSTV0910_P1_TX_IDLE 0xf7035020
#define FSTV0910_P1_GAP_BURST 0xf7034010
#define FSTV0910_P1_TX_FIFO64B 0xf7033008
#define FSTV0910_P1_TX_END 0xf7032004
#define FSTV0910_P1_TR_TIMEOUT 0xf7031002
#define FSTV0910_P1_TR_FINISH 0xf7030001
/* P1_DISTXBYTES */
#define RSTV0910_P1_DISTXBYTES 0xf704
#define FSTV0910_P1_TXFIFO_BYTES 0xf70400ff
/* P1_DISTXFIFO */
#define RSTV0910_P1_DISTXFIFO 0xf705
#define FSTV0910_P1_DISEQC_TX_FIFO 0xf70500ff
/* P1_DISTXF22 */
#define RSTV0910_P1_DISTXF22 0xf706
#define FSTV0910_P1_F22TX 0xf70600ff
/* P1_DISTIMEOCFG */
#define RSTV0910_P1_DISTIMEOCFG 0xf708
#define FSTV0910_P1_RXCHOICE 0xf7081006
#define FSTV0910_P1_TIMEOUT_OFF 0xf7080001
/* P1_DISTIMEOUT */
#define RSTV0910_P1_DISTIMEOUT 0xf709
#define FSTV0910_P1_TIMEOUT_COUNT 0xf70900ff
/* P1_DISRXCFG */
#define RSTV0910_P1_DISRXCFG 0xf70a
#define FSTV0910_P1_DISRX_RESET 0xf70a7080
#define FSTV0910_P1_EXTENVELOP 0xf70a6040
#define FSTV0910_P1_PINSELECT 0xf70a3038
#define FSTV0910_P1_IGNORE_SHORT22K 0xf70a2004
#define FSTV0910_P1_SIGNED_RXIN 0xf70a1002
#define FSTV0910_P1_DISRX_ON 0xf70a0001
/* P1_DISRXSTAT1 */
#define RSTV0910_P1_DISRXSTAT1 0xf70b
#define FSTV0910_P1_RXEND 0xf70b7080
#define FSTV0910_P1_RXACTIVE 0xf70b6040
#define FSTV0910_P1_RXDETECT 0xf70b5020
#define FSTV0910_P1_CONTTONE 0xf70b4010
#define FSTV0910_P1_8BFIFOREADY 0xf70b3008
#define FSTV0910_P1_FIFOEMPTY 0xf70b2004
/* P1_DISRXSTAT0 */
#define RSTV0910_P1_DISRXSTAT0 0xf70c
#define FSTV0910_P1_RXFAIL 0xf70c7080
#define FSTV0910_P1_FIFOPFAIL 0xf70c6040
#define FSTV0910_P1_RXNONBYTE 0xf70c5020
#define FSTV0910_P1_FIFOOVF 0xf70c4010
#define FSTV0910_P1_SHORT22K 0xf70c3008
#define FSTV0910_P1_RXMSGLOST 0xf70c2004
/* P1_DISRXBYTES */
#define RSTV0910_P1_DISRXBYTES 0xf70d
#define FSTV0910_P1_RXFIFO_BYTES 0xf70d001f
/* P1_DISRXPARITY1 */
#define RSTV0910_P1_DISRXPARITY1 0xf70e
#define FSTV0910_P1_DISRX_PARITY1 0xf70e00ff
/* P1_DISRXPARITY0 */
#define RSTV0910_P1_DISRXPARITY0 0xf70f
#define FSTV0910_P1_DISRX_PARITY0 0xf70f00ff
/* P1_DISRXFIFO */
#define RSTV0910_P1_DISRXFIFO 0xf710
#define FSTV0910_P1_DISEQC_RX_FIFO 0xf71000ff
/* P1_DISRXDC1 */
#define RSTV0910_P1_DISRXDC1 0xf711
#define FSTV0910_P1_DC_VALUE1 0xf7110103
/* P1_DISRXDC0 */
#define RSTV0910_P1_DISRXDC0 0xf712
#define FSTV0910_P1_DC_VALUE0 0xf71200ff
/* P1_DISRXF221 */
#define RSTV0910_P1_DISRXF221 0xf714
#define FSTV0910_P1_F22RX1 0xf714000f
/* P1_DISRXF220 */
#define RSTV0910_P1_DISRXF220 0xf715
#define FSTV0910_P1_F22RX0 0xf71500ff
/* P1_DISRXF100 */
#define RSTV0910_P1_DISRXF100 0xf716
#define FSTV0910_P1_F100RX 0xf71600ff
/* P1_DISRXSHORT22K */
#define RSTV0910_P1_DISRXSHORT22K 0xf71c
#define FSTV0910_P1_SHORT22K_LENGTH 0xf71c001f
/* P1_ACRPRESC */
#define RSTV0910_P1_ACRPRESC 0xf71e
#define FSTV0910_P1_ACR_PRESC 0xf71e0007
/* P1_ACRDIV */
#define RSTV0910_P1_ACRDIV 0xf71f
#define FSTV0910_P1_ACR_DIV 0xf71f00ff
/* P2_DISIRQCFG */
#define RSTV0910_P2_DISIRQCFG 0xf740
#define FSTV0910_P2_ENRXEND 0xf7406040
#define FSTV0910_P2_ENRXFIFO8B 0xf7405020
#define FSTV0910_P2_ENTRFINISH 0xf7404010
#define FSTV0910_P2_ENTIMEOUT 0xf7403008
#define FSTV0910_P2_ENTXEND 0xf7402004
#define FSTV0910_P2_ENTXFIFO64B 0xf7401002
#define FSTV0910_P2_ENGAPBURST 0xf7400001
/* P2_DISIRQSTAT */
#define RSTV0910_P2_DISIRQSTAT 0xf741
#define FSTV0910_P2_IRQRXEND 0xf7416040
#define FSTV0910_P2_IRQRXFIFO8B 0xf7415020
#define FSTV0910_P2_IRQTRFINISH 0xf7414010
#define FSTV0910_P2_IRQTIMEOUT 0xf7413008
#define FSTV0910_P2_IRQTXEND 0xf7412004
#define FSTV0910_P2_IRQTXFIFO64B 0xf7411002
#define FSTV0910_P2_IRQGAPBURST 0xf7410001
/* P2_DISTXCFG */
#define RSTV0910_P2_DISTXCFG 0xf742
#define FSTV0910_P2_DISTX_RESET 0xf7427080
#define FSTV0910_P2_TIM_OFF 0xf7426040
#define FSTV0910_P2_TIM_CMD 0xf7424030
#define FSTV0910_P2_ENVELOP 0xf7423008
#define FSTV0910_P2_DIS_PRECHARGE 0xf7422004
#define FSTV0910_P2_DISEQC_MODE 0xf7420003
/* P2_DISTXSTATUS */
#define RSTV0910_P2_DISTXSTATUS 0xf743
#define FSTV0910_P2_TX_FIFO_FULL 0xf7436040
#define FSTV0910_P2_TX_IDLE 0xf7435020
#define FSTV0910_P2_GAP_BURST 0xf7434010
#define FSTV0910_P2_TX_FIFO64B 0xf7433008
#define FSTV0910_P2_TX_END 0xf7432004
#define FSTV0910_P2_TR_TIMEOUT 0xf7431002
#define FSTV0910_P2_TR_FINISH 0xf7430001
/* P2_DISTXBYTES */
#define RSTV0910_P2_DISTXBYTES 0xf744
#define FSTV0910_P2_TXFIFO_BYTES 0xf74400ff
/* P2_DISTXFIFO */
#define RSTV0910_P2_DISTXFIFO 0xf745
#define FSTV0910_P2_DISEQC_TX_FIFO 0xf74500ff
/* P2_DISTXF22 */
#define RSTV0910_P2_DISTXF22 0xf746
#define FSTV0910_P2_F22TX 0xf74600ff
/* P2_DISTIMEOCFG */
#define RSTV0910_P2_DISTIMEOCFG 0xf748
#define FSTV0910_P2_RXCHOICE 0xf7481006
#define FSTV0910_P2_TIMEOUT_OFF 0xf7480001
/* P2_DISTIMEOUT */
#define RSTV0910_P2_DISTIMEOUT 0xf749
#define FSTV0910_P2_TIMEOUT_COUNT 0xf74900ff
/* P2_DISRXCFG */
#define RSTV0910_P2_DISRXCFG 0xf74a
#define FSTV0910_P2_DISRX_RESET 0xf74a7080
#define FSTV0910_P2_EXTENVELOP 0xf74a6040
#define FSTV0910_P2_PINSELECT 0xf74a3038
#define FSTV0910_P2_IGNORE_SHORT22K 0xf74a2004
#define FSTV0910_P2_SIGNED_RXIN 0xf74a1002
#define FSTV0910_P2_DISRX_ON 0xf74a0001
/* P2_DISRXSTAT1 */
#define RSTV0910_P2_DISRXSTAT1 0xf74b
#define FSTV0910_P2_RXEND 0xf74b7080
#define FSTV0910_P2_RXACTIVE 0xf74b6040
#define FSTV0910_P2_RXDETECT 0xf74b5020
#define FSTV0910_P2_CONTTONE 0xf74b4010
#define FSTV0910_P2_8BFIFOREADY 0xf74b3008
#define FSTV0910_P2_FIFOEMPTY 0xf74b2004
/* P2_DISRXSTAT0 */
#define RSTV0910_P2_DISRXSTAT0 0xf74c
#define FSTV0910_P2_RXFAIL 0xf74c7080
#define FSTV0910_P2_FIFOPFAIL 0xf74c6040
#define FSTV0910_P2_RXNONBYTE 0xf74c5020
#define FSTV0910_P2_FIFOOVF 0xf74c4010
#define FSTV0910_P2_SHORT22K 0xf74c3008
#define FSTV0910_P2_RXMSGLOST 0xf74c2004
/* P2_DISRXBYTES */
#define RSTV0910_P2_DISRXBYTES 0xf74d
#define FSTV0910_P2_RXFIFO_BYTES 0xf74d001f
/* P2_DISRXPARITY1 */
#define RSTV0910_P2_DISRXPARITY1 0xf74e
#define FSTV0910_P2_DISRX_PARITY1 0xf74e00ff
/* P2_DISRXPARITY0 */
#define RSTV0910_P2_DISRXPARITY0 0xf74f
#define FSTV0910_P2_DISRX_PARITY0 0xf74f00ff
/* P2_DISRXFIFO */
#define RSTV0910_P2_DISRXFIFO 0xf750
#define FSTV0910_P2_DISEQC_RX_FIFO 0xf75000ff
/* P2_DISRXDC1 */
#define RSTV0910_P2_DISRXDC1 0xf751
#define FSTV0910_P2_DC_VALUE1 0xf7510103
/* P2_DISRXDC0 */
#define RSTV0910_P2_DISRXDC0 0xf752
#define FSTV0910_P2_DC_VALUE0 0xf75200ff
/* P2_DISRXF221 */
#define RSTV0910_P2_DISRXF221 0xf754
#define FSTV0910_P2_F22RX1 0xf754000f
/* P2_DISRXF220 */
#define RSTV0910_P2_DISRXF220 0xf755
#define FSTV0910_P2_F22RX0 0xf75500ff
/* P2_DISRXF100 */
#define RSTV0910_P2_DISRXF100 0xf756
#define FSTV0910_P2_F100RX 0xf75600ff
/* P2_DISRXSHORT22K */
#define RSTV0910_P2_DISRXSHORT22K 0xf75c
#define FSTV0910_P2_SHORT22K_LENGTH 0xf75c001f
/* P2_ACRPRESC */
#define RSTV0910_P2_ACRPRESC 0xf75e
#define FSTV0910_P2_ACR_PRESC 0xf75e0007
/* P2_ACRDIV */
#define RSTV0910_P2_ACRDIV 0xf75f
#define FSTV0910_P2_ACR_DIV 0xf75f00ff
/* P1_NBITER_NF1 */
#define RSTV0910_P1_NBITER_NF1 0xfa00
#define FSTV0910_P1_NBITER_NF_QPSK_1_4 0xfa0000ff
/* P1_NBITER_NF2 */
#define RSTV0910_P1_NBITER_NF2 0xfa01
#define FSTV0910_P1_NBITER_NF_QPSK_1_3 0xfa0100ff
/* P1_NBITER_NF3 */
#define RSTV0910_P1_NBITER_NF3 0xfa02
#define FSTV0910_P1_NBITER_NF_QPSK_2_5 0xfa0200ff
/* P1_NBITER_NF4 */
#define RSTV0910_P1_NBITER_NF4 0xfa03
#define FSTV0910_P1_NBITER_NF_QPSK_1_2 0xfa0300ff
/* P1_NBITER_NF5 */
#define RSTV0910_P1_NBITER_NF5 0xfa04
#define FSTV0910_P1_NBITER_NF_QPSK_3_5 0xfa0400ff
/* P1_NBITER_NF6 */
#define RSTV0910_P1_NBITER_NF6 0xfa05
#define FSTV0910_P1_NBITER_NF_QPSK_2_3 0xfa0500ff
/* P1_NBITER_NF7 */
#define RSTV0910_P1_NBITER_NF7 0xfa06
#define FSTV0910_P1_NBITER_NF_QPSK_3_4 0xfa0600ff
/* P1_NBITER_NF8 */
#define RSTV0910_P1_NBITER_NF8 0xfa07
#define FSTV0910_P1_NBITER_NF_QPSK_4_5 0xfa0700ff
/* P1_NBITER_NF9 */
#define RSTV0910_P1_NBITER_NF9 0xfa08
#define FSTV0910_P1_NBITER_NF_QPSK_5_6 0xfa0800ff
/* P1_NBITER_NF10 */
#define RSTV0910_P1_NBITER_NF10 0xfa09
#define FSTV0910_P1_NBITER_NF_QPSK_8_9 0xfa0900ff
/* P1_NBITER_NF11 */
#define RSTV0910_P1_NBITER_NF11 0xfa0a
#define FSTV0910_P1_NBITER_NF_QPSK_9_10 0xfa0a00ff
/* P1_NBITER_NF12 */
#define RSTV0910_P1_NBITER_NF12 0xfa0b
#define FSTV0910_P1_NBITER_NF_8PSK_3_5 0xfa0b00ff
/* P1_NBITER_NF13 */
#define RSTV0910_P1_NBITER_NF13 0xfa0c
#define FSTV0910_P1_NBITER_NF_8PSK_2_3 0xfa0c00ff
/* P1_NBITER_NF14 */
#define RSTV0910_P1_NBITER_NF14 0xfa0d
#define FSTV0910_P1_NBITER_NF_8PSK_3_4 0xfa0d00ff
/* P1_NBITER_NF15 */
#define RSTV0910_P1_NBITER_NF15 0xfa0e
#define FSTV0910_P1_NBITER_NF_8PSK_5_6 0xfa0e00ff
/* P1_NBITER_NF16 */
#define RSTV0910_P1_NBITER_NF16 0xfa0f
#define FSTV0910_P1_NBITER_NF_8PSK_8_9 0xfa0f00ff
/* P1_NBITER_NF17 */
#define RSTV0910_P1_NBITER_NF17 0xfa10
#define FSTV0910_P1_NBITER_NF_8PSK_9_10 0xfa1000ff
/* P1_NBITER_NF18 */
#define RSTV0910_P1_NBITER_NF18 0xfa11
#define FSTV0910_P1_NBITER_NF_16APSK_2_3 0xfa1100ff
/* P1_NBITER_NF19 */
#define RSTV0910_P1_NBITER_NF19 0xfa12
#define FSTV0910_P1_NBITER_NF_16APSK_3_4 0xfa1200ff
/* P1_NBITER_NF20 */
#define RSTV0910_P1_NBITER_NF20 0xfa13
#define FSTV0910_P1_NBITER_NF_16APSK_4_5 0xfa1300ff
/* P1_NBITER_NF21 */
#define RSTV0910_P1_NBITER_NF21 0xfa14
#define FSTV0910_P1_NBITER_NF_16APSK_5_6 0xfa1400ff
/* P1_NBITER_NF22 */
#define RSTV0910_P1_NBITER_NF22 0xfa15
#define FSTV0910_P1_NBITER_NF_16APSK_8_9 0xfa1500ff
/* P1_NBITER_NF23 */
#define RSTV0910_P1_NBITER_NF23 0xfa16
#define FSTV0910_P1_NBITER_NF_16APSK_9_10 0xfa1600ff
/* P1_NBITER_NF24 */
#define RSTV0910_P1_NBITER_NF24 0xfa17
#define FSTV0910_P1_NBITER_NF_32APSK_3_4 0xfa1700ff
/* P1_NBITER_NF25 */
#define RSTV0910_P1_NBITER_NF25 0xfa18
#define FSTV0910_P1_NBITER_NF_32APSK_4_5 0xfa1800ff
/* P1_NBITER_NF26 */
#define RSTV0910_P1_NBITER_NF26 0xfa19
#define FSTV0910_P1_NBITER_NF_32APSK_5_6 0xfa1900ff
/* P1_NBITER_NF27 */
#define RSTV0910_P1_NBITER_NF27 0xfa1a
#define FSTV0910_P1_NBITER_NF_32APSK_8_9 0xfa1a00ff
/* P1_NBITER_NF28 */
#define RSTV0910_P1_NBITER_NF28 0xfa1b
#define FSTV0910_P1_NBITER_NF_32APSK_9_10 0xfa1b00ff
/* P1_NBITER_SF1 */
#define RSTV0910_P1_NBITER_SF1 0xfa1c
#define FSTV0910_P1_NBITER_SF_QPSK_1_4 0xfa1c00ff
/* P1_NBITER_SF2 */
#define RSTV0910_P1_NBITER_SF2 0xfa1d
#define FSTV0910_P1_NBITER_SF_QPSK_1_3 0xfa1d00ff
/* P1_NBITER_SF3 */
#define RSTV0910_P1_NBITER_SF3 0xfa1e
#define FSTV0910_P1_NBITER_SF_QPSK_2_5 0xfa1e00ff
/* P1_NBITER_SF4 */
#define RSTV0910_P1_NBITER_SF4 0xfa1f
#define FSTV0910_P1_NBITER_SF_QPSK_1_2 0xfa1f00ff
/* P1_NBITER_SF5 */
#define RSTV0910_P1_NBITER_SF5 0xfa20
#define FSTV0910_P1_NBITER_SF_QPSK_3_5 0xfa2000ff
/* P1_NBITER_SF6 */
#define RSTV0910_P1_NBITER_SF6 0xfa21
#define FSTV0910_P1_NBITER_SF_QPSK_2_3 0xfa2100ff
/* P1_NBITER_SF7 */
#define RSTV0910_P1_NBITER_SF7 0xfa22
#define FSTV0910_P1_NBITER_SF_QPSK_3_4 0xfa2200ff
/* P1_NBITER_SF8 */
#define RSTV0910_P1_NBITER_SF8 0xfa23
#define FSTV0910_P1_NBITER_SF_QPSK_4_5 0xfa2300ff
/* P1_NBITER_SF9 */
#define RSTV0910_P1_NBITER_SF9 0xfa24
#define FSTV0910_P1_NBITER_SF_QPSK_5_6 0xfa2400ff
/* P1_NBITER_SF10 */
#define RSTV0910_P1_NBITER_SF10 0xfa25
#define FSTV0910_P1_NBITER_SF_QPSK_8_9 0xfa2500ff
/* P1_NBITER_SF12 */
#define RSTV0910_P1_NBITER_SF12 0xfa26
#define FSTV0910_P1_NBITER_SF_8PSK_3_5 0xfa2600ff
/* P1_NBITER_SF13 */
#define RSTV0910_P1_NBITER_SF13 0xfa27
#define FSTV0910_P1_NBITER_SF_8PSK_2_3 0xfa2700ff
/* P1_NBITER_SF14 */
#define RSTV0910_P1_NBITER_SF14 0xfa28
#define FSTV0910_P1_NBITER_SF_8PSK_3_4 0xfa2800ff
/* P1_NBITER_SF15 */
#define RSTV0910_P1_NBITER_SF15 0xfa29
#define FSTV0910_P1_NBITER_SF_8PSK_5_6 0xfa2900ff
/* P1_NBITER_SF16 */
#define RSTV0910_P1_NBITER_SF16 0xfa2a
#define FSTV0910_P1_NBITER_SF_8PSK_8_9 0xfa2a00ff
/* P1_NBITER_SF18 */
#define RSTV0910_P1_NBITER_SF18 0xfa2b
#define FSTV0910_P1_NBITER_SF_16APSK_2_3 0xfa2b00ff
/* P1_NBITER_SF19 */
#define RSTV0910_P1_NBITER_SF19 0xfa2c
#define FSTV0910_P1_NBITER_SF_16APSK_3_4 0xfa2c00ff
/* P1_NBITER_SF20 */
#define RSTV0910_P1_NBITER_SF20 0xfa2d
#define FSTV0910_P1_NBITER_SF_16APSK_4_5 0xfa2d00ff
/* P1_NBITER_SF21 */
#define RSTV0910_P1_NBITER_SF21 0xfa2e
#define FSTV0910_P1_NBITER_SF_16APSK_5_6 0xfa2e00ff
/* P1_NBITER_SF22 */
#define RSTV0910_P1_NBITER_SF22 0xfa2f
#define FSTV0910_P1_NBITER_SF_16APSK_8_9 0xfa2f00ff
/* P1_NBITER_SF24 */
#define RSTV0910_P1_NBITER_SF24 0xfa30
#define FSTV0910_P1_NBITER_SF_32APSK_3_4 0xfa3000ff
/* P1_NBITER_SF25 */
#define RSTV0910_P1_NBITER_SF25 0xfa31
#define FSTV0910_P1_NBITER_SF_32APSK_4_5 0xfa3100ff
/* P1_NBITER_SF26 */
#define RSTV0910_P1_NBITER_SF26 0xfa32
#define FSTV0910_P1_NBITER_SF_32APSK_5_6 0xfa3200ff
/* P1_NBITER_SF27 */
#define RSTV0910_P1_NBITER_SF27 0xfa33
#define FSTV0910_P1_NBITER_SF_32APSK_8_9 0xfa3300ff
/* SELSATUR6 */
#define RSTV0910_SELSATUR6 0xfa34
#define FSTV0910_SSAT_SF27 0xfa343008
#define FSTV0910_SSAT_SF26 0xfa342004
#define FSTV0910_SSAT_SF25 0xfa341002
#define FSTV0910_SSAT_SF24 0xfa340001
/* SELSATUR5 */
#define RSTV0910_SELSATUR5 0xfa35
#define FSTV0910_SSAT_SF22 0xfa357080
#define FSTV0910_SSAT_SF21 0xfa356040
#define FSTV0910_SSAT_SF20 0xfa355020
#define FSTV0910_SSAT_SF19 0xfa354010
#define FSTV0910_SSAT_SF18 0xfa353008
#define FSTV0910_SSAT_SF16 0xfa352004
#define FSTV0910_SSAT_SF15 0xfa351002
#define FSTV0910_SSAT_SF14 0xfa350001
/* SELSATUR4 */
#define RSTV0910_SELSATUR4 0xfa36
#define FSTV0910_SSAT_SF13 0xfa367080
#define FSTV0910_SSAT_SF12 0xfa366040
#define FSTV0910_SSAT_SF10 0xfa365020
#define FSTV0910_SSAT_SF9 0xfa364010
#define FSTV0910_SSAT_SF8 0xfa363008
#define FSTV0910_SSAT_SF7 0xfa362004
#define FSTV0910_SSAT_SF6 0xfa361002
#define FSTV0910_SSAT_SF5 0xfa360001
/* SELSATUR3 */
#define RSTV0910_SELSATUR3 0xfa37
#define FSTV0910_SSAT_SF4 0xfa377080
#define FSTV0910_SSAT_SF3 0xfa376040
#define FSTV0910_SSAT_SF2 0xfa375020
#define FSTV0910_SSAT_SF1 0xfa374010
#define FSTV0910_SSAT_NF28 0xfa373008
#define FSTV0910_SSAT_NF27 0xfa372004
#define FSTV0910_SSAT_NF26 0xfa371002
#define FSTV0910_SSAT_NF25 0xfa370001
/* SELSATUR2 */
#define RSTV0910_SELSATUR2 0xfa38
#define FSTV0910_SSAT_NF24 0xfa387080
#define FSTV0910_SSAT_NF23 0xfa386040
#define FSTV0910_SSAT_NF22 0xfa385020
#define FSTV0910_SSAT_NF21 0xfa384010
#define FSTV0910_SSAT_NF20 0xfa383008
#define FSTV0910_SSAT_NF19 0xfa382004
#define FSTV0910_SSAT_NF18 0xfa381002
#define FSTV0910_SSAT_NF17 0xfa380001
/* SELSATUR1 */
#define RSTV0910_SELSATUR1 0xfa39
#define FSTV0910_SSAT_NF16 0xfa397080
#define FSTV0910_SSAT_NF15 0xfa396040
#define FSTV0910_SSAT_NF14 0xfa395020
#define FSTV0910_SSAT_NF13 0xfa394010
#define FSTV0910_SSAT_NF12 0xfa393008
#define FSTV0910_SSAT_NF11 0xfa392004
#define FSTV0910_SSAT_NF10 0xfa391002
#define FSTV0910_SSAT_NF9 0xfa390001
/* SELSATUR0 */
#define RSTV0910_SELSATUR0 0xfa3a
#define FSTV0910_SSAT_NF8 0xfa3a7080
#define FSTV0910_SSAT_NF7 0xfa3a6040
#define FSTV0910_SSAT_NF6 0xfa3a5020
#define FSTV0910_SSAT_NF5 0xfa3a4010
#define FSTV0910_SSAT_NF4 0xfa3a3008
#define FSTV0910_SSAT_NF3 0xfa3a2004
#define FSTV0910_SSAT_NF2 0xfa3a1002
#define FSTV0910_SSAT_NF1 0xfa3a0001
/* GAINLLR_NF1 */
#define RSTV0910_GAINLLR_NF1 0xfa40
#define FSTV0910_GAINLLR_NF_QPSK_1_4 0xfa40007f
/* GAINLLR_NF2 */
#define RSTV0910_GAINLLR_NF2 0xfa41
#define FSTV0910_GAINLLR_NF_QPSK_1_3 0xfa41007f
/* GAINLLR_NF3 */
#define RSTV0910_GAINLLR_NF3 0xfa42
#define FSTV0910_GAINLLR_NF_QPSK_2_5 0xfa42007f
/* GAINLLR_NF4 */
#define RSTV0910_GAINLLR_NF4 0xfa43
#define FSTV0910_GAINLLR_NF_QPSK_1_2 0xfa43007f
/* GAINLLR_NF5 */
#define RSTV0910_GAINLLR_NF5 0xfa44
#define FSTV0910_GAINLLR_NF_QPSK_3_5 0xfa44007f
/* GAINLLR_NF6 */
#define RSTV0910_GAINLLR_NF6 0xfa45
#define FSTV0910_GAINLLR_NF_QPSK_2_3 0xfa45007f
/* GAINLLR_NF7 */
#define RSTV0910_GAINLLR_NF7 0xfa46
#define FSTV0910_GAINLLR_NF_QPSK_3_4 0xfa46007f
/* GAINLLR_NF8 */
#define RSTV0910_GAINLLR_NF8 0xfa47
#define FSTV0910_GAINLLR_NF_QPSK_4_5 0xfa47007f
/* GAINLLR_NF9 */
#define RSTV0910_GAINLLR_NF9 0xfa48
#define FSTV0910_GAINLLR_NF_QPSK_5_6 0xfa48007f
/* GAINLLR_NF10 */
#define RSTV0910_GAINLLR_NF10 0xfa49
#define FSTV0910_GAINLLR_NF_QPSK_8_9 0xfa49007f
/* GAINLLR_NF11 */
#define RSTV0910_GAINLLR_NF11 0xfa4a
#define FSTV0910_GAINLLR_NF_QPSK_9_10 0xfa4a007f
/* GAINLLR_NF12 */
#define RSTV0910_GAINLLR_NF12 0xfa4b
#define FSTV0910_GAINLLR_NF_8PSK_3_5 0xfa4b007f
/* GAINLLR_NF13 */
#define RSTV0910_GAINLLR_NF13 0xfa4c
#define FSTV0910_GAINLLR_NF_8PSK_2_3 0xfa4c007f
/* GAINLLR_NF14 */
#define RSTV0910_GAINLLR_NF14 0xfa4d
#define FSTV0910_GAINLLR_NF_8PSK_3_4 0xfa4d007f
/* GAINLLR_NF15 */
#define RSTV0910_GAINLLR_NF15 0xfa4e
#define FSTV0910_GAINLLR_NF_8PSK_5_6 0xfa4e007f
/* GAINLLR_NF16 */
#define RSTV0910_GAINLLR_NF16 0xfa4f
#define FSTV0910_GAINLLR_NF_8PSK_8_9 0xfa4f007f
/* GAINLLR_NF17 */
#define RSTV0910_GAINLLR_NF17 0xfa50
#define FSTV0910_GAINLLR_NF_8PSK_9_10 0xfa50007f
/* GAINLLR_NF18 */
#define RSTV0910_GAINLLR_NF18 0xfa51
#define FSTV0910_GAINLLR_NF_16APSK_2_3 0xfa51007f
/* GAINLLR_NF19 */
#define RSTV0910_GAINLLR_NF19 0xfa52
#define FSTV0910_GAINLLR_NF_16APSK_3_4 0xfa52007f
/* GAINLLR_NF20 */
#define RSTV0910_GAINLLR_NF20 0xfa53
#define FSTV0910_GAINLLR_NF_16APSK_4_5 0xfa53007f
/* GAINLLR_NF21 */
#define RSTV0910_GAINLLR_NF21 0xfa54
#define FSTV0910_GAINLLR_NF_16APSK_5_6 0xfa54007f
/* GAINLLR_NF22 */
#define RSTV0910_GAINLLR_NF22 0xfa55
#define FSTV0910_GAINLLR_NF_16APSK_8_9 0xfa55007f
/* GAINLLR_NF23 */
#define RSTV0910_GAINLLR_NF23 0xfa56
#define FSTV0910_GAINLLR_NF_16APSK_9_10 0xfa56007f
/* GAINLLR_NF24 */
#define RSTV0910_GAINLLR_NF24 0xfa57
#define FSTV0910_GAINLLR_NF_32APSK_3_4 0xfa57007f
/* GAINLLR_NF25 */
#define RSTV0910_GAINLLR_NF25 0xfa58
#define FSTV0910_GAINLLR_NF_32APSK_4_5 0xfa58007f
/* GAINLLR_NF26 */
#define RSTV0910_GAINLLR_NF26 0xfa59
#define FSTV0910_GAINLLR_NF_32APSK_5_6 0xfa59007f
/* GAINLLR_NF27 */
#define RSTV0910_GAINLLR_NF27 0xfa5a
#define FSTV0910_GAINLLR_NF_32APSK_8_9 0xfa5a007f
/* GAINLLR_NF28 */
#define RSTV0910_GAINLLR_NF28 0xfa5b
#define FSTV0910_GAINLLR_NF_32APSK_9_10 0xfa5b007f
/* GAINLLR_SF1 */
#define RSTV0910_GAINLLR_SF1 0xfa5c
#define FSTV0910_GAINLLR_SF_QPSK_1_4 0xfa5c007f
/* GAINLLR_SF2 */
#define RSTV0910_GAINLLR_SF2 0xfa5d
#define FSTV0910_GAINLLR_SF_QPSK_1_3 0xfa5d007f
/* GAINLLR_SF3 */
#define RSTV0910_GAINLLR_SF3 0xfa5e
#define FSTV0910_GAINLLR_SF_QPSK_2_5 0xfa5e007f
/* GAINLLR_SF4 */
#define RSTV0910_GAINLLR_SF4 0xfa5f
#define FSTV0910_GAINLLR_SF_QPSK_1_2 0xfa5f007f
/* GAINLLR_SF5 */
#define RSTV0910_GAINLLR_SF5 0xfa60
#define FSTV0910_GAINLLR_SF_QPSK_3_5 0xfa60007f
/* GAINLLR_SF6 */
#define RSTV0910_GAINLLR_SF6 0xfa61
#define FSTV0910_GAINLLR_SF_QPSK_2_3 0xfa61007f
/* GAINLLR_SF7 */
#define RSTV0910_GAINLLR_SF7 0xfa62
#define FSTV0910_GAINLLR_SF_QPSK_3_4 0xfa62007f
/* GAINLLR_SF8 */
#define RSTV0910_GAINLLR_SF8 0xfa63
#define FSTV0910_GAINLLR_SF_QPSK_4_5 0xfa63007f
/* GAINLLR_SF9 */
#define RSTV0910_GAINLLR_SF9 0xfa64
#define FSTV0910_GAINLLR_SF_QPSK_5_6 0xfa64007f
/* GAINLLR_SF10 */
#define RSTV0910_GAINLLR_SF10 0xfa65
#define FSTV0910_GAINLLR_SF_QPSK_8_9 0xfa65007f
/* GAINLLR_SF12 */
#define RSTV0910_GAINLLR_SF12 0xfa66
#define FSTV0910_GAINLLR_SF_8PSK_3_5 0xfa66007f
/* GAINLLR_SF13 */
#define RSTV0910_GAINLLR_SF13 0xfa67
#define FSTV0910_GAINLLR_SF_8PSK_2_3 0xfa67007f
/* GAINLLR_SF14 */
#define RSTV0910_GAINLLR_SF14 0xfa68
#define FSTV0910_GAINLLR_SF_8PSK_3_4 0xfa68007f
/* GAINLLR_SF15 */
#define RSTV0910_GAINLLR_SF15 0xfa69
#define FSTV0910_GAINLLR_SF_8PSK_5_6 0xfa69007f
/* GAINLLR_SF16 */
#define RSTV0910_GAINLLR_SF16 0xfa6a
#define FSTV0910_GAINLLR_SF_8PSK_8_9 0xfa6a007f
/* GAINLLR_SF18 */
#define RSTV0910_GAINLLR_SF18 0xfa6b
#define FSTV0910_GAINLLR_SF_16APSK_2_3 0xfa6b007f
/* GAINLLR_SF19 */
#define RSTV0910_GAINLLR_SF19 0xfa6c
#define FSTV0910_GAINLLR_SF_16APSK_3_4 0xfa6c007f
/* GAINLLR_SF20 */
#define RSTV0910_GAINLLR_SF20 0xfa6d
#define FSTV0910_GAINLLR_SF_16APSK_4_5 0xfa6d007f
/* GAINLLR_SF21 */
#define RSTV0910_GAINLLR_SF21 0xfa6e
#define FSTV0910_GAINLLR_SF_16APSK_5_6 0xfa6e007f
/* GAINLLR_SF22 */
#define RSTV0910_GAINLLR_SF22 0xfa6f
#define FSTV0910_GAINLLR_SF_16APSK_8_9 0xfa6f007f
/* GAINLLR_SF24 */
#define RSTV0910_GAINLLR_SF24 0xfa70
#define FSTV0910_GAINLLR_SF_32APSK_3_4 0xfa70007f
/* GAINLLR_SF25 */
#define RSTV0910_GAINLLR_SF25 0xfa71
#define FSTV0910_GAINLLR_SF_32APSK_4_5 0xfa71007f
/* GAINLLR_SF26 */
#define RSTV0910_GAINLLR_SF26 0xfa72
#define FSTV0910_GAINLLR_SF_32APSK_5_6 0xfa72007f
/* GAINLLR_SF27 */
#define RSTV0910_GAINLLR_SF27 0xfa73
#define FSTV0910_GAINLLR_SF_32APSK_8_9 0xfa73007f
/* CFGEXT */
#define RSTV0910_CFGEXT 0xfa80
#define FSTV0910_BYPBCH 0xfa806040
#define FSTV0910_BYPLDPC 0xfa805020
#define FSTV0910_SHORTMULT 0xfa802004
/* GENCFG */
#define RSTV0910_GENCFG 0xfa86
#define FSTV0910_BROADCAST 0xfa864010
#define FSTV0910_CROSSINPUT 0xfa861002
#define FSTV0910_DDEMOD 0xfa860001
/* LDPCERR1 */
#define RSTV0910_LDPCERR1 0xfa96
#define FSTV0910_LDPC_ERRORS1 0xfa9600ff
/* LDPCERR0 */
#define RSTV0910_LDPCERR0 0xfa97
#define FSTV0910_LDPC_ERRORS0 0xfa9700ff
/* BCHERR */
#define RSTV0910_BCHERR 0xfa98
#define FSTV0910_ERRORFLAG 0xfa984010
#define FSTV0910_BCH_ERRORS_COUNTER 0xfa98000f
/* P1_MAXEXTRAITER */
#define RSTV0910_P1_MAXEXTRAITER 0xfab1
#define FSTV0910_P1_MAX_EXTRA_ITER 0xfab100ff
/* P2_MAXEXTRAITER */
#define RSTV0910_P2_MAXEXTRAITER 0xfab6
#define FSTV0910_P2_MAX_EXTRA_ITER 0xfab600ff
/* P1_STATUSITER */
#define RSTV0910_P1_STATUSITER 0xfabc
#define FSTV0910_P1_STATUS_ITER 0xfabc00ff
/* P1_STATUSMAXITER */
#define RSTV0910_P1_STATUSMAXITER 0xfabd
#define FSTV0910_P1_STATUS_MAX_ITER 0xfabd00ff
/* P2_STATUSITER */
#define RSTV0910_P2_STATUSITER 0xfabe
#define FSTV0910_P2_STATUS_ITER 0xfabe00ff
/* P2_STATUSMAXITER */
#define RSTV0910_P2_STATUSMAXITER 0xfabf
#define FSTV0910_P2_STATUS_MAX_ITER 0xfabf00ff
/* P2_NBITER_NF1 */
#define RSTV0910_P2_NBITER_NF1 0xfac0
#define FSTV0910_P2_NBITER_NF_QPSK_1_4 0xfac000ff
/* P2_NBITER_NF2 */
#define RSTV0910_P2_NBITER_NF2 0xfac1
#define FSTV0910_P2_NBITER_NF_QPSK_1_3 0xfac100ff
/* P2_NBITER_NF3 */
#define RSTV0910_P2_NBITER_NF3 0xfac2
#define FSTV0910_P2_NBITER_NF_QPSK_2_5 0xfac200ff
/* P2_NBITER_NF4 */
#define RSTV0910_P2_NBITER_NF4 0xfac3
#define FSTV0910_P2_NBITER_NF_QPSK_1_2 0xfac300ff
/* P2_NBITER_NF5 */
#define RSTV0910_P2_NBITER_NF5 0xfac4
#define FSTV0910_P2_NBITER_NF_QPSK_3_5 0xfac400ff
/* P2_NBITER_NF6 */
#define RSTV0910_P2_NBITER_NF6 0xfac5
#define FSTV0910_P2_NBITER_NF_QPSK_2_3 0xfac500ff
/* P2_NBITER_NF7 */
#define RSTV0910_P2_NBITER_NF7 0xfac6
#define FSTV0910_P2_NBITER_NF_QPSK_3_4 0xfac600ff
/* P2_NBITER_NF8 */
#define RSTV0910_P2_NBITER_NF8 0xfac7
#define FSTV0910_P2_NBITER_NF_QPSK_4_5 0xfac700ff
/* P2_NBITER_NF9 */
#define RSTV0910_P2_NBITER_NF9 0xfac8
#define FSTV0910_P2_NBITER_NF_QPSK_5_6 0xfac800ff
/* P2_NBITER_NF10 */
#define RSTV0910_P2_NBITER_NF10 0xfac9
#define FSTV0910_P2_NBITER_NF_QPSK_8_9 0xfac900ff
/* P2_NBITER_NF11 */
#define RSTV0910_P2_NBITER_NF11 0xfaca
#define FSTV0910_P2_NBITER_NF_QPSK_9_10 0xfaca00ff
/* P2_NBITER_NF12 */
#define RSTV0910_P2_NBITER_NF12 0xfacb
#define FSTV0910_P2_NBITER_NF_8PSK_3_5 0xfacb00ff
/* P2_NBITER_NF13 */
#define RSTV0910_P2_NBITER_NF13 0xfacc
#define FSTV0910_P2_NBITER_NF_8PSK_2_3 0xfacc00ff
/* P2_NBITER_NF14 */
#define RSTV0910_P2_NBITER_NF14 0xfacd
#define FSTV0910_P2_NBITER_NF_8PSK_3_4 0xfacd00ff
/* P2_NBITER_NF15 */
#define RSTV0910_P2_NBITER_NF15 0xface
#define FSTV0910_P2_NBITER_NF_8PSK_5_6 0xface00ff
/* P2_NBITER_NF16 */
#define RSTV0910_P2_NBITER_NF16 0xfacf
#define FSTV0910_P2_NBITER_NF_8PSK_8_9 0xfacf00ff
/* P2_NBITER_NF17 */
#define RSTV0910_P2_NBITER_NF17 0xfad0
#define FSTV0910_P2_NBITER_NF_8PSK_9_10 0xfad000ff
/* P2_NBITER_NF18 */
#define RSTV0910_P2_NBITER_NF18 0xfad1
#define FSTV0910_P2_NBITER_NF_16APSK_2_3 0xfad100ff
/* P2_NBITER_NF19 */
#define RSTV0910_P2_NBITER_NF19 0xfad2
#define FSTV0910_P2_NBITER_NF_16APSK_3_4 0xfad200ff
/* P2_NBITER_NF20 */
#define RSTV0910_P2_NBITER_NF20 0xfad3
#define FSTV0910_P2_NBITER_NF_16APSK_4_5 0xfad300ff
/* P2_NBITER_NF21 */
#define RSTV0910_P2_NBITER_NF21 0xfad4
#define FSTV0910_P2_NBITER_NF_16APSK_5_6 0xfad400ff
/* P2_NBITER_NF22 */
#define RSTV0910_P2_NBITER_NF22 0xfad5
#define FSTV0910_P2_NBITER_NF_16APSK_8_9 0xfad500ff
/* P2_NBITER_NF23 */
#define RSTV0910_P2_NBITER_NF23 0xfad6
#define FSTV0910_P2_NBITER_NF_16APSK_9_10 0xfad600ff
/* P2_NBITER_NF24 */
#define RSTV0910_P2_NBITER_NF24 0xfad7
#define FSTV0910_P2_NBITER_NF_32APSK_3_4 0xfad700ff
/* P2_NBITER_NF25 */
#define RSTV0910_P2_NBITER_NF25 0xfad8
#define FSTV0910_P2_NBITER_NF_32APSK_4_5 0xfad800ff
/* P2_NBITER_NF26 */
#define RSTV0910_P2_NBITER_NF26 0xfad9
#define FSTV0910_P2_NBITER_NF_32APSK_5_6 0xfad900ff
/* P2_NBITER_NF27 */
#define RSTV0910_P2_NBITER_NF27 0xfada
#define FSTV0910_P2_NBITER_NF_32APSK_8_9 0xfada00ff
/* P2_NBITER_NF28 */
#define RSTV0910_P2_NBITER_NF28 0xfadb
#define FSTV0910_P2_NBITER_NF_32APSK_9_10 0xfadb00ff
/* P2_NBITER_SF1 */
#define RSTV0910_P2_NBITER_SF1 0xfadc
#define FSTV0910_P2_NBITER_SF_QPSK_1_4 0xfadc00ff
/* P2_NBITER_SF2 */
#define RSTV0910_P2_NBITER_SF2 0xfadd
#define FSTV0910_P2_NBITER_SF_QPSK_1_3 0xfadd00ff
/* P2_NBITER_SF3 */
#define RSTV0910_P2_NBITER_SF3 0xfade
#define FSTV0910_P2_NBITER_SF_QPSK_2_5 0xfade00ff
/* P2_NBITER_SF4 */
#define RSTV0910_P2_NBITER_SF4 0xfadf
#define FSTV0910_P2_NBITER_SF_QPSK_1_2 0xfadf00ff
/* P2_NBITER_SF5 */
#define RSTV0910_P2_NBITER_SF5 0xfae0
#define FSTV0910_P2_NBITER_SF_QPSK_3_5 0xfae000ff
/* P2_NBITER_SF6 */
#define RSTV0910_P2_NBITER_SF6 0xfae1
#define FSTV0910_P2_NBITER_SF_QPSK_2_3 0xfae100ff
/* P2_NBITER_SF7 */
#define RSTV0910_P2_NBITER_SF7 0xfae2
#define FSTV0910_P2_NBITER_SF_QPSK_3_4 0xfae200ff
/* P2_NBITER_SF8 */
#define RSTV0910_P2_NBITER_SF8 0xfae3
#define FSTV0910_P2_NBITER_SF_QPSK_4_5 0xfae300ff
/* P2_NBITER_SF9 */
#define RSTV0910_P2_NBITER_SF9 0xfae4
#define FSTV0910_P2_NBITER_SF_QPSK_5_6 0xfae400ff
/* P2_NBITER_SF10 */
#define RSTV0910_P2_NBITER_SF10 0xfae5
#define FSTV0910_P2_NBITER_SF_QPSK_8_9 0xfae500ff
/* P2_NBITER_SF12 */
#define RSTV0910_P2_NBITER_SF12 0xfae6
#define FSTV0910_P2_NBITER_SF_8PSK_3_5 0xfae600ff
/* P2_NBITER_SF13 */
#define RSTV0910_P2_NBITER_SF13 0xfae7
#define FSTV0910_P2_NBITER_SF_8PSK_2_3 0xfae700ff
/* P2_NBITER_SF14 */
#define RSTV0910_P2_NBITER_SF14 0xfae8
#define FSTV0910_P2_NBITER_SF_8PSK_3_4 0xfae800ff
/* P2_NBITER_SF15 */
#define RSTV0910_P2_NBITER_SF15 0xfae9
#define FSTV0910_P2_NBITER_SF_8PSK_5_6 0xfae900ff
/* P2_NBITER_SF16 */
#define RSTV0910_P2_NBITER_SF16 0xfaea
#define FSTV0910_P2_NBITER_SF_8PSK_8_9 0xfaea00ff
/* P2_NBITER_SF18 */
#define RSTV0910_P2_NBITER_SF18 0xfaeb
#define FSTV0910_P2_NBITER_SF_16APSK_2_3 0xfaeb00ff
/* P2_NBITER_SF19 */
#define RSTV0910_P2_NBITER_SF19 0xfaec
#define FSTV0910_P2_NBITER_SF_16APSK_3_4 0xfaec00ff
/* P2_NBITER_SF20 */
#define RSTV0910_P2_NBITER_SF20 0xfaed
#define FSTV0910_P2_NBITER_SF_16APSK_4_5 0xfaed00ff
/* P2_NBITER_SF21 */
#define RSTV0910_P2_NBITER_SF21 0xfaee
#define FSTV0910_P2_NBITER_SF_16APSK_5_6 0xfaee00ff
/* P2_NBITER_SF22 */
#define RSTV0910_P2_NBITER_SF22 0xfaef
#define FSTV0910_P2_NBITER_SF_16APSK_8_9 0xfaef00ff
/* P2_NBITER_SF24 */
#define RSTV0910_P2_NBITER_SF24 0xfaf0
#define FSTV0910_P2_NBITER_SF_32APSK_3_4 0xfaf000ff
/* P2_NBITER_SF25 */
#define RSTV0910_P2_NBITER_SF25 0xfaf1
#define FSTV0910_P2_NBITER_SF_32APSK_4_5 0xfaf100ff
/* P2_NBITER_SF26 */
#define RSTV0910_P2_NBITER_SF26 0xfaf2
#define FSTV0910_P2_NBITER_SF_32APSK_5_6 0xfaf200ff
/* P2_NBITER_SF27 */
#define RSTV0910_P2_NBITER_SF27 0xfaf3
#define FSTV0910_P2_NBITER_SF_32APSK_8_9 0xfaf300ff
/* TSTRES0 */
#define RSTV0910_TSTRES0 0xff11
#define FSTV0910_FRESFEC 0xff117080
#define FSTV0910_FRESSYM1 0xff113008
#define FSTV0910_FRESSYM2 0xff112004
/* TSTOUT */
#define RSTV0910_TSTOUT 0xff12
#define FSTV0910_TS 0xff12103e
#define FSTV0910_TEST_OUT 0xff120001
/* TSTIN */
#define RSTV0910_TSTIN 0xff13
#define FSTV0910_TEST_IN 0xff137080
/* P2_TSTDMD */
#define RSTV0910_P2_TSTDMD 0xff20
#define FSTV0910_P2_CFRINIT_INVZIGZAG 0xff203008
/* P2_TCTL1 */
#define RSTV0910_P2_TCTL1 0xff24
#define FSTV0910_P2_TST_IQSYMBSEL 0xff24001f
/* P2_TCTL4 */
#define RSTV0910_P2_TCTL4 0xff28
#define FSTV0910_P2_CFR2TOCFR1_DVBS1 0xff2860c0
/* P2_TPKTDELIN */
#define RSTV0910_P2_TPKTDELIN 0xff37
#define FSTV0910_P2_CFG_RSPARITYON 0xff377080
/* P1_TSTDMD */
#define RSTV0910_P1_TSTDMD 0xff40
#define FSTV0910_P1_CFRINIT_INVZIGZAG 0xff403008
/* P1_TCTL1 */
#define RSTV0910_P1_TCTL1 0xff44
#define FSTV0910_P1_TST_IQSYMBSEL 0xff44001f
/* P1_TCTL4 */
#define RSTV0910_P1_TCTL4 0xff48
#define FSTV0910_P1_CFR2TOCFR1_DVBS1 0xff4860c0
/* P1_TPKTDELIN */
#define RSTV0910_P1_TPKTDELIN 0xff57
#define FSTV0910_P1_CFG_RSPARITYON 0xff577080
/* TSTTSRS */
#define RSTV0910_TSTTSRS 0xff6d
#define FSTV0910_TSTRS_DISRS2 0xff6d1002
#define FSTV0910_TSTRS_DISRS1 0xff6d0001
#define STV0910_NBREGS 975
#define STV0910_NBFIELDS 1818
|