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
|
/* $OpenBSD: if_ray.c,v 1.48 2011/07/07 19:13:29 henning Exp $ */
/* $NetBSD: if_ray.c,v 1.21 2000/07/05 02:35:54 onoe Exp $ */
/*
* Copyright (c) 2000 Christian E. Hopps
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the author nor the names of any co-contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* Driver for the Raylink (Raytheon) / WebGear IEEE 802.11 (FH) WLANs
*
* 2-way communication with the card is through command structures
* stored in shared ram. To communicate with the card a free
* command structure is filled in and then the card is interrupted.
* The card does the same with a different set of command structures.
* Only one command can be processed at a time. This is indicated
* by the interrupt having not been cleared since it was last set.
* The bit is cleared when the command has been processed (although
* it may not yet be complete).
*
* This driver was only tested with the Aviator 2.4 wireless
* The author didn't have the pro version or raylink to test
* with.
*
* N.B. Its unclear yet whether the Aviator 2.4 cards interoperate
* with other 802.11 FH 2Mbps cards, since this was also untested.
* Given the nature of the buggy build 4 firmware there may be problems.
*/
/* Authentication added by Steve Weiss <srw@alum.mit.edu> based on advice
* received by Corey Thomas, author of the Linux driver for this device.
* Authentication currently limited to adhoc networks, and was added to
* support a requirement of the newest windows drivers, so that
* interoperability the windows will remain possible.
*
* Tested with Win98 using Aviator 2.4 Pro cards, firmware 5.63,
* but no access points for infrastructure. (July 13, 2000 -srw)
*/
#include "bpfilter.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/timeout.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#include <net/if_llc.h>
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
#include <net80211/ieee80211.h>
#include <net80211/ieee80211_ioctl.h>
#if NBPFILTER > 0
#include <net/bpf.h>
#endif
#include <machine/cpu.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <dev/pcmcia/pcmciareg.h>
#include <dev/pcmcia/pcmciavar.h>
#include <dev/pcmcia/pcmciadevs.h>
#include <dev/pcmcia/if_rayreg.h>
#ifndef PCMCIA_WIDTH_MEM8
#define PCMCIA_WIDTH_MEM8 0
#endif
#ifndef offsetof
#define offsetof(type, member) ((size_t)(&((type *)0)->member))
#endif
/*#define RAY_DEBUG*/
#ifndef RAY_PID_COUNTRY_CODE_DEFAULT
#define RAY_PID_COUNTRY_CODE_DEFAULT RAY_PID_COUNTRY_CODE_USA
#endif
/* amount of time to poll for non-return of certain command status */
#ifndef RAY_CHECK_CCS_TIMEOUT
#define RAY_CHECK_CCS_TIMEOUT (hz / 2)
#endif
/* amount of time to consider start/join failed */
#ifndef RAY_START_TIMEOUT
#define RAY_START_TIMEOUT (10 * hz)
#endif
/* reset reschedule timeout */
#ifndef RAY_RESET_TIMEOUT
#define RAY_RESET_TIMEOUT (10 * hz)
#endif
/*
* if a command cannot execute because device is busy try later
* this is also done after interrupts and other command timeouts
* so we can use a large value safely.
*/
#ifndef RAY_CHECK_SCHED_TIMEOUT
#define RAY_CHECK_SCHED_TIMEOUT (hz) /* XXX 5 */
#endif
#ifndef RAY_MODE_DEFAULT
#define RAY_MODE_DEFAULT SC_MODE_ADHOC
#endif
#ifndef RAY_DEF_NWID
#define RAY_DEF_NWID "NETWORK_NAME"
#endif
/*
* The number of times the HW is reset in 30s before disabling.
* This is needed because resets take ~2s and currently pcmcia
* spins for the reset.
*/
#ifndef RAY_MAX_RESETS
#define RAY_MAX_RESETS 10
#endif
/*
* Types
*/
struct ray_softc {
struct device sc_dev;
struct arpcom sc_ec;
struct ifmedia sc_media;
struct pcmcia_function *sc_pf;
struct pcmcia_mem_handle sc_mem;
int sc_window;
void *sc_ih;
int sc_flags;
#define RAY_FLAGS_RESUMEINIT 0x01
#define RAY_FLAGS_ATTACHED 0x02
int sc_resetloop;
struct timeout sc_check_ccs_ch;
struct timeout sc_check_scheduled_ch;
struct timeout sc_reset_resetloop_ch;
struct timeout sc_disable_ch;
struct timeout sc_start_join_timo_ch;
#define callout_stop timeout_del
#define callout_reset(t,n,f,a) timeout_add((t), (n))
struct ray_ecf_startup sc_ecf_startup;
struct ray_startup_params_head sc_startup;
union {
struct ray_startup_params_tail_5 u_params_5;
struct ray_startup_params_tail_4 u_params_4;
} sc_u;
u_int8_t sc_ccsinuse[64]; /* ccs in use -- not for tx */
u_int sc_txfree; /* a free count for efficiency */
u_int8_t sc_bssid[ETHER_ADDR_LEN]; /* current net values */
u_int8_t sc_authid[ETHER_ADDR_LEN]; /* id of authenticating station */
struct ieee80211_nwid sc_cnwid; /* last nwid */
struct ieee80211_nwid sc_dnwid; /* desired nwid */
u_int8_t sc_omode; /* old operating mode SC_MODE_xx */
u_int8_t sc_mode; /* current operating mode SC_MODE_xx */
u_int8_t sc_countrycode; /* current country code */
u_int8_t sc_dcountrycode; /* desired country code */
int sc_havenet; /* true if we have acquired a network */
bus_size_t sc_txpad; /* tib size plus "phy" size */
u_int8_t sc_deftxrate; /* default transfer rate */
u_int8_t sc_encrypt;
u_int8_t sc_authstate; /* authentication state */
int sc_promisc; /* current set value */
int sc_running; /* things we are doing */
int sc_scheduled; /* things we need to do */
int sc_timoneed; /* set if timeout is sched */
int sc_timocheck; /* set if timeout is sched */
bus_size_t sc_startccs; /* ccs of start/join */
u_int sc_startcmd; /* cmd (start | join) */
int sc_checkcounters;
u_int64_t sc_rxoverflow;
u_int64_t sc_rxcksum;
u_int64_t sc_rxhcksum;
u_int8_t sc_rxnoise;
/* use to return values to the user */
struct ray_param_req *sc_repreq;
struct ray_param_req *sc_updreq;
#ifdef RAY_DO_SIGLEV
struct ray_siglev sc_siglevs[RAY_NSIGLEVRECS];
#endif
};
#define sc_memt sc_mem.memt
#define sc_memh sc_mem.memh
#define sc_ccrt sc_pf->pf_ccrt
#define sc_ccrh sc_pf->pf_ccrh
#define sc_ccroff sc_pf->pf_ccr_offset
#define sc_startup_4 sc_u.u_params_4
#define sc_startup_5 sc_u.u_params_5
#define sc_version sc_ecf_startup.e_fw_build_string
#define sc_tibsize sc_ecf_startup.e_tib_size
#define sc_if sc_ec.ac_if
#define ec_multicnt ac_multicnt
#define memmove memcpy /* XXX */
#define sc_xname sc_dev.dv_xname
/* modes of operation */
#define SC_MODE_ADHOC 0 /* ad-hoc mode */
#define SC_MODE_INFRA 1 /* infrastructure mode */
/* commands -- priority given to LSB */
#define SCP_FIRST 0x0001
#define SCP_UPDATESUBCMD 0x0001
#define SCP_STARTASSOC 0x0002
#define SCP_REPORTPARAMS 0x0004
#define SCP_IFSTART 0x0008
/* update sub commands -- issues are serialized priority to LSB */
#define SCP_UPD_FIRST 0x0100
#define SCP_UPD_STARTUP 0x0100
#define SCP_UPD_STARTJOIN 0x0200
#define SCP_UPD_PROMISC 0x0400
#define SCP_UPD_MCAST 0x0800
#define SCP_UPD_UPDATEPARAMS 0x1000
#define SCP_UPD_SHIFT 8
#define SCP_UPD_MASK 0xff00
/* these command (a subset of the update set) require timeout checking */
#define SCP_TIMOCHECK_CMD_MASK \
(SCP_UPD_UPDATEPARAMS | SCP_UPD_STARTUP | SCP_UPD_MCAST | \
SCP_UPD_PROMISC)
#define IFM_ADHOC \
IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_FH2, IFM_IEEE80211_ADHOC, 0)
#define IFM_INFRA \
IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_FH2, 0, 0)
typedef void (*ray_cmd_func_t)(struct ray_softc *);
#define SC_BUILD_5 0x5
#define SC_BUILD_4 0x55
/* values for sc_authstate */
#define RAY_AUTH_UNAUTH (0)
#define RAY_AUTH_WAITING (1)
#define RAY_AUTH_AUTH (2)
#define RAY_AUTH_NEEDED (3)
#define OPEN_AUTH_REQUEST (1)
#define OPEN_AUTH_RESPONSE (2)
#define BROADCAST_DEAUTH (0xc0)
/* prototypes */
int ray_alloc_ccs(struct ray_softc *, bus_size_t *, u_int, u_int);
bus_size_t ray_fill_in_tx_ccs(struct ray_softc *, size_t, u_int, u_int);
void ray_attach(struct device *, struct device *, void *);
ray_cmd_func_t ray_ccs_done(struct ray_softc *, bus_size_t);
void ray_check_ccs(void *);
void ray_check_scheduled(void *);
void ray_cmd_cancel(struct ray_softc *, int);
void ray_cmd_schedule(struct ray_softc *, int);
void ray_cmd_ran(struct ray_softc *, int);
int ray_cmd_is_running(struct ray_softc *, int);
int ray_cmd_is_scheduled(struct ray_softc *, int);
void ray_cmd_done(struct ray_softc *, int);
int ray_detach(struct device *, int);
int ray_activate(struct device *, int);
void ray_disable(struct ray_softc *);
void ray_download_params(struct ray_softc *);
int ray_enable(struct ray_softc *);
u_int ray_find_free_tx_ccs(struct ray_softc *, u_int);
u_int8_t ray_free_ccs(struct ray_softc *, bus_size_t);
void ray_free_ccs_chain(struct ray_softc *, u_int);
void ray_if_start(struct ifnet *);
int ray_init(struct ray_softc *);
int ray_intr(void *);
void ray_intr_start(struct ray_softc *);
int ray_ioctl(struct ifnet *, u_long, caddr_t);
int ray_issue_cmd(struct ray_softc *, bus_size_t, u_int);
int ray_match(struct device *, struct cfdata *, void *);
int ray_media_change(struct ifnet *);
void ray_media_status(struct ifnet *, struct ifmediareq *);
void ray_power(int, void *);
ray_cmd_func_t ray_rccs_intr(struct ray_softc *, bus_size_t);
void ray_recv(struct ray_softc *, bus_size_t);
void ray_recv_auth(struct ray_softc *,struct ieee80211_frame*);
void ray_report_params(struct ray_softc *);
void ray_reset(struct ray_softc *);
void ray_reset_resetloop(void *);
int ray_send_auth(struct ray_softc *, u_int8_t *, u_int8_t);
void ray_set_pending(struct ray_softc *, u_int);
int ray_simple_cmd(struct ray_softc *, u_int, u_int);
void ray_start_assoc(struct ray_softc *);
void ray_start_join_net(struct ray_softc *);
ray_cmd_func_t ray_start_join_net_done(struct ray_softc *,
u_int, bus_size_t, u_int);
void ray_start_join_timo(void *);
void ray_stop(struct ray_softc *);
void ray_update_error_counters(struct ray_softc *);
void ray_update_mcast(struct ray_softc *);
ray_cmd_func_t ray_update_params_done(struct ray_softc *,
bus_size_t, u_int);
void ray_update_params(struct ray_softc *);
void ray_update_promisc(struct ray_softc *);
void ray_update_subcmd(struct ray_softc *);
int ray_user_report_params(struct ray_softc *,
struct ray_param_req *);
int ray_user_update_params(struct ray_softc *,
struct ray_param_req *);
#define ray_read_region(sc,off,p,c) \
bus_space_read_region_1((sc)->sc_memt, (sc)->sc_memh, (off), \
(u_int8_t *)(p), (c))
#define ray_write_region(sc,off,p,c) \
bus_space_write_region_1((sc)->sc_memt, (sc)->sc_memh, (off), \
(u_int8_t *)(p), (c))
#ifdef RAY_DO_SIGLEV
void ray_update_siglev(struct ray_softc *, u_int8_t *, u_int8_t);
#endif
#ifdef RAY_DEBUG
int ray_debug = 0;
int ray_debug_xmit_sum = 0;
int ray_debug_dump_desc = 0;
int ray_debug_dump_rx = 0;
int ray_debug_dump_tx = 0;
struct timeval rtv, tv1, tv2, *ttp, *ltp;
#define RAY_DPRINTF(x) do { if (ray_debug) { \
struct timeval *tmp; \
microtime(ttp); \
timersub(ttp, ltp, &rtv); \
tmp = ttp; ttp = ltp; ltp = tmp; \
printf("%ld:%ld %ld:%06ld: ", ttp->tv_sec, ttp->tv_usec, rtv.tv_sec, rtv.tv_usec); \
printf x ; \
} } while (0)
#define RAY_DPRINTF_XMIT(x) do { if (ray_debug_xmit_sum) { \
struct timeval *tmp; \
microtime(ttp); \
timersub(ttp, ltp, &rtv); \
tmp = ttp; ttp = ltp; ltp = tmp; \
printf("%ld:%ld %ld:%06ld: ", ttp->tv_sec, ttp->tv_usec, rtv.tv_sec, rtv.tv_usec); \
printf x ; \
} } while (0)
#define HEXDF_NOCOMPRESS 0x1
#define HEXDF_NOOFFSET 0x2
#define HEXDF_NOASCII 0x4
void hexdump(const u_int8_t *, int, int, int, int);
void ray_dump_mbuf(struct ray_softc *, struct mbuf *);
#else /* !RAY_DEBUG */
#define RAY_DPRINTF(x)
#define RAY_DPRINTF_XMIT(x)
#endif /* !RAY_DEBUG */
/*
* macros for writing to various regions in the mapped memory space
*/
/* use already mapped ccrt */
#define REG_WRITE(sc, off, val) \
bus_space_write_1((sc)->sc_ccrt, (sc)->sc_ccrh, \
((sc)->sc_ccroff + (off)), (val))
#define REG_READ(sc, off) \
bus_space_read_1((sc)->sc_ccrt, (sc)->sc_ccrh, \
((sc)->sc_ccroff + (off)))
#define SRAM_READ_1(sc, off) \
((u_int8_t)bus_space_read_1((sc)->sc_memt, (sc)->sc_memh, (off)))
#define SRAM_READ_FIELD_1(sc, off, s, f) \
SRAM_READ_1(sc, (off) + offsetof(struct s, f))
#define SRAM_READ_FIELD_2(sc, off, s, f) \
((((u_int16_t)SRAM_READ_1(sc, (off) + offsetof(struct s, f)) << 8) \
|(SRAM_READ_1(sc, (off) + 1 + offsetof(struct s, f)))))
#define SRAM_READ_FIELD_N(sc, off, s, f, p, n) \
ray_read_region(sc, (off) + offsetof(struct s, f), (p), (n))
#define SRAM_WRITE_1(sc, off, val) \
bus_space_write_1((sc)->sc_memt, (sc)->sc_memh, (off), (val))
#define SRAM_WRITE_FIELD_1(sc, off, s, f, v) \
SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (v))
#define SRAM_WRITE_FIELD_2(sc, off, s, f, v) do { \
SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (((v) >> 8 ) & 0xff)); \
SRAM_WRITE_1(sc, (off) + 1 + offsetof(struct s, f), ((v) & 0xff)); \
} while (0)
#define SRAM_WRITE_FIELD_N(sc, off, s, f, p, n) \
ray_write_region(sc, (off) + offsetof(struct s, f), (p), (n))
/*
* Macros of general usefulness
*/
#define M_PULLUP(m, s) do { \
if ((m)->m_len < (s)) \
(m) = m_pullup((m), (s)); \
} while (0)
#define RAY_ECF_READY(sc) (!(REG_READ(sc, RAY_ECFIR) & RAY_ECSIR_IRQ))
#define RAY_ECF_START_CMD(sc) REG_WRITE(sc, RAY_ECFIR, RAY_ECSIR_IRQ)
#define RAY_GET_INDEX(ccs) (((ccs) - RAY_CCS_BASE) / RAY_CCS_SIZE)
#define RAY_GET_CCS(i) (RAY_CCS_BASE + (i) * RAY_CCS_SIZE)
/*
* Globals
*/
static const u_int8_t llc_snapid[6] = { LLC_SNAP_LSAP, LLC_SNAP_LSAP, LLC_UI };
/* based on bit index in SCP_xx */
static const ray_cmd_func_t ray_cmdtab[] = {
ray_update_subcmd, /* SCP_UPDATESUBCMD */
ray_start_assoc, /* SCP_STARTASSOC */
ray_report_params, /* SCP_REPORTPARAMS */
ray_intr_start /* SCP_IFSTART */
};
static const int ray_ncmdtab = sizeof(ray_cmdtab) / sizeof(*ray_cmdtab);
static const ray_cmd_func_t ray_subcmdtab[] = {
ray_download_params, /* SCP_UPD_STARTUP */
ray_start_join_net, /* SCP_UPD_STARTJOIN */
ray_update_promisc, /* SCP_UPD_PROMISC */
ray_update_mcast, /* SCP_UPD_MCAST */
ray_update_params /* SCP_UPD_UPDATEPARAMS */
};
static const int ray_nsubcmdtab = sizeof(ray_subcmdtab) / sizeof(*ray_subcmdtab);
struct cfdriver ray_cd = {
NULL, "ray", DV_IFNET
};
/* autoconf information */
struct cfattach ray_ca = {
sizeof(struct ray_softc), (cfmatch_t)ray_match, ray_attach, ray_detach,
ray_activate
};
/*
* Config Routines
*/
int
ray_match(struct device *parent, struct cfdata *match, void *aux)
{
struct pcmcia_attach_args *pa = aux;
#ifdef RAY_DEBUG
if (!ltp) {
/* initialize timestamp XXX */
ttp = &tv1;
ltp = &tv2;
microtime(ltp);
}
#endif
return (pa->manufacturer == PCMCIA_VENDOR_RAYTHEON
&& pa->product == PCMCIA_PRODUCT_RAYTHEON_WLAN);
}
void
ray_attach(struct device *parent, struct device *self, void *aux)
{
struct ray_ecf_startup *ep;
struct pcmcia_attach_args *pa;
struct ray_softc *sc;
struct ifnet *ifp;
bus_size_t memoff;
pa = aux;
sc = (struct ray_softc *)self;
sc->sc_pf = pa->pf;
ifp = &sc->sc_if;
sc->sc_window = -1;
printf("\n");
/* enable the card */
pcmcia_function_init(sc->sc_pf, SIMPLEQ_FIRST(&sc->sc_pf->cfe_head));
if (pcmcia_function_enable(sc->sc_pf)) {
printf(": failed to enable the card");
return;
}
/*
* map in the memory
*/
if (pcmcia_mem_alloc(sc->sc_pf, RAY_SRAM_MEM_SIZE, &sc->sc_mem)) {
printf(": can\'t alloc shared memory\n");
goto fail;
}
if (pcmcia_mem_map(sc->sc_pf, PCMCIA_WIDTH_MEM8|PCMCIA_MEM_COMMON,
RAY_SRAM_MEM_BASE, RAY_SRAM_MEM_SIZE, &sc->sc_mem, &memoff,
&sc->sc_window)) {
printf(": can\'t map shared memory\n");
pcmcia_mem_free(sc->sc_pf, &sc->sc_mem);
goto fail;
}
/* get startup results */
ep = &sc->sc_ecf_startup;
ray_read_region(sc, RAY_ECF_TO_HOST_BASE, ep,
sizeof(sc->sc_ecf_startup));
/* check to see that card initialized properly */
if (ep->e_status != RAY_ECFS_CARD_OK) {
printf(": card failed self test: status %d\n",
sc->sc_ecf_startup.e_status);
goto fail;
}
/* check firmware version */
if (sc->sc_version != SC_BUILD_4 && sc->sc_version != SC_BUILD_5) {
printf(": unsupported firmware version %d\n",
ep->e_fw_build_string);
goto fail;
}
/* clear any interrupt if present */
REG_WRITE(sc, RAY_HCSIR, 0);
/*
* set the parameters that will survive stop/init
*/
memset(&sc->sc_dnwid, 0, sizeof(sc->sc_dnwid));
sc->sc_dnwid.i_len = strlen(RAY_DEF_NWID);
if (sc->sc_dnwid.i_len > IEEE80211_NWID_LEN)
sc->sc_dnwid.i_len = IEEE80211_NWID_LEN;
if (sc->sc_dnwid.i_len > 0)
memcpy(sc->sc_dnwid.i_nwid, RAY_DEF_NWID, sc->sc_dnwid.i_len);
memcpy(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid));
sc->sc_omode = sc->sc_mode = RAY_MODE_DEFAULT;
sc->sc_countrycode = sc->sc_dcountrycode =
RAY_PID_COUNTRY_CODE_DEFAULT;
sc->sc_flags &= ~RAY_FLAGS_RESUMEINIT;
timeout_set(&sc->sc_check_ccs_ch, ray_check_ccs, sc);
timeout_set(&sc->sc_check_scheduled_ch, ray_check_scheduled, sc);
timeout_set(&sc->sc_reset_resetloop_ch, ray_reset_resetloop, sc);
timeout_set(&sc->sc_disable_ch, (void (*)(void *))ray_disable, sc);
timeout_set(&sc->sc_start_join_timo_ch, ray_start_join_timo, sc);
/*
* attach the interface
*/
/* The version isn't the most accurate way, but it's easy. */
printf("%s: firmware version %d, ", sc->sc_dev.dv_xname,
sc->sc_version);
#ifdef RAY_DEBUG
if (sc->sc_version != SC_BUILD_4)
printf("supported rates %0x:%0x:%0x:%0x:%0x:%0x:%0x:%0x, ",
ep->e_rates[0], ep->e_rates[1],
ep->e_rates[2], ep->e_rates[3], ep->e_rates[4],
ep->e_rates[5], ep->e_rates[6], ep->e_rates[7]);
#endif
printf("address %s\n", ether_sprintf(ep->e_station_addr));
memcpy(ifp->if_xname, sc->sc_xname, IFNAMSIZ);
ifp->if_softc = sc;
ifp->if_start = ray_if_start;
ifp->if_ioctl = ray_ioctl;
ifp->if_mtu = ETHERMTU;
ifp->if_flags = IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST;
IFQ_SET_READY(&ifp->if_snd);
if_attach(ifp);
memcpy(&sc->sc_ec.ac_enaddr, ep->e_station_addr, ETHER_ADDR_LEN);
ether_ifattach(ifp);
/* need enough space for ieee80211_header + (snap or e2) */
ifp->if_hdrlen =
sizeof(struct ieee80211_frame) + sizeof(struct ether_header);
ifmedia_init(&sc->sc_media, 0, ray_media_change, ray_media_status);
ifmedia_add(&sc->sc_media, IFM_ADHOC, 0, 0);
ifmedia_add(&sc->sc_media, IFM_INFRA, 0, 0);
if (sc->sc_mode == SC_MODE_ADHOC)
ifmedia_set(&sc->sc_media, IFM_ADHOC);
else
ifmedia_set(&sc->sc_media, IFM_INFRA);
/* disable the card */
pcmcia_function_disable(sc->sc_pf);
/* The attach is successful. */
sc->sc_flags |= RAY_FLAGS_ATTACHED;
return;
fail:
/* disable the card */
pcmcia_function_disable(sc->sc_pf);
/* free the alloc/map */
if (sc->sc_window != -1) {
pcmcia_mem_unmap(sc->sc_pf, sc->sc_window);
pcmcia_mem_free(sc->sc_pf, &sc->sc_mem);
}
}
int
ray_activate(struct device *dev, int act)
{
struct ray_softc *sc = (struct ray_softc *)dev;
struct ifnet *ifp = &sc->sc_if;
switch (act) {
case DVACT_DEACTIVATE:
if (ifp->if_flags & IFF_RUNNING)
ray_disable(sc);
if (sc->sc_ih)
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
sc->sc_ih = NULL;
pcmcia_function_disable(sc->sc_pf);
break;
}
return (0);
}
int
ray_detach(struct device *self, int flags)
{
struct ray_softc *sc;
struct ifnet *ifp;
sc = (struct ray_softc *)self;
ifp = &sc->sc_if;
RAY_DPRINTF(("%s: detach\n", sc->sc_xname));
/* Succeed now if there is no work to do. */
if ((sc->sc_flags & RAY_FLAGS_ATTACHED) == 0)
return (0);
if (ifp->if_flags & IFF_RUNNING)
ray_disable(sc);
/* give back the memory */
if (sc->sc_window != -1) {
pcmcia_mem_unmap(sc->sc_pf, sc->sc_window);
pcmcia_mem_free(sc->sc_pf, &sc->sc_mem);
}
ifmedia_delete_instance(&sc->sc_media, IFM_INST_ANY);
ether_ifdetach(ifp);
if_detach(ifp);
return (0);
}
/*
* start the card running
*/
int
ray_enable(struct ray_softc *sc)
{
int error;
RAY_DPRINTF(("%s: enable\n", sc->sc_xname));
if ((error = ray_init(sc)) == 0) {
sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_NET,
ray_intr, sc, sc->sc_dev.dv_xname);
if (sc->sc_ih == NULL) {
ray_stop(sc);
return (EIO);
}
}
return (error);
}
/*
* stop the card running
*/
void
ray_disable(struct ray_softc *sc)
{
RAY_DPRINTF(("%s: disable\n", sc->sc_xname));
if ((sc->sc_if.if_flags & IFF_RUNNING))
ray_stop(sc);
sc->sc_resetloop = 0;
sc->sc_rxoverflow = 0;
sc->sc_rxcksum = 0;
sc->sc_rxhcksum = 0;
sc->sc_rxnoise = 0;
if (sc->sc_ih)
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
sc->sc_ih = NULL;
}
/*
* start the card running
*/
int
ray_init(struct ray_softc *sc)
{
struct ray_ecf_startup *ep;
bus_size_t ccs;
int i;
RAY_DPRINTF(("%s: init\n", sc->sc_xname));
if ((sc->sc_if.if_flags & IFF_RUNNING))
ray_stop(sc);
if (pcmcia_function_enable(sc->sc_pf))
return (EIO);
RAY_DPRINTF(("%s: init post-enable\n", sc->sc_xname));
/* reset some values */
memset(sc->sc_ccsinuse, 0, sizeof(sc->sc_ccsinuse));
sc->sc_havenet = 0;
memset(sc->sc_bssid, 0, sizeof(sc->sc_bssid));
sc->sc_deftxrate = 0;
sc->sc_encrypt = 0;
sc->sc_txpad = 0;
sc->sc_promisc = 0;
sc->sc_scheduled = 0;
sc->sc_running = 0;
sc->sc_txfree = RAY_CCS_NTX;
sc->sc_checkcounters = 0;
sc->sc_flags &= RAY_FLAGS_RESUMEINIT;
sc->sc_authstate = RAY_AUTH_UNAUTH;
/* get startup results */
ep = &sc->sc_ecf_startup;
ray_read_region(sc, RAY_ECF_TO_HOST_BASE, ep,
sizeof(sc->sc_ecf_startup));
/* check to see that card initialized properly */
if (ep->e_status != RAY_ECFS_CARD_OK) {
pcmcia_function_disable(sc->sc_pf);
printf("%s: card failed self test: status %d\n",
sc->sc_xname, sc->sc_ecf_startup.e_status);
return (EIO);
}
/* fixup tib size to be correct */
if (sc->sc_version == SC_BUILD_4 && sc->sc_tibsize == 0x55)
sc->sc_tibsize = 32;
sc->sc_txpad = sc->sc_tibsize;
/* set all ccs to be free */
ccs = RAY_GET_CCS(0);
for (i = 0; i < RAY_CCS_LAST; ccs += RAY_CCS_SIZE, i++)
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
RAY_CCS_STATUS_FREE);
/* clear the interrupt if present */
REG_WRITE(sc, RAY_HCSIR, 0);
/* we are now up and running -- and are busy until download is cplt */
sc->sc_if.if_flags |= IFF_RUNNING | IFF_OACTIVE;
/* set this now so it gets set in the download */
sc->sc_promisc = !!(sc->sc_if.if_flags & (IFF_PROMISC|IFF_ALLMULTI));
/* call after we mark ourselves running */
ray_download_params(sc);
return (0);
}
/*
* stop the card running
*/
void
ray_stop(struct ray_softc *sc)
{
RAY_DPRINTF(("%s: stop\n", sc->sc_xname));
callout_stop(&sc->sc_check_ccs_ch);
sc->sc_timocheck = 0;
callout_stop(&sc->sc_check_scheduled_ch);
sc->sc_timoneed = 0;
if (sc->sc_repreq) {
sc->sc_repreq->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
wakeup(ray_report_params);
}
if (sc->sc_updreq) {
sc->sc_updreq->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
wakeup(ray_update_params);
}
sc->sc_if.if_flags &= ~IFF_RUNNING;
pcmcia_function_disable(sc->sc_pf);
}
/*
* reset the card
*/
void
ray_reset(struct ray_softc *sc)
{
if (++sc->sc_resetloop >= RAY_MAX_RESETS) {
if (sc->sc_resetloop == RAY_MAX_RESETS) {
printf("%s: unable to correct, disabling\n",
sc->sc_xname);
callout_stop(&sc->sc_reset_resetloop_ch);
callout_reset(&sc->sc_disable_ch, 1,
(void (*)(void *))ray_disable, sc);
}
} else {
printf("%s: unexpected failure resetting hw [%d more]\n",
sc->sc_xname, RAY_MAX_RESETS - sc->sc_resetloop);
callout_stop(&sc->sc_reset_resetloop_ch);
ray_init(sc);
callout_reset(&sc->sc_reset_resetloop_ch, RAY_RESET_TIMEOUT,
ray_reset_resetloop, sc);
}
}
/*
* return resetloop to zero (enough time has expired to allow user to
* disable a whacked interface) the main reason for all this nonesense
* is that resets take ~2 seconds and currently the pcmcia code spins
* on these resets
*/
void
ray_reset_resetloop(void *arg)
{
struct ray_softc *sc;
sc = arg;
sc->sc_resetloop = 0;
}
void
ray_power(int why, void *arg)
{
#if 0
struct ray_softc *sc;
/* can't do this until power hooks are called from thread */
sc = arg;
switch (why) {
case DVACT_RESUME:
if ((sc->sc_flags & RAY_FLAGS_RESUMEINIT))
ray_init(sc);
break;
case DVACT_SUSPEND:
if ((sc->sc_if.if_flags & IFF_RUNNING)) {
ray_stop(sc);
sc->sc_flags |= RAY_FLAGS_RESUMEINIT;
}
break;
default:
break;
}
#endif
}
int
ray_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{
struct ieee80211_nwid nwid;
struct ray_param_req pr;
struct ray_softc *sc;
struct ifreq *ifr;
struct ifaddr *ifa;
int error = 0, error2, s, i;
sc = ifp->if_softc;
ifr = (struct ifreq *)data;
s = splnet();
RAY_DPRINTF(("%s: ioctl: cmd 0x%lx data 0x%lx\n", ifp->if_xname,
cmd, (long)data));
switch (cmd) {
case SIOCSIFADDR:
RAY_DPRINTF(("%s: ioctl: cmd SIOCSIFADDR\n", ifp->if_xname));
if ((ifp->if_flags & IFF_RUNNING) == 0)
if ((error = ray_enable(sc)))
break;
ifp->if_flags |= IFF_UP;
ifa = (struct ifaddr *)data;
switch (ifa->ifa_addr->sa_family) {
#ifdef INET
case AF_INET:
arp_ifinit(&sc->sc_ec, ifa);
break;
#endif
default:
break;
}
break;
case SIOCSIFFLAGS:
RAY_DPRINTF(("%s: ioctl: cmd SIOCSIFFLAGS\n", ifp->if_xname));
if (ifp->if_flags & IFF_UP) {
if ((ifp->if_flags & IFF_RUNNING) == 0) {
if ((error = ray_enable(sc)))
break;
} else
ray_update_promisc(sc);
} else if (ifp->if_flags & IFF_RUNNING)
ray_disable(sc);
break;
case SIOCSIFMEDIA:
RAY_DPRINTF(("%s: ioctl: cmd SIOCSIFMEDIA\n", ifp->if_xname));
case SIOCGIFMEDIA:
if (cmd == SIOCGIFMEDIA)
RAY_DPRINTF(("%s: ioctl: cmd SIOCGIFMEDIA\n",
ifp->if_xname));
error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
break;
case SIOCSRAYPARAM:
if ((error = suser(curproc, 0)) != 0)
break;
RAY_DPRINTF(("%s: ioctl: cmd SIOCSRAYPARAM\n", ifp->if_xname));
if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
break;
/* disallow certain command that have another interface */
switch (pr.r_paramid) {
case RAY_PID_NET_TYPE: /* through media opt */
case RAY_PID_AP_STATUS: /* unsupported */
case RAY_PID_SSID: /* use SIOC80211[GS]NWID */
case RAY_PID_MAC_ADDR: /* XXX need interface? */
case RAY_PID_PROMISC: /* bpf */
error = EINVAL;
break;
}
error = ray_user_update_params(sc, &pr);
error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
error = error2 ? error2 : error;
break;
case SIOCGRAYPARAM:
RAY_DPRINTF(("%s: ioctl: cmd SIOCGRAYPARAM\n", ifp->if_xname));
if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
break;
error = ray_user_report_params(sc, &pr);
error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
error = error2 ? error2 : error;
break;
case SIOCS80211NWID:
if ((error = suser(curproc, 0)) != 0)
break;
RAY_DPRINTF(("%s: ioctl: cmd SIOCS80211NWID\n", ifp->if_xname));
/*
* if later people overwrite thats ok -- the latest version
* will always get start/joined even if it was set by
* a previous command
*/
if ((error = copyin(ifr->ifr_data, &nwid, sizeof(nwid))))
break;
if (nwid.i_len > IEEE80211_NWID_LEN) {
error = EINVAL;
break;
}
/* clear trailing garbages */
for (i = nwid.i_len; i < IEEE80211_NWID_LEN; i++)
nwid.i_nwid[i] = 0;
if (!memcmp(&sc->sc_dnwid, &nwid, sizeof(nwid)))
break;
memcpy(&sc->sc_dnwid, &nwid, sizeof(nwid));
if (ifp->if_flags & IFF_RUNNING)
ray_start_join_net(sc);
break;
case SIOCG80211NWID:
RAY_DPRINTF(("%s: ioctl: cmd SIOCG80211NWID\n", ifp->if_xname));
error = copyout(&sc->sc_cnwid, ifr->ifr_data,
sizeof(sc->sc_cnwid));
break;
#ifdef RAY_DO_SIGLEV
error = copyout(sc->sc_siglevs, ifr->ifr_data,
sizeof sc->sc_siglevs);
break;
#endif
default:
error = ether_ioctl(ifp, &sc->sc_ec, cmd, data);
}
if (error == ENETRESET) {
if (ifp->if_flags & IFF_RUNNING)
ray_update_mcast(sc);
error = 0;
}
RAY_DPRINTF(("%s: ioctl: returns %d\n", ifp->if_xname, error));
splx(s);
return (error);
}
/*
* ifnet interface to start transmission on the interface
*/
void
ray_if_start(struct ifnet *ifp)
{
struct ray_softc *sc;
sc = ifp->if_softc;
ray_intr_start(sc);
}
int
ray_media_change(struct ifnet *ifp)
{
struct ray_softc *sc;
sc = ifp->if_softc;
RAY_DPRINTF(("%s: media change cur %d\n", ifp->if_xname,
sc->sc_media.ifm_cur->ifm_media));
if (sc->sc_media.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC)
sc->sc_mode = SC_MODE_ADHOC;
else
sc->sc_mode = SC_MODE_INFRA;
if (sc->sc_mode != sc->sc_omode)
ray_start_join_net(sc);
return (0);
}
void
ray_media_status(struct ifnet *ifp, struct ifmediareq *imr)
{
struct ray_softc *sc;
sc = ifp->if_softc;
RAY_DPRINTF(("%s: media status\n", ifp->if_xname));
imr->ifm_status = IFM_AVALID;
if (sc->sc_havenet)
imr->ifm_status |= IFM_ACTIVE;
if (sc->sc_mode == SC_MODE_ADHOC)
imr->ifm_active = IFM_ADHOC;
else
imr->ifm_active = IFM_INFRA;
}
/*
* called to start from ray_intr. We don't check for pending
* interrupt as a result
*/
void
ray_intr_start(struct ray_softc *sc)
{
struct ieee80211_frame *iframe;
struct ether_header *eh;
size_t len, pktlen, tmplen;
bus_size_t bufp, ebufp;
struct mbuf *m0, *m;
struct ifnet *ifp;
u_int firsti, hinti, previ, i, pcount;
u_int16_t et;
u_int8_t *d;
ifp = &sc->sc_if;
ray_cmd_cancel(sc, SCP_IFSTART);
if ((ifp->if_flags & IFF_RUNNING) == 0 || !sc->sc_havenet) {
RAY_DPRINTF(("%s: nonet.\n",ifp->if_xname));
return;
}
if (IFQ_IS_EMPTY(&ifp->if_snd)) {
RAY_DPRINTF(("%s: nothing to send.\n",ifp->if_xname));
return;
}
firsti = i = previ = RAY_CCS_LINK_NULL;
hinti = RAY_CCS_TX_FIRST;
if (!RAY_ECF_READY(sc)) {
ray_cmd_schedule(sc, SCP_IFSTART);
return;
}
/* check to see if we need to authenticate before sending packets */
if (sc->sc_authstate == RAY_AUTH_NEEDED) {
RAY_DPRINTF(("%s: Sending auth request.\n",ifp->if_xname));
sc->sc_authstate= RAY_AUTH_WAITING;
ray_send_auth(sc,sc->sc_authid,OPEN_AUTH_REQUEST);
return;
}
pcount = 0;
for (;;) {
/* if we have no descriptors be done */
if (i == RAY_CCS_LINK_NULL) {
i = ray_find_free_tx_ccs(sc, hinti);
if (i == RAY_CCS_LINK_NULL) {
RAY_DPRINTF(("%s: no descriptors.\n",ifp->if_xname));
ifp->if_flags |= IFF_OACTIVE;
break;
}
}
IFQ_DEQUEUE(&ifp->if_snd, m0);
if (!m0) {
RAY_DPRINTF(("%s: dry queue.\n", ifp->if_xname));
break;
}
RAY_DPRINTF(("%s: gotmbuf 0x%lx\n", ifp->if_xname, (long)m0));
pktlen = m0->m_pkthdr.len;
if (pktlen > ETHER_MAX_LEN - ETHER_CRC_LEN) {
RAY_DPRINTF((
"%s: mbuf too long %lu\n", ifp->if_xname,
(u_long)pktlen));
ifp->if_oerrors++;
m_freem(m0);
continue;
}
RAY_DPRINTF(("%s: mbuf.m_pkthdr.len %lu\n", ifp->if_xname,
(u_long)pktlen));
/* we need the ether_header now for pktlen adjustments */
M_PULLUP(m0, sizeof(struct ether_header));
if (!m0) {
RAY_DPRINTF(( "%s: couldn\'t pullup ether header\n",
ifp->if_xname));
ifp->if_oerrors++;
continue;
}
RAY_DPRINTF(("%s: got pulled up mbuf 0x%lx\n", ifp->if_xname,
(long)m0));
/* first peek at the type of packet and figure out what to do */
eh = mtod(m0, struct ether_header *);
et = ntohs(eh->ether_type);
if (ifp->if_flags & IFF_LINK0) {
/* don't support llc for windows compat operation */
if (et <= ETHERMTU) {
m_freem(m0);
ifp->if_oerrors++;
continue;
}
tmplen = sizeof(struct ieee80211_frame);
} else if (et > ETHERMTU) {
/* adjust for LLC/SNAP header */
tmplen= sizeof(struct ieee80211_frame) - ETHER_ADDR_LEN;
} else {
tmplen = 0;
}
/* now get our space for the 802.11 frame */
M_PREPEND(m0, tmplen, M_DONTWAIT);
if (m0)
M_PULLUP(m0, sizeof(struct ether_header) + tmplen);
if (!m0) {
RAY_DPRINTF(("%s: couldn\'t prepend header\n",
ifp->if_xname));
ifp->if_oerrors++;
continue;
}
/* copy the frame into the mbuf for tapping */
iframe = mtod(m0, struct ieee80211_frame *);
eh = (struct ether_header *)((u_int8_t *)iframe + tmplen);
iframe->i_fc[0] =
(IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_DATA);
if (sc->sc_mode == SC_MODE_ADHOC) {
iframe->i_fc[1] = IEEE80211_FC1_DIR_NODS;
memcpy(iframe->i_addr1, eh->ether_dhost,ETHER_ADDR_LEN);
memcpy(iframe->i_addr2, eh->ether_shost,ETHER_ADDR_LEN);
memcpy(iframe->i_addr3, sc->sc_bssid, ETHER_ADDR_LEN);
} else {
iframe->i_fc[1] = IEEE80211_FC1_DIR_TODS;
memcpy(iframe->i_addr1, sc->sc_bssid,ETHER_ADDR_LEN);
memcpy(iframe->i_addr2, eh->ether_shost,ETHER_ADDR_LEN);
memmove(iframe->i_addr3,eh->ether_dhost,ETHER_ADDR_LEN);
}
iframe->i_dur[0] = iframe->i_dur[1] = 0;
iframe->i_seq[0] = iframe->i_seq[1] = 0;
/* if not using crummy E2 in 802.11 make it LLC/SNAP */
if ((ifp->if_flags & IFF_LINK0) == 0 && et > ETHERMTU)
memcpy(iframe + 1, llc_snapid, sizeof(llc_snapid));
RAY_DPRINTF(("%s: i %d previ %d\n", ifp->if_xname, i, previ));
if (firsti == RAY_CCS_LINK_NULL)
firsti = i;
pktlen = m0->m_pkthdr.len;
bufp = ray_fill_in_tx_ccs(sc, pktlen, i, previ);
previ = hinti = i;
i = RAY_CCS_LINK_NULL;
RAY_DPRINTF(("%s: bufp 0x%lx new pktlen %lu\n",
ifp->if_xname, (long)bufp, (u_long)pktlen));
/* copy out mbuf */
for (m = m0; m; m = m->m_next) {
if ((len = m->m_len) == 0)
continue;
RAY_DPRINTF((
"%s: copying mbuf 0x%lx bufp 0x%lx len %d\n",
ifp->if_xname, (long)m, (long)bufp, (int)len));
d = mtod(m, u_int8_t *);
ebufp = bufp + len;
if (ebufp <= RAY_TX_END)
ray_write_region(sc, bufp, d, len);
else {
panic("ray_intr_start"); /* XXX */
/* wrapping */
tmplen = ebufp - bufp;
len -= tmplen;
ray_write_region(sc, bufp, d, tmplen);
d += tmplen;
bufp = RAY_TX_BASE;
ray_write_region(sc, bufp, d, len);
}
bufp += len;
}
#if NBPFILTER > 0
if (ifp->if_bpf) {
if (ifp->if_flags & IFF_LINK0) {
m0->m_data += sizeof(struct ieee80211_frame);
m0->m_len -= sizeof(struct ieee80211_frame);
m0->m_pkthdr.len -= sizeof(struct ieee80211_frame);
}
bpf_mtap(ifp->if_bpf, m0, BPF_DIRECTION_OUT);
if (ifp->if_flags & IFF_LINK0) {
m0->m_data -= sizeof(struct ieee80211_frame);
m0->m_len += sizeof(struct ieee80211_frame);
m0->m_pkthdr.len += sizeof(struct ieee80211_frame);
}
}
#endif
#ifdef RAY_DEBUG
if (ray_debug && ray_debug_dump_tx)
ray_dump_mbuf(sc, m0);
#endif
pcount++;
m_freem(m0);
}
if (firsti == RAY_CCS_LINK_NULL)
return;
if (!RAY_ECF_READY(sc)) {
/*
* if this can really happen perhaps we need to save
* the chain and use it later. I think this might
* be a confused state though because we check above
* and don't issue any commands between.
*/
printf("%s: dropping tx packets device busy\n", sc->sc_xname);
ray_free_ccs_chain(sc, firsti);
ifp->if_oerrors += pcount;
return;
}
/* send it off */
RAY_DPRINTF(("%s: ray_start issueing %d \n", sc->sc_xname, firsti));
SRAM_WRITE_1(sc, RAY_SCB_CCSI, firsti);
RAY_ECF_START_CMD(sc);
RAY_DPRINTF_XMIT(("%s: sent packet: len %lu\n", sc->sc_xname,
(u_long)pktlen));
ifp->if_opackets += pcount;
}
/*
* receive a packet from the card
*/
void
ray_recv(struct ray_softc *sc, bus_size_t ccs)
{
struct ieee80211_frame *frame;
struct ether_header *eh;
struct mbuf *m;
size_t pktlen, fudge, len, lenread;
bus_size_t bufp, ebufp, tmp;
struct ifnet *ifp;
u_int8_t *src, *d;
u_int frag, nofrag, ni, i, issnap, first;
u_int8_t fc0;
#ifdef RAY_DO_SIGLEV
u_int8_t siglev;
#endif
#ifdef RAY_DEBUG
/* have a look if you want to see how the card rx works :) */
if (ray_debug && ray_debug_dump_desc)
hexdump((caddr_t)sc->sc_memh + RAY_RCS_BASE, 0x400,
16, 4, 0);
#endif
nofrag = 0; /* XXX unused */
m = 0;
ifp = &sc->sc_if;
/*
* If we're expecting the E2-in-802.11 encapsulation that the
* WebGear Windows driver produces, fudge the packet forward
* in the mbuf by 2 bytes so that the payload after the
* Ethernet header will be aligned. If we end up getting a
* packet that's not of this type, we'll just drop it anyway.
*/
fudge = ifp->if_flags & IFF_LINK0? 2 : 0;
/* it looks like at least with build 4 there is no CRC in length */
first = RAY_GET_INDEX(ccs);
pktlen = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_pktlen);
#ifdef RAY_DO_SIGLEV
siglev = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_siglev);
#endif
RAY_DPRINTF(("%s: recv pktlen %lu nofrag %d\n", sc->sc_xname,
(u_long)pktlen, nofrag));
RAY_DPRINTF_XMIT(("%s: received packet: len %lu\n", sc->sc_xname,
(u_long)pktlen));
if (pktlen > MCLBYTES || pktlen < (sizeof(*frame)) ) {
RAY_DPRINTF(("%s: PKTLEN TOO BIG OR TOO SMALL\n",
sc->sc_xname));
ifp->if_ierrors++;
goto done;
}
MGETHDR(m, M_DONTWAIT, MT_DATA);
if (!m) {
RAY_DPRINTF(("%s: MGETHDR FAILED\n", sc->sc_xname));
ifp->if_ierrors++;
goto done;
}
if ((pktlen + fudge) > MHLEN) {
/* XXX should allow chaining? */
MCLGET(m, M_DONTWAIT);
if ((m->m_flags & M_EXT) == 0) {
RAY_DPRINTF(("%s: MCLGET FAILED\n", sc->sc_xname));
ifp->if_ierrors++;
m_freem(m);
m = 0;
goto done;
}
}
m->m_pkthdr.rcvif = ifp;
m->m_pkthdr.len = pktlen;
m->m_len = pktlen;
m->m_data += fudge;
d = mtod(m, u_int8_t *);
RAY_DPRINTF(("%s: recv ccs index %d\n", sc->sc_xname, first));
frag = 0;
lenread = 0;
i = ni = first;
while ((i = ni) && i != RAY_CCS_LINK_NULL) {
ccs = RAY_GET_CCS(i);
bufp = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_bufp);
len = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_len);
/* remove the CRC */
#if 0
/* at least with build 4 no crc seems to be here */
if (frag++ == 0)
len -= 4;
#endif
ni = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_nextfrag);
RAY_DPRINTF(("%s: recv frag index %d len %lu bufp %p ni %d\n",
sc->sc_xname, i, (u_long)len, bufp, ni));
if (len + lenread > pktlen) {
RAY_DPRINTF(("%s: BAD LEN current %lu pktlen %lu\n",
sc->sc_xname, (u_long)(len + lenread),
(u_long)pktlen));
ifp->if_ierrors++;
m_freem(m);
m = 0;
goto done;
}
if (i < RAY_RCCS_FIRST) {
printf("ray_recv: bad ccs index 0x%x\n", i);
m_freem(m);
m = 0;
goto done;
}
ebufp = bufp + len;
if (ebufp <= RAY_RX_END)
ray_read_region(sc, bufp, d, len);
else {
/* wrapping */
ray_read_region(sc, bufp, d, (tmp = RAY_RX_END - bufp));
ray_read_region(sc, RAY_RX_BASE, d + tmp, ebufp - RAY_RX_END);
}
d += len;
lenread += len;
}
done:
RAY_DPRINTF(("%s: recv frag count %d\n", sc->sc_xname, frag));
/* free the rcss */
ni = first;
while ((i = ni) && (i != RAY_CCS_LINK_NULL)) {
ccs = RAY_GET_CCS(i);
ni = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_nextfrag);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
RAY_CCS_STATUS_FREE);
}
if (!m)
return;
RAY_DPRINTF(("%s: recv got packet pktlen %lu actual %lu\n",
sc->sc_xname, (u_long)pktlen, (u_long)lenread));
#ifdef RAY_DEBUG
if (ray_debug && ray_debug_dump_rx)
ray_dump_mbuf(sc, m);
#endif
/* receive the packet */
frame = mtod(m, struct ieee80211_frame *);
fc0 = frame->i_fc[0]
& (IEEE80211_FC0_VERSION_MASK|IEEE80211_FC0_TYPE_MASK);
if ((fc0 & IEEE80211_FC0_VERSION_MASK) != IEEE80211_FC0_VERSION_0) {
RAY_DPRINTF(("%s: pkt not version 0 fc 0x%x\n",
sc->sc_xname, fc0));
m_freem(m);
return;
}
if ((fc0 & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_MGT) {
switch (frame->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
case IEEE80211_FC0_SUBTYPE_BEACON:
break; /* ignore beacon silently */
case IEEE80211_FC0_SUBTYPE_AUTH:
ray_recv_auth(sc,frame);
break;
case IEEE80211_FC0_SUBTYPE_DEAUTH:
sc->sc_authstate= RAY_AUTH_UNAUTH;
break;
default:
RAY_DPRINTF(("%s: mgt packet not supported\n",sc->sc_xname));
#ifdef RAY_DEBUG
hexdump((const u_int8_t*)frame, pktlen, 16,4,0);
#endif
RAY_DPRINTF(("\n"));
break; }
m_freem(m);
return;
} else if ((fc0 & IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_DATA) {
RAY_DPRINTF(("%s: pkt not type data fc0 0x%x fc1 0x%x\n",
sc->sc_xname, frame->i_fc[0], frame->i_fc[1]));
#ifdef RAY_DEBUG
hexdump((const u_int8_t*)frame, pktlen, 16,4,0);
#endif
RAY_DPRINTF(("\n"));
m_freem(m);
return;
}
if (pktlen < sizeof(struct ieee80211_frame) + sizeof(struct llc))
{
RAY_DPRINTF(("%s: pkt not big enough to contain llc (%lu)\n",
sc->sc_xname, (u_long)pktlen));
m_freem(m);
return;
}
if (!memcmp(frame + 1, llc_snapid, sizeof(llc_snapid)))
issnap = 1;
else {
/*
* if user has link0 flag set we allow the weird
* Ethernet2 in 802.11 encapsulation produced by
* the windows driver for the WebGear card
*/
RAY_DPRINTF(("%s: pkt not snap 0\n", sc->sc_xname));
if ((ifp->if_flags & IFF_LINK0) == 0) {
m_freem(m);
return;
}
issnap = 0;
}
switch (frame->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
case IEEE80211_FC1_DIR_NODS:
src = frame->i_addr2;
break;
case IEEE80211_FC1_DIR_FROMDS:
src = frame->i_addr3;
break;
case IEEE80211_FC1_DIR_TODS:
RAY_DPRINTF(("%s: pkt ap2ap\n", sc->sc_xname));
m_freem(m);
return;
default:
RAY_DPRINTF(("%s: pkt type unknown\n", sc->sc_xname));
m_freem(m);
return;
}
#ifdef RAY_DO_SIGLEV
ray_update_siglev(sc, src, siglev);
#endif
/*
* This is a mess.. we should support other LLC frame types
*/
if (issnap) {
/* create an ether_header over top of the 802.11+SNAP header */
eh = (struct ether_header *)((caddr_t)(frame + 1) - 6);
memcpy(eh->ether_shost, src, ETHER_ADDR_LEN);
memcpy(eh->ether_dhost, frame->i_addr1, ETHER_ADDR_LEN);
} else {
/* this is the weird e2 in 802.11 encapsulation */
eh = (struct ether_header *)(frame + 1);
}
m_adj(m, (caddr_t)eh - (caddr_t)frame);
#if NBPFILTER > 0
if (ifp->if_bpf)
bpf_mtap(ifp->if_bpf, m, BPF_DIRECTION_IN);
#endif
ifp->if_ipackets++;
ether_input_mbuf(ifp, m);
}
/* receive an auth packet
*
*/
void
ray_recv_auth(struct ray_softc *sc, struct ieee80211_frame *frame)
{
/* todo: deal with timers: del_timer(&local->timer); */
u_int8_t *var= (u_int8_t*)(frame+1);
/* if we are trying to get authenticated */
if (sc->sc_mode == SC_MODE_ADHOC) {
RAY_DPRINTF(("%s: recv auth. packet dump:\n",sc->sc_xname));
#ifdef RAY_DEBUG
hexdump((u_int8_t*)frame, sizeof(*frame)+6, 16,4,0);
#endif
RAY_DPRINTF(("\n"));
if (var[2] == OPEN_AUTH_REQUEST) {
RAY_DPRINTF(("%s: Sending authentication response.\n",sc->sc_xname));
if (!ray_send_auth(sc,frame->i_addr2,OPEN_AUTH_RESPONSE)) {
sc->sc_authstate= RAY_AUTH_NEEDED;
memcpy(sc->sc_authid, frame->i_addr2, ETHER_ADDR_LEN);
}
}
else if (var[2] == OPEN_AUTH_RESPONSE) {
RAY_DPRINTF(("%s: Authenticated!\n",sc->sc_xname));
sc->sc_authstate= RAY_AUTH_AUTH;
}
}
}
/* ray_send_auth
*
* dest: where to send auth packet
* auth_type: whether to send an REQUEST or a RESPONSE
*/
int
ray_send_auth(struct ray_softc *sc, u_int8_t *dest, u_int8_t auth_type)
{
u_int8_t packet[sizeof(struct ieee80211_frame) + 6];
bus_size_t bufp;
struct ieee80211_frame *frame= (struct ieee80211_frame*)packet;
int ccsindex= RAY_CCS_LINK_NULL;
ccsindex= ray_find_free_tx_ccs(sc,RAY_CCS_TX_FIRST);
if (ccsindex == RAY_CCS_LINK_NULL) {
RAY_DPRINTF(("%x: send authenticate - No free tx ccs\n"));
return -1;
}
bufp= ray_fill_in_tx_ccs(sc,sizeof(packet),ccsindex,RAY_CCS_LINK_NULL);
frame= (struct ieee80211_frame*) packet;
frame->i_fc[0]= IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_SUBTYPE_AUTH;
frame->i_fc[1]= 0;
memcpy(frame->i_addr1,dest,ETHER_ADDR_LEN);
memcpy(frame->i_addr2,sc->sc_ecf_startup.e_station_addr,ETHER_ADDR_LEN);
memcpy(frame->i_addr3,sc->sc_bssid,ETHER_ADDR_LEN);
memset(frame+1,0,6);
((u_int8_t*)(frame+1))[2]= auth_type;
ray_write_region(sc,bufp,packet,sizeof(packet));
SRAM_WRITE_1(sc, RAY_SCB_CCSI, ccsindex);
RAY_ECF_START_CMD(sc);
RAY_DPRINTF_XMIT(("%s: sent auth packet: len %lu\n", sc->sc_xname,
(u_long)sizeof(packet)));
return 0;
}
/*
* scan for free buffers
*
* Note: do _not_ try to optimize this away, there is some kind of
* horrible interaction with receiving tx interrupts and they
* have to be done as fast as possible, which means zero processing.
* this took ~ever to figure out, don't make someone do it again!
*/
u_int
ray_find_free_tx_ccs(struct ray_softc *sc, u_int hint)
{
u_int i, stat;
for (i = hint; i <= RAY_CCS_TX_LAST; i++) {
stat = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
if (stat == RAY_CCS_STATUS_FREE)
return (i);
}
if (hint == RAY_CCS_TX_FIRST)
return (RAY_CCS_LINK_NULL);
for (i = RAY_CCS_TX_FIRST; i < hint; i++) {
stat = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
if (stat == RAY_CCS_STATUS_FREE)
return (i);
}
return (RAY_CCS_LINK_NULL);
}
/*
* allocate, initialize and link in a tx ccs for the given
* page and the current chain values
*/
bus_size_t
ray_fill_in_tx_ccs(struct ray_softc *sc, size_t pktlen, u_int i, u_int pi)
{
bus_size_t ccs, bufp;
/* pktlen += RAY_TX_PHY_SIZE; */
bufp = RAY_TX_BASE + i * RAY_TX_BUF_SIZE;
bufp += sc->sc_txpad;
ccs = RAY_GET_CCS(i);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_status, RAY_CCS_STATUS_BUSY);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_cmd, RAY_CMD_TX_REQ);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_link, RAY_CCS_LINK_NULL);
SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_bufp, bufp);
SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_len, pktlen);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_tx_rate, sc->sc_deftxrate);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_apm_mode, 0);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_antenna, 0);
/* link us in */
if (pi != RAY_CCS_LINK_NULL)
SRAM_WRITE_FIELD_1(sc, RAY_GET_CCS(pi), ray_cmd_tx, c_link, i);
RAY_DPRINTF(("%s: ray_alloc_tx_ccs bufp 0x%lx idx %d pidx %d \n",
sc->sc_xname, bufp, i, pi));
return (bufp + RAY_TX_PHY_SIZE);
}
/*
* an update params command has completed lookup which command and
* the status
*/
ray_cmd_func_t
ray_update_params_done(struct ray_softc *sc, bus_size_t ccs, u_int stat)
{
ray_cmd_func_t rcmd;
rcmd = 0;
RAY_DPRINTF(("%s: ray_update_params_done stat %d\n",
sc->sc_xname, stat));
/* this will get more complex as we add commands */
if (stat == RAY_CCS_STATUS_FAIL) {
printf("%s: failed to update a promisc\n", sc->sc_xname);
/* XXX should probably reset */
/* rcmd = ray_reset; */
}
if (sc->sc_running & SCP_UPD_PROMISC) {
ray_cmd_done(sc, SCP_UPD_PROMISC);
sc->sc_promisc = SRAM_READ_1(sc, RAY_HOST_TO_ECF_BASE);
RAY_DPRINTF(("%s: new promisc value %d\n", sc->sc_xname,
sc->sc_promisc));
} else if (sc->sc_updreq) {
ray_cmd_done(sc, SCP_UPD_UPDATEPARAMS);
/* get the update parameter */
sc->sc_updreq->r_failcause =
SRAM_READ_FIELD_1(sc, ccs, ray_cmd_update, c_failcause);
sc->sc_updreq = 0;
wakeup(ray_update_params);
rcmd = ray_start_join_net;
}
return (rcmd);
}
/*
* check too see if we have any pending commands.
*/
void
ray_check_scheduled(void *arg)
{
struct ray_softc *sc;
int s, i, mask;
s = splnet();
sc = arg;
RAY_DPRINTF((
"%s: ray_check_scheduled enter schd 0x%x running 0x%x ready %d\n",
sc->sc_xname, sc->sc_scheduled, sc->sc_running, RAY_ECF_READY(sc)));
if (sc->sc_timoneed) {
callout_stop(&sc->sc_check_scheduled_ch);
sc->sc_timoneed = 0;
}
/* if update subcmd is running -- clear it in scheduled */
if (sc->sc_running & SCP_UPDATESUBCMD)
sc->sc_scheduled &= ~SCP_UPDATESUBCMD;
mask = SCP_FIRST;
for (i = 0; i < ray_ncmdtab; mask <<= 1, i++) {
if ((sc->sc_scheduled & ~SCP_UPD_MASK) == 0)
break;
if (!RAY_ECF_READY(sc))
break;
if (sc->sc_scheduled & mask)
(*ray_cmdtab[i])(sc);
}
RAY_DPRINTF((
"%s: ray_check_scheduled exit sched 0x%x running 0x%x ready %d\n",
sc->sc_xname, sc->sc_scheduled, sc->sc_running, RAY_ECF_READY(sc)));
if (sc->sc_scheduled & ~SCP_UPD_MASK)
ray_set_pending(sc, sc->sc_scheduled);
splx(s);
}
/*
* check for unreported returns
*
* this routine is coded to only expect one outstanding request for the
* timed out requests at a time, but thats all that can be outstanding
* per hardware limitations
*/
void
ray_check_ccs(void *arg)
{
ray_cmd_func_t fp;
struct ray_softc *sc;
u_int i, cmd, stat;
bus_size_t ccs;
int s;
s = splnet();
sc = arg;
RAY_DPRINTF(("%s: ray_check_ccs\n", sc->sc_xname));
sc->sc_timocheck = 0;
for (i = RAY_CCS_CMD_FIRST; i <= RAY_CCS_CMD_LAST; i++) {
if (!sc->sc_ccsinuse[i])
continue;
ccs = RAY_GET_CCS(i);
cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
switch (cmd) {
case RAY_CMD_START_PARAMS:
case RAY_CMD_UPDATE_MCAST:
case RAY_CMD_UPDATE_PARAMS:
stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
RAY_DPRINTF(("%s: check ccs idx %d ccs 0x%lx "
"cmd 0x%x stat %d\n", sc->sc_xname, i,
ccs, cmd, stat));
goto breakout;
}
}
breakout:
/* see if we got one of the commands we are looking for */
if (i > RAY_CCS_CMD_LAST)
; /* nothing */
else if (stat == RAY_CCS_STATUS_FREE) {
stat = RAY_CCS_STATUS_COMPLETE;
if ((fp = ray_ccs_done(sc, ccs)))
(*fp)(sc);
} else if (stat != RAY_CCS_STATUS_BUSY) {
if (sc->sc_ccsinuse[i] == 1) {
/* give a chance for the interrupt to occur */
sc->sc_ccsinuse[i] = 2;
if (!sc->sc_timocheck) {
callout_reset(&sc->sc_check_ccs_ch, 1,
ray_check_ccs, sc);
sc->sc_timocheck = 1;
}
} else if ((fp = ray_ccs_done(sc, ccs)))
(*fp)(sc);
} else {
callout_reset(&sc->sc_check_ccs_ch, RAY_CHECK_CCS_TIMEOUT,
ray_check_ccs, sc);
sc->sc_timocheck = 1;
}
splx(s);
}
/*
* read the counters, the card implements the following protocol
* to keep the values from being changed while read: It checks
* the `own' bit and if zero writes the current internal counter
* value, it then sets the `own' bit to 1. If the `own' bit was 1 it
* increments its internal counter. The user thus reads the counter
* if the `own' bit is one and then sets the own bit to 0.
*/
void
ray_update_error_counters(struct ray_softc *sc)
{
bus_size_t csc;
/* try and update the error counters */
csc = RAY_STATUS_BASE;
if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxo_own)) {
sc->sc_rxoverflow +=
SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxo_own, 0);
}
if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxc_own)) {
sc->sc_rxcksum +=
SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxc_own, 0);
}
if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rxhc_own)) {
sc->sc_rxhcksum +=
SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_rx_hcksum);
SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_rxhc_own, 0);
}
sc->sc_rxnoise = SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rx_noise);
}
/*
* one of the commands we issued has completed, process.
*/
ray_cmd_func_t
ray_ccs_done(struct ray_softc *sc, bus_size_t ccs)
{
struct ifnet *ifp;
ray_cmd_func_t rcmd;
u_int cmd, stat;
ifp = &sc->sc_if;
cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
RAY_DPRINTF(("%s: ray_ccs_done idx %ld cmd 0x%x stat %d\n",
sc->sc_xname, RAY_GET_INDEX(ccs), cmd, stat));
rcmd = 0;
switch (cmd) {
/*
* solicited commands
*/
case RAY_CMD_START_PARAMS:
/* start network */
ray_cmd_done(sc, SCP_UPD_STARTUP);
/* ok to start queueing packets */
sc->sc_if.if_flags &= ~IFF_OACTIVE;
sc->sc_omode = sc->sc_mode;
memcpy(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid));
rcmd = ray_start_join_net;
break;
case RAY_CMD_UPDATE_PARAMS:
rcmd = ray_update_params_done(sc, ccs, stat);
break;
case RAY_CMD_REPORT_PARAMS:
/* get the reported parameters */
ray_cmd_done(sc, SCP_REPORTPARAMS);
if (!sc->sc_repreq)
break;
sc->sc_repreq->r_failcause =
SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_failcause);
sc->sc_repreq->r_len =
SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_len);
ray_read_region(sc, RAY_ECF_TO_HOST_BASE, sc->sc_repreq->r_data,
sc->sc_repreq->r_len);
sc->sc_repreq = 0;
wakeup(ray_report_params);
break;
case RAY_CMD_UPDATE_MCAST:
ray_cmd_done(sc, SCP_UPD_MCAST);
if (stat == RAY_CCS_STATUS_FAIL)
rcmd = ray_reset;
break;
case RAY_CMD_START_NET:
case RAY_CMD_JOIN_NET:
rcmd = ray_start_join_net_done(sc, cmd, ccs, stat);
break;
case RAY_CMD_TX_REQ:
if (sc->sc_if.if_flags & IFF_OACTIVE) {
sc->sc_if.if_flags &= ~IFF_OACTIVE;
/* this may also be a problem */
rcmd = ray_intr_start;
}
/* free it -- no tracking */
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
RAY_CCS_STATUS_FREE);
goto done;
case RAY_CMD_START_ASSOC:
ray_cmd_done(sc, SCP_STARTASSOC);
if (stat == RAY_CCS_STATUS_FAIL)
rcmd = ray_start_join_net; /* XXX check */
else {
sc->sc_havenet = 1;
rcmd = ray_intr_start;
}
break;
case RAY_CMD_UPDATE_APM:
case RAY_CMD_TEST_MEM:
case RAY_CMD_SHUTDOWN:
case RAY_CMD_DUMP_MEM:
case RAY_CMD_START_TIMER:
break;
default:
printf("%s: intr: unknown command 0x%x\n",
sc->sc_if.if_xname, cmd);
break;
}
ray_free_ccs(sc, ccs);
done:
/*
* see if needed things can be done now that a command
* has completed
*/
ray_check_scheduled(sc);
return (rcmd);
}
/*
* an unsolicited interrupt, i.e., the ECF is sending us a command
*/
ray_cmd_func_t
ray_rccs_intr(struct ray_softc *sc, bus_size_t ccs)
{
ray_cmd_func_t rcmd;
u_int cmd, stat;
cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
RAY_DPRINTF(("%s: ray_rccs_intr idx %ld cmd 0x%x stat %d\n",
sc->sc_xname, RAY_GET_INDEX(ccs), cmd, stat));
rcmd = 0;
switch (cmd) {
/*
* unsolicited commands
*/
case RAY_ECMD_RX_DONE:
ray_recv(sc, ccs);
goto done;
case RAY_ECMD_REJOIN_DONE:
if (sc->sc_mode == SC_MODE_ADHOC)
break;
/* get the current ssid */
SRAM_READ_FIELD_N(sc, ccs, ray_cmd_net, c_bss_id,
sc->sc_bssid, sizeof(sc->sc_bssid));
rcmd = ray_start_assoc;
break;
case RAY_ECMD_ROAM_START:
/* no longer have network */
sc->sc_havenet = 0;
break;
case RAY_ECMD_JAPAN_CALL_SIGNAL:
break;
default:
ray_update_error_counters(sc);
/* this is a bogus return from build 4 don't free 0x55 */
if (sc->sc_version == SC_BUILD_4 && cmd == 0x55
&& RAY_GET_INDEX(ccs) == 0x55) {
goto done;
}
printf("%s: intr: unknown command 0x%x\n",
sc->sc_if.if_xname, cmd);
break;
}
/* free the ccs */
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_FREE);
done:
return (rcmd);
}
/*
* process an interrupt
*/
int
ray_intr(void *arg)
{
struct ray_softc *sc;
ray_cmd_func_t rcmd;
u_int i, count;
sc = arg;
RAY_DPRINTF(("%s: ray_intr\n", sc->sc_xname));
if ((++sc->sc_checkcounters % 32) == 0)
ray_update_error_counters(sc);
count = 0;
rcmd = 0;
if (!REG_READ(sc, RAY_HCSIR))
count = 0;
else {
count = 1;
i = SRAM_READ_1(sc, RAY_SCB_RCCSI);
if (i <= RAY_CCS_LAST)
rcmd = ray_ccs_done(sc, RAY_GET_CCS(i));
else if (i <= RAY_RCCS_LAST)
rcmd = ray_rccs_intr(sc, RAY_GET_CCS(i));
else
printf("%s: intr: bad cmd index %d\n", sc->sc_xname, i);
}
if (rcmd)
(*rcmd)(sc);
if (count)
REG_WRITE(sc, RAY_HCSIR, 0);
RAY_DPRINTF(("%s: interrupt handled %d\n", sc->sc_xname, count));
return (count ? 1 : 0);
}
/*
* Generic CCS handling
*/
/*
* free the chain of descriptors -- used for freeing allocated tx chains
*/
void
ray_free_ccs_chain(struct ray_softc *sc, u_int ni)
{
u_int i;
while ((i = ni) != RAY_CCS_LINK_NULL) {
ni = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_link);
SRAM_WRITE_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status,
RAY_CCS_STATUS_FREE);
}
}
/*
* free up a cmd and return the old status
* this routine is only used for commands
*/
u_int8_t
ray_free_ccs(struct ray_softc *sc, bus_size_t ccs)
{
u_int8_t stat;
RAY_DPRINTF(("%s: free_ccs idx %ld\n", sc->sc_xname,
RAY_GET_INDEX(ccs)));
stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_FREE);
if (ccs <= RAY_GET_CCS(RAY_CCS_LAST))
sc->sc_ccsinuse[RAY_GET_INDEX(ccs)] = 0;
return (stat);
}
/*
* returns 1 and in `ccb' the bus offset of the free ccb
* or 0 if none are free
*
* If `track' is not zero, handles tracking this command
* possibly indicating a callback is needed and setting a timeout
* also if ECF isn't ready we terminate earlier to avoid overhead.
*
* this routine is only used for commands
*/
int
ray_alloc_ccs(struct ray_softc *sc, bus_size_t *ccsp, u_int cmd, u_int track)
{
bus_size_t ccs;
u_int i;
RAY_DPRINTF(("%s: alloc_ccs cmd %d\n", sc->sc_xname, cmd));
/* for tracked commands, if not ready just set pending */
if (track && !RAY_ECF_READY(sc)) {
ray_cmd_schedule(sc, track);
return (0);
}
/* first scan our inuse array */
for (i = RAY_CCS_CMD_FIRST; i <= RAY_CCS_CMD_LAST; i++) {
/* XXX wonder if we have to probe here to make the card go */
(void)SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
if (!sc->sc_ccsinuse[i])
break;
}
if (i > RAY_CCS_CMD_LAST) {
if (track)
ray_cmd_schedule(sc, track);
return (0);
}
sc->sc_ccsinuse[i] = 1;
ccs = RAY_GET_CCS(i);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_BUSY);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_cmd, cmd);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_link, RAY_CCS_LINK_NULL);
*ccsp = ccs;
return (1);
}
/*
* this function sets the pending bit for the command given in 'need'
* and schedules a timeout if none is scheduled already. Any command
* that uses the `host to ecf' region must be serialized.
*/
void
ray_set_pending(struct ray_softc *sc, u_int cmdf)
{
RAY_DPRINTF(("%s: ray_set_pending 0x%x\n", sc->sc_xname, cmdf));
sc->sc_scheduled |= cmdf;
if (!sc->sc_timoneed) {
RAY_DPRINTF(("%s: ray_set_pending new timo\n", sc->sc_xname));
callout_reset(&sc->sc_check_scheduled_ch,
RAY_CHECK_SCHED_TIMEOUT, ray_check_scheduled, sc);
sc->sc_timoneed = 1;
}
}
/*
* schedule the `cmdf' for completion later
*/
void
ray_cmd_schedule(struct ray_softc *sc, int cmdf)
{
int track;
RAY_DPRINTF(("%s: ray_cmd_schedule 0x%x\n", sc->sc_xname, cmdf));
track = cmdf;
if ((cmdf & SCP_UPD_MASK) == 0)
ray_set_pending(sc, track);
else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
/* don't do timeout mechanism if subcmd already going */
sc->sc_scheduled |= cmdf;
} else
ray_set_pending(sc, cmdf | SCP_UPDATESUBCMD);
}
/*
* check to see if `cmdf' has been scheduled
*/
int
ray_cmd_is_scheduled(struct ray_softc *sc, int cmdf)
{
RAY_DPRINTF(("%s: ray_cmd_is_scheduled 0x%x\n", sc->sc_xname, cmdf));
return ((sc->sc_scheduled & cmdf) ? 1 : 0);
}
/*
* cancel a scheduled command (not a running one though!)
*/
void
ray_cmd_cancel(struct ray_softc *sc, int cmdf)
{
RAY_DPRINTF(("%s: ray_cmd_cancel 0x%x\n", sc->sc_xname, cmdf));
sc->sc_scheduled &= ~cmdf;
if ((cmdf & SCP_UPD_MASK) && (sc->sc_scheduled & SCP_UPD_MASK) == 0)
sc->sc_scheduled &= ~SCP_UPDATESUBCMD;
/* if nothing else needed cancel the timer */
if (sc->sc_scheduled == 0 && sc->sc_timoneed) {
callout_stop(&sc->sc_check_scheduled_ch);
sc->sc_timoneed = 0;
}
}
/*
* called to indicate the 'cmdf' has been issued
*/
void
ray_cmd_ran(struct ray_softc *sc, int cmdf)
{
RAY_DPRINTF(("%s: ray_cmd_ran 0x%x\n", sc->sc_xname, cmdf));
if (cmdf & SCP_UPD_MASK)
sc->sc_running |= cmdf | SCP_UPDATESUBCMD;
else
sc->sc_running |= cmdf;
if ((cmdf & SCP_TIMOCHECK_CMD_MASK) && !sc->sc_timocheck) {
callout_reset(&sc->sc_check_ccs_ch, RAY_CHECK_CCS_TIMEOUT,
ray_check_ccs, sc);
sc->sc_timocheck = 1;
}
}
/*
* check to see if `cmdf' has been issued
*/
int
ray_cmd_is_running(struct ray_softc *sc, int cmdf)
{
RAY_DPRINTF(("%s: ray_cmd_is_running 0x%x\n", sc->sc_xname, cmdf));
return ((sc->sc_running & cmdf) ? 1 : 0);
}
/*
* the given `cmdf' that was issued has completed
*/
void
ray_cmd_done(struct ray_softc *sc, int cmdf)
{
RAY_DPRINTF(("%s: ray_cmd_done 0x%x\n", sc->sc_xname, cmdf));
sc->sc_running &= ~cmdf;
if (cmdf & SCP_UPD_MASK) {
sc->sc_running &= ~SCP_UPDATESUBCMD;
if (sc->sc_scheduled & SCP_UPD_MASK)
ray_cmd_schedule(sc, sc->sc_scheduled & SCP_UPD_MASK);
}
if ((sc->sc_running & SCP_TIMOCHECK_CMD_MASK) == 0 && sc->sc_timocheck){
callout_stop(&sc->sc_check_ccs_ch);
sc->sc_timocheck = 0;
}
}
/*
* issue the command
* only used for commands not tx
*/
int
ray_issue_cmd(struct ray_softc *sc, bus_size_t ccs, u_int track)
{
u_int i;
RAY_DPRINTF(("%s: ray_cmd_issue 0x%x\n", sc->sc_xname, track));
/*
* XXX other drivers did this, but I think
* what we really want to do is just make sure we don't
* get here or that spinning is ok
*/
i = 0;
while (!RAY_ECF_READY(sc))
if (++i > 50) {
ray_free_ccs(sc, ccs);
if (track)
ray_cmd_schedule(sc, track);
return (0);
}
SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_GET_INDEX(ccs));
RAY_ECF_START_CMD(sc);
ray_cmd_ran(sc, track);
return (1);
}
/*
* send a simple command if we can
*/
int
ray_simple_cmd(struct ray_softc *sc, u_int cmd, u_int track)
{
bus_size_t ccs;
return (ray_alloc_ccs(sc, &ccs, cmd, track) &&
ray_issue_cmd(sc, ccs, track));
}
/*
* Functions based on CCS commands
*/
/*
* run a update subcommand
*/
void
ray_update_subcmd(struct ray_softc *sc)
{
int submask, i;
RAY_DPRINTF(("%s: ray_update_subcmd\n", sc->sc_xname));
ray_cmd_cancel(sc, SCP_UPDATESUBCMD);
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
submask = SCP_UPD_FIRST;
for (i = 0; i < ray_nsubcmdtab; submask <<= 1, i++) {
if ((sc->sc_scheduled & SCP_UPD_MASK) == 0)
break;
/* when done the next command will be scheduled */
if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD))
break;
if (!RAY_ECF_READY(sc))
break;
/*
* give priority to LSB -- e.g., if previous loop rescheduled
* doing this command after calling the function won't catch
* if a later command sets an earlier bit
*/
if (sc->sc_scheduled & ((submask - 1) & SCP_UPD_MASK))
break;
if (sc->sc_scheduled & submask)
(*ray_subcmdtab[i])(sc);
}
}
/*
* report a parameter
*/
void
ray_report_params(struct ray_softc *sc)
{
bus_size_t ccs;
ray_cmd_cancel(sc, SCP_REPORTPARAMS);
if (!sc->sc_repreq)
return;
/* do the issue check before equality check */
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
else if (ray_cmd_is_running(sc, SCP_REPORTPARAMS)) {
ray_cmd_schedule(sc, SCP_REPORTPARAMS);
return;
} else if (!ray_alloc_ccs(sc, &ccs, RAY_CMD_REPORT_PARAMS,
SCP_REPORTPARAMS))
return;
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_report, c_paramid,
sc->sc_repreq->r_paramid);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_report, c_nparam, 1);
(void)ray_issue_cmd(sc, ccs, SCP_REPORTPARAMS);
}
/*
* start an association
*/
void
ray_start_assoc(struct ray_softc *sc)
{
ray_cmd_cancel(sc, SCP_STARTASSOC);
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
else if (ray_cmd_is_running(sc, SCP_STARTASSOC))
return;
(void)ray_simple_cmd(sc, RAY_CMD_START_ASSOC, SCP_STARTASSOC);
}
/*
* Subcommand functions that use the SCP_UPDATESUBCMD command
* (and are serialized with respect to other update sub commands
*/
/*
* download the startup parameters to the card
* -- no outstanding commands expected
*/
void
ray_download_params(struct ray_softc *sc)
{
struct ray_startup_params_head *sp;
struct ray_startup_params_tail_5 *sp5;
struct ray_startup_params_tail_4 *sp4;
bus_size_t off;
RAY_DPRINTF(("%s: init_startup_params\n", sc->sc_xname));
ray_cmd_cancel(sc, SCP_UPD_STARTUP);
#define PUT2(p, v) \
do { (p)[0] = ((v >> 8) & 0xff); (p)[1] = (v & 0xff); } while(0)
sp = &sc->sc_startup;
sp4 = &sc->sc_startup_4;
sp5 = &sc->sc_startup_5;
memset(sp, 0, sizeof(*sp));
if (sc->sc_version == SC_BUILD_4)
memset(sp4, 0, sizeof(*sp4));
else
memset(sp5, 0, sizeof(*sp5));
/* XXX: Raylink firmware doesn't have length field for ssid */
memcpy(sp->sp_ssid, sc->sc_dnwid.i_nwid, sizeof(sp->sp_ssid));
sp->sp_scan_mode = 0x1;
memcpy(sp->sp_mac_addr, sc->sc_ecf_startup.e_station_addr,
ETHER_ADDR_LEN);
PUT2(sp->sp_frag_thresh, 0x7fff); /* disabled */
if (sc->sc_version == SC_BUILD_4) {
#if 1
/* linux/fbsd */
PUT2(sp->sp_dwell_time, 0x200);
PUT2(sp->sp_beacon_period, 1);
#else
/* divined */
PUT2(sp->sp_dwell_time, 0x400);
PUT2(sp->sp_beacon_period, 0);
#endif
} else {
PUT2(sp->sp_dwell_time, 128);
PUT2(sp->sp_beacon_period, 256);
}
sp->sp_dtim_interval = 1;
#if 0
/* these are the documented defaults for build 5/6 */
sp->sp_max_retry = 0x1f;
sp->sp_ack_timo = 0x86;
sp->sp_sifs = 0x1c;
#elif 1
/* these were scrounged from the linux driver */
sp->sp_max_retry = 0x07;
sp->sp_ack_timo = 0xa3;
sp->sp_sifs = 0x1d;
#else
/* these were divined */
sp->sp_max_retry = 0x03;
sp->sp_ack_timo = 0xa3;
sp->sp_sifs = 0x1d;
#endif
#if 0
/* these are the documented defaults for build 5/6 */
sp->sp_difs = 0x82;
sp->sp_pifs = 0;
#else
/* linux/fbsd */
sp->sp_difs = 0x82;
if (sc->sc_version == SC_BUILD_4)
sp->sp_pifs = 0xce;
else
sp->sp_pifs = 0x4e;
#endif
PUT2(sp->sp_rts_thresh, 0x7fff); /* disabled */
if (sc->sc_version == SC_BUILD_4) {
PUT2(sp->sp_scan_dwell, 0xfb1e);
PUT2(sp->sp_scan_max_dwell, 0xc75c);
} else {
PUT2(sp->sp_scan_dwell, 0x4e2);
PUT2(sp->sp_scan_max_dwell, 0x38a4);
}
sp->sp_assoc_timo = 0x5;
if (sc->sc_version == SC_BUILD_4) {
#if 1 /* obsd */
/* linux/fbsd */
sp->sp_adhoc_scan_cycle = 0x4;
sp->sp_infra_scan_cycle = 0x2;
sp->sp_infra_super_scan_cycle = 0x4;
#else
/* divined */
sp->sp_adhoc_scan_cycle = 0x8;
sp->sp_infra_scan_cycle = 0x1;
sp->sp_infra_super_scan_cycle = 0x18;
#endif
} else {
sp->sp_adhoc_scan_cycle = 0x8;
sp->sp_infra_scan_cycle = 0x2;
sp->sp_infra_super_scan_cycle = 0x8;
}
sp->sp_promisc = sc->sc_promisc;
PUT2(sp->sp_uniq_word, 0x0cbd);
if (sc->sc_version == SC_BUILD_4) {
/* XXX what's this value anyway... the std says 50us */
/* XXX sp->sp_slot_time = 0x4e; */
sp->sp_slot_time = 0x4e;
#if 1
/*linux/fbsd*/
sp->sp_roam_low_snr_thresh = 0xff;
#else
/*divined*/
sp->sp_roam_low_snr_thresh = 0x30;
#endif
} else {
sp->sp_slot_time = 0x32;
sp->sp_roam_low_snr_thresh = 0xff; /* disabled */
}
#if 1
sp->sp_low_snr_count = 0xff; /* disabled */
#else
/* divined -- check */
sp->sp_low_snr_count = 0x07; /* disabled */
#endif
#if 0
sp->sp_infra_missed_beacon_count = 0x2;
#elif 1
/* linux/fbsd */
sp->sp_infra_missed_beacon_count = 0x5;
#else
/* divined -- check, looks fishy */
sp->sp_infra_missed_beacon_count = 0x7;
#endif
sp->sp_adhoc_missed_beacon_count = 0xff;
sp->sp_country_code = sc->sc_dcountrycode;
sp->sp_hop_seq = 0x0b;
if (sc->sc_version == SC_BUILD_4) {
sp->sp_hop_seq_len = 0x4e;
sp4->sp_cw_max = 0x3f; /* single byte on build 4 */
sp4->sp_cw_min = 0x0f; /* single byte on build 4 */
sp4->sp_noise_filter_gain = 0x4;
sp4->sp_noise_limit_offset = 0x8;
sp4->sp_rssi_thresh_offset = 0x28;
sp4->sp_busy_thresh_offset = 0x28;
sp4->sp_sync_thresh = 0x07;
sp4->sp_test_mode = 0x0;
sp4->sp_test_min_chan = 0x2;
sp4->sp_test_max_chan = 0x2;
} else {
sp->sp_hop_seq_len = 0x4f;
PUT2(sp5->sp_cw_max, 0x3f);
PUT2(sp5->sp_cw_min, 0x0f);
sp5->sp_noise_filter_gain = 0x4;
sp5->sp_noise_limit_offset = 0x8;
sp5->sp_rssi_thresh_offset = 0x28;
sp5->sp_busy_thresh_offset = 0x28;
sp5->sp_sync_thresh = 0x07;
sp5->sp_test_mode = 0x0;
sp5->sp_test_min_chan = 0x2;
sp5->sp_test_max_chan = 0x2;
#if 0
sp5->sp_allow_probe_resp = 0x1;
#else
sp5->sp_allow_probe_resp = 0x0;
#endif
sp5->sp_privacy_must_start = 0x0;
sp5->sp_privacy_can_join = 0x0;
sp5->sp_basic_rate_set[0] = 0x2;
/* 2 = 1Mbps, 3 = old 2Mbps 4 = 2Mbps */
}
/* we shouldn't be called with some command pending */
if (!RAY_ECF_READY(sc))
panic("ray_download_params busy");
/* write the compatible part */
off = RAY_HOST_TO_ECF_BASE;
ray_write_region(sc, off, sp, sizeof(sc->sc_startup));
off += sizeof(sc->sc_startup);
if (sc->sc_version == SC_BUILD_4)
ray_write_region(sc, off, sp4, sizeof(*sp4));
else
ray_write_region(sc, off, sp5, sizeof(*sp5));
if (!ray_simple_cmd(sc, RAY_CMD_START_PARAMS, SCP_UPD_STARTUP))
panic("ray_download_params issue");
}
/*
* start or join a network
*/
void
ray_start_join_net(struct ray_softc *sc)
{
struct ray_net_params np;
bus_size_t ccs;
int cmd;
ray_cmd_cancel(sc, SCP_UPD_STARTJOIN);
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
/* XXX check we may not want to re-issue */
if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
ray_cmd_schedule(sc, SCP_UPD_STARTJOIN);
return;
}
if (sc->sc_mode == SC_MODE_ADHOC)
cmd = RAY_CMD_START_NET;
else
cmd = RAY_CMD_JOIN_NET;
if (!ray_alloc_ccs(sc, &ccs, cmd, SCP_UPD_STARTJOIN))
return;
sc->sc_startccs = ccs;
sc->sc_startcmd = cmd;
if (!memcmp(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid))
&& sc->sc_omode == sc->sc_mode)
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param, 0);
else {
sc->sc_havenet = 0;
memset(&np, 0, sizeof(np));
np.p_net_type = sc->sc_mode;
memcpy(np.p_ssid, sc->sc_dnwid.i_nwid, sizeof(np.p_ssid));
ray_write_region(sc, RAY_HOST_TO_ECF_BASE, &np, sizeof(np));
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param, 1);
}
if (ray_issue_cmd(sc, ccs, SCP_UPD_STARTJOIN))
callout_reset(&sc->sc_start_join_timo_ch, RAY_START_TIMEOUT,
ray_start_join_timo, sc);
}
void
ray_start_join_timo(void *arg)
{
struct ray_softc *sc;
u_int stat;
sc = arg;
stat = SRAM_READ_FIELD_1(sc, sc->sc_startccs, ray_cmd, c_status);
ray_start_join_net_done(sc, sc->sc_startcmd, sc->sc_startccs, stat);
}
/*
* The start/join has completed. Note: we timeout the start
* command because it seems to fail to work at least on the
* build 4 firmware without reporting an error. This actually
* may be a result of not putting the correct params in the
* initial download. If this is a timeout `stat' will be
* marked busy.
*/
ray_cmd_func_t
ray_start_join_net_done(struct ray_softc *sc, u_int cmd, bus_size_t ccs, u_int stat)
{
int i;
struct ray_net_params np;
callout_stop(&sc->sc_start_join_timo_ch);
ray_cmd_done(sc, SCP_UPD_STARTJOIN);
if (stat == RAY_CCS_STATUS_FAIL) {
/* XXX poke ifmedia when it supports this */
sc->sc_havenet = 0;
return (ray_start_join_net);
}
if (stat == RAY_CCS_STATUS_BUSY || stat == RAY_CCS_STATUS_FREE) {
/* handle the timeout condition */
callout_reset(&sc->sc_start_join_timo_ch, RAY_START_TIMEOUT,
ray_start_join_timo, sc);
/* be safe -- not a lot occurs with no net though */
if (!RAY_ECF_READY(sc))
return (0);
/* see if our nwid is up to date */
if (!memcmp(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid))
&& sc->sc_omode == sc->sc_mode)
SRAM_WRITE_FIELD_1(sc,ccs, ray_cmd_net, c_upd_param, 0);
else {
memset(&np, 0, sizeof(np));
np.p_net_type = sc->sc_mode;
memcpy(np.p_ssid, sc->sc_dnwid.i_nwid,
sizeof(np.p_ssid));
ray_write_region(sc, RAY_HOST_TO_ECF_BASE, &np,
sizeof(np));
SRAM_WRITE_FIELD_1(sc,ccs, ray_cmd_net, c_upd_param, 1);
}
if (sc->sc_mode == SC_MODE_ADHOC)
cmd = RAY_CMD_START_NET;
else
cmd = RAY_CMD_JOIN_NET;
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_cmd,
RAY_CCS_STATUS_BUSY);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_status,
RAY_CCS_STATUS_BUSY);
/* we simply poke the card again issuing the same ccs */
SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_GET_INDEX(ccs));
RAY_ECF_START_CMD(sc);
ray_cmd_ran(sc, SCP_UPD_STARTJOIN);
return (0);
}
/* get the current ssid */
SRAM_READ_FIELD_N(sc, ccs, ray_cmd_net, c_bss_id, sc->sc_bssid,
sizeof(sc->sc_bssid));
sc->sc_deftxrate = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net,c_def_txrate);
sc->sc_encrypt = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_encrypt);
/* adjust values for buggy build 4 */
if (sc->sc_deftxrate == 0x55)
sc->sc_deftxrate = RAY_PID_BASIC_RATE_1500K;
if (sc->sc_encrypt == 0x55)
sc->sc_encrypt = 0;
if (SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param)) {
ray_read_region(sc, RAY_HOST_TO_ECF_BASE, &np, sizeof(np));
/* XXX: Raylink firmware doesn't have length field for ssid */
for (i = 0; i < sizeof(np.p_ssid); i++) {
if (np.p_ssid[i] == '\0')
break;
}
sc->sc_cnwid.i_len = i;
memcpy(sc->sc_cnwid.i_nwid, np.p_ssid, i);
sc->sc_omode = sc->sc_mode;
if (np.p_net_type != sc->sc_mode)
return (ray_start_join_net);
}
RAY_DPRINTF(("%s: net start/join nwid %.32s bssid %s inited %d\n",
sc->sc_xname, sc->sc_cnwid.i_nwid, ether_sprintf(sc->sc_bssid),
SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_inited)));
/* network is now active */
ray_cmd_schedule(sc, SCP_UPD_MCAST|SCP_UPD_PROMISC);
if (cmd == RAY_CMD_JOIN_NET)
return (ray_start_assoc);
else {
sc->sc_havenet = 1;
return (ray_intr_start);
}
}
/*
* set the card in/out of promiscuous mode
*/
void
ray_update_promisc(struct ray_softc *sc)
{
bus_size_t ccs;
int promisc;
ray_cmd_cancel(sc, SCP_UPD_PROMISC);
/* do the issue check before equality check */
promisc = !!(sc->sc_if.if_flags & (IFF_PROMISC | IFF_ALLMULTI));
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
ray_cmd_schedule(sc, SCP_UPD_PROMISC);
return;
} else if (promisc == sc->sc_promisc)
return;
else if (!ray_alloc_ccs(sc,&ccs,RAY_CMD_UPDATE_PARAMS, SCP_UPD_PROMISC))
return;
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_paramid, RAY_PID_PROMISC);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_nparam, 1);
SRAM_WRITE_1(sc, RAY_HOST_TO_ECF_BASE, promisc);
(void)ray_issue_cmd(sc, ccs, SCP_UPD_PROMISC);
}
/*
* update the parameter based on what the user passed in
*/
void
ray_update_params(struct ray_softc *sc)
{
bus_size_t ccs;
ray_cmd_cancel(sc, SCP_UPD_UPDATEPARAMS);
if (!sc->sc_updreq) {
/* XXX do we need to wakeup here? */
return;
}
/* do the issue check before equality check */
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
ray_cmd_schedule(sc, SCP_UPD_UPDATEPARAMS);
return;
} else if (!ray_alloc_ccs(sc, &ccs, RAY_CMD_UPDATE_PARAMS,
SCP_UPD_UPDATEPARAMS))
return;
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_paramid,
sc->sc_updreq->r_paramid);
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_nparam, 1);
ray_write_region(sc, RAY_HOST_TO_ECF_BASE, sc->sc_updreq->r_data,
sc->sc_updreq->r_len);
(void)ray_issue_cmd(sc, ccs, SCP_UPD_UPDATEPARAMS);
}
/*
* set the multicast filter list
*/
void
ray_update_mcast(struct ray_softc *sc)
{
bus_size_t ccs;
struct ether_multistep step;
struct ether_multi *enm;
struct arpcom *ec;
bus_size_t bufp;
int count;
ec = &sc->sc_ec;
ray_cmd_cancel(sc, SCP_UPD_MCAST);
/* see if we have any ranges */
if ((count = sc->sc_ec.ec_multicnt) < 17) {
ETHER_FIRST_MULTI(step, ec, enm);
while (enm) {
/* see if this is a range */
if (memcmp(enm->enm_addrlo, enm->enm_addrhi,
ETHER_ADDR_LEN)) {
count = 17;
break;
}
ETHER_NEXT_MULTI(step, enm);
}
}
/* track this stuff even when not running */
if (count > 16) {
sc->sc_if.if_flags |= IFF_ALLMULTI;
ray_update_promisc(sc);
return;
} else if (sc->sc_if.if_flags & IFF_ALLMULTI) {
sc->sc_if.if_flags &= ~IFF_ALLMULTI;
ray_update_promisc(sc);
}
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
return;
else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
ray_cmd_schedule(sc, SCP_UPD_MCAST);
return;
} else if (!ray_alloc_ccs(sc,&ccs, RAY_CMD_UPDATE_MCAST, SCP_UPD_MCAST))
return;
SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update_mcast, c_nmcast, count);
bufp = RAY_HOST_TO_ECF_BASE;
ETHER_FIRST_MULTI(step, ec, enm);
while (enm) {
ray_write_region(sc, bufp, enm->enm_addrlo, ETHER_ADDR_LEN);
bufp += ETHER_ADDR_LEN;
ETHER_NEXT_MULTI(step, enm);
}
(void)ray_issue_cmd(sc, ccs, SCP_UPD_MCAST);
}
/*
* User-issued commands
*/
/*
* issue an "update params"
*
* expected to be called in sleepable context -- intended for user stuff
*/
int
ray_user_update_params(struct ray_softc *sc, struct ray_param_req *pr)
{
int rv;
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
return (EIO);
}
/* wait to be able to issue the command */
rv = 0;
while (ray_cmd_is_running(sc, SCP_UPD_UPDATEPARAMS) ||
ray_cmd_is_scheduled(sc, SCP_UPD_UPDATEPARAMS)) {
rv = tsleep(ray_update_params, 0|PCATCH, "cmd in use", 0);
if (rv)
return (rv);
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
return (EIO);
}
}
pr->r_failcause = RAY_FAILCAUSE_WAITING;
sc->sc_updreq = pr;
ray_cmd_schedule(sc, SCP_UPD_UPDATEPARAMS);
ray_check_scheduled(sc);
while (pr->r_failcause == RAY_FAILCAUSE_WAITING)
(void)tsleep(ray_update_params, 0, "waiting cmd", 0);
wakeup(ray_update_params);
return (0);
}
/*
* issue a "report params"
*
* expected to be called in sleepable context -- intended for user stuff
*/
int
ray_user_report_params(struct ray_softc *sc, struct ray_param_req *pr)
{
int rv;
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
return (EIO);
}
/* wait to be able to issue the command */
rv = 0;
while (ray_cmd_is_running(sc, SCP_REPORTPARAMS)
|| ray_cmd_is_scheduled(sc, SCP_REPORTPARAMS)) {
rv = tsleep(ray_report_params, 0|PCATCH, "cmd in use", 0);
if (rv)
return (rv);
if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
return (EIO);
}
}
pr->r_failcause = RAY_FAILCAUSE_WAITING;
sc->sc_repreq = pr;
ray_cmd_schedule(sc, SCP_REPORTPARAMS);
ray_check_scheduled(sc);
while (pr->r_failcause == RAY_FAILCAUSE_WAITING)
(void)tsleep(ray_report_params, 0, "waiting cmd", 0);
wakeup(ray_report_params);
return (0);
}
/*
* this is a temporary wrapper around bus_space_read_region_1
* as it seems to mess with gcc. the line numbers get offset
* presumably this is related to the inline asm on i386.
*/
#ifndef ray_read_region
void
ray_read_region(struct ray_softc *sc, bus_size_t off, void *vp, size_t c)
{
#ifdef RAY_USE_OPTIMIZED_COPY
u_int n2, n4, tmp;
u_int8_t *p;
p = vp;
/* XXX we may be making poor assumptions here but lets hope */
switch ((off|(bus_addr_t)p) & 0x03) {
case 0:
if ((n4 = c / 4)) {
bus_space_read_region_4(sc->sc_memt, sc->sc_memh, off,
p, n4);
tmp = c & ~0x3;
c &= 0x3;
p += tmp;
off += tmp;
}
switch (c) {
case 3:
*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
p++, off++;
case 2:
*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
p++, off++;
case 1:
*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
}
break;
case 2:
if ((n2 = (c >> 1)))
bus_space_read_region_2(sc->sc_memt, sc->sc_memh, off,
p, n2);
if (c & 1) {
c &= ~0x1;
*(p + c) = bus_space_read_1(sc->sc_memt, sc->sc_memh,
off + c);
}
break;
case 1:
case 3:
bus_space_read_region_1(sc->sc_memt, sc->sc_memh, off, p, c);
break;
}
#else
bus_space_read_region_1(sc->sc_memt, sc->sc_memh, off, vp, c);
#endif
}
#endif
#ifndef ray_write_region
/*
* this is a temporary wrapper around bus_space_write_region_1
* as it seems to mess with gcc. the line numbers get offset
* presumably this is related to the inline asm on i386.
*/
void
ray_write_region(struct ray_softc *sc, bus_size_t off, void *vp, size_t c)
{
#ifdef RAY_USE_OPTIMIZED_COPY
size_t n2, n4, tmp;
u_int8_t *p;
p = vp;
/* XXX we may be making poor assumptions here but lets hope */
switch ((off|(bus_addr_t)p) & 0x03) {
case 0:
if ((n4 = (c >> 2))) {
bus_space_write_region_4(sc->sc_memt, sc->sc_memh, off,
p, n4);
tmp = c & ~0x3;
c &= 0x3;
p += tmp;
off += tmp;
}
switch (c) {
case 3:
bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
p++, off++;
case 2:
bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
p++, off++;
case 1:
bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
}
break;
case 2:
if ((n2 = (c >> 1)))
bus_space_write_region_2(sc->sc_memt, sc->sc_memh, off,
p, n2);
if (c & 0x1) {
c &= ~0x1;
bus_space_write_1(sc->sc_memt, sc->sc_memh,
off + c, *(p + c));
}
break;
case 1:
case 3:
bus_space_write_region_1(sc->sc_memt, sc->sc_memh, off, p, c);
break;
}
#else
bus_space_write_region_1(sc->sc_memt, sc->sc_memh, off, vp, c);
#endif
}
#endif
#ifdef RAY_DEBUG
#define PRINTABLE(c) ((c) >= 0x20 && (c) <= 0x7f)
void
hexdump(const u_int8_t *d, int len, int br, int div, int fl)
{
int i, j, offw, first, tlen, ni, nj, sp;
sp = br / div;
offw = 0;
if (len && (fl & HEXDF_NOOFFSET) == 0) {
tlen = len;
do {
offw++;
} while (tlen /= br);
}
if (offw)
printf("%0*x: ", offw, 0);
for (i = 0; i < len; i++, d++) {
if (i && (i % br) == 0) {
if ((fl & HEXDF_NOASCII) == 0) {
printf(" ");
d -= br;
for (j = 0; j < br; d++, j++) {
if (j && (j % sp) == 0)
printf(" ");
if (PRINTABLE(*d))
printf("%c", (int)*d);
else
printf(".");
}
}
if (offw)
printf("\n%0*x: ", offw, i);
else
printf("\n");
if ((fl & HEXDF_NOCOMPRESS) == 0) {
first = 1;
while (len - i >= br) {
if (memcmp(d, d - br, br))
break;
d += br;
i += br;
if (first) {
printf("*");
first = 0;
}
}
if (len == i) {
printf("\n%0*x", offw, i);
return;
}
}
} else if (i && (i % sp) == 0)
printf(" ");
printf("%02x ", *d);
}
if (len && (((i - 1) % br) || i == 1)) {
if ((fl & HEXDF_NOASCII) == 0) {
i = i % br ? i % br : br;
ni = (br - i) % br;
j = (i - 1) / sp;
nj = (div - j - 1) % div;
j = 3 * ni + nj + 3;
printf("%*s", j, "");
d -= i;
for (j = 0; j < i; d++, j++) {
if (j && (j % sp) == 0)
printf(" ");
if (PRINTABLE(*d))
printf("%c", (int)*d);
else
printf(".");
}
}
printf("\n");
}
}
void
ray_dump_mbuf(struct ray_softc *sc, struct mbuf *m)
{
u_int8_t *d, *ed;
u_int i;
printf("%s: pkt dump:", sc->sc_xname);
i = 0;
for (; m; m = m->m_next) {
d = mtod(m, u_int8_t *);
ed = d + m->m_len;
for (; d < ed; i++, d++) {
if ((i % 16) == 0)
printf("\n\t");
else if ((i % 8) == 0)
printf(" ");
printf(" %02x", *d);
}
}
if ((i - 1) % 16)
printf("\n");
}
#endif /* RAY_DEBUG */
#ifdef RAY_DO_SIGLEV
void
ray_update_siglev(struct ray_softc *sc, u_int8_t *src, u_int8_t siglev)
{
int i, mini;
struct timeval mint;
struct ray_siglev *sl;
/* try to find host */
for (i = 0; i < RAY_NSIGLEVRECS; i++) {
sl = &sc->sc_siglevs[i];
if (memcmp(sl->rsl_host, src, ETHER_ADDR_LEN) == 0)
goto found;
}
/* not found, find oldest slot */
mini = 0;
mint.tv_sec = LONG_MAX;
mint.tv_usec = 0;
for (i = 0; i < RAY_NSIGLEVRECS; i++) {
sl = &sc->sc_siglevs[i];
if (timercmp(&sl->rsl_time, &mint, <)) {
mini = i;
mint = sl->rsl_time;
}
}
sl = &sc->sc_siglevs[mini];
memset(sl->rsl_siglevs, 0, RAY_NSIGLEV);
memcpy(sl->rsl_host, src, ETHER_ADDR_LEN);
found:
microtime(&sl->rsl_time);
memmove(&sl->rsl_siglevs[1], sl->rsl_siglevs, RAY_NSIGLEV-1);
sl->rsl_siglevs[0] = siglev;
}
#endif
|