2 * Custom OID/ioctl definitions for
3 * Broadcom 802.11abg Networking Device Driver
5 * Definitions subject to change without notice.
7 * Copyright 2006, Broadcom Corporation
10 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
11 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
12 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
13 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
15 * $Id: wlioctl.h,v 1.1.1.22 2006/04/15 01:29:08 michael Exp $
22 #include <proto/ethernet.h>
23 #include <proto/bcmeth.h>
24 #include <proto/bcmevent.h>
25 #include <proto/802.11.h>
28 /* NetBSD 2.0 does not have SIOCDEVPRIVATE. This is NetBSD 2.0 specific */
29 #define SIOCDEVPRIVATE _IOWR('i', 139, struct ifreq)
32 /* require default structure packing */
33 #if !defined(__GNUC__)
37 /* A chanspec holds the channel number, band, bandwidth and control sideband */
38 typedef uint16 chanspec_t
;
39 #define WL_CHANSPEC_CHAN_MASK 0x00ff
41 #define WL_CHANSPEC_CTL_SB_MASK 0x0300
42 #define WL_CHANSPEC_CTL_SB_SHIFT 8
43 #define WL_CHANSPEC_CTL_SB_LOWER 0x0100
44 #define WL_CHANSPEC_CTL_SB_UPPER 0x0200
45 #define WL_CHANSPEC_CTL_SB_NONE 0x0300
47 #define WL_CHANSPEC_BW_MASK 0x0C00
48 #define WL_CHANSPEC_BW_SHIFT 10
49 #define WL_CHANSPEC_BW_10 0x0400
50 #define WL_CHANSPEC_BW_20 0x0800
51 #define WL_CHANSPEC_BW_40 0x0C00
53 #define WL_CHANSPEC_BAND_MASK 0xf000
54 #define WL_CHANSPEC_BAND_SHIFT 12
55 #define WL_CHANSPEC_BAND_5G 0x1000
56 #define WL_CHANSPEC_BAND_2G 0x2000
57 #define INVCHANSPEC 255
59 /* Legacy structure to help keep backward compatible wl tool and tray app */
61 #define LEGACY_WL_BSS_INFO_VERSION 107 /* older version of wl_bss_info struct */
63 typedef struct wl_bss_info_107
{
64 uint32 version
; /* version field */
65 uint32 length
; /* byte length of data in this record,
66 * starting at version and including IEs
68 struct ether_addr BSSID
;
69 uint16 beacon_period
; /* units are Kusec */
70 uint16 capability
; /* Capability information */
74 uint count
; /* # rates in this set */
75 uint8 rates
[16]; /* rates in 500kbps units w/hi bit set if basic */
76 } rateset
; /* supported rates */
77 uint8 channel
; /* Channel no. */
78 uint16 atim_window
; /* units are Kusec */
79 uint8 dtim_period
; /* DTIM period */
80 int16 RSSI
; /* receive signal strength (in dBm) */
81 int8 phy_noise
; /* noise (in dBm) */
82 uint32 ie_length
; /* byte length of Information Elements */
83 /* variable length Information Elements */
87 * Per-bss information structure.
90 #define WL_BSS_INFO_VERSION 108 /* current version of wl_bss_info struct */
93 * Applications MUST CHECK ie_offset field and length field to access IEs and
94 * next bss_info structure in a vector (in wl_scan_results_t)
96 typedef struct wl_bss_info
{
97 uint32 version
; /* version field */
98 uint32 length
; /* byte length of data in this record,
99 * starting at version and including IEs
101 struct ether_addr BSSID
;
102 uint16 beacon_period
; /* units are Kusec */
103 uint16 capability
; /* Capability information */
107 uint count
; /* # rates in this set */
108 uint8 rates
[16]; /* rates in 500kbps units w/hi bit set if basic */
109 } rateset
; /* supported rates */
110 chanspec_t chanspec
; /* chanspec for bss */
111 uint16 atim_window
; /* units are Kusec */
112 uint8 dtim_period
; /* DTIM period */
113 int16 RSSI
; /* receive signal strength (in dBm) */
114 int8 phy_noise
; /* noise (in dBm) */
116 bool n_cap
; /* BSS is 802.11N Capable */
117 uint32 nbss_cap
; /* 802.11N BSS Capabilities (based on EWC_CAP_*) */
118 uint8 ctl_ch
; /* 802.11N BSS control channel number */
119 uint32 reserved
[2]; /* Reserved for expansion of BSS properties */
120 uint8 basic_mcs
[MCSSET_LEN
]; /* 802.11N BSS required MCS set */
122 uint16 ie_offset
; /* offset at which IEs start, from beginning */
123 uint32 ie_length
; /* byte length of Information Elements */
124 /* Add new fields here */
125 /* variable length Information Elements */
128 typedef struct wlc_ssid
{
133 typedef struct wl_scan_params
{
134 wlc_ssid_t ssid
; /* default: {0, ""} */
135 struct ether_addr bssid
; /* default: bcast */
136 int8 bss_type
; /* default: any,
137 * DOT11_BSSTYPE_ANY/INFRASTRUCTURE/INDEPENDENT
139 int8 scan_type
; /* -1 use default, DOT11_SCANTYPE_ACTIVE/PASSIVE */
140 int32 nprobes
; /* -1 use default, number of probes per channel */
141 int32 active_time
; /* -1 use default, dwell time per channel for
144 int32 passive_time
; /* -1 use default, dwell time per channel
145 * for passive scanning
147 int32 home_time
; /* -1 use default, dwell time for the home channel
148 * between channel scans
150 int32 channel_num
; /* 0 use default (all available channels), count of
151 * channels in channel_list
153 uint16 channel_list
[1]; /* list of chanspecs */
155 /* size of wl_scan_params not including variable length array */
156 #define WL_SCAN_PARAMS_FIXED_SIZE 64
158 typedef struct wl_scan_results
{
162 wl_bss_info_t bss_info
[1];
164 /* size of wl_scan_results not including variable length array */
165 #define WL_SCAN_RESULTS_FIXED_SIZE 12
168 #define WL_NUMRATES 255 /* max # of rates in a rateset */
169 typedef struct wl_rateset
{
170 uint32 count
; /* # rates in this set */
171 uint8 rates
[WL_NUMRATES
]; /* rates in 500kbps units w/hi bit set if basic */
175 typedef struct wl_uint32_list
{
176 /* in - # of elements, out - # of entries */
178 /* variable length uint32 list */
182 #define WLC_CNTRY_BUF_SZ 4 /* Country string is 3 bytes + NULL */
184 /* defines used by the nrate iovar */
185 #define NRATE_MCS_INUSE 0x00000080 /* MSC in use,indicates b0-6 holds an mcs */
186 #define NRATE_RATE_MASK 0x0000007f /* rate/mcs value */
187 #define NRATE_STF_MASK 0x0000ff00 /* stf mode mask: siso, cdd, stbc, sdm */
188 #define NRATE_STF_SHIFT 8 /* stf mode shift */
190 #define ANTENNA_NUM_1 1 /* total number of antennas to be used */
191 #define ANTENNA_NUM_2 2
192 #define ANTENNA_NUM_3 3
193 #define ANTENNA_NUM_4 4
195 typedef struct wl_channels_in_country
{
198 char country_abbrev
[WLC_CNTRY_BUF_SZ
];
201 } wl_channels_in_country_t
;
203 typedef struct wl_country_list
{
208 char country_abbrev
[1];
211 #define WL_RM_TYPE_BASIC 1
212 #define WL_RM_TYPE_CCA 2
213 #define WL_RM_TYPE_RPI 3
215 #define WL_RM_FLAG_PARALLEL (1<<0)
217 #define WL_RM_FLAG_LATE (1<<1)
218 #define WL_RM_FLAG_INCAPABLE (1<<2)
219 #define WL_RM_FLAG_REFUSED (1<<3)
221 typedef struct wl_rm_req_elt
{
225 uint32 token
; /* token for this measurement */
226 uint32 tsf_h
; /* TSF high 32-bits of Measurement start time */
227 uint32 tsf_l
; /* TSF low 32-bits */
228 uint32 dur
; /* TUs */
231 typedef struct wl_rm_req
{
232 uint32 token
; /* overall measurement set token */
233 uint32 count
; /* number of measurement requests */
234 wl_rm_req_elt_t req
[1]; /* variable length block of requests */
236 #define WL_RM_REQ_FIXED_LEN 8
238 typedef struct wl_rm_rep_elt
{
242 uint32 token
; /* token for this measurement */
243 uint32 tsf_h
; /* TSF high 32-bits of Measurement start time */
244 uint32 tsf_l
; /* TSF low 32-bits */
245 uint32 dur
; /* TUs */
246 uint32 len
; /* byte length of data block */
247 uint8 data
[1]; /* variable length data block */
249 #define WL_RM_REP_ELT_FIXED_LEN 24 /* length excluding data block */
251 #define WL_RPI_REP_BIN_NUM 8
252 typedef struct wl_rm_rpi_rep
{
253 uint8 rpi
[WL_RPI_REP_BIN_NUM
];
254 int8 rpi_max
[WL_RPI_REP_BIN_NUM
];
257 typedef struct wl_rm_rep
{
258 uint32 token
; /* overall measurement set token */
259 uint32 len
; /* length of measurement report block */
260 wl_rm_rep_elt_t rep
[1]; /* variable length block of reports */
262 #define WL_RM_REP_FIXED_LEN 8
265 #if defined(BCMSUP_PSK)
266 typedef enum sup_auth_status
{
267 WLC_SUP_DISCONNECTED
= 0,
270 WLC_SUP_AUTHENTICATING
,
271 WLC_SUP_AUTHENTICATED
,
276 #endif /* BCMCCX | BCMSUP_PSK */
278 /* Enumerate crypto algorithms */
279 #define CRYPTO_ALGO_OFF 0
280 #define CRYPTO_ALGO_WEP1 1
281 #define CRYPTO_ALGO_TKIP 2
282 #define CRYPTO_ALGO_WEP128 3
283 #define CRYPTO_ALGO_AES_CCM 4
284 #define CRYPTO_ALGO_AES_OCB_MSDU 5
285 #define CRYPTO_ALGO_AES_OCB_MPDU 6
286 #define CRYPTO_ALGO_NALG 7
288 #define WSEC_GEN_MIC_ERROR 0x0001
289 #define WSEC_GEN_REPLAY 0x0002
291 #define WL_SOFT_KEY (1 << 0) /* Indicates this key is using soft encrypt */
292 #define WL_PRIMARY_KEY (1 << 1) /* Indicates this key is the primary (ie tx) key */
293 #define WL_KF_RES_4 (1 << 4) /* Reserved for backward compat */
294 #define WL_KF_RES_5 (1 << 5) /* Reserved for backward compat */
296 typedef struct wl_wsec_key
{
297 uint32 index
; /* key index */
298 uint32 len
; /* key length */
299 uint8 data
[DOT11_MAX_KEY_SIZE
]; /* key data */
301 uint32 algo
; /* CRYPTO_ALGO_AES_CCM, CRYPTO_ALGO_WEP128, etc */
302 uint32 flags
; /* misc flags */
305 int iv_initialized
; /* has IV been initialized already? */
309 uint32 hi
; /* upper 32 bits of IV */
310 uint16 lo
; /* lower 16 bits of IV */
313 struct ether_addr ea
; /* per station */
316 #define WSEC_MIN_PSK_LEN 8
317 #define WSEC_MAX_PSK_LEN 64
319 /* Flag for key material needing passhash'ing */
320 #define WSEC_PASSPHRASE (1<<0)
322 /* receptacle for WLC_SET_WSEC_PMK parameter */
324 ushort key_len
; /* octets in key material */
325 ushort flags
; /* key handling qualification */
326 uint8 key
[WSEC_MAX_PSK_LEN
]; /* PMK material */
329 /* wireless security bitvec */
330 #define WEP_ENABLED 0x0001
331 #define TKIP_ENABLED 0x0002
332 #define AES_ENABLED 0x0004
333 #define WSEC_SWFLAG 0x0008
334 #define SES_OW_ENABLED 0x0040 /* to go into transition mode without setting wep */
335 #define FIPS_ENABLED 0x0080
337 /* WPA authentication mode bitvec */
338 #define WPA_AUTH_DISABLED 0x0000 /* Legacy (i.e., non-WPA) */
339 #define WPA_AUTH_NONE 0x0001 /* none (IBSS) */
340 #define WPA_AUTH_UNSPECIFIED 0x0002 /* over 802.1x */
341 #define WPA_AUTH_PSK 0x0004 /* Pre-shared key */
342 /* #define WPA_AUTH_8021X 0x0020 */ /* 802.1x, reserved */
344 #define WPA2_AUTH_UNSPECIFIED 0x0040 /* over 802.1x */
345 #define WPA2_AUTH_PSK 0x0080 /* Pre-shared key */
352 typedef struct _pmkid
354 struct ether_addr BSSID
;
355 uint8 PMKID
[WPA2_PMKID_LEN
];
358 typedef struct _pmkid_list
364 typedef struct _pmkid_cand
{
365 struct ether_addr BSSID
;
369 typedef struct _pmkid_cand_list
{
371 pmkid_cand_t pmkid_cand
[1];
375 typedef struct wl_led_info
{
376 uint32 index
; /* led index */
381 typedef struct wlc_assoc_info
{
385 struct dot11_assoc_req req
;
386 struct ether_addr reassoc_bssid
; /* used in reassoc's */
387 struct dot11_assoc_resp resp
;
390 #define WLC_ASSOC_REQ_IS_REASSOC 0x01 /* assoc req was actually a reassoc */
391 /* srom read/write struct passed through ioctl */
393 uint byteoff
; /* byte offset */
394 uint nbytes
; /* number of bytes */
398 /* R_REG and W_REG struct passed through ioctl */
400 uint32 byteoff
; /* byte offset of the field in d11regs_t */
401 uint32 val
; /* read/write value of the field */
402 uint32 size
; /* sizeof the field */
403 uint band
; /* band (optional) */
406 /* Structure used by GET/SET_ATTEN ioctls - it controls power in b/g-band */
407 /* PCL - Power Control Loop */
408 /* current gain setting is replaced by user input */
409 #define WL_ATTEN_APP_INPUT_PCL_OFF 0 /* turn off PCL, apply supplied input */
410 #define WL_ATTEN_PCL_ON 1 /* turn on PCL */
411 /* current gain setting is maintained */
412 #define WL_ATTEN_PCL_OFF 2 /* turn off PCL. */
414 uint16 auto_ctrl
; /* WL_ATTEN_XX */
415 uint16 bb
; /* Baseband attenuation */
416 uint16 radio
; /* Radio attenuation */
417 uint16 txctl1
; /* Radio TX_CTL1 value */
420 /* defines used by poweridx iovar - it controls power in a-band */
421 /* current gain setting is maintained */
422 #define WL_PWRIDX_PCL_OFF -2 /* turn off PCL. */
423 #define WL_PWRIDX_PCL_ON -1 /* turn on PCL */
424 #define WL_PWRIDX_LOWER_LIMIT -2 /* lower limit */
425 #define WL_PWRIDX_UPPER_LIMIT 63 /* upper limit */
427 * - input to be set to that value
431 /* Used to get specific STA parameters */
434 struct ether_addr ea
;
438 /* Event data type */
439 typedef struct wlc_event
{
440 wl_event_msg_t event
; /* encapsulated event */
441 struct ether_addr
*addr
; /* used to keep a trace of the potential present of
442 * an address in wlc_event_msg_t
444 void *data
; /* used to hang additional data on an event */
445 struct wlc_event
*next
; /* enables ordered list of pending events */
448 #define BCM_MAC_STATUS_INDICATION (0x40010200L)
450 /* Please update the following when modifying this structure:
451 * StaInfo Twiki page flags section - description of the sta_info_t struct
452 * src/wl/exe/wlu.c - print of sta_info_t
453 * Pay attention to version if structure changes.
456 uint16 ver
; /* version of this struct */
457 uint16 len
; /* length in bytes of this structure */
458 uint16 cap
; /* sta's advertised capabilities */
459 uint32 flags
; /* flags defined below */
460 uint32 idle
; /* time since data pkt rx'd from sta */
461 struct ether_addr ea
; /* Station address */
462 wl_rateset_t rateset
; /* rateset in use */
463 uint32 in
; /* seconds elapsed since associated */
464 uint32 listen_interval_inms
; /* Min Listen interval in ms for this STA */
469 /* Flags for sta_info_t indicating properties of STA */
470 #define WL_STA_BRCM 0x1 /* Running a Broadcom driver */
471 #define WL_STA_WME 0x2 /* WMM association */
472 #define WL_STA_ABCAP 0x4 /* Afterburner-capable */
473 #define WL_STA_AUTHE 0x8 /* Authenticated */
474 #define WL_STA_ASSOC 0x10 /* Associated */
475 #define WL_STA_AUTHO 0x20 /* Authorized */
476 #define WL_STA_WDS 0x40 /* Wireless Distribution System */
477 #define WL_STA_WDS_LINKUP 0x80 /* WDS traffic/probes flowing properly */
478 #define WL_STA_PS 0x100 /* STA is in power save mode from AP's viewpoint */
479 #define WL_STA_APSD_BE 0x200 /* APSD delv/trigger for AC_BE is default enabled */
480 #define WL_STA_APSD_BK 0x400 /* APSD delv/trigger for AC_BK is default enabled */
481 #define WL_STA_APSD_VI 0x800 /* APSD delv/trigger for AC_VI is default enabled */
482 #define WL_STA_APSD_VO 0x1000 /* APSD delv/trigger for AC_VO is default enabled */
483 #define WL_STA_N_CAP 0x2000 /* STA 802.11n capable */
485 #define WL_WDS_LINKUP WL_STA_WDS_LINKUP /* deprecated */
488 * Country locale determines which channels are available to us.
490 typedef enum _wlc_locale
{
491 WLC_WW
= 0, /* Worldwide */
492 WLC_THA
, /* Thailand */
493 WLC_ISR
, /* Israel */
494 WLC_JDN
, /* Jordan */
498 WLC_EUR
, /* Europe */
499 WLC_USL
, /* US Low Band only */
500 WLC_JPH
, /* Japan High Band only */
501 WLC_ALL
, /* All the channels in this band */
502 WLC_11D
, /* Represents locale received by 11d beacons */
504 WLC_UNDEFINED_LOCALE
= 0xf
507 /* channel encoding */
508 typedef struct channel_info
{
514 /* For ioctls that take a list of MAC addresses */
516 uint count
; /* number of MAC addresses */
517 struct ether_addr ea
[1]; /* variable length array of MAC addresses */
520 /* get pkt count struct passed through ioctl */
521 typedef struct get_pktcnt
{
528 /* Linux network driver ioctl encoding */
529 typedef struct wl_ioctl
{
530 uint cmd
; /* common ioctl definition */
531 void *buf
; /* pointer to user buffer */
532 uint len
; /* length of user buffer */
533 bool set
; /* get or set request (optional) */
534 uint used
; /* bytes read or written (optional) */
535 uint needed
; /* bytes needed (optional) */
539 * Structure for passing hardware and software
540 * revision info up from the driver.
542 typedef struct wlc_rev_info
{
543 uint vendorid
; /* PCI vendor id */
544 uint deviceid
; /* device id of chip */
545 uint radiorev
; /* radio revision */
546 uint chiprev
; /* chip revision */
547 uint corerev
; /* core revision */
548 uint boardid
; /* board identifier (usu. PCI sub-device id) */
549 uint boardvendor
; /* board vendor (usu. PCI sub-vendor id) */
550 uint boardrev
; /* board revision */
551 uint driverrev
; /* driver version */
552 uint ucoderev
; /* microcode version */
553 uint bus
; /* bus type */
554 uint chipnum
; /* chip number */
557 #define WL_BRAND_MAX 10
558 typedef struct wl_instance_info
{
560 char brand
[WL_BRAND_MAX
];
561 } wl_instance_info_t
;
563 /* check this magic number */
564 #define WLC_IOCTL_MAGIC 0x14e46c77
566 /* bump this number if you change the ioctl interface */
567 #define WLC_IOCTL_VERSION 1
569 #define WLC_IOCTL_MAXLEN 8192 /* max length ioctl buffer required */
570 #define WLC_IOCTL_SMLEN 256 /* "small" length ioctl buffer required */
572 /* common ioctl definitions */
573 #define WLC_GET_MAGIC 0
574 #define WLC_GET_VERSION 1
578 #define WLC_GET_MSGLEVEL 7
579 #define WLC_SET_MSGLEVEL 8
580 #define WLC_GET_PROMISC 9
581 #define WLC_SET_PROMISC 10
582 #define WLC_GET_RATE 12
583 /* #define WLC_SET_RATE 13 */ /* no longer supported */
584 #define WLC_GET_INSTANCE 14
585 /* #define WLC_GET_FRAG 15 */ /* no longer supported */
586 /* #define WLC_SET_FRAG 16 */ /* no longer supported */
587 /* #define WLC_GET_RTS 17 */ /* no longer supported */
588 /* #define WLC_SET_RTS 18 */ /* no longer supported */
589 #define WLC_GET_INFRA 19
590 #define WLC_SET_INFRA 20
591 #define WLC_GET_AUTH 21
592 #define WLC_SET_AUTH 22
593 #define WLC_GET_BSSID 23
594 #define WLC_SET_BSSID 24
595 #define WLC_GET_SSID 25
596 #define WLC_SET_SSID 26
597 #define WLC_RESTART 27
598 #define WLC_GET_CHANNEL 29
599 #define WLC_SET_CHANNEL 30
600 #define WLC_GET_SRL 31
601 #define WLC_SET_SRL 32
602 #define WLC_GET_LRL 33
603 #define WLC_SET_LRL 34
604 #define WLC_GET_PLCPHDR 35
605 #define WLC_SET_PLCPHDR 36
606 #define WLC_GET_RADIO 37
607 #define WLC_SET_RADIO 38
608 #define WLC_GET_PHYTYPE 39
609 /* #define WLC_GET_WEP 42 */ /* no longer supported */
610 /* #define WLC_SET_WEP 43 */ /* no longer supported */
611 #define WLC_GET_KEY 44
612 #define WLC_SET_KEY 45
613 #define WLC_GET_REGULATORY 46
614 #define WLC_SET_REGULATORY 47
615 #define WLC_GET_PASSIVE 48
616 #define WLC_SET_PASSIVE 49
618 #define WLC_SCAN_RESULTS 51
619 #define WLC_DISASSOC 52
620 #define WLC_REASSOC 53
621 #define WLC_GET_ROAM_TRIGGER 54
622 #define WLC_SET_ROAM_TRIGGER 55
623 #define WLC_GET_TXANT 61
624 #define WLC_SET_TXANT 62
625 #define WLC_GET_ANTDIV 63
626 #define WLC_SET_ANTDIV 64
627 /* #define WLC_GET_TXPWR 65 */ /* no longer supported */
628 /* #define WLC_SET_TXPWR 66 */ /* no longer supported */
629 #define WLC_GET_CLOSED 67
630 #define WLC_SET_CLOSED 68
631 #define WLC_GET_MACLIST 69
632 #define WLC_SET_MACLIST 70
633 #define WLC_GET_RATESET 71
634 #define WLC_SET_RATESET 72
635 #define WLC_GET_LOCALE 73
636 #define WLC_LONGTRAIN 74
637 #define WLC_GET_BCNPRD 75
638 #define WLC_SET_BCNPRD 76
639 #define WLC_GET_DTIMPRD 77
640 #define WLC_SET_DTIMPRD 78
641 #define WLC_GET_SROM 79
642 #define WLC_SET_SROM 80
643 #define WLC_GET_WEP_RESTRICT 81
644 #define WLC_SET_WEP_RESTRICT 82
645 #define WLC_GET_COUNTRY 83
646 #define WLC_SET_COUNTRY 84
647 #define WLC_GET_PM 85
648 #define WLC_SET_PM 86
649 #define WLC_GET_WAKE 87
650 #define WLC_SET_WAKE 88
651 #define WLC_GET_D11CNTS 89
652 #define WLC_GET_FORCELINK 90 /* ndis only */
653 #define WLC_SET_FORCELINK 91 /* ndis only */
654 #define WLC_FREQ_ACCURACY 92
655 #define WLC_CARRIER_SUPPRESS 93
656 #define WLC_GET_PHYREG 94
657 #define WLC_SET_PHYREG 95
658 #define WLC_GET_RADIOREG 96
659 #define WLC_SET_RADIOREG 97
660 #define WLC_GET_REVINFO 98
661 #define WLC_GET_UCANTDIV 99
662 #define WLC_SET_UCANTDIV 100
663 #define WLC_R_REG 101
664 #define WLC_W_REG 102
665 #define WLC_DIAG_LOOPBACK 103
666 #define WLC_RESET_D11CNTS 104
667 #define WLC_GET_MACMODE 105
668 #define WLC_SET_MACMODE 106
669 #define WLC_GET_MONITOR 107
670 #define WLC_SET_MONITOR 108
671 #define WLC_GET_GMODE 109
672 #define WLC_SET_GMODE 110
673 #define WLC_GET_LEGACY_ERP 111
674 #define WLC_SET_LEGACY_ERP 112
675 #define WLC_GET_RX_ANT 113
676 #define WLC_GET_CURR_RATESET 114 /* current rateset */
677 #define WLC_GET_SCANSUPPRESS 115
678 #define WLC_SET_SCANSUPPRESS 116
679 #define WLC_GET_AP 117
680 #define WLC_SET_AP 118
681 #define WLC_GET_EAP_RESTRICT 119
682 #define WLC_SET_EAP_RESTRICT 120
683 #define WLC_SCB_AUTHORIZE 121
684 #define WLC_SCB_DEAUTHORIZE 122
685 #define WLC_GET_WDSLIST 123
686 #define WLC_SET_WDSLIST 124
687 #define WLC_GET_ATIM 125
688 #define WLC_SET_ATIM 126
689 #define WLC_GET_RSSI 127
690 #define WLC_GET_PHYANTDIV 128
691 #define WLC_SET_PHYANTDIV 129
692 #define WLC_AP_RX_ONLY 130
693 #define WLC_GET_TX_PATH_PWR 131
694 #define WLC_SET_TX_PATH_PWR 132
695 #define WLC_GET_WSEC 133
696 #define WLC_SET_WSEC 134
697 #define WLC_GET_PHY_NOISE 135
698 #define WLC_GET_BSS_INFO 136
699 #define WLC_GET_PKTCNTS 137
700 #define WLC_GET_LAZYWDS 138
701 #define WLC_SET_LAZYWDS 139
702 #define WLC_GET_BANDLIST 140
703 #define WLC_GET_BAND 141
704 #define WLC_SET_BAND 142
705 #define WLC_SCB_DEAUTHENTICATE 143
706 #define WLC_GET_SHORTSLOT 144
707 #define WLC_GET_SHORTSLOT_OVERRIDE 145
708 #define WLC_SET_SHORTSLOT_OVERRIDE 146
709 #define WLC_GET_SHORTSLOT_RESTRICT 147
710 #define WLC_SET_SHORTSLOT_RESTRICT 148
711 #define WLC_GET_GMODE_PROTECTION 149
712 #define WLC_GET_GMODE_PROTECTION_OVERRIDE 150
713 #define WLC_SET_GMODE_PROTECTION_OVERRIDE 151
714 #define WLC_UPGRADE 152
715 /* #define WLC_GET_MRATE 153 */ /* no longer supported */
716 /* #define WLC_SET_MRATE 154 */ /* no longer supported */
717 #define WLC_GET_ASSOCLIST 159
718 #define WLC_GET_CLK 160
719 #define WLC_SET_CLK 161
720 #define WLC_GET_UP 162
722 #define WLC_GET_WPA_AUTH 164
723 #define WLC_SET_WPA_AUTH 165
724 #define WLC_GET_PROTECTION_CONTROL 178
725 #define WLC_SET_PROTECTION_CONTROL 179
726 #define WLC_GET_PHYLIST 180
727 #define WLC_GET_KEY_SEQ 183
728 /* #define WLC_GET_GMODE_PROTECTION_CTS 198 */ /* no longer supported */
729 /* #define WLC_SET_GMODE_PROTECTION_CTS 199 */ /* no longer supported */
730 #define WLC_GET_PIOMODE 203
731 #define WLC_SET_PIOMODE 204
732 #define WLC_SET_LED 209
733 #define WLC_GET_LED 210
734 #define WLC_GET_CHANNEL_SEL 215
735 #define WLC_START_CHANNEL_SEL 216
736 #define WLC_GET_VALID_CHANNELS 217
737 #define WLC_GET_FAKEFRAG 218
738 #define WLC_SET_FAKEFRAG 219
739 #define WLC_GET_WET 230
740 #define WLC_SET_WET 231
741 #define WLC_GET_KEY_PRIMARY 235
742 #define WLC_SET_KEY_PRIMARY 236
743 #define WLC_GET_RADAR 242
744 #define WLC_SET_RADAR 243
745 #define WLC_SET_SPECT_MANAGMENT 244
746 #define WLC_GET_SPECT_MANAGMENT 245
747 #define WLC_WDS_GET_REMOTE_HWADDR 246 /* handled in wl_linux.c/wl_vx.c */
748 #define WLC_SET_CS_SCAN_TIMER 248
749 #define WLC_GET_CS_SCAN_TIMER 249
750 #define WLC_SEND_PWR_CONSTRAINT 254
751 #define WLC_CURRENT_PWR 256
752 #define WLC_GET_CHANNELS_IN_COUNTRY 260
753 #define WLC_GET_COUNTRY_LIST 261
754 #define WLC_GET_VAR 262 /* get value of named variable */
755 #define WLC_SET_VAR 263 /* set named variable to value */
756 #define WLC_NVRAM_GET 264 /* deprecated */
757 #define WLC_NVRAM_SET 265
758 #define WLC_SET_WSEC_PMK 268
759 #define WLC_GET_AUTH_MODE 269
760 #define WLC_SET_AUTH_MODE 270
761 #define WLC_NDCONFIG_ITEM 273 /* currently handled in wl_oid.c */
762 #define WLC_NVOTPW 274
764 #define WLC_SET_LOCALE 278
765 #define WLC_LAST 279 /* do not change - use get_var/set_var */
768 * Minor kludge alert:
769 * Duplicate a few definitions that irelay requires from epiioctl.h here
770 * so caller doesn't have to include this file and epiioctl.h .
771 * If this grows any more, it would be time to move these irelay-specific
772 * definitions out of the epiioctl.h and into a separate driver common file.
774 #ifndef EPICTRL_COOKIE
775 #define EPICTRL_COOKIE 0xABADCEDE
778 /* vx wlc ioctl's offset */
779 #define CMN_IOCTL_OFF 0x180
784 * 0xFF - implementation specific OID
785 * 0xE4 - first byte of Broadcom PCI vendor ID
786 * 0x14 - second byte of Broadcom PCI vendor ID
787 * 0xXX - the custom OID number
790 /* begin 0x1f values beyond the start of the ET driver range. */
791 #define WL_OID_BASE 0xFFE41420
794 #define OID_WL_GETINSTANCE (WL_OID_BASE + WLC_GET_INSTANCE)
795 #define OID_WL_NDCONFIG_ITEM (WL_OID_BASE + WLC_NDCONFIG_ITEM)
797 #define WL_DECRYPT_STATUS_SUCCESS 1
798 #define WL_DECRYPT_STATUS_FAILURE 2
799 #define WL_DECRYPT_STATUS_UNKNOWN 3
801 /* allows user-mode app to poll the status of USB image upgrade */
802 #define WLC_UPGRADE_SUCCESS 0
803 #define WLC_UPGRADE_PENDING 1
805 #ifdef CONFIG_USBRNDIS_RETAIL
806 /* struct passed in for WLC_NDCONFIG_ITEM */
813 /* Bit masks for radio disabled status - returned by WL_GET_RADIO */
814 #define WL_RADIO_SW_DISABLE (1<<0)
815 #define WL_RADIO_HW_DISABLE (1<<1)
816 #define WL_RADIO_MPC_DISABLE (1<<2)
817 #define WL_RADIO_COUNTRY_DISABLE (1<<3) /* some countries don't support any channel */
819 /* Override bit for WLC_SET_TXPWR. if set, ignore other level limits */
820 #define WL_TXPWR_OVERRIDE (1<<31)
822 /* "diag" iovar argument and error code */
823 #define WL_DIAG_INTERRUPT 1 /* d11 loopback interrupt test */
824 #define WL_DIAG_MEMORY 3 /* d11 memory test */
825 #define WL_DIAG_LED 4 /* LED test */
826 #define WL_DIAG_REG 5 /* d11/phy register test */
827 #define WL_DIAG_SROM 6 /* srom read/crc test */
828 #define WL_DIAG_DMA 7 /* DMA test */
830 #define WL_DIAGERR_SUCCESS 0
831 #define WL_DIAGERR_FAIL_TO_RUN 1 /* unable to run requested diag */
832 #define WL_DIAGERR_NOT_SUPPORTED 2 /* diag requested is not supported */
833 #define WL_DIAGERR_INTERRUPT_FAIL 3 /* loopback interrupt test failed */
834 #define WL_DIAGERR_LOOPBACK_FAIL 4 /* loopback data test failed */
835 #define WL_DIAGERR_SROM_FAIL 5 /* srom read failed */
836 #define WL_DIAGERR_SROM_BADCRC 6 /* srom crc failed */
837 #define WL_DIAGERR_REG_FAIL 7 /* d11/phy register test failed */
838 #define WL_DIAGERR_MEMORY_FAIL 8 /* d11 memory test failed */
839 #define WL_DIAGERR_NOMEM 9 /* diag test failed due to no memory */
840 #define WL_DIAGERR_DMA_FAIL 10 /* DMA test failed */
843 #define WLC_BAND_AUTO 0 /* auto-select */
844 #define WLC_BAND_5G 1 /* 5 Ghz */
845 #define WLC_BAND_2G 2 /* 2.4 Ghz */
846 #define WLC_BAND_ALL 3 /* all bands */
848 /* phy types (returned by WLC_GET_PHYTPE) */
849 #define WLC_PHY_TYPE_A 0
850 #define WLC_PHY_TYPE_B 1
851 #define WLC_PHY_TYPE_G 2
852 #define WLC_PHY_TYPE_N 4
853 #define WLC_PHY_TYPE_NULL 0xf
856 #define WLC_MACMODE_DISABLED 0 /* MAC list disabled */
857 #define WLC_MACMODE_DENY 1 /* Deny specified (i.e. allow unspecified) */
858 #define WLC_MACMODE_ALLOW 2 /* Allow specified (i.e. deny unspecified) */
863 #define GMODE_LEGACY_B 0
866 #define GMODE_B_DEFERRED 3
867 #define GMODE_PERFORMANCE 4
871 /* values for PLCPHdr_override */
872 #define WLC_PLCP_AUTO -1
873 #define WLC_PLCP_SHORT 0
874 #define WLC_PLCP_LONG 1
876 /* values for g_protection_override and n_protection_override */
877 #define WLC_PROTECTION_AUTO -1
878 #define WLC_PROTECTION_OFF 0
879 #define WLC_PROTECTION_ON 1
881 /* values for g_protection_control and n_protection_control */
882 #define WLC_PROTECTION_CTL_OFF 0
883 #define WLC_PROTECTION_CTL_LOCAL 1
884 #define WLC_PROTECTION_CTL_OVERLAP 2
886 /* deprecated const names for g_protection_override */
887 #define WLC_G_PROTECTION_AUTO WLC_PROTECTION_AUTO
888 #define WLC_G_PROTECTION_OFF WLC_PROTECTION_OFF
889 #define WLC_G_PROTECTION_ON WLC_PROTECTION_ON
891 /* deprecated const names for g_protection_control */
892 #define WLC_G_PROTECTION_CTL_OFF WLC_PROTECTION_CTL_OFF
893 #define WLC_G_PROTECTION_CTL_LOCAL WLC_PROTECTION_CTL_LOCAL
894 #define WLC_G_PROTECTION_CTL_OVERLAP WLC_PROTECTION_CTL_OVERLAP
896 /* deprecated const names for get/set g_protection_control */
897 #define WLC_GET_GMODE_PROTECTION_CONTROL WLC_GET_PROTECTION_CONTROL
898 #define WLC_SET_GMODE_PROTECTION_CONTROL WLC_SET_PROTECTION_CONTROL
900 /* values for n_protection */
901 #define WLC_N_PROTECTION_OFF 0
902 #define WLC_N_PROTECTION_MIXEDMODE 1
903 #define WLC_N_PROTECTION_CTS 2
905 /* values for n_preamble_type */
906 #define WLC_N_PREAMBLE_MIXEDMODE 0
907 #define WLC_N_PREAMBLE_GF 1
917 int npulses
; /* required number of pulses at n * t_int */
918 int ncontig
; /* required number of pulses at t_int */
919 int min_pw
; /* minimum pulse width (20 MHz clocks) */
920 int max_pw
; /* maximum pulse width (20 MHz clocks) */
921 uint16 thresh0
; /* Radar detection, thresh 0 */
922 uint16 thresh1
; /* Radar detection, thresh 1 */
923 int npulses_lp
; /* Radar detection, minimum long pulses */
924 int min_pw_lp
; /* Minimum pulsewidth for long pulses */
925 int max_pw_lp
; /* Maximum pulsewidth for long pulses */
926 int min_fm_lp
; /* Minimum fm for long pulses */
927 int max_deltat_lp
; /* Maximum deltat for long pulses */
928 int min_deltat
; /* Minimum spacing between pulses */
931 /* radar iovar SET defines */
932 #define WL_RADAR_DETECTOR_OFF 0 /* radar detector off */
933 #define WL_RADAR_DETECTOR_ON 1 /* radar detector on */
934 #define WL_RADAR_SIMULATED 2 /* force radar detector to declare
938 /* dfs_status iovar-related defines */
940 /* cac - channel availability check,
941 * ism - in-service monitoring
942 * csa - channel switching announcement
945 /* cac state values */
946 #define WL_DFS_CACSTATE_IDLE 0 /* state for operating in non-radar channel */
947 #define WL_DFS_CACSTATE_PREISM_CAC 1 /* CAC in progress */
948 #define WL_DFS_CACSTATE_ISM 2 /* ISM in progress */
949 #define WL_DFS_CACSTATE_CSA 3 /* csa */
950 #define WL_DFS_CACSTATE_POSTISM_CAC 4 /* ISM CAC */
951 #define WL_DFS_CACSTATE_PREISM_OOC 5 /* PREISM OOC */
952 #define WL_DFS_CACSTATE_POSTISM_OOC 6 /* POSTISM OOC */
953 #define WL_DFS_CACSTATES 7 /* this many states exist */
955 /* data structure used in 'dfs_status' wl interface, which is used to query dfs status */
957 uint state
; /* noted by WL_DFS_CACSTATE_XX. */
958 uint duration
; /* time spent in ms in state. */
959 /* as dfs enters ISM state, it removes the operational channel from quiet channel
960 * list and notes the channel in channel_cleared. set to 0 if no channel is cleared
962 chanspec_t chanspec_cleared
;
963 /* chanspec cleared used to be a uint, add another to uint16 to maintain size */
967 #define NUM_PWRCTRL_RATES 12
969 typedef struct tx_inst_power
{
973 /* regulatory enforcement levels */
974 #define SPECT_MNGMT_OFF 0 /* both 11h and 11d disabled */
975 #define SPECT_MNGMT_LOOSE_11H 1 /* allow non-11h APs in scan lists */
976 #define SPECT_MNGMT_STRICT_11H 2 /* prune out non-11h APs from scan list */
977 #define SPECT_MNGMT_STRICT_11D 3 /* switch to 802.11D mode */
978 /* SPECT_MNGMT_LOOSE_11H_D - same as SPECT_MNGMT_LOOSE with the exception that Country IE
979 * adoption is done irregardless of capability-spectrum_management
981 #define SPECT_MNGMT_LOOSE_11H_D 4 /* operation defined above */
983 #define WL_CHAN_VALID_HW (1 << 0) /* valid with current HW */
984 #define WL_CHAN_VALID_SW (1 << 1) /* valid with current country setting */
985 #define WL_CHAN_BAND_5G (1 << 2) /* 5GHz-band channel */
986 #define WL_CHAN_RADAR (1 << 3) /* radar sensitive channel */
987 #define WL_CHAN_INACTIVE (1 << 4) /* temporarily inactive due to radar */
988 #define WL_CHAN_PASSIVE (1 << 5) /* channel is in passive mode */
989 #define WL_CHAN_RESTRICTED (1 << 6) /* restricted use channel */
991 /* BTC mode used by "btc_mode" iovar */
992 #define WL_BTC_DISABLE 0 /* disable BT coexistance */
993 #define WL_BTC_ENABLE 1 /* enable BT coexistance */
994 #define WL_BTC_PREMPT 2 /* enable BT coexistance and BT pre-emption */
996 #define WL_MPC_VAL 0x00400000
997 #define WL_APSTA_VAL 0x00800000
998 #define WL_DFS_VAL 0x01000000
999 #define WL_BA_VAL 0x02000000
1000 #define WL_NITRO_VAL 0x04000000
1001 #define WL_CAC_VAL 0x08000000
1002 #define WL_AMSDU_VAL 0x10000000
1003 #define WL_AMPDU_VAL 0x20000000
1005 /* max # of leds supported by GPIO (gpio pin# == led index#) */
1006 #define WL_LED_NUMGPIO 16 /* gpio 0-15 */
1008 /* led per-pin behaviors */
1009 #define WL_LED_OFF 0 /* always off */
1010 #define WL_LED_ON 1 /* always on */
1011 #define WL_LED_ACTIVITY 2 /* activity */
1012 #define WL_LED_RADIO 3 /* radio enabled */
1013 #define WL_LED_ARADIO 4 /* 5 Ghz radio enabled */
1014 #define WL_LED_BRADIO 5 /* 2.4Ghz radio enabled */
1015 #define WL_LED_BGMODE 6 /* on if gmode, off if bmode */
1016 #define WL_LED_WI1 7
1017 #define WL_LED_WI2 8
1018 #define WL_LED_WI3 9
1019 #define WL_LED_ASSOC 10 /* associated state indicator */
1020 #define WL_LED_INACTIVE 11 /* null behavior (clears default behavior) */
1021 #define WL_LED_NUMBEHAVIOR 12
1023 /* led behavior numeric value format */
1024 #define WL_LED_BEH_MASK 0x7f /* behavior mask */
1025 #define WL_LED_AL_MASK 0x80 /* activelow (polarity) bit */
1027 /* max # of channels returnd by the get valid channels iovar */
1028 #define WL_NUMCHANSPECS 100
1030 /* WDS link local endpoint WPA role */
1031 #define WL_WDS_WPA_ROLE_AUTH 0 /* authenticator */
1032 #define WL_WDS_WPA_ROLE_SUP 1 /* supplicant */
1033 #define WL_WDS_WPA_ROLE_AUTO 255 /* auto, based on mac addr value */
1035 /* number of bytes needed to define a 128-bit mask for MAC event reporting */
1036 #define WL_EVENTING_MASK_LEN 16
1038 /* Structures and constants used for "vndr_ie" IOVar interface */
1039 #define VNDR_IE_CMD_LEN 4 /* length of the set command string:
1040 * "add", "del" (+ NULL)
1043 /* 802.11 Mgmt Packet flags */
1044 #define VNDR_IE_BEACON_FLAG 0x1
1045 #define VNDR_IE_PRBRSP_FLAG 0x2
1046 #define VNDR_IE_ASSOCRSP_FLAG 0x4
1047 #define VNDR_IE_AUTHRSP_FLAG 0x8
1049 #define VNDR_IE_INFO_HDR_LEN (sizeof(uint32))
1052 uint32 pktflag
; /* bitmask indicating which packet(s) contain this IE */
1053 vndr_ie_t vndr_ie_data
; /* vendor IE data */
1057 int iecount
; /* number of entries in the vndr_ie_list[] array */
1058 vndr_ie_info_t vndr_ie_list
[1]; /* variable size list of vndr_ie_info_t structs */
1062 char cmd
[VNDR_IE_CMD_LEN
]; /* vndr_ie IOVar set command : "add", "del" + NULL */
1063 vndr_ie_buf_t vndr_ie_buffer
; /* buffer containing Vendor IE list information */
1066 /* join target preference types */
1067 #define WL_JOIN_PREF_RSSI 1 /* by RSSI, mandatory */
1068 #define WL_JOIN_PREF_WPA 2 /* by akm and ciphers, optional, RSN and WPA as values */
1069 #define WL_JOIN_PREF_BAND 3 /* by 802.11 band, optional, WLC_BAND_XXXX as values */
1071 /* band preference */
1072 #define WLJP_BAND_ASSOC_PREF 255 /* use assoc preference settings */
1073 /* others use WLC_BAND_XXXX as values */
1075 /* any multicast cipher suite */
1076 #define WL_WPA_ACP_MCS_ANY "\x00\x00\x00\x00"
1082 #if !defined(__GNUC__)
1086 #define NFIFO 6 /* # tx/rx fifopairs */
1088 #define WL_CNT_T_VERSION 1 /* current version of wl_cnt_t struct */
1091 uint16 version
; /* see definition of WL_CNT_T_VERSION */
1092 uint16 length
; /* length of entire structure */
1094 /* transmit stat counters */
1095 uint32 txframe
; /* tx data frames */
1096 uint32 txbyte
; /* tx data bytes */
1097 uint32 txretrans
; /* tx mac retransmits */
1098 uint32 txerror
; /* tx data errors (derived: sum of others) */
1099 uint32 txctl
; /* tx management frames */
1100 uint32 txprshort
; /* tx short preamble frames */
1101 uint32 txserr
; /* tx status errors */
1102 uint32 txnobuf
; /* tx out of buffers errors */
1103 uint32 txnoassoc
; /* tx discard because we're not associated */
1104 uint32 txrunt
; /* tx runt frames */
1105 uint32 txchit
; /* tx header cache hit (fastpath) */
1106 uint32 txcmiss
; /* tx header cache miss (slowpath) */
1108 /* transmit chip error counters */
1109 uint32 txuflo
; /* tx fifo underflows */
1110 uint32 txphyerr
; /* tx phy errors (indicated in tx status) */
1113 /* receive stat counters */
1114 uint32 rxframe
; /* rx data frames */
1115 uint32 rxbyte
; /* rx data bytes */
1116 uint32 rxerror
; /* rx data errors (derived: sum of others) */
1117 uint32 rxctl
; /* rx management frames */
1118 uint32 rxnobuf
; /* rx out of buffers errors */
1119 uint32 rxnondata
; /* rx non data frames in the data channel errors */
1120 uint32 rxbadds
; /* rx bad DS errors */
1121 uint32 rxbadcm
; /* rx bad control or management frames */
1122 uint32 rxfragerr
; /* rx fragmentation errors */
1123 uint32 rxrunt
; /* rx runt frames */
1124 uint32 rxgiant
; /* rx giant frames */
1125 uint32 rxnoscb
; /* rx no scb error */
1126 uint32 rxbadproto
; /* rx invalid frames */
1127 uint32 rxbadsrcmac
; /* rx frames with Invalid Src Mac */
1128 uint32 rxbadda
; /* rx frames tossed for invalid da */
1129 uint32 rxfilter
; /* rx frames filtered out */
1131 /* receive chip error counters */
1132 uint32 rxoflo
; /* rx fifo overflow errors */
1133 uint32 rxuflo
[NFIFO
]; /* rx dma descriptor underflow errors */
1135 uint32 d11cnt_txrts_off
; /* d11cnt txrts value when reset d11cnt */
1136 uint32 d11cnt_rxcrc_off
; /* d11cnt rxcrc value when reset d11cnt */
1137 uint32 d11cnt_txnocts_off
; /* d11cnt txnocts value when reset d11cnt */
1140 uint32 dmade
; /* tx/rx dma descriptor errors */
1141 uint32 dmada
; /* tx/rx dma data errors */
1142 uint32 dmape
; /* tx/rx dma descriptor protocol errors */
1143 uint32 reset
; /* reset count */
1144 uint32 tbtt
; /* cnts the TBTT int's */
1146 uint32 pkt_callback_reg_fail
; /* callbacks register failure */
1148 /* MAC counters: 32-bit version of d11.h's macstat_t */
1149 uint32 txallfrm
; /* total number of frames sent, incl. Data, ACK, RTS, CTS,
1150 * Control Management (includes retransmissions)
1152 uint32 txrtsfrm
; /* number of RTS sent out by the MAC */
1153 uint32 txctsfrm
; /* number of CTS sent out by the MAC */
1154 uint32 txackfrm
; /* number of ACK frames sent out */
1155 uint32 txdnlfrm
; /* Not used */
1156 uint32 txbcnfrm
; /* beacons transmitted */
1157 uint32 txfunfl
[8]; /* per-fifo tx underflows */
1158 uint32 txtplunfl
; /* Template underflows (mac was too slow to transmit ACK/CTS
1161 uint32 txphyerror
; /* Transmit phy error, type of error is reported in tx-status for
1162 * driver enqueued frames
1164 uint32 rxfrmtoolong
; /* Received frame longer than legal limit (2346 bytes) */
1165 uint32 rxfrmtooshrt
; /* Received frame did not contain enough bytes for its frame type */
1166 uint32 rxinvmachdr
; /* Either the protocol version != 0 or frame type not
1167 * data/control/management
1169 uint32 rxbadfcs
; /* number of frames for which the CRC check failed in the MAC */
1170 uint32 rxbadplcp
; /* parity check of the PLCP header failed */
1171 uint32 rxcrsglitch
; /* PHY was able to correlate the preamble but not the header */
1172 uint32 rxstrt
; /* Number of received frames with a good PLCP
1173 * (i.e. passing parity check)
1175 uint32 rxdfrmucastmbss
; /* Number of received DATA frames with good FCS and matching RA */
1176 uint32 rxmfrmucastmbss
; /* number of received mgmt frames with good FCS and matching RA */
1177 uint32 rxcfrmucast
; /* number of received CNTRL frames with good FCS and matching RA */
1178 uint32 rxrtsucast
; /* number of unicast RTS addressed to the MAC (good FCS) */
1179 uint32 rxctsucast
; /* number of unicast CTS addressed to the MAC (good FCS) */
1180 uint32 rxackucast
; /* number of ucast ACKS received (good FCS) */
1181 uint32 rxdfrmocast
; /* number of received DATA frames (good FCS and not matching RA) */
1182 uint32 rxmfrmocast
; /* number of received MGMT frames (good FCS and not matching RA) */
1183 uint32 rxcfrmocast
; /* number of received CNTRL frame (good FCS and not matching RA) */
1184 uint32 rxrtsocast
; /* number of received RTS not addressed to the MAC */
1185 uint32 rxctsocast
; /* number of received CTS not addressed to the MAC */
1186 uint32 rxdfrmmcast
; /* number of RX Data multicast frames received by the MAC */
1187 uint32 rxmfrmmcast
; /* number of RX Management multicast frames received by the MAC */
1188 uint32 rxcfrmmcast
; /* number of RX Control multicast frames received by the MAC
1189 * (unlikely to see these)
1191 uint32 rxbeaconmbss
; /* beacons received from member of BSS */
1192 uint32 rxdfrmucastobss
; /* number of unicast frames addressed to the MAC from
1193 * other BSS (WDS FRAME)
1195 uint32 rxbeaconobss
; /* beacons received from other BSS */
1196 uint32 rxrsptmout
; /* Number of response timeouts for transmitted frames
1197 * expecting a response
1199 uint32 bcntxcancl
; /* transmit beacons canceled due to receipt of beacon (IBSS) */
1200 uint32 rxf0ovfl
; /* Number of receive fifo 0 overflows */
1201 uint32 rxf1ovfl
; /* Number of receive fifo 1 overflows (obsolete) */
1202 uint32 rxf2ovfl
; /* Number of receive fifo 2 overflows (obsolete) */
1203 uint32 txsfovfl
; /* Number of transmit status fifo overflows (obsolete) */
1204 uint32 pmqovfl
; /* Number of PMQ overflows */
1205 uint32 rxcgprqfrm
; /* Number of received Probe requests that made it into
1208 uint32 rxcgprsqovfl
; /* Rx Probe Request Que overflow in the AP */
1209 uint32 txcgprsfail
; /* Tx Probe Response Fail. AP sent probe response but did
1212 uint32 txcgprssuc
; /* Tx Probe Response Success (ACK was received) */
1213 uint32 prs_timeout
; /* Number of probe requests that were dropped from the PRQ
1214 * fifo because a probe response could not be sent out within
1215 * the time limit defined in M_PRS_MAXTIME
1217 uint32 rxnack
; /* Number of NACKS received (Afterburner) */
1218 uint32 frmscons
; /* Number of frames completed without transmission because of an
1219 * Afterburner re-queue
1221 uint32 txnack
; /* Number of NACKs transmitted (Afterburner) */
1222 uint32 txglitch_nack
; /* obsolete */
1223 uint32 txburst
; /* obsolete */
1225 /* 802.11 MIB counters, pp. 614 of 802.11 reaff doc. */
1226 uint32 txfrag
; /* dot11TransmittedFragmentCount */
1227 uint32 txmulti
; /* dot11MulticastTransmittedFrameCount */
1228 uint32 txfail
; /* dot11FailedCount */
1229 uint32 txretry
; /* dot11RetryCount */
1230 uint32 txretrie
; /* dot11MultipleRetryCount */
1231 uint32 rxdup
; /* dot11FrameduplicateCount */
1232 uint32 txrts
; /* dot11RTSSuccessCount */
1233 uint32 txnocts
; /* dot11RTSFailureCount */
1234 uint32 txnoack
; /* dot11ACKFailureCount */
1235 uint32 rxfrag
; /* dot11ReceivedFragmentCount */
1236 uint32 rxmulti
; /* dot11MulticastReceivedFrameCount */
1237 uint32 rxcrc
; /* dot11FCSErrorCount */
1238 uint32 txfrmsnt
; /* dot11TransmittedFrameCount (bogus MIB?) */
1239 uint32 rxundec
; /* dot11WEPUndecryptableCount */
1241 /* WPA2 counters (see rxundec for DecryptFailureCount) */
1242 uint32 tkipmicfaill
; /* TKIPLocalMICFailures */
1243 uint32 tkipcntrmsr
; /* TKIPCounterMeasuresInvoked */
1244 uint32 tkipreplay
; /* TKIPReplays */
1245 uint32 ccmpfmterr
; /* CCMPFormatErrors */
1246 uint32 ccmpreplay
; /* CCMPReplays */
1247 uint32 ccmpundec
; /* CCMPDecryptErrors */
1248 uint32 fourwayfail
; /* FourWayHandshakeFailures */
1249 uint32 wepundec
; /* dot11WEPUndecryptableCount */
1250 uint32 wepicverr
; /* dot11WEPICVErrorCount */
1251 uint32 decsuccess
; /* DecryptSuccessCount */
1252 uint32 tkipicverr
; /* TKIPICVErrorCount */
1253 uint32 wepexcluded
; /* dot11WEPExcludedCount */
1255 uint32 txchanrej
; /* Tx frames suppressed due to channel rejection */
1256 uint32 psmwds
; /* Count PSM watchdogs */
1257 uint32 phywatchdog
; /* Count Phy lockups */
1260 #define WL_WME_CNT_VERSION 1 /* current version of wl_wme_cnt_t */
1265 } wl_traffic_stats_t
;
1268 uint16 version
; /* see definition of WL_CNT_T_VERSION */
1269 uint16 length
; /* length of entire structure */
1271 wl_traffic_stats_t tx
[AC_COUNT
]; /* Packets transmitted */
1272 wl_traffic_stats_t tx_failed
[AC_COUNT
]; /* Packets dropped or failed to transmit */
1273 wl_traffic_stats_t rx
[AC_COUNT
]; /* Packets received */
1274 wl_traffic_stats_t rx_failed
[AC_COUNT
]; /* Packets failed to receive */
1276 wl_traffic_stats_t forward
[AC_COUNT
]; /* Packets forwarded by AP */
1278 wl_traffic_stats_t tx_expired
[AC_COUNT
]; /* packets dropped due to lifetime expiry */
1284 #define WLC_BA_CNT_VERSION 1 /* current version of wlc_ba_cnt_t */
1286 /* block ack related stats */
1287 typedef struct wlc_ba_cnt
{
1288 uint16 version
; /* WLC_BA_CNT_VERSION */
1289 uint16 length
; /* length of entire structure */
1291 /* transmit stat counters */
1292 uint32 txpdu
; /* pdus sent */
1293 uint32 txsdu
; /* sdus sent */
1294 uint32 txfc
; /* tx side flow controlled packets */
1295 uint32 txfci
; /* tx side flow control initiated */
1296 uint32 txretrans
; /* retransmitted pdus */
1297 uint32 txbatimer
; /* ba resend due to timer */
1298 uint32 txdrop
; /* dropped packets */
1299 uint32 txaddbareq
; /* addba req sent */
1300 uint32 txaddbaresp
; /* addba resp sent */
1301 uint32 txdelba
; /* delba sent */
1302 uint32 txba
; /* ba sent */
1303 uint32 txbar
; /* bar sent */
1304 uint32 txpad
[4]; /* future */
1306 /* receive side counters */
1307 uint32 rxpdu
; /* pdus recd */
1308 uint32 rxqed
; /* pdus buffered before sending up */
1309 uint32 rxdup
; /* duplicate pdus */
1310 uint32 rxnobuf
; /* pdus discarded due to no buf */
1311 uint32 rxaddbareq
; /* addba req recd */
1312 uint32 rxaddbaresp
; /* addba resp recd */
1313 uint32 rxdelba
; /* delba recd */
1314 uint32 rxba
; /* ba recd */
1315 uint32 rxbar
; /* bar recd */
1316 uint32 rxinvba
; /* invalid ba recd */
1317 uint32 rxbaholes
; /* ba recd with holes */
1318 uint32 rxunexp
; /* unexpected packets */
1319 uint32 rxpad
[4]; /* future */
1323 /* structure for per-tid ampdu control */
1324 struct ampdu_tid_control
{
1325 uint8 tid
; /* tid */
1326 uint8 enable
; /* enable/disable */
1329 /* structure for addts arguments */
1330 /* For ioctls that take a list of TSPEC */
1332 int count
; /* number of tspecs */
1333 struct tsinfo_arg tsinfo
[1]; /* variable length array of tsinfo */
1336 /* structure for addts/delts arguments */
1337 typedef struct tspec_arg
{
1338 uint16 version
; /* see definition of TSPEC_ARG_VERSION */
1339 uint16 length
; /* length of entire structure */
1340 uint flag
; /* bit field */
1341 /* TSPEC Arguments */
1342 struct tsinfo_arg tsinfo
; /* TS Info bit field */
1343 uint16 nom_msdu_size
; /* (Nominal or fixed) MSDU Size (bytes) */
1344 uint16 max_msdu_size
; /* Maximum MSDU Size (bytes) */
1345 uint min_srv_interval
; /* Minimum Service Interval (us) */
1346 uint max_srv_interval
; /* Maximum Service Interval (us) */
1347 uint inactivity_interval
; /* Inactivity Interval (us) */
1348 uint suspension_interval
; /* Suspension Interval (us) */
1349 uint srv_start_time
; /* Service Start Time (us) */
1350 uint min_data_rate
; /* Minimum Data Rate (bps) */
1351 uint mean_data_rate
; /* Mean Data Rate (bps) */
1352 uint peak_data_rate
; /* Peak Data Rate (bps) */
1353 uint max_burst_size
; /* Maximum Burst Size (bytes) */
1354 uint delay_bound
; /* Delay Bound (us) */
1355 uint min_phy_rate
; /* Minimum PHY Rate (bps) */
1356 uint16 surplus_bw
; /* Surplus Bandwidth Allowance Factor */
1357 uint16 medium_time
; /* Medium Time (32 us/s periods) */
1360 /* current version of wl_tspec_arg_t struct */
1361 #define TSPEC_ARG_VERSION 1 /* current version of wl_tspec_arg_t struct */
1362 #define TSPEC_ARG_LENGTH 55 /* argment length from tsinfo to medium_time */
1364 /* define for flag */
1365 #define TSPEC_PENDING 0 /* TSPEC pending */
1366 #define TSPEC_ACCEPTED 1 /* TSPEC accepted */
1367 #define TSPEC_REJECTED 2 /* TSPEC rejected */
1368 #define TSPEC_UNKNOWN 3 /* TSPEC unknown */
1369 #define TSPEC_STATUS_MASK 7 /* TSPEC status mask */
1372 /* Software feature flag defines used by wlfeatureflag */
1373 #define WL_SWFL_ABBFL 0x0001 /* Allow Afterburner on systems w/o hardware BFL */
1374 #define WL_SWFL_ABENCORE 0x0002 /* Allow AB on non-4318E chips */
1376 #define WL_LIFETIME_MAX 0xFFFF /* Max value in ms */
1378 /* Packet lifetime configuration per ac */
1379 typedef struct wl_lifetime
{
1380 uint32 ac
; /* access class */
1381 uint32 lifetime
; /* Packet lifetime value in ms */
1384 #endif /* _wlioctl_h_ */