summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/common/include/p9n2_perv_scom_addresses_fld.H
blob: 401cffa02ca35c616a4b9a2d77a44f9c661896c8 (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
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/import/chips/p9/common/include/p9n2_perv_scom_addresses_fld.H $ */
/*                                                                        */
/* OpenPOWER sbe Project                                                  */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2017                             */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
///
/// @file p9_perv_scom_addresses_fld.H
/// @brief  Defines constants for scom addresses
///
// *HWP HWP Owner: Ben Gass <bgass@us.ibm.com>
// *HWP FW Owner: Thi Tran <thi@us.ibm.com>
// *HWP Team: SOA
// *HWP Level: 3
// *HWP Consumed by: FSP:HB:HS:OCC:SBE:CME:SGPE:PGPE:FPPE:IPPE

#ifndef __P9N2_PERV_SCOM_ADDRESSES_FLD_H
#define __P9N2_PERV_SCOM_ADDRESSES_FLD_H

#include <stdint.h>

static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_PCB_ADDRESS_OF_LAST_TRANSACTION_WITH_ERROR = 0   ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_PCB_ADDRESS_OF_LAST_TRANSACTION_WITH_ERROR_LEN = 16  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_PCB_READ_NOTWRITE_OF_LAST_TRANSACTION_WITH_ERROR = 16  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_RESERVED_LAST_LT                   = 17  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SERIAL2PARALLEL_STATE_MACHINE_AT_TIME_OF_ERROR = 18  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SERIAL2PARALLEL_STATE_MACHINE_AT_TIME_OF_ERROR_LEN = 13  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SATELLITE_ACKNOWLEDGE_BIT_RETURN_PARITY = 31  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SATELLITE_ACKNOWLEDGE_BIT_WRITE_PARITY_ERROR = 32  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SATELLITE_ACKNOWLEDGE_BIT_ACCESS_VIOLATION = 33  ;
static const uint8_t P9N2_PERV_1_ADDR_TRAP_REG_SATELLITE_ACKNOWLEDGE_BIT_INVALID_REGISTER = 34  ;

static const uint8_t P9N2_PERV_1_ASSIST_INTERRUPT_REG_ATTN                        = 0   ;
static const uint8_t P9N2_PERV_1_ASSIST_INTERRUPT_REG_RECOV                       = 1   ;
static const uint8_t P9N2_PERV_1_ASSIST_INTERRUPT_REG_XSTOP                       = 2   ;

static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_MASK_LATCH_REG_MASK                  = 0   ;
static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_MASK_LATCH_REG_MASK_LEN              = 16  ;

static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_REG_ENABLE                           = 0   ;
static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_REG_ID                               = 1   ;
static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_REG_ID_LEN                           = 4   ;
static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_REG_ACTIVITY                         = 8   ;
static const uint8_t P9N2_PERV_1_ATOMIC_LOCK_REG_ACTIVITY_LEN                     = 8   ;

static const uint8_t P9N2_PERV_1_ATTN_INTERRUPT_REG_ATTN                          = 0   ;

static const uint8_t P9N2_PERV_1_BIST_TC_START_TEST_DC                            = 0   ;
static const uint8_t P9N2_PERV_1_BIST_TC_SRAM_ABIST_MODE_DC                       = 1   ;
static const uint8_t P9N2_PERV_1_BIST_TC_EDRAM_ABIST_MODE_DC                      = 2   ;
static const uint8_t P9N2_PERV_1_BIST_TC_IOBIST_MODE_DC                           = 3   ;
static const uint8_t P9N2_PERV_1_BIST_PERV                                        = 4   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT1                                       = 5   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT2                                       = 6   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT3                                       = 7   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT4                                       = 8   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT5                                       = 9   ;
static const uint8_t P9N2_PERV_1_BIST_UNIT6                                       = 10  ;
static const uint8_t P9N2_PERV_1_BIST_UNIT7                                       = 11  ;
static const uint8_t P9N2_PERV_1_BIST_UNIT8                                       = 12  ;
static const uint8_t P9N2_PERV_1_BIST_UNIT9                                       = 13  ;
static const uint8_t P9N2_PERV_1_BIST_UNIT10                                      = 14  ;
static const uint8_t P9N2_PERV_1_BIST_STROBE_WINDOW_EN                            = 48  ;

static const uint8_t P9N2_PERV_BIT_SEL_REG_2_SELECT_REGISTER_FSP2PIB              = 0   ;
static const uint8_t P9N2_PERV_BIT_SEL_REG_2_SELECT_REGISTER_FSP2PIB_LEN          = 6   ;

static const uint8_t P9N2_PERV_CBS_CS_START_BOOT_SEQUENCER                        = 0   ;
static const uint8_t P9N2_PERV_CBS_CS_1_UNUSED                                    = 1   ;
static const uint8_t P9N2_PERV_CBS_CS_OPTION_SKIP_SCAN0_CLOCKSTART                = 2   ;
static const uint8_t P9N2_PERV_CBS_CS_OPTION_PREVENT_SBE_START                    = 3   ;
static const uint8_t P9N2_PERV_CBS_CS_SECURE_ACCESS_BIT                           = 4   ;
static const uint8_t P9N2_PERV_CBS_CS_SAMPLED_SMD_PIN                             = 5   ;
static const uint8_t P9N2_PERV_CBS_CS_STATE_MACHINE_TRANSITION_DELAY              = 6   ;
static const uint8_t P9N2_PERV_CBS_CS_STATE_MACHINE_TRANSITION_DELAY_LEN          = 10  ;
static const uint8_t P9N2_PERV_CBS_CS_INTERNAL_STATE_VECTOR                       = 16  ;
static const uint8_t P9N2_PERV_CBS_CS_INTERNAL_STATE_VECTOR_LEN                   = 16  ;

static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_TEST_ENABLE                         = 0   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_CARD_TEST_BSC                       = 1   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_VDN_GPOOD                           = 2   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_FSI_IN_ENA                          = 3   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_CHIP_MASTER                         = 4   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_SMD                                 = 5   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_C4_JTAG_TMS                            = 6   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_CBS_ENVSTAT_REMAINDER                  = 7   ;
static const uint8_t P9N2_PERV_CBS_ENVSTAT_CBS_ENVSTAT_REMAINDER_LEN              = 25  ;

static const uint8_t P9N2_PERV_CBS_STAT_DBG_RESET_EP                              = 0   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_OPCG_IP                               = 1   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_VITL_CLKOFF                           = 2   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_TEST_ENABLE                           = 3   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_REQ                                   = 4   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CMD                                   = 5   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CMD_LEN                               = 3   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_STATE                                 = 8   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_STATE_LEN                             = 5   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_SECURITY_DEBUG_MODE                   = 13  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PROTOCOL_ERROR                        = 14  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PCB_IDLE                              = 15  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CURRENT_OPCG_MODE                     = 16  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CURRENT_OPCG_MODE_LEN                 = 4   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_LAST_OPCG_MODE                        = 20  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_LAST_OPCG_MODE_LEN                    = 4   ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PCB_ERROR                             = 24  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PARITY_ERROR                          = 25  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CC_ERROR                              = 26  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_CHIPLET_IS_ALIGNED                    = 27  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PCB_REQUEST_SINCE_RESET               = 28  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PARANOIA_TEST_ENABLE_CHANGE           = 29  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_PARANOIA_VITL_CLKOFF_CHANGE           = 30  ;
static const uint8_t P9N2_PERV_CBS_STAT_DBG_TP_TPFSI_ACK                          = 31  ;

static const uint8_t P9N2_PERV_CBS_TR_SIGNATURE                                   = 0   ;
static const uint8_t P9N2_PERV_CBS_TR_SIGNATURE_LEN                               = 16  ;
static const uint8_t P9N2_PERV_CBS_TR_UNUSED                                      = 16  ;
static const uint8_t P9N2_PERV_CBS_TR_UNUSED_LEN                                  = 6   ;
static const uint8_t P9N2_PERV_CBS_TR_TRANS_DELAY                                 = 22  ;
static const uint8_t P9N2_PERV_CBS_TR_TRANS_DELAY_LEN                             = 10  ;

static const uint8_t P9N2_PERV_1_CC_ATOMIC_LOCK_REG_ENABLE                        = 0   ;
static const uint8_t P9N2_PERV_1_CC_ATOMIC_LOCK_REG_ID                            = 1   ;
static const uint8_t P9N2_PERV_1_CC_ATOMIC_LOCK_REG_ID_LEN                        = 4   ;
static const uint8_t P9N2_PERV_1_CC_ATOMIC_LOCK_REG_ACTIVITY                      = 8   ;
static const uint8_t P9N2_PERV_1_CC_ATOMIC_LOCK_REG_ACTIVITY_LEN                  = 8   ;

static const uint8_t P9N2_PERV_1_CC_PROTECT_MODE_REG_READ_ENABLE                  = 0   ;
static const uint8_t P9N2_PERV_1_CC_PROTECT_MODE_REG_WRITE_ENABLE                 = 1   ;

static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_CMD                             = 0   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_CMD_LEN                         = 2   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_SLAVE_MODE                            = 2   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_MASTER_MODE                           = 3   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_PERV                            = 4   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT1                           = 5   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT2                           = 6   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT3                           = 7   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT4                           = 8   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT5                           = 9   ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT6                           = 10  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT7                           = 11  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT8                           = 12  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT9                           = 13  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_UNIT10                          = 14  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_SEL_THOLD_SL                          = 48  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_SEL_THOLD_NSL                         = 49  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_SEL_THOLD_ARY                         = 50  ;
static const uint8_t P9N2_PERV_1_CLK_REGION_CLOCK_PULSE_USE_EVEN                  = 52  ;

static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_PERV                       = 4   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT1                      = 5   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT2                      = 6   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT3                      = 7   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT4                      = 8   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT5                      = 9   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT6                      = 10  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT7                      = 11  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT8                      = 12  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT9                      = 13  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_ARY_STATUS_UNIT10                     = 14  ;

static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_PERV                       = 4   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT1                      = 5   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT2                      = 6   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT3                      = 7   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT4                      = 8   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT5                      = 9   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT6                      = 10  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT7                      = 11  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT8                      = 12  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT9                      = 13  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_NSL_STATUS_UNIT10                     = 14  ;

static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_PERV                        = 4   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT1                       = 5   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT2                       = 6   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT3                       = 7   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT4                       = 8   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT5                       = 9   ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT6                       = 10  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT7                       = 11  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT8                       = 12  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT9                       = 13  ;
static const uint8_t P9N2_PERV_1_CLOCK_STAT_SL_STATUS_UNIT10                      = 14  ;

static const uint8_t P9N2_PERV_PIB2OPB1_CMD_WRDAT_WRITE_NOT_READ                  = 0   ;
static const uint8_t P9N2_PERV_PIB2OPB1_CMD_WRDAT_CMD                             = 1   ;
static const uint8_t P9N2_PERV_PIB2OPB1_CMD_WRDAT_CMD_LEN                         = 31  ;
static const uint8_t P9N2_PERV_PIB2OPB1_CMD_WRDAT_WDATA                           = 32  ;
static const uint8_t P9N2_PERV_PIB2OPB1_CMD_WRDAT_WDATA_LEN                       = 32  ;

static const uint8_t P9N2_PERV_CMD_WRDAT_WRITE_NOT_READ                           = 0   ;
static const uint8_t P9N2_PERV_CMD_WRDAT_CMD                                      = 1   ;
static const uint8_t P9N2_PERV_CMD_WRDAT_CMD_LEN                                  = 31  ;
static const uint8_t P9N2_PERV_CMD_WRDAT_WDATA                                    = 32  ;
static const uint8_t P9N2_PERV_CMD_WRDAT_WDATA_LEN                                = 32  ;

static const uint8_t P9N2_PERV_PIB2OPB0_CMD_WRDAT_WRITE_NOT_READ                  = 0   ;
static const uint8_t P9N2_PERV_PIB2OPB0_CMD_WRDAT_CMD                             = 1   ;
static const uint8_t P9N2_PERV_PIB2OPB0_CMD_WRDAT_CMD_LEN                         = 31  ;
static const uint8_t P9N2_PERV_PIB2OPB0_CMD_WRDAT_WDATA                           = 32  ;
static const uint8_t P9N2_PERV_PIB2OPB0_CMD_WRDAT_WDATA_LEN                       = 32  ;

static const uint8_t P9N2_PERV_FSI2PIB_COMMAND_REGISTER_CMD_REG                   = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_COMMAND_REGISTER_CMD_REG_LEN               = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_WRITE_FLAG        = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_BROADCAST_FLAG    = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_ADDRESS      = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_ADDRESS_LEN  = 14  ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_REGION       = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_REGION_LEN   = 12  ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_TYPE         = 28  ;
static const uint8_t P9N2_PERV_FSISHIFT_COMMAND_REGISTER_CMDREG_SCAN_TYPE_LEN     = 4   ;

static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_WITH_START_0             = 0   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_WITH_ADDRESS_0           = 1   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_READ_CONTINUE_0          = 2   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_WITH_STOP_0              = 3   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_NOT_USED_0               = 4   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_NOT_USED_0_LEN           = 4   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_DEVICE_ADDRESS_0         = 8   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_DEVICE_ADDRESS_0_LEN     = 7   ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_READ_NOT_WRITE_0         = 15  ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_LENGTH_IN_BYTES_0        = 16  ;
static const uint8_t P9N2_PERV_FSII2C_COMMAND_REGISTER_A_LENGTH_IN_BYTES_0_LEN    = 16  ;

static const uint8_t P9N2_PERV_FSI2PIB_COMPLEMENT_MASK_REG                        = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_COMPLEMENT_MASK_REG_LEN                    = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_COMPLEMENT_MASK_REG                       = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_COMPLEMENT_MASK_REG_LEN                   = 32  ;

static const uint8_t P9N2_PERV_1_CONTROL_REG_RESET_TRIP_HISTORY                   = 0   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_RESET_SAMPLE_PULSE_CNT               = 1   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_F_RESET_CPM_RD                       = 2   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_F_RESET_CPM_WR                       = 3   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_RESET_SAMPLE_DTS                     = 4   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_SAMPLE_DTS                     = 5   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_SAMPLE_DTS_INTERRUPTIBLE       = 6   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_RESET_THRES_L1RESULTS          = 7   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_RESET_THRES_L2RESULTS          = 8   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_RESET_THRES_L3RESULTS          = 9   ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_MEASURE_VOLT_INTERRUPTIBLE     = 10  ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_RESET_MEASURE_VOLT             = 11  ;
static const uint8_t P9N2_PERV_1_CONTROL_REG_FORCE_SHIFT_SENSOR                   = 12  ;

static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE0_SEL_DC               = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE0_SEL_DC_LEN           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_6C                           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_7C                           = 7   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE1_SEL_DC               = 8   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE1_SEL_DC_LEN           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_14C                          = 14  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_15C                          = 15  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE2_SEL_DC               = 16  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE2_SEL_DC_LEN           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_22C                          = 22  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_23C                          = 23  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE3_SEL_DC               = 24  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_MISC_PROBE3_SEL_DC_LEN           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_30C                          = 30  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_31C                          = 31  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_CC_OFLOW_FEH_SEL_DC              = 32  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_CC_SCAN_PROTECT_DC               = 33  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_CC_SDIS_DC_N                     = 34  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_CC_SCAN_DIAG                     = 35  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_TEST_CONTROL_36C             = 36  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_TEST_CONTROL_37C             = 37  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_TEST_CONTROL_38C             = 38  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_TEST_CONTROL_39C             = 39  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_EPS_MASK_VITL_PCB_ERR_DC         = 40  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_CTRL_CC_MASK_VITL_SCAN_OPCG_ERR_DC    = 41  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_42C                          = 42  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_43C                          = 43  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_TC_PCB_DBG_GLB_BRCST_EN               = 44  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_FREE_USAGE_45C                        = 45  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_FREE_USAGE_46C                        = 46  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_FREE_USAGE_47C                        = 47  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_48C                            = 48  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_49C                            = 49  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_50C                            = 50  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_51C                            = 51  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_TC_UNIT_CHIP_ID_DC                    = 52  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_TC_UNIT_CHIP_ID_DC_LEN                = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_ID_55C                       = 55  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_56C                            = 56  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_57C                            = 57  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_58C                            = 58  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_59C                            = 59  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_UNUSED_60C                            = 60  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_ID_61C                       = 61  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_ID_62C                       = 62  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF0_RESERVED_ID_63C                       = 63  ;

static const uint8_t P9N2_PERV_1_CPLT_CONF1_TCPERV_AMUX_VSELECT_CHIP              = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TCPERV_AMUX_VSELECT_CHIP_LEN          = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_3D                             = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_4D                             = 4   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_5D                             = 5   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_6D                             = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_7D                             = 7   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_8D                             = 8   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_9D                             = 9   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_10D                            = 10  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_11D                            = 11  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPI_APSS_MCPRECOMP              = 12  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPI_APSS_MCPRECOMP_LEN          = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPARE2_MCPRECOMP                = 14  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPARE2_MCPRECOMP_LEN            = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPARE3_MCPRECOMP                = 16  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_TP_IO_SPARE3_MCPRECOMP_LEN            = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_18D                            = 18  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_19D                            = 19  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_20D                            = 20  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_21D                            = 21  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_22D                            = 22  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_23D                            = 23  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_24D                            = 24  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_25D                            = 25  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_26D                            = 26  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_27D                            = 27  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_28D                            = 28  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_29D                            = 29  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_30D                            = 30  ;
static const uint8_t P9N2_PERV_1_CPLT_CONF1_UNUSED_31D                            = 31  ;

static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_ABSTCLK_MUXSEL_DC             = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_TC_UNIT_SYNCCLK_MUXSEL_DC             = 1   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_FLUSHMODE_INH_DC              = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_FORCE_ALIGN_DC                = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_TC_UNIT_ARY_WRT_THRU_DC               = 4   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_5A                             = 5   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_6A                             = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_7A                             = 7   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_ABIST_RECOV_DISABLE_DC        = 8   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_9A                             = 9   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_10A                            = 10  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_11A                          = 11  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_12A                            = 12  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_TC_UNIT_DETERMINISTIC_TEST_ENABLE_DC  = 13  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_TC_UNIT_CONSTRAIN_SAFESCAN_DC         = 14  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_TC_UNIT_RRFA_TEST_ENABLE_DC           = 15  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_16A                            = 16  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_17A                            = 17  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_18A                          = 18  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_19A                          = 19  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_20A                            = 20  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_21A                            = 21  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_22A                            = 22  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_23A                            = 23  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_24A                            = 24  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_25A                            = 25  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_26A                            = 26  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_27A                            = 27  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_28A                            = 28  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_29A                            = 29  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_30A                            = 30  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_31A                            = 31  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_32A                            = 32  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_33A                          = 33  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_34A                          = 34  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_35A                          = 35  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_36A                            = 36  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_37A                            = 37  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_38A                          = 38  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_39A                          = 39  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_MISC_CLKDIV_SEL_DC               = 40  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_MISC_CLKDIV_SEL_DC_LEN           = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_42A                          = 42  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_RESERVED_43A                          = 43  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_UNUSED_44A                            = 44  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_OTP_PRGMODE_DC                = 45  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_SSS_CALIBRATE_DC              = 46  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_CTRL_CC_PIN_LBIST_DC                  = 47  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_48A                        = 48  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_49A                        = 49  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_50A                        = 50  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_51A                        = 51  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_52A                        = 52  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_53A                        = 53  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_54A                        = 54  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_55A                        = 55  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_56A                        = 56  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_57A                        = 57  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_58A                        = 58  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_59A                        = 59  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_60A                        = 60  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_61A                        = 61  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_62A                        = 62  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL0_FREE_USAGE_63A                        = 63  ;

static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_0B                             = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_1B                             = 1   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_2B                             = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_VITL_REGION_FENCE                  = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_PERV_REGION_FENCE                  = 4   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_REGION1_FENCE                      = 5   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_REGION2_FENCE                      = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_REGION3_FENCE                      = 7   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_8B                             = 8   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_9B                             = 9   ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_10B                            = 10  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_11B                            = 11  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_12B                            = 12  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_13B                            = 13  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_14B                            = 14  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_RESERVED                              = 15  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_UNIT_MULTICYCLE_TEST_FENCE         = 16  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_17B                            = 17  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_18B                            = 18  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_19B                            = 19  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_TC_PERV_EXPORT_FREEZE                 = 20  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_21B                            = 21  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_22B                            = 22  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_23B                            = 23  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_24B                            = 24  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_25B                            = 25  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_26B                            = 26  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_27B                            = 27  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_28B                            = 28  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_29B                            = 29  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_30B                            = 30  ;
static const uint8_t P9N2_PERV_1_CPLT_CTRL1_UNUSED_31B                            = 31  ;

static const uint8_t P9N2_PERV_1_CPLT_MASK0_CPLTMASK0                             = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_MASK0_CPLTMASK0_LEN                         = 24  ;

static const uint8_t P9N2_PERV_1_CPLT_STAT0_ABIST_DONE_DC                         = 0   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_EBIST_DONE_DC                         = 1   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_RESERVED_2E                           = 2   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_RESERVED_3E                           = 3   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_TC_DIAG_PORT0_OUT                     = 4   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_TC_DIAG_PORT1_OUT                     = 5   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_RESERVED_6E                           = 6   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_PLL_DESTOUT                           = 7   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_CC_CTRL_OPCG_DONE_DC                  = 8   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_CC_CTRL_CHIPLET_IS_ALIGNED_DC         = 9   ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_10E                        = 10  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_11E                        = 11  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_12E                        = 12  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_13E                        = 13  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_14E                        = 14  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_15E                        = 15  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_16E                        = 16  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_17E                        = 17  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_18E                        = 18  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_19E                        = 19  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_20E                        = 20  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_21E                        = 21  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_22E                        = 22  ;
static const uint8_t P9N2_PERV_1_CPLT_STAT0_FREE_USAGE_23E                        = 23  ;

static const uint8_t P9N2_PERV_1_CTRL_ATOMIC_LOCK_REG_ENABLE                      = 0   ;
static const uint8_t P9N2_PERV_1_CTRL_ATOMIC_LOCK_REG_ID                          = 1   ;
static const uint8_t P9N2_PERV_1_CTRL_ATOMIC_LOCK_REG_ID_LEN                      = 4   ;
static const uint8_t P9N2_PERV_1_CTRL_ATOMIC_LOCK_REG_ACTIVITY                    = 8   ;
static const uint8_t P9N2_PERV_1_CTRL_ATOMIC_LOCK_REG_ACTIVITY_LEN                = 8   ;

static const uint8_t P9N2_PERV_1_CTRL_PROTECT_MODE_REG_READ_ENABLE                = 0   ;
static const uint8_t P9N2_PERV_1_CTRL_PROTECT_MODE_REG_WRITE_ENABLE               = 1   ;

static const uint8_t P9N2_PERV_FSI2PIB_DATA_REGISTER_0_REG                        = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_DATA_REGISTER_0_REG_LEN                    = 32  ;

static const uint8_t P9N2_PERV_FSI2PIB_DATA_REGISTER_1_REG                        = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_DATA_REGISTER_1_REG_LEN                    = 32  ;

static const uint8_t P9N2_PERV_1_DBG_CBS_CC_RESET_EP                              = 0   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_OPCG_IP                               = 1   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_VITL_CLKOFF                           = 2   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_TEST_ENABLE                           = 3   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_REQ                                   = 4   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_CMD                                   = 5   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_CMD_LEN                               = 3   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_STATE                                 = 8   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_STATE_LEN                             = 5   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_SECURITY_DEBUG_MODE                   = 13  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PROTOCOL_ERROR                        = 14  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PCB_IDLE                              = 15  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_CURRENT_OPCG_MODE                     = 16  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_CURRENT_OPCG_MODE_LEN                 = 4   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_LAST_OPCG_MODE                        = 20  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_LAST_OPCG_MODE_LEN                    = 4   ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PCB_ERROR                             = 24  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PARITY_ERROR                          = 25  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_ERROR                                 = 26  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_CHIPLET_IS_ALIGNED                    = 27  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PCB_REQUEST_SINCE_RESET               = 28  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PARANOIA_TEST_ENABLE_CHANGE           = 29  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_PARANOIA_VITL_CLKOFF_CHANGE           = 30  ;
static const uint8_t P9N2_PERV_1_DBG_CBS_CC_TP_TPFSI_ACK                          = 31  ;

static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND1_SEL_A                 = 0   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND1_SEL_A_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND1_SEL_B                 = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND1_SEL_B_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND2_SEL_A                 = 16  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND2_SEL_A_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND2_SEL_B                 = 24  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND2_SEL_B_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C1_INAROW_MODE              = 32  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_AND_TRIGGER_MODE1           = 33  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_NOT_TRIGGER_MODE1           = 34  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_EDGE_TRIGGER_MODE1          = 35  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_UNUSED                      = 36  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_UNUSED_LEN                  = 3   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C2_INAROW_MODE              = 39  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_AND_TRIGGER_MODE2           = 40  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_NOT_TRIGGER_MODE2           = 41  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_EDGE_TRIGGER_MODE2          = 42  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_UNUSED_2                    = 43  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_UNUSED_2_LEN                = 3   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_COND3_ENABLE_RESET          = 46  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_EXACT_TO_MODE               = 47  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_RESET_C2TIMER_ON_C1         = 48  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_RESET_C3_ON_C0              = 49  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_SLOW_TO_MODE                = 50  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_EXACT_RESET_C3_ON_TO        = 51  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C1_COUNT_LT                 = 52  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C1_COUNT_LT_LEN             = 4   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C2_COUNT_LT                 = 56  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_C2_COUNT_LT_LEN             = 4   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_RESET_C3_SELECT             = 60  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_1_RESET_C3_SELECT_LEN         = 3   ;

static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_1_A     = 0   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_1_A_LEN = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_1_B     = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_1_B_LEN = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_A       = 10  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_A_LEN   = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_B       = 15  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_CROSS_COUPLE_SELECT_B_LEN   = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_TO_CMP_LT                   = 20  ;
static const uint8_t P9N2_PERV_1_DBG_INST1_COND_REG_2_TO_CMP_LT_LEN               = 24  ;

static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND1_SEL_A                 = 0   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND1_SEL_A_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND1_SEL_B                 = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND1_SEL_B_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND2_SEL_A                 = 16  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND2_SEL_A_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND2_SEL_B                 = 24  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND2_SEL_B_LEN             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C1_INAROW_MODE              = 32  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_AND_TRIGGER_MODE1           = 33  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_NOT_TRIGGER_MODE1           = 34  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_EDGE_TRIGGER_MODE1          = 35  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_UNUSED                      = 36  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_UNUSED_LEN                  = 3   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C2_INAROW_MODE              = 39  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_AND_TRIGGER_MODE2           = 40  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_NOT_TRIGGER_MODE2           = 41  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_EDGE_TRIGGER_MODE2          = 42  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_UNUSED_2                    = 43  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_UNUSED_2_LEN                = 3   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_COND3_ENABLE_RESET          = 46  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_EXACT_TO_MODE               = 47  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_RESET_C2TIMER_ON_C1         = 48  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_RESET_C3_ON_C0              = 49  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_SLOW_TO_MODE                = 50  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_EXACT_RESET_C3_ON_TO        = 51  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C1_COUNT_LT                 = 52  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C1_COUNT_LT_LEN             = 4   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C2_COUNT_LT                 = 56  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_C2_COUNT_LT_LEN             = 4   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_RESET_C3_SELECT             = 60  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_1_RESET_C3_SELECT_LEN         = 3   ;

static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_1_A     = 0   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_1_A_LEN = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_1_B     = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_1_B_LEN = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_A       = 10  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_A_LEN   = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_B       = 15  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_CROSS_COUPLE_SELECT_B_LEN   = 5   ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_TO_CMP_LT                   = 20  ;
static const uint8_t P9N2_PERV_1_DBG_INST2_COND_REG_2_TO_CMP_LT_LEN               = 24  ;

static const uint8_t P9N2_PERV_1_DBG_MODE_REG_GLB_BRCST                           = 0   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_GLB_BRCST_LEN                       = 3   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_TRACE_SEL                           = 3   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_TRACE_SEL_LEN                       = 3   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_TRIG_SEL                            = 6   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_TRIG_SEL_LEN                        = 2   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_STOP_ON_XSTOP_SELECTION             = 8   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_STOP_ON_RECOV_ERR_SELECTION         = 9   ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_STOP_ON_SPATTN_SELECTION            = 10  ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_FREEZE_SEL                          = 11  ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_SYNC_BRCST                          = 12  ;
static const uint8_t P9N2_PERV_1_DBG_MODE_REG_SYNC_BRCST_LEN                      = 2   ;

static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_RUNN_COUNT_COMPARE_VALUE    = 0   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_RUNN_COUNT_COMPARE_VALUE_LEN = 16  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_IMM_FREEZE                  = 16  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_STOP_ON_ERR                 = 17  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_BANK_ON_RUNN_MATCH          = 18  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_FORCE_TEST                  = 19  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_ACCUM_HIST                  = 20  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_MODE_REG_2_FRZ_COUNT_ON_FRZ            = 21  ;

static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_COND3_ENABLE               = 0   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_COND3_ENABLE               = 1   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST3_COND3_ENABLE               = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST4_COND3_ENABLE               = 3   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_SLOW_LFSR_MODE             = 4   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_SLOW_LFSR_MODE             = 5   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST3_SLOW_LFSR_MODE             = 6   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST4_SLOW_LFSR_MODE             = 7   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_CONDITION1_TRIG_SEL        = 8   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_CONDITION1_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_CONDITION2_TRIG_SEL        = 10  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_CONDITION2_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_C2_TIMEOUT_TRIG_SEL        = 12  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST1_C2_TIMEOUT_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_CONDITION1_TRIG_SEL        = 14  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_CONDITION1_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_CONDITION2_TRIG_SEL        = 16  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_CONDITION2_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_C2_TIMEOUT_TRIG_SEL        = 18  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_INST2_C2_TIMEOUT_TRIG_SEL_LEN    = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_EXT_TRIG_ON_STOP                 = 32  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_EXT_TRIG_ON_FREEZE               = 33  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_CORE_RAS0_TRIG_SEL               = 34  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_CORE_RAS0_TRIG_SEL_LEN           = 5   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_CORE_RAS1_TRIG_SEL               = 39  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_CORE_RAS1_TRIG_SEL_LEN           = 5   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_PC_TP_TRIG_SEL                   = 44  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_PC_TP_TRIG_SEL_LEN               = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_ARM_SEL                          = 46  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_ARM_SEL_LEN                      = 4   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_TRIG0_LEVEL_SEL                  = 50  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_TRIG0_LEVEL_SEL_LEN              = 4   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_TRIG1_LEVEL_SEL                  = 54  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_0_TRIG1_LEVEL_SEL_LEN              = 4   ;

static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION1_ACTION_DO       = 0   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION1_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION2_ACTION_DO       = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION2_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_C2_TIMEOUT_ACTION_DO       = 4   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_C2_TIMEOUT_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION1_ACTION_DO       = 6   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION1_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION2_ACTION_DO       = 8   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION2_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_C2_TIMEOUT_ACTION_DO       = 10  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_C2_TIMEOUT_ACTION_DO_LEN   = 2   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION1_ACTION_WAITN    = 24  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION2_ACTION_WAITN    = 25  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_C2_TIMEOUT_ACTION_WAITN    = 26  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION1_ACTION_WAITN    = 27  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION2_ACTION_WAITN    = 28  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_C2_TIMEOUT_ACTION_WAITN    = 29  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION1_ACTION_BANK     = 36  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CONDITION2_ACTION_BANK     = 37  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_C2_TIMEOUT_ACTION_BANK     = 38  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION1_ACTION_BANK     = 39  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CONDITION2_ACTION_BANK     = 40  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_C2_TIMEOUT_ACTION_BANK     = 41  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CHECKSTOP_MODE_LT          = 48  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CHECKSTOP_MODE_LT_LEN      = 3   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST1_CHECKSTOP_MODE_SELECTOR    = 51  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CHECKSTOP_MODE_LT          = 52  ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CHECKSTOP_MODE_LT_LEN      = 3   ;
static const uint8_t P9N2_PERV_1_DBG_TRACE_REG_1_INST2_CHECKSTOP_MODE_SELECTOR    = 55  ;

static const uint8_t P9N2_PERV_1_DEBUG_TRACE_CONTROL_SCOM_TRACE_START             = 0   ;
static const uint8_t P9N2_PERV_1_DEBUG_TRACE_CONTROL_SCOM_TRACE_STOP              = 1   ;
static const uint8_t P9N2_PERV_1_DEBUG_TRACE_CONTROL_SCOM_TRACE_RESET             = 2   ;

static const uint8_t P9N2_PERV_DEVICE_ID_REG_SOCKET                               = 36  ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_SOCKET_LEN                           = 3   ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_CHIPPOS                              = 39  ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_FUSED_CORE_MODE_SEL0                 = 55  ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_FUSED_CORE_MODE_SEL1                 = 56  ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_HW_MODE_SEL                          = 57  ;
static const uint8_t P9N2_PERV_DEVICE_ID_REG_TP_EX_FUSE_SMT8_CTYPE_EN             = 58  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_ERROR_PTR_REGISTER_REG                = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_ERROR_PTR_REGISTER_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_MODE_REGISTER_REG_ENABLE              = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_MODE_REGISTER_REG_FIFO_SIZE_EQ_1      = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_MODE_REGISTER_REG_UNUSED              = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_MODE_REGISTER_REG_UNUSED_LEN          = 30  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_OP_BLOCKSIZE_REGISTER_OPCODE          = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_OP_BLOCKSIZE_REGISTER_OPCODE_LEN      = 8   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_OP_BLOCKSIZE_REGISTER_SIZE            = 8   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_OP_BLOCKSIZE_REGISTER_SIZE_LEN        = 24  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_RCV_BUFFER0_REGISTER_BUF0_REG_DATA0 = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_RCV_BUFFER0_REGISTER_BUF0_REG_DATA0_LEN = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_RCV_BUFFER1_REGISTER_BUF1_REG_DATA1 = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_RCV_BUFFER1_REGISTER_BUF1_REG_DATA1_LEN = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_SND_BUFFER0_REGISTER_BUF0_REG_DATA0 = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_SND_BUFFER0_REGISTER_BUF0_REG_DATA0_LEN = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_SND_BUFFER1_REGISTER_BUF1_REG_DATA0 = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_PIB_SND_BUFFER1_REGISTER_BUF1_REG_DATA0_LEN = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_REM_SIZE_REGISTER_REMAINING_WORDS     = 8   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_REM_SIZE_REGISTER_REMAINING_WORDS_LEN = 24  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_SCOM_CMD_REGISTER_REG                 = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_SCOM_CMD_REGISTER_REG_LEN             = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_DMA_STAT_COMP_MASK_REGISTER_REG           = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_DMA_STAT_COMP_MASK_REGISTER_REG_LEN       = 32  ;

static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_PERMISSION_TO_SEND_1 = 0   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_ABORT_1            = 1   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_LBUS_SLAVE_1B_PENDING = 2   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_PIB_SLAVE_PENDING  = 3   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_UNUSED_27          = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_XDN_1              = 5   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_XUP_1              = 6   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_UNUSED_24          = 7   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_HEADER_COUNT       = 8   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_HEADER_COUNT_LEN   = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_DATA_COUNT         = 12  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_DATA_COUNT_LEN     = 8   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_HEADER_COUNT_1B    = 20  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_HEADER_COUNT_1B_LEN = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_DATA_COUNT_1B      = 24  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_1A_DSC1_DATA_COUNT_1B_LEN  = 8   ;

static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_PERMISSION_TO_SEND_2 = 0   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_ABORT_2            = 1   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_LBUS_SLAVE_2B_PENDING = 2   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_PIB_SLAVE_PENDING  = 3   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_UNUSED_27          = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_XDN_2              = 5   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_XUP_2              = 6   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_UNUSED_24          = 7   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_HEADER_COUNT       = 8   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_HEADER_COUNT_LEN   = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_DATA_COUNT         = 12  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_DATA_COUNT_LEN     = 8   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_HEADER_COUNT_2B    = 20  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_HEADER_COUNT_2B_LEN = 4   ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_DATA_COUNT_2B      = 24  ;
static const uint8_t P9N2_PERV_DOORBELL_STATUS_CONTROL_2A_DSC2_DATA_COUNT_2B_LEN  = 8   ;

static const uint8_t P9N2_PERV_1_DTS_RESULT0_0_RESULT                             = 0   ;
static const uint8_t P9N2_PERV_1_DTS_RESULT0_0_RESULT_LEN                         = 16  ;
static const uint8_t P9N2_PERV_1_DTS_RESULT0_1_RESULT                             = 16  ;
static const uint8_t P9N2_PERV_1_DTS_RESULT0_1_RESULT_LEN                         = 16  ;

static const uint8_t P9N2_PERV_1_DTS_TRC_RESULT_TIMESTAMP_COUNTER_VALUE           = 0   ;
static const uint8_t P9N2_PERV_1_DTS_TRC_RESULT_TIMESTAMP_COUNTER_VALUE_LEN       = 44  ;
static const uint8_t P9N2_PERV_1_DTS_TRC_RESULT_TIMESTAMP_COUNTER_OVERFLOW_ERR    = 44  ;
static const uint8_t P9N2_PERV_1_DTS_TRC_RESULT_1                                 = 48  ;
static const uint8_t P9N2_PERV_1_DTS_TRC_RESULT_1_LEN                             = 16  ;

static const uint8_t P9N2_PERV_1_EDRAM_STATUS_STAT                                = 0   ;
static const uint8_t P9N2_PERV_1_EDRAM_STATUS_STAT_LEN                            = 4   ;

static const uint8_t P9N2_PERV_ERROR_REG_TIMEOUT_ACTIVE                           = 0   ;
static const uint8_t P9N2_PERV_ERROR_REG_PARITY_ERR                               = 1   ;
static const uint8_t P9N2_PERV_ERROR_REG_BEAT_NUM_ERR                             = 2   ;
static const uint8_t P9N2_PERV_ERROR_REG_BEAT_REC_ERR                             = 3   ;
static const uint8_t P9N2_PERV_ERROR_REG_RECEIVED                                 = 4   ;
static const uint8_t P9N2_PERV_ERROR_REG_RX_PCB_DATA_P_ERR                        = 5   ;
static const uint8_t P9N2_PERV_ERROR_REG_PIB_ADDR_P_ERR                           = 6   ;
static const uint8_t P9N2_PERV_ERROR_REG_PIB_DATA_P_ERR                           = 7   ;

static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_WRITE_NOT_ALLOWED_ERR           = 0   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_READ_NOT_ALLOWED_ERR            = 1   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_PARITY_ON_CMD_ERR               = 2   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_ADDRESS_NOT_VALID_ERR           = 3   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_PARITY_ON_ADDR_ERR              = 4   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_PARITY_ON_DATA_ERR              = 5   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_PROTECTED_ACCESS_INVALID_ERR    = 6   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_PARITY_ON_SPCIF_ERR             = 7   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PCB_WRITE_AND_OPCG_IP_ERR           = 8   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_SCAN_READ_AND_OPCG_IP_ERR           = 9   ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_CLOCK_CMD_CONFLICT_ERR              = 10  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_SCAN_COLLISION_ERR                  = 11  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PREVENTED_SCAN_COLLISION_ERR        = 12  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_OPCG_TRIGGER_ERR                    = 13  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PHASE_CNT_CORRUPTION_ERR            = 14  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_CLOCK_CMD_PREVENTED_ERR             = 15  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_OPCG_SM_ERR               = 16  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_CLOCK_MUX_REG_ERR         = 17  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_OPCG_REG_ERR              = 18  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_SYNC_CONFIG_REG_ERR       = 19  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_XSTOP_REG_ERR             = 20  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_GPIO_REG_ERR              = 21  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_CLKCMD_REQUEST_ERR                  = 22  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_CBS_PROTOCOL_ERR                    = 23  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_VITL_ALIGN_ERR                      = 24  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_UNIT_SYNC_LVL_ERR                   = 25  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_PARITY_ON_SELFBOOT_CMD_STATE_ERR    = 26  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_OPCG_STOPPED_BY_PCB_ERR             = 27  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_EDRAM_SCAN_PREVENTED_ERR            = 28  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_UNUSED_ERROR29                      = 29  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_UNUSED_ERROR30                      = 30  ;
static const uint8_t P9N2_PERV_1_ERROR_STATUS_UNUSED_ERROR31                      = 31  ;

static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SERIAL_SHIFTCNT_MODEREG_PARITY_ERR_HOLD = 0   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_THERM_MODEREG_PARITY_ERR_HOLD     = 1   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SKITTER_MODEREG_PARITY_ERR_HOLD   = 2   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SKITTER_FORCEREG_PARITY_ERR_HOLD  = 3   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SCAN_INIT_VERSION_REG_PARITY_ERR_HOLD = 4   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_VOLT_MODEREG_PARITY_ERR_HOLD      = 5   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SKITTER_CLKSRCREG_PARITY_ERR_HOLD = 6   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_COUNT_STATE_ERR_HOLD              = 7   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_RUN_STATE_ERR_HOLD                = 8   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_THRES_THERM_STATE_ERR_HOLD        = 9   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_THRES_THERM_OVERFLOW_ERR_HOLD     = 10  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFTER_PARITY_ERR_HOLD           = 11  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFTER_VALID_ERR_HOLD            = 12  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_TIMEOUT_ERR_HOLD                  = 13  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_F_SKITTER_ERR_HOLD                = 14  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_PCB_ERR_HOLD_OUT                  = 15  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SERIAL_SHIFTCNT_MODEREG_PARITY_MASK = 16  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_THERM_MODEREG_PARITY_MASK         = 17  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SKITTER_MODEREG_PARITY_MASK       = 18  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SKITTER_FORCEREG_PARITY_MASK      = 19  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SCAN_INIT_VERSION_PARITY_MASK     = 20  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_VOLT_MODEREG_PARITY_MASK          = 21  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_COUNT_STATE_MASK                  = 23  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_RUN_STATE_MASK                    = 24  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_THRES_STATE_MASK                  = 25  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_OVERFLOW_MASK                     = 26  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFTER_PARITY_MASK               = 27  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFTER_VALID_MASK                = 28  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_TIMEOUT_MASK                      = 29  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_F_SKITTER_READ_MASK               = 30  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_PCB_MASK                          = 31  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_COUNT_STATE_LT                    = 40  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_COUNT_STATE_LT_LEN                = 4   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_RUN_STATE_LT                      = 44  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_RUN_STATE_LT_LEN                  = 3   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFT_DTS_LT                      = 47  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SHIFT_VOLT_LT                     = 48  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_READ_STATE_LT                     = 49  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_READ_STATE_LT_LEN                 = 2   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_WRITE_STATE_LT                    = 51  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_WRITE_STATE_LT_LEN                = 4   ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_SAMPLE_DTS_LT                     = 55  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_MEASURE_VOLT_LT                   = 56  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_READ_CPM_LT                       = 57  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_WRITE_CPM_LT                      = 58  ;
static const uint8_t P9N2_PERV_1_ERR_STATUS_REG_UNUSED                            = 59  ;

static const uint8_t P9N2_PERV_FSII2C_EXTENDED_STATUS_A_MSM_CURR_STATE_0          = 11  ;
static const uint8_t P9N2_PERV_FSII2C_EXTENDED_STATUS_A_MSM_CURR_STATE_0_LEN      = 5   ;
static const uint8_t P9N2_PERV_FSII2C_EXTENDED_STATUS_A_SELF_BUSY_0               = 25  ;

static const uint8_t P9N2_PERV_FSII2C_FIFO1_REGISTER_READ_A_FIFO_BITS_READ0_0     = 0   ;
static const uint8_t P9N2_PERV_FSII2C_FIFO1_REGISTER_READ_A_FIFO_BITS_READ0_0_LEN = 8   ;

static const uint8_t P9N2_PERV_FIRST_ERR_REG_TIMEOUT_ACTIVE                       = 0   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_PARITY                               = 1   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_BEAT_NUM                             = 2   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_BEAT_REC                             = 3   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_RECEIVED_ERROR                       = 4   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_RX_PCB_DATA_P                        = 5   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_PIB_ADDR_P                           = 6   ;
static const uint8_t P9N2_PERV_FIRST_ERR_REG_PIB_DATA_P                           = 7   ;

static const uint8_t P9N2_PERV_FIRST_REPLY_REG_REGISTER                           = 0   ;
static const uint8_t P9N2_PERV_FIRST_REPLY_REG_REGISTER_LEN                       = 6   ;

static const uint8_t P9N2_PERV_1_FIR_MASK_IN0                                     = 0   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN1                                     = 1   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN2                                     = 2   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN3                                     = 3   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN4                                     = 4   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN5                                     = 5   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN6                                     = 6   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN7                                     = 7   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN8                                     = 8   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN9                                     = 9   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN10                                    = 10  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN11                                    = 11  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN12                                    = 12  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN13                                    = 13  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN14                                    = 14  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN15                                    = 15  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN16                                    = 16  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN17                                    = 17  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN18                                    = 18  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN19                                    = 19  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN20                                    = 20  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN21                                    = 21  ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN21_LEN                                = 5   ;
static const uint8_t P9N2_PERV_1_FIR_MASK_IN26                                    = 26  ;

static const uint8_t P9N2_PERV_1_FMU_FORCE_OP_REG_FORCE_MEASURE                   = 0   ;
static const uint8_t P9N2_PERV_1_FMU_FORCE_OP_REG_FORCE_FMU_SM_RESET              = 1   ;

static const uint8_t P9N2_PERV_1_FMU_KVREF_DATAREG_FMU_KVREF_DATAREG              = 0   ;
static const uint8_t P9N2_PERV_1_FMU_KVREF_DATAREG_FMU_KVREF_DATAREG_LEN          = 64  ;

static const uint8_t P9N2_PERV_1_FMU_MODE_REG_TOD_CNTR_REF                        = 12  ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_TOD_CNTR_REF_LEN                    = 4   ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_UNUSED1                             = 16  ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_POWER_UP_CNTR_REF                   = 17  ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_POWER_UP_CNTR_REF_LEN               = 3   ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_UNUSED2                             = 20  ;
static const uint8_t P9N2_PERV_1_FMU_MODE_REG_UNUSED2_LEN                         = 4   ;

static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR1_REG_FMU_PULSE_GEN_REG_ERR          = 1   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR1_REG_FMU_MODEREG_P_ERR              = 2   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR1_REG_RESULT_AVAILABLE               = 3   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR1_REG_PULSE1_CNTR                    = 4   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR1_REG_PULSE1_CNTR_LEN                = 24  ;

static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR2_REG_FMU_PULSE_GEN_REG_ERR          = 1   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR2_REG_FMU_MODEREG_P_ERR              = 2   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR2_REG_RESULT_AVAILABLE               = 3   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR2_REG_PULSE2_CNTR                    = 4   ;
static const uint8_t P9N2_PERV_1_FMU_OSC_CNTR2_REG_PULSE2_CNTR_LEN                = 24  ;

static const uint8_t P9N2_PERV_1_FMU_PULSE_GEN_REG_INT_ENA                        = 0   ;
static const uint8_t P9N2_PERV_1_FMU_PULSE_GEN_REG_UNUSED3                        = 1   ;
static const uint8_t P9N2_PERV_1_FMU_PULSE_GEN_REG_INT_CNTR_REF                   = 2   ;
static const uint8_t P9N2_PERV_1_FMU_PULSE_GEN_REG_INT_CNTR_REF_LEN               = 10  ;

static const uint8_t P9N2_PERV_1_FMU_VMEAS_MAX_RESULT_VMEAS_MAX_RESULT            = 0   ;
static const uint8_t P9N2_PERV_1_FMU_VMEAS_MAX_RESULT_VMEAS_MAX_RESULT_LEN        = 8   ;

static const uint8_t P9N2_PERV_1_FMU_VMEAS_MIN_RESULT_VMEAS_MIN_RESULT            = 0   ;
static const uint8_t P9N2_PERV_1_FMU_VMEAS_MIN_RESULT_VMEAS_MIN_RESULT_LEN        = 8   ;

static const uint8_t P9N2_PERV_FSB_FSB_DNFIFO_DATA_OUT_DNFIFO_DATA_OUT_PORT       = 0   ;
static const uint8_t P9N2_PERV_FSB_FSB_DNFIFO_DATA_OUT_DNFIFO_DATA_OUT_PORT_LEN   = 32  ;

static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_ACK_EOT_DNFIFO_ACK                = 0   ;

static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_MTC_DNFIFO_MCT                    = 0   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_MTC_DNFIFO_MCT_LEN                = 32  ;

static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_RESET_DNFIFO_RESET                = 0   ;

static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_REQ_RESET_FR_SBE    = 6   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_REQ_RESET_FR_SP     = 7   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_DEQUEUED_EOT_FLAG   = 8   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_FULL           = 10  ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_EMPTY          = 11  ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_ENTRY_COUNT    = 12  ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_ENTRY_COUNT_LEN = 4   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_VALID_FLAGS    = 16  ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_VALID_FLAGS_LEN = 8   ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_EOT_FLAGS      = 24  ;
static const uint8_t P9N2_PERV_FSB_FSB_DOWNFIFO_STATUS_DNFIFO_FIFO_EOT_FLAGS_LEN  = 8   ;

static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_DATA_IN_UPFIFO_DATA_IN_PORT         = 0   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_DATA_IN_UPFIFO_DATA_IN_PORT_LEN     = 32  ;

static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_REQ_RESET_UPFIFO_REQ_RESET          = 0   ;

static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_SIG_EOT_UPFIFO_SIGNAL               = 0   ;

static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_REQ_RESET_FR_SP              = 6   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_REQ_RESET_FR_SBE             = 7   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_DEQUEUED_EOT_FLAG            = 8   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_FULL                    = 10  ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_EMPTY                   = 11  ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_ENTRY_COUNT             = 12  ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_ENTRY_COUNT_LEN         = 4   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_VALID_FLAGS             = 16  ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_VALID_FLAGS_LEN         = 8   ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_EOT_FLAGS               = 24  ;
static const uint8_t P9N2_PERV_FSB_FSB_UPFIFO_STATUS_FIFO_EOT_FLAGS_LEN           = 8   ;

static const uint8_t P9N2_PERV_FSISCRPD1_FSI_SCRATCH_PAD1                         = 0   ;
static const uint8_t P9N2_PERV_FSISCRPD1_FSI_SCRATCH_PAD1_LEN                     = 32  ;

static const uint8_t P9N2_PERV_FSISCRPD2_FSI_SCRATCH_PAD2                         = 0   ;
static const uint8_t P9N2_PERV_FSISCRPD2_FSI_SCRATCH_PAD2_LEN                     = 32  ;

static const uint8_t P9N2_PERV_FSISCRPD3_FSI_SCRATCH_PAD3                         = 0   ;
static const uint8_t P9N2_PERV_FSISCRPD3_FSI_SCRATCH_PAD3_LEN                     = 32  ;

static const uint8_t P9N2_PERV_FSI_A_LLMOD_EXTEND_TIMO                            = 29  ;
static const uint8_t P9N2_PERV_FSI_A_LLMOD_DISABLE_GAP                            = 30  ;
static const uint8_t P9N2_PERV_FSI_A_LLMOD_ASYNC_MODE                             = 31  ;

static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_0                            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_0_LEN                        = 7   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_NO_CLK                                = 7   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_2                            = 8   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_2_LEN                        = 2   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_BAD_HANDSHAKE_AT_START                = 10  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_TIMEOUT                               = 11  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_LBUS_BUSY                             = 12  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_OPB_BUSY                              = 13  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_3                            = 14  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_BREAK_PENDING                         = 15  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_4                            = 16  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_4_LEN                        = 2   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_HANDSHAKE_STATE                       = 18  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_HANDSHAKE_STATE_LEN                   = 2   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_CFAM_CYCLE_TIME                       = 20  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_CFAM_CYCLE_TIME_LEN                   = 4   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_REFCLOCK_STATUS                       = 24  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_REFCLOCK_STATUS_LEN                   = 4   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_5                            = 28  ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_RESERVED_5_LEN                        = 3   ;
static const uint8_t P9N2_PERV_FSI_A_LLSTAT_ASYNC_MODE                            = 31  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MAEB_BRIDGE_ERROR                      = 0   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MAEB_BRIDGE_ERROR             = 0   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MCENP0_CLR_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MCENP0_CLR_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MCENP0_CLR_PORT_ENABLE        = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MCENP0_CLR_PORT_ENABLE_LEN    = 8   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_ENABLE                      = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_1_ENABLE                    = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_2_ENABLE                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_3_ENABLE                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_4_ENABLE                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_5_ENABLE                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_6_ENABLE                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MENP0_PORT_7_ENABLE                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_ENABLE             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_1_ENABLE           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_2_ENABLE           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_3_ENABLE           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_4_ENABLE           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_5_ENABLE           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_6_ENABLE           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MENP0_PORT_7_ENABLE           = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FIRST_ERROR                     = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FIRST_ERROR_LEN                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_CRC_ERROR_COUNT                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MMODE_PARITY_CHECK              = 8   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MDLYR_PARITY_CHECK              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MCRSP0_PARITY_CHECK             = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MENP0_PARITY_CHECK              = 11  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MSIEP0_PARITY_CHECK             = 12  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_MSSIEP0_PARITY_CHECK            = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_REGISTER_ACCESS_FSM_CHECK       = 14  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_OPB_BUS_ACCESS_FSM_CHECK        = 15  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_REGISTER_ACCESS_ERROR           = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_FRST         = 17  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_FRST_LEN     = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_ACTUAL_ERROR                    = 20  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_ACTUAL_ERROR_LEN                = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_SELECTED_ERROR                  = 24  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_SELECTED_ERROR_LEN              = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_ACT          = 29  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_ACT_LEN      = 3   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FIRST_ERROR            = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FIRST_ERROR_LEN        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_CRC_ERROR_COUNT        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MMODE_PARITY_CHECK     = 8   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MDLYR_PARITY_CHECK     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MCRSP0_PARITY_CHECK    = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MENP0_PARITY_CHECK     = 11  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MSIEP0_PARITY_CHECK    = 12  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_MSSIEP0_PARITY_CHECK   = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_REGISTER_ACCESS_FSM_CHECK = 14  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_OPB_BUS_ACCESS_FSM_CHECK = 15  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_REGISTER_ACCESS_ERROR  = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_FRST = 17  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_FRST_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_ACTUAL_ERROR           = 20  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_ACTUAL_ERROR_LEN       = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_SELECTED_ERROR         = 24  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_SELECTED_ERROR_LEN     = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_ACT = 29  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MESRB0_FAILING_OPB_MASTER_ACT_LEN = 3   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL                      = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_1                    = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP0_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_1           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_2           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_3           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_4           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_5           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_6           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP0_PORT_LEVEL_7           = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL                      = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_1                    = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MLEVP1_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_1           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_2           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_3           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_4           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_5           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_6           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MLEVP1_PORT_LEVEL_7           = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_ENABLE_IPOLL_AND_DMA             = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_ENABLE_HW_ERROR_RECOVERY         = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_ENABLE_RELATIVE_ADDRESS_CMDS     = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_ENABLE_PARITY_CHECK              = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_LEN         = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_1           = 14  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_1_LEN       = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_CLOCK_DIV_4                      = 25  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_TIMEOUT_SEL                      = 26  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_TIMEOUT_SEL_LEN                  = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_RECEIVER_MODE                    = 29  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MMODE_RECEIVER_MODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_ENABLE_IPOLL_AND_DMA    = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_ENABLE_HW_ERROR_RECOVERY = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_ENABLE_RELATIVE_ADDRESS_CMDS = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_ENABLE_PARITY_CHECK     = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_LEN = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_1  = 14  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_CLOCK_RATE_SELECTION_1_LEN = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_CLOCK_DIV_4             = 25  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_TIMEOUT_SEL             = 26  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_TIMEOUT_SEL_LEN         = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_RECEIVER_MODE           = 29  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MMODE_RECEIVER_MODE_LEN       = 3   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG                   = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_1                 = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG          = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_1        = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_2        = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_3        = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_4        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_5        = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_6        = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP0_PORT_HOT_PLUG_7        = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG                   = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_1                 = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG          = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_1        = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_2        = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_3        = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_4        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_5        = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_6        = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MREFP1_PORT_HOT_PLUG_7        = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESB0_BRIDGE_GENERAL_RESET            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESB0_BRIDGE_ERROR_RESET              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESB0_SET_DMA_IRQ_SUSPEND_MODE        = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESB0_CLEAR_DMA_IRQ_SUSPEND_MODE      = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESB0_SET_DLY_MEASUREMENT             = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESB0_BRIDGE_GENERAL_RESET   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESB0_BRIDGE_ERROR_RESET     = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESB0_SET_DMA_IRQ_SUSPEND_MODE = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESB0_CLEAR_DMA_IRQ_SUSPEND_MODE = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESB0_SET_DLY_MEASUREMENT    = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_PORT_GENERAL_RESET              = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_PORT_ERROR_RESET                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_ALL_BRIDGE_GENERAL_RESET        = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_ALL_PORT_GENERAL_RESET          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_CONTROL_REGISTER_RESET          = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP0_PARITY_ERROR_RESET              = 5   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_PORT_GENERAL_RESET     = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_PORT_ERROR_RESET       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_ALL_BRIDGE_GENERAL_RESET = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_ALL_PORT_GENERAL_RESET = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_CONTROL_REGISTER_RESET = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP0_PARITY_ERROR_RESET     = 5   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP1_PORT_GENERAL_RESET_1            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP1_PORT_ERROR_RESET_1              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP1_PORT_GENERAL_RESET_1   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP1_PORT_ERROR_RESET_1     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP2_PORT_GENERAL_RESET_2            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP2_PORT_ERROR_RESET_2              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP2_PORT_GENERAL_RESET_2   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP2_PORT_ERROR_RESET_2     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP3_PORT_GENERAL_RESET_3            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP3_PORT_ERROR_RESET_3              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP3_PORT_GENERAL_RESET_3   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP3_PORT_ERROR_RESET_3     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP4_PORT_GENERAL_RESET_4            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP4_PORT_ERROR_RESET_4              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP4_PORT_GENERAL_RESET_4   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP4_PORT_ERROR_RESET_4     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP5_PORT_GENERAL_RESET_5            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP5_PORT_ERROR_RESET_5              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP5_PORT_GENERAL_RESET_5   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP5_PORT_ERROR_RESET_5     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP6_PORT_GENERAL_RESET_6            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP6_PORT_ERROR_RESET_6              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP6_PORT_GENERAL_RESET_6   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP6_PORT_ERROR_RESET_6     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP7_PORT_GENERAL_RESET_7            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MRESP7_PORT_ERROR_RESET_7              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP7_PORT_GENERAL_RESET_7   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MRESP7_PORT_ERROR_RESET_7     = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSENP0_SET_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSENP0_SET_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSENP0_SET_PORT_ENABLE        = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSENP0_SET_PORT_ENABLE_LEN    = 8   ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP0_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_PORT0_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP0_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP1_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_PORT1_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP1_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP2_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_PORT2_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP2_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP3_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_PORT3_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP3_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP4_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_PORT4_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP4_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP5_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_PORT5_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP5_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP6_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_PORT6_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP6_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_0_MSTAP7_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_PORT7_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_A_MST_0_MSTAP7_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MAEB_BRIDGE_ERROR                      = 0   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MCENP0_CLR_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MCENP0_CLR_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_0_ENABLE                    = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_ENABLE                      = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_2_ENABLE                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_3_ENABLE                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_4_ENABLE                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_5_ENABLE                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_6_ENABLE                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MENP0_PORT_7_ENABLE                    = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FIRST_ERROR                     = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FIRST_ERROR_LEN                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_CRC_ERROR_COUNT                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MMODE_PARITY_CHECK              = 8   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MDLYR_PARITY_CHECK              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MCRSP0_PARITY_CHECK             = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MENP0_PARITY_CHECK              = 11  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MSIEP0_PARITY_CHECK             = 12  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_MSSIEP0_PARITY_CHECK            = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_REGISTER_ACCESS_FSM_CHECK       = 14  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_OPB_BUS_ACCESS_FSM_CHECK        = 15  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_REGISTER_ACCESS_ERROR           = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FAILING_OPB_MASTER_FRST         = 17  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FAILING_OPB_MASTER_FRST_LEN     = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_ACTUAL_ERROR                    = 20  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_ACTUAL_ERROR_LEN                = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_SELECTED_ERROR                  = 24  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_SELECTED_ERROR_LEN              = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FAILING_OPB_MASTER_ACT          = 29  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MESRB0_FAILING_OPB_MASTER_ACT_LEN      = 3   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_0                    = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL                      = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP0_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_0                    = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL                      = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MLEVP1_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_ENABLE_IPOLL_AND_DMA             = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_ENABLE_HW_ERROR_RECOVERY         = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_ENABLE_RELATIVE_ADDRESS_CMDS     = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_ENABLE_PARITY_CHECK              = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_CLOCK_RATE_SELECTION_0           = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_CLOCK_RATE_SELECTION_0_LEN       = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_CLOCK_RATE_SELECTION             = 14  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_CLOCK_RATE_SELECTION_LEN         = 10  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_CLOCK_DIV_4                      = 25  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_TIMEOUT_SEL                      = 26  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_TIMEOUT_SEL_LEN                  = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_RECEIVER_MODE                    = 29  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MMODE_RECEIVER_MODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_0                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG                   = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP0_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_0                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG                   = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MREFP1_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESB0_BRIDGE_GENERAL_RESET            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESB0_BRIDGE_ERROR_RESET              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESB0_SET_DMA_IRQ_SUSPEND_MODE        = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESB0_CLEAR_DMA_IRQ_SUSPEND_MODE      = 6   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESB0_SET_DLY_MEASUREMENT             = 7   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_PORT_GENERAL_RESET              = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_PORT_ERROR_RESET                = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_ALL_BRIDGE_GENERAL_RESET        = 2   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_ALL_PORT_GENERAL_RESET          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_CONTROL_REGISTER_RESET          = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP0_PARITY_ERROR_RESET              = 5   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP1_PORT_GENERAL_RESET              = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP1_PORT_ERROR_RESET                = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP2_PORT_GENERAL_RESET_2            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP2_PORT_ERROR_RESET_2              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP3_PORT_GENERAL_RESET_3            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP3_PORT_ERROR_RESET_3              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP4_PORT_GENERAL_RESET_4            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP4_PORT_ERROR_RESET_4              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP5_PORT_GENERAL_RESET_5            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP5_PORT_ERROR_RESET_5              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP6_PORT_GENERAL_RESET_6            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP6_PORT_ERROR_RESET_6              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP7_PORT_GENERAL_RESET_7            = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MRESP7_PORT_ERROR_RESET_7              = 1   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSENP0_SET_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSENP0_SET_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_PORT0_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP0_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_PORT1_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP1_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_PORT2_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP2_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_PORT3_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP3_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_PORT4_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP4_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_PORT5_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP5_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_PORT6_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP6_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE_0              = 1   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE_0_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_PORT7_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_A_MST_1_MSTAP7_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSI_A_SDMA_DMA_REQUEST_1_SELECT                    = 3   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_DMA_REQUEST_1_SELECT_LEN                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_DMA_REQUEST_2_SELECT                    = 11  ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_DMA_REQUEST_2_SELECT_LEN                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_CMFSI_PORT_ID_SELECT                    = 19  ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_CMFSI_PORT_ID_SELECT_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_CMFSI_SLAVE_ID_SELECT                   = 22  ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_CMFSI_SLAVE_ID_SELECT_LEN               = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_MFSI_PORT_ID_SELECT                     = 27  ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_MFSI_PORT_ID_SELECT_LEN                 = 3   ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_MFSI_SLAVE_ID_SELECT                    = 30  ;
static const uint8_t P9N2_PERV_FSI_A_SDMA_MFSI_SLAVE_ID_SELECT_LEN                = 2   ;

static const uint8_t P9N2_PERV_FSI_A_SLBUS_FORCE_LBUS_OWNERSHIP                   = 0   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_REQUEST_LBUS_OWNERSHIP                 = 1   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_RELEASE_LBUS_OWNERSHIP                 = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_RELEASE_LBUS_OWNERSHIP_LEN             = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_RESET_LBUS_REQUEST                     = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_LOCK_LBUS_ACCESS                       = 8   ;
static const uint8_t P9N2_PERV_FSI_A_SLBUS_LOCK_LBUS_ACCESS_LEN                   = 8   ;

static const uint8_t P9N2_PERV_FSI_A_SMODE_WARM_START_COMPLETED                   = 0   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_ENABLE_AUX_PORT_UNUSED                 = 1   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_ENABLE_HW_ERROR_RECOVERY               = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_OWN_ID_THIS_SLAVE                      = 6   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_OWN_ID_THIS_SLAVE_LEN                  = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_ECHO_DELAY_CYCLES                      = 8   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_ECHO_DELAY_CYCLES_LEN                  = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_SEND_DELAY_CYCLES                      = 12  ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_SEND_DELAY_CYCLES_LEN                  = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_LBUS_CLOCK_DIVIDER                     = 20  ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_LBUS_CLOCK_DIVIDER_LEN                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_BRIEFING_DATA_TO_SLAVE_SIDE_1          = 28  ;
static const uint8_t P9N2_PERV_FSI_A_SMODE_BRIEFING_DATA_TO_SLAVE_SIDE_1_LEN      = 4   ;

static const uint8_t P9N2_PERV_FSI_A_SSTAT_ANY_SLV_ERROR                          = 0   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_ID_DIRTY                               = 1   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_WARM_START_SYNC_FR_LEFT                = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_WARM_START_SYNC_FR_RIGHT               = 3   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_MAIL_DELIVERED_TO_LEFT                 = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_MAIL_DELIVERED_TO_RIGHT                = 5   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_MAIL_RECEIVED_FR_LEFT                  = 6   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_MAIL_RECEIVED_FR_RIGHT                 = 7   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_BRIEFING_DATA_SYNC_FR_LEFT             = 8   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_BRIEFING_DATA_SYNC_FR_LEFT_LEN         = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_BRIEFING_DATA_SYNC_FR_RIGHT            = 12  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_BRIEFING_DATA_SYNC_FR_RIGHT_LEN        = 4   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_LBUS_REQ_SYNC_FR_LEFT                  = 16  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_LBUS_REQ_SYNC_FR_RIGHT                 = 17  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_THIS_LBUS_REQ                          = 18  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_LBUS_LOCK                              = 19  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_LBUS_GNT                               = 20  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_LBUS_GNT_LEN                           = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_THIS_SIDE                              = 22  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_THIS_SIDE_LEN                          = 2   ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_OWNERSHIP_FF1                          = 24  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_OWNERSHIP_FF2                          = 25  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_AUX_DI_LEVEL                           = 26  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_AUX_DI_REFERENCE                       = 27  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_CRC_ERR_CTR                            = 28  ;
static const uint8_t P9N2_PERV_FSI_A_SSTAT_CRC_ERR_CTR_LEN                        = 4   ;

static const uint8_t P9N2_PERV_FSI_B_LLMOD_EXTEND_TIMO                            = 29  ;
static const uint8_t P9N2_PERV_FSI_B_LLMOD_DISABLE_GAP                            = 30  ;
static const uint8_t P9N2_PERV_FSI_B_LLMOD_ASYNC_MODE                             = 31  ;

static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_0                            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_0_LEN                        = 7   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_NO_CLK                                = 7   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_2                            = 8   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_2_LEN                        = 2   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_BAD_HANDSHAKE_AT_START                = 10  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_TIMEOUT                               = 11  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_LBUS_BUSY                             = 12  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_OPB_BUSY                              = 13  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_3                            = 14  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_BREAK_PENDING                         = 15  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_4                            = 16  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_4_LEN                        = 2   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_HANDSHAKE_STATE                       = 18  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_HANDSHAKE_STATE_LEN                   = 2   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_CFAM_CYCLE_TIME                       = 20  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_CFAM_CYCLE_TIME_LEN                   = 4   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_REFCLOCK_STATUS                       = 24  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_REFCLOCK_STATUS_LEN                   = 4   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_5                            = 28  ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_RESERVED_5_LEN                        = 3   ;
static const uint8_t P9N2_PERV_FSI_B_LLSTAT_ASYNC_MODE                            = 31  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MAEB_BRIDGE_ERROR                      = 0   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MAEB_BRIDGE_ERROR             = 0   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MCENP0_CLR_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MCENP0_CLR_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MCENP0_CLR_PORT_ENABLE        = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MCENP0_CLR_PORT_ENABLE_LEN    = 8   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_ENABLE                      = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_1_ENABLE                    = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_2_ENABLE                    = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_3_ENABLE                    = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_4_ENABLE                    = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_5_ENABLE                    = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_6_ENABLE                    = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MENP0_PORT_7_ENABLE                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_ENABLE             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_1_ENABLE           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_2_ENABLE           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_3_ENABLE           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_4_ENABLE           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_5_ENABLE           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_6_ENABLE           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MENP0_PORT_7_ENABLE           = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FIRST_ERROR                     = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FIRST_ERROR_LEN                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_CRC_ERROR_COUNT                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MMODE_PARITY_CHECK              = 8   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MDLYR_PARITY_CHECK              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MCRSP0_PARITY_CHECK             = 10  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MENP0_PARITY_CHECK              = 11  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MSIEP0_PARITY_CHECK             = 12  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_MSSIEP0_PARITY_CHECK            = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_REGISTER_ACCESS_FSM_CHECK       = 14  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_OPB_BUS_ACCESS_FSM_CHECK        = 15  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_REGISTER_ACCESS_ERROR           = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_FRST         = 17  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_FRST_LEN     = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_ACTUAL_ERROR                    = 20  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_ACTUAL_ERROR_LEN                = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_SELECTED_ERROR                  = 24  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_SELECTED_ERROR_LEN              = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_ACT          = 29  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_ACT_LEN      = 3   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FIRST_ERROR            = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FIRST_ERROR_LEN        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_CRC_ERROR_COUNT        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MMODE_PARITY_CHECK     = 8   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MDLYR_PARITY_CHECK     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MCRSP0_PARITY_CHECK    = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MENP0_PARITY_CHECK     = 11  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MSIEP0_PARITY_CHECK    = 12  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_MSSIEP0_PARITY_CHECK   = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_REGISTER_ACCESS_FSM_CHECK = 14  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_OPB_BUS_ACCESS_FSM_CHECK = 15  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_REGISTER_ACCESS_ERROR  = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_FRST = 17  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_FRST_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_ACTUAL_ERROR           = 20  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_ACTUAL_ERROR_LEN       = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_SELECTED_ERROR         = 24  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_SELECTED_ERROR_LEN     = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_ACT = 29  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MESRB0_FAILING_OPB_MASTER_ACT_LEN = 3   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL                      = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_1                    = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP0_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_1           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_2           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_3           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_4           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_5           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_6           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP0_PORT_LEVEL_7           = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL                      = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_1                    = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_2                    = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_3                    = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_4                    = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_5                    = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_6                    = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MLEVP1_PORT_LEVEL_7                    = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_1           = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_2           = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_3           = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_4           = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_5           = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_6           = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MLEVP1_PORT_LEVEL_7           = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_ENABLE_IPOLL_AND_DMA             = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_ENABLE_HW_ERROR_RECOVERY         = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_ENABLE_RELATIVE_ADDRESS_CMDS     = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_ENABLE_PARITY_CHECK              = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_LEN         = 10  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_1           = 14  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_1_LEN       = 10  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_CLOCK_DIV_4                      = 25  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_TIMEOUT_SEL                      = 26  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_TIMEOUT_SEL_LEN                  = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_RECEIVER_MODE                    = 29  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MMODE_RECEIVER_MODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_ENABLE_IPOLL_AND_DMA    = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_ENABLE_HW_ERROR_RECOVERY = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_ENABLE_RELATIVE_ADDRESS_CMDS = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_ENABLE_PARITY_CHECK     = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_LEN = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_1  = 14  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_CLOCK_RATE_SELECTION_1_LEN = 10  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_CLOCK_DIV_4             = 25  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_TIMEOUT_SEL             = 26  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_TIMEOUT_SEL_LEN         = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_RECEIVER_MODE           = 29  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MMODE_RECEIVER_MODE_LEN       = 3   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG                   = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_1                 = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG          = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_1        = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_2        = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_3        = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_4        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_5        = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_6        = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP0_PORT_HOT_PLUG_7        = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG                   = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_1                 = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_2                 = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_3                 = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_4                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_5                 = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_6                 = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_7                 = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG          = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_1        = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_2        = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_3        = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_4        = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_5        = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_6        = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MREFP1_PORT_HOT_PLUG_7        = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESB0_BRIDGE_GENERAL_RESET            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESB0_BRIDGE_ERROR_RESET              = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESB0_SET_DMA_IRQ_SUSPEND_MODE        = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESB0_CLEAR_DMA_IRQ_SUSPEND_MODE      = 6   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESB0_SET_DLY_MEASUREMENT             = 7   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESB0_BRIDGE_GENERAL_RESET   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESB0_BRIDGE_ERROR_RESET     = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESB0_SET_DMA_IRQ_SUSPEND_MODE = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESB0_CLEAR_DMA_IRQ_SUSPEND_MODE = 6   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESB0_SET_DLY_MEASUREMENT    = 7   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_PORT_GENERAL_RESET              = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_PORT_ERROR_RESET                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_ALL_BRIDGE_GENERAL_RESET        = 2   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_ALL_PORT_GENERAL_RESET          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_CONTROL_REGISTER_RESET          = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP0_PARITY_ERROR_RESET              = 5   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_PORT_GENERAL_RESET     = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_PORT_ERROR_RESET       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_ALL_BRIDGE_GENERAL_RESET = 2   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_ALL_PORT_GENERAL_RESET = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_CONTROL_REGISTER_RESET = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP0_PARITY_ERROR_RESET     = 5   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP1_PORT_GENERAL_RESET_1            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP1_PORT_ERROR_RESET_1              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP1_PORT_GENERAL_RESET_1   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP1_PORT_ERROR_RESET_1     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP2_PORT_GENERAL_RESET_2            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP2_PORT_ERROR_RESET_2              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP2_PORT_GENERAL_RESET_2   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP2_PORT_ERROR_RESET_2     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP3_PORT_GENERAL_RESET_3            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP3_PORT_ERROR_RESET_3              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP3_PORT_GENERAL_RESET_3   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP3_PORT_ERROR_RESET_3     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP4_PORT_GENERAL_RESET_4            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP4_PORT_ERROR_RESET_4              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP4_PORT_GENERAL_RESET_4   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP4_PORT_ERROR_RESET_4     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP5_PORT_GENERAL_RESET_5            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP5_PORT_ERROR_RESET_5              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP5_PORT_GENERAL_RESET_5   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP5_PORT_ERROR_RESET_5     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP6_PORT_GENERAL_RESET_6            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP6_PORT_ERROR_RESET_6              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP6_PORT_GENERAL_RESET_6   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP6_PORT_ERROR_RESET_6     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP7_PORT_GENERAL_RESET_7            = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MRESP7_PORT_ERROR_RESET_7              = 1   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP7_PORT_GENERAL_RESET_7   = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MRESP7_PORT_ERROR_RESET_7     = 1   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSENP0_SET_PORT_ENABLE                 = 0   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSENP0_SET_PORT_ENABLE_LEN             = 8   ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSENP0_SET_PORT_ENABLE        = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSENP0_SET_PORT_ENABLE_LEN    = 8   ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP0_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_PORT0_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP0_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP1_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_PORT1_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP1_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP2_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_PORT2_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP2_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP3_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_PORT3_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP3_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP4_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_PORT4_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP4_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP5_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_PORT5_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP5_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP6_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_PORT6_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP6_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE                = 1   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_LEN            = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_1              = 5   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_1_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_2              = 9   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_2_LEN          = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_FOURTH_ERROR                    = 13  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_FOURTH_ERROR_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_CRC_ERROR_COUNT                 = 16  ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_CRC_ERROR_COUNT_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI_B_MST_0_MSTAP7_HOT_PLUG_FLAG                   = 20  ;

static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE       = 1   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_LEN   = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_1     = 5   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_1_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_2     = 9   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_PORT7_ERROR_CODE_2_LEN = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_FOURTH_ERROR           = 13  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_FOURTH_ERROR_LEN       = 3   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_CRC_ERROR_COUNT        = 16  ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_CRC_ERROR_COUNT_LEN    = 4   ;
static const uint8_t P9N2_PERV_FSISHIFT_FSI_B_MST_0_MSTAP7_HOT_PLUG_FLAG          = 20  ;

static const uint8_t P9N2_PERV_FSI_B_SDMA_DMA_REQUEST_1_SELECT                    = 3   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_DMA_REQUEST_1_SELECT_LEN                = 5   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_DMA_REQUEST_2_SELECT                    = 11  ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_DMA_REQUEST_2_SELECT_LEN                = 5   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_CMFSI_PORT_ID_SELECT                    = 19  ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_CMFSI_PORT_ID_SELECT_LEN                = 3   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_CMFSI_SLAVE_ID_SELECT                   = 22  ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_CMFSI_SLAVE_ID_SELECT_LEN               = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_MFSI_PORT_ID_SELECT                     = 27  ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_MFSI_PORT_ID_SELECT_LEN                 = 3   ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_MFSI_SLAVE_ID_SELECT                    = 30  ;
static const uint8_t P9N2_PERV_FSI_B_SDMA_MFSI_SLAVE_ID_SELECT_LEN                = 2   ;

static const uint8_t P9N2_PERV_FSI_B_SLBUS_FORCE_LBUS_OWNERSHIP                   = 0   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_REQUEST_LBUS_OWNERSHIP                 = 1   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_RELEASE_LBUS_OWNERSHIP                 = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_RELEASE_LBUS_OWNERSHIP_LEN             = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_RESET_LBUS_REQUEST                     = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_LOCK_LBUS_ACCESS                       = 8   ;
static const uint8_t P9N2_PERV_FSI_B_SLBUS_LOCK_LBUS_ACCESS_LEN                   = 8   ;

static const uint8_t P9N2_PERV_FSI_B_SMODE_WARM_START_COMPLETED                   = 0   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_ENABLE_AUX_PORT_UNUSED                 = 1   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_ENABLE_HW_ERROR_RECOVERY               = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_OWN_ID_THIS_SLAVE                      = 6   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_OWN_ID_THIS_SLAVE_LEN                  = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_ECHO_DELAY_CYCLES                      = 8   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_ECHO_DELAY_CYCLES_LEN                  = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_SEND_DELAY_CYCLES                      = 12  ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_SEND_DELAY_CYCLES_LEN                  = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_LBUS_CLOCK_DIVIDER                     = 20  ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_LBUS_CLOCK_DIVIDER_LEN                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_BRIEFING_DATA_TO_SLAVE_SIDE_0          = 24  ;
static const uint8_t P9N2_PERV_FSI_B_SMODE_BRIEFING_DATA_TO_SLAVE_SIDE_0_LEN      = 4   ;

static const uint8_t P9N2_PERV_FSI_B_SSTAT_ANY_SLV_ERROR                          = 0   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_ID_DIRTY                               = 1   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_WARM_START_SYNC_FR_LEFT                = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_WARM_START_SYNC_FR_RIGHT               = 3   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_MAIL_DELIVERED_TO_LEFT                 = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_MAIL_DELIVERED_TO_RIGHT                = 5   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_MAIL_RECEIVED_FR_LEFT                  = 6   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_MAIL_RECEIVED_FR_RIGHT                 = 7   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_BRIEFING_DATA_SYNC_FR_LEFT             = 8   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_BRIEFING_DATA_SYNC_FR_LEFT_LEN         = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_BRIEFING_DATA_SYNC_FR_RIGHT            = 12  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_BRIEFING_DATA_SYNC_FR_RIGHT_LEN        = 4   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_LBUS_REQ_SYNC_FR_LEFT                  = 16  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_LBUS_REQ_SYNC_FR_RIGHT                 = 17  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_THIS_LBUS_REQ                          = 18  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_LBUS_LOCK                              = 19  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_LBUS_GNT                               = 20  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_LBUS_GNT_LEN                           = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_THIS_SIDE                              = 22  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_THIS_SIDE_LEN                          = 2   ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_OWNERSHIP_FF1                          = 24  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_OWNERSHIP_FF2                          = 25  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_AUX_DI_LEVEL                           = 26  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_AUX_DI_REFERENCE                       = 27  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_CRC_ERR_CTR                            = 28  ;
static const uint8_t P9N2_PERV_FSI_B_SSTAT_CRC_ERR_CTR_LEN                        = 4   ;

static const uint8_t P9N2_PERV_GPWRP_MAGIC_COOKIE                                 = 0   ;
static const uint8_t P9N2_PERV_GPWRP_MAGIC_COOKIE_LEN                             = 16  ;
static const uint8_t P9N2_PERV_GPWRP_EN_OR_DIS_WRITE_PROTECTION                   = 16  ;
static const uint8_t P9N2_PERV_GPWRP_EN_OR_DIS_WRITE_PROTECTION_LEN               = 16  ;

static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN0                 = 0   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN1                 = 1   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN2                 = 2   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN3                 = 3   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN4                 = 4   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN5                 = 5   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN6                 = 6   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN7                 = 7   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN8                 = 8   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN9                 = 9   ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN10                = 10  ;
static const uint8_t P9N2_PERV_1_GXSTOP0_MASK_REG_GXSTP0_TRIG_IN11                = 11  ;

static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN0                 = 0   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN1                 = 1   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN2                 = 2   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN3                 = 3   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN4                 = 4   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN5                 = 5   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN6                 = 6   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN7                 = 7   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN8                 = 8   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN9                 = 9   ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN10                = 10  ;
static const uint8_t P9N2_PERV_1_GXSTOP1_MASK_REG_GXSTP1_TRIG_IN11                = 11  ;

static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN0                 = 0   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN1                 = 1   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN2                 = 2   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN3                 = 3   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN4                 = 4   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN5                 = 5   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN6                 = 6   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN7                 = 7   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN8                 = 8   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN9                 = 9   ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN10                = 10  ;
static const uint8_t P9N2_PERV_1_GXSTOP2_MASK_REG_GXSTP2_TRIG_IN11                = 11  ;

static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN0                        = 0   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN1                        = 1   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN2                        = 2   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN3                        = 3   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN4                        = 4   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN5                        = 5   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN6                        = 6   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN7                        = 7   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN8                        = 8   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN9                        = 9   ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN10                       = 10  ;
static const uint8_t P9N2_PERV_1_GXSTOP_TRIG_REG_GXSTP_IN11                       = 11  ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_0_REG_0                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_0_REG_0_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_0_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_1_REG_1                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_1_REG_1_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_1_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_2_REG_2                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_2_REG_2_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_2_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_3_REG_3                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_3_REG_3_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_3_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_4_REG_4                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_4_REG_4_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_4_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_5_REG_5                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_5_REG_5_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_5_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HANG_PULSE_6_REG_6                               = 0   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_6_REG_6_LEN                           = 6   ;
static const uint8_t P9N2_PERV_1_HANG_PULSE_6_REG_SUPPRESS                        = 6   ;

static const uint8_t P9N2_PERV_1_HEARTBEAT_REG_DEAD                               = 0   ;

static const uint8_t P9N2_PERV_1_HOSTATTN_IN0                                     = 0   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN1                                     = 1   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN2                                     = 2   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN3                                     = 3   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN4                                     = 4   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN5                                     = 5   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN6                                     = 6   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN7                                     = 7   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN8                                     = 8   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN9                                     = 9   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN10                                    = 10  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN11                                    = 11  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN12                                    = 12  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN13                                    = 13  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN14                                    = 14  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN15                                    = 15  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN16                                    = 16  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN17                                    = 17  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN18                                    = 18  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN19                                    = 19  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN20                                    = 20  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN21                                    = 21  ;
static const uint8_t P9N2_PERV_1_HOSTATTN_IN22                                    = 22  ;

static const uint8_t P9N2_PERV_1_HOSTATTN_MASK_IN                                 = 0   ;
static const uint8_t P9N2_PERV_1_HOSTATTN_MASK_IN_LEN                             = 22  ;

static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_0                              = 0   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_1                              = 1   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_2                              = 2   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_3                              = 3   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_4                              = 4   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_IPOLL_5                              = 5   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_0                              = 6   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_1                              = 7   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_2                              = 8   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_3                              = 9   ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_4                              = 10  ;
static const uint8_t P9N2_PERV_HOST_MASK_REG_ERROR_5                              = 11  ;

static const uint8_t P9N2_PERV_IGNORE_PAR_REG_PARITY                              = 0   ;
static const uint8_t P9N2_PERV_IGNORE_PAR_REG_DISABLE_ECC_CORRECTION              = 1   ;
static const uint8_t P9N2_PERV_IGNORE_PAR_REG_ECC_S_BIT_ERROR                     = 2   ;
static const uint8_t P9N2_PERV_IGNORE_PAR_REG_CHKSW_AR012                         = 3   ;

static const uint8_t P9N2_PERV_1_INJECT_REG_THERM_TRIP                            = 0   ;
static const uint8_t P9N2_PERV_1_INJECT_REG_THERM_TRIP_LEN                        = 2   ;
static const uint8_t P9N2_PERV_1_INJECT_REG_THERM_MODE                            = 2   ;
static const uint8_t P9N2_PERV_1_INJECT_REG_THERM_MODE_LEN                        = 2   ;

static const uint8_t P9N2_PERV_FSI2PIB_INTERRUPT_STATUS_REG                       = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_INTERRUPT_STATUS_REG_LEN                   = 32  ;

static const uint8_t P9N2_PERV_INTERRUPT1_REG_INTERRUPT1                          = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT1_REG_INTERRUPT1_LEN                      = 56  ;

static const uint8_t P9N2_PERV_INTERRUPT2_REG_INTERRUPT2                          = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT2_REG_INTERRUPT2_LEN                      = 56  ;

static const uint8_t P9N2_PERV_INTERRUPT3_REG_INTERRUPT3                          = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT3_REG_INTERRUPT3_LEN                      = 56  ;

static const uint8_t P9N2_PERV_INTERRUPT4_REG_INTERRUPT4                          = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT4_REG_INTERRUPT4_LEN                      = 56  ;

static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_INVALID_CMD_0              = 16  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_LBUS_PARITY_ERROR_0        = 17  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_BE_OV_ERROR_0              = 18  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_BE_ACC_ERROR_0             = 19  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_ARBITRATION_LOST_ERROR_0   = 20  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_NACK_RECEIVED_ERROR_0      = 21  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_DATA_REQUEST_0             = 22  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_COND_A_STOP_ERROR_0               = 24  ;

static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_UNUSED0                         = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_SEL0                            = 1   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_SEL0_LEN                        = 3   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_UNUSED4                         = 4   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_SEL1                            = 5   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_SEL1_LEN                        = 3   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_GP                              = 8   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_CC                              = 9   ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_UNUSED2                         = 10  ;
static const uint8_t P9N2_PERV_INTERRUPT_CONF_REG_UNUSED3                         = 11  ;

static const uint8_t P9N2_PERV_INTERRUPT_HOLD_REG_HOLD                            = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT_HOLD_REG_HOLD_LEN                        = 26  ;

static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_MASK_REGISTER_A_INT_0             = 16  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_MASK_REGISTER_A_INT_0_LEN         = 16  ;

static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_MASK_REGISTER_READ_A_INT_0        = 16  ;
static const uint8_t P9N2_PERV_FSII2C_INTERRUPT_MASK_REGISTER_READ_A_INT_0_LEN    = 16  ;

static const uint8_t P9N2_PERV_INTERRUPT_TYPE_MASK_REG_GP                         = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT_TYPE_MASK_REG_CC                         = 1   ;
static const uint8_t P9N2_PERV_INTERRUPT_TYPE_MASK_REG_UNUSED2                    = 2   ;
static const uint8_t P9N2_PERV_INTERRUPT_TYPE_MASK_REG_UNUSED3                    = 3   ;

static const uint8_t P9N2_PERV_INTERRUPT_TYPE_REG_ATTENTION                       = 0   ;
static const uint8_t P9N2_PERV_INTERRUPT_TYPE_REG_RECOVERABLE_ERROR               = 1   ;
static const uint8_t P9N2_PERV_INTERRUPT_TYPE_REG_CHECKSTOP                       = 2   ;

static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_VLD                                 = 0   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_RSVD0                               = 1   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_RSVD0_LEN                           = 5   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_PC                                  = 6   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_PC_LEN                              = 2   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_PE                                  = 8   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_PE_LEN                              = 4   ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_EA                                  = 12  ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_EA_LEN                              = 37  ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_RSVD1                               = 49  ;
static const uint8_t P9N2_PERV_IODA_TCD_IDIAL_RSVD1_LEN                           = 15  ;

static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_RA                                  = 0   ;
static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_RA_LEN                              = 39  ;
static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_RSVD0                               = 39  ;
static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_RSVD0_LEN                           = 2   ;
static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_PAR                                 = 41  ;
static const uint8_t P9N2_PERV_IODA_TDR_IDIAL_PAR_LEN                             = 5   ;

static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RSVD0                           = 0   ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RSVD0_LEN                       = 13  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RA                              = 13  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RA_LEN                          = 39  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RSVD1                           = 52  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_RSVD1_LEN                       = 10  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_PC                              = 62  ;
static const uint8_t P9N2_PERV_IODA_TDR_MEM_IDIAL_PC_LEN                          = 2   ;

static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_XLAT_ADDR                        = 0   ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_XLAT_ADDR_LEN                    = 48  ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_TABLE_LEVEL                      = 48  ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_TABLE_LEVEL_LEN                  = 3   ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_TABLE_SIZE                       = 51  ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_TABLE_SIZE_LEN                   = 5   ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_SPARE                            = 56  ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_SPARE_LEN                        = 3   ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_PAGE_SIZE                        = 59  ;
static const uint8_t P9N2_PERV_FSB_IODA_TVT_TVT0_PAGE_SIZE_LEN                    = 5   ;

static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_EA                               = 0   ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_EA_LEN                           = 37  ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_PE                               = 37  ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_PE_LEN                           = 4   ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_RNW                              = 41  ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_TAG                              = 42  ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_TAG_LEN                          = 8   ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_RSVD0                            = 50  ;
static const uint8_t P9N2_PERV_IODA_XLT_EA_IDIAL_RSVD0_LEN                        = 14  ;

static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_START_CAL        = 0   ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_DATA_SEL         = 1   ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_BYPASS           = 2   ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_MEASURE          = 8   ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_MAX              = 9   ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_MIN              = 10  ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_CAL_DONE         = 16  ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_TIMEOUT          = 18  ;
static const uint8_t P9N2_PERV_1_KVREF_AND_VMEAS_MODE_STATUS_REG_RESULT_VALID     = 19  ;

static const uint8_t P9N2_PERV_1_KVREF_TUNE_DATA_FMU_KVREF_TUNE_DATA              = 0   ;
static const uint8_t P9N2_PERV_1_KVREF_TUNE_DATA_FMU_KVREF_TUNE_DATA_LEN          = 12  ;

static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN0                                    = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN1                                    = 1   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN2                                    = 2   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN3                                    = 3   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN4                                    = 4   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN5                                    = 5   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN6                                    = 6   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN7                                    = 7   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN8                                    = 8   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN9                                    = 9   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN10                                   = 10  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN11                                   = 11  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN12                                   = 12  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN13                                   = 13  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN14                                   = 14  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN15                                   = 15  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN16                                   = 16  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN17                                   = 17  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN18                                   = 18  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN19                                   = 19  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN20                                   = 20  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN21                                   = 21  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN22                                   = 22  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN23                                   = 23  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN24                                   = 24  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN25                                   = 25  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN26                                   = 26  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN27                                   = 27  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN28                                   = 28  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN29                                   = 29  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN30                                   = 30  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN31                                   = 31  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN32                                   = 32  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN33                                   = 33  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN34                                   = 34  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN35                                   = 35  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN36                                   = 36  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN37                                   = 37  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN38                                   = 38  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN39                                   = 39  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN40                                   = 40  ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_IN41                                   = 41  ;

static const uint8_t P9N2_PERV_1_LOCAL_FIR_ACTION0_IN                             = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_ACTION0_IN_LEN                         = 42  ;

static const uint8_t P9N2_PERV_1_LOCAL_FIR_ACTION1_IN                             = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_ACTION1_IN_LEN                         = 42  ;

static const uint8_t P9N2_PERV_1_LOCAL_FIR_MASK_LFIR_IN                           = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_FIR_MASK_LFIR_IN_LEN                       = 42  ;

static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN0                              = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN1                              = 1   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN2                              = 2   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN3                              = 3   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN4                              = 4   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN5                              = 5   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN6                              = 6   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN7                              = 7   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN8                              = 8   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN9                              = 9   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN10                             = 10  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN11                             = 11  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN12                             = 12  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN13                             = 13  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN14                             = 14  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN15                             = 15  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN16                             = 16  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN17                             = 17  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN18                             = 18  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN19                             = 19  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN20                             = 20  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN21                             = 21  ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_ERR_IN22                             = 22  ;

static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_MASK_IN                              = 0   ;
static const uint8_t P9N2_PERV_1_LOCAL_XSTOP_MASK_IN_LEN                          = 22  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_0_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_0_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_1_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_1_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_10_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_10_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_11_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_11_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_12_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_12_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_13_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_13_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_14_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_14_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_15_MDA_M1A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_15_MDA_M1A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_2_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_2_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_3_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_3_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_4_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_4_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_5_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_5_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_6_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_6_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_7_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_7_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_8_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_8_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1A_DATA_AREA_9_MDA_M1A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1A_DATA_AREA_9_MDA_M1A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_0_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_0_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_1_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_1_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_10_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_10_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_11_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_11_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_12_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_12_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_13_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_13_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_14_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_14_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_15_MDA_M1B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_15_MDA_M1B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_2_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_2_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_3_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_3_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_4_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_4_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_5_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_5_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_6_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_6_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_7_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_7_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_8_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_8_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M1B_DATA_AREA_9_MDA_M1B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M1B_DATA_AREA_9_MDA_M1B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_0_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_0_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_1_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_1_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_10_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_10_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_11_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_11_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_12_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_12_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_13_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_13_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_14_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_14_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_15_MDA_M2A_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_15_MDA_M2A_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_2_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_2_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_3_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_3_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_4_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_4_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_5_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_5_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_6_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_6_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_7_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_7_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_8_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_8_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2A_DATA_AREA_9_MDA_M2A_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2A_DATA_AREA_9_MDA_M2A_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_0_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_0_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_1_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_1_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_10_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_10_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_11_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_11_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_12_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_12_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_13_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_13_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_14_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_14_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_15_MDA_M2B_DATA_AREA                 = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_15_MDA_M2B_DATA_AREA_LEN             = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_2_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_2_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_3_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_3_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_4_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_4_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_5_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_5_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_6_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_6_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_7_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_7_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_8_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_8_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_M2B_DATA_AREA_9_MDA_M2B_DATA_AREA                  = 0   ;
static const uint8_t P9N2_PERV_M2B_DATA_AREA_9_MDA_M2B_DATA_AREA_LEN              = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_0_A_M1HC0A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_0_A_M1HC0A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_0_B_M1HC0B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_0_B_M1HC0B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_1_A_M1HC1A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_1_A_M1HC1A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_1_B_M1HC1B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_1_B_M1HC1B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_2_A_M1HC2A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_2_A_M1HC2A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_2_B_M1HC2B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_1_HEADER_COMMAND_2_B_M1HC2B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_1_SLAVE_A_DOORBELL_INTERRUPT_MASK_1_M1SASIM1_ENABLE_PIB_ERROR = 29  ;
static const uint8_t P9N2_PERV_MAILBOX_1_SLAVE_A_DOORBELL_INTERRUPT_MASK_1_M1SASIM1_ENABLE_XUP = 30  ;
static const uint8_t P9N2_PERV_MAILBOX_1_SLAVE_A_DOORBELL_INTERRUPT_MASK_1_M1SASIM1_ENABLE_PIB_PENDING = 31  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_0_A_M2HC0A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_0_A_M2HC0A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_0_B_M2HC0B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_0_B_M2HC0B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_1_A_M2HC1A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_1_A_M2HC1A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_1_B_M2HC1B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_1_B_M2HC1B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_2_A_M2HC2A                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_2_A_M2HC2A_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_2_B_M2HC2B                = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_2_HEADER_COMMAND_2_B_M2HC2B_LEN            = 32  ;

static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_UNUSED_31_28 = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_UNUSED_31_28_LEN = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ILLEGAL_OPERATION_ATTEMPTED_1 = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_WRITE_FULL_PIB_1 = 5   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_READ_EMPTY_PIB_1 = 6   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_LBUS_B_RAM_PARITY_DETECTED_1 = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ADDRESS_OF_LBUS_PARITY_1 = 8   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ADDRESS_OF_LBUS_PARITY_1_LEN = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_CLEAR_1 = 15  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_UNUSED_15_12 = 16  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_UNUSED_15_12_LEN = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ILLEGAL_OPERATION_ATTEMPTED_2 = 20  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_WRITE_FULL_PIB_2 = 21  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_READ_EMPTY_PIB_2 = 22  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_LBUS_B_RAM_PARITY_DETECTED_2 = 23  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ADDRESS_OF_LBUS_PARITY_2 = 24  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_ADDRESS_OF_LBUS_PARITY_2_LEN = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_ERROR_STATUS_MSADES_CLEAR_2 = 31  ;

static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_UNUSED_31_11 = 11  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_UNUSED_31_11_LEN = 10  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_PIB_ERROR_2 = 21  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_XUP_2     = 22  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_PIB_PENDING_2 = 23  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_UNUSED_7_3 = 24  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_UNUSED_7_3_LEN = 5   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_PIB_ERROR_1 = 29  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_XUP_1     = 30  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_A_DOORBELL_INTERRUPT_MSADI_PIB_PENDING_1 = 31  ;

static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_UNUSED_31_28 = 0   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_UNUSED_31_28_LEN = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ILLEGAL_OPERATION_ATTEMPTED_1 = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_WRITE_FULL_PIB_A_1 = 5   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_READ_EMPTY_PIB_A_1 = 6   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_PIB_A_RAM_PARITY_DETECTED_1 = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ADDRESS_OF_PIB_PARITY_1 = 8   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ADDRESS_OF_PIB_PARITY_1_LEN = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_CLEAR_1 = 15  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_UNUSED_15_12 = 16  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_UNUSED_15_12_LEN = 4   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ILLEGAL_OPERATION_ATTEMPTED_2 = 20  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_WRITE_FULL_PIB_A_2 = 21  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_READ_EMPTY_PIB_A_2 = 22  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_PIB_A_RAM_PARITY_DETECTED_2 = 23  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ADDRESS_OF_PIB_PARITY_2 = 24  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_ADDRESS_OF_PIB_PARITY_2_LEN = 7   ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_ERROR_STATUS_MSBDES_CLEAR_2 = 31  ;

static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_ABORT_MAILBOX_2 = 24  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_ABORT_MAILBOX_1 = 25  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_LBUS_ERROR_2 = 26  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_LBUS_ERROR_1 = 27  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_XDN_2     = 28  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_XDN_1     = 29  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_LBUS_PENDING_2 = 30  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MSBDI_LBUS_PENDING_1 = 31  ;

static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_LBUS_PENDING = 24  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_LBUS_PENDING_2 = 25  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_XDN = 26  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_XDN_2 = 27  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_LBUS_ERROR = 28  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_LBUS_ERROR_2 = 29  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_ABORT = 30  ;
static const uint8_t P9N2_PERV_MAILBOX_SLAVE_B_DOORBELL_INTERRUPT_MASK_1_MSBDIM1_ENABLE_ABORT_2 = 31  ;

static const uint8_t P9N2_PERV_MCAST_COMP_MASK_REG_MULTICAST_COMPARE_REGISTER     = 0   ;
static const uint8_t P9N2_PERV_MCAST_COMP_MASK_REG_MULTICAST_COMPARE_REGISTER_LEN = 64  ;

static const uint8_t P9N2_PERV_MCAST_COMP_REG_MULTICAST_COMPARE_REGISTER          = 0   ;
static const uint8_t P9N2_PERV_MCAST_COMP_REG_MULTICAST_COMPARE_REGISTER_LEN      = 2   ;

static const uint8_t P9N2_PERV_MCAST_COMP_VAL_REG_MULTICAST_COMPARE_VALUE_REGISTER = 0   ;
static const uint8_t P9N2_PERV_MCAST_COMP_VAL_REG_MULTICAST_COMPARE_VALUE_REGISTER_LEN = 64  ;

static const uint8_t P9N2_PERV_MCAST_GRP_0_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_0_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_1_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_1_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_2_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_2_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_3_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_3_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_4_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_4_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_5_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_5_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_MCAST_GRP_6_SLAVES_REG_GROUP                       = 0   ;
static const uint8_t P9N2_PERV_MCAST_GRP_6_SLAVES_REG_GROUP_LEN                   = 6   ;

static const uint8_t P9N2_PERV_1_MODE_REG_IN0                                     = 0   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN1                                     = 1   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN2                                     = 2   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN3                                     = 3   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN4                                     = 4   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN5                                     = 5   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN6                                     = 6   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN7                                     = 7   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN8                                     = 8   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN9                                     = 9   ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN10                                    = 10  ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN11                                    = 11  ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN                                      = 12  ;
static const uint8_t P9N2_PERV_1_MODE_REG_IN_LEN                                  = 4   ;

static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_BIT_RATE_DIVISOR_0          = 0   ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_BIT_RATE_DIVISOR_0_LEN      = 16  ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_PORT_NUMBER_0               = 16  ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_PORT_NUMBER_0_LEN           = 6   ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_FGAT_0                      = 28  ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_DIAG_0                      = 29  ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_PACING_ALLOW_0              = 30  ;
static const uint8_t P9N2_PERV_FSII2C_MODE_REGISTER_A_WRAP_0                      = 31  ;

static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_1_MULTICAST1                     = 3   ;
static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_1_MULTICAST1_LEN                 = 3   ;

static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_2_MULTICAST2                     = 3   ;
static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_2_MULTICAST2_LEN                 = 3   ;

static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_3_MULTICAST3                     = 3   ;
static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_3_MULTICAST3_LEN                 = 3   ;

static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_4_MULTICAST4                     = 3   ;
static const uint8_t P9N2_PERV_1_MULTICAST_GROUP_4_MULTICAST4_LEN                 = 3   ;

static const uint8_t P9N2_PERV_1_NET_CTRL0_CHIPLET_ENABLE                         = 0   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PCB_EP_RESET                           = 1   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_CLK_ASYNC_RESET                        = 2   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PLL_TEST_EN                            = 3   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PLL_RESET                              = 4   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PLL_BYPASS                             = 5   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_VITAL_SCAN                             = 6   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_VITAL_SCAN_IN                          = 7   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_VITAL_PHASE                            = 8   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_FLUSH_ALIGN_OVR                        = 9   ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_VITAL_AL                               = 10  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_ACT_DIS                                = 11  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_MPW1                                   = 12  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_MPW2                                   = 13  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_MPW3                                   = 14  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_DELAY_LCLKR                            = 15  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_VITAL_THOLD                            = 16  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_FLUSH_SCAN_N                           = 17  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_FENCE_EN                               = 18  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_CPLT_RCTRL                             = 19  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_CPLT_DCTRL                             = 20  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_ADJ_FUNC_CLKSEL                        = 22  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_TP_FENCE_PCB                           = 25  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_LVLTRANS_FENCE                         = 26  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_ARRAY_WRITE_ASSIST_EN                  = 27  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_HTB_INTEST                             = 28  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_HTB_EXTEST                             = 29  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PM_ACCESS                              = 30  ;
static const uint8_t P9N2_PERV_1_NET_CTRL0_PLLFORCE_OUT_EN                        = 31  ;

static const uint8_t P9N2_PERV_1_NET_CTRL1_PLL_CLKIN_SEL                          = 0   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_DCC_BYPASS_EN                      = 1   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_PDLY_BYPASS_EN                     = 2   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_DIV_BYPASS_EN                      = 3   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_REFCLK_CLKMUX0_SEL                     = 4   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_REFCLK_CLKMUX1_SEL                     = 5   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_PLL_BNDY_BYPASS_EN                     = 6   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_DPLL_TEST_SEL                          = 8   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_DPLL_TEST_SEL_LEN                      = 8   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_SB_STRENGTH                            = 16  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_SB_STRENGTH_LEN                        = 4   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_ASYNC_TYPE                             = 20  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_ASYNC_OBS                              = 21  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CPM_CAL_SET                            = 22  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_SENSEADJ_RESET0                        = 23  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_SENSEADJ_RESET1                        = 24  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_PULSE_EN                           = 25  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_PULSE_MODE                         = 26  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_CLK_PULSE_MODE_LEN                     = 2   ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_PCB_ACCESS                             = 28  ;
static const uint8_t P9N2_PERV_1_NET_CTRL1_PCB_ACCESS_LEN                         = 4   ;

static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_SRAM_CERRRPT                  = 0   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_SRAM_CERRRPT_LEN              = 10  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_JTAGACC_CERRPT                = 10  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_JTAGACC_CERRPT_LEN            = 6   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_C405_DCU_ECC_UE               = 16  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_C405_DCU_ECC_CE               = 17  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_C405_ICU_ECC_UE               = 18  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_C405_ICU_ECC_CE               = 19  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE0_OCISLV_ERR               = 20  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE0_OCISLV_ERR_LEN           = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE1_OCISLV_ERR               = 28  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE1_OCISLV_ERR_LEN           = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE2_OCISLV_ERR               = 36  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE2_OCISLV_ERR_LEN           = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE3_OCISLV_ERR               = 44  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_GPE3_OCISLV_ERR_LEN           = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_OCB_OCISLV_ERR                = 52  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCERRRPT_OCB_OCISLV_ERR_LEN            = 6   ;

static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_FW0                             = 0   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_FW1                             = 1   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_CME_ERROR_NOTIFY                = 2   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_STOP_RECOVERY_NOTIFY_PRD        = 3   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_HB_ERROR                        = 4   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE0_WATCHDOG_TIMEOUT           = 5   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE1_WATCHDOG_TIMEOUT           = 6   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE2_WATCHDOG_TIMEOUT           = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE3_WATCHDOG_TIMEOUT           = 8   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE0_ERROR                      = 9   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE1_ERROR                      = 10  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE2_ERROR                      = 11  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE3_ERROR                      = 12  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_ERROR                       = 13  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_UE                          = 14  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_CE                          = 15  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_READ_ERROR                  = 16  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_WRITE_ERROR                 = 17  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_DATAOUT_PERR                = 18  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_OCI_WRITE_DATA_PARITY       = 19  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_OCI_BE_PARITY_ERR           = 20  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_OCI_ADDR_PARITY_ERR         = 21  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE0_HALTED                     = 22  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE1_HALTED                     = 23  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE2_HALTED                     = 24  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE3_HALTED                     = 25  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_EXTERNAL_TRAP                   = 26  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_PPC405_CORE_RESET               = 27  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_PPC405_CHIP_RESET               = 28  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_PPC405_SYSTEM_RESET             = 29  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_PPC405_DBGMSRWE                 = 30  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_PPC405_DBGSTOPACK               = 31  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_DB_OCI_TIMEOUT              = 32  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_DB_OCI_READ_DATA_PARITY     = 33  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_DB_OCI_SLAVE_ERROR          = 34  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_PIB_ADDR_PARITY_ERR         = 35  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_DB_PIB_DATA_PARITY_ERR      = 36  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_IDC0_ERROR                  = 37  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_IDC1_ERROR                  = 38  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_IDC2_ERROR                  = 39  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_OCB_IDC3_ERROR                  = 40  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRT_FSM_ERR                     = 41  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_JTAGACC_ERR                     = 42  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SPARE_ERR_38                    = 43  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_C405_ECC_UE                     = 44  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_C405_ECC_CE                     = 45  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_C405_OCI_MACHINECHECK           = 46  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRAM_SPARE_DIRECT_ERROR0        = 47  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRAM_SPARE_DIRECT_ERROR1        = 48  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRAM_SPARE_DIRECT_ERROR2        = 49  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SRAM_SPARE_DIRECT_ERROR3        = 50  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE0_OCISLV_ERR                 = 51  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE1_OCISLV_ERR                 = 52  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE2_OCISLV_ERR                 = 53  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_GPE3_OCISLV_ERR                 = 54  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_C405ICU_M_TIMEOUT               = 55  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_C405DCU_M_TIMEOUT               = 56  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_COMPLEX_FAULT                   = 57  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_COMPLEX_NOTIFY                  = 58  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SPARE_59_61                     = 59  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_SPARE_59_61_LEN                 = 3   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_FIR_PARITY_ERR_DUP              = 62  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIR_FIR_PARITY_ERR                  = 63  ;

static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRACT0_FIR_ACTION0                 = 0   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRACT0_FIR_ACTION0_LEN             = 64  ;

static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRACT1_FIR_ACTION1                 = 0   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRACT1_FIR_ACTION1_LEN             = 64  ;

static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_FW0_MASK                    = 0   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_FW1_MASK                    = 1   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SPARE_2_MASK                = 2   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SPARE_3_MASK                = 3   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_HB_MALF_MASK                = 4   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE0_WATCHDOG_TIMEOUT_MASK  = 5   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE1_WATCHDOG_TIMEOUT_MASK  = 6   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE2_WATCHDOG_TIMEOUT_MASK  = 7   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE3_WATCHDOG_TIMEOUT_MASK  = 8   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE0_ERROR_MASK             = 9   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE1_ERROR_MASK             = 10  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE2_ERROR_MASK             = 11  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE3_ERROR_MASK             = 12  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_ERROR_MASK              = 13  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_UE_MASK                 = 14  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_CE_MASK                 = 15  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_READ_ERROR_MASK         = 16  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_WRITE_ERROR_MASK        = 17  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_DATAOUT_PERR_MASK       = 18  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_OCI_WRITE_DATA_PARITY_MASK = 19  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_OCI_BE_PARITY_ERR_MASK  = 20  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_OCI_ADDR_PARITY_ERR_MASK = 21  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE0_HALTED_MASK            = 22  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE1_HALTED_MASK            = 23  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE2_HALTED_MASK            = 24  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE3_HALTED_MASK            = 25  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_EXTERNAL_TRAP_MASK          = 26  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_PPC405_CORE_RESET_MASK      = 27  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_PPC405_CHIP_RESET_MASK      = 28  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_PPC405_SYSTEM_RESET_MASK    = 29  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_PPC405_DBGMSRWE_MASK        = 30  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_PPC405_DBGSTOPACK_MASK      = 31  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_DB_OCI_TIMEOUT_MASK     = 32  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_DB_OCI_READ_DATA_PARITY_MASK = 33  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_DB_OCI_SLAVE_ERROR_MASK = 34  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_PIB_ADDR_PARITY_ERR_MASK = 35  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_DB_PIB_DATA_PARITY_ERR_MASK = 36  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_IDC0_ERROR_MASK         = 37  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_IDC1_ERROR_MASK         = 38  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_IDC2_ERROR_MASK         = 39  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_OCB_IDC3_ERROR_MASK         = 40  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRT_FSM_ERR_MASK            = 41  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_JTAGACC_ERR_MASK            = 42  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SPARE_ERR_38_MASK           = 43  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_C405_ECC_UE_MASK            = 44  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_C405_ECC_CE_MASK            = 45  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_C405_OCI_MACHINECHECK_MASK  = 46  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRAM_SPARE_DIRECT_ERROR0_MASK = 47  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRAM_SPARE_DIRECT_ERROR1_MASK = 48  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRAM_SPARE_DIRECT_ERROR2_MASK = 49  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SRAM_SPARE_DIRECT_ERROR3_MASK = 50  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE0_OCISLV_ERR_MASK        = 51  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE1_OCISLV_ERR_MASK        = 52  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE2_OCISLV_ERR_MASK        = 53  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_GPE3_OCISLV_ERR_MASK        = 54  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_C405ICU_M_TIMEOUT_MASK      = 55  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_C405DCU_M_TIMEOUT_MASK      = 56  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_COMPLEX_FAULT_MASK          = 57  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_COMPLEX_NOTIFY_MASK         = 58  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SPARE_59_61                 = 59  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_SPARE_59_61_LEN             = 3   ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_FIR_PARITY_ERR_DUP_MASK     = 62  ;
static const uint8_t P9N2_PERV_1_OCC_SCOM_OCCLFIRMASK_FIR_PARITY_ERR_MASK         = 63  ;

static const uint8_t P9N2_PERV_1_OPCG_ALIGN_INOP                                  = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_INOP_LEN                              = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SNOP                                  = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SNOP_LEN                              = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_ENOP                                  = 8   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_ENOP_LEN                              = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_INOP_WAIT                             = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_INOP_WAIT_LEN                         = 8   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SNOP_WAIT                             = 20  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SNOP_WAIT_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_ENOP_WAIT                             = 32  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_ENOP_WAIT_LEN                         = 8   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_INOP_FORCE_SG                         = 40  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SNOP_FORCE_SG                         = 41  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_ENOP_FORCE_SG                         = 42  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_NO_WAIT_ON_CLK_CMD                    = 43  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SOURCE_SELECT                         = 44  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SOURCE_SELECT_LEN                     = 2   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_UNUSED46                              = 46  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SCAN_RATIO                            = 47  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_SCAN_RATIO_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_WAIT_CYCLES                           = 52  ;
static const uint8_t P9N2_PERV_1_OPCG_ALIGN_WAIT_CYCLES_LEN                       = 12  ;

static const uint8_t P9N2_PERV_1_OPCG_CAPT1_COUNT                                 = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_COUNT_LEN                             = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_01                                = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_01_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_02                                = 9   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_02_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_03                                = 14  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_03_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_04                                = 19  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_04_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_05                                = 24  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_05_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_06                                = 29  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_06_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_07                                = 34  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_07_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_08                                = 39  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_08_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_09                                = 44  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_09_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_10                                = 49  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_10_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_11                                = 54  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_11_LEN                            = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_12                                = 59  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT1_SEQ_12_LEN                            = 5   ;

static const uint8_t P9N2_PERV_1_OPCG_CAPT2_UNUSED                                = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_UNUSED_LEN                            = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_13_01EVEN                         = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_13_01EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_14_01ODD                          = 9   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_14_01ODD_LEN                      = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_15_02EVEN                         = 14  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_15_02EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_16_02ODD                          = 19  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_16_02ODD_LEN                      = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_17_03EVEN                         = 24  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_17_03EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_18_03ODD                          = 29  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_18_03ODD_LEN                      = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_19_04EVEN                         = 34  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_19_04EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_20_04ODD                          = 39  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_20_04ODD_LEN                      = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_21_05EVEN                         = 44  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_21_05EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_22_05ODD                          = 49  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_22_05ODD_LEN                      = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_23_06EVEN                         = 54  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_23_06EVEN_LEN                     = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_24_06ODD                          = 59  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT2_SEQ_24_06ODD_LEN                      = 5   ;

static const uint8_t P9N2_PERV_1_OPCG_CAPT3_UNUSED                                = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_UNUSED_LEN                            = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_07EVEN                            = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_07EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_07ODD                             = 9   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_07ODD_LEN                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_08EVEN                            = 14  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_08EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_08ODD                             = 19  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_08ODD_LEN                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_09EVEN                            = 24  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_09EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_09ODD                             = 29  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_09ODD_LEN                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_10EVEN                            = 34  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_10EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_10ODD                             = 39  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_10ODD_LEN                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_11EVEN                            = 44  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_11EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_11ODD                             = 49  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_11ODD_LEN                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_12EVEN                            = 54  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_12EVEN_LEN                        = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_12ODD                             = 59  ;
static const uint8_t P9N2_PERV_1_OPCG_CAPT3_SEQ_12ODD_LEN                         = 5   ;

static const uint8_t P9N2_PERV_1_OPCG_REG0_RUNN_MODE                              = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_GO                                     = 1   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_RUN_SCAN0                              = 2   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_SCAN0_MODE                             = 3   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_IN_SLAVE_MODE                          = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_IN_MASTER_MODE                         = 5   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_KEEP_MS_MODE                           = 6   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_TRIGGER_ON_UNIT0_SYNC_LVL              = 7   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_TRIGGER_ON_UNIT1_SYNC_LVL              = 8   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_RUN_CHIPLET_SCAN0                      = 9   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_RUN_CHIPLET_SCAN0_NO_PLL               = 10  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_RUN_ON_UPDATE_DR                       = 11  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_RUN_ON_CAPTURE_DR                      = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_STOP_RUNN_ON_XSTOP                     = 13  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_STARTS_BIST                            = 14  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_UNUSED1520                             = 15  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_UNUSED1520_LEN                         = 6   ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_LOOP_COUNT                             = 21  ;
static const uint8_t P9N2_PERV_1_OPCG_REG0_LOOP_COUNT_LEN                         = 43  ;

static const uint8_t P9N2_PERV_1_OPCG_REG1_SCAN_COUNT                             = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_SCAN_COUNT_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_A_VAL                             = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_A_VAL_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_B_VAL                             = 24  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_B_VAL_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_INIT_WAIT                         = 36  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_INIT_WAIT_LEN                     = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_SUPPRESS_LAST_RUNN_CLK                 = 48  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_SCAN_CLK_USE_EVEN                      = 49  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_UNUSED2                                = 50  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_UNUSED2_LEN                            = 2   ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_RTIM_THOLD_FORCE                       = 52  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_DISABLE_ARY_CLK_DURING_FILL            = 53  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_SG_HIGH_DURING_FILL                    = 54  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_LBIST_SKITTER_CTL                      = 55  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_LBIST_SKITTER_CTL_LEN                  = 2   ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_MISR_MODE                              = 57  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_INFINITE_MODE                          = 58  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_NSL_FILL_COUNT                         = 59  ;
static const uint8_t P9N2_PERV_1_OPCG_REG1_NSL_FILL_COUNT_LEN                     = 5   ;

static const uint8_t P9N2_PERV_1_OPCG_REG2_GO2                                    = 0   ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_WEIGHTING                         = 1   ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_WEIGHTING_LEN                     = 3   ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_VALUE                             = 4   ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_VALUE_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_A_VAL                             = 16  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_A_VAL_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_B_VAL                             = 28  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_B_VAL_LEN                         = 12  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_PRPG_MODE                              = 40  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_UNUSED41_63                            = 41  ;
static const uint8_t P9N2_PERV_1_OPCG_REG2_UNUSED41_63_LEN                        = 23  ;

static const uint8_t P9N2_PERV_1_OSCERR_HOLD_CP                                   = 0   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_CP_LEN                               = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_MEM                                  = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_MEM_LEN                              = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_GX                                   = 8   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_GX_LEN                               = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_CPLITE                               = 12  ;
static const uint8_t P9N2_PERV_1_OSCERR_HOLD_CPLITE_LEN                           = 4   ;

static const uint8_t P9N2_PERV_1_OSCERR_MASK_CP                                   = 0   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_CP_LEN                               = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_MEM                                  = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_MEM_LEN                              = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_GX                                   = 8   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_GX_LEN                               = 4   ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_CPLITE                               = 12  ;
static const uint8_t P9N2_PERV_1_OSCERR_MASK_CPLITE_LEN                           = 4   ;

static const uint8_t P9N2_PERV_1_OSCERR_MCODE_IN                                  = 0   ;
static const uint8_t P9N2_PERV_1_OSCERR_MCODE_IN_LEN                              = 4   ;

static const uint8_t P9N2_PERV_1_PCB_OPCG_GO_OPCGGO                               = 0   ;

static const uint8_t P9N2_PERV_1_PCB_OPCG_STOP_OPCGSTOP                           = 0   ;

static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_ACTUAL_ERROR                   = 4   ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_ACTUAL_ERROR_LEN               = 4   ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_0_ENABLE                  = 8   ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_1_ENABLE                  = 12  ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_2_ENABLE                  = 16  ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_3_ENABLE                  = 20  ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_4_ENABLE                  = 24  ;
static const uint8_t P9N2_PERV_PEEK4A0_FSI_A_MST_0_PORT_5_ENABLE                  = 28  ;

static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_0_PORT_6_ENABLE                  = 0   ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_0_PORT_7_ENABLE                  = 4   ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_ACTUAL_ERROR                   = 8   ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_ACTUAL_ERROR_LEN               = 4   ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_PORT_0_ENABLE                  = 12  ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_PORT_1_ENABLE                  = 16  ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_PORT_2_ENABLE                  = 20  ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_PORT_3_ENABLE                  = 24  ;
static const uint8_t P9N2_PERV_PEEK4A4_FSI_A_MST_1_PORT_4_ENABLE                  = 28  ;

static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_ACTUAL_ERROR                   = 4   ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_ACTUAL_ERROR_LEN               = 4   ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_0_ENABLE                  = 8   ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_1_ENABLE                  = 12  ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_2_ENABLE                  = 16  ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_3_ENABLE                  = 20  ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_4_ENABLE                  = 24  ;
static const uint8_t P9N2_PERV_PEEK4A8_FSI_B_MST_0_PORT_5_ENABLE                  = 28  ;

static const uint8_t P9N2_PERV_PEEK4AC_FSI_B_MST_0_PORT_6_ENABLE                  = 0   ;
static const uint8_t P9N2_PERV_PEEK4AC_FSI_B_MST_0_PORT_7_ENABLE                  = 4   ;

static const uint8_t P9N2_PERV_PERV_CTRL0_TP_CHIPLET_EN_DC                        = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_PCB_EP_RESET_DC                      = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_2_RESERVED                              = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_PLL_TEST_EN_DC                       = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_PLLRST_DC                            = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_PLLBYP_DC                            = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_SCAN_CLK_DC                     = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_SCIN_DC                         = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_8_RESERVED                              = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_FLUSH_ALIGN_OVERWRITE                = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_ARRAY_WRITE_ASSIST_EN_DC             = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_ACT_DIS_DC                      = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_MPW1_DC_N                       = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_MPW2_DC_N                       = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_MPW3_DC_N                       = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_DELAY_LCLKR_DC                  = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_VITL_CLKOFF_DC                       = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_FLUSH_SCAN_DC_N                      = 17  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_FENCE_EN_DC                          = 18  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_RI_DC_N                              = 19  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_DI1_DC_N                             = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_DI2_DC_N                             = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_22_RESERVED                             = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_OTP_SCOM_FUSED_CORE_MODE             = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_TCPERV_SRAM_ENABLE_DC                = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_FENCE_PCB_DC                         = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_LVLTRANS_FENCE_DC                    = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_EDRAM_ENABLE_DC                      = 27  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_I2CM_MVPD0_PROTECT                   = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_I2CM_MVPD1_PROTECT                   = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_EX_SINGLE_LPAR_EN_DC                 = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_TP_PLLCHIPLET_FORCE_OUT_EN_DC           = 31  ;

static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_CHIPLET_EN_DC                  = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_PCB_EP_RESET_DC                = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_2_RESERVED                        = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_PLL_TEST_EN_DC                 = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_PLLRST_DC                      = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_PLLBYP_DC                      = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_SCAN_CLK_DC               = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_SCIN_DC                   = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_8_RESERVED                        = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_FLUSH_ALIGN_OVERWRITE          = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_ARRAY_WRITE_ASSIST_EN_DC       = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_ACT_DIS_DC                = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_MPW1_DC_N                 = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_MPW2_DC_N                 = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_MPW3_DC_N                 = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_DELAY_LCLKR_DC            = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_VITL_CLKOFF_DC                 = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_FLUSH_SCAN_DC_N                = 17  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_FENCE_EN_DC                    = 18  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_RI_DC_N                        = 19  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_DI1_DC_N                       = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_DI2_DC_N                       = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_22_RESERVED                       = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_OTP_SCOM_FUSED_CORE_MODE       = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_TCPERV_SRAM_ENABLE_DC          = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_FENCE_PCB_DC                   = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_LVLTRANS_FENCE_DC              = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_EDRAM_ENABLE_DC                = 27  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_I2CM_MVPD0_PROTECT             = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_I2CM_MVPD1_PROTECT             = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_EX_SINGLE_LPAR_EN_DC           = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_CLEAR_TP_PLLCHIPLET_FORCE_OUT_EN_DC     = 31  ;

static const uint8_t P9N2_PERV_PERV_CTRL0_COPY_PERV_CTRL0_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_COPY_PERV_CTRL0_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_CHIPLET_EN_DC                    = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_PCB_EP_RESET_DC                  = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_2_RESERVED                          = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_PLL_TEST_EN_DC                   = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_PLLRST_DC                        = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_PLLBYP_DC                        = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_SCAN_CLK_DC                 = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_SCIN_DC                     = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_8_RESERVED                          = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_FLUSH_ALIGN_OVERWRITE            = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_ARRAY_WRITE_ASSIST_EN_DC         = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_ACT_DIS_DC                  = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_MPW1_DC_N                   = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_MPW2_DC_N                   = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_MPW3_DC_N                   = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_DELAY_LCLKR_DC              = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_VITL_CLKOFF_DC                   = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_FLUSH_SCAN_DC_N                  = 17  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_FENCE_EN_DC                      = 18  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_RI_DC_N                          = 19  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_DI1_DC_N                         = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_DI2_DC_N                         = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_22_RESERVED                         = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_OTP_SCOM_FUSED_CORE_MODE         = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_TCPERV_SRAM_ENABLE_DC            = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_FENCE_PCB_DC                     = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_LVLTRANS_FENCE_DC                = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_EDRAM_ENABLE_DC                  = 27  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_I2CM_MVPD0_PROTECT               = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_I2CM_MVPD1_PROTECT               = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_EX_SINGLE_LPAR_EN_DC             = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL0_SET_TP_PLLCHIPLET_FORCE_OUT_EN_DC       = 31  ;

static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CHIPLET_PLL_CLKIN_SEL_DC             = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CHIPLET_CLK_DCCDIV_BYPASS_EN_DC      = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CHIPLET_CLK_PROGDLY_BYPASS_EN_DC     = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_3_RESERVED                              = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_4_RESERVED                              = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_5_RESERVED                              = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_6_RESERVED                              = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_7_RESERVED                              = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_8_RESERVED                              = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_9_RESERVED                              = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_10_RESERVED                             = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_11_RESERVED                             = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_12_RESERVED                             = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_13_RESERVED                             = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_14_RESERVED                             = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_15_RESERVED                             = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_SEC_BUF_DRV_STRENGTH_DC              = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_SEC_BUF_DRV_STRENGTH_DC_LEN          = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_20_RESERVED                             = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_21_RESERVED                             = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_22_RESERVED                             = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_23_RESERVED                             = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_24_RESERVED                             = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CLK_PULSE_ENABLE_DC                  = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CLK_PULSE_MODE_DC                    = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CLK_PULSE_MODE_DC_LEN                = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_RESCLK_DIS_DC                        = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_CPM_CAL_SET                          = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_30_RESERVED                             = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_TP_PCB_PM_MUX_SEL_DC                    = 31  ;

static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CHIPLET_PLL_CLKIN_SEL_DC       = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CHIPLET_CLK_DCCDIV_BYPASS_EN_DC = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CHIPLET_CLK_PROGDLY_BYPASS_EN_DC = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_3_RESERVED                        = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_4_RESERVED                        = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_5_RESERVED                        = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_6_RESERVED                        = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_7_RESERVED                        = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_8_RESERVED                        = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_9_RESERVED                        = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_10_RESERVED                       = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_11_RESERVED                       = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_12_RESERVED                       = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_13_RESERVED                       = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_14_RESERVED                       = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_15_RESERVED                       = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_SEC_BUF_DRV_STRENGTH_DC        = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_SEC_BUF_DRV_STRENGTH_DC_LEN    = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_20_RESERVED                       = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_21_RESERVED                       = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_22_RESERVED                       = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_23_RESERVED                       = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_24_RESERVED                       = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CLK_PULSE_ENABLE_DC            = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CLK_PULSE_MODE_DC              = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CLK_PULSE_MODE_DC_LEN          = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_RESCLK_DIS_DC                  = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_CPM_CAL_SET                    = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_30_RESERVED                       = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_CLEAR_TP_PCB_PM_MUX_SEL_DC              = 31  ;

static const uint8_t P9N2_PERV_PERV_CTRL1_COPY_PERV_CTRL1_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_COPY_PERV_CTRL1_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CHIPLET_PLL_CLKIN_SEL_DC         = 0   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CHIPLET_CLK_DCCDIV_BYPASS_EN_DC  = 1   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CHIPLET_CLK_PROGDLY_BYPASS_EN_DC = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_3_RESERVED                          = 3   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_4_RESERVED                          = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_5_RESERVED                          = 5   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_6_RESERVED                          = 6   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_7_RESERVED                          = 7   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_8_RESERVED                          = 8   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_9_RESERVED                          = 9   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_10_RESERVED                         = 10  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_11_RESERVED                         = 11  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_12_RESERVED                         = 12  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_13_RESERVED                         = 13  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_14_RESERVED                         = 14  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_15_RESERVED                         = 15  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_SEC_BUF_DRV_STRENGTH_DC          = 16  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_SEC_BUF_DRV_STRENGTH_DC_LEN      = 4   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_20_RESERVED                         = 20  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_21_RESERVED                         = 21  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_22_RESERVED                         = 22  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_23_RESERVED                         = 23  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_24_RESERVED                         = 24  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CLK_PULSE_ENABLE_DC              = 25  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CLK_PULSE_MODE_DC                = 26  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CLK_PULSE_MODE_DC_LEN            = 2   ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_RESCLK_DIS_DC                    = 28  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_CPM_CAL                          = 29  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_30_RESERVED                         = 30  ;
static const uint8_t P9N2_PERV_PERV_CTRL1_SET_TP_PCB_PM_MUX_SEL_DC                = 31  ;

static const uint8_t P9N2_PERV_1_PLL_LOCK_REG_LOCK                                = 0   ;
static const uint8_t P9N2_PERV_1_PLL_LOCK_REG_LOCK_LEN                            = 4   ;

static const uint8_t P9N2_PERV_1_PRE_COUNTER_REG_COUNTER                          = 0   ;
static const uint8_t P9N2_PERV_1_PRE_COUNTER_REG_COUNTER_LEN                      = 8   ;

static const uint8_t P9N2_PERV_1_PRIMARY_ADDRESS_REG_PRIMARY_ADDRESS              = 0   ;
static const uint8_t P9N2_PERV_1_PRIMARY_ADDRESS_REG_PRIMARY_ADDRESS_LEN          = 6   ;

static const uint8_t P9N2_PERV_1_PROTECT_MODE_REG_READ_ENABLE                     = 0   ;
static const uint8_t P9N2_PERV_1_PROTECT_MODE_REG_WRITE_ENABLE                    = 1   ;

static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PCB_WDATA_PARITY                = 0   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PCB_ADDRESS_PARITY              = 1   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_DL_RETURN_WDATA_PARITY          = 2   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_DL_RETURN_P0                    = 3   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_UL_RDATA_PARITY                 = 4   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_UL_P0                           = 5   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PARITY_ON_INTERFACE_MACHINE     = 6   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PARITY_ON_P2S_MACHINE           = 7   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_TIMEOUT_WHILE_WAITING_FOR_ULCCH = 8   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_TIMEOUT_WHILE_WAITING_FOR_DLDCH_RETURN = 9   ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_TIMEOUT_WHILE_WAITING_FOR_ULDCH = 10  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PARALLEL_WRITE_NVLD             = 11  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PARALLEL_READ_NVLD              = 12  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PARALLEL_ADDR_INVALID           = 13  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_PCB_COMMAND_PARITY              = 14  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_GENERAL_TIMEOUT                 = 15  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_SATELLITE_ACKNOWLEDGE_ACCESS_VIOLATION = 16  ;
static const uint8_t P9N2_PERV_1_PSCOM_ERROR_MASK_SATELLITE_ACKNOWLEDGE_INVALID_REGISTER = 17  ;

static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_ABORT_ON_PCB_ADDR_PARITY_ERROR    = 0   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_ABORT_ON_PCB_WDATA_PARITY_ERROR   = 1   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_UNUSED_BIT_2                      = 2   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_ABORT_ON_DL_RETURN_WDATA_PARITY_ERROR = 3   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_WATCHDOG_ENABLE                   = 4   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_SCOM_HANG_LIMIT                   = 5   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_SCOM_HANG_LIMIT_LEN               = 2   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_FORCE_ALL_RINGS                   = 7   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_FSM_SELFRESET_ON_STATEVEC_PARITYERROR_ENABLE = 8   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_RESERVED_LT                       = 9   ;
static const uint8_t P9N2_PERV_1_PSCOM_MODE_REG_RESERVED_LT_LEN                   = 3   ;

static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PCB_WDATA_PARITY = 0   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PCB_ADDRESS_PARITY = 1   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_DL_RETURN_WDATA_PARITY = 2   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_DL_RETURN_P0  = 3   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_UL_RDATA_PARITY = 4   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_UL_P0         = 5   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PARITY_ON_INTERFACE_MACHINE = 6   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PARITY_ON_P2S_MACHINE = 7   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_TIMEOUT_WHILE_WAITING_FOR_ULCCH = 8   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_TIMEOUT_WHILE_WAITING_FOR_DLDCH_RETURN = 9   ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_TIMEOUT_WHILE_WAITING_FOR_ULDCH = 10  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PARALLEL_WRITE_NVLD = 11  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PARALLEL_READ_NVLD = 12  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PARALLEL_ADDR_INVALID = 13  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_PCB_COMMAND_PARITY = 14  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_GENERAL_TIMEOUT = 15  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_SATELLITE_ACKNOWLEDGE_ACCESS_VIOLATION = 16  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_ACCUMULATED_SATELLITE_ACKNOWLEDGE_INVALID_REGISTER = 17  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PCB_WDATA_PARITY  = 18  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PCB_ADDRESS_PARITY = 19  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_DL_RETURN_WDATA_PARITY = 20  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_DL_RETURN_P0      = 21  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_UL_RDATA_PARITY   = 22  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_UL_P0             = 23  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PARITY_ON_INTERFACE_MACHINE = 24  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PARITY_ON_P2S_MACHINE = 25  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_TIMEOUT_WHILE_WAITING_FOR_ULCCH = 26  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_TIMEOUT_WHILE_WAITING_FOR_DLDCH_RETURN = 27  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_TIMEOUT_WHILE_WAITING_FOR_ULDCH = 28  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PARALLEL_WRITE_NVLD = 29  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PARALLEL_READ_NVLD = 30  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PARALLEL_ADDR_INVALID = 31  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_PCB_COMMAND_PARITY = 32  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_GENERAL_TIMEOUT   = 33  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_SATELLITE_ACKNOWLEDGE_ACCESS_VIOLATION = 34  ;
static const uint8_t P9N2_PERV_1_PSCOM_STATUS_ERROR_REG_TRAPPED_SATELLITE_ACKNOWLEDGE_INVALID_REGISTER = 35  ;

static const uint8_t P9N2_PERV_FSISHIFT_READ_BUFFER_REG                           = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_READ_BUFFER_REG_LEN                       = 32  ;

static const uint8_t P9N2_PERV_1_RECOV_INTERRUPT_REG_RECOV                        = 0   ;

static const uint8_t P9N2_PERV_REC_ACK_REG_RECEIVE_ACKNOWLEDGE_REGISTER           = 0   ;
static const uint8_t P9N2_PERV_REC_ACK_REG_RECEIVE_ACKNOWLEDGE_REGISTER_LEN       = 64  ;

static const uint8_t P9N2_PERV_REC_ERR_REG0_MASTER_RESPONSE_BIT                   = 0   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_MASTER_ERROR_CODE                     = 1   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_MASTER_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE1_RESPONSE_BIT                   = 4   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE1_ERROR_CODE                     = 5   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE1_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE2_RESPONSE_BIT                   = 8   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE2_ERROR_CODE                     = 9   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE2_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE3_RESPONSE_BIT                   = 12  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE3_ERROR_CODE                     = 13  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE3_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE4_RESPONSE_BIT                   = 16  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE4_ERROR_CODE                     = 17  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE4_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE5_RESPONSE_BIT                   = 20  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE5_ERROR_CODE                     = 21  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE5_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE6_RESPONSE_BIT                   = 24  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE6_ERROR_CODE                     = 25  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE6_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE7_RESPONSE_BIT                   = 28  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE7_ERROR_CODE                     = 29  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE7_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE8_RESPONSE_BIT                   = 32  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE8_ERROR_CODE                     = 33  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE8_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE9_RESPONSE_BIT                   = 36  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE9_ERROR_CODE                     = 37  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE9_ERROR_CODE_LEN                 = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE10_RESPONSE_BIT                  = 40  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE10_ERROR_CODE                    = 41  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE10_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE11_RESPONSE_BIT                  = 44  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE11_ERROR_CODE                    = 45  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE11_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE12_RESPONSE_BIT                  = 48  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE12_ERROR_CODE                    = 49  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE12_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE13_RESPONSE_BIT                  = 52  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE13_ERROR_CODE                    = 53  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE13_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE14_RESPONSE_BIT                  = 56  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE14_ERROR_CODE                    = 57  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE14_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE15_RESPONSE_BIT                  = 60  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE15_ERROR_CODE                    = 61  ;
static const uint8_t P9N2_PERV_REC_ERR_REG0_SLAVE15_ERROR_CODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE16_RESPONSE_BIT                  = 0   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE16_ERROR_CODE                    = 1   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE16_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE17_RESPONSE_BIT                  = 4   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE17_ERROR_CODE                    = 5   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE17_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE18_RESPONSE_BIT                  = 8   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE18_ERROR_CODE                    = 9   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE18_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE19_RESPONSE_BIT                  = 12  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE19_ERROR_CODE                    = 13  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE19_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE20_RESPONSE_BIT                  = 16  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE20_ERROR_CODE                    = 17  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE20_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE21_RESPONSE_BIT                  = 20  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE21_ERROR_CODE                    = 21  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE21_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE22_RESPONSE_BIT                  = 24  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE22_ERROR_CODE                    = 25  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE22_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE23_RESPONSE_BIT                  = 28  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE23_ERROR_CODE                    = 29  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE23_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE24_RESPONSE_BIT                  = 32  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE24_ERROR_CODE                    = 33  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE24_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE25_RESPONSE_BIT                  = 36  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE25_ERROR_CODE                    = 37  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE25_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE26_RESPONSE_BIT                  = 40  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE26_ERROR_CODE                    = 41  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE26_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE27_RESPONSE_BIT                  = 44  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE27_ERROR_CODE                    = 45  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE27_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE28_RESPONSE_BIT                  = 48  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE28_ERROR_CODE                    = 49  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE28_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE29_RESPONSE_BIT                  = 52  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE29_ERROR_CODE                    = 53  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE29_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE30_RESPONSE_BIT                  = 56  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE30_ERROR_CODE                    = 57  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE30_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE31_RESPONSE_BIT                  = 60  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE31_ERROR_CODE                    = 61  ;
static const uint8_t P9N2_PERV_REC_ERR_REG1_SLAVE31_ERROR_CODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE32_RESPONSE_BIT                  = 0   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE32_ERROR_CODE                    = 1   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE32_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE33_RESPONSE_BIT                  = 4   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE33_ERROR_CODE                    = 5   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE33_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE34_RESPONSE_BIT                  = 8   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE34_ERROR_CODE                    = 9   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE34_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE35_RESPONSE_BIT                  = 12  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE35_ERROR_CODE                    = 13  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE35_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE36_RESPONSE_BIT                  = 16  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE36_ERROR_CODE                    = 17  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE36_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE37_RESPONSE_BIT                  = 20  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE37_ERROR_CODE                    = 21  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE37_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE38_RESPONSE_BIT                  = 24  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE38_ERROR_CODE                    = 25  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE38_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE39_RESPONSE_BIT                  = 28  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE39_ERROR_CODE                    = 29  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE39_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE40_RESPONSE_BIT                  = 32  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE40_ERROR_CODE                    = 33  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE40_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE41_RESPONSE_BIT                  = 36  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE41_ERROR_CODE                    = 37  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE41_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE42_RESPONSE_BIT                  = 40  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE42_ERROR_CODE                    = 41  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE42_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE43_RESPONSE_BIT                  = 44  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE43_ERROR_CODE                    = 45  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE43_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE44_RESPONSE_BIT                  = 48  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE44_ERROR_CODE                    = 49  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE44_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE45_RESPONSE_BIT                  = 52  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE45_ERROR_CODE                    = 53  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE45_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE46_RESPONSE_BIT                  = 56  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE46_ERROR_CODE                    = 57  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE46_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE47_RESPONSE_BIT                  = 60  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE47_ERROR_CODE                    = 61  ;
static const uint8_t P9N2_PERV_REC_ERR_REG2_SLAVE47_ERROR_CODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE48_RESPONSE_BIT                  = 0   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE48_ERROR_CODE                    = 1   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE48_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE49_RESPONSE_BIT                  = 4   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE49_ERROR_CODE                    = 5   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE49_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE50_RESPONSE_BIT                  = 8   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE50_ERROR_CODE                    = 9   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE50_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE51_RESPONSE_BIT                  = 12  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE51_ERROR_CODE                    = 13  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE51_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE52_RESPONSE_BIT                  = 16  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE52_ERROR_CODE                    = 17  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE52_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE53_RESPONSE_BIT                  = 20  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE53_ERROR_CODE                    = 21  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE53_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE54_RESPONSE_BIT                  = 24  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE54_ERROR_CODE                    = 25  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE54_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE55_RESPONSE_BIT                  = 28  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE55_ERROR_CODE                    = 29  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE55_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE56_RESPONSE_BIT                  = 32  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE56_ERROR_CODE                    = 33  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE56_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE57_RESPONSE_BIT                  = 36  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE57_ERROR_CODE                    = 37  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE57_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE58_RESPONSE_BIT                  = 40  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE58_ERROR_CODE                    = 41  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE58_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE59_RESPONSE_BIT                  = 44  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE59_ERROR_CODE                    = 45  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE59_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE60_RESPONSE_BIT                  = 48  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE60_ERROR_CODE                    = 49  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE60_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE61_RESPONSE_BIT                  = 52  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE61_ERROR_CODE                    = 53  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE61_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE62_RESPONSE_BIT                  = 56  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE62_ERROR_CODE                    = 57  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE62_ERROR_CODE_LEN                = 3   ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE63_RESPONSE_BIT                  = 60  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE63_ERROR_CODE                    = 61  ;
static const uint8_t P9N2_PERV_REC_ERR_REG3_SLAVE63_ERROR_CODE_LEN                = 3   ;

static const uint8_t P9N2_PERV_RESET_REG_PCB                                      = 0   ;
static const uint8_t P9N2_PERV_RESET_REG_ENDPOINTS                                = 1   ;
static const uint8_t P9N2_PERV_RESET_REG_TIMEOUT_EN                               = 2   ;

static const uint8_t P9N2_PERV_FSII2C_RESIDUAL_FRONT_END_BACK_END_LENGTH_A_RESID_FE_LEN_0 = 0   ;
static const uint8_t P9N2_PERV_FSII2C_RESIDUAL_FRONT_END_BACK_END_LENGTH_A_RESID_FE_LEN_0_LEN = 16  ;

static const uint8_t P9N2_PERV_1_RFIR_IN0                                         = 0   ;
static const uint8_t P9N2_PERV_1_RFIR_LFIR_RECOV_ERR                              = 1   ;
static const uint8_t P9N2_PERV_1_RFIR_IN4                                         = 2   ;
static const uint8_t P9N2_PERV_1_RFIR_IN5                                         = 3   ;
static const uint8_t P9N2_PERV_1_RFIR_IN6                                         = 4   ;
static const uint8_t P9N2_PERV_1_RFIR_IN7                                         = 5   ;
static const uint8_t P9N2_PERV_1_RFIR_IN8                                         = 6   ;
static const uint8_t P9N2_PERV_1_RFIR_IN9                                         = 7   ;
static const uint8_t P9N2_PERV_1_RFIR_IN10                                        = 8   ;
static const uint8_t P9N2_PERV_1_RFIR_IN11                                        = 9   ;
static const uint8_t P9N2_PERV_1_RFIR_IN12                                        = 10  ;
static const uint8_t P9N2_PERV_1_RFIR_IN13                                        = 11  ;
static const uint8_t P9N2_PERV_1_RFIR_IN14                                        = 12  ;
static const uint8_t P9N2_PERV_1_RFIR_IN15                                        = 13  ;
static const uint8_t P9N2_PERV_1_RFIR_IN16                                        = 14  ;
static const uint8_t P9N2_PERV_1_RFIR_IN17                                        = 15  ;
static const uint8_t P9N2_PERV_1_RFIR_IN18                                        = 16  ;
static const uint8_t P9N2_PERV_1_RFIR_IN19                                        = 17  ;
static const uint8_t P9N2_PERV_1_RFIR_IN20                                        = 18  ;
static const uint8_t P9N2_PERV_1_RFIR_IN21                                        = 19  ;
static const uint8_t P9N2_PERV_1_RFIR_IN21_LEN                                    = 5   ;

static const uint8_t P9N2_PERV_1_RING_FENCE_MASK_LATCH_REG_ENABLE                 = 1   ;
static const uint8_t P9N2_PERV_1_RING_FENCE_MASK_LATCH_REG_ENABLE_LEN             = 15  ;

static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE0_DC                               = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPFSI_TP_FENCE_VTLIO_DC                 = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPFSI_TPI2C_BUS_FENCE_DC                = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPCFSI_OPB_SW0_FENCE_DC                 = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPCFSI_OPB_SW0_FENCE_DC_LEN             = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPCFSI_OPB_SW1_FENCE_DC                 = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_TPCFSI_OPB_SW1_FENCE_DC_LEN             = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE1_DC                               = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE2_DC                               = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE3_DC                               = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE4_DC                               = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE5_DC                               = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FENCE6_DC                               = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SPARE_FENCE_CONTROL                     = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_VDD2VIO_LVL_FENCE_DC                    = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_PIB2PCB_DC                              = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_OOB_MUX                                 = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_18_SPARE_MUX_CONTROL                    = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_19_SPARE_MUX_CONTROL                    = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FSI_CC_VSB_CBS_REQ                      = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FSI_CC_VSB_CBS_CMD                      = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_FSI_CC_VSB_CBS_CMD_LEN                  = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_24_SPARE_CBS_CONTROL                    = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_25_SPARE_CBS_CONTROL                    = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_26_SPARE_CBS_CONTROL                    = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_27_SPARE_CBS_CONTROL                    = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_28_SPARE_RESET                          = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_29_SPARE_RESET                          = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_PCB_RESET_DC                            = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_GLOBAL_EP_RESET_DC                      = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE0_DC                         = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPFSI_TP_FENCE_VTLIO_DC           = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPFSI_TPI2C_BUS_FENCE_DC          = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPCFSI_OPB_SW0_FENCE_DC           = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPCFSI_OPB_SW0_FENCE_DC_LEN       = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPCFSI_OPB_SW1_FENCE_DC           = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_TPCFSI_OPB_SW1_FENCE_DC_LEN       = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE1_DC                         = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE2_DC                         = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE3_DC                         = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE4_DC                         = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE5_DC                         = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FENCE6_DC                         = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_SPARE_FENCE_CONTROL               = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_VDD2VIO_LVL_FENCE_DC              = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_PIB2PCB_DC                        = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_OOB_MUX                           = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_18_SPARE_MUX_CONTROL              = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_19_SPARE_MUX_CONTROL              = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FSI_CC_VSB_CBS_REQ                = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FSI_CC_VSB_CBS_CMD                = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_FSI_CC_VSB_CBS_CMD_LEN            = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_24_SPARE_CBS_CONTROL              = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_25_SPARE_CBS_CONTROL              = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_26_SPARE_CBS_CONTROL              = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_27_SPARE_CBS_CONTROL              = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_28_SPARE_RESET                    = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_29_SPARE_RESET                    = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_PCB_RESET_DC                      = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_CLEAR_GLOBAL_EP_RESET_DC                = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL0_COPY_ROOT_CTRL0_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_COPY_ROOT_CTRL0_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE0_DC                           = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPFSI_TP_FENCE_VTLIO_DC             = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPFSI_TPI2C_BUS_FENCE_DC            = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPCFSI_OPB_SW0_FENCE_DC             = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPCFSI_OPB_SW0_FENCE_DC_LEN         = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPCFSI_OPB_SW1_FENCE_DC             = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_TPCFSI_OPB_SW1_FENCE_DC_LEN         = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE1_DC                           = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE2_DC                           = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE3_DC                           = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE4_DC                           = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE5_DC                           = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FENCE6_DC                           = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_SPARE_FENCE_CONTROL                 = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_VDD2VIO_LVL_FENCE_DC                = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_PIB2PCB_DC                          = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_OOB_MUX                             = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_18_SPARE_MUX_CONTROL                = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_19_SPARE_MUX_CONTROL                = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FSI_CC_VSB_CBS_REQ                  = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FSI_CC_VSB_CBS_CMD                  = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_FSI_CC_VSB_CBS_CMD_LEN              = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_24_SPARE_CBS_CONTROL                = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_25_SPARE_CBS_CONTROL                = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_26_SPARE_CBS_CONTROL                = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_27_SPARE_CBS_CONTROL                = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_28_SPARE_RESET                      = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_29_SPARE_RESET                      = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_PCB_RESET_DC                        = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL0_SET_GLOBAL_EP_RESET_DC                  = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE0_SEL_DC                        = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE0_SEL_DC_LEN                    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE1_SEL_DC                        = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE1_SEL_DC_LEN                    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE_MESH_SEL_DC                    = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE_DRV_EN_DC                      = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_PROBE_HIGHDRIVE_DC                   = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_FSI_PROBE_SEL_DC                     = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_FSI_PROBE_SEL_DC_LEN                 = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_13_SPARE_PROBE                          = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_14_SPARE_PROBE                          = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_15_SPARE_PROBE                          = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_IDDQ_DC                              = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SPARE_RI_CONTROL                        = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SPARE_DI_CONTROL                        = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_RI_DC_B                              = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_DI1_DC_B                             = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_DI2_DC_B                             = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_22_SPARE_TEST                           = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_23_SPARE_TEST                           = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_TEST_BURNIN_MODE_DC                  = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TPFSI_ARRAY_SET_VBL_TO_VDD_DC           = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TPFSI_TP_LOWFREQTEST_REFCLK_DC_UNUSED   = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_TP_GLBCK_MEM_TESTCLK_SEL_DC             = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_28_SPARE_TEST_CONTROL                   = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_29_SPARE_TEST_CONTROL                   = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_30_SPARE_TEST_CONTROL                   = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_31_SPARE_TEST_CONTROL                   = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE0_SEL_DC                  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE0_SEL_DC_LEN              = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE1_SEL_DC                  = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE1_SEL_DC_LEN              = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE_MESH_SEL_DC              = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE_DRV_EN_DC                = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_PROBE_HIGHDRIVE_DC             = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_FSI_PROBE_SEL_DC               = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_FSI_PROBE_SEL_DC_LEN           = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_13_SPARE_PROBE                    = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_14_SPARE_PROBE                    = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_15_SPARE_PROBE                    = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_IDDQ_DC                        = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_SPARE_RI_CONTROL                  = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_SPARE_DI_CONTROL                  = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_RI_DC_B                        = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_DI1_DC_B                       = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_DI2_DC_B                       = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_22_SPARE_TEST                     = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_23_SPARE_TEST                     = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_TEST_BURNIN_MODE_DC            = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TPFSI_ARRAY_SET_VBL_TO_VDD_DC     = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TPFSI_TP_LOWFREQTEST_REFCLK_DC_UNUSED = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_TP_GLBCK_MEM_TESTCLK_SEL_DC       = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_28_SPARE_TEST_CONTROL             = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_29_SPARE_TEST_CONTROL             = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_30_SPARE_TEST_CONTROL             = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_CLEAR_31_SPARE_TEST_CONTROL             = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL1_COPY_ROOT_CTRL1_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_COPY_ROOT_CTRL1_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE0_SEL_DC                    = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE0_SEL_DC_LEN                = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE1_SEL_DC                    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE1_SEL_DC_LEN                = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE_MESH_SEL_DC                = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE_DRV_EN_DC                  = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_PROBE_HIGHDRIVE_DC               = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_FSI_PROBE_SEL_DC                 = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_FSI_PROBE_SEL_DC_LEN             = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_13_SPARE_PROBE                      = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_14_SPARE_PROBE                      = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_15_SPARE_PROBE                      = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_IDDQ_DC                          = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_SPARE_RI_CONTROL                    = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_SPARE_DI_CONTROL                    = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_RI_DC_B                          = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_DI1_DC_B                         = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_DI2_DC_B                         = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_22_SPARE_TEST                       = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_23_SPARE_TEST                       = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_TEST_BURNIN_MODE_DC              = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TPFSI_ARRAY_VBL_TO_VDD_DC           = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TPFSI_TP_LOWFREQTEST_REFCLK_DC_UNUSED = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_TP_GLBCK_MEM_TESTCLK_SEL_DC         = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_28_SPARE_TEST_CONTROL               = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_29_SPARE_TEST_CONTROL               = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_30_SPARE_TEST_CONTROL               = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL1_SET_31_SPARE_TEST_CONTROL               = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_VSB_DBG_PCB_ASYNC_EN_DC        = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_VSB_DBG_PCB_DATA_PAR_DIS_DC    = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_VSB_DBG_PCB_TYPE_PAR_DIS_DC    = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_VSB_PCB_GSD_LATCHED_MODE_DC    = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_PIB_VSB_DISABLE_PARITY_DC            = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_PIB_TRACE_MODE_DATA_DC               = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_PIB_VSB_SBE_TRACE_MODE               = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_TPCPERV_VSB_TRACE_STOP               = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_GPIO_PIB_TIMEOUT                     = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_GPIO_PIB_TIMEOUT_LEN                 = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SPARE_PIB_CONTROL                       = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPCFSI_OPB_SW_RESET_DC                  = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_13_SPARE_OPB_CONTROL                    = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_14_SPARE_OPB_CONTROL                    = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_15_SPARE_OPB_CONTROL                    = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_EDRAM_CTRL_GATE                = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_GLBCK_VSB_NEST_VREGDLY_SHUTOFF_DC    = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_PFET_FORCE_OFF_DC              = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TP_PFET_OVERRIDE_ON_DC_N          = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TPFSI_TC_HSSPORWREN_ALLOW               = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_21_FREE_USAGE                           = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_22_FREE_USAGE                           = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_23_FREE_USAGE                           = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_IO_VSB_OP0A_V1P8_EN                  = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_IO_VSB_OP0B_V1P8_EN                  = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_26_FREE_USAGE                           = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_27_FREE_USAGE                           = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_28_FREE_USAGE                           = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_29_FREE_USAGE                           = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_IO_VSB_OP3A_V1P8_EN                  = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_TP_IO_VSB_OP3B_V1P8_EN                  = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_VSB_DBG_PCB_ASYNC_EN_DC  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_VSB_DBG_PCB_DATA_PAR_DIS_DC = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_VSB_DBG_PCB_TYPE_PAR_DIS_DC = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_VSB_PCB_GSD_LATCHED_MODE_DC = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_PIB_VSB_DISABLE_PARITY_DC      = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_PIB_TRACE_MODE_DATA_DC         = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_PIB_VSB_SBE_TRACE_MODE         = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_TPCPERV_VSB_TRACE_STOP         = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_GPIO_PIB_TIMEOUT               = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_GPIO_PIB_TIMEOUT_LEN           = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_SPARE_PIB_CONTROL                 = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPCFSI_OPB_SW_RESET_DC            = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_13_SPARE_OPB_CONTROL              = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_14_SPARE_OPB_CONTROL              = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_15_SPARE_OPB_CONTROL              = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_EDRAM_CTRL_GATE          = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_GLBCK_VSB_NEST_VREGDLY_SHUTOFF_DC = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_PFET_FORCE_OFF_DC        = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TP_PFET_OVERRIDE_ON_DC_N    = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TPFSI_TC_HSSPORWREN_ALLOW         = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_21_FREE_USAGE                     = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_22_FREE_USAGE                     = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_23_FREE_USAGE                     = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_IO_VSB_OP0A_V1P8_EN            = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_IO_VSB_OP0B_V1P8_EN            = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_26_FREE_USAGE                     = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_27_FREE_USAGE                     = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_28_FREE_USAGE                     = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_29_FREE_USAGE                     = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_IO_VSB_OP3A_V1P8_EN            = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_CLEAR_TP_IO_VSB_OP3B_V1P8_EN            = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL2_COPY_ROOT_CTRL2_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_COPY_ROOT_CTRL2_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_VSB_DBG_PCB_ASYNC_EN_DC    = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_VSB_DBG_PCB_DATA_PAR_DIS_DC = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_VSB_DBG_PCB_TYPE_PAR_DIS_DC = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_VSB_PCB_GSD_LATCHED_MODE_DC = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_PIB_VSB_DISABLE_PARITY_DC        = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_PIB_TRACE_MODE_DATA_DC           = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_PIB_VSB_SBE_TRACE_MODE           = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_TPCPERV_VSB_TRACE_STOP           = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_GPIO_PIB_TIMEOUT                 = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_GPIO_PIB_TIMEOUT_LEN             = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_SPARE_PIB_CONTROL                   = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPCFSI_OPB_SW_RESET_DC              = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_13_SPARE_OPB_CONTROL                = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_14_SPARE_OPB_CONTROL                = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_15_SPARE_OPB_CONTROL                = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_EDRAM_CTRL_GATE            = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_GLBCK_VSB_NEST_VREGDLY_SHUTOFF_DC = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_PFET_FORCE_OFF_DC          = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TP_PFET_OVERRIDE_ON_DC_N      = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TPFSI_TC_HSSPORWREN_ALLOW           = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_21_FREE_USAGE                       = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_22_FREE_USAGE                       = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_23_FREE_USAGE                       = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_IO_VSB_OP0A_V1P8_EN              = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_IO_VSB_OP0B_V1P8_EN              = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_26_FREE_USAGE                       = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_27_FREE_USAGE                       = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_28_FREE_USAGE                       = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_29_FREE_USAGE                       = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_IO_VSB_OP3A_V1P8_EN              = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL2_SET_TP_IO_VSB_OP3B_V1P8_EN              = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL3_OSCSWITCH_CNTL0_DC                      = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_OSCSWITCH_CNTL0_DC_LEN                  = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_TP_GLBCK_VSB_PCIESW_USEOSC_DC           = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_TP_GLBCK_VSB_PCIESW_USEOSC_DC_LEN       = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_TP_GLBCK_VSB_PCIESW_TWEAK_DC            = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_TP_GLBCK_VSB_PCIESW_TWEAK_DC_LEN        = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_OSCSWITCH_CNTL1_DC                      = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_OSCSWITCH_CNTL1_DC_LEN                  = 8   ;

static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_OSCSWITCH_CNTL0_DC                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_OSCSWITCH_CNTL0_DC_LEN            = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_TP_GLBCK_VSB_PCIESW_USEOSC_DC     = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_TP_GLBCK_VSB_PCIESW_USEOSC_DC_LEN = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_TP_GLBCK_VSB_PCIESW_TWEAK_DC      = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_TP_GLBCK_VSB_PCIESW_TWEAK_DC_LEN  = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_OSCSWITCH_CNTL1_DC                = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_CLEAR_OSCSWITCH_CNTL1_DC_LEN            = 8   ;

static const uint8_t P9N2_PERV_ROOT_CTRL3_COPY_ROOT_CTRL3_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_COPY_ROOT_CTRL3_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_OSCSWITCH_CNTL0_DC                  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_OSCSWITCH_CNTL0_DC_LEN              = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_TP_GLBCK_VSB_PCIESW_USEOSC_DC       = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_TP_GLBCK_VSB_PCIESW_USEOSC_DC_LEN   = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_TP_GLBCK_VSB_PCIESW_TWEAK_DC        = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_TP_GLBCK_VSB_PCIESW_TWEAK_DC_LEN    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_OSCSWITCH_CNTL1_DC                  = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL3_SET_OSCSWITCH_CNTL1_DC_LEN              = 8   ;

static const uint8_t P9N2_PERV_ROOT_CTRL4_TP_OSCSWITCH_VSB                        = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL4_TP_OSCSWITCH_VSB_LEN                    = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL4_CLEAR_TP_OSCSWITCH_VSB                  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL4_CLEAR_TP_OSCSWITCH_VSB_LEN              = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL4_COPY_ROOT_CTRL4_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL4_COPY_ROOT_CTRL4_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL4_SET_TP_OSCSWITCH_VSB                    = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL4_SET_TP_OSCSWITCH_VSB_LEN                = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_ERRINJ0_DC                  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_ERRINJ0_DC_LEN              = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_ERRINJ1_DC                  = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_ERRINJ1_DC_LEN              = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_TWEAK_DC                    = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_TWEAK_DC_LEN                = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_SKEW_ADJUST_DC              = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_SKEW_ADJUST_DC_LEN          = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_SNS_CONTENT_SEL_DC          = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_OSCSW_SNS_CONTENT_SEL_DC_LEN      = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_15_SPARE_OSC                            = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_TP_CHKSW_DD1_DC                   = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_TPFSI_TP_CHKSW_DD1_DC_LEN               = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_24_SPARE_OSC                            = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_25_SPARE_OSC                            = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_26_SPARE_OSC                            = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_27_SPARE_OSC                            = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_28_SPARE_OSC                            = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_29_SPARE_OSC                            = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_30_SPARE_OSC                            = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_31_SPARE_OSC                            = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_ERRINJ0_DC            = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_ERRINJ0_DC_LEN        = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_ERRINJ1_DC            = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_ERRINJ1_DC_LEN        = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_TWEAK_DC              = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_TWEAK_DC_LEN          = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_SKEW_ADJUST_DC        = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_SKEW_ADJUST_DC_LEN    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_SNS_CONTENT_SEL_DC    = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_OSCSW_SNS_CONTENT_SEL_DC_LEN = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_15_SPARE_OSC                      = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_TP_CHKSW_DD1_DC             = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_TPFSI_TP_CHKSW_DD1_DC_LEN         = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_24_SPARE_OSC                      = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_25_SPARE_OSC                      = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_26_SPARE_OSC                      = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_27_SPARE_OSC                      = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_28_SPARE_OSC                      = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_29_SPARE_OSC                      = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_30_SPARE_OSC                      = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_CLEAR_31_SPARE_OSC                      = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL5_COPY_ROOT_CTRL5_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_COPY_ROOT_CTRL5_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_ERRINJ0_DC              = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_ERRINJ0_DC_LEN          = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_ERRINJ1_DC              = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_ERRINJ1_DC_LEN          = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_TWEAK_DC                = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_TWEAK_DC_LEN            = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_SKEW_ADJUST_DC          = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_SKEW_ADJUST_DC_LEN      = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_SNS_CONTENT_SEL_DC      = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_OSCSW_SNS_CONTENT_SEL_DC_LEN  = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_15_SPARE_OSC                        = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_TP_CHKSW_DD1_DC               = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_TPFSI_TP_CHKSW_DD1_DC_LEN           = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_24_SPARE_OSC                        = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_25_SPARE_OSC                        = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_26_SPARE_OSC                        = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_27_SPARE_OSC                        = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_28_SPARE_OSC                        = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_29_SPARE_OSC                        = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_30_SPARE_OSC                        = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL5_SET_31_SPARE_OSC                        = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL6_TP_PLLREFCLK_RCVR_TERM_DC               = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TP_PLLREFCLK_RCVR_TERM_DC_LEN           = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TP_PCIREFCLK_RCVR_TERM_DC               = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TP_PCIREFCLK_RCVR_TERM_DC_LEN           = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_REFCLK_0_TERM_DIS_DC                    = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_REFCLK_1_TERM_DIS_DC                    = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_6_SPARE_TERM_DIS                        = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_7_SPARE_TERM_DIS                        = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_OSCSW0_PGOOD_N                    = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_OSCSW1_PGOOD                      = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_10_SPARE_REFCLOCK                       = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_11_SPARE_REFCLOCK                       = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_OFFCHIP_REFCLK_EN_DC              = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_OFFCHIP_REFCLK_EN_DC_LEN          = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_GP_TP_GLBCK_VSB_NEST_MESH_SEL_DC        = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_25_SPARE_REFCLOCK_CONTROL               = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_26_SPARE_REFCLOCK_CONTROL               = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_ALTREFCLK_SEL                     = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_TPFSI_ALTREFCLK_SE1                     = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_29_SPARE_REFCLOCK_CONTROL               = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_30_SPARE_REFCLOCK_CONTROL               = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_31_SPARE_REFCLOCK_CONTROL               = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TP_PLLREFCLK_RCVR_TERM_DC         = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TP_PLLREFCLK_RCVR_TERM_DC_LEN     = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TP_PCIREFCLK_RCVR_TERM_DC         = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TP_PCIREFCLK_RCVR_TERM_DC_LEN     = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_REFCLK_0_TERM_DIS_DC              = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_REFCLK_1_TERM_DIS_DC              = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_6_SPARE_TERM_DIS                  = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_7_SPARE_TERM_DIS                  = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_OSCSW0_PGOOD_N              = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_OSCSW1_PGOOD                = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_10_SPARE_REFCLOCK                 = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_11_SPARE_REFCLOCK                 = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_OFFCHIP_REFCLK_EN_DC        = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_OFFCHIP_REFCLK_EN_DC_LEN    = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_GP_TP_GLBCK_VSB_NEST_MESH_SEL_DC  = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_25_SPARE_REFCLOCK_CONTROL         = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_26_SPARE_REFCLOCK_CONTROL         = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_ALTREFCLK_SEL               = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_TPFSI_ALTREFCLK_SE1               = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_29_SPARE_REFCLOCK_CONTROL         = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_30_SPARE_REFCLOCK_CONTROL         = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_CLEAR_31_SPARE_REFCLOCK_CONTROL         = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL6_COPY_ROOT_CTRL6_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_COPY_ROOT_CTRL6_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TP_PLLREFCLK_RCVR_TERM_DC           = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TP_PLLREFCLK_RCVR_TERM_DC_LEN       = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TP_PCIREFCLK_RCVR_TERM_DC           = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TP_PCIREFCLK_RCVR_TERM_DC_LEN       = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_REFCLK_0_TERM_DIS_DC                = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_REFCLK_1_TERM_DIS_DC                = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_6_SPARE_TERM_DIS                    = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_7_SPARE_TERM_DIS                    = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_OSCSW0_PGOOD_N                = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_OSCSW1_PGOOD                  = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_10_SPARE_REFCLOCK                   = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_11_SPARE_REFCLOCK                   = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_OFFCHIP_REFCLK_EN_DC          = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_OFFCHIP_REFCLK_EN_DC_LEN      = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_GP_TP_GLBCK_VSB_NEST_MESH_SEL_DC    = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_25_SPARE_REFCLOCK_CONTROL           = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_26_SPARE_REFCLOCK_CONTROL           = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_ALTREFCLK_SEL                 = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_TPFSI_ALTREFCLK_SE1                 = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_29_SPARE_REFCLOCK_CONTROL           = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_30_SPARE_REFCLOCK_CONTROL           = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL6_SET_31_SPARE_REFCLOCK_CONTROL           = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL7_0_SPARE_SECTOR_BUFFER_CONTROL           = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_1_SPARE_SECTOR_BUFFER_CONTROL           = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_2_SPARE_SECTOR_BUFFER_CONTROL           = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_3_SPARE_SECTOR_BUFFER_CONTROL           = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_4_SPARE_SECTOR_BUFFER_CONTROL           = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_5_SPARE_SECTOR_BUFFER_CONTROL           = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_6_SPARE_SECTOR_BUFFER_CONTROL           = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_7_SPARE_SECTOR_BUFFER_CONTROL           = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_8_SPARE_SECTOR_BUFFER_CONTROL           = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_9_SPARE_SECTOR_BUFFER_CONTROL           = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_10_SPARE_SECTOR_BUFFER_CONTROL          = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_11_SPARE_SECTOR_BUFFER_CONTROL          = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_12_SPARE_SECTOR_BUFFER_CONTROL          = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_13_SPARE_SECTOR_BUFFER_CONTROL          = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_14_SPARE_SECTOR_BUFFER_CONTROL          = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_15_SPARE_SECTOR_BUFFER_CONTROL          = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_16_SPARE_RESONANT_CLOCKING_CONTROL      = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_17_SPARE_RESONANT_CLOCKING_CONTROL      = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_18_SPARE_RESONANT_CLOCKING_CONTROL      = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_19_SPARE_RESONANT_CLOCKING_CONTROL      = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_20_SPARE_RESONANT_CLOCKING_CONTROL      = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_21_SPARE_RESONANT_CLOCKING_CONTROL      = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_22_SPARE_RESONANT_CLOCKING_CONTROL      = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_23_SPARE_RESONANT_CLOCKING_CONTROL      = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_24_SPARE_RESONANT_CLOCKING_CONTROL      = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_25_SPARE_RESONANT_CLOCKING_CONTROL      = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_26_SPARE_RESONANT_CLOCKING_CONTROL      = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_27_SPARE_RESONANT_CLOCKING_CONTROL      = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_28_SPARE_RESONANT_CLOCKING_CONTROL      = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_29_SPARE_RESONANT_CLOCKING_CONTROL      = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_30_SPARE_RESONANT_CLOCKING_CONTROL      = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_31_SPARE_RESONANT_CLOCKING_CONTROL      = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_0_SPARE_SECTOR_BUFFER_CONTROL     = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_1_SPARE_SECTOR_BUFFER_CONTROL     = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_2_SPARE_SECTOR_BUFFER_CONTROL     = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_3_SPARE_SECTOR_BUFFER_CONTROL     = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_4_SPARE_SECTOR_BUFFER_CONTROL     = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_5_SPARE_SECTOR_BUFFER_CONTROL     = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_6_SPARE_SECTOR_BUFFER_CONTROL     = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_7_SPARE_SECTOR_BUFFER_CONTROL     = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_8_SPARE_SECTOR_BUFFER_CONTROL     = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_9_SPARE_SECTOR_BUFFER_CONTROL     = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_10_SPARE_SECTOR_BUFFER_CONTROL    = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_11_SPARE_SECTOR_BUFFER_CONTROL    = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_12_SPARE_SECTOR_BUFFER_CONTROL    = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_13_SPARE_SECTOR_BUFFER_CONTROL    = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_14_SPARE_SECTOR_BUFFER_CONTROL    = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_15_SPARE_SECTOR_BUFFER_CONTROL    = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_16_SPARE_RESONANT_CLOCKING_CONTROL = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_17_SPARE_RESONANT_CLOCKING_CONTROL = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_18_SPARE_RESONANT_CLOCKING_CONTROL = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_19_SPARE_RESONANT_CLOCKING_CONTROL = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_20_SPARE_RESONANT_CLOCKING_CONTROL = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_21_SPARE_RESONANT_CLOCKING_CONTROL = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_22_SPARE_RESONANT_CLOCKING_CONTROL = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_23_SPARE_RESONANT_CLOCKING_CONTROL = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_24_SPARE_RESONANT_CLOCKING_CONTROL = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_25_SPARE_RESONANT_CLOCKING_CONTROL = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_26_SPARE_RESONANT_CLOCKING_CONTROL = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_27_SPARE_RESONANT_CLOCKING_CONTROL = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_28_SPARE_RESONANT_CLOCKING_CONTROL = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_29_SPARE_RESONANT_CLOCKING_CONTROL = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_30_SPARE_RESONANT_CLOCKING_CONTROL = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_CLEAR_31_SPARE_RESONANT_CLOCKING_CONTROL = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL7_COPY_ROOT_CTRL7_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_COPY_ROOT_CTRL7_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_0_SPARE_SECTOR_BUFFER_CONTROL       = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_1_SPARE_SECTOR_BUFFER_CONTROL       = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_2_SPARE_SECTOR_BUFFER_CONTROL       = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_3_SPARE_SECTOR_BUFFER_CONTROL       = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_4_SPARE_SECTOR_BUFFER_CONTROL       = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_5_SPARE_SECTOR_BUFFER_CONTROL       = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_6_SPARE_SECTOR_BUFFER_CONTROL       = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_7_SPARE_SECTOR_BUFFER_CONTROL       = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_8_SPARE_SECTOR_BUFFER_CONTROL       = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_9_SPARE_SECTOR_BUFFER_CONTROL       = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_10_SPARE_SECTOR_BUFFER_CONTROL      = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_11_SPARE_SECTOR_BUFFER_CONTROL      = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_12_SPARE_SECTOR_BUFFER_CONTROL      = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_13_SPARE_SECTOR_BUFFER_CONTROL      = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_14_SPARE_SECTOR_BUFFER_CONTROL      = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_15_SPARE_SECTOR_BUFFER_CONTROL      = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_16_SPARE_RESONANT_CLOCKING_CONTROL  = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_17_SPARE_RESONANT_CLOCKING_CONTROL  = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_18_SPARE_RESONANT_CLOCKING_CONTROL  = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_19_SPARE_RESONANT_CLOCKING_CONTROL  = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_20_SPARE_RESONANT_CLOCKING_CONTROL  = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_21_SPARE_RESONANT_CLOCKING_CONTROL  = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_22_SPARE_RESONANT_CLOCKING_CONTROL  = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_23_SPARE_RESONANT_CLOCKING_CONTROL  = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_24_SPARE_RESONANT_CLOCKING_CONTROL  = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_25_SPARE_RESONANT_CLOCKING_CONTROL  = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_26_SPARE_RESONANT_CLOCKING_CONTROL  = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_27_SPARE_RESONANT_CLOCKING_CONTROL  = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_28_SPARE_RESONANT_CLOCKING_CONTROL  = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_29_SPARE_RESONANT_CLOCKING_CONTROL  = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_30_SPARE_RESONANT_CLOCKING_CONTROL  = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL7_SET_31_SPARE_RESONANT_CLOCKING_CONTROL  = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_SS0_PLL_RESET                        = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_SS0_PLL_BYPASS                       = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_SS0_PLL_TEST_EN                      = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_3_SPARE_SS_PLL_CONTROL                  = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT0_PLL_RESET                      = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT0_PLL_BYPASS                     = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT0_PLL_TEST_EN                    = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SPARE_FILT0_PLL                         = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT1_PLL_RESET                      = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT1_PLL_BYPASS                     = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FILT1_PLL_TEST_EN                    = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SPARE_FILT1_PLL                         = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_TEST_EN                          = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_FORCE_OUT_EN_DC                  = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_14_SPARE_PLL                            = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_15_SPARE_PLL                            = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_CLK_ASYNC_RESET_DC                   = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_CLK_DIV_BYPASS_EN_DC                 = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_CLK_PDLY_BYPASS1_EN_DC               = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_CLK_PDLY_BYPASS2_EN_DC               = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_20_SPARE_PLL_CONTROL                    = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_21_SPARE_PLL_CONTROL                    = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_22_SPARE_PLL_CONTROL                    = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_23_SPARE_PLL_CONTROL                    = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_FSI_CLKIN_SEL_DC                     = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_25_SPARE_CLKIN_CONTROL                  = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_26_SPARE_CLKIN_CONTROL                  = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_27_SPARE_CLKIN_CONTROL                  = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_CLKIN_SEL1_DC                    = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_CLKIN_SEL2_DC                    = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_CLKIN_SEL3_DC                    = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_TP_PLL_CLKIN_SEL4_DC                    = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_SS0_PLL_RESET                  = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_SS0_PLL_BYPASS                 = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_SS0_PLL_TEST_EN                = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_3_SPARE_SS_PLL_CONTROL            = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT0_PLL_RESET                = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT0_PLL_BYPASS               = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT0_PLL_TEST_EN              = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_SPARE_FILT0_PLL                   = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT1_PLL_RESET                = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT1_PLL_BYPASS               = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FILT1_PLL_TEST_EN              = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_SPARE_FILT1_PLL                   = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_TEST_EN                    = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_FORCE_OUT_EN_DC            = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_14_SPARE_PLL                      = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_15_SPARE_PLL                      = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_CLK_ASYNC_RESET_DC             = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_CLK_DIV_BYPASS_EN_DC           = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_CLK_PDLY_BYPASS1_EN_DC         = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_CLK_PDLY_BYPASS2_EN_DC         = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_20_SPARE_PLL_CONTROL              = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_21_SPARE_PLL_CONTROL              = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_22_SPARE_PLL_CONTROL              = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_23_SPARE_PLL_CONTROL              = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_FSI_CLKIN_SEL_DC               = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_25_SPARE_CLKIN_CONTROL            = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_26_SPARE_CLKIN_CONTROL            = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_27_SPARE_CLKIN_CONTROL            = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_CLKIN_SEL1_DC              = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_CLKIN_SEL2_DC              = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_CLKIN_SEL3_DC              = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_CLEAR_TP_PLL_CLKIN_SEL4_DC              = 31  ;

static const uint8_t P9N2_PERV_ROOT_CTRL8_COPY_ROOT_CTRL8_COPY_REG                = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_COPY_ROOT_CTRL8_COPY_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_SS0_PLL_RESET                    = 0   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_SS0_PLL_BYPASS                   = 1   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_SS0_PLL_TEST_EN                  = 2   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_3_SPARE_SS_PLL_CONTROL              = 3   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT0_PLL_RESET                  = 4   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT0_PLL_BYPASS                 = 5   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT0_PLL_TEST_EN                = 6   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_SPARE_FILT0_PLL                     = 7   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT1_PLL_RESET                  = 8   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT1_PLL_BYPASS                 = 9   ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FILT1_PLL_TEST_EN                = 10  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_SPARE_FILT1_PLL                     = 11  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_TEST_EN                      = 12  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_FORCE_OUT_EN_DC              = 13  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_14_SPARE_PLL                        = 14  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_15_SPARE_PLL                        = 15  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_CLK_ASYNC_RESET_DC               = 16  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_CLK_DIV_BYPASS_EN_DC             = 17  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_CLK_PDLY_BYPASS1_EN_DC           = 18  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_CLK_PDLY_BYPASS2_EN_DC           = 19  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_20_SPARE_PLL_CONTROL                = 20  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_21_SPARE_PLL_CONTROL                = 21  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_22_SPARE_PLL_CONTROL                = 22  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_23_SPARE_PLL_CONTROL                = 23  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_FSI_CLKIN_SEL_DC                 = 24  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_25_SPARE_CLKIN_CONTROL              = 25  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_26_SPARE_CLKIN_CONTROL              = 26  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_27_SPARE_CLKIN_CONTROL              = 27  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_CLKIN_SEL1_DC                = 28  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_CLKIN_SEL2_DC                = 29  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_CLKIN_SEL3_DC                = 30  ;
static const uint8_t P9N2_PERV_ROOT_CTRL8_SET_TP_PLL_CLKIN_SEL4_DC                = 31  ;

static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN                                     = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_HALT_ON_XSTOP                          = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_HALT_ON_TRIG                           = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_RESERVED3                              = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN_INTR_ADDR                           = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN_TRACE_EXTRA                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN_TRACE_STALL                         = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN_WAIT_CYCLES                         = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_EN_FULL_SPEED                          = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_RESERVED9                              = 9   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_TRACE_MODE_SEL                         = 10  ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_TRACE_MODE_SEL_LEN                     = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_FIR_TRIGGER                            = 16  ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_MIB_GPIO                               = 17  ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_MIB_GPIO_LEN                           = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_TRACE_DATA_SEL                         = 20  ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_TRACE_DATA_SEL_LEN                     = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_DBG_HALT_INPUT                             = 24  ;

static const uint8_t P9N2_PERV_SBE_LCL_EIMR_START0                                = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_START1                                = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_INTR0                                 = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_INTR1                                 = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_DRTM_REQ                              = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_SBEFIFO_RESET                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_SBEFIFO_DATA                          = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_SPARE                                 = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_TRIG                                  = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIMR_XSTOP                                 = 9   ;

static const uint8_t P9N2_PERV_SBE_LCL_EINR_START0                                = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_START1                                = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_INTR0                                 = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_INTR1                                 = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_DRTM_REQ                              = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_SBEFIFO_RESET                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_SBEFIFO_DATA                          = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_SPARE                                 = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_TRIG                                  = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_EINR_XSTOP                                 = 9   ;

static const uint8_t P9N2_PERV_SBE_LCL_EIPR_START0                                = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_START1                                = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_INTR0                                 = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_INTR1                                 = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_DRTM_REQ                              = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_SBEFIFO_RESET                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_SBEFIFO_DATA                          = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_SPARE                                 = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_TRIG                                  = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_EIPR_XSTOP                                 = 9   ;

static const uint8_t P9N2_PERV_SBE_LCL_EISR_START0                                = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_START1                                = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_INTR0                                 = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_INTR1                                 = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_DRTM_REQ                              = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_SBEFIFO_RESET                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_SBEFIFO_DATA                          = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_SPARE                                 = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_TRIG                                  = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISR_XSTOP                                 = 9   ;

static const uint8_t P9N2_PERV_SBE_LCL_EISTR_INTERRUPT_STATUS                     = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EISTR_INTERRUPT_STATUS_LEN                 = 10  ;

static const uint8_t P9N2_PERV_SBE_LCL_EITR_START0                                = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_START1                                = 1   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_INTR0                                 = 2   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_INTR1                                 = 3   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_DRTM_REQ                              = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_SBEFIFO_RESET                         = 5   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_SBEFIFO_DATA                          = 6   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_SPARE                                 = 7   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_TRIG                                  = 8   ;
static const uint8_t P9N2_PERV_SBE_LCL_EITR_XSTOP                                 = 9   ;

static const uint8_t P9N2_PERV_SBE_LCL_IVPR_IVPR                                  = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_IVPR_IVPR_LEN                              = 23  ;

static const uint8_t P9N2_PERV_SBE_LCL_TBR_TIMEBASE                               = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_TBR_TIMEBASE_LEN                           = 32  ;

static const uint8_t P9N2_PERV_SBE_LCL_TSEL_FIT_SEL                               = 0   ;
static const uint8_t P9N2_PERV_SBE_LCL_TSEL_FIT_SEL_LEN                           = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_TSEL_WATCHDOG_SEL                          = 4   ;
static const uint8_t P9N2_PERV_SBE_LCL_TSEL_WATCHDOG_SEL_LEN                      = 4   ;

static const uint8_t P9N2_PERV_SB_CS_SECURE_DEBUG_MODE                            = 0   ;
static const uint8_t P9N2_PERV_SB_CS_START_RESTART_VECTOR0                        = 12  ;
static const uint8_t P9N2_PERV_SB_CS_START_RESTART_VECTOR1                        = 13  ;
static const uint8_t P9N2_PERV_SB_CS_INTERRUPT_S0                                 = 14  ;
static const uint8_t P9N2_PERV_SB_CS_INTERRUPT_S1                                 = 15  ;
static const uint8_t P9N2_PERV_SB_CS_BYPASSING_RESET_SEQUENCE_PIB_I2CM            = 16  ;
static const uint8_t P9N2_PERV_SB_CS_SELECT_SECONDARY_SEEPROM                     = 17  ;
static const uint8_t P9N2_PERV_SB_CS_DEBUG_BOLT_ON_CONTROL_BITS                   = 25  ;
static const uint8_t P9N2_PERV_SB_CS_DEBUG_BOLT_ON_CONTROL_BITS_LEN               = 7   ;

static const uint8_t P9N2_PERV_1_SCAN32_SCAN32_REG                                = 0   ;
static const uint8_t P9N2_PERV_1_SCAN32_SCAN32_REG_LEN                            = 32  ;

static const uint8_t P9N2_PERV_1_SCAN64_SCAN64_REG                                = 0   ;
static const uint8_t P9N2_PERV_1_SCAN64_SCAN64_REG_LEN                            = 64  ;

static const uint8_t P9N2_PERV_1_SCAN_CAPTUREDR_SCAN_CAPTUREDR_REG                = 0   ;
static const uint8_t P9N2_PERV_1_SCAN_CAPTUREDR_SCAN_CAPTUREDR_REG_LEN            = 32  ;

static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_SYSTEM_FAST_INIT                = 0   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_VITL                            = 3   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_PERV                            = 4   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT1                           = 5   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT2                           = 6   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT3                           = 7   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT4                           = 8   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT5                           = 9   ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT6                           = 10  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT7                           = 11  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT8                           = 12  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT9                           = 13  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_UNIT10                          = 14  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_FUNC                            = 48  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_CFG                             = 49  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_CCFG_GPTR                       = 50  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_REGF                            = 51  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_LBIST                           = 52  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_ABIST                           = 53  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_REPR                            = 54  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_TIME                            = 55  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_BNDY                            = 56  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_FARR                            = 57  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_CMSK                            = 58  ;
static const uint8_t P9N2_PERV_1_SCAN_REGION_TYPE_INEX                            = 59  ;

static const uint8_t P9N2_PERV_1_SCAN_UPDATEDR_SCAN_UPDATEDR_REG                  = 0   ;
static const uint8_t P9N2_PERV_1_SCAN_UPDATEDR_SCAN_UPDATEDR_REG_LEN              = 32  ;

static const uint8_t P9N2_PERV_1_SCAN_UPDATEDR_LONG_SCAN_UPDATEDR_LONG_REG        = 0   ;
static const uint8_t P9N2_PERV_1_SCAN_UPDATEDR_LONG_SCAN_UPDATEDR_LONG_REG_LEN    = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_1_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_1_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_2_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_2_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_3_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_3_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_4_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_4_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_5_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_5_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_6_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_6_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_7_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_7_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_SCRATCH_REGISTER_8_SR                              = 0   ;
static const uint8_t P9N2_PERV_SCRATCH_REGISTER_8_SR_LEN                          = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_SHIFT_CONTROL_REGISTER_2_REGISTER         = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_SHIFT_CONTROL_REGISTER_2_REGISTER_LEN     = 32  ;

static const uint8_t P9N2_PERV_1_SKITTER_CLKSRC_REG_SKITTER0                      = 0   ;
static const uint8_t P9N2_PERV_1_SKITTER_CLKSRC_REG_SKITTER0_LEN                  = 3   ;
static const uint8_t P9N2_PERV_1_SKITTER_CLKSRC_REG_SKITTER0_DELAY_SELECT         = 36  ;
static const uint8_t P9N2_PERV_1_SKITTER_CLKSRC_REG_SKITTER0_DELAY_SELECT_LEN     = 2   ;

static const uint8_t P9N2_PERV_1_SKITTER_FORCE_REG_F_READ                         = 0   ;

static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_HOLD_SAMPLE                     = 0   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_DISABLE_STICKINESS              = 1   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_UNUSED1                         = 2   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_UNUSED1_LEN                     = 2   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_HOLD_DBGTRIG_SEL                = 4   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_HOLD_DBGTRIG_SEL_LEN            = 2   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_RESET_TRIG_SEL                  = 6   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_RESET_TRIG_SEL_LEN              = 2   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_SAMPLE_GUTS                     = 8   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_SAMPLE_GUTS_LEN                 = 2   ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_HOLD_SAMPLE_WITH_TRIGGER        = 44  ;
static const uint8_t P9N2_PERV_1_SKITTER_MODE_REG_DATA_V_LT                       = 45  ;

static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_DISABLE_PERV_THOLD_CHECK    = 0   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_DISABLE_MALF_PULSE_GEN      = 1   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_STOP_HANG_CNT_SYS_XSTP      = 2   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_DISABLE_CL_ATOMIC_LOCK      = 3   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_DISABLE_HEARTBEAT           = 4   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_DISABLE_FORCE_TO_ZERO       = 5   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_PM_DISABLE                  = 6   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_CFG_PM_MUX_DISABLE              = 7   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_ERROR_MASK                      = 8   ;
static const uint8_t P9N2_PERV_1_SLAVE_CONFIG_REG_ERROR_MASK_LEN                  = 6   ;

static const uint8_t P9N2_PERV_SNS1LTH_SNS1_0_31                                  = 0   ;
static const uint8_t P9N2_PERV_SNS1LTH_SNS1_0_31_LEN                              = 32  ;

static const uint8_t P9N2_PERV_SNS2LTH_SNS2_UNUSED_0_31                           = 0   ;
static const uint8_t P9N2_PERV_SNS2LTH_SNS2_UNUSED_0_31_LEN                       = 32  ;

static const uint8_t P9N2_PERV_1_SPATTN_IN0                                       = 0   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN1                                       = 1   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN2                                       = 2   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN3                                       = 3   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN4                                       = 4   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN5                                       = 5   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN6                                       = 6   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN7                                       = 7   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN8                                       = 8   ;
static const uint8_t P9N2_PERV_1_SPATTN_IN9                                       = 9   ;

static const uint8_t P9N2_PERV_1_SPA_MASK_IN                                      = 0   ;
static const uint8_t P9N2_PERV_1_SPA_MASK_IN_LEN                                  = 10  ;

static const uint8_t P9N2_PERV_FSI2PIB_STATUS_ANY_ERROR                           = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_SYSTEM_CHECKSTOP                    = 1   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_SPECIAL_ATTENTION                   = 2   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_RECOVERABLE_ERROR                   = 3   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_CHIPLET_INTERRUPT_FROM_HOST         = 4   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PARITY_CHECK                        = 5   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_POWER_MANAGEMENT_INTERRUPT          = 6   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PROTECTION_CHECK                    = 7   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_SELFBOOT_DONE                       = 8   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_RESERVED_9                          = 9   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_IDLE_INDICATION                     = 10  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PIB_ABORT                           = 11  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_USE_OSC_OBSERVATION                 = 12  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_USE_OSC_OBSERVATION_LEN             = 4   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_VDD_NEST_OBSERVE                    = 16  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PIB_ERROR_CODE                      = 17  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PIB_ERROR_CODE_LEN                  = 3   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_OSCILLATOR                          = 20  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_OSCILLATOR_LEN                      = 4   ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PLLLOCK_0_FILTER_PLL_NEST           = 24  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PLLLOCK_1_FILTER_PLL_MC             = 25  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PLLLOCK_2_XBUS                      = 26  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_PLLLOCK_3_NEST                      = 27  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_INTERRUPT_CONDITION_PENDING         = 28  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_INTERRUPT_ENABLED                   = 29  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_SELFBOOT_ENGINE_ATTENTION           = 30  ;
static const uint8_t P9N2_PERV_FSI2PIB_STATUS_RESERVED_31                         = 31  ;

static const uint8_t P9N2_PERV_FSISHIFT_STATUS_4                                  = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_STATUS_4_LEN                              = 32  ;

static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_INVALID_CMD_0      = 0   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_LBUS_PARITY_ERROR_0 = 1   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_BE_OV_ERROR_0      = 2   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_BE_ACC_ERROR_0     = 3   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_ARBITRATION_LOST_ERROR_0 = 4   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_NACK_RECEIVED_ERROR_0 = 5   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_DATA_REQUEST_0     = 6   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_STOP_ERROR_0       = 8   ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_BUSY               = 22  ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_SELF_BUSY_0        = 23  ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_FIFO_ENTRY_COUNT_0 = 28  ;
static const uint8_t P9N2_PERV_FSII2C_STATUS_REGISTER_ENGINE_A_FIFO_ENTRY_COUNT_0_LEN = 4   ;

static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_ANY_ERROR                = 0   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CMD_PARITY_ERROR         = 1   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_WR_DATA_PARITY_ERROR     = 2   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_RD_DATA_PARITY_ERROR     = 3   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_LCK_STATUS_PARITY_ERROR  = 4   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_FSM_PARITY_ERROR         = 5   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_COMMAND_OVERRUN_ERROR = 7   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_PARITY_ERROR         = 8   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_PROTOCOL_ERROR       = 9   ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_TIMEOUT_BIT          = 10  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_ERRACK               = 11  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_INVALID_ADDRESS          = 12  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_PORT_IS_FENCED           = 13  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_READ_DATA_VALID          = 14  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_OPB_BUSY_FLAG            = 15  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_ANY_MASTER_ERROR      = 16  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_ANY_PORT_INTERRUPT    = 17  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_HOT_PLUG_EVENT        = 18  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_CONTROL_REGISTER_PARITY_INTERRUPT = 19  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 20  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_CM_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 21  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_ANY_MASTER_ERROR       = 24  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_ANY_PORT_INTERRUPT     = 25  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_HOT_PLUG_EVENT         = 26  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_CONTROL_REGISTER_PARITY_INTERRUPT = 27  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 28  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_M_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 29  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_READ_DATA                = 32  ;
static const uint8_t P9N2_PERV_PIB2OPB1_STAT_RDDAT_ERRES_READ_DATA_LEN            = 32  ;

static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_ANY_ERROR                         = 0   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CMD_PARITY_ERROR                  = 1   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_WR_DATA_PARITY_ERROR              = 2   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_RD_DATA_PARITY_ERROR              = 3   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_LCK_STATUS_PARITY_ERROR           = 4   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_FSM_PARITY_ERROR                  = 5   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_COMMAND_OVERRUN_ERROR         = 7   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_PARITY_ERROR                  = 8   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_PROTOCOL_ERROR                = 9   ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_TIMEOUT_BIT                   = 10  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_ERRACK                        = 11  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_INVALID_ADDRESS                   = 12  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_PORT_IS_FENCED                    = 13  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_READ_DATA_VALID                   = 14  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_OPB_BUSY_FLAG                     = 15  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_ANY_MASTER_ERROR               = 16  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_ANY_PORT_INTERRUPT             = 17  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_HOT_PLUG_EVENT                 = 18  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_CONTROL_REGISTER_PARITY_INTERRUPT = 19  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 20  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_CM_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 21  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_ANY_MASTER_ERROR                = 24  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_ANY_PORT_INTERRUPT              = 25  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_HOT_PLUG_EVENT                  = 26  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_CONTROL_REGISTER_PARITY_INTERRUPT = 27  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 28  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_M_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 29  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_READ_DATA                         = 32  ;
static const uint8_t P9N2_PERV_STAT_RDDAT_ERRES_READ_DATA_LEN                     = 32  ;

static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_ANY_ERROR                = 0   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CMD_PARITY_ERROR         = 1   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_WR_DATA_PARITY_ERROR     = 2   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_RD_DATA_PARITY_ERROR     = 3   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_LCK_STATUS_PARITY_ERROR  = 4   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_FSM_PARITY_ERROR         = 5   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_COMMAND_OVERRUN_ERROR = 7   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_PARITY_ERROR         = 8   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_PROTOCOL_ERROR       = 9   ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_TIMEOUT_BIT          = 10  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_ERRACK               = 11  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_INVALID_ADDRESS          = 12  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_PORT_IS_FENCED           = 13  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_READ_DATA_VALID          = 14  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_OPB_BUSY_FLAG            = 15  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_ANY_MASTER_ERROR      = 16  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_ANY_PORT_INTERRUPT    = 17  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_HOT_PLUG_EVENT        = 18  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_CONTROL_REGISTER_PARITY_INTERRUPT = 19  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 20  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_CM_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 21  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_ANY_MASTER_ERROR       = 24  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_ANY_PORT_INTERRUPT     = 25  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_HOT_PLUG_EVENT         = 26  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_CONTROL_REGISTER_PARITY_INTERRUPT = 27  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_ANY_INTR_1_REMOTE_SLAVE_INTERRUPT = 28  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_M_ANY_INTR_2_REMOTE_SLAVE_INTERRUPT = 29  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_READ_DATA                = 32  ;
static const uint8_t P9N2_PERV_PIB2OPB0_STAT_RDDAT_ERRES_READ_DATA_LEN            = 32  ;

static const uint8_t P9N2_PERV_1_SUM_MASK_REG_SMASK_IN0                           = 0   ;
static const uint8_t P9N2_PERV_1_SUM_MASK_REG_SMASK_IN1                           = 1   ;
static const uint8_t P9N2_PERV_1_SUM_MASK_REG_SMASK_IN2                           = 2   ;
static const uint8_t P9N2_PERV_1_SUM_MASK_REG_SMASK_IN3                           = 3   ;
static const uint8_t P9N2_PERV_1_SUM_MASK_REG_SMASK_IN4                           = 4   ;

static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PULSE_DELAY                          = 0   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PULSE_DELAY_LEN                      = 4   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_LISTEN_TO_PULSE_DIS                  = 4   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PULSE_INPUT_SEL                      = 5   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_USE_FOR_SCAN                         = 6   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_CLEAR_CHIPLET_IS_ALIGNED             = 7   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_UNIT_REGION_CLKCMD_ENABLE            = 8   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_DISABLE_PCB_ITR                      = 9   ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_ENABLE_VITL_ALIGN_CHECK              = 10  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PULSE_OUT_DIS                        = 11  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_CHKSW_DD1_MODE                       = 12  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_CHKSW_DD1_E1                         = 13  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_CHKSW_DD1_E2                         = 14  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_CHKSW_DD1_E3                         = 15  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PHASE_COUNTER_ON_CLKCHANGE           = 16  ;
static const uint8_t P9N2_PERV_1_SYNC_CONFIG_PHASE_COUNTER_ON_CLKCHANGE_LEN       = 8   ;

static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DIS_CPM_BUBBLE_CORR               = 0   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_FORCE_THRES_ACT                   = 1   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THRES_TRIP_ENA                    = 2   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THRES_TRIP_ENA_LEN                = 3   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_SAMPLE_ENA                    = 5   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_SAMPLE_PULSE_CNT                  = 6   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_SAMPLE_PULSE_CNT_LEN              = 4   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THRES_ENA                         = 10  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THRES_ENA_LEN                     = 2   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_TRIGGER                       = 12  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_TRIGGER_SEL                   = 13  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THRES_OVERFLOW_MASK               = 14  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_UNUSED                            = 15  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_READ_SEL                      = 16  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_READ_SEL_LEN                  = 4   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_ENABLE_L1                     = 20  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_DTS_ENABLE_L1_LEN                 = 2   ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THERM_CPM_ENABLE_L1               = 35  ;
static const uint8_t P9N2_PERV_1_THERM_MODE_REG_THERM_CPM_ENABLE_L1_LEN           = 2   ;

static const uint8_t P9N2_PERV_TIMEOUT_REG_REGISTER                               = 0   ;
static const uint8_t P9N2_PERV_TIMEOUT_REG_REGISTER_LEN                           = 8   ;

static const uint8_t P9N2_PERV_1_TIMESTAMP_COUNTER_READ_VALUE                     = 0   ;
static const uint8_t P9N2_PERV_1_TIMESTAMP_COUNTER_READ_VALUE_LEN                 = 44  ;
static const uint8_t P9N2_PERV_1_TIMESTAMP_COUNTER_READ_OVERFLOW_ERR              = 44  ;

static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_TIMEBASE_ENABLE                  = 0   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_I_PATH_CORE_SYNC_PERIOD_SELECT   = 1   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_I_PATH_CORE_SYNC_PERIOD_SELECT_LEN = 3   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_I_PATH_SYNC_CHECK_DISABLE        = 4   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_TX_TTYPE_PIB_MST_FSM_STATE_DISABLE = 5   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_RX_TTYPE_1_ON_STEP_ENABLE        = 6   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_MOVE_TO_TB_ON_2X_SYNC_ENABLE     = 7   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_USE_TB_SYNC_MECHANISM            = 8   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_USE_TB_STEP_SYNC                 = 9   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_LOW_ORDER_STEP_VALUE             = 10  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_LOW_ORDER_STEP_VALUE_LEN         = 6   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_DISTRIBUTION_BROADCAST_MODE_ENABLE = 16  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_17_18                 = 17  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_17_18_LEN             = 2   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_19_23                 = 19  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_19_23_LEN             = 5   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_24_25                 = 24  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_24_25_LEN             = 2   ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_TX_TTYPE_PIB_MST_IF_RESET        = 26  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_27                    = 27  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_M_PATH_CLOCK_OFF_ENABLE          = 28  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_0X10_SPARE_29                    = 29  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_XSTOP_GATE                       = 30  ;
static const uint8_t P9N2_PERV_TOD_CHIP_CTRL_REG_STICKY_ERROR_INJECT_ENABLE       = 31  ;

static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X00_DATA_PARITY              = 0   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_M_PATH_0_PARITY               = 1   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_M_PATH_1_PARITY               = 2   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X01_DATA_PARITY              = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X02_DATA_PARITY              = 4   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X03_DATA_PARITY              = 5   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X04_DATA_PARITY              = 6   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X05_DATA_PARITY              = 7   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X06_DATA_PARITY              = 8   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X07_DATA_PARITY              = 9   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_S_PATH_0_PARITY               = 10  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X08_DATA_PARITY              = 11  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X09_DATA_PARITY              = 12  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X0A_DATA_PARITY              = 13  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_M_PATH_0_STEP_CHECK           = 14  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_M_PATH_1_STEP_CHECK           = 15  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_S_PATH_0_STEP_CHECK           = 16  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_STEP_CHECK             = 17  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PSS_HAM                       = 18  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X0B_DATA_PARITY              = 19  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_S_PATH_1_PARITY               = 20  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_S_PATH_1_STEP_CHECK           = 21  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_DELAY_STEP_CHECK_PARITY = 22  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X0C_DATA_PARITY              = 23  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X11_0X12_0X13_0X14_0X15_0X16_DATA_PARITY = 24  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X17_0X18_0X21_0X22_DATA_PARITY = 25  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X1D_0X1E_0X1F_DATA_PARITY    = 26  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X20_DATA_PARITY              = 27  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X23_DATA_PARITY              = 28  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X24_DATA_PARITY              = 29  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X29_DATA_PARITY              = 30  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X30_0X31_0X32_0X33_DATA_PARITY = 31  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X10_DATA_PARITY              = 32  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_SYNC_CHECK             = 33  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_FSM_STATE_PARITY       = 34  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_TIME_PARITY            = 35  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_I_PATH_TIME_OVERFLOW          = 36  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_WOF_LOW_ORDER_STEP_COUNTER_PARITY = 37  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_0                    = 38  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_1                    = 39  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_2                    = 40  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_3                    = 41  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_4                    = 42  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_5                    = 43  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_SLAVE_ADDR_INVALID        = 44  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_SLAVE_WRITE_INVALID       = 45  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_SLAVE_READ_INVALID        = 46  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_SLAVE_ADDR_PARITY         = 47  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_SLAVE_DATA_PARITY         = 48  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_0X27_DATA_PARITY              = 49  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_MASTER_RSP_INFO           = 50  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_MASTER_RSP_INFO_LEN       = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_INVALID              = 53  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_RX_TTYPE_4_DATA_PARITY        = 54  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_MASTER_REQUEST            = 55  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_PIB_RESET_DURING_PIB_ACCESS   = 56  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_EXTERNAL_XSTOP                = 57  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_SPARE_58                      = 58  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_SPARE_59                      = 59  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_SPARE_60                      = 60  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_SPARE_61                      = 61  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_OSCSWITCH_INTERRUPT           = 62  ;
static const uint8_t P9N2_PERV_TOD_ERROR_INJECT_REG_CORE_STEP                     = 63  ;

static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X00_DATA_PARITY                = 0   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_M_PATH_0_PARITY                 = 1   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_M_PATH_1_PARITY                 = 2   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X01_DATA_PARITY                = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X02_DATA_PARITY                = 4   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X03_DATA_PARITY                = 5   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X04_DATA_PARITY                = 6   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X05_DATA_PARITY                = 7   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X06_DATA_PARITY                = 8   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X07_DATA_PARITY                = 9   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_S_PATH_0_PARITY                 = 10  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X08_DATA_PARITY                = 11  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X09_DATA_PARITY                = 12  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X0A_DATA_PARITY                = 13  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_M_PATH_0_STEP_CHECK             = 14  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_M_PATH_1_STEP_CHECK             = 15  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_S_PATH_0_STEP_CHECK             = 16  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_STEP_CHECK               = 17  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PSS_HAM                         = 18  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X0B_DATA_PARITY                = 19  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_S_PATH_1_PARITY                 = 20  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_S_PATH_1_STEP_CHECK             = 21  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_DELAY_STEP_CHECK_PARITY  = 22  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X0C_DATA_PARITY                = 23  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X11_0X12_0X13_0X14_0X15_0X16_DATA_PARITY = 24  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X17_0X18_0X21_0X22_DATA_PARITY = 25  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X1D_0X1E_0X1F_DATA_PARITY      = 26  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X20_DATA_PARITY                = 27  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X23_DATA_PARITY                = 28  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X24_DATA_PARITY                = 29  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X29_DATA_PARITY                = 30  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X30_0X31_0X32_0X33_DATA_PARITY = 31  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X10_DATA_PARITY                = 32  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_SYNC_CHECK               = 33  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_FSM_STATE_PARITY         = 34  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_TIME_PARITY              = 35  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_I_PATH_TIME_OVERFLOW            = 36  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_WOF_LOW_ORDER_STEP_COUNTER_PARITY = 37  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_0                      = 38  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_1                      = 39  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_2                      = 40  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_3                      = 41  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_4                      = 42  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_5                      = 43  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_SLAVE_ADDR_INVALID          = 44  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_SLAVE_WRITE_INVALID         = 45  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_SLAVE_READ_INVALID          = 46  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_SLAVE_ADDR_PARITY           = 47  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_SLAVE_DATA_PARITY           = 48  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_0X27_DATA_PARITY                = 49  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_MASTER_RSP_INFO             = 50  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_MASTER_RSP_INFO_LEN         = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_INVALID                = 53  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_RX_TTYPE_4_DATA_PARITY          = 54  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_MASTER_REQUEST              = 55  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_PIB_RESET_DURING_PIB_ACCESS     = 56  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_EXTERNAL_XSTOP                  = 57  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_SPARE_58                        = 58  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_SPARE_59                        = 59  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_SPARE_60                        = 60  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_SPARE_61                        = 61  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_OSCSWITCH_INTERRUPT             = 62  ;
static const uint8_t P9N2_PERV_TOD_ERROR_MASK_REG_SPARE_63                        = 63  ;

static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X00_DATA_PARITY                     = 0   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_M_PATH_0_PARITY                      = 1   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_M_PATH_1_PARITY                      = 2   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X01_DATA_PARITY                     = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X02_DATA_PARITY                     = 4   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X03_DATA_PARITY                     = 5   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X04_DATA_PARITY                     = 6   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X05_DATA_PARITY                     = 7   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X06_DATA_PARITY                     = 8   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X07_DATA_PARITY                     = 9   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_S_PATH_0_PARITY                      = 10  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X08_DATA_PARITY                     = 11  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X09_DATA_PARITY                     = 12  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X0A_DATA_PARITY                     = 13  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_M_PATH_0_STEP_CHECK                  = 14  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_M_PATH_1_STEP_CHECK                  = 15  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_S_PATH_0_STEP_CHECK                  = 16  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_STEP_CHECK                    = 17  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PSS_HAM                              = 18  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X0B_DATA_PARITY                     = 19  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_S_PATH_1_PARITY                      = 20  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_S_PATH_1_STEP_CHECK                  = 21  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_DELAY_STEP_CHECK_PARITY       = 22  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X0C_DATA_PARITY                     = 23  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X11_0X12_0X13_0X14_0X15_0X16_DATA_PARITY = 24  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X17_0X18_0X21_0X22_DATA_PARITY      = 25  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X1D_0X1E_0X1F_DATA_PARITY           = 26  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X20_DATA_PARITY                     = 27  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X23_DATA_PARITY                     = 28  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X24_DATA_PARITY                     = 29  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X29_DATA_PARITY                     = 30  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X30_0X31_0X32_0X33_DATA_PARITY      = 31  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X10_DATA_PARITY                     = 32  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_SYNC_CHECK                    = 33  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_FSM_STATE_PARITY              = 34  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_TIME_PARITY                   = 35  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_I_PATH_TIME_OVERFLOW                 = 36  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_WOF_LOW_ORDER_STEP_COUNTER_PARITY    = 37  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_0                           = 38  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_1                           = 39  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_2                           = 40  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_3                           = 41  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_4                           = 42  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_5                           = 43  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_SLAVE_ADDR_INVALID               = 44  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_SLAVE_WRITE_INVALID              = 45  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_SLAVE_READ_INVALID               = 46  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_SLAVE_ADDR_PARITY                = 47  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_SLAVE_DATA_PARITY                = 48  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_0X27_DATA_PARITY                     = 49  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_MASTER_RSP_INFO                  = 50  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_MASTER_RSP_INFO_LEN              = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_INVALID                     = 53  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_RX_TTYPE_4_DATA_PARITY               = 54  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_MASTER_REQUEST                   = 55  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_PIB_RESET_DURING_PIB_ACCESS          = 56  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_EXTERNAL_XSTOP                       = 57  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_SPARE_58                             = 58  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_SPARE_59                             = 59  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_SPARE_60                             = 60  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_SPARE_61                             = 61  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_OSCSWITCH_INTERRUPT                  = 62  ;
static const uint8_t P9N2_PERV_TOD_ERROR_REG_SPARE_63                             = 63  ;

static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X00_DATA_PARITY             = 0   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_M_PATH_0_PARITY              = 1   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_M_PATH_1_PARITY              = 2   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X01_DATA_PARITY             = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X02_DATA_PARITY             = 4   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X03_DATA_PARITY             = 5   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X04_DATA_PARITY             = 6   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X05_DATA_PARITY             = 7   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X06_DATA_PARITY             = 8   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X07_DATA_PARITY             = 9   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_S_PATH_0_PARITY              = 10  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X08_DATA_PARITY             = 11  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X09_DATA_PARITY             = 12  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X0A_DATA_PARITY             = 13  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_M_PATH_0_STEP_CHECK          = 14  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_M_PATH_1_STEP_CHECK          = 15  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_S_PATH_0_STEP_CHECK          = 16  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_STEP_CHECK            = 17  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PSS_HAM_CORE_INTERRUPT_MASK  = 18  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X0B_DATA_PARITY             = 19  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_S_PATH_1_PARITY              = 20  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_S_PATH_1_STEP_CHECK          = 21  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_DELAY_STEP_CHECK_PARITY = 22  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X0C_DATA_PARITY             = 23  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X11_0X12_0X13_0X14_0X15_0X16_DATA_PARITY = 24  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X17_0X18_0X21_0X22_DATA_PARITY = 25  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X1D_0X1E_0X1F_DATA_PARITY   = 26  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X20_DATA_PARITY             = 27  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X23_DATA_PARITY             = 28  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X24_DATA_PARITY             = 29  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X29_DATA_PARITY             = 30  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X30_0X31_0X32_0X33_DATA_PARITY = 31  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X10_DATA_PARITY             = 32  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_SYNC_CHECK            = 33  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_FSM_STATE_PARITY      = 34  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_TIME_PARITY           = 35  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_I_PATH_TIME_OVERFLOW_CORE_INTERRUPT = 36  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_WOF_LOW_ORDER_STEP_COUNTER_PARITY = 37  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_0                   = 38  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_1                   = 39  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_2                   = 40  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_3                   = 41  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_4                   = 42  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_5                   = 43  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_SLAVE_ADDR_INVALID       = 44  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_SLAVE_WRITE_INVALID      = 45  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_SLAVE_READ_INVALID       = 46  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_SLAVE_ADDR_PARITY        = 47  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_SLAVE_DATA_PARITY        = 48  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_0X27_DATA_PARITY             = 49  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_MASTER_RSP_INFO          = 50  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_MASTER_RSP_INFO_LEN      = 3   ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_INVALID             = 53  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_RX_TTYPE_4_DATA_PARITY       = 54  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_MASTER_REQUEST           = 55  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_PIB_RESET_DURING_PIB_ACCESS  = 56  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_EXTERNAL_XSTOP               = 57  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_SPARE_58                     = 58  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_SPARE_59                     = 59  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_SPARE_60                     = 60  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_SPARE_61                     = 61  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_OSCSWITCH_INTERRUPT          = 62  ;
static const uint8_t P9N2_PERV_TOD_ERROR_ROUTING_REG_SPARE_63                     = 63  ;

static const uint8_t P9N2_PERV_TOD_FSM_REG_I_PATH_STATE                           = 0   ;
static const uint8_t P9N2_PERV_TOD_FSM_REG_I_PATH_STATE_LEN                       = 4   ;
static const uint8_t P9N2_PERV_TOD_FSM_REG_IS_RUNNING                             = 4   ;
static const uint8_t P9N2_PERV_TOD_FSM_REG_0X24_SPARE_05_07                       = 5   ;
static const uint8_t P9N2_PERV_TOD_FSM_REG_0X24_SPARE_05_07_LEN                   = 3   ;

static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_DELAY_DISABLE                  = 0   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_DELAY_ADJUST_DISABLE           = 1   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_0X06_SPARE_02_04               = 2   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_0X06_SPARE_02_04_LEN           = 3   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_STEP_SELECT         = 5   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR = 6   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR_LEN = 2   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION       = 8   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_LEN   = 4   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_CONSTANT_CPS_ENABLE = 12  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_VALIDITY_COUNT      = 13  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_STEP_CHECK_VALIDITY_COUNT_LEN  = 3   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_0X06_SPARE_16_21               = 16  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_0X06_SPARE_16_21_LEN           = 6   ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_DELAY_ADJUST_VALUE             = 22  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_DELAY_ADJUST_VALUE_LEN         = 10  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_CPS                            = 32  ;
static const uint8_t P9N2_PERV_TOD_I_PATH_CTRL_REG_CPS_LEN                        = 8   ;

static const uint8_t P9N2_PERV_TOD_LOAD_TOD_MOD_REG_FSM_TRIGGER                   = 0   ;
static const uint8_t P9N2_PERV_TOD_LOAD_TOD_MOD_REG_FSM_SYNC_ENABLE               = 1   ;

static const uint8_t P9N2_PERV_TOD_LOAD_TOD_REG_VALUE                             = 0   ;
static const uint8_t P9N2_PERV_TOD_LOAD_TOD_REG_VALUE_LEN                         = 60  ;
static const uint8_t P9N2_PERV_TOD_LOAD_TOD_REG_WOF                               = 60  ;
static const uint8_t P9N2_PERV_TOD_LOAD_TOD_REG_WOF_LEN                           = 4   ;

static const uint8_t P9N2_PERV_TOD_LOW_ORDER_STEP_REG_COUNTER_VALUE               = 0   ;
static const uint8_t P9N2_PERV_TOD_LOW_ORDER_STEP_REG_COUNTER_VALUE_LEN           = 6   ;
static const uint8_t P9N2_PERV_TOD_LOW_ORDER_STEP_REG_0X23_SPARE_06_07            = 6   ;
static const uint8_t P9N2_PERV_TOD_LOW_ORDER_STEP_REG_0X23_SPARE_06_07_LEN        = 2   ;

static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_0_STEP_CREATE_THRESHOLD_ENABLE = 0   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_0_STEP_ALIGN_THRESHOLD_ENABLE = 1   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_1_STEP_CREATE_THRESHOLD_ENABLE = 2   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_1_STEP_ALIGN_THRESHOLD_ENABLE = 3   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_0X0B_SPARE_04_05                = 4   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_0X0B_SPARE_04_05_LEN            = 2   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_DISTR_STEP_SYNC_TX_SYNC_DISABLE = 6   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_CORE_STEP_SYNC_TX_SYNC_DISABLE  = 7   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_PROBE_0_TOGGLE_ENABLE           = 8   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_PROBE_1_TOGGLE_ENABLE           = 9   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_PROBE_2_TOGGLE_ENABLE           = 10  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_PROBE_3_TOGGLE_ENABLE           = 11  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_DISTR_STEP_SYNC_TX_DISABLE      = 12  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_DISTR_STEP_SYNC_TX_TRIGGER      = 13  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_CORE_STEP_SYNC_TX_ENABLE        = 14  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_CORE_STEP_SYNC_TX_TRIGGER       = 15  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_TRACE_ENABLE                    = 16  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_0X0B_SPARE_17                   = 17  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_TRACE_DATA_SELECT               = 18  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_TRACE_DATA_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_0_SYNC_CREATE_COUNTER_ENABLE = 20  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_M_PATH_1_SYNC_CREATE_COUNTER_ENABLE = 21  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_I_PATH_DELAY_TWOS_COMPL_LOAD    = 22  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_I_PATH_DELAY_ADJUST             = 23  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_I_PATH_DELAY_TWOS_COMPL_LOAD_VALUE = 24  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_I_PATH_DELAY_TWOS_COMPL_LOAD_VALUE_LEN = 9   ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_0X0B_SPARE_33_39                = 33  ;
static const uint8_t P9N2_PERV_TOD_MISC_RESET_REG_0X0B_SPARE_33_39_LEN            = 7   ;

static const uint8_t P9N2_PERV_TOD_MOVE_TOD_TO_TB_REG_TRIGGER                     = 0   ;

static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_MODE                   = 0   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_RATE                   = 1   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_RATE_LEN               = 31  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_COUNTER_LOAD_FLAG      = 32  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_COUNTER_LOAD_VALUE     = 33  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_0_STEP_STEER_REG_COUNTER_LOAD_VALUE_LEN = 31  ;

static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_MODE                   = 0   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_RATE                   = 1   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_RATE_LEN               = 31  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_COUNTER_LOAD_FLAG      = 32  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_COUNTER_LOAD_VALUE     = 33  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_1_STEP_STEER_REG_COUNTER_LOAD_VALUE_LEN = 31  ;

static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_OSC_NOT_VALID                = 0   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_OSC_NOT_VALID                = 1   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_ALIGN_DISABLE           = 2   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_ALIGN_DISABLE           = 3   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_STEP_CREATE_DUAL_EDGE_DISABLE  = 4   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_SYNC_CREATE_SPS_SELECT         = 5   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_SYNC_CREATE_SPS_SELECT_LEN     = 3   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_CHECK_CPS_DEVIATION     = 8   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_CHECK_CPS_DEVIATION_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_CHECK_CONSTANT_CPS_ENABLE = 12  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_CHECK_VALIDITY_COUNT    = 13  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_CHECK_VALIDITY_COUNT_LEN = 3   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_CHECK_CPS_DEVIATION     = 16  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_CHECK_CPS_DEVIATION_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_CHECK_CONSTANT_CPS_ENABLE = 20  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_CHECK_VALIDITY_COUNT    = 21  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_CHECK_VALIDITY_COUNT_LEN = 3   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR = 24  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR_LEN = 2   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_LOCAL_STEP_MODE_ENABLE       = 26  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_LOCAL_STEP_MODE_ENABLE       = 27  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_STEER_ENABLE            = 28  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_STEER_ENABLE            = 29  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_0_STEP_ALIGN_CLKGATE_DISABLE   = 30  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_CTRL_REG_1_STEP_ALIGN_CLKGATE_DISABLE   = 31  ;

static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_0_STEP_ALIGN_THRESHOLD       = 0   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_0_STEP_ALIGN_THRESHOLD_LEN   = 8   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_0_CPS                        = 8   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_0_CPS_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_1_STEP_ALIGN_THRESHOLD       = 16  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_1_STEP_ALIGN_THRESHOLD_LEN   = 8   ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_1_CPS                        = 24  ;
static const uint8_t P9N2_PERV_TOD_M_PATH_STATUS_REG_1_CPS_LEN                    = 8   ;

static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_RX_SELECT                  = 0   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_RX_SELECT_LEN              = 3   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_0X01_SPARE_03              = 3   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X0_TX_SELECT               = 4   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X0_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X1_TX_SELECT               = 6   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X1_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X2_TX_SELECT               = 8   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X2_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X3_TX_SELECT               = 10  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X3_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X4_TX_SELECT               = 12  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X4_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X5_TX_SELECT               = 14  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X5_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X6_TX_SELECT               = 16  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X6_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X7_TX_SELECT               = 18  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X7_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X0_TX_ENABLE               = 20  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X1_TX_ENABLE               = 21  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X2_TX_ENABLE               = 22  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X3_TX_ENABLE               = 23  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X4_TX_ENABLE               = 24  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X5_TX_ENABLE               = 25  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X6_TX_ENABLE               = 26  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_X7_TX_ENABLE               = 27  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_0X01_SPARE_28_31           = 28  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_0X01_SPARE_28_31_LEN       = 4   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_I_PATH_DELAY_VALUE         = 32  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_0_CTRL_REG_I_PATH_DELAY_VALUE_LEN     = 8   ;

static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_RX_SELECT                  = 0   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_RX_SELECT_LEN              = 3   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_0X02_SPARE_03              = 3   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X0_TX_SELECT               = 4   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X0_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X1_TX_SELECT               = 6   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X1_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X2_TX_SELECT               = 8   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X2_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X3_TX_SELECT               = 10  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X3_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X4_TX_SELECT               = 12  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X4_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X5_TX_SELECT               = 14  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X5_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X6_TX_SELECT               = 16  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X6_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X7_TX_SELECT               = 18  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X7_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X0_TX_ENABLE               = 20  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X1_TX_ENABLE               = 21  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X2_TX_ENABLE               = 22  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X3_TX_ENABLE               = 23  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X4_TX_ENABLE               = 24  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X5_TX_ENABLE               = 25  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X6_TX_ENABLE               = 26  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_X7_TX_ENABLE               = 27  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_0X02_SPARE_28_31           = 28  ;
static const uint8_t P9N2_PERV_TOD_PRI_PORT_1_CTRL_REG_0X02_SPARE_28_31_LEN       = 4   ;

static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_0_DATA                        = 0   ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_0_DATA_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_1_DATA                        = 8   ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_1_DATA_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_2_DATA                        = 16  ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_2_DATA_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_3_DATA                        = 24  ;
static const uint8_t P9N2_PERV_TOD_PROBE_SELECT_REG_3_DATA_LEN                    = 8   ;

static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_M_PATH_SELECT             = 0   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_M_S_SELECT                = 1   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_M_S_DRAWER_SELECT         = 2   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_S_PATH_1_STEP_CHECK_ENABLE = 3   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_M_PATH_0_STEP_CHECK_ENABLE = 4   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_M_PATH_1_STEP_CHECK_ENABLE = 5   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_S_PATH_0_STEP_CHECK_ENABLE = 6   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_PRI_I_PATH_STEP_CHECK_ENABLE  = 7   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_M_PATH_SELECT             = 8   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_M_S_SELECT                = 9   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_M_S_DRAWER_SELECT         = 10  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_S_PATH_1_STEP_CHECK_ENABLE = 11  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_M_PATH_0_STEP_CHECK_ENABLE = 12  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_M_PATH_1_STEP_CHECK_ENABLE = 13  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_S_PATH_0_STEP_CHECK_ENABLE = 14  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SEC_I_PATH_STEP_CHECK_ENABLE  = 15  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_SWITCH_SYNC_ERROR_DISABLE     = 16  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_I_PATH_STEP_CHECK_CPS_DEVIATION_X_DISABLE = 17  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_STEP_CHECK_ENABLE_CHICKEN_SWITCH = 18  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_0X07_SPARE_19                 = 19  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_0X07_SPARE_20                 = 20  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_MISC_RESYNC_OSC_FROM          = 21  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_0X07_SPARE_22_31              = 22  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_CTRL_REG_0X07_SPARE_22_31_LEN          = 10  ;

static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_SEC_SELECT              = 0   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_SEC_SELECT_LEN          = 3   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_0X08_SPARE_03               = 3   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_0_OSC_NOT_VALID      = 4   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_1_OSC_NOT_VALID      = 5   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_0_STEP_CHECK_VALID   = 6   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_1_STEP_CHECK_VALID   = 7   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_S_PATH_0_STEP_CHECK_VALID   = 8   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_I_PATH_STEP_CHECK_VALID     = 9   ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_S_PATH_1_STEP_CHECK_VALID   = 10  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_SPECIAL                  = 11  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_M_PATH_SELECT           = 12  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_M_S_SELECT              = 13  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_M_S_DRAWER_SELECT       = 14  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_PRI_S_PATH_SELECT           = 15  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_SEC_M_PATH_SELECT           = 16  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_SEC_M_S_SELECT              = 17  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_SEC_M_S_DRAWER_SELECT       = 18  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_SEC_S_PATH_SELECT           = 19  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_RUNNING                  = 20  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_PRIMARY                  = 21  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_SECONDARY                = 22  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_ACTIVE_MASTER            = 23  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_BACKUP_MASTER            = 24  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_IS_SLAVE                    = 25  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_SELECT               = 26  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_S_PATH_SELECT               = 27  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_0_STEP_ALIGN_VALID_SWITCH = 28  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_1_STEP_ALIGN_VALID_SWITCH = 29  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_0X08_SPARE_30               = 30  ;
static const uint8_t P9N2_PERV_TOD_PSS_MSS_STATUS_REG_M_PATH_SWITCH_TRIGGER       = 31  ;

static const uint8_t P9N2_PERV_TOD_RX_TTYPE_CTRL_REG_DATA                         = 0   ;
static const uint8_t P9N2_PERV_TOD_RX_TTYPE_CTRL_REG_DATA_LEN                     = 64  ;

static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_RX_SELECT                  = 0   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_RX_SELECT_LEN              = 3   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_0X03_SPARE_03              = 3   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X0_TX_SELECT               = 4   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X0_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X1_TX_SELECT               = 6   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X1_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X2_TX_SELECT               = 8   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X2_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X3_TX_SELECT               = 10  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X3_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X4_TX_SELECT               = 12  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X4_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X5_TX_SELECT               = 14  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X5_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X6_TX_SELECT               = 16  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X6_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X7_TX_SELECT               = 18  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X7_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X0_TX_ENABLE               = 20  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X1_TX_ENABLE               = 21  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X2_TX_ENABLE               = 22  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X3_TX_ENABLE               = 23  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X4_TX_ENABLE               = 24  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X5_TX_ENABLE               = 25  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X6_TX_ENABLE               = 26  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_X7_TX_ENABLE               = 27  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_0X03_SPARE_28_31           = 28  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_0X03_SPARE_28_31_LEN       = 4   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_I_PATH_DELAY_VALUE         = 32  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_0_CTRL_REG_I_PATH_DELAY_VALUE_LEN     = 8   ;

static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_RX_SELECT                  = 0   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_RX_SELECT_LEN              = 3   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_0X04_SPARE_03              = 3   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X0_TX_SELECT               = 4   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X0_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X1_TX_SELECT               = 6   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X1_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X2_TX_SELECT               = 8   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X2_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X3_TX_SELECT               = 10  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X3_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X4_TX_SELECT               = 12  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X4_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X5_TX_SELECT               = 14  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X5_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X6_TX_SELECT               = 16  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X6_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X7_TX_SELECT               = 18  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X7_TX_SELECT_LEN           = 2   ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X0_TX_ENABLE               = 20  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X1_TX_ENABLE               = 21  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X2_TX_ENABLE               = 22  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X3_TX_ENABLE               = 23  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X4_TX_ENABLE               = 24  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X5_TX_ENABLE               = 25  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X6_TX_ENABLE               = 26  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_X7_TX_ENABLE               = 27  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_0X04_SPARE_28_31           = 28  ;
static const uint8_t P9N2_PERV_TOD_SEC_PORT_1_CTRL_REG_0X04_SPARE_28_31_LEN       = 4   ;

static const uint8_t P9N2_PERV_TOD_START_TOD_REG_FSM_TRIGGER                      = 0   ;
static const uint8_t P9N2_PERV_TOD_START_TOD_REG_0X22_SPARE_01                    = 1   ;
static const uint8_t P9N2_PERV_TOD_START_TOD_REG_FSM_DATA02                       = 2   ;
static const uint8_t P9N2_PERV_TOD_START_TOD_REG_0X22_SPARE_03_07                 = 3   ;
static const uint8_t P9N2_PERV_TOD_START_TOD_REG_0X22_SPARE_03_07_LEN             = 5   ;

static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_PRI_SELECT                     = 0   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0X05_SPARE_01                  = 1   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_M_CPS_ENABLE                   = 2   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_DISABLE            = 3   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_SEC_SELECT                     = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0X05_SPARE_05                  = 5   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR = 6   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_STEP_CHECK_CPS_DEVIATION_FACTOR_LEN = 2   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0_STEP_CHECK_CPS_DEVIATION     = 8   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0_STEP_CHECK_CPS_DEVIATION_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0_STEP_CHECK_CONSTANT_CPS_ENABLE = 12  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0_STEP_CHECK_VALIDITY_COUNT    = 13  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_0_STEP_CHECK_VALIDITY_COUNT_LEN = 3   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_1_STEP_CHECK_CPS_DEVIATION     = 16  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_1_STEP_CHECK_CPS_DEVIATION_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_1_STEP_CHECK_CONSTANT_CPS_ENABLE = 20  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_1_STEP_CHECK_VALIDITY_COUNT    = 21  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_1_STEP_CHECK_VALIDITY_COUNT_LEN = 3   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_ERROR_DISABLE      = 24  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_CHECK_M_CPS_DISABLE = 25  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_CHECK_CPS_DEVIATION_FACTOR = 26  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_CHECK_CPS_DEVIATION_FACTOR_LEN = 2   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_CHECK_CPS_DEVIATION = 28  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_CHECK_CPS_DEVIATION_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_MISS_COUNT_MAX     = 32  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_CTRL_REG_REMOTE_SYNC_MISS_COUNT_MAX_LEN = 8   ;

static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_M_0_STEP_ALIGN_FSM_STATE     = 0   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_M_0_STEP_ALIGN_FSM_STATE_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_M_1_STEP_ALIGN_FSM_STATE     = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_M_1_STEP_ALIGN_FSM_STATE_LEN = 4   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_I_DELAY_ADJUST_RATIO         = 8   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_I_DELAY_ADJUST_RATIO_LEN     = 5   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0X0A_SPARE_13_15             = 13  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0X0A_SPARE_13_15_LEN         = 3   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0_CPS                        = 16  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0_CPS_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_1_CPS                        = 24  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_1_CPS_LEN                    = 8   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0_REMOTE_SYNC_LATE_SYNC_COUNT = 32  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_0_REMOTE_SYNC_LATE_SYNC_COUNT_LEN = 8   ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_1_REMOTE_SYNC_LATE_SYNC_COUNT = 40  ;
static const uint8_t P9N2_PERV_TOD_S_PATH_STATUS_REG_1_REMOTE_SYNC_LATE_SYNC_COUNT_LEN = 8   ;

static const uint8_t P9N2_PERV_TOD_TIMER_REG_VALUE                                = 0   ;
static const uint8_t P9N2_PERV_TOD_TIMER_REG_VALUE_LEN                            = 60  ;
static const uint8_t P9N2_PERV_TOD_TIMER_REG_0X0D_SPARE_60_62                     = 60  ;
static const uint8_t P9N2_PERV_TOD_TIMER_REG_0X0D_SPARE_60_62_LEN                 = 3   ;
static const uint8_t P9N2_PERV_TOD_TIMER_REG_STATUS                               = 63  ;

static const uint8_t P9N2_PERV_TOD_TRACE_DATA_1_REG_SET                           = 0   ;
static const uint8_t P9N2_PERV_TOD_TRACE_DATA_1_REG_SET_LEN                       = 64  ;

static const uint8_t P9N2_PERV_TOD_TRACE_DATA_2_REG_SET                           = 0   ;
static const uint8_t P9N2_PERV_TOD_TRACE_DATA_2_REG_SET_LEN                       = 64  ;

static const uint8_t P9N2_PERV_TOD_TRACE_DATA_3_REG_SET                           = 0   ;
static const uint8_t P9N2_PERV_TOD_TRACE_DATA_3_REG_SET_LEN                       = 64  ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_0_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_1_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_2_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_3_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_4_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_5_REG_TRIGGER                         = 0   ;

static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_MOVE_TO_TB_CORE_ADDRESS      = 0   ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_MOVE_TO_TB_CORE_ADDRESS_LEN  = 24  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_MOVE_TO_TB_CORE_ID           = 24  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_MOVE_TO_TB_CORE_ID_LEN       = 8   ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_4_SEND_MODE                  = 32  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_4_SEND_ENABLE                = 33  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_0X27_SPARE_34                = 34  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_MOVE_TO_TB_CORE_ADDRESS_ENABLE = 35  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_0X27_SPARE_36                = 36  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_PIB_FSM_STATE                = 37  ;
static const uint8_t P9N2_PERV_TOD_TX_TTYPE_CTRL_REG_PIB_FSM_STATE_LEN            = 3   ;

static const uint8_t P9N2_PERV_TOD_VALUE_REG_VALUE                                = 0   ;
static const uint8_t P9N2_PERV_TOD_VALUE_REG_VALUE_LEN                            = 60  ;
static const uint8_t P9N2_PERV_TOD_VALUE_REG_WOF_COUNTER                          = 60  ;
static const uint8_t P9N2_PERV_TOD_VALUE_REG_WOF_COUNTER_LEN                      = 4   ;

static const uint8_t P9N2_PERV_1_TRACE_HI_DATA_REG_DATA                           = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_HI_DATA_REG_DATA_LEN                       = 64  ;

static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_DATA                           = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_DATA_LEN                       = 32  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_ADDRESS                        = 32  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_ADDRESS_LEN                    = 10  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_LAST_BANK                      = 42  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_LAST_BANK_LEN                  = 9   ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_LAST_BANK_VALID                = 51  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_WRITE_ON_RUN                   = 52  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_RUNNING                        = 53  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_HOLD_ADDRESS                   = 54  ;
static const uint8_t P9N2_PERV_1_TRACE_LO_DATA_REG_HOLD_ADDRESS_LEN               = 10  ;

static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_STORE_ON_TRIG_MODE           = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_WRITE_ON_RUN_MODE            = 1   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_EXTEND_TRIG_MODE             = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_EXTEND_TRIG_MODE_LEN         = 8   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_BANK_MODE                    = 10  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_ENH_MODE                     = 11  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_LOCAL_CLOCK_GATE_CONTROL     = 12  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_LOCAL_CLOCK_GATE_CONTROL_LEN = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_SELECT_CONTROL               = 14  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_SELECT_CONTROL_LEN           = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_RUN_HOLD_OFF                 = 18  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_RUN_STATUS                   = 19  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_RUN_STICKY                   = 20  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_DISABLE_BANK_EDGE_DETECT     = 21  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_CONTROL_UNUSED               = 22  ;
static const uint8_t P9N2_PERV_1_TRACE_TRCTRL_CONFIG_CONTROL_UNUSED_LEN           = 6   ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_0_CMP_MSK_LT_B_TO_63         = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_0_CMP_MSK_LT_B_TO_63_LEN     = 64  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_1_CMP_MSK_LT_B_64_TO_87      = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_1_CMP_MSK_LT_B_64_TO_87_LEN  = 24  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_2_PATTERNA                   = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_2_PATTERNA_LEN               = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_2_PATTERNB                   = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_2_PATTERNB_LEN               = 24  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_3_PATTERNC                   = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_3_PATTERNC_LEN               = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_3_PATTERND                   = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_3_PATTERND_LEN               = 24  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_4_MASKA                      = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_4_MASKA_LEN                  = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_4_MASKB                      = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_4_MASKB_LEN                  = 24  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_5_MASKC                      = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_5_MASKC_LEN                  = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_5_MASKD                      = 24  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_5_MASKD_LEN                  = 24  ;

static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_DISABLE_COMPRESSION        = 0   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_ERROR_BIT_COMPRESSION_CARE_MASK = 1   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHA_MUXSEL              = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHA_MUXSEL_LEN          = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHB_MUXSEL              = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHB_MUXSEL_LEN          = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHC_MUXSEL              = 6   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHC_MUXSEL_LEN          = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHD_MUXSEL              = 8   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCHD_MUXSEL_LEN          = 2   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_OR_MASK              = 10  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_OR_MASK_LEN          = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_AND_MASK             = 14  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_AND_MASK_LEN         = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_OR_MASK              = 18  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_OR_MASK_LEN          = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_AND_MASK             = 22  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_AND_MASK_LEN         = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_NOT_MODE             = 26  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_NOT_MODE             = 27  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCH_NOT_MODE             = 28  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_MATCH_NOT_MODE_LEN         = 4   ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_ERROR_CMP_MASK             = 32  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_ERROR_CMP_PATTERN          = 33  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG0_ERR_CMP              = 34  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_TRIG1_ERR_CMP              = 35  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_DD1_STRETCH_TRIGGER_PULSES = 36  ;
static const uint8_t P9N2_PERV_1_TRACE_TRDATA_CONFIG_9_SPARE_LT                   = 37  ;

static const uint8_t P9N2_PERV_FSI2PIB_TRUE_MASK_REG                              = 0   ;
static const uint8_t P9N2_PERV_FSI2PIB_TRUE_MASK_REG_LEN                          = 32  ;

static const uint8_t P9N2_PERV_FSISHIFT_TRUE_MASK_REG                             = 0   ;
static const uint8_t P9N2_PERV_FSISHIFT_TRUE_MASK_REG_LEN                         = 32  ;

static const uint8_t P9N2_PERV_1_VMEAS_RESULT_REG_RESULT                          = 0   ;
static const uint8_t P9N2_PERV_1_VMEAS_RESULT_REG_RESULT_LEN                      = 8   ;

static const uint8_t P9N2_PERV_FSII2C_WATER_MARK_REGISTER_A_WATERMARK_REG_0       = 16  ;
static const uint8_t P9N2_PERV_FSII2C_WATER_MARK_REGISTER_A_WATERMARK_REG_0_LEN   = 16  ;

static const uint8_t P9N2_PERV_1_WRITE_PROTECT_ENABLE_REG_RING_LOCKING            = 0   ;
static const uint8_t P9N2_PERV_1_WRITE_PROTECT_ENABLE_REG_RESERVED_RING_LOCKING   = 1   ;

static const uint8_t P9N2_PERV_1_WRITE_PROTECT_RINGS_REG_RINGS                    = 0   ;
static const uint8_t P9N2_PERV_1_WRITE_PROTECT_RINGS_REG_RINGS_LEN                = 16  ;

static const uint8_t P9N2_PERV_1_XFIR_IN0                                         = 0   ;
static const uint8_t P9N2_PERV_1_XFIR_IN1                                         = 1   ;
static const uint8_t P9N2_PERV_1_XFIR_IN2                                         = 2   ;
static const uint8_t P9N2_PERV_1_XFIR_IN3                                         = 3   ;
static const uint8_t P9N2_PERV_1_XFIR_IN4                                         = 4   ;
static const uint8_t P9N2_PERV_1_XFIR_IN5                                         = 5   ;
static const uint8_t P9N2_PERV_1_XFIR_IN6                                         = 6   ;
static const uint8_t P9N2_PERV_1_XFIR_IN7                                         = 7   ;
static const uint8_t P9N2_PERV_1_XFIR_IN8                                         = 8   ;
static const uint8_t P9N2_PERV_1_XFIR_IN9                                         = 9   ;
static const uint8_t P9N2_PERV_1_XFIR_IN10                                        = 10  ;
static const uint8_t P9N2_PERV_1_XFIR_IN11                                        = 11  ;
static const uint8_t P9N2_PERV_1_XFIR_IN12                                        = 12  ;
static const uint8_t P9N2_PERV_1_XFIR_IN13                                        = 13  ;
static const uint8_t P9N2_PERV_1_XFIR_IN14                                        = 14  ;
static const uint8_t P9N2_PERV_1_XFIR_IN15                                        = 15  ;
static const uint8_t P9N2_PERV_1_XFIR_IN16                                        = 16  ;
static const uint8_t P9N2_PERV_1_XFIR_IN17                                        = 17  ;
static const uint8_t P9N2_PERV_1_XFIR_IN18                                        = 18  ;
static const uint8_t P9N2_PERV_1_XFIR_IN19                                        = 19  ;
static const uint8_t P9N2_PERV_1_XFIR_IN20                                        = 20  ;
static const uint8_t P9N2_PERV_1_XFIR_IN21                                        = 21  ;
static const uint8_t P9N2_PERV_1_XFIR_IN21_LEN                                    = 5   ;
static const uint8_t P9N2_PERV_1_XFIR_IN26                                        = 26  ;

static const uint8_t P9N2_PERV_1_XSTOP1_MASK_B                                    = 0   ;
static const uint8_t P9N2_PERV_1_XSTOP1_ALIGNED                                   = 1   ;
static const uint8_t P9N2_PERV_1_XSTOP1_TRIGGER_OPCG_ON                           = 2   ;
static const uint8_t P9N2_PERV_1_XSTOP1_WAIT_ALLWAYS                              = 3   ;
static const uint8_t P9N2_PERV_1_XSTOP1_PERV                                      = 4   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT1                                     = 5   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT2                                     = 6   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT3                                     = 7   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT4                                     = 8   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT5                                     = 9   ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT6                                     = 10  ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT7                                     = 11  ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT8                                     = 12  ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT9                                     = 13  ;
static const uint8_t P9N2_PERV_1_XSTOP1_UNIT10                                    = 14  ;
static const uint8_t P9N2_PERV_1_XSTOP1_WAIT_CYCLES                               = 48  ;
static const uint8_t P9N2_PERV_1_XSTOP1_WAIT_CYCLES_LEN                           = 12  ;

static const uint8_t P9N2_PERV_1_XSTOP2_MASK_B                                    = 0   ;
static const uint8_t P9N2_PERV_1_XSTOP2_ALIGNED                                   = 1   ;
static const uint8_t P9N2_PERV_1_XSTOP2_TRIGGER_OPCG_ON                           = 2   ;
static const uint8_t P9N2_PERV_1_XSTOP2_WAIT_ALLWAYS                              = 3   ;
static const uint8_t P9N2_PERV_1_XSTOP2_PERV                                      = 4   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT1                                     = 5   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT2                                     = 6   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT3                                     = 7   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT4                                     = 8   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT5                                     = 9   ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT6                                     = 10  ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT7                                     = 11  ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT8                                     = 12  ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT9                                     = 13  ;
static const uint8_t P9N2_PERV_1_XSTOP2_UNIT10                                    = 14  ;
static const uint8_t P9N2_PERV_1_XSTOP2_WAIT_CYCLES                               = 48  ;
static const uint8_t P9N2_PERV_1_XSTOP2_WAIT_CYCLES_LEN                           = 12  ;

static const uint8_t P9N2_PERV_1_XSTOP3_MASK_B                                    = 0   ;
static const uint8_t P9N2_PERV_1_XSTOP3_ALIGNED                                   = 1   ;
static const uint8_t P9N2_PERV_1_XSTOP3_TRIGGER_OPCG_ON                           = 2   ;
static const uint8_t P9N2_PERV_1_XSTOP3_WAIT_ALLWAYS                              = 3   ;
static const uint8_t P9N2_PERV_1_XSTOP3_PERV                                      = 4   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT1                                     = 5   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT2                                     = 6   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT3                                     = 7   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT4                                     = 8   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT5                                     = 9   ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT6                                     = 10  ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT7                                     = 11  ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT8                                     = 12  ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT9                                     = 13  ;
static const uint8_t P9N2_PERV_1_XSTOP3_UNIT10                                    = 14  ;
static const uint8_t P9N2_PERV_1_XSTOP3_WAIT_CYCLES                               = 48  ;
static const uint8_t P9N2_PERV_1_XSTOP3_WAIT_CYCLES_LEN                           = 12  ;

static const uint8_t P9N2_PERV_1_XSTOP_INTERRUPT_REG_XSTOP                        = 0   ;

static const uint8_t P9N2_PERV_1_XTRA_TRACE_MODE_DATA                             = 0   ;
static const uint8_t P9N2_PERV_1_XTRA_TRACE_MODE_DATA_LEN                         = 42  ;

#endif

OpenPOWER on IntegriCloud