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
|
/*
* Custom OID/ioctl definitions for
* Broadcom 802.11abg Networking Device Driver
*
* Definitions subject to change without notice.
*
* Copyright (C) 1999-2010, Broadcom Corporation
*
* Unless you and Broadcom execute a separate written software license
* agreement governing use of this software, this software is licensed to you
* under the terms of the GNU General Public License version 2 (the "GPL"),
* available at http://www.broadcom.com/licenses/GPLv2.php, with the
* following added to such license:
*
* As a special exception, the copyright holders of this software give you
* permission to link this software with independent modules, and to copy and
* distribute the resulting executable under terms of your choice, provided that
* you also meet, for each linked independent module, the terms and conditions of
* the license of that module. An independent module is a module which is not
* derived from this software. The special exception does not apply to any
* modifications of the software.
*
* Notwithstanding the above, under no circumstances may you combine this
* software in any way with any other Broadcom software provided under a license
* other than the GPL, without Broadcom's express prior written consent.
*
* $Id: wlioctl.h,v 1.601.4.15.2.14.2.62.4.3 2011/02/09 23:31:02 Exp $
*/
#ifndef _wlioctl_h_
#define _wlioctl_h_
#include <typedefs.h>
#include <proto/ethernet.h>
#include <proto/bcmeth.h>
#include <proto/bcmevent.h>
#include <proto/802.11.h>
#include <bcmwifi.h>
#define ACTION_FRAME_SIZE 1040
typedef struct wl_action_frame {
struct ether_addr da;
uint16 len;
uint32 packetId;
uint8 data[ACTION_FRAME_SIZE];
} wl_action_frame_t;
#define WL_WIFI_ACTION_FRAME_SIZE sizeof(struct wl_action_frame)
#define BWL_DEFAULT_PACKING
#include <packed_section_start.h>
#define RWL_ACTION_WIFI_CATEGORY 127
#define RWL_WIFI_OUI_BYTE1 0x90
#define RWL_WIFI_OUI_BYTE2 0x4C
#define RWL_WIFI_OUI_BYTE3 0x0F
#define RWL_WIFI_ACTION_FRAME_SIZE sizeof(struct dot11_action_wifi_vendor_specific)
#define RWL_WIFI_DEFAULT 0x00
#define RWL_WIFI_FIND_MY_PEER 0x09
#define RWL_WIFI_FOUND_PEER 0x0A
#define RWL_ACTION_WIFI_FRAG_TYPE 0x55
typedef struct ssid_info
{
uint8 ssid_len;
uint8 ssid[32];
} ssid_info_t;
typedef struct cnt_rx
{
uint32 cnt_rxundec;
uint32 cnt_rxframe;
} cnt_rx_t;
#define RWL_REF_MAC_ADDRESS_OFFSET 17
#define RWL_DUT_MAC_ADDRESS_OFFSET 23
#define RWL_WIFI_CLIENT_CHANNEL_OFFSET 50
#define RWL_WIFI_SERVER_CHANNEL_OFFSET 51
#define WL_BSS_INFO_VERSION 108
typedef struct wl_bss_info {
uint32 version;
uint32 length;
struct ether_addr BSSID;
uint16 beacon_period;
uint16 capability;
uint8 SSID_len;
uint8 SSID[32];
struct {
uint count;
uint8 rates[16];
} rateset;
chanspec_t chanspec;
uint16 atim_window;
uint8 dtim_period;
int16 RSSI;
int8 phy_noise;
uint8 n_cap;
uint32 nbss_cap;
uint8 ctl_ch;
uint32 reserved32[1];
uint8 flags;
uint8 reserved[3];
uint8 basic_mcs[MCSSET_LEN];
uint16 ie_offset;
uint32 ie_length;
} wl_bss_info_t;
typedef struct wlc_ssid {
uint32 SSID_len;
uchar SSID[32];
} wlc_ssid_t;
#define WL_BSSTYPE_INFRA 1
#define WL_BSSTYPE_INDEP 0
#define WL_BSSTYPE_ANY 2
#define WL_SCANFLAGS_PASSIVE 0x01
#define WL_SCANFLAGS_PROHIBITED 0x04
typedef struct wl_scan_params {
wlc_ssid_t ssid;
struct ether_addr bssid;
int8 bss_type;
int8 scan_type;
int32 nprobes;
int32 active_time;
int32 passive_time;
int32 home_time;
int32 channel_num;
uint16 channel_list[1];
} wl_scan_params_t;
#define WL_SCAN_PARAMS_FIXED_SIZE 64
#define WL_SCAN_PARAMS_COUNT_MASK 0x0000ffff
#define WL_SCAN_PARAMS_NSSID_SHIFT 16
#define WL_SCAN_ACTION_START 1
#define WL_SCAN_ACTION_CONTINUE 2
#define WL_SCAN_ACTION_ABORT 3
#define ISCAN_REQ_VERSION 1
typedef struct wl_iscan_params {
uint32 version;
uint16 action;
uint16 scan_duration;
wl_scan_params_t params;
} wl_iscan_params_t;
#define WL_ISCAN_PARAMS_FIXED_SIZE (OFFSETOF(wl_iscan_params_t, params) + sizeof(wlc_ssid_t))
typedef struct wl_scan_results {
uint32 buflen;
uint32 version;
uint32 count;
wl_bss_info_t bss_info[1];
} wl_scan_results_t;
#define WL_SCAN_RESULTS_FIXED_SIZE 12
#define WL_SCAN_RESULTS_SUCCESS 0
#define WL_SCAN_RESULTS_PARTIAL 1
#define WL_SCAN_RESULTS_PENDING 2
#define WL_SCAN_RESULTS_ABORTED 3
#define WL_SCAN_RESULTS_NO_MEM 4
#define ESCAN_REQ_VERSION 1
typedef struct wl_escan_params {
uint32 version;
uint16 action;
uint16 sync_id;
wl_scan_params_t params;
} wl_escan_params_t;
#define WL_ESCAN_PARAMS_FIXED_SIZE (OFFSETOF(wl_escan_params_t, params) + sizeof(wlc_ssid_t))
typedef struct wl_escan_result {
uint32 buflen;
uint32 version;
uint16 sync_id;
uint16 bss_count;
wl_bss_info_t bss_info[1];
} wl_escan_result_t;
#define WL_ESCAN_RESULTS_FIXED_SIZE (sizeof(wl_escan_result_t) - sizeof(wl_bss_info_t))
typedef struct wl_iscan_results {
uint32 status;
wl_scan_results_t results;
} wl_iscan_results_t;
#define WL_ISCAN_RESULTS_FIXED_SIZE \
(WL_SCAN_RESULTS_FIXED_SIZE + OFFSETOF(wl_iscan_results_t, results))
#define WL_NUMRATES 16
typedef struct wl_rateset {
uint32 count;
uint8 rates[WL_NUMRATES];
} wl_rateset_t;
typedef struct wl_uint32_list {
uint32 count;
uint32 element[1];
} wl_uint32_list_t;
typedef struct wl_assoc_params {
struct ether_addr bssid;
uint16 bssid_cnt;
int32 chanspec_num;
chanspec_t chanspec_list[1];
} wl_assoc_params_t;
#define WL_ASSOC_PARAMS_FIXED_SIZE (sizeof(wl_assoc_params_t) - sizeof(chanspec_t))
typedef wl_assoc_params_t wl_reassoc_params_t;
#define WL_REASSOC_PARAMS_FIXED_SIZE WL_ASSOC_PARAMS_FIXED_SIZE
typedef struct wl_join_params {
wlc_ssid_t ssid;
wl_assoc_params_t params;
} wl_join_params_t;
#define WL_JOIN_PARAMS_FIXED_SIZE (sizeof(wl_join_params_t) - sizeof(chanspec_t))
#define WLC_CNTRY_BUF_SZ 4
typedef struct wl_country {
char country_abbrev[WLC_CNTRY_BUF_SZ];
int32 rev;
char ccode[WLC_CNTRY_BUF_SZ];
} wl_country_t;
typedef enum sup_auth_status {
WLC_SUP_DISCONNECTED = 0,
WLC_SUP_CONNECTING,
WLC_SUP_IDREQUIRED,
WLC_SUP_AUTHENTICATING,
WLC_SUP_AUTHENTICATED,
WLC_SUP_KEYXCHANGE,
WLC_SUP_KEYED,
WLC_SUP_TIMEOUT,
WLC_SUP_LAST_BASIC_STATE,
WLC_SUP_KEYXCHANGE_WAIT_M1 = WLC_SUP_AUTHENTICATED,
WLC_SUP_KEYXCHANGE_PREP_M2 = WLC_SUP_KEYXCHANGE,
WLC_SUP_KEYXCHANGE_WAIT_M3 = WLC_SUP_LAST_BASIC_STATE,
WLC_SUP_KEYXCHANGE_PREP_M4,
WLC_SUP_KEYXCHANGE_WAIT_G1,
WLC_SUP_KEYXCHANGE_PREP_G2
} sup_auth_status_t;
#define CRYPTO_ALGO_OFF 0
#define CRYPTO_ALGO_WEP1 1
#define CRYPTO_ALGO_TKIP 2
#define CRYPTO_ALGO_WEP128 3
#define CRYPTO_ALGO_AES_CCM 4
#define CRYPTO_ALGO_AES_OCB_MSDU 5
#define CRYPTO_ALGO_AES_OCB_MPDU 6
#define CRYPTO_ALGO_NALG 7
#define CRYPTO_ALGO_SMS4 11
#define WSEC_GEN_MIC_ERROR 0x0001
#define WSEC_GEN_REPLAY 0x0002
#define WSEC_GEN_ICV_ERROR 0x0004
#define WL_SOFT_KEY (1 << 0)
#define WL_PRIMARY_KEY (1 << 1)
#define WL_KF_RES_4 (1 << 4)
#define WL_KF_RES_5 (1 << 5)
#define WL_IBSS_PEER_GROUP_KEY (1 << 6)
typedef struct wl_wsec_key {
uint32 index;
uint32 len;
uint8 data[DOT11_MAX_KEY_SIZE];
uint32 pad_1[18];
uint32 algo;
uint32 flags;
uint32 pad_2[2];
int pad_3;
int iv_initialized;
int pad_4;
struct {
uint32 hi;
uint16 lo;
} rxiv;
uint32 pad_5[2];
struct ether_addr ea;
} wl_wsec_key_t;
#define WSEC_MIN_PSK_LEN 8
#define WSEC_MAX_PSK_LEN 64
#define WSEC_PASSPHRASE (1<<0)
typedef struct {
ushort key_len;
ushort flags;
uint8 key[WSEC_MAX_PSK_LEN];
} wsec_pmk_t;
#define WEP_ENABLED 0x0001
#define TKIP_ENABLED 0x0002
#define AES_ENABLED 0x0004
#define WSEC_SWFLAG 0x0008
#define SES_OW_ENABLED 0x0040
#define SMS4_ENABLED 0x0100
#define WPA_AUTH_DISABLED 0x0000
#define WPA_AUTH_NONE 0x0001
#define WPA_AUTH_UNSPECIFIED 0x0002
#define WPA_AUTH_PSK 0x0004
#define WPA2_AUTH_UNSPECIFIED 0x0040
#define WPA2_AUTH_PSK 0x0080
#define BRCM_AUTH_PSK 0x0100
#define BRCM_AUTH_DPT 0x0200
#define WPA_AUTH_WAPI 0x0400
#define WPA_AUTH_PFN_ANY 0xffffffff
#define MAXPMKID 16
typedef struct _pmkid {
struct ether_addr BSSID;
uint8 PMKID[WPA2_PMKID_LEN];
} pmkid_t;
typedef struct _pmkid_list {
uint32 npmkid;
pmkid_t pmkid[1];
} pmkid_list_t;
typedef struct _pmkid_cand {
struct ether_addr BSSID;
uint8 preauth;
} pmkid_cand_t;
typedef struct _pmkid_cand_list {
uint32 npmkid_cand;
pmkid_cand_t pmkid_cand[1];
} pmkid_cand_list_t;
typedef struct {
uint32 val;
struct ether_addr ea;
} scb_val_t;
typedef struct channel_info {
int hw_channel;
int target_channel;
int scan_channel;
} channel_info_t;
struct maclist {
uint count;
struct ether_addr ea[1];
};
typedef struct get_pktcnt {
uint rx_good_pkt;
uint rx_bad_pkt;
uint tx_good_pkt;
uint tx_bad_pkt;
uint rx_ocast_good_pkt;
} get_pktcnt_t;
typedef struct wl_ioctl {
uint cmd;
void *buf;
uint len;
uint8 set;
uint used;
uint needed;
} wl_ioctl_t;
#define WLC_IOCTL_MAGIC 0x14e46c77
#define WLC_IOCTL_VERSION 1
#define WLC_IOCTL_MAXLEN 8192
#define WLC_IOCTL_SMLEN 256
#define WLC_IOCTL_MEDLEN 1536
#define WLC_GET_MAGIC 0
#define WLC_GET_VERSION 1
#define WLC_UP 2
#define WLC_DOWN 3
#define WLC_GET_LOOP 4
#define WLC_SET_LOOP 5
#define WLC_DUMP 6
#define WLC_GET_MSGLEVEL 7
#define WLC_SET_MSGLEVEL 8
#define WLC_GET_PROMISC 9
#define WLC_SET_PROMISC 10
#define WLC_GET_RATE 12
#define WLC_GET_INSTANCE 14
#define WLC_GET_INFRA 19
#define WLC_SET_INFRA 20
#define WLC_GET_AUTH 21
#define WLC_SET_AUTH 22
#define WLC_GET_BSSID 23
#define WLC_SET_BSSID 24
#define WLC_GET_SSID 25
#define WLC_SET_SSID 26
#define WLC_RESTART 27
#define WLC_GET_CHANNEL 29
#define WLC_SET_CHANNEL 30
#define WLC_GET_SRL 31
#define WLC_SET_SRL 32
#define WLC_GET_LRL 33
#define WLC_SET_LRL 34
#define WLC_GET_PLCPHDR 35
#define WLC_SET_PLCPHDR 36
#define WLC_GET_RADIO 37
#define WLC_SET_RADIO 38
#define WLC_GET_PHYTYPE 39
#define WLC_DUMP_RATE 40
#define WLC_SET_RATE_PARAMS 41
#define WLC_GET_KEY 44
#define WLC_SET_KEY 45
#define WLC_GET_REGULATORY 46
#define WLC_SET_REGULATORY 47
#define WLC_GET_PASSIVE_SCAN 48
#define WLC_SET_PASSIVE_SCAN 49
#define WLC_SCAN 50
#define WLC_SCAN_RESULTS 51
#define WLC_DISASSOC 52
#define WLC_REASSOC 53
#define WLC_GET_ROAM_TRIGGER 54
#define WLC_SET_ROAM_TRIGGER 55
#define WLC_GET_ROAM_DELTA 56
#define WLC_SET_ROAM_DELTA 57
#define WLC_GET_ROAM_SCAN_PERIOD 58
#define WLC_SET_ROAM_SCAN_PERIOD 59
#define WLC_EVM 60
#define WLC_GET_TXANT 61
#define WLC_SET_TXANT 62
#define WLC_GET_ANTDIV 63
#define WLC_SET_ANTDIV 64
#define WLC_GET_CLOSED 67
#define WLC_SET_CLOSED 68
#define WLC_GET_MACLIST 69
#define WLC_SET_MACLIST 70
#define WLC_GET_RATESET 71
#define WLC_SET_RATESET 72
#define WLC_LONGTRAIN 74
#define WLC_GET_BCNPRD 75
#define WLC_SET_BCNPRD 76
#define WLC_GET_DTIMPRD 77
#define WLC_SET_DTIMPRD 78
#define WLC_GET_SROM 79
#define WLC_SET_SROM 80
#define WLC_GET_WEP_RESTRICT 81
#define WLC_SET_WEP_RESTRICT 82
#define WLC_GET_COUNTRY 83
#define WLC_SET_COUNTRY 84
#define WLC_GET_PM 85
#define WLC_SET_PM 86
#define WLC_GET_WAKE 87
#define WLC_SET_WAKE 88
#define WLC_GET_FORCELINK 90
#define WLC_SET_FORCELINK 91
#define WLC_FREQ_ACCURACY 92
#define WLC_CARRIER_SUPPRESS 93
#define WLC_GET_PHYREG 94
#define WLC_SET_PHYREG 95
#define WLC_GET_RADIOREG 96
#define WLC_SET_RADIOREG 97
#define WLC_GET_REVINFO 98
#define WLC_GET_UCANTDIV 99
#define WLC_SET_UCANTDIV 100
#define WLC_R_REG 101
#define WLC_W_REG 102
#define WLC_GET_MACMODE 105
#define WLC_SET_MACMODE 106
#define WLC_GET_MONITOR 107
#define WLC_SET_MONITOR 108
#define WLC_GET_GMODE 109
#define WLC_SET_GMODE 110
#define WLC_GET_LEGACY_ERP 111
#define WLC_SET_LEGACY_ERP 112
#define WLC_GET_RX_ANT 113
#define WLC_GET_CURR_RATESET 114
#define WLC_GET_SCANSUPPRESS 115
#define WLC_SET_SCANSUPPRESS 116
#define WLC_GET_AP 117
#define WLC_SET_AP 118
#define WLC_GET_EAP_RESTRICT 119
#define WLC_SET_EAP_RESTRICT 120
#define WLC_SCB_AUTHORIZE 121
#define WLC_SCB_DEAUTHORIZE 122
#define WLC_GET_WDSLIST 123
#define WLC_SET_WDSLIST 124
#define WLC_GET_ATIM 125
#define WLC_SET_ATIM 126
#define WLC_GET_RSSI 127
#define WLC_GET_PHYANTDIV 128
#define WLC_SET_PHYANTDIV 129
#define WLC_AP_RX_ONLY 130
#define WLC_GET_TX_PATH_PWR 131
#define WLC_SET_TX_PATH_PWR 132
#define WLC_GET_WSEC 133
#define WLC_SET_WSEC 134
#define WLC_GET_PHY_NOISE 135
#define WLC_GET_BSS_INFO 136
#define WLC_GET_PKTCNTS 137
#define WLC_GET_LAZYWDS 138
#define WLC_SET_LAZYWDS 139
#define WLC_GET_BANDLIST 140
#define WLC_GET_BAND 141
#define WLC_SET_BAND 142
#define WLC_SCB_DEAUTHENTICATE 143
#define WLC_GET_SHORTSLOT 144
#define WLC_GET_SHORTSLOT_OVERRIDE 145
#define WLC_SET_SHORTSLOT_OVERRIDE 146
#define WLC_GET_SHORTSLOT_RESTRICT 147
#define WLC_SET_SHORTSLOT_RESTRICT 148
#define WLC_GET_GMODE_PROTECTION 149
#define WLC_GET_GMODE_PROTECTION_OVERRIDE 150
#define WLC_SET_GMODE_PROTECTION_OVERRIDE 151
#define WLC_UPGRADE 152
#define WLC_GET_IGNORE_BCNS 155
#define WLC_SET_IGNORE_BCNS 156
#define WLC_GET_SCB_TIMEOUT 157
#define WLC_SET_SCB_TIMEOUT 158
#define WLC_GET_ASSOCLIST 159
#define WLC_GET_CLK 160
#define WLC_SET_CLK 161
#define WLC_GET_UP 162
#define WLC_OUT 163
#define WLC_GET_WPA_AUTH 164
#define WLC_SET_WPA_AUTH 165
#define WLC_GET_UCFLAGS 166
#define WLC_SET_UCFLAGS 167
#define WLC_GET_PWRIDX 168
#define WLC_SET_PWRIDX 169
#define WLC_GET_TSSI 170
#define WLC_GET_SUP_RATESET_OVERRIDE 171
#define WLC_SET_SUP_RATESET_OVERRIDE 172
#define WLC_GET_PROTECTION_CONTROL 178
#define WLC_SET_PROTECTION_CONTROL 179
#define WLC_GET_PHYLIST 180
#define WLC_ENCRYPT_STRENGTH 181
#define WLC_DECRYPT_STATUS 182
#define WLC_GET_KEY_SEQ 183
#define WLC_GET_SCAN_CHANNEL_TIME 184
#define WLC_SET_SCAN_CHANNEL_TIME 185
#define WLC_GET_SCAN_UNASSOC_TIME 186
#define WLC_SET_SCAN_UNASSOC_TIME 187
#define WLC_GET_SCAN_HOME_TIME 188
#define WLC_SET_SCAN_HOME_TIME 189
#define WLC_GET_SCAN_NPROBES 190
#define WLC_SET_SCAN_NPROBES 191
#define WLC_GET_PRB_RESP_TIMEOUT 192
#define WLC_SET_PRB_RESP_TIMEOUT 193
#define WLC_GET_ATTEN 194
#define WLC_SET_ATTEN 195
#define WLC_GET_SHMEM 196
#define WLC_SET_SHMEM 197
#define WLC_SET_WSEC_TEST 200
#define WLC_SCB_DEAUTHENTICATE_FOR_REASON 201
#define WLC_TKIP_COUNTERMEASURES 202
#define WLC_GET_PIOMODE 203
#define WLC_SET_PIOMODE 204
#define WLC_SET_ASSOC_PREFER 205
#define WLC_GET_ASSOC_PREFER 206
#define WLC_SET_ROAM_PREFER 207
#define WLC_GET_ROAM_PREFER 208
#define WLC_SET_LED 209
#define WLC_GET_LED 210
#define WLC_GET_INTERFERENCE_MODE 211
#define WLC_SET_INTERFERENCE_MODE 212
#define WLC_GET_CHANNEL_QA 213
#define WLC_START_CHANNEL_QA 214
#define WLC_GET_CHANNEL_SEL 215
#define WLC_START_CHANNEL_SEL 216
#define WLC_GET_VALID_CHANNELS 217
#define WLC_GET_FAKEFRAG 218
#define WLC_SET_FAKEFRAG 219
#define WLC_GET_PWROUT_PERCENTAGE 220
#define WLC_SET_PWROUT_PERCENTAGE 221
#define WLC_SET_BAD_FRAME_PREEMPT 222
#define WLC_GET_BAD_FRAME_PREEMPT 223
#define WLC_SET_LEAP_LIST 224
#define WLC_GET_LEAP_LIST 225
#define WLC_GET_CWMIN 226
#define WLC_SET_CWMIN 227
#define WLC_GET_CWMAX 228
#define WLC_SET_CWMAX 229
#define WLC_GET_WET 230
#define WLC_SET_WET 231
#define WLC_GET_PUB 232
#define WLC_GET_KEY_PRIMARY 235
#define WLC_SET_KEY_PRIMARY 236
#define WLC_GET_ACI_ARGS 238
#define WLC_SET_ACI_ARGS 239
#define WLC_UNSET_CALLBACK 240
#define WLC_SET_CALLBACK 241
#define WLC_GET_RADAR 242
#define WLC_SET_RADAR 243
#define WLC_SET_SPECT_MANAGMENT 244
#define WLC_GET_SPECT_MANAGMENT 245
#define WLC_WDS_GET_REMOTE_HWADDR 246
#define WLC_WDS_GET_WPA_SUP 247
#define WLC_SET_CS_SCAN_TIMER 248
#define WLC_GET_CS_SCAN_TIMER 249
#define WLC_MEASURE_REQUEST 250
#define WLC_INIT 251
#define WLC_SEND_QUIET 252
#define WLC_KEEPALIVE 253
#define WLC_SEND_PWR_CONSTRAINT 254
#define WLC_UPGRADE_STATUS 255
#define WLC_CURRENT_PWR 256
#define WLC_GET_SCAN_PASSIVE_TIME 257
#define WLC_SET_SCAN_PASSIVE_TIME 258
#define WLC_LEGACY_LINK_BEHAVIOR 259
#define WLC_GET_CHANNELS_IN_COUNTRY 260
#define WLC_GET_COUNTRY_LIST 261
#define WLC_GET_VAR 262
#define WLC_SET_VAR 263
#define WLC_NVRAM_GET 264
#define WLC_NVRAM_SET 265
#define WLC_NVRAM_DUMP 266
#define WLC_REBOOT 267
#define WLC_SET_WSEC_PMK 268
#define WLC_GET_AUTH_MODE 269
#define WLC_SET_AUTH_MODE 270
#define WLC_GET_WAKEENTRY 271
#define WLC_SET_WAKEENTRY 272
#define WLC_NDCONFIG_ITEM 273
#define WLC_NVOTPW 274
#define WLC_OTPW 275
#define WLC_IOV_BLOCK_GET 276
#define WLC_IOV_MODULES_GET 277
#define WLC_SOFT_RESET 278
#define WLC_GET_ALLOW_MODE 279
#define WLC_SET_ALLOW_MODE 280
#define WLC_GET_DESIRED_BSSID 281
#define WLC_SET_DESIRED_BSSID 282
#define WLC_DISASSOC_MYAP 283
#define WLC_GET_NBANDS 284
#define WLC_GET_BANDSTATES 285
#define WLC_GET_WLC_BSS_INFO 286
#define WLC_GET_ASSOC_INFO 287
#define WLC_GET_OID_PHY 288
#define WLC_SET_OID_PHY 289
#define WLC_SET_ASSOC_TIME 290
#define WLC_GET_DESIRED_SSID 291
#define WLC_GET_CHANSPEC 292
#define WLC_GET_ASSOC_STATE 293
#define WLC_SET_PHY_STATE 294
#define WLC_GET_SCAN_PENDING 295
#define WLC_GET_SCANREQ_PENDING 296
#define WLC_GET_PREV_ROAM_REASON 297
#define WLC_SET_PREV_ROAM_REASON 298
#define WLC_GET_BANDSTATES_PI 299
#define WLC_GET_PHY_STATE 300
#define WLC_GET_BSS_WPA_RSN 301
#define WLC_GET_BSS_WPA2_RSN 302
#define WLC_GET_BSS_BCN_TS 303
#define WLC_GET_INT_DISASSOC 304
#define WLC_SET_NUM_PEERS 305
#define WLC_GET_NUM_BSS 306
#define WLC_LAST 307
#define WL_RADIO_SW_DISABLE (1<<0)
#define WL_RADIO_HW_DISABLE (1<<1)
#define WL_RADIO_MPC_DISABLE (1<<2)
#define WL_RADIO_COUNTRY_DISABLE (1<<3)
#define WL_TXPWR_OVERRIDE (1U<<31)
#define WL_PHY_PAVARS_LEN 6
#define WL_DIAG_INTERRUPT 1
#define WL_DIAG_LOOPBACK 2
#define WL_DIAG_MEMORY 3
#define WL_DIAG_LED 4
#define WL_DIAG_REG 5
#define WL_DIAG_SROM 6
#define WL_DIAG_DMA 7
#define WL_DIAGERR_SUCCESS 0
#define WL_DIAGERR_FAIL_TO_RUN 1
#define WL_DIAGERR_NOT_SUPPORTED 2
#define WL_DIAGERR_INTERRUPT_FAIL 3
#define WL_DIAGERR_LOOPBACK_FAIL 4
#define WL_DIAGERR_SROM_FAIL 5
#define WL_DIAGERR_SROM_BADCRC 6
#define WL_DIAGERR_REG_FAIL 7
#define WL_DIAGERR_MEMORY_FAIL 8
#define WL_DIAGERR_NOMEM 9
#define WL_DIAGERR_DMA_FAIL 10
#define WL_DIAGERR_MEMORY_TIMEOUT 11
#define WL_DIAGERR_MEMORY_BADPATTERN 12
#define WLC_BAND_AUTO 0
#define WLC_BAND_5G 1
#define WLC_BAND_2G 2
#define WLC_BAND_ALL 3
#define WL_CHAN_FREQ_RANGE_2G 0
#define WL_CHAN_FREQ_RANGE_5GL 1
#define WL_CHAN_FREQ_RANGE_5GM 2
#define WL_CHAN_FREQ_RANGE_5GH 3
#define WLC_PHY_TYPE_A 0
#define WLC_PHY_TYPE_B 1
#define WLC_PHY_TYPE_G 2
#define WLC_PHY_TYPE_N 4
#define WLC_PHY_TYPE_LP 5
#define WLC_PHY_TYPE_SSN 6
#define WLC_PHY_TYPE_NULL 0xf
#define WLC_MACMODE_DISABLED 0
#define WLC_MACMODE_DENY 1
#define WLC_MACMODE_ALLOW 2
#define GMODE_LEGACY_B 0
#define GMODE_AUTO 1
#define GMODE_ONLY 2
#define GMODE_B_DEFERRED 3
#define GMODE_PERFORMANCE 4
#define GMODE_LRS 5
#define GMODE_MAX 6
#define WLC_PLCP_AUTO -1
#define WLC_PLCP_SHORT 0
#define WLC_PLCP_LONG 1
#define WLC_PROTECTION_AUTO -1
#define WLC_PROTECTION_OFF 0
#define WLC_PROTECTION_ON 1
#define WLC_PROTECTION_MMHDR_ONLY 2
#define WLC_PROTECTION_CTS_ONLY 3
#define WLC_PROTECTION_CTL_OFF 0
#define WLC_PROTECTION_CTL_LOCAL 1
#define WLC_PROTECTION_CTL_OVERLAP 2
#define WLC_N_PROTECTION_OFF 0
#define WLC_N_PROTECTION_OPTIONAL 1
#define WLC_N_PROTECTION_20IN40 2
#define WLC_N_PROTECTION_MIXEDMODE 3
#define WLC_N_PREAMBLE_MIXEDMODE 0
#define WLC_N_PREAMBLE_GF 1
#define WLC_N_BW_20ALL 0
#define WLC_N_BW_40ALL 1
#define WLC_N_BW_20IN2G_40IN5G 2
#define WLC_N_TXRX_CHAIN0 0
#define WLC_N_TXRX_CHAIN1 1
#define WLC_N_SGI_20 0x01
#define WLC_N_SGI_40 0x02
#define PM_OFF 0
#define PM_MAX 1
#define PM_FAST 2
#define LISTEN_INTERVAL 20
#define INTERFERE_NONE 0
#define NON_WLAN 1
#define WLAN_MANUAL 2
#define WLAN_AUTO 3
#define AUTO_ACTIVE (1 << 7)
typedef struct wl_aci_args {
int enter_aci_thresh;
int exit_aci_thresh;
int usec_spin;
int glitch_delay;
uint16 nphy_adcpwr_enter_thresh;
uint16 nphy_adcpwr_exit_thresh;
uint16 nphy_repeat_ctr;
uint16 nphy_num_samples;
uint16 nphy_undetect_window_sz;
uint16 nphy_b_energy_lo_aci;
uint16 nphy_b_energy_md_aci;
uint16 nphy_b_energy_hi_aci;
} wl_aci_args_t;
#define WL_ACI_ARGS_LEGACY_LENGTH 16
#define WL_ERROR_VAL 0x00000001
#define WL_TRACE_VAL 0x00000002
#define WL_PRHDRS_VAL 0x00000004
#define WL_PRPKT_VAL 0x00000008
#define WL_INFORM_VAL 0x00000010
#define WL_TMP_VAL 0x00000020
#define WL_OID_VAL 0x00000040
#define WL_RATE_VAL 0x00000080
#define WL_ASSOC_VAL 0x00000100
#define WL_PRUSR_VAL 0x00000200
#define WL_PS_VAL 0x00000400
#define WL_TXPWR_VAL 0x00000800
#define WL_PORT_VAL 0x00001000
#define WL_DUAL_VAL 0x00002000
#define WL_WSEC_VAL 0x00004000
#define WL_WSEC_DUMP_VAL 0x00008000
#define WL_LOG_VAL 0x00010000
#define WL_NRSSI_VAL 0x00020000
#define WL_LOFT_VAL 0x00040000
#define WL_REGULATORY_VAL 0x00080000
#define WL_PHYCAL_VAL 0x00100000
#define WL_RADAR_VAL 0x00200000
#define WL_MPC_VAL 0x00400000
#define WL_APSTA_VAL 0x00800000
#define WL_DFS_VAL 0x01000000
#define WL_BA_VAL 0x02000000
#define WL_MBSS_VAL 0x04000000
#define WL_CAC_VAL 0x08000000
#define WL_AMSDU_VAL 0x10000000
#define WL_AMPDU_VAL 0x20000000
#define WL_FFPLD_VAL 0x40000000
#define WL_DPT_VAL 0x00000001
#define WL_SCAN_VAL 0x00000002
#define WL_WOWL_VAL 0x00000004
#define WL_COEX_VAL 0x00000008
#define WL_RTDC_VAL 0x00000010
#define WL_BTA_VAL 0x00000040
#define WL_LED_NUMGPIO 16
#define WL_LED_OFF 0
#define WL_LED_ON 1
#define WL_LED_ACTIVITY 2
#define WL_LED_RADIO 3
#define WL_LED_ARADIO 4
#define WL_LED_BRADIO 5
#define WL_LED_BGMODE 6
#define WL_LED_WI1 7
#define WL_LED_WI2 8
#define WL_LED_WI3 9
#define WL_LED_ASSOC 10
#define WL_LED_INACTIVE 11
#define WL_LED_ASSOCACT 12
#define WL_LED_NUMBEHAVIOR 13
#define WL_LED_BEH_MASK 0x7f
#define WL_LED_AL_MASK 0x80
#define WL_NUMCHANNELS 64
#define WL_NUMCHANSPECS 100
#define WL_WDS_WPA_ROLE_AUTH 0
#define WL_WDS_WPA_ROLE_SUP 1
#define WL_WDS_WPA_ROLE_AUTO 255
#define WL_EVENTING_MASK_LEN 16
#define VNDR_IE_CMD_LEN 4
#define VNDR_IE_BEACON_FLAG 0x1
#define VNDR_IE_PRBRSP_FLAG 0x2
#define VNDR_IE_ASSOCRSP_FLAG 0x4
#define VNDR_IE_AUTHRSP_FLAG 0x8
#define VNDR_IE_PRBREQ_FLAG 0x10
#define VNDR_IE_ASSOCREQ_FLAG 0x20
#define VNDR_IE_CUSTOM_FLAG 0x100
#define VNDR_IE_INFO_HDR_LEN (sizeof(uint32))
typedef struct {
uint32 pktflag;
vndr_ie_t vndr_ie_data;
} vndr_ie_info_t;
typedef struct {
int iecount;
vndr_ie_info_t vndr_ie_list[1];
} vndr_ie_buf_t;
typedef struct {
char cmd[VNDR_IE_CMD_LEN];
vndr_ie_buf_t vndr_ie_buffer;
} vndr_ie_setbuf_t;
#define WL_JOIN_PREF_RSSI 1
#define WL_JOIN_PREF_WPA 2
#define WL_JOIN_PREF_BAND 3
#define WLJP_BAND_ASSOC_PREF 255
#define WL_WPA_ACP_MCS_ANY "\x00\x00\x00\x00"
struct tsinfo_arg {
uint8 octets[3];
};
#define NFIFO 6
#define WL_CNT_T_VERSION 5
#define WL_CNT_EXT_T_VERSION 1
typedef struct {
uint16 version;
uint16 length;
uint32 txframe;
uint32 txbyte;
uint32 txretrans;
uint32 txerror;
uint32 txctl;
uint32 txprshort;
uint32 txserr;
uint32 txnobuf;
uint32 txnoassoc;
uint32 txrunt;
uint32 txchit;
uint32 txcmiss;
uint32 txuflo;
uint32 txphyerr;
uint32 txphycrs;
uint32 rxframe;
uint32 rxbyte;
uint32 rxerror;
uint32 rxctl;
uint32 rxnobuf;
uint32 rxnondata;
uint32 rxbadds;
uint32 rxbadcm;
uint32 rxfragerr;
uint32 rxrunt;
uint32 rxgiant;
uint32 rxnoscb;
uint32 rxbadproto;
uint32 rxbadsrcmac;
uint32 rxbadda;
uint32 rxfilter;
uint32 rxoflo;
uint32 rxuflo[NFIFO];
uint32 d11cnt_txrts_off;
uint32 d11cnt_rxcrc_off;
uint32 d11cnt_txnocts_off;
uint32 dmade;
uint32 dmada;
uint32 dmape;
uint32 reset;
uint32 tbtt;
uint32 txdmawar;
uint32 pkt_callback_reg_fail;
uint32 txallfrm;
uint32 txrtsfrm;
uint32 txctsfrm;
uint32 txackfrm;
uint32 txdnlfrm;
uint32 txbcnfrm;
uint32 txfunfl[8];
uint32 txtplunfl;
uint32 txphyerror;
uint32 rxfrmtoolong;
uint32 rxfrmtooshrt;
uint32 rxinvmachdr;
uint32 rxbadfcs;
uint32 rxbadplcp;
uint32 rxcrsglitch;
uint32 rxstrt;
uint32 rxdfrmucastmbss;
uint32 rxmfrmucastmbss;
uint32 rxcfrmucast;
uint32 rxrtsucast;
uint32 rxctsucast;
uint32 rxackucast;
uint32 rxdfrmocast;
uint32 rxmfrmocast;
uint32 rxcfrmocast;
uint32 rxrtsocast;
uint32 rxctsocast;
uint32 rxdfrmmcast;
uint32 rxmfrmmcast;
uint32 rxcfrmmcast;
uint32 rxbeaconmbss;
uint32 rxdfrmucastobss;
uint32 rxbeaconobss;
uint32 rxrsptmout;
uint32 bcntxcancl;
uint32 rxf0ovfl;
uint32 rxf1ovfl;
uint32 rxf2ovfl;
uint32 txsfovfl;
uint32 pmqovfl;
uint32 rxcgprqfrm;
uint32 rxcgprsqovfl;
uint32 txcgprsfail;
uint32 txcgprssuc;
uint32 prs_timeout;
uint32 rxnack;
uint32 frmscons;
uint32 txnack;
uint32 txglitch_nack;
uint32 txburst;
uint32 txfrag;
uint32 txmulti;
uint32 txfail;
uint32 txretry;
uint32 txretrie;
uint32 rxdup;
uint32 txrts;
uint32 txnocts;
uint32 txnoack;
uint32 rxfrag;
uint32 rxmulti;
uint32 rxcrc;
uint32 txfrmsnt;
uint32 rxundec;
uint32 tkipmicfaill;
uint32 tkipcntrmsr;
uint32 tkipreplay;
uint32 ccmpfmterr;
uint32 ccmpreplay;
uint32 ccmpundec;
uint32 fourwayfail;
uint32 wepundec;
uint32 wepicverr;
uint32 decsuccess;
uint32 tkipicverr;
uint32 wepexcluded;
uint32 txchanrej;
uint32 psmwds;
uint32 phywatchdog;
uint32 prq_entries_handled;
uint32 prq_undirected_entries;
uint32 prq_bad_entries;
uint32 atim_suppress_count;
uint32 bcn_template_not_ready;
uint32 bcn_template_not_ready_done;
uint32 late_tbtt_dpc;
uint32 rx1mbps;
uint32 rx2mbps;
uint32 rx5mbps5;
uint32 rx6mbps;
uint32 rx9mbps;
uint32 rx11mbps;
uint32 rx12mbps;
uint32 rx18mbps;
uint32 rx24mbps;
uint32 rx36mbps;
uint32 rx48mbps;
uint32 rx54mbps;
uint32 rx108mbps;
uint32 rx162mbps;
uint32 rx216mbps;
uint32 rx270mbps;
uint32 rx324mbps;
uint32 rx378mbps;
uint32 rx432mbps;
uint32 rx486mbps;
uint32 rx540mbps;
uint32 pktengrxducast;
uint32 pktengrxdmcast;
} wl_cnt_t;
typedef struct {
uint16 version;
uint16 length;
uint32 rxampdu_sgi;
uint32 rxampdu_stbc;
uint32 rxmpdu_sgi;
uint32 rxmpdu_stbc;
uint32 rxmcs0_40M;
uint32 rxmcs1_40M;
uint32 rxmcs2_40M;
uint32 rxmcs3_40M;
uint32 rxmcs4_40M;
uint32 rxmcs5_40M;
uint32 rxmcs6_40M;
uint32 rxmcs7_40M;
uint32 rxmcs32_40M;
uint32 txfrmsnt_20Mlo;
uint32 txfrmsnt_20Mup;
uint32 txfrmsnt_40M;
uint32 rx_20ul;
} wl_cnt_ext_t;
#define WL_RXDIV_STATS_T_VERSION 1
typedef struct {
uint16 version;
uint16 length;
uint32 rxant[4];
} wl_rxdiv_stats_t;
#define WL_DELTA_STATS_T_VERSION 1
typedef struct {
uint16 version;
uint16 length;
uint32 txframe;
uint32 txbyte;
uint32 txretrans;
uint32 txfail;
uint32 rxframe;
uint32 rxbyte;
uint32 rx1mbps;
uint32 rx2mbps;
uint32 rx5mbps5;
uint32 rx6mbps;
uint32 rx9mbps;
uint32 rx11mbps;
uint32 rx12mbps;
uint32 rx18mbps;
uint32 rx24mbps;
uint32 rx36mbps;
uint32 rx48mbps;
uint32 rx54mbps;
uint32 rx108mbps;
uint32 rx162mbps;
uint32 rx216mbps;
uint32 rx270mbps;
uint32 rx324mbps;
uint32 rx378mbps;
uint32 rx432mbps;
uint32 rx486mbps;
uint32 rx540mbps;
} wl_delta_stats_t;
#define WL_WME_CNT_VERSION 1
typedef struct {
uint32 packets;
uint32 bytes;
} wl_traffic_stats_t;
typedef struct {
uint16 version;
uint16 length;
wl_traffic_stats_t tx[AC_COUNT];
wl_traffic_stats_t tx_failed[AC_COUNT];
wl_traffic_stats_t rx[AC_COUNT];
wl_traffic_stats_t rx_failed[AC_COUNT];
wl_traffic_stats_t forward[AC_COUNT];
wl_traffic_stats_t tx_expired[AC_COUNT];
} wl_wme_cnt_t;
#define WLC_ROAM_TRIGGER_DEFAULT 0
#define WLC_ROAM_TRIGGER_BANDWIDTH 1
#define WLC_ROAM_TRIGGER_DISTANCE 2
#define WLC_ROAM_TRIGGER_MAX_VALUE 2
enum {
PFN_LIST_ORDER,
PFN_RSSI
};
enum {
DISABLE,
ENABLE
};
#define SORT_CRITERIA_BIT 0
#define AUTO_NET_SWITCH_BIT 1
#define ENABLE_BKGRD_SCAN_BIT 2
#define IMMEDIATE_SCAN_BIT 3
#define AUTO_CONNECT_BIT 4
#define ENABLE_BD_SCAN_BIT 5
#define ENABLE_ADAPTSCAN_BIT 6
#define SORT_CRITERIA_MASK 0x01
#define AUTO_NET_SWITCH_MASK 0x02
#define ENABLE_BKGRD_SCAN_MASK 0x04
#define IMMEDIATE_SCAN_MASK 0x08
#define AUTO_CONNECT_MASK 0x10
#define ENABLE_BD_SCAN_MASK 0x20
#define ENABLE_ADAPTSCAN_MASK 0x40
#define PFN_VERSION 1
#define MAX_PFN_LIST_COUNT 16
typedef struct wl_pfn_param {
int32 version;
int32 scan_freq;
int32 lost_network_timeout;
int16 flags;
int16 rssi_margin;
int32 repeat_scan;
int32 max_freq_adjust;
} wl_pfn_param_t;
typedef struct wl_pfn {
wlc_ssid_t ssid;
int32 bss_type;
int32 infra;
int32 auth;
uint32 wpa_auth;
int32 wsec;
} wl_pfn_t;
#define PNO_SCAN_MAX_FW 508*1000
#define PNO_SCAN_MAX_FW_SEC PNO_SCAN_MAX_FW/1000
#define PNO_SCAN_MIN_FW_SEC 10
#define TOE_TX_CSUM_OL 0x00000001
#define TOE_RX_CSUM_OL 0x00000002
#define TOE_ERRTEST_TX_CSUM 0x00000001
#define TOE_ERRTEST_RX_CSUM 0x00000002
#define TOE_ERRTEST_RX_CSUM2 0x00000004
struct toe_ol_stats_t {
uint32 tx_summed;
uint32 tx_iph_fill;
uint32 tx_tcp_fill;
uint32 tx_udp_fill;
uint32 tx_icmp_fill;
uint32 rx_iph_good;
uint32 rx_iph_bad;
uint32 rx_tcp_good;
uint32 rx_tcp_bad;
uint32 rx_udp_good;
uint32 rx_udp_bad;
uint32 rx_icmp_good;
uint32 rx_icmp_bad;
uint32 tx_tcp_errinj;
uint32 tx_udp_errinj;
uint32 tx_icmp_errinj;
uint32 rx_tcp_errinj;
uint32 rx_udp_errinj;
uint32 rx_icmp_errinj;
};
#define ARP_OL_AGENT 0x00000001
#define ARP_OL_SNOOP 0x00000002
#define ARP_OL_HOST_AUTO_REPLY 0x00000004
#define ARP_OL_PEER_AUTO_REPLY 0x00000008
#define ARP_ERRTEST_REPLY_PEER 0x1
#define ARP_ERRTEST_REPLY_HOST 0x2
#define ARP_MULTIHOMING_MAX 8
struct arp_ol_stats_t {
uint32 host_ip_entries;
uint32 host_ip_overflow;
uint32 arp_table_entries;
uint32 arp_table_overflow;
uint32 host_request;
uint32 host_reply;
uint32 host_service;
uint32 peer_request;
uint32 peer_request_drop;
uint32 peer_reply;
uint32 peer_reply_drop;
uint32 peer_service;
};
typedef struct wl_keep_alive_pkt {
uint32 period_msec;
uint16 len_bytes;
uint8 data[1];
} wl_keep_alive_pkt_t;
#define WL_KEEP_ALIVE_FIXED_LEN OFFSETOF(wl_keep_alive_pkt_t, data)
typedef enum wl_pkt_filter_type {
WL_PKT_FILTER_TYPE_PATTERN_MATCH
} wl_pkt_filter_type_t;
#define WL_PKT_FILTER_TYPE wl_pkt_filter_type_t
typedef struct wl_pkt_filter_pattern {
uint32 offset;
uint32 size_bytes;
uint8 mask_and_pattern[1];
} wl_pkt_filter_pattern_t;
typedef struct wl_pkt_filter {
uint32 id;
uint32 type;
uint32 negate_match;
union {
wl_pkt_filter_pattern_t pattern;
} u;
} wl_pkt_filter_t;
#define WL_PKT_FILTER_FIXED_LEN OFFSETOF(wl_pkt_filter_t, u)
#define WL_PKT_FILTER_PATTERN_FIXED_LEN OFFSETOF(wl_pkt_filter_pattern_t, mask_and_pattern)
typedef struct wl_pkt_filter_enable {
uint32 id;
uint32 enable;
} wl_pkt_filter_enable_t;
typedef struct wl_pkt_filter_list {
uint32 num;
wl_pkt_filter_t filter[1];
} wl_pkt_filter_list_t;
#define WL_PKT_FILTER_LIST_FIXED_LEN OFFSETOF(wl_pkt_filter_list_t, filter)
typedef struct wl_pkt_filter_stats {
uint32 num_pkts_matched;
uint32 num_pkts_forwarded;
uint32 num_pkts_discarded;
} wl_pkt_filter_stats_t;
typedef struct wl_seq_cmd_ioctl {
uint32 cmd;
uint32 len;
} wl_seq_cmd_ioctl_t;
#define WL_SEQ_CMD_ALIGN_BYTES 4
#define WL_SEQ_CMDS_GET_IOCTL_FILTER(cmd) \
(((cmd) == WLC_GET_MAGIC) || \
((cmd) == WLC_GET_VERSION) || \
((cmd) == WLC_GET_AP) || \
((cmd) == WLC_GET_INSTANCE))
#define WL_PKTENG_PER_TX_START 0x01
#define WL_PKTENG_PER_TX_STOP 0x02
#define WL_PKTENG_PER_RX_START 0x04
#define WL_PKTENG_PER_RX_WITH_ACK_START 0x05
#define WL_PKTENG_PER_TX_WITH_ACK_START 0x06
#define WL_PKTENG_PER_RX_STOP 0x08
#define WL_PKTENG_PER_MASK 0xff
#define WL_PKTENG_SYNCHRONOUS 0x100
typedef struct wl_pkteng {
uint32 flags;
uint32 delay;
uint32 nframes;
uint32 length;
uint8 seqno;
struct ether_addr dest;
struct ether_addr src;
} wl_pkteng_t;
#define NUM_80211b_RATES 4
#define NUM_80211ag_RATES 8
#define NUM_80211n_RATES 32
#define NUM_80211_RATES (NUM_80211b_RATES+NUM_80211ag_RATES+NUM_80211n_RATES)
typedef struct wl_pkteng_stats {
uint32 lostfrmcnt;
int32 rssi;
int32 snr;
uint16 rxpktcnt[NUM_80211_RATES+1];
} wl_pkteng_stats_t;
#define WL_WOWL_MAGIC (1 << 0)
#define WL_WOWL_NET (1 << 1)
#define WL_WOWL_DIS (1 << 2)
#define WL_WOWL_RETR (1 << 3)
#define WL_WOWL_BCN (1 << 4)
#define WL_WOWL_TST (1 << 5)
#define WL_WOWL_BCAST (1 << 15)
#define MAGIC_PKT_MINLEN 102
typedef struct {
uint masksize;
uint offset;
uint patternoffset;
uint patternsize;
} wl_wowl_pattern_t;
typedef struct {
uint count;
wl_wowl_pattern_t pattern[1];
} wl_wowl_pattern_list_t;
typedef struct {
uint8 pci_wakeind;
uint16 ucode_wakeind;
} wl_wowl_wakeind_t;
typedef struct wl_txrate_class {
uint8 init_rate;
uint8 min_rate;
uint8 max_rate;
} wl_txrate_class_t;
#define WLC_OBSS_SCAN_PASSIVE_DWELL_DEFAULT 100
#define WLC_OBSS_SCAN_PASSIVE_DWELL_MIN 5
#define WLC_OBSS_SCAN_PASSIVE_DWELL_MAX 1000
#define WLC_OBSS_SCAN_ACTIVE_DWELL_DEFAULT 20
#define WLC_OBSS_SCAN_ACTIVE_DWELL_MIN 10
#define WLC_OBSS_SCAN_ACTIVE_DWELL_MAX 1000
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_DEFAULT 300
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_MIN 10
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_MAX 900
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_DEFAULT 5
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_MIN 5
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_MAX 100
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_DEFAULT 200
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_MIN 200
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_MAX 10000
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_DEFAULT 20
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_MIN 20
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_MAX 10000
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_DEFAULT 25
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_MIN 0
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_MAX 100
typedef struct wl_obss_scan_arg {
int16 passive_dwell;
int16 active_dwell;
int16 bss_widthscan_interval;
int16 passive_total;
int16 active_total;
int16 chanwidth_transition_delay;
int16 activity_threshold;
} wl_obss_scan_arg_t;
#define WL_OBSS_SCAN_PARAM_LEN sizeof(wl_obss_scan_arg_t)
#define WL_MIN_NUM_OBSS_SCAN_ARG 7
#define WL_COEX_INFO_MASK 0x07
#define WL_COEX_INFO_REQ 0x01
#define WL_COEX_40MHZ_INTOLERANT 0x02
#define WL_COEX_WIDTH20 0x04
typedef struct wl_action_obss_coex_req {
uint8 info;
uint8 num;
uint8 ch_list[1];
} wl_action_obss_coex_req_t;
#define MAX_RSSI_LEVELS 8
typedef struct wl_rssi_event {
uint32 rate_limit_msec;
uint8 num_rssi_levels;
int8 rssi_levels[MAX_RSSI_LEVELS];
} wl_rssi_event_t;
#define WLFEATURE_DISABLE_11N 0x00000001
#define WLFEATURE_DISABLE_11N_STBC_TX 0x00000002
#define WLFEATURE_DISABLE_11N_STBC_RX 0x00000004
#define WLFEATURE_DISABLE_11N_SGI_TX 0x00000008
#define WLFEATURE_DISABLE_11N_SGI_RX 0x00000010
#define WLFEATURE_DISABLE_11N_AMPDU_TX 0x00000020
#define WLFEATURE_DISABLE_11N_AMPDU_RX 0x00000040
#define WLFEATURE_DISABLE_11N_GF 0x00000080
#include <packed_section_end.h>
#include <packed_section_start.h>
typedef BWL_PRE_PACKED_STRUCT struct sta_prbreq_wps_ie_hdr {
struct ether_addr staAddr;
uint16 ieLen;
} BWL_POST_PACKED_STRUCT sta_prbreq_wps_ie_hdr_t;
typedef BWL_PRE_PACKED_STRUCT struct sta_prbreq_wps_ie_data {
sta_prbreq_wps_ie_hdr_t hdr;
uint8 ieData[1];
} BWL_POST_PACKED_STRUCT sta_prbreq_wps_ie_data_t;
typedef BWL_PRE_PACKED_STRUCT struct sta_prbreq_wps_ie_list {
uint32 totLen;
uint8 ieDataList[1];
} BWL_POST_PACKED_STRUCT sta_prbreq_wps_ie_list_t;
#include <packed_section_end.h>
#endif
|