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
|
/*
* Header file defines some private structures and macro
*
* $Id: 8192cd.h,v 1.56.2.38 2011/01/13 14:38:36 pluswang Exp $
*
* Copyright (c) 2009 Realtek Semiconductor Corp.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef _8192CD_H_
#define _8192CD_H_
#ifdef __KERNEL__
#include <linux/interrupt.h>
#include <linux/timer.h>
#include <linux/list.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#endif
#ifdef __DRAYTEK_OS__
#include <draytek/softimer.h>
#include <draytek/skbuff.h>
#include <draytek/wl_dev.h>
#endif
#include "./8192cd_cfg.h"
#if !defined(__KERNEL__) && !defined(__ECOS)
#include "./sys-support.h"
#endif
#ifdef __ECOS
#include <cyg/io/eth/rltk/819x/wrapper/sys_support.h>
#include <cyg/io/eth/rltk/819x/wrapper/skbuff.h>
#include <cyg/io/eth/rltk/819x/wrapper/timer.h>
#endif
#ifdef SUPPORT_SNMP_MIB
#include "./8192cd_mib.h"
#endif
#ifdef P2P_SUPPORT
#include "./8192cd_p2p.h"
#endif
#ifdef USE_OUT_SRC
#include "OUTSRC/odm_types.h"
#include "./odm_inc.h"
#include "OUTSRC/odm.h"
#endif
#ifdef CONFIG_RTL_8812_SUPPORT
#include "8812_vht_gen.h"
#endif
#define TRUE 1
#define FALSE 0
#define CONGESTED 2
#ifdef SUCCESS
#undef SUCCESS
#endif
#define SUCCESS 1
#define FAIL 0
#if 0
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef unsigned long UINT32;
typedef signed char INT8;
typedef signed short INT16;
typedef signed long INT32;
typedef unsigned int UINT;
typedef signed int INT;
typedef unsigned long long UINT64;
typedef signed long long INT64;
#endif
#ifdef __KERNEL__
#include "./ieee802_mib.h"
#elif defined(__ECOS)
#include <cyg/io/eth/rltk/819x/wlan/ieee802_mib.h>
#endif
#include "./wifi.h"
#ifdef CONFIG_WLAN_HAL
#include "./Wlan_TypeDef.h"
#include "./Wlan_QoSType.h"
#endif
#include "./8192cd_security.h"
#ifdef RTK_BR_EXT
#include "./8192cd_br_ext.h"
#endif
#include "./8192cd_hw.h"
#if defined(INCLUDE_WPA_PSK) || defined(WIFI_HAPD)
#include "./8192cd_psk.h"
#endif
#ifdef WIFI_SIMPLE_CONFIG
#ifdef INCLUDE_WPS
#include "./wps/wsc.h"
#endif
#endif
#ifdef WIFI_WPAS
#define MAX_WPA_IE_LEN 255+5
#define MAX_RSN_IE_LEN 255+5
#endif
#if defined(CONFIG_RTL_WAPI_SUPPORT)
#include "wapi_wai.h"
#include "wapiCrypto.h"
#endif
#ifdef CONFIG_RTK_MESH
#include "../mesh_ext/mesh.h"
#include "../mesh_ext/hash_table.h"
#include "../mesh_ext/mesh_route.h"
#include "../mesh_ext/mesh_security.h"
#endif
#define DWNGRADE_PROBATION_TIME 3
#define UPGRADE_PROBATION_TIME 3
#define TRY_RATE_FREQ 6
#ifdef CONFIG_RTL8190_PRIV_SKB
#define MAX_PRE_ALLOC_SKB_NUM 160
#else
#define MAX_PRE_ALLOC_SKB_NUM 32
#endif
#if defined(__LINUX_2_6__)
#if defined(CONFIG_PRINTK)
#define panic_printk printk
#elif !defined(CONFIG_PANIC_PRINTK)
#define panic_printk scrlog_printk
#endif
#endif
#ifdef HIGH_POWER_EXT_PA
#define HP_OFDM_POWER_MAX (priv->pshare->rf_ft_var.hp_ofdm_pwr_max)
#define HP_CCK_POWER_MAX (priv->pshare->rf_ft_var.hp_cck_pwr_max)
#define HP_OFDM_POWER_DEFAULT 20
#define HP_CCK_POWER_DEFAULT 16
#endif
#ifdef USB_POWER_SUPPORT
#define USB_HT_2S_DIFF 14
#define USB_RA_MASK 0x1e0fffff // disable MCS 12, 11, 10, 9, 8
#endif
#ifdef BEAMFORMING_SUPPORT
#define BEAMFORMING_ENTRY_NUM 2
typedef enum _ACT_CATEGORY{
ACT_CAT_SPECTRUM_MGNT = 0, // Spectrum management
ACT_CAT_QOS = 1, // Qos
ACT_CAT_DLS = 2, // Direct Link Protocol (DLS)
ACT_CAT_BA = 3, // Block Ack
ACT_CAT_PUBLIC = 4, // Public
ACT_CAT_RM = 5, // Radio Measurement (RM)
ACT_CAT_FT = 6, // Fast BSS Transition
ACT_CAT_HT = 7, // High Throughput
ACT_CAT_SAQ = 8, // Security Association Query
ACT_CAT_SAQ_PD_PUBLIC = 9, // Protected Dual of Public Action
ACT_CAT_TDLS = 12, // Tunneled Direct Link Setup
ACT_CAT_WMM = 17, // WMM
ACT_CAT_VHT = 21, // VHT
ACT_CAT_VENDOR_PROTECT = 126, // Vendor-specific Protected
ACT_CAT_VENDOR = 127, // Vendor-specific
} ACT_CATEGORY, *PACT_CATEGORY;
typedef enum _TYPE_SUBTYPE{
// Management Frame
Type_Asoc_Req = 0x00,
Type_Asoc_Rsp = 0x10,
Type_Reasoc_Req = 0x20,
Type_Reasoc_Rsp = 0x30,
Type_Probe_Req = 0x40,
Type_Probe_Rsp = 0x50,
Type_Beacon = 0x80,
Type_Atim = 0x90,
Type_Disasoc = 0xa0,
Type_Auth = 0xb0,
Type_Deauth = 0xc0,
Type_Action = 0xd0,
Type_Action_No_Ack = 0xe0,
// Control Frame
Type_Beamforming_Report_Poll = 0x44, //= MkString(S8(0,0,1,0,0,0,1,0));
Type_NDPA = 0x54,//= MkString(S8(0,0,1,0,1,0,1,0));
Type_BlockAckReq = 0x84,//= MkString(S8(0,0,1,0,0,0,0,1));
Type_BlockAck = 0x94,//= MkString(S8(0,0,1,0,1,0,0,1));
Type_PS_poll = 0xa4,//= MkString(S8(0,0,1,0,0,1,0,1));
Type_RTS = 0xb4,//= MkString(S8(0,0,1,0,1,1,0,1));
Type_CTS = 0xc4,//= MkString(S8(0,0,1,0,0,0,1,1));
Type_Ack = 0xd4,//= MkString(S8(0,0,1,0,1,0,1,1));
Type_Cfend = 0xe4,//= MkString(S8(0,0,1,0,0,1,1,1));
Type_Cfend_Ack = 0xf4,//= MkString(S8(0,0,1,0,1,1,1,1));
// Data Frame
Type_Data = 0x08,//= MkString(S8(0,0,0,1,0,0,0,0));
Type_Data_Ack = 0x18,//= MkString(S8(0,0,0,1,1,0,0,0));
Type_Data_Poll = 0x28,//= MkString(S8(0,0,0,1,0,1,0,0));
Type_Data_Poll_Ack = 0x38,//= MkString(S8(0,0,0,1,1,1,0,0));
Type_Null_Frame = 0x48,//= MkString(S8(0,0,0,1,0,0,1,0));
Type_Cfack = 0x58,//= MkString(S8(0,0,0,1,1,0,1,0));
Type_Cfpoll = 0x68,//= MkString(S8(0,0,0,1,0,1,1,0));
Type_Cfpoll_Ack = 0x78,//= MkString(S8(0,0,0,1,1,1,1,0));
Type_QosData = 0x88,//= MkString(S8(0,0,0,1,0,0,0,1));
Type_QData_Ack = 0x98,//= MkString(S8(0,0,0,1,1,0,0,1));
Type_QData_Poll = 0xa8,//= MkString(S8(0,0,0,1,0,1,0,1));
Type_QData_Poll_Ack= 0xb8,//= MkString(S8(0,0,0,1,1,1,0,1));
Type_QosNull = 0xc8,//= MkString(S8(0,0,0,1,0,0,1,1));
// Note: 0xd8 is reserved in 11e/13.0.
Type_QosCfpoll = 0xe8,//= MkString(S8(0,0,0,1,0,1,1,1));
Type_QosCfpoll_Ack = 0xf8,//= MkString(S8(0,0,0,1,1,1,1,1));
}TYPE_SUBTYPE, *PTYPE_SUBTYPE;
typedef enum _BEAMFORMING_STATE
{
BEAMFORMING_STATE_UNINITIALIZE,
BEAMFORMING_STATE_INITIALIZEING,
BEAMFORMING_STATE_INITIALIZED,
BEAMFORMING_STATE_PROGRESSING,
}BEAMFORMING_STATE, *PBEAMFORMING_STATE;
typedef struct _RT_BEAMFORMING_INFO {
BOOLEAN bUsed;
u2Byte AID;
u2Byte P_AID;
u1Byte MacAddr[6];
BEAMFORMING_STATE BeamformState;
} RT_BEAMFORMING_INFO, *PRT_BEAMFORMING_INFO;
typedef struct _RT_NDPA_STA_INFO {
u2Byte AID:12;
u2Byte FeedbackType:1;
u2Byte NcIndex:3;
} RT_NDPA_STA_INFO, *PRT_NDPA_STA_INFO;
#endif
#ifdef PCIE_POWER_SAVING
#define PABCD_ISR 0xB8003510
enum ap_pwr_state {
L0,
L1,
L2,
ASPM_L0s_L1,
};
enum ps_enable {
L1_en = BIT(0),
L2_en = BIT(1),
ASPM_en = BIT(2),
_1x1_en = BIT(4),
offload_en = BIT(5),
stop_dma_en = BIT(6),
};
enum pwr_state_change {
// Renamed by Annie for ODM OUTSRC porting and conflict naming issue, 2011-09-22
PWR_STATE_IN=1,
PWR_STATE_OUT=2
};
#endif
// for packet aggregation
#define FG_AGGRE_MPDU 1
#define FG_AGGRE_MPDU_BUFFER_FIRST 2
#define FG_AGGRE_MPDU_BUFFER_MID 3
#define FG_AGGRE_MPDU_BUFFER_LAST 4
#define FG_AGGRE_MSDU_FIRST 5
#define FG_AGGRE_MSDU_MIDDLE 6
#define FG_AGGRE_MSDU_LAST 7
#define MANAGEMENT_AID 0
enum wifi_state {
WIFI_NULL_STATE = 0x00000000,
WIFI_ASOC_STATE = 0x00000001,
WIFI_REASOC_STATE = 0x00000002,
WIFI_SLEEP_STATE = 0x00000004,
WIFI_STATION_STATE = 0x00000008,
WIFI_AP_STATE = 0x00000010,
WIFI_ADHOC_STATE = 0x00000020,
WIFI_AUTH_NULL = 0x00000100,
WIFI_AUTH_STATE1 = 0x00000200,
WIFI_AUTH_SUCCESS = 0x00000400,
WIFI_SITE_MONITOR = 0x00000800, //to indicate the station is under site surveying
#ifdef WDS
WIFI_WDS = 0x00001000,
WIFI_WDS_RX_BEACON = 0x00002000, // already rx WDS AP beacon
#ifdef LAZY_WDS
WIFI_WDS_LAZY = 0x00004000,
#endif
#endif
#ifdef MP_TEST
WIFI_MP_STATE = 0x00010000,
WIFI_MP_CTX_BACKGROUND = 0x00020000, // in continuous tx background
WIFI_MP_CTX_BACKGROUND_PENDING = 0x00040000, // pending in continuous tx background due to out of skb
WIFI_MP_CTX_PACKET = 0x00080000, // in packet mode
WIFI_MP_CTX_ST = 0x00100000, // in continuous tx with single-tone
WIFI_MP_CTX_SCR = 0x00200000, // in continuous tx with single-carrier
WIFI_MP_CTX_CCK_CS = 0x00400000, // in cck continuous tx with carrier suppression
WIFI_MP_CTX_OFDM_HW = 0x00800000, // in ofdm continuous tx
WIFI_MP_RX = 0x01000000,
WIFI_MP_ARX_FILTER = 0x02000000,
#if 1//def CONFIG_RTL8672
WIFI_MP_CTX_BACKGROUND_STOPPING = 0x04000000, // stopping ctx
#endif
#endif
#ifdef WIFI_SIMPLE_CONFIG
#ifdef INCLUDE_WPS
WIFI_WPS = 0x02000000,
WIFI_WPS_JOIN = 0x04000000,
#else
WIFI_WPS = 0x01000000,
WIFI_WPS_JOIN = 0x02000000,
#endif
#endif
#ifdef A4_STA
WIFI_A4_STA = 0x04000000,
#endif
#ifdef CONFIG_RTL8672
WIFI_WAIT_FOR_CHANNEL_SELECT = 0x04000000,
#endif
#ifdef P2P_SUPPORT
WIFI_P2P_SUPPORT = 0x08000000
#endif
};
enum frag_chk_state {
NO_FRAG = 0x0,
UNDER_FRAG = 0x1,
CHECK_FRAG = 0x2,
};
enum led_type {
LEDTYPE_HW_TX_RX,
LEDTYPE_HW_LINKACT_INFRA,
LEDTYPE_SW_LINK_TXRX,
LEDTYPE_SW_LINKTXRX,
LEDTYPE_SW_LINK_TXRXDATA,
LEDTYPE_SW_LINKTXRXDATA,
LEDTYPE_SW_ENABLE_TXRXDATA,
LEDTYPE_SW_ENABLETXRXDATA,
LEDTYPE_SW_ADATA_GDATA,
LEDTYPE_SW_ENABLETXRXDATA_1,
LEDTYPE_SW_CUSTOM1,
LEDTYPE_SW_LED2_GPIO8_LINKTXRX, // 11
LEDTYPE_SW_LED2_GPIO8_ENABLETXRXDATA, // 12
LEDTYPE_SW_LED2_GPIO10_LINKTXRX, // 13
LEDTYPE_SW_RESERVED, // 14, redirect to 52
LEDTYPE_SW_LED2_GPIO8_LINKTXRXDATA, // 15
LEDTYPE_SW_LED2_GPIO8_ASOCTXRXDATA, // 16, mark_led
// Latest 92D customized LED types start from 50
LEDTYPE_SW_LED2_GPIO10_ENABLETXRXDATA = 50, // 50 for 92D, LED Control = 92C LED_TYPE 7
LEDTYPE_SW_LED1_GPIO9_LINKTXRX_92D = 51, // 51 for 92D, LED Control = 92C LED_TYPE 13
LEDTYPE_SW_LED2_GPIO10_LINKTXRX_92D = 52, // 52 for 92D, LED Control = 92C LED_TYPE 13
LEDTYPE_SW_MAX,
};
enum Synchronization_Sta_State {
STATE_Sta_Min = 0,
STATE_Sta_No_Bss = 1,
STATE_Sta_Bss = 2,
STATE_Sta_Ibss_Active = 3,
STATE_Sta_Ibss_Idle = 4,
STATE_Sta_Auth_Success = 5,
STATE_Sta_Roaming_Scan = 6,
};
// Realtek proprietary IE
enum Realtek_capability_IE_bitmap {
RTK_CAP_IE_TURBO_AGGR = 0x01,
RTK_CAP_IE_USE_LONG_SLOT = 0x02,
RTK_CAP_IE_USE_AMPDU = 0x04,
#ifdef RTK_WOW
RTK_CAP_IE_USE_WOW = 0x08,
#endif
RTK_CAP_IE_SOFTAP = 0x10,
RTK_CAP_IE_WLAN_8192SE = 0x20,
RTK_CAP_IE_WLAN_88C92C = 0x40,
RTK_CAP_IE_AP_CLIENT = 0x80,
RTK_CAP_IE_VIDEO_ENH = 0x01,
RTK_CAP_IE_8812_BCUT = 0x02,
RTK_CAP_IE_8812_CCUT = 0x04,
};
enum CW_STATE {
CW_STATE_NORMAL = 0x00000000,
CW_STATE_AGGRESSIVE = 0x00010000,
CW_STATE_DIFSEXT = 0x00020000,
CW_STATE_AUTO_TRUBO = 0x01000000,
};
enum {TURBO_AUTO=0, TURBO_ON=1, TURBO_OFF=2};
enum NETWORK_TYPE {
WIRELESS_11B = 1,
WIRELESS_11G = 2,
WIRELESS_11A = 4,
WIRELESS_11N = 8,
WIRELESS_11AC = 64
};
enum FREQUENCY_BAND {
BAND_2G,
BAND_5G
};
enum _HT_CHANNEL_WIDTH {
HT_CHANNEL_WIDTH_20 = 0,
HT_CHANNEL_WIDTH_20_40 = 1,
HT_CHANNEL_WIDTH_80 = 2,
HT_CHANNEL_WIDTH_160 = 3,
HT_CHANNEL_WIDTH_10 = 4
};
#ifdef RTK_AC_SUPPORT
enum _HT_CHANNEL_WIDTH_AC {
HT_CHANNEL_WIDTH_AC_20 = 0,
HT_CHANNEL_WIDTH_AC_40 = 1,
HT_CHANNEL_WIDTH_AC_80 = 2,
HT_CHANNEL_WIDTH_AC_160 = 3,
HT_CHANNEL_WIDTH_AC_10 = 4,
HT_CHANNEL_WIDTH_AC_5 = 5
};
enum _SUB_CHANNEL_INDEX_80M {
_20_B_40_A = 1,
_20_A_40_B = 2,
_20_A_40_A = 3,
_20_B_40_B = 4,
_40_A = 9,
_40_B = 10
};
#endif
enum SECONDARY_CHANNEL_OFFSET {
HT_2NDCH_OFFSET_DONTCARE = 0,
HT_2NDCH_OFFSET_BELOW = 1, // secondary channel is below primary channel, ex. primary:5 2nd:1
HT_2NDCH_OFFSET_ABOVE = 2 // secondary channel is above primary channel, ex. primary:5 2nd:9
};
enum AGGREGATION_METHOD {
AGGRE_MTHD_NONE = 0,
AGGRE_MTHD_MPDU = 1,
AGGRE_MTHD_MSDU = 2,
AGGRE_MTHD_MPDU_AMSDU = 3
};
enum _HT_CURRENT_TX_INFO_ {
TX_USE_40M_MODE = BIT(0),
TX_USE_SHORT_GI = BIT(1),
TX_USE_80M_MODE = BIT(2),
TX_USE_160M_MODE = BIT(3)
};
/*
enum _ADD_RATID_UPDATE_CONTENT_ {
RATID_NONE_UPDATE = 0,
RATID_GENERAL_UPDATE = 1,
RATID_INFO_UPDATE = 2
};
*/
enum _DC_TH_CURRENT_STATE_ {
DC_TH_USE_NONE = 0,
DC_TH_USE_UPPER = 1,
DC_TH_USE_LOWER = 2
};
enum _H2C_CMD_ID_ {
_AP_OFFLOAD_CMD_ = 0 , /*0*/
_SETPWRMODE_CMD_,
_JOINBSSRPT_CMD_,
_RSVDPAGE_CMD_,
_SET_RSSI_4_CMD_,
H2C_CMD_RSSI = 5,
H2C_CMD_MACID = 6,
H2C_CMD_PS = 7,
_P2P_PS_OFFLOAD_CMD_ = 8,
SELECTIVE_SUSPEND_ROF = 9,
AP_OFFLOAD_RFCTRL = 10,
AP_REQ_RPT = 11,
BT_COEX_DUTY_CYCLE = 12,
H2C_CMD_INFO_PKT = 13,
H2C_CMD_SMCC = 14,
H2C_CMD_AP_WPS_CTRL = 64
};
enum _ANTENNA_ {
ANTENNA_A = 0x1,
ANTENNA_B = 0x2,
ANTENNA_C = 0x4,
ANTENNA_D = 0x8,
ANTENNA_AC = 0x5,
ANTENNA_AB = 0x3,
ANTENNA_BD = 0xA,
ANTENNA_CD = 0xC,
ANTENNA_ABCD = 0xF
};
enum qos_prio { BK, BE, VI, VO, VI_AG, VO_AG };
#ifdef WIFI_HAPD
enum HAPD_EVENT{
HAPD_EXIRED = 0,
HAPD_REGISTERED = 1,
HAPD_MIC_FAILURE = 2,
HAPD_TRAFFIC_STAT = 3,
HAPD_PUSH_BUTTON = 4,
HAPD_WPS_PROBEREQ =5,
HAPD_WDS_SETWPA = 6
};
#endif
enum ACL_MODE{
ACL_allow = 1,
ACL_deny = 2
};
#ifdef WIFI_WPAS
enum WPAS_EVENT{
WPAS_EXIRED = 10,
WPAS_REGISTERED = 11,
WPAS_MIC_FAILURE = 12,
WPAS_ASSOC_INFO = 13,
WPAS_SCAN_DONE = 14
};
#define REQIELEN 123
#define RESPIELEN 123
typedef struct _WPAS_ASSOCIATION_INFO
{
unsigned short ReqIELen;
char ReqIE[REQIELEN];
unsigned short RespIELen;
char RespIE[RESPIELEN];
} WPAS_ASSOCIATION_INFO;
#endif
static const struct ParaRecord rtl_ap_EDCA[] =
{
//ACM,AIFSN, ECWmin, ECWmax, TXOplimit
{0, 7, 4, 10, 0},
{0, 3, 4, 6, 0},
{0, 1, 3, 4, 188},
{0, 1, 2, 3, 102},
{0, 1, 3, 4, 94},
{0, 1, 2, 3, 47},
};
static const struct ParaRecord rtl_sta_EDCA[] =
{
//ACM,AIFSN, ECWmin, ECWmax, TXOplimit
{0, 7, 4, 10, 0},
{0, 3, 4, 10, 0},
{0, 2, 3, 4, 188},
{0, 2, 2, 3, 102},
{0, 2, 3, 4, 94},
{0, 2, 2, 3, 47},
};
#if 1
//
// Indicate different AP vendor for IOT issue.
//
typedef enum _HT_IOT_PEER
{
HT_IOT_PEER_UNKNOWN = 0,
HT_IOT_PEER_REALTEK = 1,
HT_IOT_PEER_REALTEK_92SE = 2,
HT_IOT_PEER_BROADCOM = 3,
HT_IOT_PEER_RALINK = 4,
HT_IOT_PEER_ATHEROS = 5,
HT_IOT_PEER_CISCO = 6,
HT_IOT_PEER_MERU = 7,
HT_IOT_PEER_MARVELL = 8,
HT_IOT_PEER_REALTEK_SOFTAP = 9,// peer is RealTek SOFT_AP, by Bohn, 2009.12.17
HT_IOT_PEER_SELF_SOFTAP = 10, // Self is SoftAP
HT_IOT_PEER_AIRGO = 11,
HT_IOT_PEER_INTEL = 12,
HT_IOT_PEER_RTK_APCLIENT = 13,
HT_IOT_PEER_REALTEK_81XX = 14,
HT_IOT_PEER_REALTEK_WOW = 15,
HT_IOT_PEER_MAX = 16
}HT_IOT_PEER_E, *PHTIOT_PEER_E;
#endif
struct pkt_queue {
struct sk_buff *pSkb[NUM_TXPKT_QUEUE];
int head;
int tail;
};
#if defined(WIFI_WMM) && defined(WMM_APSD)
struct apsd_pkt_queue {
struct sk_buff *pSkb[NUM_APSD_TXPKT_QUEUE];
int head;
int tail;
};
#endif
#if defined(WIFI_WMM)
struct dz_mgmt_queue{
struct tx_insn *ptx_insn[NUM_DZ_MGT_QUEUE];
int head;
int tail;
};
#ifdef DZ_ADDBA_RSP
// dz addba
struct dz_addba_info{
unsigned char used;
unsigned char dialog_token;
unsigned char TID;
unsigned short status_code;
unsigned short timeout;
};
#endif
#endif
#if defined(GREEN_HILL) || defined(PACK_STRUCTURE) || defined(__ECOS)
#pragma pack(1)
#endif
/**
* @brief MAC Frame format - wlan_hdr (wireless LAN header)
*
* Dcscription: 802.11 MAC Frame (header). See textbook P.46
* p.s : memory aligment by BYTE,
* __PACK : not need 4 bytes aligment
*/
__PACK struct wlan_hdr {
unsigned short fmctrl;
unsigned short duration;
unsigned char addr1[MACADDRLEN];
unsigned char addr2[MACADDRLEN];
unsigned char addr3[MACADDRLEN];
unsigned short sequence;
unsigned char addr4[MACADDRLEN];
unsigned short qosctrl;
#if defined(CONFIG_RTK_MESH) && defined(RX_RL_SHORTCUT)
struct lls_mesh_header meshhdr; // 11s, mesh header, 4~16 bytes
#endif
unsigned char iv[8];
} __WLAN_ATTRIB_PACK__;
#if defined(GREEN_HILL) || defined(PACK_STRUCTURE) || defined(__ECOS)
#pragma pack()
#endif
struct wlan_hdrnode {
struct list_head list;
#ifdef TX_EARLY_MODE
unsigned char em_info[8]; // early mode info
#endif
struct wlan_hdr hdr;
};
struct wlan_hdr_poll {
struct wlan_hdrnode hdrnode[PRE_ALLOCATED_HDR];
int count;
};
#if defined(GREEN_HILL) || defined(PACK_STRUCTURE) || defined(__ECOS)
#pragma pack(1)
#endif
__PACK struct wlanllc_hdr {
struct wlan_hdr wlanhdr;
#if defined(CONFIG_RTL_WAPI_SUPPORT)
wpiSMS4Hdr sms4hdr; //always be used for wapi wlan hdr: iv [and mic]
#endif
struct llc_snap llcsnaphdr;
} __WLAN_ATTRIB_PACK__;
#if defined(GREEN_HILL) || defined(PACK_STRUCTURE) || defined(__ECOS)
#pragma pack()
#endif
struct wlanllc_node {
struct list_head list;
#ifdef TX_EARLY_MODE
unsigned char em_info[8]; // early mode info
#endif
struct wlanllc_hdr hdr;
#ifdef CONFIG_RTK_MESH
unsigned char amsdu_header[30];
#else
unsigned char amsdu_header[14];
#endif
};
struct wlanllc_hdr_poll {
struct wlanllc_node hdrnode[PRE_ALLOCATED_HDR];
int count;
};
struct wlanbuf_node {
struct list_head list;
unsigned int buf[PRE_ALLOCATED_BUFSIZE]; // 4 bytes alignment!
};
struct wlanbuf_poll {
struct wlanbuf_node hdrnode[PRE_ALLOCATED_MMPDU];
int count;
};
struct wlanicv_node {
struct list_head list;
unsigned int icv[2];
};
struct wlanicv_poll {
struct wlanicv_node hdrnode[PRE_ALLOCATED_HDR];
int count;
};
struct wlanmic_node {
struct list_head list;
unsigned int mic[2];
};
struct wlanmic_poll {
struct wlanmic_node hdrnode[PRE_ALLOCATED_HDR];
int count;
};
struct wlan_acl_node {
struct list_head list;
unsigned char addr[MACADDRLEN];
unsigned char mode;
};
struct wlan_acl_poll {
struct wlan_acl_node aclnode[NUM_ACL];
};
#if defined(CONFIG_RTK_MESH) && defined(_MESH_ACL_ENABLE_)
struct mesh_acl_poll {
struct wlan_acl_node meshaclnode[NUM_MESH_ACL];
};
#endif
struct tx_insn {
unsigned int q_num;
void *pframe;
unsigned char *phdr; //in case of mgt frame, phdr is wlan_hdr,
//in case of data, phdr = wlan + llc
unsigned int hdr_len;
unsigned int fr_type;
unsigned int fr_len;
unsigned int frg_num;
unsigned int need_ack;
unsigned int frag_thrshld;
unsigned int rts_thrshld;
unsigned int privacy;
unsigned int iv;
unsigned int icv;
unsigned int mic;
unsigned char llc;
unsigned char tx_rate;
unsigned char lowest_tx_rate;
unsigned char fixed_rate;
unsigned char retry;
unsigned char aggre_en;
unsigned char tpt_pkt;
unsigned char one_txdesc;
#ifdef WDS
int wdsIdx;
#endif
struct stat_info *pstat;
#ifdef CONFIG_RTK_MESH
unsigned char is_11s; // for transmitting 11s data frame (to rewrite 4 addresses)
unsigned char nhop_11s[MACADDRLEN]; // to record "da" in start_xmit
unsigned char prehop_11s[MACADDRLEN];
struct lls_mesh_header mesh_header;
#endif
#ifdef SUPPORT_TX_MCAST2UNI
unsigned char isMC2UC;
#endif
#ifdef BEAMFORMING_SUPPORT
unsigned char ndpa;
#endif
};
struct reorder_ctrl_entry
{
struct sk_buff *packet_q[RC_ENTRY_NUM];
unsigned char start_rcv;
short rc_timer_id;
unsigned short win_start;
unsigned short last_seq;
};
#ifdef SUPPORT_TX_MCAST2UNI
struct ip_mcast_info {
int used;
unsigned char mcmac[MACADDRLEN];
};
#endif
#ifdef TX_SHORTCUT
struct tx_sc_entry {
struct tx_insn txcfg;
struct wlanllc_hdr wlanhdr;
#ifdef CONFIG_WLAN_HAL
// PVOID phw_desc1;
// 40 is SIZE_TXDESC_88XX
u1Byte hal_hw_desc[40];
#endif // CONFIG_WLAN_HAL
struct tx_desc hwdesc1;
struct tx_desc hwdesc2;
struct tx_desc_info swdesc1;
struct tx_desc_info swdesc2;
#ifdef TX_SCATTER
struct tx_desc hwdesc3;
struct tx_desc_info swdesc3;
int has_desc3;
#endif
int sc_keyid;
struct wlan_ethhdr_t ethhdr;
unsigned char pktpri;
};
#endif
#ifdef SW_TX_QUEUE
#define CHECK_DEC_AGGN 0
#define CHECK_INC_AGGN 1
#define MAX_BACKOFF_CNT 8
struct sw_tx_q {
struct sk_buff_head be_queue;
struct sk_buff_head bk_queue;
struct sk_buff_head vi_queue;
struct sk_buff_head vo_queue;
struct timer_list beq_timer;
struct timer_list bkq_timer;
struct timer_list viq_timer;
struct timer_list voq_timer;
int beq_empty; //0:empty; 1:not empty
int bkq_empty;
int viq_empty;
int voq_empty;
int q_aggnum[8];
int q_TOCount[8];
unsigned char q_used[8];
unsigned char q_aggnumIncSlow[8];
};
#endif
struct stat_info {
struct list_head hash_list; // always keep the has_list as the first item, to accelerat searching
struct list_head asoc_list;
struct list_head auth_list;
struct list_head sleep_list;
struct list_head defrag_list;
struct list_head wakeup_list;
struct list_head frag_list;
struct list_head addRAtid_list; // to avoid add RAtid fail
struct list_head addrssi_list;
struct list_head addps_list;
struct sk_buff_head dz_queue; // Queue for sleeping mode
#ifdef SW_TX_QUEUE
struct sw_tx_q swq;
#endif
#ifdef CONFIG_RTK_MESH
struct list_head mesh_mp_ptr; // MESH MP list
#endif
#ifdef A4_STA
struct list_head a4_sta_list;
#endif
#if defined(INCLUDE_WPA_PSK) || defined(WIFI_HAPD)
WPA_STA_INFO *wpa_sta_info;
#endif
#ifdef TLN_STATS
unsigned int enterpise_wpa_info;
#endif
#ifdef WIFI_HAPD
u_int8_t wpa_ie[256];
#ifndef HAPD_DRV_PSK_WPS
u_int8_t wps_ie[256];
#endif
#endif
#if defined(WIFI_WMM) && defined(WMM_APSD)
unsigned char apsd_bitmap; // bit 0: VO, bit 1: VI, bit 2: BK, bit 3: BE
unsigned int apsd_pkt_buffering;
struct apsd_pkt_queue *VO_dz_queue;
struct apsd_pkt_queue *VI_dz_queue;
struct apsd_pkt_queue *BE_dz_queue;
struct apsd_pkt_queue *BK_dz_queue;
#endif
#if defined(WIFI_WMM)
struct dz_mgmt_queue *MGT_dz_queue;
#ifdef DZ_ADDBA_RSP
struct dz_addba_info dz_addba;
#endif
#endif
struct reorder_ctrl_entry rc_entry[8];
/****************************************************************
* from here on, data will be clear in init_stainfo() except "aid" and "hwaddr" *
****************************************************************/
unsigned int auth_seq;
unsigned char chg_txt[128];
unsigned int frag_to;
unsigned int frag_count;
unsigned int sleep_to;
unsigned short tpcache[8][TUPLE_WINDOW];
unsigned short tpcache_mgt; // mgt cache number
#ifdef CLIENT_MODE
unsigned short tpcache_mcast; // for client mode broadcast or multicast used
#endif
#ifdef _DEBUG_RTL8192CD_
unsigned int rx_amsdu_err;
unsigned int rx_amsdu_1pkt;
unsigned int rx_amsdu_2pkt;
unsigned int rx_amsdu_3pkt;
unsigned int rx_amsdu_4pkt;
unsigned int rx_amsdu_5pkt;
unsigned int rx_amsdu_gt5pkt;
unsigned int rx_rc_drop1;
unsigned int rx_rc_drop3;
unsigned int rx_rc_drop4;
unsigned int rx_rc_reorder3;
unsigned int rx_rc_reorder4;
unsigned int rx_rc_passup2;
unsigned int rx_rc_passup3;
unsigned int rx_rc_passup4;
unsigned int rx_rc_passupi;
#endif
#if defined(CLIENT_MODE) || defined(WDS)
unsigned int beacon_num;
#endif
#ifdef TX_SHORTCUT
struct tx_sc_entry tx_sc_ent[TX_SC_ENTRY_NUM];
int tx_sc_replace_idx;
int protection;
unsigned int ht_protection;
unsigned int tx_sc_pkts_lv1;
unsigned int tx_sc_pkts_lv2;
unsigned int tx_sc_pkts_slow;
#endif
#ifdef RX_SHORTCUT
int rx_payload_offset[RX_SC_ENTRY_NUM];
int rx_trim_pad[RX_SC_ENTRY_NUM];
struct wlan_ethhdr_t rx_ethhdr[RX_SC_ENTRY_NUM];
struct wlanllc_hdr rx_wlanhdr[RX_SC_ENTRY_NUM];
int rx_sc_replace_idx;
int rx_privacy;
unsigned int rx_sc_pkts;
unsigned int rx_sc_pkts_slow;
#endif
#ifdef SUPPORT_TX_AMSDU
struct sk_buff_head amsdu_tx_que[8];
int amsdu_timer_id[8];
int amsdu_size[8];
#endif
/******************************************************************
* from here to end, data will be backup when doing FAST_RECOVERY *
******************************************************************/
unsigned short aid;
#ifdef STA_EXT
unsigned short remapped_aid;// support up to 64 clients
#endif
unsigned char hwaddr[MACADDRLEN];
#ifdef WIFI_WMM
unsigned int QosEnabled;
unsigned short AC_seq[8];
#endif
enum wifi_state state;
unsigned int AuthAlgrthm; // could be open/shared key
unsigned int ieee8021x_ctrlport; // 0 for blocked, 1 for open
unsigned int keyid; // this could only be valid in legacy wep
unsigned int keylen;
struct Dot11KeyMappingsEntry dot11KeyMapping;
unsigned char bssrateset[32];
unsigned int bssratelen;
unsigned int useShortPreamble;
unsigned int expire_to;
unsigned int idle_count;
unsigned char rssi;
unsigned char sq;
unsigned char rx_rate;
unsigned char rx_bw;
unsigned char rx_splcp;
struct rf_misc_info rf_info;
unsigned short seq_backup;
unsigned char rssi_backup;
unsigned char sq_backup;
unsigned char rx_rate_backup;
unsigned char rx_bw_backup;
unsigned char rx_splcp_backup;
struct rf_misc_info rf_info_backup;
int cck_mimorssi_total[4];
unsigned char cck_rssi_num;
unsigned char highest_rx_rate;
unsigned char rssi_level;
unsigned char hp_level;
unsigned char is_realtek_sta;
#if 1
UINT8 IOTPeer; // Enum value. HT_IOT_PEER_E
#else
//#if !defined(USE_OUT_SRC) || defined(_OUTSRC_COEXIST)
unsigned char is_apclient;
unsigned char is_rtl8192s_sta;
unsigned char is_rtl8192cd_apclient;
unsigned char is_rtl81xxc_sta;
unsigned char is_broadcom_sta;
unsigned char is_ralink_sta;
unsigned char is_marvell_sta;
unsigned char is_intel_sta;
#ifdef RTK_WOW
unsigned char is_rtk_wow_sta;
#endif
#endif
unsigned char leave;
unsigned char no_rts;
unsigned char is_2t_mimo_sta;
unsigned int check_init_tx_rate;
unsigned char is_forced_ampdu;
unsigned char is_forced_rts;
unsigned char aggre_mthd;
unsigned char tx_bw;
unsigned char ht_current_tx_info; // bit0: 0=20M mode, 1=40M mode; bit1: 0=longGI, 1=shortGI
unsigned char tmp_rmv_key;
unsigned long link_time;
unsigned char private_ie[32];
unsigned int private_ie_len;
unsigned int tx_ra_bitmap;
unsigned int tx_bytes;
unsigned int rx_bytes;
#ifdef RADIUS_ACCOUNTING
unsigned int tx_bytes_1m;
unsigned int rx_bytes_1m;
#endif
unsigned int tx_pkts;
unsigned int rx_pkts;
unsigned int tx_fail;
unsigned int tx_pkts_pre;
unsigned int rx_pkts_pre;
unsigned int tx_fail_pre;
unsigned int current_tx_rate;
unsigned int tx_byte_cnt;
unsigned int tx_avarage;
unsigned int rx_byte_cnt;
unsigned int rx_avarage;
unsigned int tx_conti_fail_cnt; // continuous tx fail count; added by Annie, 2010-08-10.
unsigned long tx_last_good_time; // up_time record for last good tx; added by Annie, 2010-08-10.
unsigned long rx_last_good_time; // up_time record for rx resume time, added by Eric, 2013-01-18.
// bcm old 11n chipset iot debug, and TXOP enlarge
unsigned int current_tx_bytes;
unsigned int current_rx_bytes;
#ifdef PREVENT_BROADCAST_STORM
unsigned int rx_pkts_bc;
#endif
#ifdef WDS
int wds_idx;
unsigned int wds_probe_done;
unsigned int idle_time;
#endif
#ifdef RTK_AC_SUPPORT
struct vht_cap_elmt vht_cap_buf;
unsigned int vht_cap_len;
struct vht_oper_elmt vht_oper_buf;
unsigned int vht_oper_len;
unsigned char nss;
#ifdef BEAMFORMING_SUPPORT
unsigned int p_aid;
unsigned char g_id;
#endif
#endif
#if defined(RTK_AC_SUPPORT) || defined(CONFIG_WLAN_HAL)
unsigned char ratr_idx;
#endif
struct ht_cap_elmt ht_cap_buf;
unsigned int ht_cap_len;
struct ht_info_elmt ht_ie_buf;
unsigned int ht_ie_len;
unsigned char cam_id;
unsigned char MIMO_ps;
unsigned char dialog_token;
unsigned char is_8k_amsdu;
unsigned char ADDBA_ready[8];
unsigned char ADDBA_req_num[8];
unsigned char ADDBA_sent[8];
unsigned int diffAmpduSz;
unsigned int amsdu_level;
unsigned char tmp_mic_key[8];
#ifdef GBWC
unsigned char GBWC_in_group;
#endif
unsigned int is_legacy_encrpt; // 1: TKIP, 2: WEP
#ifdef SUPPORT_TX_MCAST2UNI
int ipmc_num;
struct ip_mcast_info ipmc[MAX_IP_MC_ENTRY];
#endif
#ifdef USB_PKT_RATE_CTRL_SUPPORT
unsigned int change_toggle;
#endif
#ifdef STA_EXT
int sta_in_firmware;
#endif
#ifdef CONFIG_RTK_MESH
struct MESH_Neighbor_Entry mesh_neighbor_TBL; //mesh_neighbor
// Throughput statistics (sounder)
// struct flow_stats f_stats;
#endif
#ifdef CONFIG_RTL_WAPI_SUPPORT
wapiStaInfo *wapiInfo;
#endif
#ifdef HW_ANT_SWITCH
int hwRxAntSel[2];
int AntRSSI[2];
int cckPktCount[2];
char CurAntenna;
#endif
unsigned int retry_inc;
#ifdef P2P_SUPPORT
unsigned char is_p2p_client;
#endif
#ifdef TX_EARLY_MODE
int empkt_num; // how many pending packet in next
int emextra_len; // extra 802.11 length for each 802.3 pkt
int empkt_len[10]; // packet length for next pending packet
#endif
unsigned long def_expired_time;
unsigned long def_expired_throughput;
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned char txpause_flag;
unsigned long txpause_time;
#endif
#ifdef CONFIG_WLAN_HAL
unsigned char txpause_flag88XX;
unsigned long txpause_time88XX;
#endif //CONFIG_WLAN_HAL
#ifdef USE_OUT_SRC
// Driver Write
// BOOLEAN bValid; // record the sta status link or not?
UINT8 WirelessMode; //
// UINT8 IOTPeer; // Enum value. HT_IOT_PEER_E
// ODM Write
//1 PHY_STATUS_INFO
UINT8 RSSI_Path[4]; //
UINT8 RSSI_Ave;
UINT8 RXEVM[4];
UINT8 RXSNR[4];
RSSI_STA rssi_stat;
#endif
unsigned int low_tp_disable_ampdu;
};
/*
* Driver open, alloc whole amount of aid_obj, avoid memory fragmentation
* If STA Association , The aid_obj will chain to stat_info.
*/
struct aid_obj {
struct stat_info station;
unsigned int used; // used == TRUE => has been allocated, used == FALSE => can be allocated
struct rtl8192cd_priv *priv;
};
/* Note: always calculate the WLAN average throughput, if the throughput is larger than TP_HIGH_WATER_MARK,
gCpuCanSuspend will be FALSE. If the throughput is smaller than TP_LOW_WATER_MARK,
gCpuCanSuspend will be TRUE.
However, you can undefine the CONFIG_RTL8190_THROUGHPUT. The gCpuCanSuspend will always be
TRUE in this case.
*/
#define CONFIG_RTL8190_THROUGHPUT
struct extra_stats {
unsigned long tx_retrys;
unsigned long tx_drops;
unsigned long rx_retrys;
unsigned long rx_decache;
unsigned long rx_data_drops;
unsigned long beacon_ok;
unsigned long beacon_er;
unsigned long beaconQ_sts;
#if defined(CONFIG_RTL8196B_TR) || defined(CONFIG_RTL8190_THROUGHPUT) || defined(CONFIG_RTL865X_AC) || defined(CONFIG_RTL865X_KLD) || defined(CONFIG_RTL8196B_KLD) || defined(CONFIG_RTL8196C_KLD) || defined(CONFIG_RTL8196C_EC)
unsigned long tx_peak;
unsigned long rx_peak;
#endif
unsigned long tx_dma_err;
unsigned long rx_dma_err;
unsigned long tx_byte_cnt;
unsigned long tx_avarage;
unsigned long rx_byte_cnt;
unsigned long rx_avarage;
unsigned long rx_fifoO;
unsigned long rx_rdu;
unsigned long rx_reuse;
unsigned long freeskb_err;
unsigned long reused_skb;
#if defined(CONFIG_RTL_NOISE_CONTROL) || defined(CONFIG_RTL_NOISE_CONTROL_92C)
unsigned int tp_average_pre;
#endif
#if defined(__ECOS) && defined(_DEBUG_RTL8192CD_)
unsigned long tx_cnt_nosc;
unsigned long tx_cnt_sc1;
unsigned long tx_cnt_sc2;
unsigned long rx_cnt_nosc;
unsigned long rx_cnt_sc;
unsigned long br_cnt_nosc;
unsigned long br_cnt_sc;
#endif
};
#ifdef TLN_STATS
struct tln_wifi_stats {
unsigned long connected_sta;
unsigned long max_sta;
unsigned long max_sta_timestamp;
unsigned long rejected_sta;
};
struct tln_ext_wifi_stats {
unsigned long rson_UNSPECIFIED_1;
unsigned long rson_AUTH_INVALID_2;
unsigned long rson_DEAUTH_STA_LEAVING_3;
unsigned long rson_INACTIVITY_4;
unsigned long rson_RESOURCE_INSUFFICIENT_5;
unsigned long rson_UNAUTH_CLS2FRAME_6;
unsigned long rson_UNAUTH_CLS3FRAME_7;
unsigned long rson_DISASSOC_STA_LEAVING_8;
unsigned long rson_ASSOC_BEFORE_AUTH_9;
unsigned long rson_INVALID_IE_13;
unsigned long rson_MIC_FAILURE_14;
unsigned long rson_4WAY_TIMEOUT_15;
unsigned long rson_GROUP_KEY_TIMEOUT_16;
unsigned long rson_DIFF_IE_17;
unsigned long rson_MCAST_CIPHER_INVALID_18;
unsigned long rson_UCAST_CIPHER_INVALID_19;
unsigned long rson_AKMP_INVALID_20;
unsigned long rson_UNSUPPORT_RSNIE_VER_21;
unsigned long rson_RSNIE_CAP_INVALID_22;
unsigned long rson_802_1X_AUTH_FAIL_23;
unsigned long rson_OUT_OF_SCOPE;
unsigned long status_FAILURE_1;
unsigned long status_CAP_FAIL_10;
unsigned long status_NO_ASSOC_11;
unsigned long status_OTHER_12;
unsigned long status_NOT_SUPPORT_ALG_13;
unsigned long status_OUT_OF_AUTH_SEQ_14;
unsigned long status_CHALLENGE_FAIL_15;
unsigned long status_AUTH_TIMEOUT_16;
unsigned long status_RESOURCE_INSUFFICIENT_17;
unsigned long status_RATE_FAIL_18;
unsigned long status_OUT_OF_SCOPE;
};
#endif
#ifdef WIFI_SIMPLE_CONFIG
#ifndef INCLUDE_WPS
struct wps_ie_info {
unsigned char rssi;
unsigned char data[MAX_WSC_IE_LEN];
};
#endif
#ifdef WIFI_WPAS
struct wpa_ie_info {
unsigned char rssi;
unsigned int wpa_ie_len;
unsigned char data[MAX_WPA_IE_LEN];
};
struct rsn_ie_info {
unsigned char rssi;
unsigned int rsn_ie_len ;
unsigned char data[MAX_RSN_IE_LEN];
};
#endif
#endif
struct ss_res {
unsigned int ss_channel;
unsigned int count;
struct bss_desc bss[MAX_BSS_NUM];
unsigned int count_backup;
struct bss_desc bss_backup[MAX_BSS_NUM];
unsigned int count_target;
struct bss_desc bss_target[MAX_BSS_NUM];
#ifdef WIFI_SIMPLE_CONFIG
struct wps_ie_info ie[MAX_BSS_NUM];
struct wps_ie_info ie_backup[MAX_BSS_NUM];
#endif
#ifdef CONFIG_RTL_92D_SUPPORT
//unsigned char bk_nwtype;
//unsigned int bk_iqc[11];
#endif
#ifdef WIFI_WPAS
struct wpa_ie_info wpa_ie[MAX_BSS_NUM];
struct wpa_ie_info wpa_ie_backup[MAX_BSS_NUM];
struct rsn_ie_info rsn_ie[MAX_BSS_NUM];
struct rsn_ie_info rsn_ie_backup[MAX_BSS_NUM];
#endif
#ifdef CONFIG_RTL_NEW_AUTOCH
unsigned int to_scan_40M;
#endif
unsigned int hidden_ap_found;
};
#if defined(CONFIG_RTL_NEW_AUTOCH) && defined(SS_CH_LOAD_PROC)
struct ss_report{
unsigned char channel;
unsigned char is40M;
unsigned char rssi;
unsigned short fa_count;
unsigned short cca_count;
unsigned int ch_load;
};
#endif
//struct stat_info_cache {
// struct stat_info *pstat;
// unsigned char hwaddr[6];
//};
struct mc2u_flood_mac_entry
{
unsigned char macAddr[MACADDRLEN];
};
struct rf_finetune_var {
unsigned char ofdm_1ss_oneAnt;// for 2T2R
unsigned char pathB_1T; // for 1T2R, 1T1R
unsigned char rssi_dump;
unsigned char rxfifoO;
unsigned char raGoDownUpper;
unsigned char raGoDown20MLower;
unsigned char raGoDown40MLower;
unsigned char raGoUpUpper;
unsigned char raGoUp20MLower;
unsigned char raGoUp40MLower;
unsigned char dig_enable;
unsigned char digGoLowerLevel;
unsigned char digGoUpperLevel;
unsigned char dcThUpper;
unsigned char dcThLower;
unsigned char rssiTx20MUpper;
unsigned char rssiTx20MLower;
unsigned char rssi_expire_to;
#ifdef INTERFERENCE_CONTROL
unsigned char nbi_filter_enable;
#endif
unsigned char rts_init_rate;
unsigned char cck_pwr_max;
unsigned char cck_tx_pathB;
unsigned char min_pwr_idex;
// dynamic Tx power control
unsigned char tx_pwr_ctrl;
// 11n ap AES debug
unsigned char aes_check_th;
// Tx power tracking
unsigned int tpt_period;
// TXOP enlarge
unsigned char txop_enlarge_upper;
unsigned char txop_enlarge_lower;
#ifdef LOW_TP_TXOP
unsigned char low_tp_txop;
unsigned int low_tp_txop_thd_n;
unsigned int low_tp_txop_thd_g;
unsigned int low_tp_txop_thd_low;
unsigned char low_tp_txop_close;
unsigned char low_tp_txop_count;
unsigned char low_tp_txop_delay;
unsigned int cwmax_enhance_thd;
#endif
// 2.3G support
unsigned char use_frq_2_3G;
// for mp test
#ifdef MP_TEST
unsigned char mp_specific;
#endif
//Support IP multicast->unicast
#ifdef SUPPORT_TX_MCAST2UNI
unsigned char mc2u_disable;
#ifdef IGMP_FILTER_CMO
unsigned char igmp_deny;
#endif
unsigned char mc2u_drop_unknown;
unsigned int mc2u_flood_ctrl;
struct mc2u_flood_mac_entry mc2u_flood_mac[MAX_FLOODING_MAC_NUM];
unsigned int mc2u_flood_mac_num;
#endif
#ifdef HIGH_POWER_EXT_PA
unsigned char hp_ofdm_pwr_max;
unsigned char hp_cck_pwr_max;
#endif
#ifdef PCIE_POWER_SAVING
unsigned char power_save;
#endif
unsigned char use_ext_pa;
unsigned char use_ext_lna;
unsigned char NDSi_support;
unsigned char edcca_thd;
#ifdef ADD_TX_POWER_BY_CMD
char txPowerPlus_cck_1;
char txPowerPlus_cck_2;
char txPowerPlus_cck_5;
char txPowerPlus_cck_11;
char txPowerPlus_ofdm_6;
char txPowerPlus_ofdm_9;
char txPowerPlus_ofdm_12;
char txPowerPlus_ofdm_18;
char txPowerPlus_ofdm_24;
char txPowerPlus_ofdm_36;
char txPowerPlus_ofdm_48;
char txPowerPlus_ofdm_54;
char txPowerPlus_mcs_0;
char txPowerPlus_mcs_1;
char txPowerPlus_mcs_2;
char txPowerPlus_mcs_3;
char txPowerPlus_mcs_4;
char txPowerPlus_mcs_5;
char txPowerPlus_mcs_6;
char txPowerPlus_mcs_7;
char txPowerPlus_mcs_8;
char txPowerPlus_mcs_9;
char txPowerPlus_mcs_10;
char txPowerPlus_mcs_11;
char txPowerPlus_mcs_12;
char txPowerPlus_mcs_13;
char txPowerPlus_mcs_14;
char txPowerPlus_mcs_15;
#endif
unsigned char rootFwBeacon; // use FW to send beacon
unsigned char ledBlinkingFreq;
unsigned char diffAmpduSz;
unsigned char one_path_cca; // 0: 2-path, 1: path-A, 2: path-B
#ifdef DFS
unsigned char dfsdbgmode;
unsigned char dfsdelayiqk;
unsigned int dfsdbgcnt;
unsigned long dfsrctime;
unsigned char dfs_det_off;
unsigned char dfs_det_reset;
unsigned char dfs_fa_cnt_lower;
unsigned char dfs_fa_cnt_mid;
unsigned int dfs_fa_cnt_upper;
unsigned char dfs_crc32_cnt_lower;
unsigned char dfs_fa_ratio_th;
unsigned char dfs_det_period;
unsigned char dfs_det_print;
unsigned char dfs_det_print1;
unsigned char dfs_det_print2;
unsigned char dfs_det_print3;
unsigned char dfs_det_print_time;
unsigned char dfs_det_hist_len;
unsigned char dfs_det_sum_th;
unsigned char dfs_det_flag_offset;
unsigned int dfs_dpt_fa_th_upper;
unsigned char dfs_dpt_fa_th_lower;
unsigned char dfs_dpt_pulse_th_mid;
unsigned char dfs_dpt_pulse_th_lower;
unsigned char dfs_dpt_st_l2h_max;
unsigned char dfs_dpt_st_l2h_min;
unsigned char dfs_dpt_st_l2h_add;
unsigned char dpt_ini_gain_th;
unsigned char dfs_pwdb_th;
unsigned char dfs_psd_pw_th;
unsigned char dfs_psd_fir_decay;
unsigned char dfs_skip_iqk;
unsigned char dfs_scan_inband;
unsigned char dfs_psd_op;
unsigned char dfs_psd_tp_th;
#endif
#ifdef SW_TX_QUEUE
int swq_en_highthd;
int swq_dis_lowthd;
int swq_enable;
int swq_dbg;
int swq_aggnum;
int timeout_thd;
int timeout_thd2;
int timeout_thd3;
#endif
#ifdef A4_STA
unsigned char a4_enable;
#endif
#ifdef SW_ANT_SWITCH
unsigned char antSw_enable;
#endif
#ifdef HW_ANT_SWITCH
unsigned char antHw_enable;
unsigned char CurAntenna;
#endif
#if defined(HW_ANT_SWITCH) || defined(SW_ANT_SWITCH)
unsigned char antSw_select;
unsigned char ant_dump;
#endif
#ifdef RTL8192D_INT_PA
unsigned char use_intpa92d;
#endif
#if defined(CONFIG_RTL_NOISE_CONTROL) || defined(CONFIG_RTL_NOISE_CONTROL_92C)
unsigned char dnc_enable;
#endif
#if defined(WIFI_11N_2040_COEXIST_EXT)
unsigned int bws_Thd;
unsigned char bws_enable;
#endif
unsigned char pwr_by_rate;
#ifdef _TRACKING_TABLE_FILE
unsigned char pwr_track_file;
#endif
#ifdef DPK_92D
unsigned char dpk_on;
#endif
#if defined(TXPWR_LMT)
unsigned char disable_txpwrlmt;
#endif
#ifdef CONFIG_RTL_92D_DMDP
unsigned char peerReinit;
#endif
#ifdef WIFI_WMM
unsigned char wifi_beq_iot;
#endif
unsigned char bcast_to_dzq;
#ifdef TLN_STATS
unsigned int stats_time_interval;
#endif
#ifdef TX_EARLY_MODE
unsigned char em_enable;
#endif
#ifdef CLIENT_MODE
unsigned char sta_mode_ps;
#endif
#ifdef CONFIG_RTL_WLAN_DOS_FILTER
unsigned int dos_block_time;
#endif
unsigned int intel_rtylmt_tp_margin;
unsigned char enable_macid_sleep;
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned char disable_pkt_pause;
unsigned char disable_pkt_nolink;
unsigned char max_pkt_fail;
unsigned char min_pkt_fail;
#endif
unsigned char low_tp_no_aggr;
#ifdef RTK_AC_SUPPORT //vht rate
#ifdef FOR_VHT5G_PF
unsigned char use_cca;
unsigned char oper_mode_field;
unsigned char opmtest;
// channel switch announcement
unsigned char csa;
// power constraint
unsigned char lpwrc;
unsigned int lgirate;
#endif
unsigned char cca_rts;
#endif
unsigned char txforce;
// unsigned char mp_dig_enable;
};
//Filen
// MESH WDS Type ACCESS_SWAP
// [9:8] [7:4] [3:2] [1:0]
//
/* Bit mask value of type */
#define ACCESS_SWAP_IO 0x01 /* Do bye-swap in access IO register */
#define ACCESS_SWAP_MEM 0x02 /* Do byte-swap in access memory space */
#define ACCESS_MASK 0x3
#define TYPE_SHIFT 2
#define TYPE_MASK 0x3
#ifdef WDS
#define WDS_SHIFT 4
#define WDS_MASK 0xf
#define WDS_NUM_CFG NUM_WDS
#ifdef LAZY_WDS
#define WDS_LAZY_ENABLE 2
#endif
#else
#define WDS_SHIFT 0
#define WDS_NUM_CFG 0
#endif
enum {
TYPE_EMBEDDED = 0, /* embedded wlan controller */
TYPE_PCI_DIRECT = 1, /* PCI wlan controller and enable PCI bridge directly */
TYPE_PCI_BIOS = 2 /* PCI wlan controller and enable PCI by BIOS */
};
enum {
DRV_STATE_INIT = 1, /* driver has been init */
DRV_STATE_OPEN = 2, /* driver is opened */
#ifdef UNIVERSAL_REPEATER
DRV_STATE_VXD_INIT = 4, /* vxd driver has been opened */
DRV_STATE_VXD_AP_STARTED = 8, /* vxd ap has been started */
#endif
};
#ifdef RX_BUFFER_GATHER
enum {
GATHER_STATE_NO = 0, /* no data pending */
GATHER_STATE_FIRST = 1, /* first segment */
GATHER_STATE_MIDDLE = 2, /* niether first nor last segment */
GATHER_STATE_LAST = 3 /* last segment */
};
#endif
#ifdef CHECK_TX_HANGUP
#define PENDING_PERIOD 40 // max time of pending period
struct desc_check_info {
int pending_tick; // tick value when pending is detected
int pending_tail; // descriptor tail number when pending is detected
int idle_tick; // tick value when detect idle (tx desc is not free)
};
#endif
// MAC access control log definition
#define MAX_AC_LOG 32 // max number of log entry
#define AC_LOG_TIME 300 // log time in sec
#define AC_LOG_EXPIRE RTL_SECONDS_TO_JIFFIES(3) // entry expire time
struct ac_log_info {
int used; // <>0: in use
int cur_cnt; // current attack counter
int last_cnt; // counter of last time log
unsigned long last_attack_time; // jiffies time of last attack
unsigned char addr[MACADDRLEN]; // mac address
};
#ifdef WIFI_SIMPLE_CONFIG
struct wsc_probe_request_info {
unsigned char addr[MACADDRLEN]; // mac address
char ProbeIE[PROBEIELEN];
unsigned short ProbeIELen;
unsigned long time_stamp; // jiffies time of last probe request
unsigned char used;
unsigned char pbcactived; /* 0528pbc */
};
#endif
struct reorder_ctrl_timer
{
struct rtl8192cd_priv *priv;
struct stat_info *pstat;
unsigned char tid;
unsigned int timeout;
};
#ifdef RTK_QUE
struct ring_que {
int qlen;
int qmax;
int head;
int tail;
struct sk_buff *ring[MAX_PRE_ALLOC_SKB_NUM+1];
};
#endif
#ifdef USE_TXQUEUE
struct txq_node {
struct list_head list;
struct sk_buff *skb;
struct net_device *dev;
};
struct txq_list_head {
struct list_head list;
unsigned int qlen;
};
#define init_txq_head(_q) \
do { \
INIT_LIST_HEAD(&((_q)->list)); \
(_q)->qlen = 0; \
}while(0)
#define is_txq_empty(_q) ((_q)->qlen ? 0 : 1)
#define txq_len(_q) ((_q)->qlen)
#define add_txq_tail(_q, _n) \
do { \
list_add_tail(&((_n)->list), &((_q)->list)); \
(_q)->qlen ++; \
}while(0)
#define add_txq_head(_q, _n) \
do { \
list_add(&((_n)->list), &((_q)->list)); \
(_q)->qlen ++; \
}while(0)
#define unlink_txq(_q, _n) \
do { \
list_del(&((_n)->list)); \
(_q)->qlen --; \
}while(0)
#define deq_txq(_q) \
( (_q)->qlen ? (struct txq_node *)((_q)->list.next) : NULL ); \
unlink_txq(_q, (struct txq_node *)((_q)->list.next));
#endif
#ifdef A4_STA
#define A4_STA_HASH_BITS 3
#define A4_STA_HASH_SIZE (1 << A4_STA_HASH_BITS)
#define A4_STA_AGEING_TIME 300
#define MAX_A4_TBL_NUM 32
struct a4_sta_db_entry {
struct a4_sta_db_entry *next_hash;
struct a4_sta_db_entry **pprev_hash;
unsigned char mac[6];
unsigned long ageing_timer;
struct stat_info *stat;
};
struct a4_tbl_entry {
int used;
struct a4_sta_db_entry entry;
};
#endif
#ifdef SW_ANT_SWITCH
// 20100503 Joseph:
// Add new function SwAntDivCheck8192C().
// This is the main function of Antenna diversity function before link.
// Mainly, it just retains last scan result and scan again.
// After that, it compares the scan result to see which one gets better RSSI.
// It selects antenna with better receiving power and returns better scan result.
//
#define TP_MODE 0
#define RSSI_MODE 1
#define TRAFFIC_LOW 0
#define TRAFFIC_HIGH 1
#define TRAFFIC_THRESHOLD 6600000 // 16 Mbps
#define TP_MODE_THD 200000 //500 kbps
#define SELANT_MAP_SIZE 8
// 20100514 Joseph: Add definition for antenna switching test after link.
// This indicates two different the steps.
// In SWAW_STEP_PEAK, driver needs to switch antenna and listen to the signal on the air.
// In SWAW_STEP_DETERMINE, driver just compares the signal captured in SWAW_STEP_PEAK
// with original RSSI to determine if it is necessary to switch antenna.
#define SWAW_STEP_PEAK 0
#define SWAW_STEP_DETERMINE 1
#define SWAW_STEP_RESET 0xff
typedef struct _SW_Antenna_Switch_
{
unsigned char try_flag;
unsigned char CurAntenna;
unsigned char RSSI_Trying;
unsigned char TestMode;
int SelectAntennaMap[2][SELANT_MAP_SIZE];
unsigned char mapIndex;
}SWAT_T;
#endif
#if !defined(USE_OUT_SRC) || defined(_OUTSRC_COEXIST)
#if defined(SW_ANT_SWITCH) || defined(HW_ANT_SWITCH)
typedef enum tag_SW_Antenna_Switch_Definition
{
Antenna_L = 1,
Antenna_R = 2,
Antenna_MAX = 3,
}DM_SWAS_E;
#endif
#endif
#if defined(CONFIG_RTL_88E_SUPPORT) && defined(TXREPORT)
typedef struct StationInfoRAStruct
{
unsigned char RateID; // old rate id, by every conn per station
unsigned int RateMask; // old rate mask
unsigned int RAUseRate;
unsigned char RateSGI; // use SGI by decision
unsigned char RssiStaRA;
unsigned char PreRssiStaRA;
unsigned char SGIEnable; // set if station support SGI, by every conn per station
unsigned char DecisionRate; // update txrate info for desc setting
unsigned char PreRate;
unsigned char HighestRate;
unsigned char LowestRate;
unsigned int NscUp;
unsigned int NscDown;
unsigned short RTY[5];
unsigned int TOTAL;
unsigned short DROP;
unsigned char Active;
unsigned short RptTime;
#if 1
unsigned char RAWaitingCounter;
unsigned char RAPendingCounter;
#endif
#if 0
unsigned char TryingState;
unsigned char RateBeforeTrying;
#endif
struct stat_info *pstat;
} STATION_RA_INFO,*PSTATION_RA_INFO;
#endif
#if defined(CONFIG_RTL_88E_SUPPORT) && !defined(CALIBRATE_BY_ODM) //for 88e tx power tracking
#define IQK_Matrix_REG_NUM 8
typedef struct _IQK_MATRIX_REGS_SETTING{
char bIQKDone;
int Value[1][IQK_Matrix_REG_NUM];
}IQK_MATRIX_REGS_SETTING,*PIQK_MATRIX_REGS_SETTING;
#endif
// common private structure which info are shared between root interface and virtual interface
struct priv_shared_info {
unsigned int type;
unsigned int ioaddr;
unsigned int version_id;
#ifdef IO_MAPPING
unsigned int io_mapping;
#endif
#ifdef USE_CHAR_DEV
struct rtl8192cd_chr_priv *chr_priv;
#endif
#ifdef USE_PID_NOTIFY
pid_t wlanapp_pid;
#endif
#ifdef CONFIG_RTL_WAPI_SUPPORT
pid_t wlanwapi_pid;
#endif
#ifdef CONFIG_NET_PCI
struct pci_dev *pdev;
#endif
#if defined(CONCURRENT_MODE) || defined(CONFIG_RTL_92D_SUPPORT)
int wlandev_idx;
#endif
#ifdef __KERNEL__
struct tasklet_struct rx_tasklet;
struct tasklet_struct tx_tasklet;
struct tasklet_struct oneSec_tasklet;
#ifdef PCIE_POWER_SAVING
struct tasklet_struct ps_tasklet;
unsigned int rf_phy_bb_backup[23];
#endif
#endif
struct wlan_hdr_poll *pwlan_hdr_poll;
struct list_head wlan_hdrlist;
struct wlanllc_hdr_poll *pwlanllc_hdr_poll;
struct list_head wlanllc_hdrlist;
struct wlanbuf_poll *pwlanbuf_poll;
struct list_head wlanbuf_list;
struct wlanicv_poll *pwlanicv_poll;
struct list_head wlanicv_list;
struct wlanmic_poll *pwlanmic_poll;
struct list_head wlanmic_list;
struct rtl8192cd_hw *phw;
struct rtl8192cd_tx_desc_info *pdesc_info;
unsigned int have_hw_mic;
struct aid_obj *aidarray[NUM_STAT];
unsigned int max_fw_macid;
#ifdef _11s_TEST_MODE_
struct Galileo_poll *galileo_poll;
struct list_head galileo_list;
#endif
unsigned char agc_tab_buf[AGC_TAB_SIZE];
unsigned char mac_reg_buf[MAC_REG_SIZE];
unsigned char phy_reg_buf[PHY_REG_SIZE];
#ifdef MP_TEST
unsigned char phy_reg_mp_buf[PHY_REG_SIZE];
#endif
unsigned char phy_reg_pg_buf[PHY_REG_PG_SIZE];
#ifdef TXPWR_LMT
unsigned char txpwr_lmt_buf[MAC_REG_SIZE];
unsigned int txpwr_lmt_CCK;
unsigned int txpwr_lmt_OFDM;
unsigned int txpwr_lmt_HT1S;
unsigned int txpwr_lmt_HT2S;
unsigned char ch_pwr_lmtCCK[SUPPORT_CH_NUM];
unsigned char ch_pwr_lmtOFDM[SUPPORT_CH_NUM];
unsigned char ch_pwr_lmtHT20_1S[SUPPORT_CH_NUM];
unsigned char ch_pwr_lmtHT20_2S[SUPPORT_CH_NUM];
unsigned char ch_pwr_lmtHT40_1S[SUPPORT_CH_NUM];
unsigned char ch_pwr_lmtHT40_2S[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_CCK[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_OFDM[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_HT20_1S[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_HT20_2S[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_HT40_1S[SUPPORT_CH_NUM];
unsigned char ch_tgpwr_HT40_2S[SUPPORT_CH_NUM];
unsigned int tgpwr_CCK;
unsigned int tgpwr_OFDM;
unsigned int tgpwr_HT1S;
unsigned int tgpwr_HT2S;
#endif
#ifdef _TRACKING_TABLE_FILE
unsigned char txpwr_tracking_2G_CCK[4][index_mapping_NUM_MAX];
unsigned char txpwr_tracking_2G_OFDM[4][index_mapping_NUM_MAX];
unsigned char txpwr_tracking_5GL[4][index_mapping_NUM_MAX];
unsigned char txpwr_tracking_5GM[4][index_mapping_NUM_MAX];
unsigned char txpwr_tracking_5GH[4][index_mapping_NUM_MAX];
#endif
// unsigned char phy_reg_2to1[PHY_REG_1T2R];
unsigned short fw_IMEM_len;
unsigned short fw_EMEM_len;
unsigned short fw_DMEM_len;
#ifdef __KERNEL__
spinlock_t lock;
#endif
#ifdef SMP_SYNC
spinlock_t lock_xmit;
spinlock_t lock_skb;
spinlock_t lock_buf;
spinlock_t lock_recv;
#endif
// for RF fine tune
struct rf_finetune_var rf_ft_var;
// bcm 11n chipset iot debug
unsigned int reg_810_state; // 0=default, 1=set for bcm
unsigned int skip_mic_chk;
// TXOP enlarge
unsigned int txop_enlarge; // 0=no txop, 1=half txop enlarged, 2=full txop enlarged, e=for Intel, f=for 8192S sta
struct stat_info *highTP_found_pstat;
struct stat_info *txpause_pstat;
unsigned long txpause_time;
unsigned char rssi_min;
#ifdef WIFI_WMM
unsigned char iot_mode_enable;
unsigned int iot_mode_VI_exist;
unsigned int iot_mode_VO_exist;
unsigned char wifi_beq_lower;
#ifdef WMM_VIBE_PRI
unsigned int iot_mode_BE_exist;
#endif
#ifdef WMM_BEBK_PRI
unsigned int iot_mode_BK_exist;
#endif
#endif
#ifdef LOW_TP_TXOP
unsigned char BE_cwmax_enhance;
#endif
#ifdef RTK_AC_SUPPORT
char txsc_20; // { 1, 2, 3, 4 }
char txsc_40; // { 9, 10 }
unsigned int current_rsp_rate;
#endif
#ifdef CONFIG_WLAN_HAL_8192EE
char txsc_20_92e; // {1, 2}
#endif
int is_40m_bw;
int is_40m_bw_bak;
char offset_2nd_chan;
// int is_giga_exist;
#ifdef CONFIG_RTK_MESH
struct MESH_Share meshare; // mesh share data
spinlock_t lock_queue; // lock for DOT11_EnQueue2/DOT11_DeQueue2
spinlock_t lock_Rreq; // lock for rreq_retry. Some function like aodv_expire/tx use lock_queue simultaneously
#endif
unsigned int curr_band; // remember the current band to save switching time
unsigned short fw_signature;
unsigned char fw_category;
unsigned char fw_function;
unsigned short fw_version;
// unsigned short fw_src_version;
unsigned short fw_sub_version;
unsigned char fw_date_month;
unsigned char fw_date_day;
unsigned char fw_date_hour;
unsigned char fw_date_minute;
unsigned int CamEntryOccupied; // how many entries in CAM?
unsigned char rtk_ie_buf[16];
unsigned int rtk_ie_len;
unsigned char *rtk_cap_ptr;
unsigned short rtk_cap_val;
unsigned char use_long_slottime;
// for Tx power control
unsigned char working_channel;
unsigned char ra40MLowerMinus;
unsigned char raThdHP_Minus;
#ifdef INCLUDE_WPS
struct wsc_context WSC_CONT_S;
#endif
unsigned int current_num_tx_desc;
#ifdef USE_OUT_SRC
DM_ODM_T _dmODM;
#endif
#ifdef CONFIG_RTL_88E_SUPPORT
#ifdef SUPPORT_RTL8188E_TC
unsigned int rtl8188e_testchip_checked;
#endif
#if defined(TXREPORT) && !defined(RATEADAPTIVE_BY_ODM)
STATION_RA_INFO RaInfo[RTL8188E_NUM_STAT];
#endif
#endif
#if defined(USE_OUT_SRC)
unsigned char use_outsrc;
#endif
unsigned char use_hal;
#if defined(DFS) || defined(FOR_VHT5G_PF)
unsigned int dfsSwitchChannel;
#endif
/*********************************************************
* from here on, data will be clear in rtl8192cd_init_sw() *
*********************************************************/
// for SW LED
struct timer_list LED_Timer;
unsigned int LED_Interval;
unsigned char LED_Toggle;
unsigned char LED_ToggleStart;
unsigned int LED_tx_cnt_log;
unsigned int LED_rx_cnt_log;
unsigned int LED_tx_cnt;
unsigned int LED_rx_cnt;
unsigned char LED_cnt_mgn_pkt;
//for TxPwrTracking
unsigned char Thermal_idx;
unsigned char Thermal_log[8];
unsigned char ThermalValue;
unsigned char ThermalValue_LCK;
unsigned char ThermalValue_IQK;
unsigned char CCK_index;
unsigned char OFDM_index[2];
unsigned char CCK_index0;
unsigned char OFDM_index0[2];
#ifdef CONFIG_RTL_92D_SUPPORT
unsigned char Delta_IQK;
unsigned char Delta_LCK;
unsigned char pwr_trk_ongoing;
#ifdef RX_GAIN_TRACK_92D
unsigned int RegRF3C[2]; //pathA / pathB
unsigned char ThermalValue_RxGain;
#endif
unsigned char ThermalValue_Crystal;
#ifdef DPK_92D
unsigned char ThermalValue_DPK;
unsigned char ThermalValue_DPKstore;
unsigned char ThermalValue_DPKtrack;
unsigned char bDPKworking;
struct timer_list DPKTimer;
unsigned char bDPKdone[2];
unsigned char bDPKstore;
short index_mapping_DPK_current[4][index_mapping_DPK_NUM];
unsigned char OFDM_min_index_internalPA_DPK[2];
unsigned char TxPowerLevelDPK[2];
#endif
unsigned int RegRF18[2];
unsigned int RegRF28[2];
#endif // CONFIG_RTL_92D_SUPPORT
#if defined(CONFIG_RTL_8812_SUPPORT) || defined(CONFIG_WLAN_HAL_8881A)
unsigned char No_RF_Write;
unsigned char No_BB_Write;
unsigned int RegCB0;
unsigned int RegEB0;
#endif
unsigned int RegE94;
unsigned int RegE9C;
unsigned int RegEB4;
unsigned int RegEBC;
//for IQK
unsigned int RegC04;
unsigned int Reg874;
unsigned int RegC08;
unsigned int ADDA_backup[IQK_ADDA_REG_NUM];
unsigned int IQK_MAC_backup[IQK_MAC_REG_NUM];
#ifdef CONFIG_RTL_88E_SUPPORT
//for 8188E IQK
unsigned int IQK_BB_backup[IQK_BB_REG_NUM];
unsigned int IQK_BB_backup_recover[IQK_BB_REG_NUM];
unsigned char bRfPiEnable;
unsigned char IQK_88E_done;
#endif
#ifdef CONFIG_RTL_88E_SUPPORT //for 88e tx power tracking
unsigned char Power_tracking_on_88E;
unsigned int TXPowerTrackingCallbackCnt; //cosa add for debug
unsigned int RegA24; // for TempCCK
unsigned char EEPROMThermalMeter; // EEPROM default ThermalMeter value.
//u1Byte bTXPowerTracking;
unsigned char TXPowercount;
char bTXPowerTrackingInit;
char bTXPowerTracking;
unsigned char TxPowerTrackControl; //for mp mode, turn off txpwrtracking as default
unsigned char TM_Trigger;
unsigned char InternalPA5G[2]; //pathA / pathB
unsigned char ThermalMeter[2]; // ThermalMeter, index 0 for RFIC0, and 1 for RFIC1
unsigned char ThermalValue_AVG[AVG_THERMAL_NUM];
unsigned char ThermalValue_AVG_index;
unsigned char ThermalValue_RxGain;
unsigned char ThermalValue_Crystal;
unsigned char ThermalValue_DPKstore;
unsigned char ThermalValue_DPKtrack;
char TxPowerTrackingInProgress;
char bDPKenable;
char bReloadtxpowerindex;
//unsigned char bRfPiEnable;
//unsigned int TXPowerTrackingCallbackCnt; //cosa add for debug
unsigned char bCCKinCH14;
char bDoneTxpower;
unsigned char ThermalValue_HP[HP_THERMAL_NUM];
unsigned char ThermalValue_HP_index;
IQK_MATRIX_REGS_SETTING IQKMatrixRegSetting[IQK_Matrix_Settings_NUM];
unsigned char Delta_IQK;
unsigned char Delta_LCK;
#endif
#ifdef CONFIG_RTL_8812_SUPPORT //for 8812 tx power tracking
unsigned char Power_tracking_on_8812;
unsigned char ThermalValue_AVG_8812[AVG_THERMAL_NUM_8812];
unsigned char ThermalValue_AVG_index_8812;
#endif
#ifdef CONFIG_WLAN_HAL
unsigned char Power_tracking_on_88XX;
unsigned char ThermalValue_AVG_88XX[AVG_THERMAL_NUM_88XX];
unsigned char ThermalValue_AVG_index_88XX;
#endif
#if 0 //def SMART_CONCURRENT_92D
unsigned int bcnCount;
#endif
//#ifdef MBSSID
struct rtl8192cd_priv *bcnDOk_priv;
//#endif
#if defined(TXREPORT)
int sta_query_idx;
#endif
#ifdef BEAMFORMING_SUPPORT
RT_BEAMFORMING_INFO BeamformingInfo[2];
u1Byte BeamformingCurIdx;
BOOLEAN bBeamformingInProgress;
#endif
// for Rx dynamic tasklet
unsigned int rxInt_useTsklt;
unsigned int rxInt_data_delta;
#ifdef CHECK_HANGUP
#ifdef CHECK_TX_HANGUP
struct desc_check_info Q_info[5];
#endif
#ifdef CHECK_RX_DMA_ERROR
unsigned int rx_dma_err_cnt;
unsigned short rxff_pkt;
unsigned short rxff_rdptr;
unsigned int rx_byte_cnt;
#endif
#ifdef CHECK_RX_HANGUP
unsigned int rx_hang_checking;
unsigned int rx_cntreg_log;
unsigned int rx_stop_pending_tick;
struct rtl8192cd_priv *selected_priv;
#endif
#ifdef CHECK_BEACON_HANGUP
unsigned int beacon_ok_cnt;
unsigned int beacon_pending_cnt;
unsigned int beacon_wait_cnt;
#endif
unsigned int reset_monitor_cnt_down;
unsigned int reset_monitor_pending;
unsigned int reset_monitor_rx_pkt_cnt;
#endif
#ifdef MP_TEST
unsigned char mp_datarate;
unsigned char mp_antenna_tx;
unsigned char mp_antenna_rx;
unsigned char mp_txpwr_patha;
unsigned char mp_txpwr_pathb;
unsigned char mp_cck_txpwr_odd;
void *skb_pool_ptr;
struct sk_buff *skb_pool[NUM_MP_SKB];
int skb_head;
int skb_tail;
unsigned int mp_ctx_count;
unsigned int mp_ctx_pkt;
unsigned char mp_rssi;
unsigned char mp_sq;
struct rf_misc_info mp_rf_info;
unsigned char mp_ofdm_swing_idx;
unsigned char mp_cck_swing_idx;
unsigned char mp_txpwr_tracking;
int mp_pkt_len;
unsigned char mp_dig_on;
#ifdef MP_SWITCH_LNA
unsigned char rx_packet_ss_a;
unsigned char rx_packet_ss_b;
#endif
#ifdef B2B_TEST
volatile unsigned long mp_rx_ok, mp_rx_sequence, mp_rx_lost_packet, mp_rx_dup;
volatile unsigned short mp_cached_seq;
int mp_rx_waiting;
volatile unsigned int mp_mac_changed;
unsigned long txrx_elapsed_time;
unsigned long txrx_start_time;
#endif
//arx parameters
unsigned int mp_filter_flag;
unsigned char mp_filter_DA[6];
unsigned char mp_filter_SA[6];
unsigned char mp_filter_BSSID[6];
#endif // MP_TEST
// monitor Tx and Rx
unsigned long tx_packets_pre;
unsigned long rx_packets_pre;
// bcm old 11n chipset iot debug, and TXOP enlarge
unsigned long current_tx_bytes;
unsigned long current_rx_bytes;
#ifdef USE_OUT_SRC
u8Byte NumTxBytesUnicast;
u8Byte NumRxBytesUnicast;
unsigned char bScanInProcess;
u8Byte dummy;
#endif
unsigned char CurrentChannelBW;
unsigned char *txcmd_buf;
unsigned long cmdbuf_phyaddr;
unsigned long InterruptMask;
unsigned long InterruptMaskExt;
unsigned int rx_rpt_ofdm;
unsigned int rx_rpt_cck;
unsigned int rx_rpt_ht;
unsigned int successive_bb_hang;
#ifdef CLIENT_MODE
int AP_BW;
#endif
unsigned long rxFiFoO_pre;
// unsigned int pkt_in_hiQ;
#ifdef RTK_QUE
struct ring_que skb_queue;
#else
struct sk_buff_head skb_queue;
#endif
struct timer_list rc_sys_timer;
struct reorder_ctrl_timer rc_timer[64];
unsigned short rc_timer_head;
unsigned short rc_timer_tail;
unsigned short rc_timer_tick;
struct reorder_ctrl_timer amsdu_timer[64];
unsigned short amsdu_timer_head;
unsigned short amsdu_timer_tail;
// ht associated client statistic
#ifdef WIFI_WMM
unsigned int ht_sta_num;
unsigned int mimo_ps_dynamic_sta;
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned int mimo_ps_dynamic_sta_88e_hw_ext;
#endif
#ifdef STA_EXT
unsigned int mimo_ps_dynamic_sta_ext;
#endif
#endif
unsigned int set_led_in_progress;
struct stat_info* CurPstat[4]; // for tx desc break field
// unsigned int has_2r_sta; // Used when AP is 2T2R. bitmap of 2R aid
int has_triggered_rx_tasklet;
int has_triggered_tx_tasklet;
#ifdef __ECOS
int call_dsr;
int has_triggered_process_mcast_dzqueue;
#ifdef MBSSID
int has_triggered_vap_process_mcast_dzqueue[RTL8192CD_NUM_VWLAN];
#endif
#if defined(TXREPORT)
int has_triggered_C2H_isr;
#endif
#ifdef DFS
int has_triggered_dfs_switch_channel;
#endif
#endif
#ifdef STA_EXT
unsigned char fw_free_space;
unsigned char remapped_aidarray[NUM_STAT];
#endif
// for DIG
unsigned char DIG_on;
unsigned char restore;
unsigned short threshold0;
unsigned short threshold1;
unsigned short threshold2;
unsigned char FA_upper;
unsigned char FA_lower;
unsigned short ofdm_FA_cnt1;
unsigned short ofdm_FA_cnt2;
unsigned short ofdm_FA_cnt3;
unsigned short ofdm_FA_cnt4;
unsigned short cck_FA_cnt;
#ifdef INTERFERENCE_CONTROL
unsigned int ofdm_FA_total_cnt;
#endif
unsigned int FA_total_cnt;
unsigned int CCA_total_cnt;
#if defined(CONFIG_RTL_NOISE_CONTROL) || defined(CONFIG_RTL_NOISE_CONTROL_92C)
unsigned char DNC_on;
#endif
#if defined(CONFIG_RTL_92D_SUPPORT) && defined(CONFIG_RTL_NOISE_CONTROL)
unsigned char DNC_chk_cnt;
unsigned char DNC_chk;
// unsigned short F90_cnt;
unsigned short F94_cnt;
unsigned short F94_cntOK;
unsigned int Reg664_cnt;
unsigned int Reg664_cntOK;
#endif
int digDownCount;
int digDeadPoint;
int digDeadPointCandidate;
int digDeadPointHitCount;
unsigned char cca_path;
unsigned char fw_q_fifo_count;
unsigned int current_tx_rate;
unsigned char ht_current_tx_info; // bit0: 0=20M mode, 1=40M mode; bit1: 0=longGI, 1=shortGI
#ifdef DOT11D
unsigned int countryTabIdx;
unsigned int countryBandUsed; // 0 == 2.4G ; 1 == 5G
#endif
#if defined(RESERVE_TXDESC_FOR_EACH_IF) && (defined(UNIVERSAL_REPEATER) || defined(MBSSID))
unsigned int num_txdesc_cnt; // less or equal max available tx desc
unsigned int num_txdesc_upper_limit;
unsigned int num_txdesc_lower_limit;
#ifdef USE_TXQUEUE
unsigned int num_txq_cnt;
unsigned int num_txq_upper_limit;
unsigned int num_txq_lower_limit;
#endif
#endif
// Retry Limit register content
unsigned short RL_setting;
#ifdef SW_ANT_SWITCH
SWAT_T DM_SWAT_Table;
struct stat_info *RSSI_target;
struct timer_list swAntennaSwitchTimer;
unsigned int RSSI_sum_R;
unsigned int RSSI_cnt_R;
unsigned int RSSI_sum_L;
unsigned int RSSI_cnt_L;
unsigned int RSSI_test;
unsigned int lastTxOkCnt;
unsigned int lastRxOkCnt;
unsigned int TXByteCnt_R;
unsigned int TXByteCnt_L;
unsigned int RXByteCnt_R;
unsigned int RXByteCnt_L;
unsigned int TrafficLoad;
#endif
#ifdef DETECT_STA_EXISTANCE
struct timer_list rl_recover_timer;
unsigned char bRLShortened;
#endif
#if defined(DFS) || defined(FOR_VHT5G_PF)
unsigned int dfsSwitchChCountDown;
unsigned int dfsSwCh_ongoing;
#endif
#ifdef RX_BUFFER_GATHER
unsigned int gather_state;
struct list_head gather_list;
int gather_len;
#ifdef CONFIG_WLAN_HAL
int pkt_total_len;
#endif // CONFIG_WLAN_HAL
#endif
#ifdef USE_TXQUEUE
struct txq_list_head txq_list[7];
unsigned int txq_isr;
unsigned int txq_stop;
unsigned int txq_check;
struct list_head txq_pool;
unsigned char *txq_pool_addr;
#endif
unsigned char Reg_RRSR_2;
unsigned char Reg_81b;
unsigned int marvellMapBit;
#if defined(WIFI_11N_2040_COEXIST_EXT)
unsigned char bws_triggered;
unsigned int _40m_staMap;
#endif
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned int marvellMapBit_88e_hw_ext;
#endif
#ifdef STA_EXT
unsigned int marvellMapBitExt;
#endif
#ifdef TX_EARLY_MODE
unsigned int em_waitq_on;
unsigned int em_tx_byte_cnt;
unsigned int reach_tx_limit_cnt;
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned short aggrmax_bak;
#endif
#endif
unsigned int iqk_2g_done;
#ifdef CONFIG_RTL_92D_SUPPORT
unsigned int iqk_5g_done;
#endif
#if defined(CONFIG_RTL_8812_SUPPORT) || defined(CONFIG_WLAN_HAL_8881A)
unsigned char pre_channel;
#endif
unsigned int intel_active_sta;
unsigned int intel_rty_lmt;
#if defined(CONFIG_RTL_88E_SUPPORT) && defined(TXREPORT)
unsigned int total_assoc_num;
unsigned int txRptMacid;
#endif
#ifdef SMART_REPEATER_MODE
struct timer_list check_vxd_ap;
unsigned int switch_chan_rp;
unsigned int switch_2ndchoff_rp;
unsigned int band_width_rp;
#endif
};
#ifdef CONFIG_RTL8186_KB
typedef struct guestmac {
unsigned char macaddr[6];
unsigned char valid;
} GUESTMAC_T;
#endif
typedef struct rtl8192cd_priv {
#ifdef NETDEV_NO_PRIV
struct rtl8192cd_priv* wlan_priv; //This element shall be put at top of this struct
#endif
#ifdef CONFIG_WLAN_HAL
void * HalFunc;
void * HalData;
#endif
int drv_state; // bit0 - init, bit1 - open/close
struct net_device *dev;
struct wifi_mib *pmib;
struct wlan_acl_poll *pwlan_acl_poll;
struct list_head wlan_aclpolllist; // this is for poll management
struct list_head wlan_acl_list; // this is for auth checking
DOT11_QUEUE *pevent_queue;
#ifdef CONFIG_RTL_WAPI_SUPPORT
DOT11_QUEUE *wapiEvent_queue;
#endif
DOT11_EAP_PACKET *Eap_packet;
#ifdef INCLUDE_WPS
#ifndef CONFIG_MSC
DOT11_EAP_PACKET *upnp_packet;
#endif
#endif
#ifdef _INCLUDE_PROC_FS_
struct proc_dir_entry *proc_root;
unsigned int txdesc_num;
unsigned char *phypara_file_start;
unsigned char *phypara_file_end;
#elif defined(__ECOS)
unsigned int txdesc_num;
#endif
#ifdef CONFIG_RTK_MESH
DOT11_QUEUE2 *pathsel_queue; // pathselection QUEUE
#ifdef _11s_TEST_MODE_
DOT11_QUEUE2 *receiver_queue; // pathselection QUEUE
struct list_head mtb_list;
#endif
#endif
#ifdef ENABLE_RTL_SKB_STATS
atomic_t rtl_tx_skb_cnt;
atomic_t rtl_rx_skb_cnt;
#endif
struct priv_shared_info *pshare; // pointer of shared info, david
#if defined(UNIVERSAL_REPEATER) || defined(MBSSID)
struct rtl8192cd_priv *proot_priv; // ptr of private structure of root interface
#if defined(CONFIG_WLAN_HAL)
#ifdef RESERVE_TXDESC_FOR_EACH_IF
unsigned int use_txdesc_cnt[14];
#ifdef USE_TXQUEUE
unsigned int use_txq_cnt[14];
#endif
#endif
#else
#ifdef RESERVE_TXDESC_FOR_EACH_IF
unsigned int use_txdesc_cnt[7];
#ifdef USE_TXQUEUE
unsigned int use_txq_cnt[7];
#endif
#endif
#endif
#endif
#ifdef UNIVERSAL_REPEATER
struct rtl8192cd_priv *pvxd_priv; // ptr of private structure of virtual interface
#endif
#ifdef MBSSID
struct rtl8192cd_priv *pvap_priv[RTL8192CD_NUM_VWLAN]; // ptr of private structure of vap interface
short vap_id;
short vap_init_seq;
unsigned char func_off_already;
int bcn_period_bak;
#endif
#ifdef DFS
/*
* timer for the blocked channel if radar detected
*/
struct timer_list ch52_timer;
struct timer_list ch56_timer;
struct timer_list ch60_timer;
struct timer_list ch64_timer;
struct timer_list ch100_timer;
struct timer_list ch104_timer;
struct timer_list ch108_timer;
struct timer_list ch112_timer;
struct timer_list ch116_timer;
struct timer_list ch120_timer;
struct timer_list ch124_timer;
struct timer_list ch128_timer;
struct timer_list ch132_timer;
struct timer_list ch136_timer;
struct timer_list ch140_timer;
/*
* blocked channel will be removed from available_chnl[32] and placed in this list
*/
unsigned int NOP_chnl[15];
unsigned int NOP_chnl_num;
unsigned int Not_DFS_chnl[32];
unsigned int Not_DFS_chnl_num;
#endif
#if defined(INCLUDE_WPA_PSK) || defined(WIFI_HAPD)
WPA_GLOBAL_INFO *wpa_global_info;
#endif
#ifdef CHECK_HANGUP
int reset_hangup;
unsigned int check_cnt_tx;
unsigned int check_cnt_rx;
unsigned int check_cnt_isr;
unsigned int check_cnt_bcn;
unsigned int check_cnt_rst;
unsigned int check_cnt_bb;
unsigned int check_cnt_cca;
#endif
#ifdef WDS
struct net_device_stats wds_stats[NUM_WDS];
struct net_device *wds_dev[NUM_WDS];
#endif
unsigned int auto_channel; // 0: not auto, 1: auto select this time, 2: auto select next time
unsigned int auto_channel_backup;
unsigned long up_time;
#ifdef CONFIG_RTK_MESH
unsigned char RreqMAC[AODV_RREQ_TABLE_SIZE][MACADDRLEN];
unsigned int RreqBegin;
unsigned int RreqEnd;
struct hash_table *proxy_table, *mesh_rreq_retry_queue;
#ifdef PU_STANDARD
struct hash_table *proxyupdate_table;
#endif
struct hash_table *pathsel_table; // add by chuangch 2007.09.13
struct mpp_tb *pann_mpp_tb;
struct MESH_FAKE_MIB_T mesh_fake_mib;
unsigned char root_mac[MACADDRLEN]; // Tree Base root MAC
/*
dev->priv->base_addr = 0 is wds
dev->priv->base_addr = 1 is mesh
We provide only one mesh device now. Although it is possible that more than one
mesh devices bind with one physical interface simultaneously. RTL8186 shares the
same MAC address with multiple virtual devices. Hence, the mesh data frame can't
be handled (rx) by mesh devices correctly.
*/
struct net_device *mesh_dev;
#ifdef _MESH_ACL_ENABLE_
struct mesh_acl_poll *pmesh_acl_poll;
struct list_head mesh_aclpolllist; // this is for poll management
struct list_head mesh_acl_list; // this is for auth checking
#endif
#endif // CONFIG_RTK_MESH
#ifdef MESH_USE_METRICOP
UINT32 toMeshMetricAuto; // timeout, check mesh_fake_mib for further description
#endif
#ifdef EN_EFUSE
unsigned char AutoloadFailFlag;
unsigned char EfuseMap[2][EFUSE_MAP_LEN];
unsigned short EfuseUsedBytes;
#endif
#ifdef CONFIG_RTL_WAPI_SUPPORT
uint8 *wapiCachedBuf;
uint8 wapiNMK[WAPI_KEY_LEN];
uint8 txMCast[WAPI_PN_LEN];
uint8 rxMCast[WAPI_PN_LEN];
uint8 keyNotify[WAPI_PN_LEN];
uint8 aeWapiIE[256];
uint8 wapiCachedLen;
uint8 aeWapiIELength;
uint8 wapiMCastKeyId:1;
uint8 wapiMCastKeyUpdateAllDone:1;
uint8 wapiMCastKeyUpdate:1;
uint8 wapiMCastNeedInit:1;
uint16 wapiWaiTxSeq;
wapiKey wapiMCastKey[2];
unsigned long wapiMCastKeyUpdateCnt;
struct timer_list waiMCastKeyUpdateTimer;
#endif
#if defined(CONFIG_RTL_CUSTOM_PASSTHRU)
struct net_device *pWlanDev;
#endif
#if defined(CONFIG_RTL_NEW_AUTOCH) && defined(SS_CH_LOAD_PROC)
unsigned int ch_ss_rpt_cnt;
struct ss_report ch_ss_rpt[MAX_BSS_NUM];
#endif
#ifdef P2P_SUPPORT
struct timer_list p2p_listen_timer_t;
struct timer_list p2p_search_timer_t;
struct p2p_context* p2pPtr;
#endif
/*********************************************************
* from here on, data will be clear in rtl8192cd_init_sw() *
*********************************************************/
struct net_device_stats net_stats;
struct extra_stats ext_stats;
#ifdef TLN_STATS
struct tln_wifi_stats wifi_stats;
struct tln_ext_wifi_stats ext_wifi_stats;
unsigned int stats_time_countdown;
#endif
struct timer_list frag_to_filter;
unsigned int frag_to;
struct timer_list expire_timer;
#ifdef PCIE_POWER_SAVING
struct timer_list ps_timer;
#endif
unsigned int auth_to; // second. time to expire in authenticating
unsigned int assoc_to; // second. time to expire before associating
unsigned int expire_to; // second. time to expire after associating
struct timer_list ss_timer; //ss_timer: site_survey timer
struct ss_res site_survey;
unsigned int site_survey_times;
unsigned char ss_ssid[32];
unsigned int ss_ssidlen;
unsigned char ss_req_ongoing;
#ifdef CONFIG_RTL_COMAPI_WLTOOLS
wait_queue_head_t ss_wait;
#endif
unsigned int auth_seq;
unsigned char chg_txt[128];
struct list_head stat_hash[NUM_STAT];
struct list_head asoc_list;
struct list_head auth_list;
struct list_head defrag_list;
struct list_head sleep_list;
struct list_head wakeup_list;
struct list_head addRAtid_list; // to avoid add RAtid fail
struct list_head addrssi_list;
struct list_head addps_list;
#ifdef WIFI_SIMPLE_CONFIG
unsigned int beaconbuf[MAX_WSC_IE_LEN];
struct wsc_probe_request_info wsc_sta[MAX_WSC_PROBE_STA];
unsigned int wps_issue_join_req;
unsigned int recover_join_req;
struct bss_desc dot11Bss_original;
int hidden_ap_mib_backup;
unsigned char *pbeacon_ssid;
unsigned char orig_SSID[33];
int orig_SSID_LEN;
#else
unsigned int beaconbuf[128];
#endif
struct ht_cap_elmt ht_cap_buf;
unsigned int ht_cap_len;
struct ht_info_elmt ht_ie_buf;
unsigned int ht_ie_len;
unsigned int ht_legacy_obss_to;
unsigned int ht_nomember_legacy_sta_to;
unsigned int ht_legacy_sta_num;
unsigned int ht_protection;
unsigned int dc_th_current_state;
#ifdef RTK_AC_SUPPORT
struct vht_cap_elmt vht_cap_buf;
unsigned int vht_cap_len;
struct vht_oper_elmt vht_oper_buf;
unsigned int vht_oper_len;
#endif
// to avoid add RAtid fail
#if defined(CONFIG_RTL_92D_SUPPORT) || defined(CONFIG_RTL_92C_SUPPORT)
struct timer_list add_RATid_timer;
struct timer_list add_rssi_timer;
#endif
struct timer_list add_ps_timer;
#if defined(CONFIG_RTL_92D_SUPPORT) && defined(CONFIG_RTL_NOISE_CONTROL)
struct timer_list dnc_timer;
#endif
#ifdef SMART_CONCURRENT_92D
struct timer_list smcc_prb_timer;
#endif
unsigned short timoffset;
unsigned char dtimcount;
unsigned char pkt_in_dtimQ;
unsigned char pkt_in_hiQ;
//struct stat_info_cache stainfo_cache;
struct stat_info *pstat_cache;
struct list_head rx_datalist;
struct list_head rx_mgtlist;
struct list_head rx_ctrllist;
#ifdef SMP_SYNC
spinlock_t rx_datalist_lock;
spinlock_t rx_mgtlist_lock;
spinlock_t rx_ctrllist_lock;
#endif
int assoc_num; // association client number
int link_status;
unsigned short *pBeaconCapability; // ptr of capability field in beacon buf
unsigned char *pBeaconErp; // ptr of ERP field in beacon buf
unsigned int available_chnl[76]; // all available channel we can use
unsigned int available_chnl_num; // record the number
#ifdef CONFIG_RTL_NEW_AUTOCH
unsigned int chnl_ss_fa_count[76]; // record FA count while ss
unsigned int chnl_ss_cca_count[76]; // record CCA count while ss
#ifdef SS_CH_LOAD_PROC
unsigned char chnl_ss_load[76]; // record noise level while ss
#endif
unsigned int chnl_ss_mac_rx_count[76];
unsigned int chnl_ss_mac_rx_count_40M[76];
#endif
#ifdef P2P_SUPPORT
unsigned int back_available_chnl[76]; // all available channel we can use
unsigned int back_available_chnl_num; // record the number
#endif
//unsigned int oper_band; // remember the operating bands
unsigned int supported_rates;
unsigned int basic_rates;
// for MIC check
struct timer_list MIC_check_timer;
struct timer_list assoc_reject_timer;
unsigned int MIC_timer_on;
unsigned int assoc_reject_on;
unsigned char assoc_reject_mac[6];
#ifdef CLIENT_MODE
struct timer_list reauth_timer;
unsigned int reauth_count;
struct timer_list reassoc_timer;
unsigned int reassoc_count;
struct timer_list idle_timer;
#ifdef DFS
struct timer_list dfs_cntdwn_timer;
#endif
unsigned int join_req_ongoing;
int join_index;
unsigned long jiffies_pre;
unsigned int ibss_tx_beacon;
unsigned int rxBeaconNumInPeriod;
unsigned int rxBeaconCntArray[ROAMING_DECISION_PERIOD_ARRAY];
unsigned int rxBeaconCntArrayIdx; // current index of array
unsigned int rxBeaconCntArrayWindow; // Is slide windows full
unsigned int rxBeaconPercentage;
unsigned int rxDataNumInPeriod;
unsigned int rxDataCntArray[ROAMING_DECISION_PERIOD_ARRAY];
unsigned int rxMlcstDataNumInPeriod;
unsigned int rxDataNumInPeriod_pre;
unsigned int rxMlcstDataNumInPeriod_pre;
unsigned int dual_band;
unsigned int supported_rates_alt;
unsigned int basic_rates_alt;
unsigned char rx_timestamp[8];
UINT64 prev_tsf;
#endif
int authModeToggle; // auth mode toggle referred when auto-auth mode is set under client mode, david
int authModeRetry; // auth mode retry sequence when auto-auth mode is set under client mode
int acLogCountdown; // log count-down time
struct ac_log_info acLog[MAX_AC_LOG];
struct tx_desc *amsdu_first_desc;
unsigned int bcnTxAGC;
unsigned int bcnTxAGC_bak;
unsigned short tx_beacon_len;
#ifdef WIFI_11N_2040_COEXIST
struct obss_scan_para_elmt obss_scan_para_buf;
unsigned int obss_scan_para_len;
unsigned int bg_ap_timeout;
#ifdef CLIENT_MODE
unsigned int bg_ap_timeout_ch[14];
unsigned int intolerant_timeout;
unsigned int coexist_connection;
#endif
unsigned int force_20_sta;
unsigned int switch_20_sta;
#ifdef CONFIG_RTL_88E_SUPPORT
unsigned int force_20_sta_88e_hw_ext;
unsigned int switch_20_sta_88e_hw_ext;
#endif
#ifdef STA_EXT
unsigned int force_20_sta_ext;
unsigned int switch_20_sta_ext;
#endif
#endif
/*********************************************************************
* from here on till EE_Cached will be backup during hang up reset *
*********************************************************************/
#ifdef CLIENT_MODE
unsigned int join_res;
unsigned int beacon_period;
unsigned short aid;
unsigned int ps_state;
#if defined(WIFI_WMM) && defined (WMM_APSD)
unsigned int uapsd_assoc;
#endif
#ifdef RTK_BR_EXT
unsigned int macclone_completed;
struct nat25_network_db_entry *nethash[NAT25_HASH_SIZE];
int pppoe_connection_in_progress;
unsigned char pppoe_addr[MACADDRLEN];
unsigned char scdb_mac[MACADDRLEN];
unsigned char scdb_ip[4];
struct nat25_network_db_entry *scdb_entry;
unsigned char br_mac[MACADDRLEN];
unsigned char br_ip[4];
unsigned char ukpro_mac[MACADDRLEN]; // mac address of unknown protocol
unsigned char ukpro_mac_valid; // if the above entry is valid
#endif
unsigned char up_flag;
#endif
#ifdef MICERR_TEST
unsigned int micerr_flag;
#endif
#ifdef SMART_CONCURRENT_92D
unsigned int smcc_state;
struct SMCC_MAC_Info_Tbl *MAC_info;
#endif
#ifdef DFS
struct timer_list DFS_timer; /* timer for radar detection */
struct timer_list ch_avail_chk_timer; /* timer for channel availability check */
struct timer_list dfs_chk_timer; /* timer for dfs trigger */
struct timer_list dfs_det_chk_timer; /* timer for channel busy check under dfs */
unsigned int FA_count_pre;
unsigned int VHT_CRC_ok_cnt_pre;
unsigned int HT_CRC_ok_cnt_pre;
unsigned int LEG_CRC_ok_cnt_pre;
unsigned char radar_det_mask_hist[10];
unsigned char mask_idx;
unsigned char mask_hist_checked;
unsigned char pulse_flag_hist[10];
unsigned char det_asoc_clear;
unsigned int short_pulse_cnt_pre;
unsigned int long_pulse_cnt_pre;
unsigned int st_L2H_cur;
int pwdb_th;
int PSD_report_right[10][20];
int PSD_report_left[10][20];
int max_hold_right[20];
int max_hold_left[20];
#endif
#ifdef GBWC
struct timer_list GBWC_timer;
struct pkt_queue GBWC_tx_queue;
struct pkt_queue GBWC_rx_queue;
unsigned int GBWC_tx_count;
unsigned int GBWC_rx_count;
unsigned int GBWC_consuming_Q;
#endif
#ifdef SUPPORT_SNMP_MIB
struct mib_snmp snmp_mib;
#endif
struct pkt_queue dz_queue; // Queue for multicast pkts when there is sleeping sta
unsigned char release_mcast;
#ifndef USE_RTL8186_SDK
unsigned int amsdu_first_dma_desc;
unsigned int ampdu_first_dma_desc;
#endif
int amsdu_len;
int ampdu_len;
#ifdef CHECK_RX_HANGUP
unsigned long rx_packets_pre1;
unsigned long rx_packets_pre2;
unsigned int rx_start_monitor_running;
#endif
#ifdef USB_PKT_RATE_CTRL_SUPPORT
unsigned int change_toggle;
unsigned int pre_pkt_cnt;
unsigned int pkt_nsec_diff;
unsigned int poll_usb_cnt;
unsigned int auto_rate_mask;
#endif
#ifdef CONFIG_RTL8186_KB
GUESTMAC_T guestMac[MAX_GUEST_NUM];
#endif
#ifdef CONFIG_RTK_VLAN_SUPPORT
int global_vlan_enable;
struct vlan_info vlan_setting;
#endif
#ifdef CONFIG_RTK_MESH
struct net_device_stats mesh_stats;
#ifdef _11s_TEST_MODE_
char rvTestPacket[3000];
#endif
UINT8 mesh_Version;
// WLAN Mesh Capability
INT16 mesh_PeerCAP_cap; // peer capability-Cap number (Signed!)
UINT8 mesh_PeerCAP_flags; // peer capability-flags
UINT8 mesh_PowerSaveCAP; // Power Save capability
UINT8 mesh_SyncCAP; // Synchronization capability
UINT8 mesh_MDA_CAP; // MDA capability
UINT32 mesh_ChannelPrecedence; // Channel Precedence
UINT8 mesh_HeaderFlags; // mesh header in mesh flags field
// MKD domain element [MKDDIE]
UINT8 mesh_MKD_DomainID[6];
UINT8 mesh_MKDDIE_SecurityConfiguration;
// EMSA Handshake element [EMSAIE]
UINT8 mesh_EMSAIE_ANonce[32];
UINT8 mesh_EMSAIE_SNonce[32];
UINT8 mesh_EMSAIE_MA_ID[6];
UINT16 mesh_EMSAIE_MIC_Control;
UINT8 mesh_EMSAIE_MIC[16];
#ifdef MESH_BOOTSEQ_AUTH
struct timer_list mesh_auth_timer; ///< for unestablish (And establish to unestablish) MP mesh_auth_hdr
// mesh_auth_hdr:
// It is a list structure, only stores unAuth MP entry
// Each entry is a pointer pointing to an entry in "stat_info->mesh_mp_ptr"
// and removed by successful "Auth" or "Expired"
struct list_head mesh_auth_hdr;
#endif
struct timer_list mesh_peer_link_timer; ///< for unestablish (And establish to unestablish) MP mesh_unEstablish_hdr
// mesh_unEstablish_hdr:
// It is a list structure, only stores unEstablish (or Establish -> unEstablish [MP_HOLDING])MP entry
// Each entry is a pointer pointing to an entry in "stat_info->mesh_mp_ptr"
// and removed by successful "Peer link setup" or "Expired"
struct list_head mesh_unEstablish_hdr;
// mesh_mp_hdr:
// It is a list of MP/MAP/MPP who has already passed "Peer link setup"
// Each entry is a pointer pointing to an entry in "stat_info->mesh_mp_ptr"
// Every entry is inserted by "successful peer link setup"
// and removed by "Expired"
struct list_head mesh_mp_hdr;
struct MESH_Profile mesh_profile[1]; // Configure by WEB in the future, Maybe delete, Preservation before delete
#ifdef MESH_BOOTSEQ_STRESS_TEST
unsigned long mesh_stressTestCounter;
#endif // MESH_BOOTSEQ_STRESS_TEST
// Throughput statistics (sounder)
unsigned int mesh_log;
unsigned long log_time;
#ifdef _MESH_ACL_ENABLE_
unsigned char meshAclCacheAddr[MACADDRLEN];
unsigned char meshAclCacheMode;
#endif
#endif // CONFIG_RTK_MESH
#ifdef SUPPORT_TX_MCAST2UNI
int stop_tx_mcast2uni;
#endif
#ifdef CONFIG_OFFLOAD_FUNCTION
unsigned int offload_function_ctrl;
unsigned char offload_bcn_page;
unsigned char offload_proc_page;
#endif //#ifdef CONFIG_OFFLOAD_FUNCTION
#ifdef PCIE_POWER_SAVING
unsigned int offload_ctrl;
unsigned char pwr_state;
unsigned char ps_ctrl;
#ifdef PCIE_POWER_SAVING_DEBUG
char firstPkt;
#endif
#endif
#ifdef TEMP_MP_92D
unsigned char mp_start;
unsigned int mp_txrate;
#endif
#ifdef SW_TX_QUEUE
unsigned char record_mac[6];
int record_qnum;
int swq_txmac_chg;
int swq_en;
int swq_decision;
unsigned short record_aid;
unsigned long swqen_keeptime;
#endif
#ifdef A4_STA
struct list_head a4_sta_list;
struct a4_sta_db_entry *machash[A4_STA_HASH_SIZE];
struct a4_tbl_entry a4_ent[MAX_A4_TBL_NUM];
#endif
#ifdef WIFI_WPAS
unsigned char wpas_manual_assoc; //_Eric ??
#endif
int update_bcn_period;
#ifdef SUPPORT_MULTI_PROFILE
int profile_idx; // indicate next used profile.
int mask_n_band;
#endif
#ifdef SWITCH_CHAN
int chan_backup;
int bw_backup;
int offset_backup;
int func_backup;
#endif
#if defined(CONFIG_RTL_8812_SUPPORT)||defined(CONFIG_WLAN_HAL_8881A)
char bFWReady;
#endif
}RTL8192CD_PRIV, *PRTL8192CD_PRIV;
struct rtl8192cd_chr_priv {
unsigned int major;
unsigned int minor;
struct rtl8192cd_priv* wlan_priv;
struct fasync_struct* asoc_fasync; // asynch notification
};
#ifdef NETDEV_NO_PRIV
struct rtl8192cd_wds_priv {
struct rtl8192cd_priv* wlan_priv; //This element shall be put at top of this struct
};
#endif
/* station info, reported to web server */
typedef struct _sta_info_2_web {
unsigned short aid;
unsigned char addr[6];
unsigned long tx_packets;
unsigned long rx_packets;
unsigned long expired_time; // 10 msec unit
unsigned short flags;
unsigned char TxOperaRate;
unsigned char rssi;
unsigned long link_time; // 1 sec unit
unsigned long tx_fail;
unsigned long tx_bytes;
unsigned long rx_bytes;
unsigned char network;
unsigned char ht_info; // bit0: 0=20M mode, 1=40M mode; bit1: 0=longGI, 1=shortGI
unsigned char RxOperaRate;
#ifdef TLN_STATS
unsigned char auth_type;
unsigned char enc_type;
unsigned char resv[1];
#else
unsigned char resv[3];
#endif
unsigned short acTxOperaRate;
} sta_info_2_web;
#define NULL_MAC_ADDR ("\x0\x0\x0\x0\x0\x0")
// Macros
#define GET_MIB(priv) (priv->pmib)
#define GET_HW(priv) (priv->pshare->phw)
#define AP_BSSRATE ((GET_MIB(priv))->dot11StationConfigEntry.dot11OperationalRateSet)
#define AP_BSSRATE_LEN ((GET_MIB(priv))->dot11StationConfigEntry.dot11OperationalRateSetLen)
#ifdef RTK_AC_SUPPORT //vht rate
#define AP_BSSRATE_AC (priv->pshare->rf_ft_var.dot11OperationalRateSet_AC)
#define AP_BSSRATE_LEN_AC (priv->pshare->rf_ft_var.dot11OperationalRateSetLen_AC)
#endif
#define STAT_OPRATE (pstat->bssrateset)
#define STAT_OPRATE_LEN (pstat->bssratelen)
#define BSSID ((GET_MIB(priv))->dot11StationConfigEntry.dot11Bssid)
#define SSID ((GET_MIB(priv))->dot11StationConfigEntry.dot11DesiredSSID)
#define SSID_LEN ((GET_MIB(priv))->dot11StationConfigEntry.dot11DesiredSSIDLen)
#define OPMODE ((GET_MIB(priv))->dot11OperationEntry.opmode)
#define HIDDEN_AP ((GET_MIB(priv))->dot11OperationEntry.hiddenAP)
#define RTSTHRSLD ((GET_MIB(priv))->dot11OperationEntry.dot11RTSThreshold)
#define FRAGTHRSLD ((GET_MIB(priv))->dot11OperationEntry.dot11FragmentationThreshold)
#define EXPIRETIME ((GET_MIB(priv))->dot11OperationEntry.expiretime)
#define LED_TYPE ((GET_MIB(priv))->dot11OperationEntry.ledtype)
#ifdef RTL8190_SWGPIO_LED
#define LED_ROUTE ((GET_MIB(priv))->dot11OperationEntry.ledroute)
#endif
#define IAPP_ENABLE ((GET_MIB(priv))->dot11OperationEntry.iapp_enable)
#define SWCRYPTO ((GET_MIB(priv))->dot11StationConfigEntry.dot11swcrypto)
#define IEEE8021X_FUN ((GET_MIB(priv))->dot118021xAuthEntry.dot118021xAlgrthm)
#define ACCT_FUN ((GET_MIB(priv))->dot118021xAuthEntry.acct_enabled)
#define ACCT_FUN_TIME ((GET_MIB(priv))->dot118021xAuthEntry.acct_timeout_period)
#define ACCT_FUN_TP ((GET_MIB(priv))->dot118021xAuthEntry.acct_timeout_throughput)
#define ACCT_TP_INT 60
#define SHORTPREAMBLE ((GET_MIB(priv))->dot11RFEntry.shortpreamble)
#define SSID2SCAN ((GET_MIB(priv))->dot11StationConfigEntry.dot11SSIDtoScan)
#define SSID2SCAN_LEN ((GET_MIB(priv))->dot11StationConfigEntry.dot11SSIDtoScanLen)
#define RX_BUF_LEN ((GET_MIB(priv))->dot11nConfigEntry.dot11nAMSDURecvMax?(MAX_RX_BUF_LEN):(MIN_RX_BUF_LEN))
#ifdef WIFI_WMM
#define QOS_ENABLE ((GET_MIB(priv))->dot11QosEntry.dot11QosEnable)
#define APSD_ENABLE ((GET_MIB(priv))->dot11QosEntry.dot11QosAPSD)
#define GET_WMM_IE ((GET_MIB(priv))->dot11QosEntry.WMM_IE)
#define GET_WMM_PARA_IE ((GET_MIB(priv))->dot11QosEntry.WMM_PARA_IE)
#define GET_EDCA_PARA_UPDATE ((GET_MIB(priv))->dot11QosEntry.EDCAparaUpdateCount)
#define GET_STA_AC_BE_PARA ((GET_MIB(priv))->dot11QosEntry.STA_AC_BE_paraRecord)
#define GET_STA_AC_BK_PARA ((GET_MIB(priv))->dot11QosEntry.STA_AC_BK_paraRecord)
#define GET_STA_AC_VI_PARA ((GET_MIB(priv))->dot11QosEntry.STA_AC_VI_paraRecord)
#define GET_STA_AC_VO_PARA ((GET_MIB(priv))->dot11QosEntry.STA_AC_VO_paraRecord)
#endif
#ifdef DOT11D
#define COUNTRY_CODE_ENABLED ((GET_MIB(priv))->dot11dCountry.dot11CountryCodeSwitch)
#endif
#ifdef P2P_SUPPORT
#define P2PMODE ((GET_MIB(priv))->p2p_mib.p2p_type)
#define P2P_STATE ((GET_MIB(priv))->p2p_mib.p2p_state)
#define P2P_DISCOVERY ((GET_MIB(priv))->p2p_mib.p2p_on_discovery)
#define P2P_EVENT_INDICATE ((GET_MIB(priv))->p2p_mib.p2p_event_indiate)
#endif
#define AMPDU_ENABLE ((GET_MIB(priv))->dot11nConfigEntry.dot11nAMPDU)
#define AMSDU_ENABLE ((GET_MIB(priv))->dot11nConfigEntry.dot11nAMSDU)
#define TSF_LESS(a, b) (((a - b) & 0x80000000) != 0)
#define TSF_DIFF(a, b) ((a >= b)? (a - b):(0xffffffff - b + a + 1))
#define GET_GROUP_MIC_KEYLEN ((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TMicKeyLen)
#define GET_GROUP_TKIP_MIC1_KEY ((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TMicKey1.skey)
#define GET_GROUP_TKIP_MIC2_KEY ((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TMicKey2.skey)
#define GET_UNICAST_MIC_KEYLEN (pstat->dot11KeyMapping.dot11EncryptKey.dot11TMicKeyLen)
#define GET_UNICAST_TKIP_MIC1_KEY (pstat->dot11KeyMapping.dot11EncryptKey.dot11TMicKey1.skey)
#define GET_UNICAST_TKIP_MIC2_KEY (pstat->dot11KeyMapping.dot11EncryptKey.dot11TMicKey2.skey)
#define GET_GROUP_ENCRYP_KEY ((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TTKey.skey)
#define GET_UNICAST_ENCRYP_KEY (pstat->dot11KeyMapping.dot11EncryptKey.dot11TTKey.skey)
#define GET_GROUP_ENCRYP_KEYLEN ((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TTKeyLen)
#define GET_UNICAST_ENCRYP_KEYLEN (pstat->dot11KeyMapping.dot11EncryptKey.dot11TTKeyLen)
#define GET_MY_HWADDR ((GET_MIB(priv))->dot11OperationEntry.hwaddr)
#define GET_GROUP_ENCRYP_PN (&((GET_MIB(priv))->dot11GroupKeysTable.dot11EncryptKey.dot11TXPN48))
#define GET_UNICAST_ENCRYP_PN (&(pstat->dot11KeyMapping.dot11EncryptKey.dot11TXPN48))
#define SET_SHORTSLOT_IN_BEACON_CAP \
do { \
if (priv->pBeaconCapability != NULL) \
*priv->pBeaconCapability |= cpu_to_le16(BIT(10)); \
} while(0)
#define RESET_SHORTSLOT_IN_BEACON_CAP \
do { \
if (priv->pBeaconCapability != NULL) \
*priv->pBeaconCapability &= ~cpu_to_le16(BIT(10)); \
} while(0)
#define IS_DRV_OPEN(priv) ((priv==NULL) ? 0 : ((priv->drv_state & DRV_STATE_OPEN) ? 1 : 0))
#if defined(UNIVERSAL_REPEATER) || defined(MBSSID)
#define GET_ROOT_PRIV(priv) (priv->proot_priv)
#define IS_ROOT_INTERFACE(priv) (GET_ROOT_PRIV(priv) ? 0 : 1)
#define GET_ROOT(priv) ((priv->proot_priv) ? priv->proot_priv : priv)
#else
#define GET_ROOT(priv) (priv)
#endif
#ifdef UNIVERSAL_REPEATER
#define GET_VXD_PRIV(priv) (priv->pvxd_priv)
#ifdef MBSSID
#define IS_VXD_INTERFACE(priv) ((GET_ROOT_PRIV(priv) ? 1 : 0) && (priv->vap_id < 0))
#else
#define IS_VXD_INTERFACE(priv) (GET_ROOT_PRIV(priv) ? 1 : 0)
#endif
#endif // UNIVERSAL_REPEATER
#ifdef MBSSID
#define IS_VAP_INTERFACE(priv) (!IS_ROOT_INTERFACE(priv) && (priv->vap_id >= 0))
#endif
#define MANAGE_QUE_NUM MGNT_QUEUE
#ifdef DFS
#define DFS_TO RTL_10MILISECONDS_TO_JIFFIES(priv->pmib->dot11DFSEntry.DFS_timeout)
#define NONE_OCCUPANCY_PERIOD RTL_10MILISECONDS_TO_JIFFIES(priv->pmib->dot11DFSEntry.NOP_timeout)
#endif
#ifdef TX_EARLY_MODE
#define GET_TX_EARLY_MODE (priv->pshare->rf_ft_var.em_enable)
#define GET_EM_SWQ_ENABLE (priv->pshare->em_waitq_on)
#define MAX_EM_QUE_NUM 40//32
#define EM_TP_UP_BOUND (80*1024*1024/8) /* 80Mbps */
#define EM_TP_LOW_BOUND (60*1024*1024/8) /* 60Mbps */
#define WAIT_TP_TIME 3 /* wait TP limit for this period in sec */
#endif
#ifdef __KERNEL__
#ifdef _DEBUG_RTL8192CD_
#define ASSERT(expr) \
if(!(expr)) { \
printk( "\033[33;41m%s:%d: assert(%s)\033[m\n", \
__FILE__,__LINE__,#expr); \
}
#else
#define ASSERT(expr)
#endif
#endif
#ifdef USE_OUT_SRC
#define ODMPTR (&(priv->pshare->_dmODM))
#endif
#ifdef RTL8190_SWGPIO_LED
/* =====================================================================
LED route configuration:
Currently, LOW 10 bits of this MIB are used.
+---+---+---+---+---+---+---+---+---+---+
| E1| H1| Route 1 | E0| H0| Route 0 |
+---+---+---+---+---+---+---+---+---+---+
E0 : Indicates if the field route 0 is valid or not.
E1 : Indicates if the field route 1 is valid or not.
H0 : Indicate the GPIO indicated by route 0 is Active HIGH or Active LOW. ( 0: Active LOW, 1: Active HIGH)
H1 : Indicate the GPIO indicated by route 1 is Active HIGH or Active LOW. ( 0: Active LOW, 1: Active HIGH)
Route0 : The GPIO number (0~6) which used by LED0. Only used when E0=0b'1
Route1 : The GPIO number (0~6) which used by LED1. Only used when E1=0b'1
Unused bits : reserved for further extension, must set to 0.
Currently RTL8185 AP driver supports LED0/LED1, and RTL8185 has 7 GPIOs in it.
So we need a routing-mechanism to decide what GPIO is used for LED0/LED1.
The bit-field pairs {E0, H0, Route0}, {E1, H0, Route1} is used to set it.
Ex.
One customer only use GPIO0 for LED1 (Active LOW) and don't need LED0,
he can set the route being:
----------------------------------
E0 = 0
E1 = 1
H0 = 0 ( Driver would ignore it )
H1 = 0 ( Driver would ignore it )
Route 0 = 0 ( Driver would ignore it )
Route 1 = 0 ( GPIO0 )
ledroute = 0x10 << 5; : LED1 -Active LOW, GPIO0
ledroute |= 0; : LED0 -Disabled
----------------------------------
===================================================================== */
#define SWLED_GPIORT_CNT 2 /* totally we have max 3 GPIOs reserved for LED route usage */
#define SWLED_GPIORT_RTBITMSK 0x07 /* bit mask of routing field = 0b'111 */
#define SWLED_GPIORT_HLMSK 0x08 /* bit mask of Active high/low field = 0b'1000 */
#define SWLED_GPIORT_ENABLEMSK 0x10 /* bit mask of enable filed = 0b'10000 */
#define SWLED_GPIORT_ITEMBITCNT 5 /* total bit count of each item */
#define SWLED_GPIORT_ITEMBITMASK ( SWLED_GPIORT_RTBITMSK |\
SWLED_GPIORT_HLMSK |\
SWLED_GPIORT_ENABLEMSK) /* bit mask of each item */
#define SWLED_GPIORT_ITEM(ledroute, x) (((ledroute) >> ((x)*SWLED_GPIORT_ITEMBITCNT)) & SWLED_GPIORT_ITEMBITMASK)
#endif // RTL8190_SWGPIO_LED
#ifdef SUPPORT_SNMP_MIB
#define SNMP_MIB(f) (priv->snmp_mib.f)
#define SNMP_MIB_ASSIGN(f,v) (SNMP_MIB(f)=v)
#define SNMP_MIB_COPY(f,v,len) (memcpy(&SNMP_MIB(f), v, len))
#define SNMP_MIB_INC(f,v) (SNMP_MIB(f)+=v)
#define SNMP_MIB_DEC(f,v) (SNMP_MIB(f)-=v)
#else
#define SNMP_MIB(f)
#define SNMP_MIB_ASSIGN(f,v)
#define SNMP_MIB_COPY(f,v,len)
#define SNMP_MIB_INC(f,v)
#define SNMP_MIB_DEC(f,v)
#endif //SUPPORT_SNMP_MIB
#ifdef USB_PKT_RATE_CTRL_SUPPORT
typedef unsigned int (*usb_pktCnt_fn)(void);
typedef unsigned int (*register_usb_pkt_cnt_fn)(void *);
extern register_usb_pkt_cnt_fn register_usb_hook;
#endif
#ifdef CONFIG_RTK_VLAN_SUPPORT
#if defined(CONFIG_RTK_VLAN_NEW_FEATURE)
extern int rx_vlan_process(struct net_device *dev, struct VlanConfig *info_ori, struct sk_buff *skb, struct sk_buff **new_skb);
extern int tx_vlan_process(struct net_device *dev, struct VlanConfig *info_ori, struct sk_buff *skb, int wlan_pri);
#else
extern int rx_vlan_process(struct net_device *dev, struct VlanConfig *info, struct sk_buff *skb);
extern int tx_vlan_process(struct net_device *dev, struct VlanConfig *info, struct sk_buff *skb, int wlan_pri);
#endif
#endif
//#ifdef SUPPORT_TX_MCAST2UNI
#define IP_MCAST_MAC(mac) ((mac[0]==0x01)&&(mac[1]==0x00)&&(mac[2]==0x5e))
#define IPV6_MCAST_MAC(mac) ((mac[0]==0x33)&&(mac[1]==0x33))
/*match is (1)ipv4 && (2)(IGMP control/management packet) */
#define IS_IGMP_PROTO(mac) ((mac[12]==0x08) && (mac[13]==0x00) && (mac[23]==0x02))
#define IS_ICMPV6_PROTO(mac) ( (mac[12]==0x86)&&(mac[13]==0xdd) && ((mac[20]==0x3a)||(mac[54]==0x3a)))
#define IS_MDNSV4_MAC(mac) ((mac[0]==0x01)&&(mac[1]==0x00)&&(mac[2]==0x5e)&& (mac[3]==0x00)&&(mac[4]==0x00)&&(mac[5]==0xFB)&&(mac[12]==0x08)&&(mac[13]==0x00))
#define IS_MDNSV6_MAC(mac) ((mac[0]==0x33)&&(mac[1]==0x33)&&(mac[2]==0x00)&& (mac[3]==0x00)&&(mac[4]==0x00)&&(mac[5]==0xFB)&&(mac[12]==0x86)&&(mac[13]==0xdd))
//#ifdef TX_SUPPORT_IPV6_MCAST2UNI
#define ICMPV6_MCAST_MAC(mac) ((mac[0]==0x33)&&(mac[1]==0x33)&&(mac[2]!=0xff))
#define ICMPV6_PROTO1A_VALN(mac) ( (mac[12+4]==0x86)&&(mac[13+4]==0xdd)&& (mac[54+4]==0x3a))
#define ICMPV6_PROTO1B_VALN(mac) ( (mac[12+4]==0x86)&&(mac[13+4]==0xdd)&& (mac[20+4]==0x3a))
#define ICMPV6_PROTO2X_VALN(mac) ( (mac[12+4]==0x86)&&(mac[13+4]==0xdd)&& (mac[54+4]==0x3a || mac[20+4]==0x3a))
#define ICMPV6_PROTO1A(mac) ( (mac[12]==0x86)&&(mac[13]==0xdd)&& (mac[54]==0x3a))
#define ICMPV6_PROTO1B(mac) ( (mac[12]==0x86)&&(mac[13]==0xdd)&& (mac[20]==0x3a))
#define ICMPV6_PROTO2X(mac) ( (mac[12]==0x86)&&(mac[13]==0xdd)&& (mac[54]==0x3a || mac[20]==0x3a))
//#endif
//#endif
#ifdef DOT11D
#define A_BAND_MAX_CHANNEL_NUMBER 24
#define COUNTRYNUMBER 100
typedef struct PerChannelSet {
unsigned char firstChannel;
unsigned char numberOfChannel;
unsigned char maxTxDbm;
} PER_CHANNEL_ENTRY;
typedef struct G_BAND_TABLE_ELEMENT {
unsigned char region;
PER_CHANNEL_ENTRY channel_set;
} G_BAND_TABLE_ELEMENT_T;
typedef struct A_BAND_TABLE_ELEMENT {
unsigned char region;
unsigned char setNumber;
PER_CHANNEL_ENTRY channel_set[A_BAND_MAX_CHANNEL_NUMBER];
} A_BAND_TABLE_ELEMENT_T;
typedef struct countryIE {
unsigned int countryNumber;
unsigned char countryA2[3];
unsigned char A_Band_Region; //if support 5G A band? ; 0 == no support ; aBandRegion == real region domain
unsigned char G_Band_Region; //if support 2.4G G band? ; 0 == no support ; bBandRegion == real region domain
unsigned char countryName[24];
} COUNTRY_IE_ELEMENT;
#endif
#if defined(TXREPORT) //&& (defined(CONFIG_RTL_92C_SUPPORT) || defined(CONFIG_RTL_92D_SUPPORT))
struct tx_rpt{
unsigned short txfail;
unsigned short txok;
unsigned short macid;
unsigned char initil_tx_rate; //add for 8812
};
#endif
struct _device_info_ {
int type;
unsigned long conf_addr;
unsigned long base_addr;
int irq;
struct rtl8192cd_priv *priv;
};
#define HIDE_AP_FOUND 1
#define HIDE_AP_FOUND_DO_ACTIVE_SSAN 2
static __inline__ int is_passive_channel(int domain, int chan)
{
if ((domain == DOMAIN_GLOBAL || domain == DOMAIN_WORLD_WIDE) &&
(chan == 12 || chan == 13 || chan == 14))
return 1;
return 0;
}
#ifdef GBWC
#define GBWC_MODE_DISABLE 0
#define GBWC_MODE_LIMIT_MAC_INNER 1 // limit bw by mac address
#define GBWC_MODE_LIMIT_MAC_OUTTER 2 // limit bw by excluding the mac
#define GBWC_MODE_LIMIT_IF_TX 3 // limit bw by interface tx
#define GBWC_MODE_LIMIT_IF_RX 4 // limit bw by interface rx
#define GBWC_MODE_LIMIT_IF_TRX 5 // limit bw by interface tx/rx
#endif
// andrew, define a compatible data macro
#if defined(LINUX_2_6_22_)
#define SKB_MAC_HEADER(s) skb_mac_header(s)
#define SKB_IP_HEADER(s) (struct iphdr *)(skb_mac_header(s) + ETH_HLEN);
#else // older 2.6 header
#define SKB_MAC_HEADER(s) (s)->mac.raw
#define SKB_IP_HEADER(s) (struct iphdr *)((s)->mac.raw + ETH_HLEN);
#endif
#ifdef BEAMFORMING_SUPPORT
#define IsCtrlNDPA(pdu) ( ((EF1Byte(pdu[0]) & 0xFC) == Type_NDPA) ? TRUE : FALSE)
#define IsMgntActionNoAck(pdu) ( ((EF1Byte(pdu[0]) & 0xFC) == Type_Action_No_Ack ) ? TRUE : FALSE)
#define GET_80211_HDR_ORDER(_hdr) LE_BITS_TO_2BYTE(_hdr, 15, 1)
#endif
#ifdef __ECOS
extern struct _device_info_ wlan_device[];
#endif
#ifdef CONFIG_WLAN_HAL
#include "WlanHAL/Output/HalLib.h"
#endif //CONFIG_WLAN_HAL
#endif // _8192CD_H_
|