summaryrefslogtreecommitdiff
path: root/parse_datasheet/output/gbe.py
blob: 7d3aa666e1dc4b7cf63eb7d4ef8b1d439ecb3544 (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
{'AIT': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'AIFS',
                     'description': ['Adaptive IFS Value',
                                     'Adaptive IFS throttles back-to-back transmissions in the transmit packet buffer and delays their transfer to the CSMA/CD transmit function. Normally, this register should be set to 0b. However, if additional delay is desired between back-to-back transmit packets, then this register can be set with a value greater than zero (0). This feature can be helpful in high collision half-duplex environments.',
                                     'In order for AIFS to take effect it should be larger than the minimum IFS value defined in IEEE 802.3 standard. AIFS has no effect on transmissions that occur immediately after receives or transmissions that are not back-to-back. In addition, it has no effect on re-transmission timing (retransmission after collisions).',
                                     'The AIFS value is additive to the TIPG.IPGT value. ',
                                     'This time unit for this value is speed dependent:',
                                     '1000Mbps is 8ns',
                                     '100Mbps is 80ns ',
                                     '10 Mbps is 800ns'],
                     'range': (15, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 1112,
         'offset_end': (1115, None),
         'offset_start': (1112, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'AIT',
         'reg_name': 'AIT',
         'size': 32,
         'table_ref': '37-69',
         'title_desc': 'Adaptive IFS Throttle Register',
         'view': 'PCI 3'},
 'ALGNERRC': {'bar': 'CSRBAR',
              'bus_device_function': 'M:2:0',
              'default': 0,
              'description': None,
              'fields': [{'access': 'RC',
                          'acronym': 'ALGNERRC',
                          'description': ['Alignment error count'],
                          'range': (31, 0),
                          'reset': 0,
                          'sticky': ''}],
              'offset': 16388,
              'offset_end': (16391, None),
              'offset_start': (16388, None),
              'power_well': 'Gbe1/2:',
              'recurring': None,
              'reg_base_name': 'ALGNERRC',
              'reg_name': 'ALGNERRC',
              'size': 32,
              'table_ref': '37-80',
              'title_desc': 'Alignment Error Count Register',
              'view': 'PCI 3'},
 'BPRC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'BPRC',
                      'description': ['Number of broadcast packets received'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16504,
          'offset_end': (16507, None),
          'offset_start': (16504, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'BPRC',
          'reg_name': 'BPRC',
          'size': 32,
          'table_ref': '37-104',
          'title_desc': 'Broadcast Packets Received Count Register',
          'view': 'PCI 3'},
 'BPTC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'BPTC',
                      'description': ['Number of broadcast packets transmitted count'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16628,
          'offset_end': (16631, None),
          'offset_start': (16628, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'BPTC',
          'reg_name': 'BPTC',
          'size': 32,
          'table_ref': '37-128',
          'title_desc': 'Broadcast Packets Transmitted Count Register',
          'view': 'PCI 3'},
 'CEXTERR': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'CEXTERR',
                         'description': ['Number of packets received with a carrier extension error.'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16444,
             'offset_end': (16447, None),
             'offset_start': (16444, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'CEXTERR',
             'reg_name': 'CEXTERR',
             'size': 32,
             'table_ref': '37-90',
             'title_desc': 'Carrier Extension Error Count Register',
             'view': 'PCI 3'},
 'COLC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'COLC',
                      'description': ['Total number of collisions experienced by the transmitter'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16424,
          'offset_end': (16427, None),
          'offset_start': (16424, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'COLC',
          'reg_name': 'COLC',
          'size': 32,
          'table_ref': '37-87',
          'title_desc': 'Collision Count Register',
          'view': 'PCI 3'},
 'CRCERRS': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'CRCERRS',
                         'description': ['CRC error count'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16384,
             'offset_end': (16387, None),
             'offset_start': (16384, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'CRCERRS',
             'reg_name': 'CRCERRS',
             'size': 32,
             'table_ref': '37-79',
             'title_desc': 'CRC Error Count Register',
             'view': 'PCI 3'},
 'CTRL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 2569,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 31),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'VME',
                      'description': ['VLAN Mode Enable.',
                                      '0 = VLAN Mode Disabled.1 = VLAN Mode Enabled. All packets transmitted have an 802.1q header added to the packet. The contents of the header come from the transmit descriptor and from the VLAN type register. On receive, VLAN information is stripped from 802.1q packets. See "802.1q VLAN Support" on page 1400 for more details.'],
                      'range': (30, 30),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (29, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TFCE',
                      'description': ['Transmit Flow Control Enable.',
                                      '0 = Transmit Flow Control Disabled.1 = Transmit Flow Control Enabled. Flow control packets (XON & XOFF frames) will be transmitted based on receiver fullness. If Auto-Negotiation is enabled, this bit is set to the negotiated duplex value. See "Physical Layer Auto-Negotiation & Link Setup Features" on page 1394 for more information about Auto-Negotiation.'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RFCE',
                      'description': ['Receive Flow Control Enable.',
                                      '0 = Receive Flow Control Disabled.1 = Receive Flow Control Enabled. Indicates the device will respond to the reception of flow control packets. Reception of flow control packets requires the correct loading of the FCAH/FCAL & FCT registers. If Auto-Negotiation is enabled, this bit is set to the negotiated duplex value. See "Physical Layer Auto-Negotiation & Link Setup Features" on page 1394 for more information about Auto-Negotiation.'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RST',
                      'description': ['Device Reset, also referred to as a "Soft Reset". Normally 0, writing 1 initiates the reset. This bit is self clearing.',
                                      'CTRL.RST may be used to globally reset the entire GbE hardware. This register is provided primarily as a last-ditch software mechanism to recover from an indeterminate or suspected hung hardware state. Most registers (receive, transmit, interrupt, statistics, etc.), and state machines will be set to their power-on reset values, approximating the state following a power-on or Unit Reset. However, the Packet Buffer Allocation Register (PBA) retains its value through a global reset.Note:Software must first disable both transmit & receive operation using the TCTL.EN and RCTL.EN register bits before asserting CTRL.RST. To ensure that the global device reset has fully completed and that the controller will respond to subsequent accesses, software must wait a minimum of 5 milliseconds after setting CTRL.RST before attempting to check if the bit has cleared or to access any other GbE device register.'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ADVD3WUC',
                      'description': ['D3Cold WakeUp Capability Advertisement Enable. ',
                                      'When set, D3Cold wakeup capability may be advertised based on whether the AUX_PWR pin advertises presence of auxiliary power (see section 2.13.3 for details). When 0, D3Cold wakeup capability will not be advertised even if AUX_PWR presence is indicated. Formerly used as SDP2 pin data value, initial value is EEPROM-configurable',
                                      '*Note that this bit is loaded from the EEPROM, if present'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 13),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FRCDPLX',
                      'description': ['Force Duplex.',
                                      '0 = Mode is Full-Duplex, regardless of the FD setting.1 =CTRL.FD bit sets duplex mode.'],
                      'range': (12, 12),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FRCSPD',
                      'description': ['Force Speed.',
                                      '0 = Default of 1Gbps is used to set the MAC speed. See "Physical Layer Auto-Negotiation & Link Setup Features" on page 1394 for more details.1 =CTRL.SPEED bits set the MAC speed.Note:This bit is superseded by the CTRL_EXT.SPD_BYPS bit which has a similar function.Note:*Note that this bit is loaded from the EEPROM, if present'],
                      'range': (11, 11),
                      'reset': 1,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (10, 10),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SPEED',
                      'description': ['Speed selection.',
                                      'These bits are written by software (assuming, after reading the PHY registers through the MDIO interface) to set the MAC speed configuration. See "Physical Layer Auto-Negotiation & Link Setup Features" on page 1394 for details.',
                                      '? 00 => 10 Mbps',
                                      '? 01 => 100 Mbps',
                                      '? 10 => 1000 Mbps',
                                      '? 11 => reservedNote:These bits affect the MAC speed setting only if CTRL_EXT.SPD_BYPS or CTRL.FRCSPD are used.'],
                      'range': (9, 8),
                      'reset': 2,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Reserved',
                      'description': ['Reserved'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SLU',
                      'description': ['Set Link Up.',
                                      "SLU must be set to '1' to enable the MAC. This bit may also be initialized by the APME bit in the EEPROM Initialization Control Word3, if an EEPROM is used."],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ['Reserved. Must be set to 0.'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 1,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must write '0' to this bit.1 ="],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FD',
                      'description': ['Full Duplex. Controls the MAC duplex setting.',
                                      '0 = Half Duplex1 = Full Duplex',
                                      "In half-duplex mode, EP80579's GbE transmits carrier extended packets and can receive both carrier extended packets, and packets transmitted with bursting.",
                                      '*Note that this bit is loaded from the EEPROM, if present'],
                      'range': (0, 0),
                      'reset': 1,
                      'sticky': ''}],
          'offset': 0,
          'offset_end': (3, None),
          'offset_start': (0, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'CTRL',
          'reg_name': 'CTRL',
          'size': 32,
          'table_ref': '37-25',
          'title_desc': 'Device Control Register',
          'view': 'PCI 3'},
 'CTRL_AUX': {'bar': 'CSRBAR',
              'bus_device_function': 'M:2:0',
              'default': 256,
              'description': None,
              'fields': [{'access': 'RO',
                          'acronym': 'RSVD',
                          'description': ['Reserved'],
                          'range': (31, 18),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'RMII_LOG_FIX',
                          'description': ['Enable logic change to fix RMII 100mbps TX dropped packet data.',
                                          "To enable this mode of operation, set this bit to a '1'. When enabled, the fix modifies the legacy new-packet signalling logic in the transmit path to prevent the first 8 bytes of packet data from being dropped when operating in RMII mode and a line speed of 100mbps."],
                          'range': (17, 17),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'RMII_FREQ_FIX',
                          'description': ['Disable DMA frequency change to fix RMII 100mbps TX dropped packet data.',
                                          'This is the default mode of operation. ',
                                          "To disable this mode of operation, set this bit to a '1'. This must be disabled if FIX2 is enabled.",
                                          'When enabled, sets the DMA clock frequency to 50MHz when operating in RMII mode. This produces a favorable frequency ratio between DMA and MAC clocks that prevents the first 8 bytes of transmit packet data from being dropped when operating in RMII mode and a line speed of 100mbps.'],
                          'range': (16, 16),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RO',
                          'acronym': 'RSVD',
                          'description': ['Reserved'],
                          'range': (15, 12),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'END_SEL',
                          'description': ['Selects whether the descriptor or packet data is controlled by endianness configuration.',
                                          '00 - descriptor and packet transfers use CTRL_AUX.ENDIANESS',
                                          '01 - descriptor uses CTL_AUX.ENDIANESS, packet uses default',
                                          '10 - descriptor uses default, packet uses CTRL_AUX.ENDIANESS',
                                          '11 - all transfers use CTRL_AUX.ENDIANESS'],
                          'range': (11, 10),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'ENDIANESS',
                          'description': ['Endianness:',
                                          'These bits control the endianness of the data in memory. These settings apply to all internal bus transactions, including packet data and descriptors',
                                          "'00' - LW Little--Endian, Byte Big-Endian ",
                                          "'01' - LW Little-Endian, Byte Little-Endian (default)",
                                          "'10' - LW Big-Endian, Byte Big-Endian",
                                          "'11' - LW Big-Endian, Byte Little-Endian",
                                          'Refer to Section 37.5.14, "Endianness" for further details.'],
                          'range': (9, 8),
                          'reset': 1,
                          'sticky': ''},
                         {'access': 'RO',
                          'acronym': 'RSVD',
                          'description': ['Reserved'],
                          'range': (7, 1),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'RGMII_RMII',
                          'description': ['RGMII/RMII Translation Gasket Select',
                                          "? '0'  -  RGMII",
                                          "? '1'  -  RMII"],
                          'range': (0, 0),
                          'reset': 0,
                          'sticky': ''}],
              'offset': 224,
              'offset_end': (227, None),
              'offset_start': (224, None),
              'power_well': 'Gbe1/2:',
              'recurring': None,
              'reg_base_name': 'CTRL_AUX',
              'reg_name': 'CTRL_AUX',
              'size': 32,
              'table_ref': '37-28',
              'title_desc': 'Auxiliary Device Control Register',
              'view': 'PCI 3'},
 'CTRL_EXT': {'bar': 'CSRBAR',
              'bus_device_function': 'M:2:0',
              'default': 0,
              'description': None,
              'fields': [{'access': 'RV',
                          'acronym': 'Rsvd',
                          'description': ['Reserved'],
                          'range': (31, 25),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'RMII_RX_MODE',
                          'description': ['RMII gasket receive mode select:',
                                          "0 = For proper 100mbps receive operation, after assertion of the RMII CRS_DV signal on GBEn_RXCTL, the RMII gasket requires that a minimum of two di-bits of '00' appear on GBEn_RXDATA[1:0] before the preamble appears.1 = For proper 100mbps receive operation, the RMII gasket requires that CRS_DV be asserted on GBEn_RXCTL synchronously with GBE_REFCLK_RMII and on the same cycle in which the first di-bit of the preamble appears on GBEn_RXDATA[1:0].",
                                          "0 is the default value of this bit and makes the RMII gasket compatible with RMII PHYs that assert CRS_DV as soon as the receive medium is non-idle, and subsequently drive '00' on RXD[1:0] until proper receive signal decoding has been achieved (per the RMII Specification, Revision 1.2).",
                                          'Setting this bit to a 1 makes the gasket compatible with RMII PHYs that assert CRS_DV simultaneously with the start of the preamble driven on RXD[1:0]. While this CRS_DV signalling mode does not scrictly conform to the RMII specification, it is provided to allow compatibility with PHY devices that use this alternate method of asserting CRS_DV at the start of the packet.',
                                          'This bit must be set to the proper state that corresponds to the CRS_DV behavior of the attached RMII PHY, otherwise 100mbps packets cannot be properly received by the GbE.',
                                          'This bit does not affect transmit operations.'],
                          'range': (24, 24),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'LINK_MODE',
                          'description': ['Link Mode. This controls which interface is used to talk to the link.',
                                          '? 00 => GMII/MII mode',
                                          '? 01 => reserved',
                                          '? 10 => reserved',
                                          '? 11 => reserved',
                                          '? *Note that this bit is loaded from the EEPROM, if present'],
                          'range': (23, 22),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RV',
                          'acronym': 'Rsvd',
                          'description': ['Reserved'],
                          'range': (21, 16),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'SPD_BYPS',
                          'description': ['Speed Select Bypass.',
                                          "0 = Normal speed detection mechanisms are used to determine the speed of the MAC.1 = All speed detection mechanisms are bypassed and the MAC is immediately set to the setting of CTRL.SPEED.Note:CTRL_EXT.SPD_BYPS performs a function similar to CTRL.FRCSPD in that the device's speed settings are determined by the value software writes to the CTRL.SPEED bits. However, when using CTRL_EXT.SPD_BYPS the CTRL.SPEED setting takes effect immediately, when using CTRL.FRCSPD the CTRL.SPEED setting waits until after the device's clock switching circuitry performs the change."],
                          'range': (15, 15),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RV',
                          'acronym': 'Rsvd',
                          'description': ['Reserved'],
                          'range': (14, 14),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RW',
                          'acronym': 'EE_RST',
                          'description': ['EEPROM Reset',
                                          'Initiates a "reset-like" event to the EEPROM function. This causes the EEPROM to be read as if a UNIT_RESET had occurred. All device functions should be disabled prior to setting this bit. This bit is self-clearing.',
                                          'NOTE: this will not cause the controller to detect the EEPROM'],
                          'range': (13, 13),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RV',
                          'acronym': 'Rsvd',
                          'description': ['Reserved'],
                          'range': (12, 12),
                          'reset': 0,
                          'sticky': ''},
                         {'access': 'RV',
                          'acronym': 'Rsvd',
                          'description': ['Reserved'],
                          'range': (11, 0),
                          'reset': 0,
                          'sticky': ''}],
              'offset': 24,
              'offset_end': (27, None),
              'offset_start': (24, None),
              'power_well': 'Gbe1/2:',
              'recurring': None,
              'reg_base_name': 'CTRL_EXT',
              'reg_name': 'CTRL_EXT',
              'size': 32,
              'table_ref': '37-27',
              'title_desc': 'Extended Device Control Register',
              'view': 'PCI 3'},
 'DC': {'bar': 'CSRBAR',
        'bus_device_function': 'M:2:0',
        'default': 0,
        'description': None,
        'fields': [{'access': 'RC',
                    'acronym': 'DC',
                    'description': ['Number of defer events.'],
                    'range': (31, 0),
                    'reset': 0,
                    'sticky': ''}],
        'offset': 16432,
        'offset_end': (16435, None),
        'offset_start': (16432, None),
        'power_well': 'Gbe1/2:',
        'recurring': None,
        'reg_base_name': 'DC',
        'reg_name': 'DC',
        'size': 32,
        'table_ref': '37-88',
        'title_desc': 'Defer Count Register',
        'view': 'PCI 3'},
 'ECOL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'ECOL',
                      'description': ['Number of packets with more than 16 collisions'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16408,
          'offset_end': (16411, None),
          'offset_start': (16408, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ECOL',
          'reg_name': 'ECOL',
          'size': 32,
          'table_ref': '37-84',
          'title_desc': 'Excessive Collisions Count Register',
          'view': 'PCI 3'},
 'EEPROM_CTRL': {'bar': 'CSRBAR',
                 'bus_device_function': 'M:2:0',
                 'default': u'00000X1Xh',
                 'description': None,
                 'fields': [{'access': 'RO',
                             'acronym': 'RSVD',
                             'description': ['Reserved'],
                             'range': (31, 10),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RO',
                             'acronym': 'EE_SIZE',
                             'description': ['EEPROM Size. ',
                                             '0 Reserved',
                                             '1 4096-bit (256 word) NM93C66 compatible EEPROM',
                                             'If an EEPROM is present, this bit indicates its size, based on acknowledges seen during EEPROM scans of different addresses. ',
                                             'This bit is read-only.',
                                             'NOTE: this bit will not be updated as a result of anything but a power up reset.'],
                             'range': (9, 9),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RO',
                             'acronym': 'EE_PRES',
                             'description': ['EEPROM Present',
                                             'This bit attempts to indicate if an EEPROM is present by monitoring the EE_DO input for a active-low "acknowledge" by the serial EEPROM during initial EEPROM scan. If no EEPROM is present, the EE_DO line will remain pulled-high and thus no acknowledge will be seen. ',
                                             '1=EEPROM present; ',
                                             '0=no EEPROM.',
                                             'NOTE: this bit will not be set except as a result of EEPROM detection during power up reset.'],
                             'range': (8, 8),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RO',
                             'acronym': 'EE_GNT',
                             'description': ['Grant EEPROM Access',
                                             'When this bit is 1 the software can access the EEPROM using the SK, CS, DI, and DO bits.'],
                             'range': (7, 7),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'EE_REQ',
                             'description': ['Request EEPROM Access',
                                             'The software must write a 1 to this bit to get direct EEPROM access. It has access when EE_GNT is 1. When the software completes the access it must write a 0.'],
                             'range': (6, 6),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RO',
                             'acronym': 'RSVD',
                             'description': ['Reserved'],
                             'range': (5, 4),
                             'reset': 1,
                             'sticky': ''},
                            {'access': 'RO',
                             'acronym': 'EE_DO',
                             'description': ['Data Output Bit from the EEPROM. ',
                                             'The EE_DO input signal is mapped directly to this bit in the register and contains the EEPROM data output. This bit is read-only from the software perspective - writes to this bit have no effect.'],
                             'range': (3, 3),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'EE_DI',
                             'description': ['Data Input to the EEPROM. ',
                                             'When EE_GNT is 1, the EE_DI output signal is mapped directly to this bit. Software provides data input to the EEPROM via writes to this bit.'],
                             'range': (2, 2),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'EE_CS',
                             'description': ['Chip Select Input to the EEPROM. ',
                                             'When EE_GNT is 1, the EE_CS output signal is mapped to the chip select of the EEPROM device. Software enables the EEPROM by writing a 1 to this bit.'],
                             'range': (1, 1),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'EE_SK',
                             'description': ['Clock Input to the EEPROM. ',
                                             'When EE_GNT is 1, the EE_SK output signal is mapped to this bit and provides the serial clock input to the EEPROM. Software clocks the EEPROM via toggling this bit with successive writes.'],
                             'range': (0, 0),
                             'reset': 0,
                             'sticky': ''}],
                 'offset': 16,
                 'offset_end': (19, None),
                 'offset_start': (16, None),
                 'power_well': 'Gbe1/2:',
                 'recurring': None,
                 'reg_base_name': 'EEPROM_CTRL',
                 'reg_name': 'EEPROM_CTRL',
                 'size': 32,
                 'table_ref': '37-29',
                 'title_desc': 'EEPROM Control Register',
                 'view': 'PCI 3'},
 'EEPROM_RR': {'bar': 'CSRBAR',
               'bus_device_function': 'M:2:0',
               'default': u'XXXXXX00h',
               'description': None,
               'fields': [{'access': 'RO',
                           'acronym': 'DATA',
                           'description': ['Read Data',
                                           'Data returned from the EEPROM read.'],
                           'range': (31, 16),
                           'reset': None,
                           'sticky': ''},
                          {'access': 'RW',
                           'acronym': 'ADDR',
                           'description': ['Read Address',
                                           'This field is written by software along with Start Read to indicate the word to read.'],
                           'range': (15, 8),
                           'reset': None,
                           'sticky': ''},
                          {'access': 'RV',
                           'acronym': 'RSVD',
                           'description': ['Reserved ', 'Reads as 0'],
                           'range': (7, 5),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RO',
                           'acronym': 'DONE',
                           'description': ['Read Done',
                                           'Set to 1 when the EEPROM read completes.',
                                           'Set to 0 when the EEPROM read is in progress.',
                                           'Writes by software are ignored.'],
                           'range': (4, 4),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RV',
                           'acronym': 'RSVD',
                           'description': ['Reserved ', 'Reads as 0'],
                           'range': (3, 1),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RW',
                           'acronym': 'START',
                           'description': ['Start Read',
                                           'Writing a 1 to this bit causes the EEPROM to read a (16-bit) word at the address stored in the EE_ADDR field, storing the result in the EE_DATA field. This bit is self-clearing'],
                           'range': (0, 0),
                           'reset': 0,
                           'sticky': ''}],
               'offset': 20,
               'offset_end': (23, None),
               'offset_start': (20, None),
               'power_well': 'Gbe1/2:',
               'recurring': None,
               'reg_base_name': 'EEPROM_RR',
               'reg_name': 'EEPROM_RR',
               'size': 32,
               'table_ref': '37-30',
               'title_desc': 'EEPROM Read Register',
               'view': 'PCI 3'},
 'FCAH': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 256,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (31, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FCAH',
                      'description': ['This register must be programmed with 0x00_00_01_00.'],
                      'range': (15, 0),
                      'reset': 256,
                      'sticky': ''}],
          'offset': 44,
          'offset_end': (47, None),
          'offset_start': (44, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'FCAH',
          'reg_name': 'FCAH',
          'size': 32,
          'table_ref': '37-32',
          'title_desc': 'Flow Control Address High Register',
          'view': 'PCI 3'},
 'FCAL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 12746753,
          'description': None,
          'fields': [{'access': 'RW',
                      'acronym': 'FCAL',
                      'description': ['This register must be programmed with 0x00C2_8001.'],
                      'range': (31, 0),
                      'reset': 12746753,
                      'sticky': ''}],
          'offset': 40,
          'offset_end': (43, None),
          'offset_start': (40, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'FCAL',
          'reg_name': 'FCAL',
          'size': 32,
          'table_ref': '37-31',
          'title_desc': 'Flow Control Address Low Register',
          'view': 'PCI 3'},
 'FCRTH': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'XFCE',
                       'description': ['External Flow Control Enabled',
                                       '0b = Disabled.',
                                       '1b = Enabled.',
                                       'Allows the Ethernet controller to send XOFF and XON frames based on external pins XOFF and XON. The transmission of pause frames must be also enabled through the CTRL.TFCE control bit. When the XOFF signal is asserted high, the Ethernet controller transmits a single XOFF frame. The assertion of XON (after deassertion of XOFF) initiates an XON frame transmission, if enabled by FCRTL.XONE. The assertion/deassertion of XON is required between assertions of XOFF in order to send another XOFF frame.',
                                       'This behavior also provides a built-in hysteresis mechanism.',
                                       'Note:The EP80579 does not have external XON/XOFF pins and therefore does not support external flow control enable. This bit must be set to 0 for correct operation.'],
                       'range': (31, 31),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (30, 16),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'RTH',
                       'description': ['Receive Threshold High. FIFO high water mark for flow control transmission.'],
                       'range': (15, 3),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (2, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 8552,
           'offset_end': (8555, None),
           'offset_start': (8552, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'FCRTH',
           'reg_name': 'FCRTH',
           'size': 32,
           'table_ref': '37-52',
           'title_desc': 'Flow Control Receive Threshold High Register',
           'view': 'PCI 3'},
 'FCRTL': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'XONE',
                       'description': ['XON Enable',
                                       '0b = Disabled.',
                                       '1b = Enabled.',
                                       'When set, enables the Ethernet controller to transmit XON packets based on receive FIFO crosses FCRTL.RTL threshold value, or based on external pins XOFF and XON. See Section 37.6.4.3, "FCRTH - Flow Control Receive Threshold High Register" on page 1479'],
                       'range': (31, 31),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (30, 16),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'RTL',
                       'description': ['Receive Threshold Low. FIFO low water mark for flow control transmission.'],
                       'range': (15, 3),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (2, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 8544,
           'offset_end': (8547, None),
           'offset_start': (8544, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'FCRTL',
           'reg_name': 'FCRTL',
           'size': 32,
           'table_ref': '37-51',
           'title_desc': 'Flow Control Receive Threshold Low Register',
           'view': 'PCI 3'},
 'FCRUC': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'FCRUC',
                       'description': ['Number of unsupported flow control frames received'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16472,
           'offset_end': (16475, None),
           'offset_start': (16472, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'FCRUC',
           'reg_name': 'FCRUC',
           'size': 32,
           'table_ref': '37-96',
           'title_desc': 'FC Received Unsupported Count Register',
           'view': 'PCI 3'},
 'FCT': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 34824,
         'description': 'This register must be programmed with 0x00_00_88_0',
         'fields': [{'access': 'RV',
                     'acronym': 'RSVD',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'FCT',
                     'description': ['This register must be programmed with 0x00_00_88_08.'],
                     'range': (15, 0),
                     'reset': 34824,
                     'sticky': ''}],
         'offset': 48,
         'offset_end': (51, None),
         'offset_start': (48, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'FCT',
         'reg_name': 'FCT',
         'size': 32,
         'table_ref': '37-33',
         'title_desc': 'Flow Control Type Register',
         'view': 'PCI 3'},
 'FCTTV': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (31, 16),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'TTV',
                       'description': ['Transmit Timer Value to be included in XOFF frame.'],
                       'range': (15, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 368,
           'offset_end': (371, None),
           'offset_start': (368, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'FCTTV',
           'reg_name': 'FCTTV',
           'size': 32,
           'table_ref': '37-35',
           'title_desc': 'Flow Control Transmit Timer Value Register',
           'view': 'PCI 3'},
 'FFLT[0-3]': {'bar': 'CSRBAR',
               'bus_device_function': 'M:2:0',
               'default': 0,
               'description': None,
               'fields': [{'access': 'RV',
                           'acronym': 'RSVD',
                           'description': ['Reserved'],
                           'range': (31, 11),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RW',
                           'acronym': 'FFLT_LENx',
                           'description': ['Flexible Filter Length for FIlter x'],
                           'range': (10, 0),
                           'reset': 0,
                           'sticky': ''}],
               'offset': 24320,
               'offset_end': (24323, 8),
               'offset_start': (24320, 8),
               'power_well': None,
               'recurring': 4,
               'reg_base_name': 'FFLT',
               'reg_name': 'FFLT[0-3]',
               'size': 32,
               'table_ref': '37-140',
               'title_desc': 'Flexible Filter Length Table Registers (0x5F00 - 0x5F18; RW)',
               'view': 'PCI 3'},
 'FFMT[0-127]': {'bar': 'CSRBAR',
                 'bus_device_function': 'M:2:0',
                 'default': u'0000000Xh',
                 'description': None,
                 'fields': [{'access': 'RV',
                             'acronym': 'RSVD',
                             'description': ['Reserved'],
                             'range': (31, 4),
                             'reset': 0,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'Mask_x',
                             'description': ['Byte Mask for Byte xx'],
                             'range': (3, 0),
                             'reset': None,
                             'sticky': ''}],
                 'offset': 36864,
                 'offset_end': (36867, 8),
                 'offset_start': (36864, 8),
                 'power_well': None,
                 'recurring': 128,
                 'reg_base_name': 'FFMT',
                 'reg_name': 'FFMT[0-127]',
                 'size': 32,
                 'table_ref': '37-142',
                 'title_desc': 'Flexible Filter Mask Table Registers (0x9000 - 0x93F8; RW)',
                 'view': 'PCI 3'},
 'FFVT[0-127]': {'bar': 'CSRBAR',
                 'bus_device_function': 'M:2:0',
                 'default': u'XXXXXXXXh',
                 'description': None,
                 'fields': [{'access': 'RW',
                             'acronym': 'VAL3',
                             'description': ['Byte x Compare Value 3'],
                             'range': (31, 24),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'VAL2',
                             'description': ['Byte x Compare Value 2'],
                             'range': (23, 16),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'VAL1',
                             'description': ['Byte x Compare Value 1'],
                             'range': (15, 8),
                             'reset': None,
                             'sticky': ''},
                            {'access': 'RW',
                             'acronym': 'VAL0',
                             'description': ['Byte x Compare Value 0'],
                             'range': (7, 0),
                             'reset': None,
                             'sticky': ''}],
                 'offset': 38912,
                 'offset_end': (38915, 8),
                 'offset_start': (38912, 8),
                 'power_well': None,
                 'recurring': 128,
                 'reg_base_name': 'FFVT',
                 'reg_name': 'FFVT[0-127]',
                 'size': 32,
                 'table_ref': '37-144',
                 'title_desc': 'Flexible Filter Value Table Registers',
                 'view': 'PCI 3'},
 'GORCH': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'GORCH',
                       'description': ['Number of good octets received - upper 4 bytes'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16524,
           'offset_end': (16527, None),
           'offset_start': (16524, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'GORCH',
           'reg_name': 'GORCH',
           'size': 32,
           'table_ref': '37-108',
           'title_desc': 'Good Octets Received Count High Register',
           'view': 'PCI 3'},
 'GORCL': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'GORCL',
                       'description': ['Number of good octets received - lower 4 bytes'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16520,
           'offset_end': (16522, None),
           'offset_start': (16520, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'GORCL',
           'reg_name': 'GORCL',
           'size': 32,
           'table_ref': '37-107',
           'title_desc': 'Good Octets Received Count Low Register',
           'view': 'PCI 3'},
 'GOTCH': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'GOTCH',
                       'description': ['Number of good octets transmitted - upper 4 bytes'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16532,
           'offset_end': (16535, None),
           'offset_start': (16532, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'GOTCH',
           'reg_name': 'GOTCH',
           'size': 32,
           'table_ref': '37-110',
           'title_desc': 'Good Octets Transmitted Count High Register',
           'view': 'PCI 3'},
 'GOTCL': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'GOTCL',
                       'description': ['Number of good octets transmitted - lower 4 bytes'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16528,
           'offset_end': (16531, None),
           'offset_start': (16528, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'GOTCL',
           'reg_name': 'GOTCL',
           'size': 32,
           'table_ref': '37-109',
           'title_desc': 'Good Octets Transmitted Count Low Register',
           'view': 'PCI 3'},
 'GPRC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'GPRC',
                      'description': ['Number of good packets received (total of all lengths)'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16500,
          'offset_end': (16503, None),
          'offset_start': (16500, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'GPRC',
          'reg_name': 'GPRC',
          'size': 32,
          'table_ref': '37-103',
          'title_desc': 'Good Packets Received Count (Total) Register',
          'view': 'PCI 3'},
 'GPTC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'GPTC',
                      'description': ['Number of good packets transmitted'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16512,
          'offset_end': (16515, None),
          'offset_start': (16512, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'GPTC',
          'reg_name': 'GPTC',
          'size': 32,
          'table_ref': '37-106',
          'title_desc': 'Good Packets Transmitted Count Register',
          'view': 'PCI 3'},
 'ICR0': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Internal Bus Error. ',
                                      'This bit indicates that an error occurred during either a Target or Host transaction on the bus. Refer to Section 37.5.12, "Error Handling" for complete details.',
                                      'The details of this error are reported in the INTBUS_ERR_STAT register.'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_STAT',
                      'description': ['Statistic Register ECC Error. The Statistic Registers are implemented using a memory that uses a single-bit correct/multi-bit detect ECC parity algorithm to protect it. This bit indicates that a multi-bit error has occurred on a read from that memory. No indication of a single-bit error correction will be given by hardware.Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['This bit indicates that either a Multicast Filter Parity Error, Special Packet Filter Parity Error or a Flex Filter Parity Error occurred. These filters use parity protected SRAMs for data buffers. This bit indicates that a parity error has occurred on a read from either of these data buffers. This error is considered non-fatal and will clear after a read of the MEM_ERR_STAT register.'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_PB',
                      'description': ['DMA Packet Buffer 2-bit ECC Error. The 64KB DMA Packet Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for data. This bit indicates that a multi-bit error has occurred on a read from that SRAM. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_TXDS',
                      'description': ['DMA Transmit Descriptor 2-bit ECC Error. The DMA Transmit Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_RXDS',
                      'description': ['DMA Receive Descriptor 2-bit ECC Error. The DMA Receive Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'SRPD',
                      'description': ['Small Receive Packet Detected.',
                                      'Indicates that a packet of size   RSRPD.SIZE register has been detected and transferred to host memory. The interrupt is only asserted if RSRPD.SIZE register has a non-zero value'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXD_LOW',
                      'description': ['Transmit Descriptor Low Threshold hit. Indicates that the descriptor ring has reached the threshold specified in "TXDCTL - Transmit Descriptor Control Register" on page 1500.'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXT0',
                      'description': ['Receiver Timer Interrupt. Set when the timers expire, see "Receive Interrupts" on page 1360 for details.'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXO',
                      'description': ['Receiver Overrun. Set on receive data FIFO overrun. Could be caused either because there are no available buffers or because Internal Bus receive bandwidth is inadequate.'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXDMT0',
                      'description': ['Receive Descriptor Minimum Threshold Hit. Indicates that the minimum number of receive descriptors are available and software should load more receive descriptors.'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXQE',
                      'description': ['Transmit Queue Empty. Set when the last descriptor block for a transmit queue has been used.'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXDW',
                      'description': ['Transmit Descriptor Written Back. Set when hardware processes a descriptor with its RS bit set. If using delayed interrupts (TDESC.IDE is set in the Transmit Descriptor CMD), the interrupt is delayed until after one of the delayed-timers (TIDV or TADV) expires.'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 192,
          'offset_end': (195, None),
          'offset_start': (192, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICR0',
          'reg_name': 'ICR0',
          'size': 32,
          'table_ref': '37-37',
          'title_desc': 'Interrupt 0 Cause Read Register',
          'view': 'PCI 3'},
 'ICR1': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Internal Bus Error. ',
                                      'This bit indicates that an error occurred during either a Target or Host transaction on the bus. Refer to Section 37.5.12, "Error Handling" for complete details.',
                                      'The details of this error are reported in the INTBUS_ERR_STAT register.'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_STAT',
                      'description': ['Statistic Register ECC Error. The Statistic Registers are implemented using a memory that uses a single-bit correct/multi-bit detect ECC parity algorithm to protect it. This bit indicates that a multi-bit error has occurred on a read from that memory. No indication of a single-bit error correction will be given by hardware.Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Multicast Filter Parity Error/Special Packet Filter Parity Error. The Multicast Filter and Special Packets Filter use parity protected SRAMs for data buffers. This bit indicates that a parity error has occurred on a read from either of these data buffers. This error is considered non-fatal and will clear after a read of the MEM_ERR_STAT register.'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_PB',
                      'description': ['DMA Packet Buffer 2-bit ECC Error. The 64KB DMA Packet Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for data. This bit indicates that a multi-bit error has occurred on a read from that SRAM. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_TXDS',
                      'description': ['DMA Transmit Descriptor 2-bit ECC Error. The DMA Transmit Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_RXDS',
                      'description': ['DMA Receive Descriptor 2-bit ECC Error. The DMA Receive Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'SRPD',
                      'description': ['Small Receive Packet Detected.',
                                      'Indicates that a packet of size   RSRPD.SIZE register has been detected and transferred to host memory. The interrupt is only asserted if RSRPD.SIZE register has a non-zero value'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXD_LOW',
                      'description': ['Transmit Descriptor Low Threshold hit. Indicates that the descriptor ring has reached the threshold specified in "TXDCTL - Transmit Descriptor Control Register" on page 1500.'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXT0',
                      'description': ['Receiver Timer Interrupt. Set when the timers expire, see "Receive Interrupts" on page 1360 for details.'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXO',
                      'description': ['Receiver Overrun. Set on receive data FIFO overrun. Could be caused either because there are no available buffers or because Internal Bus receive bandwidth is inadequate.'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'RXDMT0',
                      'description': ['Receive Descriptor Minimum Threshold Hit. Indicates that the minimum number of receive descriptors are available and software should load more receive descriptors.'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXQE',
                      'description': ['Transmit Queue Empty. Set when the last descriptor block for a transmit queue has been used.'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'TXDW',
                      'description': ['Transmit Descriptor Written Back. Set when hardware processes a descriptor with its RS bit set. If using delayed interrupts (TDESC.IDE is set in the Transmit Descriptor CMD), the interrupt is delayed until after one of the delayed-timers (TIDV or TADV) expires.'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2240,
          'offset_end': (2243, None),
          'offset_start': (2240, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICR1',
          'reg_name': 'ICR1',
          'size': 32,
          'table_ref': '37-42',
          'title_desc': 'Interrupt 1Cause Read Register',
          'view': 'PCI 3'},
 'ICR2': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Internal Bus Error. ',
                                      'This bit indicates that an error occurred during either a Target or Host transaction on the bus. Refer to Section 37.5.12, "Error Handling" for complete details.',
                                      'The details of this error are reported in the INTBUS_ERR_STAT register.'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_STAT',
                      'description': ['Statistic Register ECC Error. The Statistic Registers are implemented using a memory that uses a single-bit correct/multi-bit detect ECC parity algorithm to protect it. This bit indicates that a multi-bit error has occurred on a read from that memory. No indication of a single-bit error correction will be given by hardware.Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST)'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Multicast Filter Parity Error/Special Packet Filter Parity Error. The Multicast Filter and Special Packets Filter use parity protected SRAMs for data buffers. This bit indicates that a parity error has occurred on a read from either of these data buffers. '],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_PB',
                      'description': ['DMA Packet Buffer 2-bit ECC Error. The 64KB DMA Packet Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for data. This bit indicates that a multi-bit error has occurred on a read from that SRAM. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_TXDS',
                      'description': ['DMA Transmit Descriptor 2-bit ECC Error. The DMA Transmit Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware. Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RCWC',
                      'acronym': 'ERR_RXDS',
                      'description': ['DMA Receive Descriptor 2-bit ECC Error. The DMA Receive Descriptor Buffer uses a single-bit correct/multi-bit detect ECC parity algorithm to protect the SRAM it uses for a data buffer. This bit indicates that a multi-bit error has occurred on a read from that data buffer. No indication of a single-bit error correction will be given by hardware.Note:If this interrupt asserts, further GbE DMA Reads and Writes are blocked until software issues a soft reset to the GbE by writing the Device Control Register (CTRL.RST).'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved'],
                      'range': (19, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2272,
          'offset_end': (2275, None),
          'offset_start': (2272, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICR2',
          'reg_name': 'ICR2',
          'size': 32,
          'table_ref': '37-46',
          'title_desc': 'Error Interrupt Cause Read Register',
          'view': 'PCI 3'},
 'ICS0': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Triggers Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_STAT',
                      'description': ['Triggers Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Triggers Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Triggers DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_TXDS',
                      'description': ['Triggers DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_RXDS',
                      'description': ['Triggers DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SRPD',
                      'description': ['Triggers Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXD_LOW',
                      'description': ['Triggers Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXT0',
                      'description': ['Triggers Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXO',
                      'description': ['Triggers Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXDMT0',
                      'description': ['Triggers Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXQE',
                      'description': ['Triggers Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXDW',
                      'description': ['Triggers Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 200,
          'offset_end': (203, None),
          'offset_start': (200, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICS0',
          'reg_name': 'ICS0',
          'size': 32,
          'table_ref': '37-39',
          'title_desc': 'Interrupt 0 Cause Set Register',
          'view': 'PCI 3'},
 'ICS1': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Triggers Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_STAT',
                      'description': ['Triggers Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Triggers Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Triggers DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_TXDS',
                      'description': ['Triggers DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_RXDS',
                      'description': ['Triggers DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SRPD',
                      'description': ['Triggers Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXD_LOW',
                      'description': ['Triggers Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXT0',
                      'description': ['Triggers Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXO',
                      'description': ['Triggers Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXDMT0',
                      'description': ['Triggers Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXQE',
                      'description': ['Triggers Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXDW',
                      'description': ['Triggers Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2248,
          'offset_end': (2251, None),
          'offset_start': (2248, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICS1',
          'reg_name': 'ICS1',
          'size': 32,
          'table_ref': '37-43',
          'title_desc': 'Interrupt 0 Cause Set Register',
          'view': 'PCI 3'},
 'ICS2': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Triggers Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_STAT',
                      'description': ['Triggers Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Triggers Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Triggers DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_TXDS',
                      'description': ['Triggers DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_RXDS',
                      'description': ['Triggers DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2280,
          'offset_end': (2283, None),
          'offset_start': (2280, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ICS2',
          'reg_name': 'ICS2',
          'size': 32,
          'table_ref': '37-47',
          'title_desc': 'Error Interrupt Cause Set Register',
          'view': 'PCI 3'},
 'IMC0': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Clears the mask for Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_STAT',
                      'description': ['Clears the mask for Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Clears the mask for the Filter Memory Errors'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Clears the mask for DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_TXDS',
                      'description': ['Clears the mask for DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_RXDS',
                      'description': ['Clears the mask for DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'SRPD',
                      'description': ['Clears the mask for Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXD_LOW',
                      'description': ['Clears the mask for Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXT0',
                      'description': ['Clears the mask for Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXO',
                      'description': ['Clears the mask for Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXDMT0',
                      'description': ['Clears the mask for Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXQE',
                      'description': ['Clears the mask for Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXDW',
                      'description': ['Clears the mask for Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 216,
          'offset_end': (219, None),
          'offset_start': (216, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMC0',
          'reg_name': 'IMC0',
          'size': 32,
          'table_ref': '37-41',
          'title_desc': 'Interrupt 0 Mask Clear Register',
          'view': 'PCI 3'},
 'IMC1': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Clears the mask for Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_STAT',
                      'description': ['Clears the mask for Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Clears the mask for the Filter Memory Errors'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Clears the mask for DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_TXDS',
                      'description': ['Clears the mask for DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_RXDS',
                      'description': ['Clears the mask for DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'SRPD',
                      'description': ['Clears the mask for Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXD_LOW',
                      'description': ['Clears the mask for Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXT0',
                      'description': ['Clears the mask for Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXO',
                      'description': ['Clears the mask for Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'RXDMT0',
                      'description': ['Clears the mask for Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXQE',
                      'description': ['Clears the mask for Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'TXDW',
                      'description': ['Clears the mask for Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2264,
          'offset_end': (2267, None),
          'offset_start': (2264, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMC1',
          'reg_name': 'IMC1',
          'size': 32,
          'table_ref': '37-45',
          'title_desc': 'Interrupt 1 Mask Clear Register',
          'view': 'PCI 3'},
 'IMC2': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Clears the mask for Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_STAT',
                      'description': ['Clears the mask for Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_INT',
                      'description': ['Clears the mask for Internal Memory Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Clears the mask for DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_TXDS',
                      'description': ['Clears the mask for DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_RXDS',
                      'description': ['Clears the mask for DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2296,
          'offset_end': (2299, None),
          'offset_start': (2296, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMC2',
          'reg_name': 'IMC2',
          'size': 32,
          'table_ref': '37-49',
          'title_desc': 'Error Interrupt Mask Clear Register',
          'view': 'PCI 3'},
 'IMS0': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Enables Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_STAT',
                      'description': ['Enables Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Enables Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Enables DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_TXDS',
                      'description': ['Enables DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_RXDS',
                      'description': ['Enables DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SRPD',
                      'description': ['Sets the mask for Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXD_LOW',
                      'description': ['Sets the mask for Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXT0',
                      'description': ['Sets the mask for Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXO',
                      'description': ['Sets the mask for Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXDMT0',
                      'description': ['Sets the mask for Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXQE',
                      'description': ['Sets the mask for Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXDW',
                      'description': ['Sets the mask for Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 208,
          'offset_end': (211, None),
          'offset_start': (208, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMS0',
          'reg_name': 'IMS0',
          'size': 32,
          'table_ref': '37-40',
          'title_desc': 'Interrupt 0 Mask Set/Read Register',
          'view': 'PCI 3'},
 'IMS1': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'WO',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Enables Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'WO',
                      'acronym': 'ERR_STAT',
                      'description': ['Enables Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'WO',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Enables Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': 'RV'},
                     {'access': 'WO',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Enables DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': 'RV'},
                     {'access': 'WO',
                      'acronym': 'ERR_TXDS',
                      'description': ['Enables DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'WO',
                      'acronym': 'ERR_RXDS',
                      'description': ['Enables DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': 'RW'},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SRPD',
                      'description': ['Sets the mask for Small Receive Packet Detected and Transferred'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXD_LOW',
                      'description': ['Sets the mask for Transmit Descriptor Low Threshold Hit'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXT0',
                      'description': ['Sets the mask for Receiver Timer Interrupt'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXO',
                      'description': ['Sets the mask for Receiver Overrun. Set on receive data FIFO overrun'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RXDMT0',
                      'description': ['Sets the mask for Receive Descriptor Minimum Threshold hit'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'Rsvd',
                      'description': ["Reserved. Must be written as '0'"],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXQE',
                      'description': ['Sets the mask for Transmit Queue Empty'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'TXDW',
                      'description': ['Sets the mask for Transmit Descriptor Written Back'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2256,
          'offset_end': (2259, None),
          'offset_start': (2256, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMS1',
          'reg_name': 'IMS1',
          'size': 32,
          'table_ref': '37-44',
          'title_desc': 'Interrupt 1 Mask Set/Read Register',
          'view': 'PCI 3'},
 'IMS2': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 29),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_INTBUS',
                      'description': ['Enables Internal Bus Error'],
                      'range': (28, 28),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_STAT',
                      'description': ['Enables Statistic Register ECC Error'],
                      'range': (27, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_MCFSPF',
                      'description': ['Enables Special Packet Filter Parity Error'],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (25, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_PKBUF',
                      'description': ['Enables DMA Packet Buffer ECC Error'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_TXDS',
                      'description': ['Enables DMA Transmit Descriptor Buffer ECC Error'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ERR_RXDS',
                      'description': ['Enables DMA Receive Descriptor Buffer ECC Error'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (19, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 2288,
          'offset_end': (2291, None),
          'offset_start': (2288, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'IMS2',
          'reg_name': 'IMS2',
          'size': 32,
          'table_ref': '37-48',
          'title_desc': 'Error Interrupt Mask Set/Read Register',
          'view': 'PCI 3'},
 'INTBUS_ERR_STAT': {'bar': 'CSRBAR',
                     'bus_device_function': 'M:2:0',
                     'default': 0,
                     'description': None,
                     'fields': [{'access': 'RV',
                                 'acronym': 'Rsvd',
                                 'description': ['Reserved'],
                                 'range': (31, 13),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RW',
                                 'acronym': 'INTBUS_ERR_H_DIS',
                                 'description': ['0 - Internal Bus errors will halt further GbE transmit/receive operation.',
                                                 '1 - Internal Bus errors will not halt further GbE operation. '],
                                 'range': (12, 12),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RV',
                                 'acronym': 'Rsvd',
                                 'description': ['Reserved'],
                                 'range': (11, 6),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RO',
                                 'acronym': 'Type',
                                 'description': ['Internal Bus Error Type:',
                                                 '? 00 = Unsupported internal bus transaction targeted at GbE',
                                                 '? 01 = Pull data error detected during a target write transaction',
                                                 '? 10 = GbE received a Internal Bus Data Error response while mastering a DMA transaction',
                                                 '? 11 = Master Pull data error occurred as a result of an internal memory error'],
                                 'range': (5, 4),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RV',
                                 'acronym': 'Rsvd',
                                 'description': ['Reserved'],
                                 'range': (3, 2),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RWC',
                                 'acronym': 'MERR',
                                 'description': ['Indicates whether one or more than one Internal Bus errors have occurred before INTBUS_ERR_STAT.CERR was cleared',
                                                 '0 = One Internal Bus Error1 = More than one Internal Bus Error'],
                                 'range': (1, 1),
                                 'reset': 0,
                                 'sticky': ''},
                                {'access': 'RWC',
                                 'acronym': 'CERR',
                                 'description': ['Internal Bus Error: Asserts when Internal Bus Error status and address registers are valid',
                                                 '0 = no error has been logged1 = Internal Bus Error status and address registers have logged an error',
                                                 'If error handling is enabled (INTBUS_ERR_H_DIS = 0) then this bit can only be cleared by a reset.'],
                                 'range': (0, 0),
                                 'reset': 0,
                                 'sticky': ''}],
                     'offset': 1296,
                     'offset_end': (1299, None),
                     'offset_start': (1296, None),
                     'power_well': None,
                     'recurring': None,
                     'reg_base_name': 'INTBUS_ERR_STAT',
                     'reg_name': 'INTBUS_ERR_STAT',
                     'size': 32,
                     'table_ref': '37-145',
                     'title_desc': 'Internal Bus Error Status Register',
                     'view': 'PCI 3'},
 'IPAV': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved. Should be set to 0.'],
                      'range': (31, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'V60',
                      'description': ['IPv6 Address 0 Valid'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved. Should be set to 0.'],
                      'range': (15, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'V43',
                      'description': ['IPv4 Address 3 Valid'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'V42',
                      'description': ['IPv4 Address 2 Valid'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'V41',
                      'description': ['IPv4 Address 1 Valid'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'V40',
                      'description': ['IPv4 Address 0 Valid',
                                      "The initial value is loaded from the IP Address Valid bit of the EEPROM's Management Control Register"],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 22584,
          'offset_end': (22587, None),
          'offset_start': (22584, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'IPAV',
          'reg_name': 'IPAV',
          'size': 32,
          'table_ref': '37-134',
          'title_desc': 'IP Address Valid Register (0x05838; RW)',
          'view': 'PCI 3'},
 'IPV6_ADDR0BYTES_13_16': {'bar': 'CSRBAR',
                           'bus_device_function': 'M:2:0',
                           'default': u'XXXXXXXXh',
                           'description': None,
                           'fields': [{'access': 'RW',
                                       'acronym': 'IPV6DDR3',
                                       'description': ['IPV6 Address, bytes 13 - 16'],
                                       'range': (31, 0),
                                       'reset': None,
                                       'sticky': ''}],
                           'offset': 22668,
                           'offset_end': (22671, None),
                           'offset_start': (22668, None),
                           'power_well': None,
                           'recurring': None,
                           'reg_base_name': 'IPV6_ADDR0BYTES_13_16',
                           'reg_name': 'IPV6_ADDR0BYTES_13_16',
                           'size': 32,
                           'table_ref': '37-139',
                           'title_desc': 'IPv6 Address Table Register, Bytes 13 - 16',
                           'view': 'PCI 3'},
 'IPV6_ADDR0BYTES_1_4': {'bar': 'CSRBAR',
                         'bus_device_function': 'M:2:0',
                         'default': u'XXXXXXXXh',
                         'description': None,
                         'fields': [{'access': 'RW',
                                     'acronym': 'IPV6ADDR0',
                                     'description': ['IPV6 Address0, bytes 1 - 4'],
                                     'range': (31, 0),
                                     'reset': None,
                                     'sticky': ''}],
                         'offset': 22656,
                         'offset_end': (22659, None),
                         'offset_start': (22656, None),
                         'power_well': None,
                         'recurring': None,
                         'reg_base_name': 'IPV6_ADDR0BYTES_1_4',
                         'reg_name': 'IPV6_ADDR0BYTES_1_4',
                         'size': 32,
                         'table_ref': '37-136',
                         'title_desc': 'IPv6 Address Table Register (0x5880), Bytes 1 - 4',
                         'view': 'PCI 3'},
 'IPV6_ADDR0BYTES_5_8': {'bar': 'CSRBAR',
                         'bus_device_function': 'M:2:0',
                         'default': u'XXXXXXXXh',
                         'description': None,
                         'fields': [{'access': 'RW',
                                     'acronym': 'IPV6ADDR1',
                                     'description': ['IPV6 Address, bytes 5 - 8'],
                                     'range': (31, 0),
                                     'reset': None,
                                     'sticky': ''}],
                         'offset': 22660,
                         'offset_end': (22671, None),
                         'offset_start': (22660, None),
                         'power_well': None,
                         'recurring': None,
                         'reg_base_name': 'IPV6_ADDR0BYTES_5_8',
                         'reg_name': 'IPV6_ADDR0BYTES_5_8',
                         'size': 32,
                         'table_ref': '37-137',
                         'title_desc': 'IPv6 Address Table Register, Bytes 5 - 8',
                         'view': 'PCI 3'},
 'IPV6_ADDR0BYTES_9_12': {'bar': 'CSRBAR',
                          'bus_device_function': 'M:2:0',
                          'default': u'XXXXXXXXh',
                          'description': None,
                          'fields': [{'access': 'RW',
                                      'acronym': 'IPV6ADDR2',
                                      'description': ['IPV6 Address, bytes 9 - 12'],
                                      'range': (31, 0),
                                      'reset': None,
                                      'sticky': ''}],
                          'offset': 22664,
                          'offset_end': (22667, None),
                          'offset_start': (22664, None),
                          'power_well': None,
                          'recurring': None,
                          'reg_base_name': 'IPV6_ADDR0BYTES_9_12',
                          'reg_name': 'IPV6_ADDR0BYTES_9_12',
                          'size': 32,
                          'table_ref': '37-138',
                          'title_desc': 'IPv6 Address Table Register, Bytes 9 - 12',
                          'view': 'PCI 3'},
 'ITR0': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'MIII',
                      'description': ['Minimum Inter-interrupt Interval. ',
                                      '? In RGMII mode, the interval is specified in 256ns increments. ',
                                      '? In RMII mode, the interval is specified in 320ns increments',
                                      '? Zero disables interrupt throttling logic',
                                      '(The following example applies to RGMII mode)',
                                      "To independently validate configuration settings, software can use the following formula to convert the inter-interrupt interval value to the common 'interrupts/sec' performance metric:-9-interrupts/sec = (256 x 10 sec x inter-interrupt interval)1",
                                      'Inversely, inter-interrupt interval value can be calculated as:-9-inter-interrupt interval = (256 x 10 sec x interrupts/sec)1',
                                      'For example, if the interval is programmed to 500d, the network controller guarantees the CPU will not be interrupted by the network controller for 128 usec from the last interrupt. The maximum observable interrupt rate from the adapter should never exceed 7813 interrupts/sec.',
                                      'The optimal performance setting for this register is system/configuration specific. A initial suggested range is 651-5580 (28Bh - 15CCh), or, more generally, between 700 and 6000 interrupts per second.'],
                      'range': (15, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 196,
          'offset_end': (199, None),
          'offset_start': (196, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'ITR0',
          'reg_name': 'ITR0',
          'size': 32,
          'table_ref': '37-38',
          'title_desc': 'Interrupt 0 Throttling Register',
          'view': 'PCI 3'},
 'LATECOL': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'LATECOL',
                         'description': ['Number of packets with late collisions'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16416,
             'offset_end': (16419, None),
             'offset_start': (16416, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'LATECOL',
             'reg_name': 'LATECOL',
             'size': 32,
             'table_ref': '37-86',
             'title_desc': 'Late Collisions Count Register',
             'view': 'PCI 3'},
 'MCC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'MCC',
                     'description': ['Number of times a successful transmit encountered multiple collisions.'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16412,
         'offset_end': (16415, None),
         'offset_start': (16412, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'MCC',
         'reg_name': 'MCC',
         'size': 32,
         'table_ref': '37-85',
         'title_desc': 'Multiple Collision Count Register',
         'view': 'PCI 3'},
 'MEM_STS': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 8323072,
             'description': None,
             'fields': [{'access': 'RV',
                         'acronym': 'Rsvd',
                         'description': ['Reserved.'],
                         'range': (31, 23),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_FLEX_DIS',
                         'description': ['Flex Filter Parity Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (22, 22),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_STAT_DIS',
                         'description': ['Statistics Register ECC Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (21, 21),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_PKBUF_DIS',
                         'description': ['Packet Buffer ECC Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (20, 20),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_TXDS_DIS',
                         'description': ['Transmit Descriptor ECC Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (19, 19),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_RXDS_DIS',
                         'description': ['Receive Descriptor ECC Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (18, 18),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_SPF_DIS',
                         'description': ['Special Packets Filter Parity Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (17, 17),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'ERR_MF_DIS',
                         'description': ['Multicast Filter Parity Error Disable',
                                         '0: Error trapping enabled',
                                         '1: Error trapping disabled'],
                         'range': (16, 16),
                         'reset': 1,
                         'sticky': ''},
                        {'access': 'RV',
                         'acronym': 'Rsvd',
                         'description': ['Reserved'],
                         'range': (15, 13),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'MEM_ERRH_DIS',
                         'description': ['Memory Error Handling Disable: ',
                                         'Indicates, for the following error types, whether GbE Tx/Rx operation will be halted:',
                                         'ERR_STAT',
                                         'ERR_PKBUF',
                                         'ERR_RXDS',
                                         'ERR_TXDS',
                                         '0: Memory Errors will halt further GbE Tx/Rx operation and a soft-reset is required to restore operation',
                                         '1: Memory Errors will be logged, but will not halt further GbE Tx/Rx operation'],
                         'range': (12, 12),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RV',
                         'acronym': 'Rsvd',
                         'description': ['Reserved.'],
                         'range': (11, 7),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_FLEX',
                         'description': ['Flex filter Parity Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC.'],
                         'range': (6, 6),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_STAT',
                         'description': ['Statistics Register ECC Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC'],
                         'range': (5, 5),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_PKBUF',
                         'description': ['Packet Buffer ECC 2-bit Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC.'],
                         'range': (4, 4),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_TXDS',
                         'description': ['Transmit Descriptor ECC 2-bit Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC.'],
                         'range': (3, 3),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_RXDS',
                         'description': ['Receive Descriptor ECC 2-bit Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC.'],
                         'range': (2, 2),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_SPF',
                         'description': ['Special Packets Filter Parity Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC'],
                         'range': (1, 1),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RO/RWC',
                         'acronym': 'ERR_MF',
                         'description': ['Multicast Filter Parity Error',
                                         '0: No error occurred',
                                         '1: Error occurred',
                                         'When MEM_ERRH_DIS is clear then this bit is RO. When MEM_ERRH_DIS is set then this bit is RWC'],
                         'range': (0, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 2308,
             'offset_end': (2311, None),
             'offset_start': (2308, None),
             'power_well': None,
             'recurring': None,
             'reg_base_name': 'MEM_STS',
             'reg_name': 'MEM_STS',
             'size': 32,
             'table_ref': '37-147',
             'title_desc': 'Memory Error Status Register',
             'view': 'PCI 3'},
 'MEM_TST': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RV',
                         'acronym': 'Rsvd',
                         'description': ['Reserved'],
                         'range': (31, 19),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'Select',
                         'description': ['Selects the memory where the error mask is applied:',
                                         '000 : None - no errors injected',
                                         '001 : Statistics Registers',
                                         '010 : Multicast Filter Memory',
                                         '011 : Special Packet Filter Memory',
                                         '100 : TX Descriptor Buffer',
                                         '101 : RX Descriptor Buffer',
                                         '110 : Packet Buffer',
                                         '111 : Flexible Filter Memory'],
                         'range': (18, 16),
                         'reset': 0,
                         'sticky': ''},
                        {'access': 'RW',
                         'acronym': 'Mask',
                         'description': ['ECC/Parity check bit XOR mask',
                                         'The Valid Mask bits are selected according to the Select field, as follows:',
                                         '001 : 15:8 Reserved; 7:0 ECC Mask',
                                         '010 : 15:4 Reserved; 3:0 Parity bit Mask',
                                         '011 : 15:4 Reserved; 3:0 Parity bit Mask',
                                         '100 : 15:0 ECC Mask',
                                         '101 : 15:0 ECC Mask',
                                         '110 : 15:0 ECC Mask',
                                         '111 : 15:0 Reserved; 3:0 Parity bit Mask'],
                         'range': (15, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 2304,
             'offset_end': (2307, None),
             'offset_start': (2304, None),
             'power_well': None,
             'recurring': None,
             'reg_base_name': 'MEM_TST',
             'reg_name': 'MEM_TST',
             'size': 32,
             'table_ref': '37-146',
             'title_desc': 'Memory Error Test Register',
             'view': 'PCI 3'},
 'MPC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'MPC',
                     'description': ['Missed Packets Count'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16400,
         'offset_end': (16403, None),
         'offset_start': (16400, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'MPC',
         'reg_name': 'MPC',
         'size': 32,
         'table_ref': '37-82',
         'title_desc': 'Missed Packet Count Register',
         'view': 'PCI 3'},
 'MPRC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'MPRC',
                      'description': ['Number of multicast packets received'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16508,
          'offset_end': (16511, None),
          'offset_start': (16508, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'MPRC',
          'reg_name': 'MPRC',
          'size': 32,
          'table_ref': '37-105',
          'title_desc': 'Multicast Packets Received Count Register',
          'view': 'PCI 3'},
 'MPTC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'MPTC',
                      'description': ['Number of multicast packets transmitted'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16624,
          'offset_end': (16627, None),
          'offset_start': (16624, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'MPTC',
          'reg_name': 'MPTC',
          'size': 32,
          'table_ref': '37-127',
          'title_desc': 'Multicast Packets Transmitted Count Register',
          'view': 'PCI 3'},
 'MTA[0-127]': {'bar': 'CSRBAR',
                'bus_device_function': 'M:2:0',
                'default': u'XXXX_XXXXh',
                'description': None,
                'fields': [{'access': 'RW',
                            'acronym': 'Vector',
                            'description': ['32b vector of multicast address filter table information.'],
                            'range': (31, 0),
                            'reset': None,
                            'sticky': ''}],
                'offset': 20992,
                'offset_end': (20995, 4),
                'offset_start': (20992, 4),
                'power_well': 'Gbe1/2:',
                'recurring': 128,
                'reg_base_name': 'MTA',
                'reg_name': 'MTA[0-127]',
                'size': 32,
                'table_ref': '37-63',
                'title_desc': '128 Multicast Table Array Registers',
                'view': 'PCI 3'},
 'PBA': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 1048624,
         'description': None,
         'fields': [{'access': 'RO',
                     'acronym': 'RSVD',
                     'description': ['Reserved'],
                     'range': (31, 22),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RO',
                     'acronym': 'TXA',
                     'description': ['Transmit Packet Buffer Allocation in K bytes. PBA.TXA is read only and calculated based on PBA.RXA.',
                                     '0010h =>16KB'],
                     'range': (21, 16),
                     'reset': 16,
                     'sticky': ''},
                    {'access': 'RO',
                     'acronym': 'RSVD',
                     'description': ['Reserved'],
                     'range': (15, 6),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'RXA',
                     'description': ['Receive Packet Buffer Allocation in K bytes. PBA.RXA legal values must be 8K aligned.',
                                     'Valid values are (decimal) 8, 16, 24, 32, 40, 48, 56.',
                                     '0030h => 48KBh'],
                     'range': (5, 0),
                     'reset': 48,
                     'sticky': ''}],
         'offset': 4096,
         'offset_end': (4099, None),
         'offset_start': (4096, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'PBA',
         'reg_name': 'PBA',
         'size': 32,
         'table_ref': '37-36',
         'title_desc': 'Packet Buffer Allocation Register',
         'view': 'PCI 3'},
 'PRC1023': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'PRC1023',
                         'description': ['Number of good packets received, (512-1023) bytes in length'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16492,
             'offset_end': (16495, None),
             'offset_start': (16492, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'PRC1023',
             'reg_name': 'PRC1023',
             'size': 32,
             'table_ref': '37-101',
             'title_desc': 'Good Packets Received Count (512-1023 Bytes) Register',
             'view': 'PCI 3'},
 'PRC127': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'PRC127',
                        'description': ['Number of good packets received, (65-127) bytes in length'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16480,
            'offset_end': (16483, None),
            'offset_start': (16480, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'PRC127',
            'reg_name': 'PRC127',
            'size': 32,
            'table_ref': '37-98',
            'title_desc': 'Good Packets Received Count (65-127 Bytes) Register',
            'view': 'PCI 3'},
 'PRC1522': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'PRC1522',
                         'description': ['Number of good packets received, (1024-Max) bytes in length'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16496,
             'offset_end': (16499, None),
             'offset_start': (16496, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'PRC1522',
             'reg_name': 'PRC1522',
             'size': 32,
             'table_ref': '37-102',
             'title_desc': 'Good Packets Received Count (1024 to Max Bytes) Register',
             'view': 'PCI 3'},
 'PRC255': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'PRC255',
                        'description': ['Number of good packets received, (128-255) bytes in length.'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16484,
            'offset_end': (16487, None),
            'offset_start': (16484, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'PRC255',
            'reg_name': 'PRC255',
            'size': 32,
            'table_ref': '37-99',
            'title_desc': 'Good Packets Received Count (128-255 Bytes) Register',
            'view': 'PCI 3'},
 'PRC511': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'PRC511',
                        'description': ['Number of good packets received, (256-511) bytes in length'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16488,
            'offset_end': (16491, None),
            'offset_start': (16488, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'PRC511',
            'reg_name': 'PRC511',
            'size': 32,
            'table_ref': '37-100',
            'title_desc': 'Good Packets Received Count (256-511 Bytes) Register',
            'view': 'PCI 3'},
 'PRC64': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'PRC64',
                       'description': ['Number of good packets received exactly 64 bytes in length.'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16476,
           'offset_end': (16479, None),
           'offset_start': (16476, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'PRC64',
           'reg_name': 'PRC64',
           'size': 32,
           'table_ref': '37-97',
           'title_desc': 'Good Packets Received Count (64 Bytes) Register',
           'view': 'PCI 3'},
 'PTC1023': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'PTC1023',
                         'description': ['Number of packets transmitted that are 512-1023 bytes in length'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16616,
             'offset_end': (16619, None),
             'offset_start': (16616, None),
             'power_well': None,
             'recurring': None,
             'reg_base_name': 'PTC1023',
             'reg_name': 'PTC1023',
             'size': 32,
             'table_ref': '37-125',
             'title_desc': 'Packets Transmitted Count (512-1023 Bytes) Register',
             'view': 'PCI 3'},
 'PTC1522': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'PTC1522',
                         'description': ['Number of packets transmitted that are 1024 or more bytes in length'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16620,
             'offset_end': (16623, None),
             'offset_start': (16620, None),
             'power_well': None,
             'recurring': None,
             'reg_base_name': 'PTC1522',
             'reg_name': 'PTC1522',
             'size': 32,
             'table_ref': '37-126',
             'title_desc': 'Packets Transmitted Count (1024-1522 Bytes) Register',
             'view': 'PCI 3'},
 'PTC255': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'PTC255',
                        'description': ['Number of packets transmitted that are 128-255 bytes in length'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16608,
            'offset_end': (16611, None),
            'offset_start': (16608, None),
            'power_well': None,
            'recurring': None,
            'reg_base_name': 'PTC255',
            'reg_name': 'PTC255',
            'size': 32,
            'table_ref': '37-123',
            'title_desc': 'Packets Transmitted Count (128-255 Bytes) Register',
            'view': 'PCI 3'},
 'PTC511': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'PTC511',
                        'description': ['Number of packets transmitted that are 256-511 bytes in length'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16612,
            'offset_end': (16615, None),
            'offset_start': (16612, None),
            'power_well': None,
            'recurring': None,
            'reg_base_name': 'PTC511',
            'reg_name': 'PTC511',
            'size': 32,
            'table_ref': '37-124',
            'title_desc': 'Packets Transmitted Count (256-511 Bytes) Register',
            'view': 'PCI 3'},
 'PTC64': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'PTC64',
                       'description': ['Number of all packets transmitted that are 64 bytes in length'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16600,
           'offset_end': (16603, None),
           'offset_start': (16600, None),
           'power_well': None,
           'recurring': None,
           'reg_base_name': 'PTC64',
           'reg_name': 'PTC64',
           'size': 32,
           'table_ref': '37-122',
           'title_desc': 'Packets Transmitted Count (64 Bytes) Register',
           'view': 'PCI 3'},
 'RADV': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RADT',
                      'description': ['Receive Absolute Delay Timer ',
                                      'Receive Absolute delay timer measured in increments of',
                                      'RMII: 1.28 microseconds',
                                      'RGMII: 1.024 microseconds. ',
                                      '(0b =disabled)',
                                      'If the packet delay timer is used to coalesce receive interrupts, the Ethernet controller ensures that when receive traffic abates, an interrupt is generated within a specified interval of no receives. During times when receive traffic is continuous, it may be necessary to ensure that no receive remains unnoticed for too long an interval. This register can be used to ENSURE that a receive interrupt occurs at some predefined interval after the first packet is received. When this timer is enabled, a separate absolute countdown timer is initiated upon successfully receiving each packet to system memory. When this absolute timer expires, pending receive descriptor writebacks are flushed and a receive timer interrupt is generated. ',
                                      'Setting this register to 0b disables the absolute timer mechanism (the RDTR register should be used with a value of 0b to cause immediate interrupts for all receive packets).',
                                      'Receive interrupts due to a Receive Packet Timer (RDTR) expiration cancels a pending RADV interrupt. If enabled, the RADV countdown timer is reloaded but halted, so as to avoid generation of a spurious second interrupt after the RDTR has been noted.'],
                      'range': (15, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 10284,
          'offset_end': (10287, None),
          'offset_start': (10284, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'RADV',
          'reg_name': 'RADV',
          'size': 32,
          'table_ref': '37-60',
          'title_desc': 'Receive Interrupt Absolute Delay Timer Register',
          'view': 'PCI 3'},
 'RAH[0-15]': {'bar': 'CSRBAR',
               'bus_device_function': 'M:2:0',
               'default': u'000XXXXXh',
               'description': None,
               'fields': [{'access': 'RW',
                           'acronym': 'AV',
                           'description': ['Address valid. This bit determines whether this address is compared against the incoming packet. Cleared after software reset or Unit Reset.',
                                           '0 = No match on this address field ',
                                           '1 = Match on this address field'],
                           'range': (31, 31),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RV',
                           'acronym': 'Rsvd',
                           'description': ['Reserved'],
                           'range': (30, 18),
                           'reset': 0,
                           'sticky': ''},
                          {'access': 'RW',
                           'acronym': 'ASEL',
                           'description': ['Address Select. Selects how the address is to be used when performing special filtering on receive packets.',
                                           '? 00: Destination address (must be set to this in normal mode)',
                                           '? 01: Source address',
                                           '? 10: Reserved',
                                           '? 11: Reserved'],
                           'range': (17, 16),
                           'reset': None,
                           'sticky': ''},
                          {'access': 'RW',
                           'acronym': 'RAH',
                           'description': ['Receive Address High. The upper 16 bits of the 48 bit Ethernet address.'],
                           'range': (15, 0),
                           'reset': None,
                           'sticky': ''}],
               'offset': 21508,
               'offset_end': (21511, 8),
               'offset_start': (21508, 8),
               'power_well': None,
               'recurring': 16,
               'reg_base_name': 'RAH',
               'reg_name': 'RAH[0-15]',
               'size': 32,
               'table_ref': '37-65',
               'title_desc': 'Receive Address High Register',
               'view': 'PCI 3'},
 'RAL[0-15]': {'bar': 'CSRBAR',
               'bus_device_function': 'M:2:0',
               'default': u'XXXXXXXXh',
               'description': None,
               'fields': [{'access': 'RW',
                           'acronym': 'RAL',
                           'description': ['Receive Address Low. The lower 32 bits of the 48 bit Ethernet address.'],
                           'range': (31, 0),
                           'reset': None,
                           'sticky': ''}],
               'offset': 21504,
               'offset_end': (21507, 8),
               'offset_start': (21504, 8),
               'power_well': None,
               'recurring': 16,
               'reg_base_name': 'RAL',
               'reg_name': 'RAL[0-15]',
               'size': 32,
               'table_ref': '37-64',
               'title_desc': 'Receive Address Low Register',
               'view': 'PCI 3'},
 'RCTL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 27),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SECRC',
                      'description': ["Strip Ethernet CRC. This bit controls whether the hardware strips the Ethernet CRC from the received packet. This stripping occurs prior to any checksum calculations. The stripped CRC is not DMA'd to host memory and is not included in the length reported in the descriptor."],
                      'range': (26, 26),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'BSEX',
                      'description': ['Buffer Size Extension. Combined with RCTL.BSIZE to program the receive buffer size. Control of receive buffer size permits software to trade-off descriptor performance versus required storage space. Buffers that are 2048 bytes require only one descriptor per receive packet maximizing descriptor efficiency. Buffers that are 256 bytes maximize memory efficiency at a cost of multiple descriptors for packets longer than 256 bytes.',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 00 -> Receive Buffer Size = 2048B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 01 -> Receive Buffer Size = 1024B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 10 -> Receive Buffer Size = 512B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 11 -> Receive Buffer Size = 256B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 00 -> Reserved',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 01 -> Receive Buffer Size = 16384B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 10 -> Receive Buffer Size = 8192B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 11 -> Receive Buffer Size = 4096B'],
                      'range': (25, 25),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (24, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'PMCF',
                      'description': ['Pass MAC Control Frames. This bit controls the DMA function of MAC control frames (other than flow control). A MAC control frame in this context must be addressed to either the MAC control frame multicast address or the station address, it must match the type field and must NOT match the PAUSE opcode of 0x0001.',
                                      '0 = Do not pass MAC control frames1 = Pass any MAC control frame (type field value of 0x8808) that does not contain the pause opcode of 0x0001.'],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'DPF',
                      'description': ["Discard Pause Frames. This bit controls the DMA function of flow control packets addressed to the station address (RAH/RAL[0]). If a packet is a valid flow control packet and is addressed to the station address it will not be DMA'd to host memory if RCTL.DPF=1.",
                                      '0 = Incoming frames are subject to filter comparison1 = Incoming valid PAUSE frames discarded even if they match any of the filter registers'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (21, 21),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'CFI',
                      'description': ['Canonical Form Indicator. One of the three bits that control the VLAN filter table. This bit may be compared to the CFI bit found in the 802.1q packet as part of the acceptance criteria. RCTL.CFIEN and RCTL.VFE determine whether or not this comparison takes place.'],
                      'range': (20, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'CFIEN',
                      'description': ['Canonical Form Indicator Enable. One of the three bits that control the VLAN filter table. This bit enables using the CFI bit found in the 802.1q packet as part of the acceptance criteria.',
                                      'The next two are used to decide whether the CFI bit found in the.1Q packet should be used as part of the acceptance criteria.',
                                      '0 = CFI Disabled: bit not compared to determine packet acceptance1 = CFI from packet must match CFI field for acceptance of 802.1q packet'],
                      'range': (19, 19),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'VFE',
                      'description': ['VLAN Filter Enable. One of the three bits that control the VLAN filter table. This bit determines whether the table participates in the packet acceptance criteria.',
                                      '0 = Disabled, filter table does not decide packet acceptance1 = Enabled, filter table decides acceptance of 802.1q packets'],
                      'range': (18, 18),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'BSIZE',
                      'description': ['Receive Buffer Size. Combined with RCTL.BSEX to program the receive buffer size. Control of receive buffer size permits software to trade-off descriptor performance versus required storage space. Buffers that are 2048 bytes require only one descriptor per receive packet maximizing descriptor efficiency. Buffers that are 256 bytes maximize memory efficiency at a cost of multiple descriptors for packets longer than 256 bytes.',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 00 -> Receive Buffer Size = 2048B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 01 -> Receive Buffer Size = 1024B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 10 -> Receive Buffer Size = 512B',
                                      'RCTL.BSEX = 0 / RCTL.BSIZE = 11 -> Receive Buffer Size = 256B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 00 -> Reserved',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 01 -> Receive Buffer Size = 16384B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 10 -> Receive Buffer Size = 8192B',
                                      'RCTL.BSEX = 1 / RCTL.BSIZE = 11 -> Receive Buffer Size = 4096B'],
                      'range': (17, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'BAM',
                      'description': ['Broadcast Accept Mode.',
                                      '0 = Ignore broadcast (unless it matches exact or imperfect filters)1 = Accept broadcast packets'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (14, 14),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'MO',
                      'description': ['Multicast Offset. This determines which bits of the incoming multicast address are used in looking up the bit vector.',
                                      '? 00 = [47:36]',
                                      '? 01 = [46:35]',
                                      '? 10 = [45:34]',
                                      '? 11 = [43:32]'],
                      'range': (13, 12),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (11, 10),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RDMTS',
                      'description': ['Receive Descriptor Minimum Threshold Size. These bits determines the threshold value for free receive descriptors. The corresponding interrupt is set whenever the fractional number of free descriptors becomes equal to RCTL.RDMTS. Refer to "RDLEN - Receive Descriptor Length Register" on page 1481 for further information.',
                                      '? 00 = 1/2',
                                      '? 01 = 1/4',
                                      '? 10 = 1/8',
                                      '? 11 = Reserved'],
                      'range': (9, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'LBM',
                      'description': ['Loopback mode. These bits enable the loopback function.When using a PHY, a value of 00 should be used and the PHY is configured for loopback through the MDIO interface.',
                                      '? 00 = Normal operation (or PHY loopback in GMII/MII mode) ',
                                      '? 01 = MAC Loopback enable (only supported for GMII/MII mode)',
                                      '? 10 = Reserved',
                                      '? 11 = Reserved',
                                      '? 11 = ReservedNote:PHY devices require programming for loopback operation using MDIO accesses.Note:The GbE must be configured for Full-Duplex operation if Mac Loopback mode is enabled.'],
                      'range': (7, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'LPE',
                      'description': ['Long packet enable. This bit controls whether long packet reception is permitted.',
                                      '0 = Disabled, hardware discards packets longer than 1522B1 = Enabled, 16384B is the maximum packet size that the GbE can receive'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'MPE',
                      'description': ['Multicast promiscuous enable.',
                                      '0 = Disabled1 = Enabled'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'UPE',
                      'description': ['Unicast promiscuous enable.',
                                      '0 = Disabled1 = Enabled'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SBP',
                      'description': ['Store bad packets.',
                                      '0 = Disabled1 = Enabled'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'EN',
                      'description': ['Receiver Enable.',
                                      '0 = All incoming packets are immediately dropped and are not stored in the receive FIFO. If a packet is already in-progress when disabled it will be finished.1 = Incoming packet reception is enabled.'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 256,
          'offset_end': (259, None),
          'offset_start': (256, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'RCTL',
          'reg_name': 'RCTL',
          'size': 32,
          'table_ref': '37-50',
          'title_desc': 'Receive Control Register',
          'view': 'PCI 3'},
 'RDBAH': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': u'XXXXXXXXh',
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'RDBAH',
                       'description': ['Receive Descriptor Base Address.Note:RDBAH[31:0] must be set to 0.'],
                       'range': (31, 0),
                       'reset': None,
                       'sticky': ''}],
           'offset': 10244,
           'offset_end': (10247, None),
           'offset_start': (10244, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'RDBAH',
           'reg_name': 'RDBAH',
           'size': 32,
           'table_ref': '37-54',
           'title_desc': 'Receive Descriptor Base Address High Register',
           'view': 'PCI 3'},
 'RDBAL': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': u'XXXXXXX0h',
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'RDBAL',
                       'description': ['Receive Descriptor Base Address Low'],
                       'range': (31, 4),
                       'reset': None,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (3, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 10240,
           'offset_end': (10243, None),
           'offset_start': (10240, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'RDBAL',
           'reg_name': 'RDBAL',
           'size': 32,
           'table_ref': '37-53',
           'title_desc': 'Receive Descriptor Base Address Low Register',
           'view': 'PCI 3'},
 'RDH': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'RDH',
                     'description': ['Receive Descriptor Head'],
                     'range': (15, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 10256,
         'offset_end': (10259, None),
         'offset_start': (10256, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'RDH',
         'reg_name': 'RDH',
         'size': 32,
         'table_ref': '37-56',
         'title_desc': 'Receive Descriptor Head Register',
         'view': 'PCI 3'},
 'RDLEN': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (31, 20),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'LEN',
                       'description': ['Descriptor Length'],
                       'range': (19, 7),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (6, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 10248,
           'offset_end': (10251, None),
           'offset_start': (10248, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'RDLEN',
           'reg_name': 'RDLEN',
           'size': 32,
           'table_ref': '37-55',
           'title_desc': 'Receive Descriptor Length Register',
           'view': 'PCI 3'},
 'RDT': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'RDT',
                     'description': ['Receive Descriptor Tail'],
                     'range': (15, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 10264,
         'offset_end': (10267, None),
         'offset_start': (10264, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'RDT',
         'reg_name': 'RDT',
         'size': 32,
         'table_ref': '37-57',
         'title_desc': 'Receive Descriptor Tail Register',
         'view': 'PCI 3'},
 'RDTR': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'WO',
                      'acronym': 'FPD',
                      'description': ['Flush Partial Descriptor. Writing this bit with 1 initiates an immediate expiration of the timer, causing a writeback of any consumed receive descriptors pending writeback, and results in a receive timer interrupt in the ICR register. This bit is self clearing and always reads 0.'],
                      'range': (31, 31),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (30, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RPDT',
                      'description': ['Receive Packet Delay Timer ',
                                      'Timer increments are ',
                                      'RMII: 1.28 microseconds',
                                      'RGMII: 1.024 microseconds. ',
                                      'See register description above'],
                      'range': (15, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 10272,
          'offset_end': (10275, None),
          'offset_start': (10272, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'RDTR',
          'reg_name': 'RDTR',
          'size': 32,
          'table_ref': '37-58',
          'title_desc': 'RX Interrupt Delay Timer (Packet Timer) Register',
          'view': 'PCI 3'},
 'RFC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'RFC',
                     'description': ['Number of receive fragment errors'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16552,
         'offset_end': (16555, None),
         'offset_start': (16552, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'RFC',
         'reg_name': 'RFC',
         'size': 32,
         'table_ref': '37-113',
         'title_desc': 'Receive Fragment Count Register',
         'view': 'PCI 3'},
 'RJC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'RJC',
                     'description': ['Number of receive jabber errors'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16560,
         'offset_end': (16563, None),
         'offset_start': (16560, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'RJC',
         'reg_name': 'RJC',
         'size': 32,
         'table_ref': '37-115',
         'title_desc': 'Receive Jabber Count Register',
         'view': 'PCI 3'},
 'RLEC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'RLEC',
                      'description': ['Number of packets with receive length errors.'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16448,
          'offset_end': (16451, None),
          'offset_start': (16448, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'RLEC',
          'reg_name': 'RLEC',
          'size': 32,
          'table_ref': '37-91',
          'title_desc': 'Receive Length Error Count Register',
          'view': 'PCI 3'},
 'RNBC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'RNBC',
                      'description': ['Number of receive no buffer conditions'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16544,
          'offset_end': (16547, None),
          'offset_start': (16544, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'RNBC',
          'reg_name': 'RNBC',
          'size': 32,
          'table_ref': '37-111',
          'title_desc': 'Receive No Buffers Count Register',
          'view': 'PCI 3'},
 'ROC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'ROC',
                     'description': ['Number of receive oversize errors'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16556,
         'offset_end': (16559, None),
         'offset_start': (16556, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'ROC',
         'reg_name': 'ROC',
         'size': 32,
         'table_ref': '37-114',
         'title_desc': 'Receive Oversize Count Register',
         'view': 'PCI 3'},
 'RSRPD': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (31, 12),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'SIZE',
                       'description': ['Any packet received that is <= SIZE will assert an interrupt condition (ICR.SRPD). This field is specified in bytes and includes the headers and the CRC but not the VLAN header in the size calculation.'],
                       'range': (11, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 11264,
           'offset_end': (11267, None),
           'offset_start': (11264, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'RSRPD',
           'reg_name': 'RSRPD',
           'size': 32,
           'table_ref': '37-61',
           'title_desc': 'Receive Small Packet Detect Interrupt Register',
           'view': 'PCI 3'},
 'RUC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'RUC',
                     'description': ['Number of receive undersize errors'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16548,
         'offset_end': (16551, None),
         'offset_start': (16548, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'RUC',
         'reg_name': 'RUC',
         'size': 32,
         'table_ref': '37-112',
         'title_desc': 'Receive Undersize Count Register',
         'view': 'PCI 3'},
 'RXCSUM': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (31, 10),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'TUOFL',
                        'description': ['TCP/UDP Checksum Off load Enable. This bit is used to enable the TCP/UDP Checksum off-loading feature.',
                                        '0 = TCP/UDP Checksum Off load Disabled1 = Hardware will calculate the TCP or UDP checksum and indicate a pass/fail indication to software via the TCP/UDP Checksum Error bit (TCPE).'],
                        'range': (9, 9),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'IPOFL',
                        'description': ['IP Checksum Off load Enable. This bit is used to enable the IP Checksum off-loading feature.',
                                        '0 = IP Checksum Off load Disabled1 = Hardware will calculate the IP checksum and indicate a pass/fail indication to software via the IP Checksum Error bit (IPE) in the ERROR field of the receive descriptor.'],
                        'range': (8, 8),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'PCSS',
                        'description': ["Packet Checksum Start. This field controls the starting byte for the Packet Checksum calculation. The Packet Checksum is the one's complement over the receive packet, starting from the byte indicated by PCSS (0 corresponds to the first byte of the packet), after stripping.",
                                        'For example, for an Ethernet II frame encapsulated as an 802.3ac VLAN packet and with PCSS set to 14, the packet checksum would include the entire encapsulated frame, excluding the 14-byte Ethernet header (DA, SA, Type and Length) and the 4-byte VLAN tag. The Packet Checksum will not include the Ethernet CRC if the RCTL.SECRC bit is set. Software must make the required offsetting computation (to back out the bytes that should not have been included and to include the pseudo-header) prior to comparing the Packet Checksum against the TCP checksum stored in the packet. '],
                        'range': (7, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 20480,
            'offset_end': (20483, None),
            'offset_start': (20480, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'RXCSUM',
            'reg_name': 'RXCSUM',
            'size': 32,
            'table_ref': '37-62',
            'title_desc': 'Receive Checksum Control Register',
            'view': 'PCI 3'},
 'RXDCTL': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 65536,
            'description': None,
            'fields': [{'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (31, 25),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'GRAN',
                        'description': ['Granularity of the thresholds in this register.',
                                        '0 = Threshold values are in units of Cache Lines, thresholds specified must not be greater than 31 descriptors (496B) or 15 32B cache lines.1 = Threshold values are in units of Descriptors (16B each)'],
                        'range': (24, 24),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (23, 22),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'WTHRESH',
                        'description': ["Write-back Threshold. This field controls the write-back of processed receive descriptors. This threshold refers to the number of receive descriptors in the GbE hardware buffer which are ready to be written back to host memory. In the absence of external events (explicit flushes), the write-back will occur only after more than WTHRESH descriptors are available for write-back.Note:Since the default value for this field is 1, the descriptors are normally written back as soon as one cache line is available. This field must contain a non-zero value to take advantage of the write-back bursting capabilities of the EP80579's GbE."],
                        'range': (21, 16),
                        'reset': 1,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (15, 14),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'HTHRESH',
                        'description': ['Host Threshold. This field is used to control the fetching of descriptors from host memory. This threshold refers to the number of valid, unprocessed receive descriptors that must exist in host memory before they will be fetched.'],
                        'range': (13, 8),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (7, 6),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'PTHRESH',
                        'description': ['Prefetch Threshold. This field is used to control when a prefetch of descriptors will be considered. This threshold refers to the number of valid, unprocessed receive descriptors the chip has in its GbE hardware buffer. If this number drops below PTHRESH, the algorithm will consider pre-fetching descriptors from host memory. This fetch will not happen however unless there are at least HTHRESH valid descriptors in host memory to fetch.'],
                        'range': (5, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 10280,
            'offset_end': (10283, None),
            'offset_start': (10280, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'RXDCTL',
            'reg_name': 'RXDCTL',
            'size': 32,
            'table_ref': '37-59',
            'title_desc': 'Receive Descriptor Control Register',
            'view': 'PCI 3'},
 'RXERRC': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'RXERRC',
                        'description': ['RX Error Count'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16396,
            'offset_end': (16399, None),
            'offset_start': (16396, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'RXERRC',
            'reg_name': 'RXERRC',
            'size': 32,
            'table_ref': '37-81',
            'title_desc': 'Receive Error Count Register',
            'view': 'PCI 3'},
 'SCC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'SCC',
                     'description': ['Number of times a transmit encountered a single collision.'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16404,
         'offset_end': (16407, None),
         'offset_start': (16404, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'SCC',
         'reg_name': 'SCC',
         'size': 32,
         'table_ref': '37-83',
         'title_desc': 'Single Collision Count Register',
         'view': 'PCI 3'},
 'STATUS': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': u'0000XXXXh',
            'description': None,
            'fields': [{'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (31, 10),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'Reserved',
                        'description': ['Reserved'],
                        'range': (9, 8),
                        'reset': None,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'SPEED',
                        'description': ['Link Speed Setting: Reflects speed setting of the MAC.',
                                        'In GMII/MII mode, these bits reflect the software CTRL.SPEED setting ',
                                        '? 00 => 10 Mbps',
                                        '? 01 => 100 Mbps',
                                        '? 10 => 1000 Mbps',
                                        '? 11 => 1000 Mbps'],
                        'range': (7, 6),
                        'reset': None,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'LINKMODE',
                        'description': ['Mode. Based on CTRL_EXT. LINK_MODE.',
                                        '0 = MAC is operating in GMII/MII mode1 = Reserved'],
                        'range': (5, 5),
                        'reset': None,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'TXOFF',
                        'description': ['Transmission Off. This bit indicates the state of the transmit function when symmetrical flow control has been enabled and negotiated with the link partner.',
                                        '0 = Symmetrical flow control is disabled, or transmission is not paused.1 = Symmetrical flow control is enabled, and the transmit function is paused due to the reception of an XOFF frame. It is cleared upon expiration of the pause timer or the receipt of an XON frame.'],
                        'range': (4, 4),
                        'reset': None,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (3, 2),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'RSVD',
                        'description': ['Reserved'],
                        'range': (1, 1),
                        'reset': None,
                        'sticky': ''},
                       {'access': 'RO',
                        'acronym': 'FD',
                        'description': ['Full Duplex. This bit reflects the MAC duplex configuration. Normally, the duplex setting for the link, as it should reflect the duplex configuration negotiated between the PHY and link partner (copper link) or MAC and link partner (fiber link).',
                                        '0 = Half Duplex mode1 = Full Duplex mode'],
                        'range': (0, 0),
                        'reset': None,
                        'sticky': ''}],
            'offset': 8,
            'offset_end': (11, None),
            'offset_start': (8, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'STATUS',
            'reg_name': 'STATUS',
            'size': 32,
            'table_ref': '37-26',
            'title_desc': 'Device Status Register',
            'view': 'PCI 3'},
 'TADV': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IDV',
                      'description': ['Interrupt Delay Value. ',
                                      'Timer increments are',
                                      'RMII: 1.28 microseconds',
                                      'RGMII: 1.024 microseconds. ',
                                      'The transmit interrupt delay timer (TIDV) can be used to coalesce transmit interrupts. However, it might be necessary to ensure that no completed transmit remains unnoticed for too long an interval in order ensure timely release of transmit buffers. This register can be used to ENSURE that a transmit interrupt occurs at some predefined interval after a transmit is completed. Like the delayed-transmit timer, the absolute transmit timer ONLY applies to transmit descriptor operations where (a) interrupt-based reporting is requested (RS set) and (b) the use of the timer function is requested (IDE is set).',
                                      'This feature operates by initiating a countdown timer upon successfully transmitting the buffer. When the timer expires, a transmit-complete interrupt (ICR.TXDW) is generated. The occurrence of either an immediate (non-scheduled) or delayed transmit timer (TIDV) expiration interrupt halts the TADV timer and eliminates any spurious second interrupts.',
                                      'Setting the value to 0b disables the transmit absolute delay function. If an immediate (nonscheduled) interrupt is desired for any transmit descriptor, the descriptor IDE should be set to 0b.Note:This timer ONLY causes an interrupt. It does NOT cause a writeback'],
                      'range': (15, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 14380,
          'offset_end': (14383, None),
          'offset_start': (14380, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'TADV',
          'reg_name': 'TADV',
          'size': 32,
          'table_ref': '37-77',
          'title_desc': 'Transmit Absolute Interrupt Delay Value Register',
          'view': 'PCI 3'},
 'TCTL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 8,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 25),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RTLC',
                      'description': ['Re-Transmit on Late Collision. This bit configures the hardware to perform retransmission of packets when a late collision is detected. Note that the collision window is speed dependent: 64B for 10/100 Mbps and 512B for 1Gbps operation. If a late collision is detected when this bit is clear, the transmit function assumes the packet is successfully transmitted.Note:This bit is ignored in full-duplex mode.'],
                      'range': (24, 24),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'PBE',
                      'description': ["Packet Burst Enable. The EP80579's GbE does not support Packet Bursting for 1Gbps half-duplex transmit operation. This bit must be set to 0."],
                      'range': (23, 23),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'SWXOFF',
                      'description': ['Software XOFF Transmission. When set to a 1 the device will schedule the transmission of an XOFF (PAUSE) frame using the current value of the PAUSE timer. This bit clears itself upon transmission of the XOFF frame.Note:While 802.3x flow control is only defined during full duplex operation, the sending of PAUSE frames via the SWXOFF bit is not gated by the duplex settings within the device. Software should not write a 1 to this bit while the device is configured for half duplex operation.'],
                      'range': (22, 22),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'COLD',
                      'description': ['Collision Distance. Wire speeds of 1Gbps result in a very short collision radius with traditional minimum packet sizes. This bit specifies the minimum number of bytes in the packet to satisfy the desired collision distance for proper CSMA/CD operation. It is important to note that the resulting packet has special characters appended to the end, not regular data characters. Hardware strips special characters for packets that go from 1 Gbps environments to 100 Mbps environments.Note:The hardware checks and pads to this value even in full-duplex operation.'],
                      'range': (21, 12),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'CT',
                      'description': ['Collision Threshold. Software may choose to abort packet transmission in less than the Ethernet mandated 16 collisions. This field determines the number of attempts at retransmission prior to giving up on the packet (not including the first transmission attempt). The Ethernet back-off algorithm is implemented and clamps to the maximum number of slot-times after 10 retries. This field only has meaning when in half-duplex operation.Note:While this field can be varied, it should be set to a value of 15 in order to comply with the IEEE specification requiring a total of 16 attempts.'],
                      'range': (11, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'PSP',
                      'description': ['Pad Short Packets to 64B with valid data characters, NOT padding symbols.',
                                      '0 = Do not pad short packets1 = Pad short packetsNote:This is not the same as the mini-mum collision distance.'],
                      'range': (3, 3),
                      'reset': 1,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved. '],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'EN',
                      'description': ['Enable.',
                                      '0 = Writing this bit to 0 will stop transmission after any in progress packets are sent. Data remains in the transmit FIFO until the device is re-enabled. Software should combine this with reset if the packets in the FIFO should be flushed.1 = The transmitter is enabled.'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved. '],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 1024,
          'offset_end': (1027, None),
          'offset_start': (1024, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'TCTL',
          'reg_name': 'TCTL',
          'size': 32,
          'table_ref': '37-67',
          'title_desc': 'Transmit Control Register',
          'view': 'PCI 3'},
 'TDBAH': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': u'XXXXXXXXh',
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'TDBAH',
                       'description': ['Transmit Descriptor Base AddressNote:TDBAH[31:0] must be set to 0.'],
                       'range': (31, 0),
                       'reset': None,
                       'sticky': ''}],
           'offset': 14340,
           'offset_end': (14343, None),
           'offset_start': (14340, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'TDBAH',
           'reg_name': 'TDBAH',
           'size': 32,
           'table_ref': '37-71',
           'title_desc': 'Transmit Descriptor Base Address High Register',
           'view': 'PCI 3'},
 'TDBAL': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': u'XXXXXXX0h',
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'TDBAL',
                       'description': ['Transmit Descriptor Base Address Low'],
                       'range': (31, 4),
                       'reset': None,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (3, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 14336,
           'offset_end': (14339, None),
           'offset_start': (14336, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'TDBAL',
           'reg_name': 'TDBAL',
           'size': 32,
           'table_ref': '37-70',
           'title_desc': 'Transmit Descriptor Base Address Low Register',
           'view': 'PCI 3'},
 'TDH': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'TDH',
                     'description': ['Transmit Descriptor Head'],
                     'range': (15, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 14352,
         'offset_end': (14355, None),
         'offset_start': (14352, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'TDH',
         'reg_name': 'TDH',
         'size': 32,
         'table_ref': '37-73',
         'title_desc': 'Transmit Descriptor Head Register',
         'view': 'PCI 3'},
 'TDLEN': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RV',
                       'acronym': 'Rsvd',
                       'description': ['Reserved'],
                       'range': (31, 20),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'LEN',
                       'description': ['Descriptor Length'],
                       'range': (19, 7),
                       'reset': 0,
                       'sticky': ''},
                      {'access': 'RV',
                       'acronym': '0',
                       'description': ['Writes are ignored, reads return 0.'],
                       'range': (6, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 14344,
           'offset_end': (14347, None),
           'offset_start': (14344, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'TDLEN',
           'reg_name': 'TDLEN',
           'size': 32,
           'table_ref': '37-72',
           'title_desc': 'Transmit Descriptor Length Register',
           'view': 'PCI 3'},
 'TDT': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'TDT',
                     'description': ['Transmit Descriptor Tail'],
                     'range': (15, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 14360,
         'offset_end': (14363, None),
         'offset_start': (14360, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'TDT',
         'reg_name': 'TDT',
         'size': 32,
         'table_ref': '37-74',
         'title_desc': 'Transmit Descriptor Tail Register',
         'view': 'PCI 3'},
 'TIDV': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IDV',
                      'description': ['Interrupt Delay Value. ',
                                      'Timer increments are',
                                      'RMII: 1.28 microseconds',
                                      'RGMII: 1.024 microseconds. ',
                                      '? This register is used to delay interrupt notification for transmit operations by coalescing interrupts for multiple transmitted buffers. Delaying interrupt notification helps maximize the amount of transmit buffers reclaimed by a single interrupt. This feature only applies to transmit descriptor operations where (a) interrupt-based reporting is requested (RS set) and (b) the use of the timer function is requested (IDE is set).',
                                      '? This feature operates by initiating a countdown timer upon successfully transmitting the buffer. If a subsequent transmit delayed-interrupt is scheduled before the timer expires, the timer is re-initialized to the programmed value and re-starts its countdown. When the timer expires, a transmit-complete interrupt (ICR.TXDW) is generated.',
                                      '? Hardware always loads the transmit interrupt counter whenever it processes a descriptor with IDE set even if it is already counting down due to a previous descriptor.',
                                      '? Setting the value to 0 is not allowed. If an immediate (non-scheduled) interrupt is desired for any transmit descriptor, the descriptor IDE should be set to 0.',
                                      '? The occurrence of either an immediate (non-scheduled) or absolute transmit timer interrupt will halt the TIDV timer and eliminate any spurious second interrupts.',
                                      '? Transmit interrupts due to a Transmit Absolute Timer (TADV) expiration or an immediate interrupt (RS =1, IDE=0) will cancel a pending TIDV interrupt. The TIDV countdown timer is reloaded but halted, though it may be restarted by a processing a subsequent transmit descriptor.'],
                      'range': (15, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 14368,
          'offset_end': (14371, None),
          'offset_start': (14368, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'TIDV',
          'reg_name': 'TIDV',
          'size': 32,
          'table_ref': '37-75',
          'title_desc': 'Transmit Interrupt Delay Value Register',
          'view': 'PCI 3'},
 'TIPG': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 6299656,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (31, 30),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IPGR2',
                      'description': ['IPG Receive Time 2. ',
                                      'Specifies the total length of the IPG time for non back-to-back transmissions. Measured in increments of the MAC clock: ',
                                      '? 8 ns MAC clock when operating @ 1 Gbps (82544GC/EI only).',
                                      '? 80 ns MAC clock when operating @ 100 Mbps ',
                                      '? 800 ns MAC clock when operating @ 10 Mbps. ',
                                      'In order to calculate the actual IPG value, a value of six should be added to the IPGR2 value as six MAC clocks are used by the MAC for synchronization and internal engines. ',
                                      'For the IEEE 802.3 standard IPG value of 96-bit time, the value that should be programmed into IPGR2 is six (total IPG delay of 12 MAC clock cycles) ',
                                      'According to the IEEE802.3 standard, IPGR1 should be 2/3 of IPGR2 value.IPGR2 is significant only in half-duplex mode of operation. '],
                      'range': (29, 20),
                      'reset': 6,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IPGR1',
                      'description': ['IPG Receive Time 1. ',
                                      'Specifies the length of the first part of the IPG time for non back-to- back transmissions. During this time, the internal IPG counter restarts if any carrier event occurs. Once the time specified in IPGR1 has elapsed, carrier sense does not affect the IPG counter. According to the IEEE802.3 standard, IPGR1 should be 2/3 of IPGR2 value. Measured in increments of the MAC clock:',
                                      '? 8 ns MAC clock when operating @ 1 Gbps ',
                                      '? 80 ns MAC clock when operating @ 100 Mbps ',
                                      '? 800 ns MAC clock when operating @ 10 Mbps. ',
                                      'For IEEE 802.3 minimum IPG value of 96-bit time, the value that should be programmed into IPGR1 is eight. IPGR1 is significant only in half-duplex mode of operation. '],
                      'range': (19, 10),
                      'reset': 8,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IPGT',
                      'description': ['IPG Transmit Time ',
                                      'Specifies the IPG time for back-to-back packet transmissions',
                                      'Measured in increments of the MAC clock: ',
                                      '? 8 ns MAC clock when operating @ 1 Gbps.',
                                      '? 80 ns MAC clock when operating @ 100 Mbps. ',
                                      '? 800 ns MAC clock when operating @ 10 Mbps. ',
                                      'To calculate the IPG value for 10/100/1000BASE-T applications, a value of four should be added to the IPGT value as four clocks are used by the MAC as internal overhead. The value that should be programmed into IPGT is 8. These values are recommended to assure that the minimum IPG gap is met under all synchronization conditions. '],
                      'range': (9, 0),
                      'reset': 8,
                      'sticky': ''}],
          'offset': 1040,
          'offset_end': (1043, None),
          'offset_start': (1040, None),
          'power_well': 'Gbe1/2:',
          'recurring': None,
          'reg_base_name': 'TIPG',
          'reg_name': 'TIPG',
          'size': 32,
          'table_ref': '37-68',
          'title_desc': 'Transmit IPG Register',
          'view': 'PCI 3'},
 'TNCRS': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'TNCRS',
                       'description': ['Number of transmissions without a CRS assertion from the PHY.'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16436,
           'offset_end': (16439, None),
           'offset_start': (16436, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'TNCRS',
           'reg_name': 'TNCRS',
           'size': 32,
           'table_ref': '37-89',
           'title_desc': 'Transmit with No CRS Count Register',
           'view': 'PCI 3'},
 'TORH': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'TORH',
                      'description': ['Number of total octets received - upper 4 bytes'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16580,
          'offset_end': (16583, None),
          'offset_start': (16580, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'TORH',
          'reg_name': 'TORH',
          'size': 32,
          'table_ref': '37-117',
          'title_desc': 'Total Octets Received High Register',
          'view': 'PCI 3'},
 'TORL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'TORL',
                      'description': ['Number of total octets received - lower 4 bytes'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16576,
          'offset_end': (16579, None),
          'offset_start': (16576, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'TORL',
          'reg_name': 'TORL',
          'size': 32,
          'table_ref': '37-116',
          'title_desc': 'Total Octets Received Low Register',
          'view': 'PCI 3'},
 'TOTH': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'TOTH',
                      'description': ['Number of total octets transmitted - upper 4 bytes'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16588,
          'offset_end': (16591, None),
          'offset_start': (16588, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'TOTH',
          'reg_name': 'TOTH',
          'size': 32,
          'table_ref': '37-119',
          'title_desc': 'Total Octets Transmitted High Register',
          'view': 'PCI 3'},
 'TOTL': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RC',
                      'acronym': 'TOTL',
                      'description': ['Number of total octets transmitted - lower 4 bytes'],
                      'range': (31, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 16584,
          'offset_end': (16591, None),
          'offset_start': (16584, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'TOTL',
          'reg_name': 'TOTL',
          'size': 32,
          'table_ref': '37-118',
          'title_desc': 'Total Octets Transmitted Low Register',
          'view': 'PCI 3'},
 'TPR': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'TPR',
                     'description': ['Total of all packets received'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16592,
         'offset_end': (16595, None),
         'offset_start': (16592, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'TPR',
         'reg_name': 'TPR',
         'size': 32,
         'table_ref': '37-120',
         'title_desc': 'Total Packets Received Register',
         'view': 'PCI 3'},
 'TPT': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RC',
                     'acronym': 'TPT',
                     'description': ['Number of all packets transmitted'],
                     'range': (31, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 16596,
         'offset_end': (16599, None),
         'offset_start': (16596, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'TPT',
         'reg_name': 'TPT',
         'size': 32,
         'table_ref': '37-121',
         'title_desc': 'Total Packets Transmitted Register',
         'view': 'PCI 3'},
 'TSCTC': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 0,
           'description': None,
           'fields': [{'access': 'RC',
                       'acronym': 'TSCTC',
                       'description': ['Number of TCP Segmentation contexts transmitted count'],
                       'range': (31, 0),
                       'reset': 0,
                       'sticky': ''}],
           'offset': 16632,
           'offset_end': (16635, None),
           'offset_start': (16632, None),
           'power_well': None,
           'recurring': None,
           'reg_base_name': 'TSCTC',
           'reg_name': 'TSCTC',
           'size': 32,
           'table_ref': '37-129',
           'title_desc': 'TCP Segmentation Context Transmitted Count Register',
           'view': 'PCI 3'},
 'TSCTFC': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'TSCTFC',
                        'description': ['Number of TCP Segmentation contexts where the device failed to transmit the entire data payload'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16636,
            'offset_end': (16639, None),
            'offset_start': (16636, None),
            'power_well': None,
            'recurring': None,
            'reg_base_name': 'TSCTFC',
            'reg_name': 'TSCTFC',
            'size': 32,
            'table_ref': '37-130',
            'title_desc': 'TCP Segmentation Context Transmit Fail Count Register',
            'view': 'PCI 3'},
 'TSPMT': {'bar': 'CSRBAR',
           'bus_device_function': 'M:2:0',
           'default': 16778240,
           'description': None,
           'fields': [{'access': 'RW',
                       'acronym': 'TSPBP',
                       'description': ['TCP Segmentation Packet Buffer Padding, value is in bytes. This field allows software configuration of packet buffer space which must be reserved as "pad" for worst-case header insertion. To ensure that this value does not prevent descriptors from being serviced at all, it is necessary that the transmit packet buffer allocation should be larger than the sum of (maximum TCP HDRLEN + maximum MSS + TSPMT.TMPBP + 80 bytes).'],
                       'range': (31, 16),
                       'reset': 256,
                       'sticky': ''},
                      {'access': 'RW',
                       'acronym': 'TSMT',
                       'description': ['TCP Segmentation Minimum Transfer, value is in bytes. The DMA will attempt to issue burst fetches for as much data as possible, and it is possible for the transmit DMA to cause the transmit packet buffer to approach fullness (less the pad specified). However, if the packet buffer empties slightly, the transmit DMA could initiate a series of small transfers.',
                                       'To further optimize the efficiency of the transmit DMA during TCP segmentation operation, the this TSPMT.TSMT field allows software configuration of the minimum number of bytes which the DMA should attempt to transfer in a single burst operation. The transmit DMA will use this value to refrain from issuing a burst read until at least TSPMT.TSMT bytes of data from the current data descriptor can be stored in the packet buffer.',
                                       'This check will be ignored if, after a series of DMA operations, the descriptor contains a smaller number of unfetched data bytes. To ensure that this minimum threshold does not prevent descriptors from being serviced at all, it is necessary that the transmit packet buffer allocation should be larger than the sum of (TSPMT.TSMT + TSPMT.TSPBP + 80 bytes).'],
                       'range': (15, 0),
                       'reset': 1024,
                       'sticky': ''}],
           'offset': 14384,
           'offset_end': (14387, None),
           'offset_start': (14384, None),
           'power_well': 'Gbe1/2:',
           'recurring': None,
           'reg_base_name': 'TSPMT',
           'reg_name': 'TSPMT',
           'size': 32,
           'table_ref': '37-78',
           'title_desc': 'TCP Segmentation Pad And Minimum Threshold Register',
           'view': 'PCI 3'},
 'TXDCTL': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RW',
                        'acronym': 'LWTHRESH',
                        'description': ['Transmit Descriptor Low Threshold. This field controls the number of pre-fetched transmit descriptors at which a transmit descriptor-low interrupt is reported. Asserting ICR.TXD_LOW only when the processing distance from the TDT register drops below LWTHRESH may allow software to operate more efficiently by maintaining a continuous addition of transmit work, interrupting only when the hardware nears completion of all submitted work.',
                                        'An interrupt condition is asserted when the number of descriptors available transitions from',
                                        'threshold_level + 1 -> threshold_level',
                                        'where LWTHRESH specifies a multiple of 8 descriptors, (i.e. threshold_level = 8*LWTHRESH).',
                                        'Setting this value to 0 will cause this interrupt to be generated only when the transmit descriptor cache becomes completely empty.'],
                        'range': (31, 25),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'GRAN',
                        'description': ['Granularity of the thresholds in this register.',
                                        '0 = Cache Lines1 = Descriptors (16B each)'],
                        'range': (24, 24),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (23, 22),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'WTHRESH',
                        'description': ['Write-back Threshold. This field controls the write-back of processed transmit descriptors. This threshold refers to the number of transmit descriptors in the GbE hardware buffer which are ready to be written back to host memory. In the absence of external events (explicit flushes), the write-back will occur only after more than WTHRESH descriptors are available for write-back.',
                                        'Since write-back notification of transmit descriptor completion is optional (under the control of the RS bit in the descriptor), not all processed descriptors are counted with respect to WTHRESH (any single transmit descriptor with RS=0 is consumed with no writeback notification performed). When WTHRESH is non-zero, processing a descriptor with RS=1 initiates accumulation of pending writebacks; accumulated writebacks will include even those descriptors with RS=0, in order to optimize writeback bursts.Note:When WTHRESH value is set to 0, transmit descriptor writeback notification will be similar to the 82452 behavior. In accordance with WTHRESH=0, the writeback notification for a descriptor with RS=1 will occur as soon as the descriptor is processed. In addition, processed transmit descriptors are not written-back in entirety; only the descriptor status field is written back/ updated. This 82542-compatible mode is the default HW behavior.'],
                        'range': (21, 16),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (15, 14),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'HTHRESH',
                        'description': ['Host Threshold. This field is used to control the fetching of descriptors from host memory. This threshold refers to the number of valid, unprocessed receive descriptors that must exist in host memory before they will be fetched.'],
                        'range': (13, 8),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RV',
                        'acronym': 'Rsvd',
                        'description': ['Reserved'],
                        'range': (7, 6),
                        'reset': 0,
                        'sticky': ''},
                       {'access': 'RW',
                        'acronym': 'PTHRESH',
                        'description': ['Prefetch Threshold. This field is used to control when a prefetch of descriptors will be considered. This threshold refers to the number of valid, unprocessed transmit descriptors the chip has in its GbE hardware buffer. If this number drops below PTHRESH, the algorithm will consider pre-fetching descriptors from host memory. This fetch will not happen however unless there are at least HTHRESH valid descriptors in host memory to fetch.'],
                        'range': (5, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 14376,
            'offset_end': (14379, None),
            'offset_start': (14376, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'TXDCTL',
            'reg_name': 'TXDCTL',
            'size': 32,
            'table_ref': '37-76',
            'title_desc': 'Transmit Descriptor Control Register',
            'view': 'PCI 3'},
 'VET': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 33024,
         'description': 'To be compliant with the 802.3ac standard, this register must be programmed with the value 0x00_00_81_00',
         'fields': [{'access': 'RV',
                     'acronym': 'RSVD',
                     'description': ['Reserved'],
                     'range': (31, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'VET',
                     'description': ['To be compliant with the 802.3ac standard, this register must be programmed with the value 0x00_00_81_00.'],
                     'range': (15, 0),
                     'reset': 33024,
                     'sticky': ''}],
         'offset': 56,
         'offset_end': (59, None),
         'offset_start': (56, None),
         'power_well': 'Gbe1/2:',
         'recurring': None,
         'reg_base_name': 'VET',
         'reg_name': 'VET',
         'size': 32,
         'table_ref': '37-34',
         'title_desc': 'VLAN EtherType Register',
         'view': 'PCI 3'},
 'VFTA[0-127]': {'bar': 'CSRBAR',
                 'bus_device_function': 'M:2:0',
                 'default': u'XXXXXXXXh',
                 'description': None,
                 'fields': [{'access': 'RW',
                             'acronym': 'VLAN_Vector',
                             'description': ['VLAN_Vector 32b vector of VLAN filter table information.'],
                             'range': (31, 0),
                             'reset': None,
                             'sticky': ''}],
                 'offset': 22016,
                 'offset_end': (22019, 4),
                 'offset_start': (22016, 4),
                 'power_well': 'Gbe1/2:',
                 'recurring': 128,
                 'reg_base_name': 'VFTA',
                 'reg_name': 'VFTA[0-127]',
                 'size': 32,
                 'table_ref': '37-66',
                 'title_desc': '128 VLAN Filter Table Array Registers',
                 'view': 'PCI 3'},
 'WUC': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RO',
                     'acronym': 'RSVD',
                     'description': ['Reserved'],
                     'range': (31, 4),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'APMPME',
                     'description': ['Assert PME On APM Wakeup - ',
                                     'If it is 1, the GbE will set the PME_Status bit in the Power Management Control / Status Register (PMCSR) and assert GBE_PME_WAKE when APM Wakeup is enabled and the GbE receives a matching magic packet.',
                                     '*Note that this bit is loaded from the EEPROM, if present'],
                     'range': (3, 3),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'PME_Status',
                     'description': ['PME_Status',
                                     'This bit is set when the GbE receives a wakeup event. It is the same as the PME_Status bit in the Power Management Control / Status Register (PMCSR). Writing a "1" to this bit will clear it and clear the PME_Status bit in the PMCSR.'],
                     'range': (2, 2),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'PME_EN',
                     'description': ['PME_En',
                                     'This read/write bit is used by the driver to access the PME_En bit of the Power Management Control / Status Register (PMCSR) without writing to PCI configuration space.'],
                     'range': (1, 1),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RW',
                     'acronym': 'APME',
                     'description': ['Advance Power Management Enable - ',
                                     'If "1", APM Wakeup is enabled.',
                                     '*Note that this bit is loaded from the EEPROM, if present'],
                     'range': (0, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 22528,
         'offset_end': (22531, None),
         'offset_start': (22528, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'WUC',
         'reg_name': 'WUC',
         'size': 32,
         'table_ref': '37-131',
         'title_desc': 'Wake Up Control Register (0x05800; RW)',
         'view': 'PCI 3'},
 'WUFC': {'bar': 'CSRBAR',
          'bus_device_function': 'M:2:0',
          'default': 0,
          'description': None,
          'fields': [{'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved. Should be set to 0.'],
                      'range': (31, 20),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FLX3',
                      'description': ['Flexible Filter 3 Enable'],
                      'range': (19, 19),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FLX2',
                      'description': ['Flexible Filter 2 Enable'],
                      'range': (18, 18),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FLX1',
                      'description': ['Flexible Filter 1 Enable'],
                      'range': (17, 17),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'FLX0',
                      'description': ['Flexible Filter 0 Enable'],
                      'range': (16, 16),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'RSVD',
                      'description': ['Reserved. Should be set to 0.'],
                      'range': (15, 15),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'RSVD',
                      'description': ['Reserved. Should be set to 0.'],
                      'range': (14, 8),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IPV6',
                      'description': ['Directed IPv6 Packet Wake Up Enable'],
                      'range': (7, 7),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'IPV4',
                      'description': ['Directed IPv4 Packet Wake Up Enable'],
                      'range': (6, 6),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'ARP',
                      'description': ['ARP/IPv4 Request Packet Wake Up Enable'],
                      'range': (5, 5),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'BC',
                      'description': ['Broadcast Wake Up Enable'],
                      'range': (4, 4),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'MC',
                      'description': ['Directed Multicast Wake Up Enable'],
                      'range': (3, 3),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'EX',
                      'description': ['Directed Exact Wake Up Enable'],
                      'range': (2, 2),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RW',
                      'acronym': 'MAG',
                      'description': ['Magic Packet Wake Up Enable'],
                      'range': (1, 1),
                      'reset': 0,
                      'sticky': ''},
                     {'access': 'RV',
                      'acronym': 'Rsvd',
                      'description': ['Reserved'],
                      'range': (0, 0),
                      'reset': 0,
                      'sticky': ''}],
          'offset': 22536,
          'offset_end': (22539, None),
          'offset_start': (22536, None),
          'power_well': None,
          'recurring': None,
          'reg_base_name': 'WUFC',
          'reg_name': 'WUFC',
          'size': 32,
          'table_ref': '37-132',
          'title_desc': 'Wake Up Filter Control Register (0x05808; RW)',
          'view': 'PCI 3'},
 'WUS': {'bar': 'CSRBAR',
         'bus_device_function': 'M:2:0',
         'default': 0,
         'description': None,
         'fields': [{'access': 'RV',
                     'acronym': 'RSVD',
                     'description': ['Reserved. Should be set to 0.'],
                     'range': (31, 20),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'FLX3',
                     'description': ['Flexible Filter 3 Match'],
                     'range': (19, 19),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'FLX2',
                     'description': ['Flexible Filter 2 Match'],
                     'range': (18, 18),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'FLX1',
                     'description': ['Flexible Filter 1 Match'],
                     'range': (17, 17),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'FLX0',
                     'description': ['Flexible Filter 0 Match'],
                     'range': (16, 16),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RV',
                     'acronym': 'Reserved',
                     'description': ['Reserved. '],
                     'range': (15, 8),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'IPV6',
                     'description': ['Directed IPv6 Packet Wake Up Packet Received'],
                     'range': (7, 7),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'IPV4',
                     'description': ['Directed IPv4 Packet Wake Up Packet Received'],
                     'range': (6, 6),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'ARP',
                     'description': ['ARP/IPv4 Request Packet Wake Up Packet Received'],
                     'range': (5, 5),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'BC',
                     'description': ['Broadcast Wake Up Packet Received'],
                     'range': (4, 4),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'MC',
                     'description': ['Directed Multicast Wake Up Packet Received ',
                                     'The packet was a multicast packet whose hashed to a value that corresponded to a 1 bit in the Multicast Table ArrayNote:If the MAC has been configured for promiscuous mode, a multicast wakeup will occur if a broadcast packet is received. This is because a broadcast message is a special type of multicast message. Refer to 802.3.'],
                     'range': (3, 3),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'EX',
                     'description': ['Directed Exact Wake Up Packet Received',
                                     "The packet's address matched one of the 16 pre-programmed exact values in the Receive Address registers"],
                     'range': (2, 2),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RWC',
                     'acronym': 'MAG',
                     'description': ['Magic Packet Wake Up Packet Received'],
                     'range': (1, 1),
                     'reset': 0,
                     'sticky': ''},
                    {'access': 'RV',
                     'acronym': 'Rsvd',
                     'description': ["Reserved. Must be written as '0'"],
                     'range': (0, 0),
                     'reset': 0,
                     'sticky': ''}],
         'offset': 22544,
         'offset_end': (22547, None),
         'offset_start': (22544, None),
         'power_well': None,
         'recurring': None,
         'reg_base_name': 'WUS',
         'reg_name': 'WUS',
         'size': 32,
         'table_ref': '37-133',
         'title_desc': 'Wake Up Status Register (0x05810; RW)',
         'view': 'PCI 3'},
 'XOFFRXC': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'XOFFRXC',
                         'description': ['Number of XOFF packets received.'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16464,
             'offset_end': (16467, None),
             'offset_start': (16464, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'XOFFRXC',
             'reg_name': 'XOFFRXC',
             'size': 32,
             'table_ref': '37-94',
             'title_desc': 'XOFF Received Count Register',
             'view': 'PCI 3'},
 'XOFFTXC': {'bar': 'CSRBAR',
             'bus_device_function': 'M:2:0',
             'default': 0,
             'description': None,
             'fields': [{'access': 'RC',
                         'acronym': 'XOFFTXC',
                         'description': ['Number of XOFF packets transmitted.'],
                         'range': (31, 0),
                         'reset': 0,
                         'sticky': ''}],
             'offset': 16468,
             'offset_end': (16471, None),
             'offset_start': (16468, None),
             'power_well': 'Gbe1/2:',
             'recurring': None,
             'reg_base_name': 'XOFFTXC',
             'reg_name': 'XOFFTXC',
             'size': 32,
             'table_ref': '37-95',
             'title_desc': 'XOFF Transmitted Count Register',
             'view': 'PCI 3'},
 'XONRXC': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'XONRXC',
                        'description': ['Number of XON packets received.'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16456,
            'offset_end': (16459, None),
            'offset_start': (16456, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'XONRXC',
            'reg_name': 'XONRXC',
            'size': 32,
            'table_ref': '37-92',
            'title_desc': 'XON Received Count Register',
            'view': 'PCI 3'},
 'XONTXC': {'bar': 'CSRBAR',
            'bus_device_function': 'M:2:0',
            'default': 0,
            'description': None,
            'fields': [{'access': 'RC',
                        'acronym': 'XONTXC',
                        'description': ['Number of XON packets transmitted.'],
                        'range': (31, 0),
                        'reset': 0,
                        'sticky': ''}],
            'offset': 16460,
            'offset_end': (16463, None),
            'offset_start': (16460, None),
            'power_well': 'Gbe1/2:',
            'recurring': None,
            'reg_base_name': 'XONTXC',
            'reg_name': 'XONTXC',
            'size': 32,
            'table_ref': '37-93',
            'title_desc': 'XON Transmitted Count Register',
            'view': 'PCI 3'}}