Staging: Add initial release of brcm80211 - Broadcom 802.11n wireless LAN driver.
[linux-2.6-block.git] / drivers / staging / brcm80211 / include / wlioctl.h
1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef _wlioctl_h_
18 #define _wlioctl_h_
19
20 #include <typedefs.h>
21 #include <proto/ethernet.h>
22 #include <proto/bcmevent.h>
23 #include <proto/802.11.h>
24 #include <bcmwifi.h>
25
26 #ifndef INTF_NAME_SIZ
27 #define INTF_NAME_SIZ   16
28 #endif
29
30 /* require default structure packing */
31 #define BWL_DEFAULT_PACKING
32 #include <packed_section_start.h>
33
34 /* Legacy structure to help keep backward compatible wl tool and tray app */
35
36 #define LEGACY_WL_BSS_INFO_VERSION      107     /* older version of wl_bss_info struct */
37
38 typedef struct wl_bss_info_107 {
39         uint32 version;         /* version field */
40         uint32 length;          /* byte length of data in this record,
41                                  * starting at version and including IEs
42                                  */
43         struct ether_addr BSSID;
44         uint16 beacon_period;   /* units are Kusec */
45         uint16 capability;      /* Capability information */
46         uint8 SSID_len;
47         uint8 SSID[32];
48         struct {
49                 uint count;     /* # rates in this set */
50                 uint8 rates[16];        /* rates in 500kbps units w/hi bit set if basic */
51         } rateset;              /* supported rates */
52         uint8 channel;          /* Channel no. */
53         uint16 atim_window;     /* units are Kusec */
54         uint8 dtim_period;      /* DTIM period */
55         int16 RSSI;             /* receive signal strength (in dBm) */
56         int8 phy_noise;         /* noise (in dBm) */
57         uint32 ie_length;       /* byte length of Information Elements */
58         /* variable length Information Elements */
59 } wl_bss_info_107_t;
60
61 /*
62  * Per-BSS information structure.
63  */
64
65 #define LEGACY2_WL_BSS_INFO_VERSION     108     /* old version of wl_bss_info struct */
66
67 /* BSS info structure
68  * Applications MUST CHECK ie_offset field and length field to access IEs and
69  * next bss_info structure in a vector (in wl_scan_results_t)
70  */
71 typedef struct wl_bss_info_108 {
72         uint32 version;         /* version field */
73         uint32 length;          /* byte length of data in this record,
74                                  * starting at version and including IEs
75                                  */
76         struct ether_addr BSSID;
77         uint16 beacon_period;   /* units are Kusec */
78         uint16 capability;      /* Capability information */
79         uint8 SSID_len;
80         uint8 SSID[32];
81         struct {
82                 uint count;     /* # rates in this set */
83                 uint8 rates[16];        /* rates in 500kbps units w/hi bit set if basic */
84         } rateset;              /* supported rates */
85         chanspec_t chanspec;    /* chanspec for bss */
86         uint16 atim_window;     /* units are Kusec */
87         uint8 dtim_period;      /* DTIM period */
88         int16 RSSI;             /* receive signal strength (in dBm) */
89         int8 phy_noise;         /* noise (in dBm) */
90
91         uint8 n_cap;            /* BSS is 802.11N Capable */
92         uint32 nbss_cap;        /* 802.11N BSS Capabilities (based on HT_CAP_*) */
93         uint8 ctl_ch;           /* 802.11N BSS control channel number */
94         uint32 reserved32[1];   /* Reserved for expansion of BSS properties */
95         uint8 flags;            /* flags */
96         uint8 reserved[3];      /* Reserved for expansion of BSS properties */
97         uint8 basic_mcs[MCSSET_LEN];    /* 802.11N BSS required MCS set */
98
99         uint16 ie_offset;       /* offset at which IEs start, from beginning */
100         uint32 ie_length;       /* byte length of Information Elements */
101         /* Add new fields here */
102         /* variable length Information Elements */
103 } wl_bss_info_108_t;
104
105 #define WL_BSS_INFO_VERSION     109     /* current version of wl_bss_info struct */
106
107 /* BSS info structure
108  * Applications MUST CHECK ie_offset field and length field to access IEs and
109  * next bss_info structure in a vector (in wl_scan_results_t)
110  */
111 typedef struct wl_bss_info {
112         uint32 version;         /* version field */
113         uint32 length;          /* byte length of data in this record,
114                                  * starting at version and including IEs
115                                  */
116         struct ether_addr BSSID;
117         uint16 beacon_period;   /* units are Kusec */
118         uint16 capability;      /* Capability information */
119         uint8 SSID_len;
120         uint8 SSID[32];
121         struct {
122                 uint count;     /* # rates in this set */
123                 uint8 rates[16];        /* rates in 500kbps units w/hi bit set if basic */
124         } rateset;              /* supported rates */
125         chanspec_t chanspec;    /* chanspec for bss */
126         uint16 atim_window;     /* units are Kusec */
127         uint8 dtim_period;      /* DTIM period */
128         int16 RSSI;             /* receive signal strength (in dBm) */
129         int8 phy_noise;         /* noise (in dBm) */
130
131         uint8 n_cap;            /* BSS is 802.11N Capable */
132         uint32 nbss_cap;        /* 802.11N BSS Capabilities (based on HT_CAP_*) */
133         uint8 ctl_ch;           /* 802.11N BSS control channel number */
134         uint32 reserved32[1];   /* Reserved for expansion of BSS properties */
135         uint8 flags;            /* flags */
136         uint8 reserved[3];      /* Reserved for expansion of BSS properties */
137         uint8 basic_mcs[MCSSET_LEN];    /* 802.11N BSS required MCS set */
138
139         uint16 ie_offset;       /* offset at which IEs start, from beginning */
140         uint32 ie_length;       /* byte length of Information Elements */
141         int16 SNR;              /* average SNR of during frame reception */
142         /* Add new fields here */
143         /* variable length Information Elements */
144 } wl_bss_info_t;
145
146 typedef struct wlc_ssid {
147         uint32 SSID_len;
148         uchar SSID[32];
149 } wlc_ssid_t;
150
151 typedef struct chan_scandata {
152         uint8 txpower;
153         uint8 pad;
154         chanspec_t channel;     /* Channel num, bw, ctrl_sb and band */
155         uint32 channel_mintime;
156         uint32 channel_maxtime;
157 } chan_scandata_t;
158
159 typedef enum wl_scan_type {
160         EXTDSCAN_FOREGROUND_SCAN,
161         EXTDSCAN_BACKGROUND_SCAN,
162         EXTDSCAN_FORCEDBACKGROUND_SCAN
163 } wl_scan_type_t;
164
165 #define WLC_EXTDSCAN_MAX_SSID           5
166
167 #define WL_BSS_FLAGS_FROM_BEACON        0x01    /* bss_info derived from beacon */
168 #define WL_BSS_FLAGS_FROM_CACHE         0x02    /* bss_info collected from cache */
169 #define WL_BSS_FLAGS_RSSI_ONCHANNEL     0x04    /* rssi info was received on channel (vs offchannel) */
170
171 typedef struct wl_extdscan_params {
172         int8 nprobes;           /* 0, passive, otherwise active */
173         int8 split_scan;        /* split scan */
174         int8 band;              /* band */
175         int8 pad;
176         wlc_ssid_t ssid[WLC_EXTDSCAN_MAX_SSID]; /* ssid list */
177         uint32 tx_rate;         /* in 500ksec units */
178         wl_scan_type_t scan_type;       /* enum */
179         int32 channel_num;
180         chan_scandata_t channel_list[1];        /* list of chandata structs */
181 } wl_extdscan_params_t;
182
183 #define WL_EXTDSCAN_PARAMS_FIXED_SIZE   (sizeof(wl_extdscan_params_t) - sizeof(chan_scandata_t))
184
185 #define WL_BSSTYPE_INFRA 1
186 #define WL_BSSTYPE_INDEP 0
187 #define WL_BSSTYPE_ANY   2
188
189 /* Bitmask for scan_type */
190 #define WL_SCANFLAGS_PASSIVE 0x01       /* force passive scan */
191 #define WL_SCANFLAGS_RESERVED 0x02      /* Reserved */
192 #define WL_SCANFLAGS_PROHIBITED 0x04    /* allow scanning prohibited channels */
193
194 typedef struct wl_scan_params {
195         wlc_ssid_t ssid;        /* default: {0, ""} */
196         struct ether_addr bssid;        /* default: bcast */
197         int8 bss_type;          /* default: any,
198                                  * DOT11_BSSTYPE_ANY/INFRASTRUCTURE/INDEPENDENT
199                                  */
200         uint8 scan_type;        /* flags, 0 use default */
201         int32 nprobes;          /* -1 use default, number of probes per channel */
202         int32 active_time;      /* -1 use default, dwell time per channel for
203                                  * active scanning
204                                  */
205         int32 passive_time;     /* -1 use default, dwell time per channel
206                                  * for passive scanning
207                                  */
208         int32 home_time;        /* -1 use default, dwell time for the home channel
209                                  * between channel scans
210                                  */
211         int32 channel_num;      /* count of channels and ssids that follow
212                                  *
213                                  * low half is count of channels in channel_list, 0
214                                  * means default (use all available channels)
215                                  *
216                                  * high half is entries in wlc_ssid_t array that
217                                  * follows channel_list, aligned for int32 (4 bytes)
218                                  * meaning an odd channel count implies a 2-byte pad
219                                  * between end of channel_list and first ssid
220                                  *
221                                  * if ssid count is zero, single ssid in the fixed
222                                  * parameter portion is assumed, otherwise ssid in
223                                  * the fixed portion is ignored
224                                  */
225         uint16 channel_list[1]; /* list of chanspecs */
226 } wl_scan_params_t;
227
228 /* size of wl_scan_params not including variable length array */
229 #define WL_SCAN_PARAMS_FIXED_SIZE 64
230
231 /* masks for channel and ssid count */
232 #define WL_SCAN_PARAMS_COUNT_MASK 0x0000ffff
233 #define WL_SCAN_PARAMS_NSSID_SHIFT 16
234
235 #define WL_SCAN_ACTION_START      1
236 #define WL_SCAN_ACTION_CONTINUE   2
237 #define WL_SCAN_ACTION_ABORT      3
238
239 #define ISCAN_REQ_VERSION 1
240
241 /* incremental scan struct */
242 typedef struct wl_iscan_params {
243         uint32 version;
244         uint16 action;
245         uint16 scan_duration;
246         wl_scan_params_t params;
247 } wl_iscan_params_t;
248
249 /* 3 fields + size of wl_scan_params, not including variable length array */
250 #define WL_ISCAN_PARAMS_FIXED_SIZE (OFFSETOF(wl_iscan_params_t, params) + sizeof(wlc_ssid_t))
251
252 typedef struct wl_scan_results {
253         uint32 buflen;
254         uint32 version;
255         uint32 count;
256         wl_bss_info_t bss_info[1];
257 } wl_scan_results_t;
258
259 /* size of wl_scan_results not including variable length array */
260 #define WL_SCAN_RESULTS_FIXED_SIZE (sizeof(wl_scan_results_t) - sizeof(wl_bss_info_t))
261
262 /* wl_iscan_results status values */
263 #define WL_SCAN_RESULTS_SUCCESS 0
264 #define WL_SCAN_RESULTS_PARTIAL 1
265 #define WL_SCAN_RESULTS_PENDING 2
266 #define WL_SCAN_RESULTS_ABORTED 3
267
268 #define ESCAN_REQ_VERSION 1
269
270 typedef struct wl_escan_params {
271         uint32 version;
272         uint16 action;
273         uint16 sync_id;
274         wl_scan_params_t params;
275 } wl_escan_params_t;
276
277 #define WL_ESCAN_PARAMS_FIXED_SIZE (OFFSETOF(wl_escan_params_t, params) + sizeof(wlc_ssid_t))
278
279 typedef struct wl_escan_result {
280         uint32 buflen;
281         uint32 version;
282         uint16 sync_id;
283         uint16 bss_count;
284         wl_bss_info_t bss_info[1];
285 } wl_escan_result_t;
286
287 #define WL_ESCAN_RESULTS_FIXED_SIZE (sizeof(wl_escan_result_t) - sizeof(wl_bss_info_t))
288
289 /* incremental scan results struct */
290 typedef struct wl_iscan_results {
291         uint32 status;
292         wl_scan_results_t results;
293 } wl_iscan_results_t;
294
295 /* size of wl_iscan_results not including variable length array */
296 #define WL_ISCAN_RESULTS_FIXED_SIZE \
297         (WL_SCAN_RESULTS_FIXED_SIZE + OFFSETOF(wl_iscan_results_t, results))
298
299 typedef struct wl_probe_params {
300         wlc_ssid_t ssid;
301         struct ether_addr bssid;
302         struct ether_addr mac;
303 } wl_probe_params_t;
304
305 #define WL_NUMRATES             16      /* max # of rates in a rateset */
306 typedef struct wl_rateset {
307         uint32 count;           /* # rates in this set */
308         uint8 rates[WL_NUMRATES];       /* rates in 500kbps units w/hi bit set if basic */
309 } wl_rateset_t;
310
311 typedef struct wl_rateset_args {
312         uint32 count;           /* # rates in this set */
313         uint8 rates[WL_NUMRATES];       /* rates in 500kbps units w/hi bit set if basic */
314         uint8 mcs[MCSSET_LEN];  /* supported mcs index bit map */
315 } wl_rateset_args_t;
316
317 /* uint32 list */
318 typedef struct wl_uint32_list {
319         /* in - # of elements, out - # of entries */
320         uint32 count;
321         /* variable length uint32 list */
322         uint32 element[1];
323 } wl_uint32_list_t;
324
325 /* used for association with a specific BSSID and chanspec list */
326 typedef struct wl_assoc_params {
327         struct ether_addr bssid;        /* 00:00:00:00:00:00: broadcast scan */
328         int32 chanspec_num;     /* 0: all available channels,
329                                  * otherwise count of chanspecs in chanspec_list
330                                  */
331         chanspec_t chanspec_list[1];    /* list of chanspecs */
332 } wl_assoc_params_t;
333 #define WL_ASSOC_PARAMS_FIXED_SIZE      (sizeof(wl_assoc_params_t) - sizeof(chanspec_t))
334
335 /* used for reassociation/roam to a specific BSSID and channel */
336 typedef wl_assoc_params_t wl_reassoc_params_t;
337 #define WL_REASSOC_PARAMS_FIXED_SIZE    WL_ASSOC_PARAMS_FIXED_SIZE
338
339 /* used for join with or without a specific bssid and channel list */
340 typedef struct wl_join_params {
341         wlc_ssid_t ssid;
342         wl_assoc_params_t params;       /* optional field, but it must include the fixed portion
343                                          * of the wl_assoc_params_t struct when it does present.
344                                          */
345 } wl_join_params_t;
346 #define WL_JOIN_PARAMS_FIXED_SIZE       (sizeof(wl_join_params_t) - sizeof(chanspec_t))
347
348 /* defines used by the nrate iovar */
349 #define NRATE_MCS_INUSE 0x00000080      /* MSC in use,indicates b0-6 holds an mcs */
350 #define NRATE_RATE_MASK 0x0000007f      /* rate/mcs value */
351 #define NRATE_STF_MASK  0x0000ff00      /* stf mode mask: siso, cdd, stbc, sdm */
352 #define NRATE_STF_SHIFT 8       /* stf mode shift */
353 #define NRATE_OVERRIDE  0x80000000      /* bit indicates override both rate & mode */
354 #define NRATE_OVERRIDE_MCS_ONLY 0x40000000      /* bit indicate to override mcs only */
355 #define NRATE_SGI_MASK  0x00800000      /* sgi mode */
356 #define NRATE_SGI_SHIFT 23      /* sgi mode */
357 #define NRATE_LDPC_CODING 0x00400000    /* bit indicates adv coding in use */
358 #define NRATE_LDPC_SHIFT 22     /* ldpc shift */
359
360 #define NRATE_STF_SISO  0       /* stf mode SISO */
361 #define NRATE_STF_CDD   1       /* stf mode CDD */
362 #define NRATE_STF_STBC  2       /* stf mode STBC */
363 #define NRATE_STF_SDM   3       /* stf mode SDM */
364
365 #define ANTENNA_NUM_1   1       /* total number of antennas to be used */
366 #define ANTENNA_NUM_2   2
367 #define ANTENNA_NUM_3   3
368 #define ANTENNA_NUM_4   4
369
370 #define ANT_SELCFG_AUTO         0x80    /* bit indicates antenna sel AUTO */
371 #define ANT_SELCFG_MASK         0x33    /* antenna configuration mask */
372 #define ANT_SELCFG_MAX          4       /* max number of antenna configurations */
373 #define ANT_SELCFG_TX_UNICAST   0       /* unicast tx antenna configuration */
374 #define ANT_SELCFG_RX_UNICAST   1       /* unicast rx antenna configuration */
375 #define ANT_SELCFG_TX_DEF       2       /* default tx antenna configuration */
376 #define ANT_SELCFG_RX_DEF       3       /* default rx antenna configuration */
377
378 #define MAX_STREAMS_SUPPORTED   4       /* max number of streams supported */
379
380 typedef struct {
381         uint8 ant_config[ANT_SELCFG_MAX];       /* antenna configuration */
382         uint8 num_antcfg;       /* number of available antenna configurations */
383 } wlc_antselcfg_t;
384
385 #define HIGHEST_SINGLE_STREAM_MCS       7       /* MCS values greater than this enable multiple streams */
386
387 #define MAX_CCA_CHANNELS 38     /* Max number of 20 Mhz wide channels */
388 #define MAX_CCA_SECS     60     /* CCA keeps this many seconds history */
389
390 #define IBSS_MED        15      /* Mediom in-bss congestion percentage */
391 #define IBSS_HI         25      /* Hi in-bss congestion percentage */
392 #define OBSS_MED        12
393 #define OBSS_HI         25
394 #define INTERFER_MED    5
395 #define INTERFER_HI     10
396
397 #define  CCA_FLAG_2G_ONLY               0x01    /* Return a channel from 2.4 Ghz band */
398 #define  CCA_FLAG_5G_ONLY               0x02    /* Return a channel from 2.4 Ghz band */
399 #define  CCA_FLAG_IGNORE_DURATION       0x04    /* Ignore dwell time for each channel */
400 #define  CCA_FLAGS_PREFER_1_6_11        0x10
401 #define  CCA_FLAG_IGNORE_INTERFER       0x20    /* do not exlude channel based on interfer level */
402
403 #define CCA_ERRNO_BAND          1       /* After filtering for band pref, no choices left */
404 #define CCA_ERRNO_DURATION      2       /* After filtering for duration, no choices left */
405 #define CCA_ERRNO_PREF_CHAN     3       /* After filtering for chan pref, no choices left */
406 #define CCA_ERRNO_INTERFER      4       /* After filtering for interference, no choices left */
407 #define CCA_ERRNO_TOO_FEW       5       /* Only 1 channel was input */
408
409 typedef struct {
410         uint32 duration;        /* millisecs spent sampling this channel */
411         uint32 congest_ibss;    /* millisecs in our bss (presumably this traffic will */
412         /*  move if cur bss moves channels) */
413         uint32 congest_obss;    /* traffic not in our bss */
414         uint32 interference;    /* millisecs detecting a non 802.11 interferer. */
415         uint32 timestamp;       /* second timestamp */
416 } cca_congest_t;
417
418 typedef struct {
419         chanspec_t chanspec;    /* Which channel? */
420         uint8 num_secs;         /* How many secs worth of data */
421         cca_congest_t secs[1];  /* Data */
422 } cca_congest_channel_req_t;
423
424 #define WLC_CNTRY_BUF_SZ        4       /* Country string is 3 bytes + NUL */
425
426 typedef struct wl_country {
427         char country_abbrev[WLC_CNTRY_BUF_SZ];  /* nul-terminated country code used in
428                                                  * the Country IE
429                                                  */
430         int32 rev;              /* revision specifier for ccode
431                                  * on set, -1 indicates unspecified.
432                                  * on get, rev >= 0
433                                  */
434         char ccode[WLC_CNTRY_BUF_SZ];   /* nul-terminated built-in country code.
435                                          * variable length, but fixed size in
436                                          * struct allows simple allocation for
437                                          * expected country strings <= 3 chars.
438                                          */
439 } wl_country_t;
440
441 typedef struct wl_channels_in_country {
442         uint32 buflen;
443         uint32 band;
444         char country_abbrev[WLC_CNTRY_BUF_SZ];
445         uint32 count;
446         uint32 channel[1];
447 } wl_channels_in_country_t;
448
449 typedef struct wl_country_list {
450         uint32 buflen;
451         uint32 band_set;
452         uint32 band;
453         uint32 count;
454         char country_abbrev[1];
455 } wl_country_list_t;
456
457 #define WL_NUM_RPI_BINS         8
458 #define WL_RM_TYPE_BASIC        1
459 #define WL_RM_TYPE_CCA          2
460 #define WL_RM_TYPE_RPI          3
461
462 #define WL_RM_FLAG_PARALLEL     (1<<0)
463
464 #define WL_RM_FLAG_LATE         (1<<1)
465 #define WL_RM_FLAG_INCAPABLE    (1<<2)
466 #define WL_RM_FLAG_REFUSED      (1<<3)
467
468 typedef struct wl_rm_req_elt {
469         int8 type;
470         int8 flags;
471         chanspec_t chanspec;
472         uint32 token;           /* token for this measurement */
473         uint32 tsf_h;           /* TSF high 32-bits of Measurement start time */
474         uint32 tsf_l;           /* TSF low 32-bits */
475         uint32 dur;             /* TUs */
476 } wl_rm_req_elt_t;
477
478 typedef struct wl_rm_req {
479         uint32 token;           /* overall measurement set token */
480         uint32 count;           /* number of measurement requests */
481         void *cb;               /* completion callback function: may be NULL */
482         void *cb_arg;           /* arg to completion callback function */
483         wl_rm_req_elt_t req[1]; /* variable length block of requests */
484 } wl_rm_req_t;
485 #define WL_RM_REQ_FIXED_LEN     OFFSETOF(wl_rm_req_t, req)
486
487 typedef struct wl_rm_rep_elt {
488         int8 type;
489         int8 flags;
490         chanspec_t chanspec;
491         uint32 token;           /* token for this measurement */
492         uint32 tsf_h;           /* TSF high 32-bits of Measurement start time */
493         uint32 tsf_l;           /* TSF low 32-bits */
494         uint32 dur;             /* TUs */
495         uint32 len;             /* byte length of data block */
496         uint8 data[1];          /* variable length data block */
497 } wl_rm_rep_elt_t;
498 #define WL_RM_REP_ELT_FIXED_LEN 24      /* length excluding data block */
499
500 #define WL_RPI_REP_BIN_NUM 8
501 typedef struct wl_rm_rpi_rep {
502         uint8 rpi[WL_RPI_REP_BIN_NUM];
503         int8 rpi_max[WL_RPI_REP_BIN_NUM];
504 } wl_rm_rpi_rep_t;
505
506 typedef struct wl_rm_rep {
507         uint32 token;           /* overall measurement set token */
508         uint32 len;             /* length of measurement report block */
509         wl_rm_rep_elt_t rep[1]; /* variable length block of reports */
510 } wl_rm_rep_t;
511 #define WL_RM_REP_FIXED_LEN     8
512
513 /* Enumerate crypto algorithms */
514 #define CRYPTO_ALGO_OFF                 0
515 #define CRYPTO_ALGO_WEP1                1
516 #define CRYPTO_ALGO_TKIP                2
517 #define CRYPTO_ALGO_WEP128              3
518 #define CRYPTO_ALGO_AES_CCM             4
519 #define CRYPTO_ALGO_AES_RESERVED1       5
520 #define CRYPTO_ALGO_AES_RESERVED2       6
521 #define CRYPTO_ALGO_NALG                7
522
523 #define WSEC_GEN_MIC_ERROR      0x0001
524 #define WSEC_GEN_REPLAY         0x0002
525 #define WSEC_GEN_ICV_ERROR      0x0004
526
527 #define WL_SOFT_KEY     (1 << 0)        /* Indicates this key is using soft encrypt */
528 #define WL_PRIMARY_KEY  (1 << 1)        /* Indicates this key is the primary (ie tx) key */
529 #define WL_KF_RES_4     (1 << 4)        /* Reserved for backward compat */
530 #define WL_KF_RES_5     (1 << 5)        /* Reserved for backward compat */
531 #define WL_IBSS_PEER_GROUP_KEY  (1 << 6)        /* Indicates a group key for a IBSS PEER */
532
533 typedef struct wl_wsec_key {
534         uint32 index;           /* key index */
535         uint32 len;             /* key length */
536         uint8 data[DOT11_MAX_KEY_SIZE]; /* key data */
537         uint32 pad_1[18];
538         uint32 algo;            /* CRYPTO_ALGO_AES_CCM, CRYPTO_ALGO_WEP128, etc */
539         uint32 flags;           /* misc flags */
540         uint32 pad_2[2];
541         int pad_3;
542         int iv_initialized;     /* has IV been initialized already? */
543         int pad_4;
544         /* Rx IV */
545         struct {
546                 uint32 hi;      /* upper 32 bits of IV */
547                 uint16 lo;      /* lower 16 bits of IV */
548         } rxiv;
549         uint32 pad_5[2];
550         struct ether_addr ea;   /* per station */
551 } wl_wsec_key_t;
552
553 #define WSEC_MIN_PSK_LEN        8
554 #define WSEC_MAX_PSK_LEN        64
555
556 /* Flag for key material needing passhash'ing */
557 #define WSEC_PASSPHRASE         (1<<0)
558
559 /* receptacle for WLC_SET_WSEC_PMK parameter */
560 typedef struct {
561         ushort key_len;         /* octets in key material */
562         ushort flags;           /* key handling qualification */
563         uint8 key[WSEC_MAX_PSK_LEN];    /* PMK material */
564 } wsec_pmk_t;
565
566 /* wireless security bitvec */
567 #define WEP_ENABLED             0x0001
568 #define TKIP_ENABLED            0x0002
569 #define AES_ENABLED             0x0004
570 #define WSEC_SWFLAG             0x0008
571 #define SES_OW_ENABLED          0x0040  /* to go into transition mode without setting wep */
572
573 /* WPA authentication mode bitvec */
574 #define WPA_AUTH_DISABLED       0x0000  /* Legacy (i.e., non-WPA) */
575 #define WPA_AUTH_NONE           0x0001  /* none (IBSS) */
576 #define WPA_AUTH_UNSPECIFIED    0x0002  /* over 802.1x */
577 #define WPA_AUTH_PSK            0x0004  /* Pre-shared key */
578 #define WPA_AUTH_RESERVED1      0x0008
579 #define WPA_AUTH_RESERVED2      0x0010
580                                         /* #define WPA_AUTH_8021X 0x0020 *//* 802.1x, reserved */
581 #define WPA2_AUTH_RESERVED1     0x0020
582 #define WPA2_AUTH_UNSPECIFIED   0x0040  /* over 802.1x */
583 #define WPA2_AUTH_PSK           0x0080  /* Pre-shared key */
584 #define WPA2_AUTH_RESERVED3     0x0200
585 #define WPA2_AUTH_RESERVED4     0x0400
586 #define WPA2_AUTH_RESERVED5     0x0800
587
588 /* pmkid */
589 #define MAXPMKID                16
590
591 typedef struct _pmkid {
592         struct ether_addr BSSID;
593         uint8 PMKID[WPA2_PMKID_LEN];
594 } pmkid_t;
595
596 typedef struct _pmkid_list {
597         uint32 npmkid;
598         pmkid_t pmkid[1];
599 } pmkid_list_t;
600
601 typedef struct _pmkid_cand {
602         struct ether_addr BSSID;
603         uint8 preauth;
604 } pmkid_cand_t;
605
606 typedef struct _pmkid_cand_list {
607         uint32 npmkid_cand;
608         pmkid_cand_t pmkid_cand[1];
609 } pmkid_cand_list_t;
610
611 typedef struct wl_led_info {
612         uint32 index;           /* led index */
613         uint32 behavior;
614         uint8 activehi;
615 } wl_led_info_t;
616
617 typedef struct wl_assoc_info {
618         uint32 req_len;
619         uint32 resp_len;
620         uint32 flags;
621         struct dot11_assoc_req req;
622         struct ether_addr reassoc_bssid;        /* used in reassoc's */
623         struct dot11_assoc_resp resp;
624 } wl_assoc_info_t;
625
626 /* flags */
627 #define WLC_ASSOC_REQ_IS_REASSOC 0x01   /* assoc req was actually a reassoc */
628
629 /* srom read/write struct passed through ioctl */
630 typedef struct {
631         uint byteoff;           /* byte offset */
632         uint nbytes;            /* number of bytes */
633         uint16 buf[1];
634 } srom_rw_t;
635
636 /* similar cis (srom or otp) struct [iovar: may not be aligned] */
637 typedef struct {
638         uint32 source;          /* cis source */
639         uint32 byteoff;         /* byte offset */
640         uint32 nbytes;          /* number of bytes */
641         /* data follows here */
642 } cis_rw_t;
643
644 #define WLC_CIS_DEFAULT 0       /* built-in default */
645 #define WLC_CIS_SROM    1       /* source is sprom */
646 #define WLC_CIS_OTP     2       /* source is otp */
647
648 /* R_REG and W_REG struct passed through ioctl */
649 typedef struct {
650         uint32 byteoff;         /* byte offset of the field in d11regs_t */
651         uint32 val;             /* read/write value of the field */
652         uint32 size;            /* sizeof the field */
653         uint band;              /* band (optional) */
654 } rw_reg_t;
655
656 /* Structure used by GET/SET_ATTEN ioctls - it controls power in b/g-band */
657 /* PCL - Power Control Loop */
658 /* current gain setting is replaced by user input */
659 #define WL_ATTEN_APP_INPUT_PCL_OFF      0       /* turn off PCL, apply supplied input */
660 #define WL_ATTEN_PCL_ON                 1       /* turn on PCL */
661 /* current gain setting is maintained */
662 #define WL_ATTEN_PCL_OFF                2       /* turn off PCL. */
663
664 typedef struct {
665         uint16 auto_ctrl;       /* WL_ATTEN_XX */
666         uint16 bb;              /* Baseband attenuation */
667         uint16 radio;           /* Radio attenuation */
668         uint16 txctl1;          /* Radio TX_CTL1 value */
669 } atten_t;
670
671 /* Per-AC retry parameters */
672 struct wme_tx_params_s {
673         uint8 short_retry;
674         uint8 short_fallback;
675         uint8 long_retry;
676         uint8 long_fallback;
677         uint16 max_rate;        /* In units of 512 Kbps */
678 };
679
680 typedef struct wme_tx_params_s wme_tx_params_t;
681
682 #define WL_WME_TX_PARAMS_IO_BYTES (sizeof(wme_tx_params_t) * AC_COUNT)
683
684 /* defines used by poweridx iovar - it controls power in a-band */
685 /* current gain setting is maintained */
686 #define WL_PWRIDX_PCL_OFF       -2      /* turn off PCL.  */
687 #define WL_PWRIDX_PCL_ON        -1      /* turn on PCL */
688 #define WL_PWRIDX_LOWER_LIMIT   -2      /* lower limit */
689 #define WL_PWRIDX_UPPER_LIMIT   63      /* upper limit */
690 /* value >= 0 causes
691  *      - input to be set to that value
692  *      - PCL to be off
693  */
694
695 /* Used to get specific link/ac parameters */
696 typedef struct {
697         int ac;
698         uint8 val;
699         struct ether_addr ea;
700 } link_val_t;
701
702 #define BCM_MAC_STATUS_INDICATION       (0x40010200L)
703
704 typedef struct {
705         uint16 ver;             /* version of this struct */
706         uint16 len;             /* length in bytes of this structure */
707         uint16 cap;             /* sta's advertised capabilities */
708         uint32 flags;           /* flags defined below */
709         uint32 idle;            /* time since data pkt rx'd from sta */
710         struct ether_addr ea;   /* Station address */
711         wl_rateset_t rateset;   /* rateset in use */
712         uint32 in;              /* seconds elapsed since associated */
713         uint32 listen_interval_inms;    /* Min Listen interval in ms for this STA */
714         uint32 tx_pkts;         /* # of packets transmitted */
715         uint32 tx_failures;     /* # of packets failed */
716         uint32 rx_ucast_pkts;   /* # of unicast packets received */
717         uint32 rx_mcast_pkts;   /* # of multicast packets received */
718         uint32 tx_rate;         /* Rate of last successful tx frame */
719         uint32 rx_rate;         /* Rate of last successful rx frame */
720         uint32 rx_decrypt_succeeds;     /* # of packet decrypted successfully */
721         uint32 rx_decrypt_failures;     /* # of packet decrypted unsuccessfully */
722 } sta_info_t;
723
724 #define WL_OLD_STAINFO_SIZE     OFFSETOF(sta_info_t, tx_pkts)
725
726 #define WL_STA_VER              3
727
728 /* Flags for sta_info_t indicating properties of STA */
729 #define WL_STA_BRCM             0x1     /* Running a Broadcom driver */
730 #define WL_STA_WME              0x2     /* WMM association */
731 #define WL_STA_ABCAP            0x4
732 #define WL_STA_AUTHE            0x8     /* Authenticated */
733 #define WL_STA_ASSOC            0x10    /* Associated */
734 #define WL_STA_AUTHO            0x20    /* Authorized */
735 #define WL_STA_WDS              0x40    /* Wireless Distribution System */
736 #define WL_STA_WDS_LINKUP       0x80    /* WDS traffic/probes flowing properly */
737 #define WL_STA_PS               0x100   /* STA is in power save mode from AP's viewpoint */
738 #define WL_STA_APSD_BE          0x200   /* APSD delv/trigger for AC_BE is default enabled */
739 #define WL_STA_APSD_BK          0x400   /* APSD delv/trigger for AC_BK is default enabled */
740 #define WL_STA_APSD_VI          0x800   /* APSD delv/trigger for AC_VI is default enabled */
741 #define WL_STA_APSD_VO          0x1000  /* APSD delv/trigger for AC_VO is default enabled */
742 #define WL_STA_N_CAP            0x2000  /* STA 802.11n capable */
743 #define WL_STA_SCBSTATS         0x4000  /* Per STA debug stats */
744
745 #define WL_WDS_LINKUP           WL_STA_WDS_LINKUP       /* deprecated */
746
747 /* Used to get specific STA parameters */
748 typedef struct {
749         uint32 val;
750         struct ether_addr ea;
751 } scb_val_t;
752
753 /* channel encoding */
754 typedef struct channel_info {
755         int hw_channel;
756         int target_channel;
757         int scan_channel;
758 } channel_info_t;
759
760 /* For ioctls that take a list of MAC addresses */
761 struct maclist {
762         uint count;             /* number of MAC addresses */
763         struct ether_addr ea[1];        /* variable length array of MAC addresses */
764 };
765
766 /* get pkt count struct passed through ioctl */
767 typedef struct get_pktcnt {
768         uint rx_good_pkt;
769         uint rx_bad_pkt;
770         uint tx_good_pkt;
771         uint tx_bad_pkt;
772         uint rx_ocast_good_pkt; /* unicast packets destined for others */
773 } get_pktcnt_t;
774
775 /* Linux network driver ioctl encoding */
776 typedef struct wl_ioctl {
777         uint cmd;               /* common ioctl definition */
778         void *buf;              /* pointer to user buffer */
779         uint len;               /* length of user buffer */
780         uint8 set;              /* get or set request (optional) */
781         uint used;              /* bytes read or written (optional) */
782         uint needed;            /* bytes needed (optional) */
783 } wl_ioctl_t;
784
785 /* reference to wl_ioctl_t struct used by usermode driver */
786 #define ioctl_subtype   set     /* subtype param */
787 #define ioctl_pid       used    /* pid param */
788 #define ioctl_status    needed  /* status param */
789
790 /*
791  * Structure for passing hardware and software
792  * revision info up from the driver.
793  */
794 typedef struct wlc_rev_info {
795         uint vendorid;          /* PCI vendor id */
796         uint deviceid;          /* device id of chip */
797         uint radiorev;          /* radio revision */
798         uint chiprev;           /* chip revision */
799         uint corerev;           /* core revision */
800         uint boardid;           /* board identifier (usu. PCI sub-device id) */
801         uint boardvendor;       /* board vendor (usu. PCI sub-vendor id) */
802         uint boardrev;          /* board revision */
803         uint driverrev;         /* driver version */
804         uint ucoderev;          /* microcode version */
805         uint bus;               /* bus type */
806         uint chipnum;           /* chip number */
807         uint phytype;           /* phy type */
808         uint phyrev;            /* phy revision */
809         uint anarev;            /* anacore rev */
810         uint chippkg;           /* chip package info */
811 } wlc_rev_info_t;
812
813 #define WL_REV_INFO_LEGACY_LENGTH       48
814
815 #define WL_BRAND_MAX 10
816 typedef struct wl_instance_info {
817         uint instance;
818         char brand[WL_BRAND_MAX];
819 } wl_instance_info_t;
820
821 /* structure to change size of tx fifo */
822 typedef struct wl_txfifo_sz {
823         uint16 magic;
824         uint16 fifo;
825         uint16 size;
826 } wl_txfifo_sz_t;
827 /* magic pattern used for mismatch driver and wl */
828 #define WL_TXFIFO_SZ_MAGIC      0xa5a5
829
830 /* Transfer info about an IOVar from the driver */
831 /* Max supported IOV name size in bytes, + 1 for nul termination */
832 #define WLC_IOV_NAME_LEN 30
833 typedef struct wlc_iov_trx_s {
834         uint8 module;
835         uint8 type;
836         char name[WLC_IOV_NAME_LEN];
837 } wlc_iov_trx_t;
838
839 /* check this magic number */
840 #define WLC_IOCTL_MAGIC         0x14e46c77
841
842 #define PROC_ENTRY_NAME "brcm_debug"
843 /* bump this number if you change the ioctl interface */
844 #define WLC_IOCTL_VERSION       1
845
846 #define WLC_IOCTL_MAXLEN                3072    /* max length ioctl buffer required */
847 #define WLC_IOCTL_SMLEN                 256     /* "small" length ioctl buffer required */
848 #define WLC_IOCTL_MEDLEN                1536    /* "med" length ioctl buffer required */
849 #define WLC_SAMPLECOLLECT_MAXLEN        10240   /* Max Sample Collect buffer for two cores */
850
851 /* common ioctl definitions */
852 #define WLC_GET_MAGIC                           0
853 #define WLC_GET_VERSION                         1
854 #define WLC_UP                                  2
855 #define WLC_DOWN                                3
856 #define WLC_GET_LOOP                            4
857 #define WLC_SET_LOOP                            5
858 #define WLC_DUMP                                6
859 #define WLC_GET_MSGLEVEL                        7
860 #define WLC_SET_MSGLEVEL                        8
861 #define WLC_GET_PROMISC                         9
862 #define WLC_SET_PROMISC                         10
863 #define WLC_OVERLAY_IOCTL                       11
864 #define WLC_GET_RATE                            12
865                                                       /* #define WLC_SET_RATE                           13 *//* no longer supported */
866 #define WLC_GET_INSTANCE                        14
867                                                       /* #define WLC_GET_FRAG                           15 *//* no longer supported */
868                                                       /* #define WLC_SET_FRAG                           16 *//* no longer supported */
869                                                       /* #define WLC_GET_RTS                            17 *//* no longer supported */
870                                                       /* #define WLC_SET_RTS                            18 *//* no longer supported */
871 #define WLC_GET_INFRA                           19
872 #define WLC_SET_INFRA                           20
873 #define WLC_GET_AUTH                            21
874 #define WLC_SET_AUTH                            22
875 #define WLC_GET_BSSID                           23
876 #define WLC_SET_BSSID                           24
877 #define WLC_GET_SSID                            25
878 #define WLC_SET_SSID                            26
879 #define WLC_RESTART                             27
880                                                       /* #define WLC_DUMP_SCB                           28 *//* no longer supported */
881 #define WLC_GET_CHANNEL                         29
882 #define WLC_SET_CHANNEL                         30
883 #define WLC_GET_SRL                             31
884 #define WLC_SET_SRL                             32
885 #define WLC_GET_LRL                             33
886 #define WLC_SET_LRL                             34
887 #define WLC_GET_PLCPHDR                         35
888 #define WLC_SET_PLCPHDR                         36
889 #define WLC_GET_RADIO                           37
890 #define WLC_SET_RADIO                           38
891 #define WLC_GET_PHYTYPE                         39
892 #define WLC_DUMP_RATE                           40
893 #define WLC_SET_RATE_PARAMS                     41
894 #define WLC_GET_FIXRATE                         42
895 #define WLC_SET_FIXRATE                         43
896                                                       /* #define WLC_GET_WEP                            42 *//* no longer supported */
897                                                       /* #define WLC_SET_WEP                            43 *//* no longer supported */
898 #define WLC_GET_KEY                             44
899 #define WLC_SET_KEY                             45
900 #define WLC_GET_REGULATORY                      46
901 #define WLC_SET_REGULATORY                      47
902 #define WLC_GET_PASSIVE_SCAN                    48
903 #define WLC_SET_PASSIVE_SCAN                    49
904 #define WLC_SCAN                                50
905 #define WLC_SCAN_RESULTS                        51
906 #define WLC_DISASSOC                            52
907 #define WLC_REASSOC                             53
908 #define WLC_GET_ROAM_TRIGGER                    54
909 #define WLC_SET_ROAM_TRIGGER                    55
910 #define WLC_GET_ROAM_DELTA                      56
911 #define WLC_SET_ROAM_DELTA                      57
912 #define WLC_GET_ROAM_SCAN_PERIOD                58
913 #define WLC_SET_ROAM_SCAN_PERIOD                59
914 #define WLC_EVM                                 60      /* diag */
915 #define WLC_GET_TXANT                           61
916 #define WLC_SET_TXANT                           62
917 #define WLC_GET_ANTDIV                          63
918 #define WLC_SET_ANTDIV                          64
919                                                       /* #define WLC_GET_TXPWR                  65 *//* no longer supported */
920                                                       /* #define WLC_SET_TXPWR                  66 *//* no longer supported */
921 #define WLC_GET_CLOSED                          67
922 #define WLC_SET_CLOSED                          68
923 #define WLC_GET_MACLIST                         69
924 #define WLC_SET_MACLIST                         70
925 #define WLC_GET_RATESET                         71
926 #define WLC_SET_RATESET                         72
927                                                       /* #define WLC_GET_LOCALE                 73 *//* no longer supported */
928 #define WLC_LONGTRAIN                           74
929 #define WLC_GET_BCNPRD                          75
930 #define WLC_SET_BCNPRD                          76
931 #define WLC_GET_DTIMPRD                         77
932 #define WLC_SET_DTIMPRD                         78
933 #define WLC_GET_SROM                            79
934 #define WLC_SET_SROM                            80
935 #define WLC_GET_WEP_RESTRICT                    81
936 #define WLC_SET_WEP_RESTRICT                    82
937 #define WLC_GET_COUNTRY                         83
938 #define WLC_SET_COUNTRY                         84
939 #define WLC_GET_PM                              85
940 #define WLC_SET_PM                              86
941 #define WLC_GET_WAKE                            87
942 #define WLC_SET_WAKE                            88
943                                                       /* #define WLC_GET_D11CNTS                        89 *//* -> "counters" iovar */
944 #define WLC_GET_FORCELINK                       90      /* ndis only */
945 #define WLC_SET_FORCELINK                       91      /* ndis only */
946 #define WLC_FREQ_ACCURACY                       92      /* diag */
947 #define WLC_CARRIER_SUPPRESS                    93      /* diag */
948 #define WLC_GET_PHYREG                          94
949 #define WLC_SET_PHYREG                          95
950 #define WLC_GET_RADIOREG                        96
951 #define WLC_SET_RADIOREG                        97
952 #define WLC_GET_REVINFO                         98
953 #define WLC_GET_UCANTDIV                        99
954 #define WLC_SET_UCANTDIV                        100
955 #define WLC_R_REG                               101
956 #define WLC_W_REG                               102
957 /* #define WLC_DIAG_LOOPBACK                    103     old tray diag */
958                                                        /* #define WLC_RESET_D11CNTS                     104 *//* -> "reset_d11cnts" iovar */
959 #define WLC_GET_MACMODE                         105
960 #define WLC_SET_MACMODE                         106
961 #define WLC_GET_MONITOR                         107
962 #define WLC_SET_MONITOR                         108
963 #define WLC_GET_GMODE                           109
964 #define WLC_SET_GMODE                           110
965 #define WLC_GET_LEGACY_ERP                      111
966 #define WLC_SET_LEGACY_ERP                      112
967 #define WLC_GET_RX_ANT                          113
968 #define WLC_GET_CURR_RATESET                    114     /* current rateset */
969 #define WLC_GET_SCANSUPPRESS                    115
970 #define WLC_SET_SCANSUPPRESS                    116
971 #define WLC_GET_AP                              117
972 #define WLC_SET_AP                              118
973 #define WLC_GET_EAP_RESTRICT                    119
974 #define WLC_SET_EAP_RESTRICT                    120
975 #define WLC_SCB_AUTHORIZE                       121
976 #define WLC_SCB_DEAUTHORIZE                     122
977 #define WLC_GET_WDSLIST                         123
978 #define WLC_SET_WDSLIST                         124
979 #define WLC_GET_ATIM                            125
980 #define WLC_SET_ATIM                            126
981 #define WLC_GET_RSSI                            127
982 #define WLC_GET_PHYANTDIV                       128
983 #define WLC_SET_PHYANTDIV                       129
984 #define WLC_AP_RX_ONLY                          130
985 #define WLC_GET_TX_PATH_PWR                     131
986 #define WLC_SET_TX_PATH_PWR                     132
987 #define WLC_GET_WSEC                            133
988 #define WLC_SET_WSEC                            134
989 #define WLC_GET_PHY_NOISE                       135
990 #define WLC_GET_BSS_INFO                        136
991 #define WLC_GET_PKTCNTS                         137
992 #define WLC_GET_LAZYWDS                         138
993 #define WLC_SET_LAZYWDS                         139
994 #define WLC_GET_BANDLIST                        140
995 #define WLC_GET_BAND                            141
996 #define WLC_SET_BAND                            142
997 #define WLC_SCB_DEAUTHENTICATE                  143
998 #define WLC_GET_SHORTSLOT                       144
999 #define WLC_GET_SHORTSLOT_OVERRIDE              145
1000 #define WLC_SET_SHORTSLOT_OVERRIDE              146
1001 #define WLC_GET_SHORTSLOT_RESTRICT              147
1002 #define WLC_SET_SHORTSLOT_RESTRICT              148
1003 #define WLC_GET_GMODE_PROTECTION                149
1004 #define WLC_GET_GMODE_PROTECTION_OVERRIDE       150
1005 #define WLC_SET_GMODE_PROTECTION_OVERRIDE       151
1006 #define WLC_UPGRADE                             152
1007                                                        /* #define WLC_GET_MRATE                 153 *//* no longer supported */
1008                                                        /* #define WLC_SET_MRATE                 154 *//* no longer supported */
1009 #define WLC_GET_IGNORE_BCNS                     155
1010 #define WLC_SET_IGNORE_BCNS                     156
1011 #define WLC_GET_SCB_TIMEOUT                     157
1012 #define WLC_SET_SCB_TIMEOUT                     158
1013 #define WLC_GET_ASSOCLIST                       159
1014 #define WLC_GET_CLK                             160
1015 #define WLC_SET_CLK                             161
1016 #define WLC_GET_UP                              162
1017 #define WLC_OUT                                 163
1018 #define WLC_GET_WPA_AUTH                        164
1019 #define WLC_SET_WPA_AUTH                        165
1020 #define WLC_GET_UCFLAGS                         166
1021 #define WLC_SET_UCFLAGS                         167
1022 #define WLC_GET_PWRIDX                          168
1023 #define WLC_SET_PWRIDX                          169
1024 #define WLC_GET_TSSI                            170
1025 #define WLC_GET_SUP_RATESET_OVERRIDE            171
1026 #define WLC_SET_SUP_RATESET_OVERRIDE            172
1027                                                        /* #define WLC_SET_FAST_TIMER                    173 *//* no longer supported */
1028                                                        /* #define WLC_GET_FAST_TIMER                    174 *//* no longer supported */
1029                                                        /* #define WLC_SET_SLOW_TIMER                    175 *//* no longer supported */
1030                                                        /* #define WLC_GET_SLOW_TIMER                    176 *//* no longer supported */
1031                                                        /* #define WLC_DUMP_PHYREGS                      177 *//* no longer supported */
1032 #define WLC_GET_PROTECTION_CONTROL              178
1033 #define WLC_SET_PROTECTION_CONTROL              179
1034 #define WLC_GET_PHYLIST                         180
1035 #define WLC_ENCRYPT_STRENGTH                    181     /* ndis only */
1036 #define WLC_DECRYPT_STATUS                      182     /* ndis only */
1037 #define WLC_GET_KEY_SEQ                         183
1038 #define WLC_GET_SCAN_CHANNEL_TIME               184
1039 #define WLC_SET_SCAN_CHANNEL_TIME               185
1040 #define WLC_GET_SCAN_UNASSOC_TIME               186
1041 #define WLC_SET_SCAN_UNASSOC_TIME               187
1042 #define WLC_GET_SCAN_HOME_TIME                  188
1043 #define WLC_SET_SCAN_HOME_TIME                  189
1044 #define WLC_GET_SCAN_NPROBES                    190
1045 #define WLC_SET_SCAN_NPROBES                    191
1046 #define WLC_GET_PRB_RESP_TIMEOUT                192
1047 #define WLC_SET_PRB_RESP_TIMEOUT                193
1048 #define WLC_GET_ATTEN                           194
1049 #define WLC_SET_ATTEN                           195
1050 #define WLC_GET_SHMEM                           196     /* diag */
1051 #define WLC_SET_SHMEM                           197     /* diag */
1052                                                        /* #define WLC_GET_GMODE_PROTECTION_CTS          198 *//* no longer supported */
1053                                                        /* #define WLC_SET_GMODE_PROTECTION_CTS          199 *//* no longer supported */
1054 #define WLC_SET_WSEC_TEST                       200
1055 #define WLC_SCB_DEAUTHENTICATE_FOR_REASON       201
1056 #define WLC_TKIP_COUNTERMEASURES                202
1057 #define WLC_GET_PIOMODE                         203
1058 #define WLC_SET_PIOMODE                         204
1059 #define WLC_SET_ASSOC_PREFER                    205
1060 #define WLC_GET_ASSOC_PREFER                    206
1061 #define WLC_SET_ROAM_PREFER                     207
1062 #define WLC_GET_ROAM_PREFER                     208
1063 #define WLC_SET_LED                             209
1064 #define WLC_GET_LED                             210
1065 #define WLC_RESERVED6                           211
1066 #define WLC_RESERVED7                           212
1067 #define WLC_GET_CHANNEL_QA                      213
1068 #define WLC_START_CHANNEL_QA                    214
1069 #define WLC_GET_CHANNEL_SEL                     215
1070 #define WLC_START_CHANNEL_SEL                   216
1071 #define WLC_GET_VALID_CHANNELS                  217
1072 #define WLC_GET_FAKEFRAG                        218
1073 #define WLC_SET_FAKEFRAG                        219
1074 #define WLC_GET_PWROUT_PERCENTAGE               220
1075 #define WLC_SET_PWROUT_PERCENTAGE               221
1076 #define WLC_SET_BAD_FRAME_PREEMPT               222
1077 #define WLC_GET_BAD_FRAME_PREEMPT               223
1078 #define WLC_SET_LEAP_LIST                       224
1079 #define WLC_GET_LEAP_LIST                       225
1080 #define WLC_GET_CWMIN                           226
1081 #define WLC_SET_CWMIN                           227
1082 #define WLC_GET_CWMAX                           228
1083 #define WLC_SET_CWMAX                           229
1084 #define WLC_GET_WET                             230
1085 #define WLC_SET_WET                             231
1086 #define WLC_GET_PUB                             232
1087                                                        /* #define WLC_SET_GLACIAL_TIMER         233 *//* no longer supported */
1088                                                        /* #define WLC_GET_GLACIAL_TIMER         234 *//* no longer supported */
1089 #define WLC_GET_KEY_PRIMARY                     235
1090 #define WLC_SET_KEY_PRIMARY                     236
1091                                                        /* #define WLC_DUMP_RADIOREGS                    237 *//* no longer supported */
1092 #define WLC_RESERVED4                           238
1093 #define WLC_RESERVED5                           239
1094 #define WLC_UNSET_CALLBACK                      240
1095 #define WLC_SET_CALLBACK                        241
1096 #define WLC_GET_RADAR                           242
1097 #define WLC_SET_RADAR                           243
1098 #define WLC_SET_SPECT_MANAGMENT                 244
1099 #define WLC_GET_SPECT_MANAGMENT                 245
1100 #define WLC_WDS_GET_REMOTE_HWADDR               246     /* handled in wl_linux.c/wl_vx.c */
1101 #define WLC_WDS_GET_WPA_SUP                     247
1102 #define WLC_SET_CS_SCAN_TIMER                   248
1103 #define WLC_GET_CS_SCAN_TIMER                   249
1104 #define WLC_MEASURE_REQUEST                     250
1105 #define WLC_INIT                                251
1106 #define WLC_SEND_QUIET                          252
1107 #define WLC_KEEPALIVE                   253
1108 #define WLC_SEND_PWR_CONSTRAINT                 254
1109 #define WLC_UPGRADE_STATUS                      255
1110 #define WLC_CURRENT_PWR                         256
1111 #define WLC_GET_SCAN_PASSIVE_TIME               257
1112 #define WLC_SET_SCAN_PASSIVE_TIME               258
1113 #define WLC_LEGACY_LINK_BEHAVIOR                259
1114 #define WLC_GET_CHANNELS_IN_COUNTRY             260
1115 #define WLC_GET_COUNTRY_LIST                    261
1116 #define WLC_GET_VAR                             262     /* get value of named variable */
1117 #define WLC_SET_VAR                             263     /* set named variable to value */
1118 #define WLC_NVRAM_GET                           264     /* deprecated */
1119 #define WLC_NVRAM_SET                           265
1120 #define WLC_NVRAM_DUMP                          266
1121 #define WLC_REBOOT                              267
1122 #define WLC_SET_WSEC_PMK                        268
1123 #define WLC_GET_AUTH_MODE                       269
1124 #define WLC_SET_AUTH_MODE                       270
1125 #define WLC_GET_WAKEENTRY                       271
1126 #define WLC_SET_WAKEENTRY                       272
1127 #define WLC_NDCONFIG_ITEM                       273     /* currently handled in wl_oid.c */
1128 #define WLC_NVOTPW                              274
1129 #define WLC_OTPW                                275
1130 #define WLC_IOV_BLOCK_GET                       276
1131 #define WLC_IOV_MODULES_GET                     277
1132 #define WLC_SOFT_RESET                          278
1133 #define WLC_GET_ALLOW_MODE                      279
1134 #define WLC_SET_ALLOW_MODE                      280
1135 #define WLC_GET_DESIRED_BSSID                   281
1136 #define WLC_SET_DESIRED_BSSID                   282
1137 #define WLC_DISASSOC_MYAP                       283
1138 #define WLC_GET_RESERVED10                      284
1139 #define WLC_GET_RESERVED11                      285
1140 #define WLC_GET_RESERVED12                      286
1141 #define WLC_GET_RESERVED13                      287
1142 #define WLC_GET_RESERVED14                      288
1143 #define WLC_SET_RESERVED15                      289
1144 #define WLC_SET_RESERVED16                      290
1145 #define WLC_GET_RESERVED17                      291
1146 #define WLC_GET_RESERVED18                      292
1147 #define WLC_GET_RESERVED19                      293
1148 #define WLC_SET_RESERVED1A                      294
1149 #define WLC_GET_RESERVED1B                      295
1150 #define WLC_GET_RESERVED1C                      296
1151 #define WLC_GET_RESERVED1D                      297
1152 #define WLC_SET_RESERVED1E                      298
1153 #define WLC_GET_RESERVED1F                      299
1154 #define WLC_GET_RESERVED20                      300
1155 #define WLC_GET_RESERVED21                      301
1156 #define WLC_GET_RESERVED22                      302
1157 #define WLC_GET_RESERVED23                      303
1158 #define WLC_GET_RESERVED24                      304
1159 #define WLC_SET_RESERVED25                      305
1160 #define WLC_GET_RESERVED26                      306
1161 #define WLC_NPHY_SAMPLE_COLLECT                 307     /* Nphy sample collect mode */
1162 #define WLC_UM_PRIV                             308     /* for usermode driver private ioctl */
1163 #define WLC_GET_CMD                             309
1164                                                         /* #define WLC_LAST                             310 *//* Never used - can be reused */
1165 #define WLC_RESERVED8                           311
1166 #define WLC_RESERVED9                           312
1167 #define WLC_RESERVED1                           313
1168 #define WLC_RESERVED2                           314
1169 #define WLC_RESERVED3                           315
1170 #define WLC_LAST                                316
1171
1172 #ifndef EPICTRL_COOKIE
1173 #define EPICTRL_COOKIE          0xABADCEDE
1174 #endif
1175
1176 #define WL_DECRYPT_STATUS_SUCCESS       1
1177 #define WL_DECRYPT_STATUS_FAILURE       2
1178 #define WL_DECRYPT_STATUS_UNKNOWN       3
1179
1180 /* allows user-mode app to poll the status of USB image upgrade */
1181 #define WLC_UPGRADE_SUCCESS                     0
1182 #define WLC_UPGRADE_PENDING                     1
1183
1184 /* WLC_GET_AUTH, WLC_SET_AUTH values */
1185 #define WL_AUTH_OPEN_SYSTEM             0       /* d11 open authentication */
1186 #define WL_AUTH_SHARED_KEY              1       /* d11 shared authentication */
1187 #define WL_AUTH_OPEN_SHARED             2       /* try open, then shared if open failed w/rc 13 */
1188
1189 /* Bit masks for radio disabled status - returned by WL_GET_RADIO */
1190 #define WL_RADIO_SW_DISABLE             (1<<0)
1191 #define WL_RADIO_HW_DISABLE             (1<<1)
1192 #define WL_RADIO_MPC_DISABLE            (1<<2)
1193 #define WL_RADIO_COUNTRY_DISABLE        (1<<3)  /* some countries don't support any channel */
1194
1195 #define WL_SPURAVOID_OFF        0
1196 #define WL_SPURAVOID_ON1        1
1197 #define WL_SPURAVOID_ON2        2
1198
1199 /* Override bit for WLC_SET_TXPWR.  if set, ignore other level limits */
1200 #define WL_TXPWR_OVERRIDE       (1U<<31)
1201
1202 #define WL_PHY_PAVARS_LEN       6       /* Phy type, Band range, chain, a1, b0, b1 */
1203
1204 typedef struct wl_po {
1205         uint16 phy_type;        /* Phy type */
1206         uint16 band;
1207         uint16 cckpo;
1208         uint32 ofdmpo;
1209         uint16 mcspo[8];
1210 } wl_po_t;
1211
1212 /* a large TX Power as an init value to factor out of MIN() calculations,
1213  * keep low enough to fit in an int8, units are .25 dBm
1214  */
1215 #define WLC_TXPWR_MAX           (127)   /* ~32 dBm = 1,500 mW */
1216
1217 /* "diag" iovar argument and error code */
1218 #define WL_DIAG_INTERRUPT                       1       /* d11 loopback interrupt test */
1219 #define WL_DIAG_LOOPBACK                        2       /* d11 loopback data test */
1220 #define WL_DIAG_MEMORY                          3       /* d11 memory test */
1221 #define WL_DIAG_LED                             4       /* LED test */
1222 #define WL_DIAG_REG                             5       /* d11/phy register test */
1223 #define WL_DIAG_SROM                            6       /* srom read/crc test */
1224 #define WL_DIAG_DMA                             7       /* DMA test */
1225
1226 #define WL_DIAGERR_SUCCESS                      0
1227 #define WL_DIAGERR_FAIL_TO_RUN                  1       /* unable to run requested diag */
1228 #define WL_DIAGERR_NOT_SUPPORTED                2       /* diag requested is not supported */
1229 #define WL_DIAGERR_INTERRUPT_FAIL               3       /* loopback interrupt test failed */
1230 #define WL_DIAGERR_LOOPBACK_FAIL                4       /* loopback data test failed */
1231 #define WL_DIAGERR_SROM_FAIL                    5       /* srom read failed */
1232 #define WL_DIAGERR_SROM_BADCRC                  6       /* srom crc failed */
1233 #define WL_DIAGERR_REG_FAIL                     7       /* d11/phy register test failed */
1234 #define WL_DIAGERR_MEMORY_FAIL                  8       /* d11 memory test failed */
1235 #define WL_DIAGERR_NOMEM                        9       /* diag test failed due to no memory */
1236 #define WL_DIAGERR_DMA_FAIL                     10      /* DMA test failed */
1237
1238 #define WL_DIAGERR_MEMORY_TIMEOUT               11      /* d11 memory test didn't finish in time */
1239 #define WL_DIAGERR_MEMORY_BADPATTERN            12      /* d11 memory test result in bad pattern */
1240
1241 /* band types */
1242 #define WLC_BAND_AUTO           0       /* auto-select */
1243 #define WLC_BAND_5G             1       /* 5 Ghz */
1244 #define WLC_BAND_2G             2       /* 2.4 Ghz */
1245 #define WLC_BAND_ALL            3       /* all bands */
1246
1247 /* band range returned by band_range iovar */
1248 #define WL_CHAN_FREQ_RANGE_2G      0
1249 #define WL_CHAN_FREQ_RANGE_5GL     1
1250 #define WL_CHAN_FREQ_RANGE_5GM     2
1251 #define WL_CHAN_FREQ_RANGE_5GH     3
1252
1253 /* phy types (returned by WLC_GET_PHYTPE) */
1254 #define WLC_PHY_TYPE_A          0
1255 #define WLC_PHY_TYPE_B          1
1256 #define WLC_PHY_TYPE_G          2
1257 #define WLC_PHY_TYPE_N          4
1258 #define WLC_PHY_TYPE_LP         5
1259 #define WLC_PHY_TYPE_SSN        6
1260 #define WLC_PHY_TYPE_HT         7
1261 #define WLC_PHY_TYPE_LCN        8
1262 #define WLC_PHY_TYPE_NULL       0xf
1263
1264 /* MAC list modes */
1265 #define WLC_MACMODE_DISABLED    0       /* MAC list disabled */
1266 #define WLC_MACMODE_DENY        1       /* Deny specified (i.e. allow unspecified) */
1267 #define WLC_MACMODE_ALLOW       2       /* Allow specified (i.e. deny unspecified) */
1268
1269 /*
1270  * 54g modes (basic bits may still be overridden)
1271  *
1272  * GMODE_LEGACY_B                       Rateset: 1b, 2b, 5.5, 11
1273  *                                      Preamble: Long
1274  *                                      Shortslot: Off
1275  * GMODE_AUTO                           Rateset: 1b, 2b, 5.5b, 11b, 18, 24, 36, 54
1276  *                                      Extended Rateset: 6, 9, 12, 48
1277  *                                      Preamble: Long
1278  *                                      Shortslot: Auto
1279  * GMODE_ONLY                           Rateset: 1b, 2b, 5.5b, 11b, 18, 24b, 36, 54
1280  *                                      Extended Rateset: 6b, 9, 12b, 48
1281  *                                      Preamble: Short required
1282  *                                      Shortslot: Auto
1283  * GMODE_B_DEFERRED                     Rateset: 1b, 2b, 5.5b, 11b, 18, 24, 36, 54
1284  *                                      Extended Rateset: 6, 9, 12, 48
1285  *                                      Preamble: Long
1286  *                                      Shortslot: On
1287  * GMODE_PERFORMANCE                    Rateset: 1b, 2b, 5.5b, 6b, 9, 11b, 12b, 18, 24b, 36, 48, 54
1288  *                                      Preamble: Short required
1289  *                                      Shortslot: On and required
1290  * GMODE_LRS                            Rateset: 1b, 2b, 5.5b, 11b
1291  *                                      Extended Rateset: 6, 9, 12, 18, 24, 36, 48, 54
1292  *                                      Preamble: Long
1293  *                                      Shortslot: Auto
1294  */
1295 #define GMODE_LEGACY_B          0
1296 #define GMODE_AUTO              1
1297 #define GMODE_ONLY              2
1298 #define GMODE_B_DEFERRED        3
1299 #define GMODE_PERFORMANCE       4
1300 #define GMODE_LRS               5
1301 #define GMODE_MAX               6
1302
1303 /* values for PLCPHdr_override */
1304 #define WLC_PLCP_AUTO   -1
1305 #define WLC_PLCP_SHORT  0
1306 #define WLC_PLCP_LONG   1
1307
1308 /* values for g_protection_override and n_protection_override */
1309 #define WLC_PROTECTION_AUTO             -1
1310 #define WLC_PROTECTION_OFF              0
1311 #define WLC_PROTECTION_ON               1
1312 #define WLC_PROTECTION_MMHDR_ONLY       2
1313 #define WLC_PROTECTION_CTS_ONLY         3
1314
1315 /* values for g_protection_control and n_protection_control */
1316 #define WLC_PROTECTION_CTL_OFF          0
1317 #define WLC_PROTECTION_CTL_LOCAL        1
1318 #define WLC_PROTECTION_CTL_OVERLAP      2
1319
1320 /* values for n_protection */
1321 #define WLC_N_PROTECTION_OFF            0
1322 #define WLC_N_PROTECTION_OPTIONAL       1
1323 #define WLC_N_PROTECTION_20IN40         2
1324 #define WLC_N_PROTECTION_MIXEDMODE      3
1325
1326 /* values for n_preamble_type */
1327 #define WLC_N_PREAMBLE_MIXEDMODE        0
1328 #define WLC_N_PREAMBLE_GF               1
1329 #define WLC_N_PREAMBLE_GF_BRCM          2
1330
1331 /* values for band specific 40MHz capabilities */
1332 #define WLC_N_BW_20ALL                  0
1333 #define WLC_N_BW_40ALL                  1
1334 #define WLC_N_BW_20IN2G_40IN5G          2
1335
1336 /* values to force tx/rx chain */
1337 #define WLC_N_TXRX_CHAIN0               0
1338 #define WLC_N_TXRX_CHAIN1               1
1339
1340 /* bitflags for SGI support (sgi_rx iovar) */
1341 #define WLC_N_SGI_20                    0x01
1342 #define WLC_N_SGI_40                    0x02
1343
1344 /* Values for PM */
1345 #define PM_OFF  0
1346 #define PM_MAX  1
1347
1348 /* interference mitigation options */
1349 #define INTERFERE_OVRRIDE_OFF   -1      /* interference override off */
1350 #define INTERFERE_NONE  0       /* off */
1351 #define NON_WLAN        1       /* foreign/non 802.11 interference, no auto detect */
1352 #define WLAN_MANUAL     2       /* ACI: no auto detection */
1353 #define WLAN_AUTO       3       /* ACI: auto detect */
1354 #define WLAN_AUTO_W_NOISE       4       /* ACI: auto - detect and non 802.11 interference */
1355 #define AUTO_ACTIVE     (1 << 7)        /* Auto is currently active */
1356
1357 #define WL_RSSI_ANT_VERSION     1       /* current version of wl_rssi_ant_t */
1358 #define WL_ANT_RX_MAX           2       /* max 2 receive antennas */
1359 #define WL_ANT_HT_RX_MAX        3       /* max 3 receive antennas/cores */
1360 #define WL_ANT_IDX_1            0       /* antenna index 1 */
1361 #define WL_ANT_IDX_2            1       /* antenna index 2 */
1362
1363 #ifndef WL_RSSI_ANT_MAX
1364 #define WL_RSSI_ANT_MAX         4       /* max possible rx antennas */
1365 #elif WL_RSSI_ANT_MAX != 4
1366 #error "WL_RSSI_ANT_MAX does not match"
1367 #endif
1368
1369 /* RSSI per antenna */
1370 typedef struct {
1371         uint32 version;         /* version field */
1372         uint32 count;           /* number of valid antenna rssi */
1373         int8 rssi_ant[WL_RSSI_ANT_MAX]; /* rssi per antenna */
1374 } wl_rssi_ant_t;
1375
1376 #define NUM_PWRCTRL_RATES 12
1377
1378 typedef struct {
1379         uint8 txpwr_band_max[NUM_PWRCTRL_RATES];        /* User set target */
1380         uint8 txpwr_limit[NUM_PWRCTRL_RATES];   /* reg and local power limit */
1381         uint8 txpwr_local_max;  /* local max according to the AP */
1382         uint8 txpwr_local_constraint;   /* local constraint according to the AP */
1383         uint8 txpwr_chan_reg_max;       /* Regulatory max for this channel */
1384         uint8 txpwr_target[2][NUM_PWRCTRL_RATES];       /* Latest target for 2.4 and 5 Ghz */
1385         uint8 txpwr_est_Pout[2];        /* Latest estimate for 2.4 and 5 Ghz */
1386         uint8 txpwr_opo[NUM_PWRCTRL_RATES];     /* On G phy, OFDM power offset */
1387         uint8 txpwr_bphy_cck_max[NUM_PWRCTRL_RATES];    /* Max CCK power for this band (SROM) */
1388         uint8 txpwr_bphy_ofdm_max;      /* Max OFDM power for this band (SROM) */
1389         uint8 txpwr_aphy_max[NUM_PWRCTRL_RATES];        /* Max power for A band (SROM) */
1390         int8 txpwr_antgain[2];  /* Ant gain for each band - from SROM */
1391         uint8 txpwr_est_Pout_gofdm;     /* Pwr estimate for 2.4 OFDM */
1392 } tx_power_legacy_t;
1393
1394 #define WL_TX_POWER_RATES_LEGACY        45
1395 #define WL_TX_POWER_MCS20_FIRST         12
1396 #define WL_TX_POWER_MCS20_NUM           16
1397 #define WL_TX_POWER_MCS40_FIRST         28
1398 #define WL_TX_POWER_MCS40_NUM           17
1399
1400 typedef struct {
1401         uint32 flags;
1402         chanspec_t chanspec;    /* txpwr report for this channel */
1403         chanspec_t local_chanspec;      /* channel on which we are associated */
1404         uint8 local_max;        /* local max according to the AP */
1405         uint8 local_constraint; /* local constraint according to the AP */
1406         int8 antgain[2];        /* Ant gain for each band - from SROM */
1407         uint8 rf_cores;         /* count of RF Cores being reported */
1408         uint8 est_Pout[4];      /* Latest tx power out estimate per RF
1409                                  * chain without adjustment
1410                                  */
1411         uint8 est_Pout_cck;     /* Latest CCK tx power out estimate */
1412         uint8 user_limit[WL_TX_POWER_RATES_LEGACY];     /* User limit */
1413         uint8 reg_limit[WL_TX_POWER_RATES_LEGACY];      /* Regulatory power limit */
1414         uint8 board_limit[WL_TX_POWER_RATES_LEGACY];    /* Max power board can support (SROM) */
1415         uint8 target[WL_TX_POWER_RATES_LEGACY]; /* Latest target power */
1416 } tx_power_legacy2_t;
1417
1418 #define WL_TX_POWER_RATES              101
1419 #define WL_TX_POWER_CCK_FIRST          0
1420 #define WL_TX_POWER_CCK_NUM            4
1421 #define WL_TX_POWER_OFDM_FIRST         4        /* Index for first 20MHz OFDM SISO rate */
1422 #define WL_TX_POWER_OFDM20_CDD_FIRST   12       /* Index for first 20MHz OFDM CDD rate */
1423 #define WL_TX_POWER_OFDM40_SISO_FIRST  52       /* Index for first 40MHz OFDM SISO rate */
1424 #define WL_TX_POWER_OFDM40_CDD_FIRST   60       /* Index for first 40MHz OFDM CDD rate */
1425 #define WL_TX_POWER_OFDM_NUM           8
1426 #define WL_TX_POWER_MCS20_SISO_FIRST   20       /* Index for first 20MHz MCS SISO rate */
1427 #define WL_TX_POWER_MCS20_CDD_FIRST    28       /* Index for first 20MHz MCS CDD rate */
1428 #define WL_TX_POWER_MCS20_STBC_FIRST   36       /* Index for first 20MHz MCS STBC rate */
1429 #define WL_TX_POWER_MCS20_SDM_FIRST    44       /* Index for first 20MHz MCS SDM rate */
1430 #define WL_TX_POWER_MCS40_SISO_FIRST   68       /* Index for first 40MHz MCS SISO rate */
1431 #define WL_TX_POWER_MCS40_CDD_FIRST    76       /* Index for first 40MHz MCS CDD rate */
1432 #define WL_TX_POWER_MCS40_STBC_FIRST   84       /* Index for first 40MHz MCS STBC rate */
1433 #define WL_TX_POWER_MCS40_SDM_FIRST    92       /* Index for first 40MHz MCS SDM rate */
1434 #define WL_TX_POWER_MCS_1_STREAM_NUM   8
1435 #define WL_TX_POWER_MCS_2_STREAM_NUM   8
1436 #define WL_TX_POWER_MCS_32             100      /* Index for 40MHz rate MCS 32 */
1437 #define WL_TX_POWER_MCS_32_NUM         1
1438
1439 /* sslpnphy specifics */
1440 #define WL_TX_POWER_MCS20_SISO_FIRST_SSN   12   /* Index for first 20MHz MCS SISO rate */
1441
1442 /* tx_power_t.flags bits */
1443 #define WL_TX_POWER_F_ENABLED   1
1444 #define WL_TX_POWER_F_HW        2
1445 #define WL_TX_POWER_F_MIMO      4
1446 #define WL_TX_POWER_F_SISO      8
1447
1448 typedef struct {
1449         uint32 flags;
1450         chanspec_t chanspec;    /* txpwr report for this channel */
1451         chanspec_t local_chanspec;      /* channel on which we are associated */
1452         uint8 local_max;        /* local max according to the AP */
1453         uint8 local_constraint; /* local constraint according to the AP */
1454         int8 antgain[2];        /* Ant gain for each band - from SROM */
1455         uint8 rf_cores;         /* count of RF Cores being reported */
1456         uint8 est_Pout[4];      /* Latest tx power out estimate per RF chain */
1457         uint8 est_Pout_act[4];  /* Latest tx power out estimate per RF chain
1458                                  * without adjustment
1459                                  */
1460         uint8 est_Pout_cck;     /* Latest CCK tx power out estimate */
1461         uint8 tx_power_max[4];  /* Maximum target power among all rates */
1462         uint8 tx_power_max_rate_ind[4]; /* Index of the rate with the max target power */
1463         uint8 user_limit[WL_TX_POWER_RATES];    /* User limit */
1464         uint8 reg_limit[WL_TX_POWER_RATES];     /* Regulatory power limit */
1465         uint8 board_limit[WL_TX_POWER_RATES];   /* Max power board can support (SROM) */
1466         uint8 target[WL_TX_POWER_RATES];        /* Latest target power */
1467 } tx_power_t;
1468
1469 typedef struct tx_inst_power {
1470         uint8 txpwr_est_Pout[2];        /* Latest estimate for 2.4 and 5 Ghz */
1471         uint8 txpwr_est_Pout_gofdm;     /* Pwr estimate for 2.4 OFDM */
1472 } tx_inst_power_t;
1473
1474 /* Message levels */
1475 #define WL_ERROR_VAL            0x00000001
1476 #define WL_TRACE_VAL            0x00000002
1477 #define WL_AMPDU_VAL            0x20000000
1478 #define WL_FFPLD_VAL            0x40000000
1479
1480 /* maximum channels returned by the get valid channels iovar */
1481 #define WL_NUMCHANNELS          64
1482 #define WL_NUMCHANSPECS         100
1483
1484 struct tsinfo_arg {
1485         uint8 octets[3];
1486 };
1487
1488 #define NFIFO                   6       /* # tx/rx fifopairs */
1489
1490 #define WL_CNT_T_VERSION        7       /* current version of wl_cnt_t struct */
1491
1492 typedef struct {
1493         uint16 version;         /* see definition of WL_CNT_T_VERSION */
1494         uint16 length;          /* length of entire structure */
1495
1496         /* transmit stat counters */
1497         uint32 txframe;         /* tx data frames */
1498         uint32 txbyte;          /* tx data bytes */
1499         uint32 txretrans;       /* tx mac retransmits */
1500         uint32 txerror;         /* tx data errors (derived: sum of others) */
1501         uint32 txctl;           /* tx management frames */
1502         uint32 txprshort;       /* tx short preamble frames */
1503         uint32 txserr;          /* tx status errors */
1504         uint32 txnobuf;         /* tx out of buffers errors */
1505         uint32 txnoassoc;       /* tx discard because we're not associated */
1506         uint32 txrunt;          /* tx runt frames */
1507         uint32 txchit;          /* tx header cache hit (fastpath) */
1508         uint32 txcmiss;         /* tx header cache miss (slowpath) */
1509         uint32 ieee_tx_status;  /* calls to ieee80211_tx_status */
1510         uint32 ieee_tx;         /* tx calls frm mac0211 */
1511         uint32 ieee_rx;         /* calls to ieee_rx */
1512
1513         /* transmit chip error counters */
1514         uint32 txuflo;          /* tx fifo underflows */
1515         uint32 txphyerr;        /* tx phy errors (indicated in tx status) */
1516         uint32 txphycrs;
1517
1518         /* receive stat counters */
1519         uint32 rxframe;         /* rx data frames */
1520         uint32 rxbyte;          /* rx data bytes */
1521         uint32 rxerror;         /* rx data errors (derived: sum of others) */
1522         uint32 rxctl;           /* rx management frames */
1523         uint32 rxnobuf;         /* rx out of buffers errors */
1524         uint32 rxnondata;       /* rx non data frames in the data channel errors */
1525         uint32 rxbadds;         /* rx bad DS errors */
1526         uint32 rxbadcm;         /* rx bad control or management frames */
1527         uint32 rxfragerr;       /* rx fragmentation errors */
1528         uint32 rxrunt;          /* rx runt frames */
1529         uint32 rxgiant;         /* rx giant frames */
1530         uint32 rxnoscb;         /* rx no scb error */
1531         uint32 rxbadproto;      /* rx invalid frames */
1532         uint32 rxbadsrcmac;     /* rx frames with Invalid Src Mac */
1533         uint32 rxbadda;         /* rx frames tossed for invalid da */
1534         uint32 rxfilter;        /* rx frames filtered out */
1535
1536         /* receive chip error counters */
1537         uint32 rxoflo;          /* rx fifo overflow errors */
1538         uint32 rxuflo[NFIFO];   /* rx dma descriptor underflow errors */
1539
1540         uint32 d11cnt_txrts_off;        /* d11cnt txrts value when reset d11cnt */
1541         uint32 d11cnt_rxcrc_off;        /* d11cnt rxcrc value when reset d11cnt */
1542         uint32 d11cnt_txnocts_off;      /* d11cnt txnocts value when reset d11cnt */
1543
1544         /* misc counters */
1545         uint32 dmade;           /* tx/rx dma descriptor errors */
1546         uint32 dmada;           /* tx/rx dma data errors */
1547         uint32 dmape;           /* tx/rx dma descriptor protocol errors */
1548         uint32 reset;           /* reset count */
1549         uint32 tbtt;            /* cnts the TBTT int's */
1550         uint32 txdmawar;
1551         uint32 pkt_callback_reg_fail;   /* callbacks register failure */
1552
1553         /* MAC counters: 32-bit version of d11.h's macstat_t */
1554         uint32 txallfrm;        /* total number of frames sent, incl. Data, ACK, RTS, CTS,
1555                                  * Control Management (includes retransmissions)
1556                                  */
1557         uint32 txrtsfrm;        /* number of RTS sent out by the MAC */
1558         uint32 txctsfrm;        /* number of CTS sent out by the MAC */
1559         uint32 txackfrm;        /* number of ACK frames sent out */
1560         uint32 txdnlfrm;        /* Not used */
1561         uint32 txbcnfrm;        /* beacons transmitted */
1562         uint32 txfunfl[8];      /* per-fifo tx underflows */
1563         uint32 txtplunfl;       /* Template underflows (mac was too slow to transmit ACK/CTS
1564                                  * or BCN)
1565                                  */
1566         uint32 txphyerror;      /* Transmit phy error, type of error is reported in tx-status for
1567                                  * driver enqueued frames
1568                                  */
1569         uint32 rxfrmtoolong;    /* Received frame longer than legal limit (2346 bytes) */
1570         uint32 rxfrmtooshrt;    /* Received frame did not contain enough bytes for its frame type */
1571         uint32 rxinvmachdr;     /* Either the protocol version != 0 or frame type not
1572                                  * data/control/management
1573                                  */
1574         uint32 rxbadfcs;        /* number of frames for which the CRC check failed in the MAC */
1575         uint32 rxbadplcp;       /* parity check of the PLCP header failed */
1576         uint32 rxcrsglitch;     /* PHY was able to correlate the preamble but not the header */
1577         uint32 rxstrt;          /* Number of received frames with a good PLCP
1578                                  * (i.e. passing parity check)
1579                                  */
1580         uint32 rxdfrmucastmbss; /* Number of received DATA frames with good FCS and matching RA */
1581         uint32 rxmfrmucastmbss; /* number of received mgmt frames with good FCS and matching RA */
1582         uint32 rxcfrmucast;     /* number of received CNTRL frames with good FCS and matching RA */
1583         uint32 rxrtsucast;      /* number of unicast RTS addressed to the MAC (good FCS) */
1584         uint32 rxctsucast;      /* number of unicast CTS addressed to the MAC (good FCS) */
1585         uint32 rxackucast;      /* number of ucast ACKS received (good FCS) */
1586         uint32 rxdfrmocast;     /* number of received DATA frames (good FCS and not matching RA) */
1587         uint32 rxmfrmocast;     /* number of received MGMT frames (good FCS and not matching RA) */
1588         uint32 rxcfrmocast;     /* number of received CNTRL frame (good FCS and not matching RA) */
1589         uint32 rxrtsocast;      /* number of received RTS not addressed to the MAC */
1590         uint32 rxctsocast;      /* number of received CTS not addressed to the MAC */
1591         uint32 rxdfrmmcast;     /* number of RX Data multicast frames received by the MAC */
1592         uint32 rxmfrmmcast;     /* number of RX Management multicast frames received by the MAC */
1593         uint32 rxcfrmmcast;     /* number of RX Control multicast frames received by the MAC
1594                                  * (unlikely to see these)
1595                                  */
1596         uint32 rxbeaconmbss;    /* beacons received from member of BSS */
1597         uint32 rxdfrmucastobss; /* number of unicast frames addressed to the MAC from
1598                                  * other BSS (WDS FRAME)
1599                                  */
1600         uint32 rxbeaconobss;    /* beacons received from other BSS */
1601         uint32 rxrsptmout;      /* Number of response timeouts for transmitted frames
1602                                  * expecting a response
1603                                  */
1604         uint32 bcntxcancl;      /* transmit beacons canceled due to receipt of beacon (IBSS) */
1605         uint32 rxf0ovfl;        /* Number of receive fifo 0 overflows */
1606         uint32 rxf1ovfl;        /* Number of receive fifo 1 overflows (obsolete) */
1607         uint32 rxf2ovfl;        /* Number of receive fifo 2 overflows (obsolete) */
1608         uint32 txsfovfl;        /* Number of transmit status fifo overflows (obsolete) */
1609         uint32 pmqovfl;         /* Number of PMQ overflows */
1610         uint32 rxcgprqfrm;      /* Number of received Probe requests that made it into
1611                                  * the PRQ fifo
1612                                  */
1613         uint32 rxcgprsqovfl;    /* Rx Probe Request Que overflow in the AP */
1614         uint32 txcgprsfail;     /* Tx Probe Response Fail. AP sent probe response but did
1615                                  * not get ACK
1616                                  */
1617         uint32 txcgprssuc;      /* Tx Probe Response Success (ACK was received) */
1618         uint32 prs_timeout;     /* Number of probe requests that were dropped from the PRQ
1619                                  * fifo because a probe response could not be sent out within
1620                                  * the time limit defined in M_PRS_MAXTIME
1621                                  */
1622         uint32 rxnack;
1623         uint32 frmscons;
1624         uint32 txnack;
1625         uint32 txglitch_nack;   /* obsolete */
1626         uint32 txburst;         /* obsolete */
1627
1628         /* 802.11 MIB counters, pp. 614 of 802.11 reaff doc. */
1629         uint32 txfrag;          /* dot11TransmittedFragmentCount */
1630         uint32 txmulti;         /* dot11MulticastTransmittedFrameCount */
1631         uint32 txfail;          /* dot11FailedCount */
1632         uint32 txretry;         /* dot11RetryCount */
1633         uint32 txretrie;        /* dot11MultipleRetryCount */
1634         uint32 rxdup;           /* dot11FrameduplicateCount */
1635         uint32 txrts;           /* dot11RTSSuccessCount */
1636         uint32 txnocts;         /* dot11RTSFailureCount */
1637         uint32 txnoack;         /* dot11ACKFailureCount */
1638         uint32 rxfrag;          /* dot11ReceivedFragmentCount */
1639         uint32 rxmulti;         /* dot11MulticastReceivedFrameCount */
1640         uint32 rxcrc;           /* dot11FCSErrorCount */
1641         uint32 txfrmsnt;        /* dot11TransmittedFrameCount (bogus MIB?) */
1642         uint32 rxundec;         /* dot11WEPUndecryptableCount */
1643
1644         /* WPA2 counters (see rxundec for DecryptFailureCount) */
1645         uint32 tkipmicfaill;    /* TKIPLocalMICFailures */
1646         uint32 tkipcntrmsr;     /* TKIPCounterMeasuresInvoked */
1647         uint32 tkipreplay;      /* TKIPReplays */
1648         uint32 ccmpfmterr;      /* CCMPFormatErrors */
1649         uint32 ccmpreplay;      /* CCMPReplays */
1650         uint32 ccmpundec;       /* CCMPDecryptErrors */
1651         uint32 fourwayfail;     /* FourWayHandshakeFailures */
1652         uint32 wepundec;        /* dot11WEPUndecryptableCount */
1653         uint32 wepicverr;       /* dot11WEPICVErrorCount */
1654         uint32 decsuccess;      /* DecryptSuccessCount */
1655         uint32 tkipicverr;      /* TKIPICVErrorCount */
1656         uint32 wepexcluded;     /* dot11WEPExcludedCount */
1657
1658         uint32 rxundec_mcst;    /* dot11WEPUndecryptableCount */
1659
1660         /* WPA2 counters (see rxundec for DecryptFailureCount) */
1661         uint32 tkipmicfaill_mcst;       /* TKIPLocalMICFailures */
1662         uint32 tkipcntrmsr_mcst;        /* TKIPCounterMeasuresInvoked */
1663         uint32 tkipreplay_mcst; /* TKIPReplays */
1664         uint32 ccmpfmterr_mcst; /* CCMPFormatErrors */
1665         uint32 ccmpreplay_mcst; /* CCMPReplays */
1666         uint32 ccmpundec_mcst;  /* CCMPDecryptErrors */
1667         uint32 fourwayfail_mcst;        /* FourWayHandshakeFailures */
1668         uint32 wepundec_mcst;   /* dot11WEPUndecryptableCount */
1669         uint32 wepicverr_mcst;  /* dot11WEPICVErrorCount */
1670         uint32 decsuccess_mcst; /* DecryptSuccessCount */
1671         uint32 tkipicverr_mcst; /* TKIPICVErrorCount */
1672         uint32 wepexcluded_mcst;        /* dot11WEPExcludedCount */
1673
1674         uint32 txchanrej;       /* Tx frames suppressed due to channel rejection */
1675         uint32 txexptime;       /* Tx frames suppressed due to timer expiration */
1676         uint32 psmwds;          /* Count PSM watchdogs */
1677         uint32 phywatchdog;     /* Count Phy watchdogs (triggered by ucode) */
1678
1679         /* MBSS counters, AP only */
1680         uint32 prq_entries_handled;     /* PRQ entries read in */
1681         uint32 prq_undirected_entries;  /*    which were bcast bss & ssid */
1682         uint32 prq_bad_entries; /*    which could not be translated to info */
1683         uint32 atim_suppress_count;     /* TX suppressions on ATIM fifo */
1684         uint32 bcn_template_not_ready;  /* Template marked in use on send bcn ... */
1685         uint32 bcn_template_not_ready_done;     /* ...but "DMA done" interrupt rcvd */
1686         uint32 late_tbtt_dpc;   /* TBTT DPC did not happen in time */
1687
1688         /* per-rate receive stat counters */
1689         uint32 rx1mbps;         /* packets rx at 1Mbps */
1690         uint32 rx2mbps;         /* packets rx at 2Mbps */
1691         uint32 rx5mbps5;        /* packets rx at 5.5Mbps */
1692         uint32 rx6mbps;         /* packets rx at 6Mbps */
1693         uint32 rx9mbps;         /* packets rx at 9Mbps */
1694         uint32 rx11mbps;        /* packets rx at 11Mbps */
1695         uint32 rx12mbps;        /* packets rx at 12Mbps */
1696         uint32 rx18mbps;        /* packets rx at 18Mbps */
1697         uint32 rx24mbps;        /* packets rx at 24Mbps */
1698         uint32 rx36mbps;        /* packets rx at 36Mbps */
1699         uint32 rx48mbps;        /* packets rx at 48Mbps */
1700         uint32 rx54mbps;        /* packets rx at 54Mbps */
1701         uint32 rx108mbps;       /* packets rx at 108mbps */
1702         uint32 rx162mbps;       /* packets rx at 162mbps */
1703         uint32 rx216mbps;       /* packets rx at 216 mbps */
1704         uint32 rx270mbps;       /* packets rx at 270 mbps */
1705         uint32 rx324mbps;       /* packets rx at 324 mbps */
1706         uint32 rx378mbps;       /* packets rx at 378 mbps */
1707         uint32 rx432mbps;       /* packets rx at 432 mbps */
1708         uint32 rx486mbps;       /* packets rx at 486 mbps */
1709         uint32 rx540mbps;       /* packets rx at 540 mbps */
1710
1711         /* pkteng rx frame stats */
1712         uint32 pktengrxducast;  /* unicast frames rxed by the pkteng code */
1713         uint32 pktengrxdmcast;  /* multicast frames rxed by the pkteng code */
1714
1715         uint32 rfdisable;       /* count of radio disables */
1716         uint32 bphy_rxcrsglitch;        /* PHY count of bphy glitches */
1717
1718         uint32 txmpdu_sgi;      /* count for sgi transmit */
1719         uint32 rxmpdu_sgi;      /* count for sgi received */
1720         uint32 txmpdu_stbc;     /* count for stbc transmit */
1721         uint32 rxmpdu_stbc;     /* count for stbc received */
1722 } wl_cnt_t;
1723
1724 #define WL_DELTA_STATS_T_VERSION        1       /* current version of wl_delta_stats_t struct */
1725
1726 typedef struct {
1727         uint16 version;         /* see definition of WL_DELTA_STATS_T_VERSION */
1728         uint16 length;          /* length of entire structure */
1729
1730         /* transmit stat counters */
1731         uint32 txframe;         /* tx data frames */
1732         uint32 txbyte;          /* tx data bytes */
1733         uint32 txretrans;       /* tx mac retransmits */
1734         uint32 txfail;          /* tx failures */
1735
1736         /* receive stat counters */
1737         uint32 rxframe;         /* rx data frames */
1738         uint32 rxbyte;          /* rx data bytes */
1739
1740         /* per-rate receive stat counters */
1741         uint32 rx1mbps;         /* packets rx at 1Mbps */
1742         uint32 rx2mbps;         /* packets rx at 2Mbps */
1743         uint32 rx5mbps5;        /* packets rx at 5.5Mbps */
1744         uint32 rx6mbps;         /* packets rx at 6Mbps */
1745         uint32 rx9mbps;         /* packets rx at 9Mbps */
1746         uint32 rx11mbps;        /* packets rx at 11Mbps */
1747         uint32 rx12mbps;        /* packets rx at 12Mbps */
1748         uint32 rx18mbps;        /* packets rx at 18Mbps */
1749         uint32 rx24mbps;        /* packets rx at 24Mbps */
1750         uint32 rx36mbps;        /* packets rx at 36Mbps */
1751         uint32 rx48mbps;        /* packets rx at 48Mbps */
1752         uint32 rx54mbps;        /* packets rx at 54Mbps */
1753         uint32 rx108mbps;       /* packets rx at 108mbps */
1754         uint32 rx162mbps;       /* packets rx at 162mbps */
1755         uint32 rx216mbps;       /* packets rx at 216 mbps */
1756         uint32 rx270mbps;       /* packets rx at 270 mbps */
1757         uint32 rx324mbps;       /* packets rx at 324 mbps */
1758         uint32 rx378mbps;       /* packets rx at 378 mbps */
1759         uint32 rx432mbps;       /* packets rx at 432 mbps */
1760         uint32 rx486mbps;       /* packets rx at 486 mbps */
1761         uint32 rx540mbps;       /* packets rx at 540 mbps */
1762 } wl_delta_stats_t;
1763
1764 #define WL_WME_CNT_VERSION      1       /* current version of wl_wme_cnt_t */
1765
1766 typedef struct {
1767         uint32 packets;
1768         uint32 bytes;
1769 } wl_traffic_stats_t;
1770
1771 typedef struct {
1772         uint16 version;         /* see definition of WL_WME_CNT_VERSION */
1773         uint16 length;          /* length of entire structure */
1774
1775         wl_traffic_stats_t tx[AC_COUNT];        /* Packets transmitted */
1776         wl_traffic_stats_t tx_failed[AC_COUNT]; /* Packets dropped or failed to transmit */
1777         wl_traffic_stats_t rx[AC_COUNT];        /* Packets received */
1778         wl_traffic_stats_t rx_failed[AC_COUNT]; /* Packets failed to receive */
1779
1780         wl_traffic_stats_t forward[AC_COUNT];   /* Packets forwarded by AP */
1781
1782         wl_traffic_stats_t tx_expired[AC_COUNT];        /* packets dropped due to lifetime expiry */
1783
1784 } wl_wme_cnt_t;
1785
1786 struct wl_msglevel2 {
1787         uint32 low;
1788         uint32 high;
1789 };
1790
1791 #ifdef WLBA
1792
1793 #define WLC_BA_CNT_VERSION      1       /* current version of wlc_ba_cnt_t */
1794
1795 /* block ack related stats */
1796 typedef struct wlc_ba_cnt {
1797         uint16 version;         /* WLC_BA_CNT_VERSION */
1798         uint16 length;          /* length of entire structure */
1799
1800         /* transmit stat counters */
1801         uint32 txpdu;           /* pdus sent */
1802         uint32 txsdu;           /* sdus sent */
1803         uint32 txfc;            /* tx side flow controlled packets */
1804         uint32 txfci;           /* tx side flow control initiated */
1805         uint32 txretrans;       /* retransmitted pdus */
1806         uint32 txbatimer;       /* ba resend due to timer */
1807         uint32 txdrop;          /* dropped packets */
1808         uint32 txaddbareq;      /* addba req sent */
1809         uint32 txaddbaresp;     /* addba resp sent */
1810         uint32 txdelba;         /* delba sent */
1811         uint32 txba;            /* ba sent */
1812         uint32 txbar;           /* bar sent */
1813         uint32 txpad[4];        /* future */
1814
1815         /* receive side counters */
1816         uint32 rxpdu;           /* pdus recd */
1817         uint32 rxqed;           /* pdus buffered before sending up */
1818         uint32 rxdup;           /* duplicate pdus */
1819         uint32 rxnobuf;         /* pdus discarded due to no buf */
1820         uint32 rxaddbareq;      /* addba req recd */
1821         uint32 rxaddbaresp;     /* addba resp recd */
1822         uint32 rxdelba;         /* delba recd */
1823         uint32 rxba;            /* ba recd */
1824         uint32 rxbar;           /* bar recd */
1825         uint32 rxinvba;         /* invalid ba recd */
1826         uint32 rxbaholes;       /* ba recd with holes */
1827         uint32 rxunexp;         /* unexpected packets */
1828         uint32 rxpad[4];        /* future */
1829 } wlc_ba_cnt_t;
1830 #endif                          /* WLBA */
1831
1832 /* structure for per-tid ampdu control */
1833 struct ampdu_tid_control {
1834         uint8 tid;              /* tid */
1835         uint8 enable;           /* enable/disable */
1836 };
1837
1838 /* structure for identifying ea/tid for sending addba/delba */
1839 struct ampdu_ea_tid {
1840         struct ether_addr ea;   /* Station address */
1841         uint8 tid;              /* tid */
1842 };
1843 /* structure for identifying retry/tid for retry_limit_tid/rr_retry_limit_tid */
1844 struct ampdu_retry_tid {
1845         uint8 tid;              /* tid */
1846         uint8 retry;            /* retry value */
1847 };
1848
1849 /* structure for addts arguments */
1850 /* For ioctls that take a list of TSPEC */
1851 struct tslist {
1852         int count;              /* number of tspecs */
1853         struct tsinfo_arg tsinfo[1];    /* variable length array of tsinfo */
1854 };
1855
1856 /* structure for addts/delts arguments */
1857 typedef struct tspec_arg {
1858         uint16 version;         /* see definition of TSPEC_ARG_VERSION */
1859         uint16 length;          /* length of entire structure */
1860         uint flag;              /* bit field */
1861         /* TSPEC Arguments */
1862         struct tsinfo_arg tsinfo;       /* TS Info bit field */
1863         uint16 nom_msdu_size;   /* (Nominal or fixed) MSDU Size (bytes) */
1864         uint16 max_msdu_size;   /* Maximum MSDU Size (bytes) */
1865         uint min_srv_interval;  /* Minimum Service Interval (us) */
1866         uint max_srv_interval;  /* Maximum Service Interval (us) */
1867         uint inactivity_interval;       /* Inactivity Interval (us) */
1868         uint suspension_interval;       /* Suspension Interval (us) */
1869         uint srv_start_time;    /* Service Start Time (us) */
1870         uint min_data_rate;     /* Minimum Data Rate (bps) */
1871         uint mean_data_rate;    /* Mean Data Rate (bps) */
1872         uint peak_data_rate;    /* Peak Data Rate (bps) */
1873         uint max_burst_size;    /* Maximum Burst Size (bytes) */
1874         uint delay_bound;       /* Delay Bound (us) */
1875         uint min_phy_rate;      /* Minimum PHY Rate (bps) */
1876         uint16 surplus_bw;      /* Surplus Bandwidth Allowance (range 1.0 to 8.0) */
1877         uint16 medium_time;     /* Medium Time (32 us/s periods) */
1878         uint8 dialog_token;     /* dialog token */
1879 } tspec_arg_t;
1880
1881 /* tspec arg for desired station */
1882 typedef struct tspec_per_sta_arg {
1883         struct ether_addr ea;
1884         struct tspec_arg ts;
1885 } tspec_per_sta_arg_t;
1886
1887 /* structure for max bandwidth for each access category */
1888 typedef struct wme_max_bandwidth {
1889         uint32 ac[AC_COUNT];    /* max bandwidth for each access category */
1890 } wme_max_bandwidth_t;
1891
1892 #define WL_WME_MBW_PARAMS_IO_BYTES (sizeof(wme_max_bandwidth_t))
1893
1894 /* current version of wl_tspec_arg_t struct */
1895 #define TSPEC_ARG_VERSION               2       /* current version of wl_tspec_arg_t struct */
1896 #define TSPEC_ARG_LENGTH                55      /* argument length from tsinfo to medium_time */
1897 #define TSPEC_DEFAULT_DIALOG_TOKEN      42      /* default dialog token */
1898 #define TSPEC_DEFAULT_SBW_FACTOR        0x3000  /* default surplus bw */
1899
1900 /* define for flag */
1901 #define TSPEC_PENDING           0       /* TSPEC pending */
1902 #define TSPEC_ACCEPTED          1       /* TSPEC accepted */
1903 #define TSPEC_REJECTED          2       /* TSPEC rejected */
1904 #define TSPEC_UNKNOWN           3       /* TSPEC unknown */
1905 #define TSPEC_STATUS_MASK       7       /* TSPEC status mask */
1906
1907 /* Software feature flag defines used by wlfeatureflag */
1908 #define WL_SWFL_NOHWRADIO       0x0004
1909 #define WL_SWFL_FLOWCONTROL     0x0008  /* Enable backpressure to OS stack */
1910 #define WL_SWFL_WLBSSSORT       0x0010  /* Per-port supports sorting of BSS */
1911
1912 #define WL_LIFETIME_MAX 0xFFFF  /* Max value in ms */
1913
1914 /*
1915  * Dongle pattern matching filter.
1916  */
1917
1918 /* Packet filter types. Currently, only pattern matching is supported. */
1919 typedef enum wl_pkt_filter_type {
1920         WL_PKT_FILTER_TYPE_PATTERN_MATCH        /* Pattern matching filter */
1921 } wl_pkt_filter_type_t;
1922
1923 #define WL_PKT_FILTER_TYPE wl_pkt_filter_type_t
1924
1925 /* Pattern matching filter. Specifies an offset within received packets to
1926  * start matching, the pattern to match, the size of the pattern, and a bitmask
1927  * that indicates which bits within the pattern should be matched.
1928  */
1929 typedef struct wl_pkt_filter_pattern {
1930         uint32 offset;          /* Offset within received packet to start pattern matching.
1931                                  * Offset '0' is the first byte of the ethernet header.
1932                                  */
1933         uint32 size_bytes;      /* Size of the pattern.  Bitmask must be the same size. */
1934         uint8 mask_and_pattern[1];      /* Variable length mask and pattern data.  mask starts
1935                                          * at offset 0.  Pattern immediately follows mask.
1936                                          */
1937 } wl_pkt_filter_pattern_t;
1938
1939 /* IOVAR "pkt_filter_add" parameter. Used to install packet filters. */
1940 typedef struct wl_pkt_filter {
1941         uint32 id;              /* Unique filter id, specified by app. */
1942         uint32 type;            /* Filter type (WL_PKT_FILTER_TYPE_xxx). */
1943         uint32 negate_match;    /* Negate the result of filter matches */
1944         union {                 /* Filter definitions */
1945                 wl_pkt_filter_pattern_t pattern;        /* Pattern matching filter */
1946         } u;
1947 } wl_pkt_filter_t;
1948
1949 #define WL_PKT_FILTER_FIXED_LEN           OFFSETOF(wl_pkt_filter_t, u)
1950 #define WL_PKT_FILTER_PATTERN_FIXED_LEN   OFFSETOF(wl_pkt_filter_pattern_t, mask_and_pattern)
1951
1952 /* IOVAR "pkt_filter_enable" parameter. */
1953 typedef struct wl_pkt_filter_enable {
1954         uint32 id;              /* Unique filter id */
1955         uint32 enable;          /* Enable/disable bool */
1956 } wl_pkt_filter_enable_t;
1957
1958 /* IOVAR "pkt_filter_list" parameter. Used to retrieve a list of installed filters. */
1959 typedef struct wl_pkt_filter_list {
1960         uint32 num;             /* Number of installed packet filters */
1961         wl_pkt_filter_t filter[1];      /* Variable array of packet filters. */
1962 } wl_pkt_filter_list_t;
1963
1964 #define WL_PKT_FILTER_LIST_FIXED_LEN      OFFSETOF(wl_pkt_filter_list_t, filter)
1965
1966 /* IOVAR "pkt_filter_stats" parameter. Used to retrieve debug statistics. */
1967 typedef struct wl_pkt_filter_stats {
1968         uint32 num_pkts_matched;        /* # filter matches for specified filter id */
1969         uint32 num_pkts_forwarded;      /* # packets fwded from dongle to host for all filters */
1970         uint32 num_pkts_discarded;      /* # packets discarded by dongle for all filters */
1971 } wl_pkt_filter_stats_t;
1972
1973 typedef struct wl_pkteng {
1974         uint32 flags;
1975         uint32 delay;           /* Inter-packet delay */
1976         uint32 nframes;         /* Number of frames */
1977         uint32 length;          /* Packet length */
1978         uint8 seqno;            /* Enable/disable sequence no. */
1979         struct ether_addr dest; /* Destination address */
1980         struct ether_addr src;  /* Source address */
1981 } wl_pkteng_t;
1982
1983 #define WLC_RSSI_INVALID         0      /* invalid RSSI value */
1984
1985 /* require default structure packing */
1986 #include <packed_section_end.h>
1987
1988 /* n-mode support capability */
1989 /* 2x2 includes both 1x1 & 2x2 devices
1990  * reserved #define 2 for future when we want to separate 1x1 & 2x2 and
1991  * control it independently
1992  */
1993 #define WL_11N_2x2                      1
1994 #define WL_11N_3x3                      3
1995 #define WL_11N_4x4                      4
1996
1997 /* define 11n feature disable flags */
1998 #define WLFEATURE_DISABLE_11N           0x00000001
1999 #define WLFEATURE_DISABLE_11N_STBC_TX   0x00000002
2000 #define WLFEATURE_DISABLE_11N_STBC_RX   0x00000004
2001 #define WLFEATURE_DISABLE_11N_SGI_TX    0x00000008
2002 #define WLFEATURE_DISABLE_11N_SGI_RX    0x00000010
2003 #define WLFEATURE_DISABLE_11N_AMPDU_TX  0x00000020
2004 #define WLFEATURE_DISABLE_11N_AMPDU_RX  0x00000040
2005 #define WLFEATURE_DISABLE_11N_GF        0x00000080
2006
2007 #endif                          /* _wlioctl_h_ */