• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 1999-2009, Broadcom Corporation
3  *
4  *      Unless you and Broadcom execute a separate written software license
5  * agreement governing use of this software, this software is licensed to you
6  * under the terms of the GNU General Public License version 2 (the "GPL"),
7  * available at http://www.broadcom.com/licenses/GPLv2.php, with the
8  * following added to such license:
9  *
10  *      As a special exception, the copyright holders of this software give you
11  * permission to link this software with independent modules, and to copy and
12  * distribute the resulting executable under terms of your choice, provided that
13  * you also meet, for each linked independent module, the terms and conditions of
14  * the license of that module.  An independent module is a module which is not
15  * derived from this software.  The special exception does not apply to any
16  * modifications of the software.
17  *
18  *      Notwithstanding the above, under no circumstances may you combine this
19  * software in any way with any other Broadcom software provided under a license
20  * other than the GPL, without Broadcom's express prior written consent.
21  *
22  * Fundamental types and constants relating to 802.11
23  *
24  * $Id: 802.11.h,v 9.219.4.1.4.5.6.10 2009/07/09 10:15:09 Exp $
25  */
26 
27 
28 #ifndef _802_11_H_
29 #define _802_11_H_
30 
31 #ifndef _TYPEDEFS_H_
32 #include <typedefs.h>
33 #endif
34 
35 #ifndef _NET_ETHERNET_H_
36 #include <proto/ethernet.h>
37 #endif
38 
39 #include <proto/wpa.h>
40 
41 
42 #include <packed_section_start.h>
43 
44 
45 #define DOT11_TU_TO_US			1024
46 
47 
48 #define DOT11_A3_HDR_LEN		24
49 #define DOT11_A4_HDR_LEN		30
50 #define DOT11_MAC_HDR_LEN		DOT11_A3_HDR_LEN
51 #define DOT11_FCS_LEN			4
52 #define DOT11_ICV_LEN			4
53 #define DOT11_ICV_AES_LEN		8
54 #define DOT11_QOS_LEN			2
55 #define DOT11_HTC_LEN			4
56 
57 #define DOT11_KEY_INDEX_SHIFT		6
58 #define DOT11_IV_LEN			4
59 #define DOT11_IV_TKIP_LEN		8
60 #define DOT11_IV_AES_OCB_LEN		4
61 #define DOT11_IV_AES_CCM_LEN		8
62 #define DOT11_IV_MAX_LEN		8
63 
64 
65 #define DOT11_MAX_MPDU_BODY_LEN		2304
66 
67 #define DOT11_MAX_MPDU_LEN		(DOT11_A4_HDR_LEN + \
68 					 DOT11_QOS_LEN + \
69 					 DOT11_IV_AES_CCM_LEN + \
70 					 DOT11_MAX_MPDU_BODY_LEN + \
71 					 DOT11_ICV_LEN + \
72 					 DOT11_FCS_LEN)
73 
74 #define DOT11_MAX_SSID_LEN		32
75 
76 
77 #define DOT11_DEFAULT_RTS_LEN		2347
78 #define DOT11_MAX_RTS_LEN		2347
79 
80 
81 #define DOT11_MIN_FRAG_LEN		256
82 #define DOT11_MAX_FRAG_LEN		2346
83 #define DOT11_DEFAULT_FRAG_LEN		2346
84 
85 
86 #define DOT11_MIN_BEACON_PERIOD		1
87 #define DOT11_MAX_BEACON_PERIOD		0xFFFF
88 
89 
90 #define DOT11_MIN_DTIM_PERIOD		1
91 #define DOT11_MAX_DTIM_PERIOD		0xFF
92 
93 
94 #define DOT11_LLC_SNAP_HDR_LEN		8
95 #define DOT11_OUI_LEN			3
96 BWL_PRE_PACKED_STRUCT struct dot11_llc_snap_header {
97 	uint8	dsap;
98 	uint8	ssap;
99 	uint8	ctl;
100 	uint8	oui[DOT11_OUI_LEN];
101 	uint16	type;
102 } BWL_POST_PACKED_STRUCT;
103 
104 
105 #define RFC1042_HDR_LEN	(ETHER_HDR_LEN + DOT11_LLC_SNAP_HDR_LEN)
106 
107 
108 
109 BWL_PRE_PACKED_STRUCT struct dot11_header {
110 	uint16			fc;
111 	uint16			durid;
112 	struct ether_addr	a1;
113 	struct ether_addr	a2;
114 	struct ether_addr	a3;
115 	uint16			seq;
116 	struct ether_addr	a4;
117 } BWL_POST_PACKED_STRUCT;
118 
119 
120 
121 BWL_PRE_PACKED_STRUCT struct dot11_rts_frame {
122 	uint16			fc;
123 	uint16			durid;
124 	struct ether_addr	ra;
125 	struct ether_addr	ta;
126 } BWL_POST_PACKED_STRUCT;
127 #define	DOT11_RTS_LEN		16
128 
129 BWL_PRE_PACKED_STRUCT struct dot11_cts_frame {
130 	uint16			fc;
131 	uint16			durid;
132 	struct ether_addr	ra;
133 } BWL_POST_PACKED_STRUCT;
134 #define	DOT11_CTS_LEN		10
135 
136 BWL_PRE_PACKED_STRUCT struct dot11_ack_frame {
137 	uint16			fc;
138 	uint16			durid;
139 	struct ether_addr	ra;
140 } BWL_POST_PACKED_STRUCT;
141 #define	DOT11_ACK_LEN		10
142 
143 BWL_PRE_PACKED_STRUCT struct dot11_ps_poll_frame {
144 	uint16			fc;
145 	uint16			durid;
146 	struct ether_addr	bssid;
147 	struct ether_addr	ta;
148 } BWL_POST_PACKED_STRUCT;
149 #define	DOT11_PS_POLL_LEN	16
150 
151 BWL_PRE_PACKED_STRUCT struct dot11_cf_end_frame {
152 	uint16			fc;
153 	uint16			durid;
154 	struct ether_addr	ra;
155 	struct ether_addr	bssid;
156 } BWL_POST_PACKED_STRUCT;
157 #define	DOT11_CS_END_LEN	16
158 
159 BWL_PRE_PACKED_STRUCT struct dot11_action_wifi_vendor_specific {
160 	uint8	category;
161 	uint8	OUI[3];
162 	uint8	type;
163 	uint8	subtype;
164 	uint8	data[1040];
165 	struct dot11_action_wifi_vendor_specific* next_node;
166 } BWL_POST_PACKED_STRUCT;
167 
168 typedef struct dot11_action_wifi_vendor_specific dot11_action_wifi_vendor_specific_t;
169 
170 #define DOT11_BA_CTL_POLICY_NORMAL	0x0000
171 #define DOT11_BA_CTL_POLICY_NOACK	0x0001
172 #define DOT11_BA_CTL_POLICY_MASK	0x0001
173 
174 #define DOT11_BA_CTL_MTID		0x0002
175 #define DOT11_BA_CTL_COMPRESSED		0x0004
176 
177 #define DOT11_BA_CTL_NUMMSDU_MASK	0x0FC0
178 #define DOT11_BA_CTL_NUMMSDU_SHIFT	6
179 
180 #define DOT11_BA_CTL_TID_MASK		0xF000
181 #define DOT11_BA_CTL_TID_SHIFT		12
182 
183 
184 BWL_PRE_PACKED_STRUCT struct dot11_ctl_header {
185 	uint16			fc;
186 	uint16			durid;
187 	struct ether_addr	ra;
188 	struct ether_addr	ta;
189 } BWL_POST_PACKED_STRUCT;
190 #define DOT11_CTL_HDR_LEN	16
191 
192 
193 BWL_PRE_PACKED_STRUCT struct dot11_bar {
194 	uint16			bar_control;
195 	uint16			seqnum;
196 } BWL_POST_PACKED_STRUCT;
197 #define DOT11_BAR_LEN		4
198 
199 #define DOT11_BA_BITMAP_LEN	128
200 #define DOT11_BA_CMP_BITMAP_LEN	8
201 
202 BWL_PRE_PACKED_STRUCT struct dot11_ba {
203 	uint16			ba_control;
204 	uint16			seqnum;
205 	uint8			bitmap[DOT11_BA_BITMAP_LEN];
206 } BWL_POST_PACKED_STRUCT;
207 #define DOT11_BA_LEN		4
208 
209 
210 BWL_PRE_PACKED_STRUCT struct dot11_management_header {
211 	uint16			fc;
212 	uint16			durid;
213 	struct ether_addr	da;
214 	struct ether_addr	sa;
215 	struct ether_addr	bssid;
216 	uint16			seq;
217 } BWL_POST_PACKED_STRUCT;
218 #define	DOT11_MGMT_HDR_LEN	24
219 
220 
221 
222 BWL_PRE_PACKED_STRUCT struct dot11_bcn_prb {
223 	uint32			timestamp[2];
224 	uint16			beacon_interval;
225 	uint16			capability;
226 } BWL_POST_PACKED_STRUCT;
227 #define	DOT11_BCN_PRB_LEN	12
228 
229 BWL_PRE_PACKED_STRUCT struct dot11_auth {
230 	uint16			alg;
231 	uint16			seq;
232 	uint16			status;
233 } BWL_POST_PACKED_STRUCT;
234 #define DOT11_AUTH_FIXED_LEN	6
235 
236 BWL_PRE_PACKED_STRUCT struct dot11_assoc_req {
237 	uint16			capability;
238 	uint16			listen;
239 } BWL_POST_PACKED_STRUCT;
240 #define DOT11_ASSOC_REQ_FIXED_LEN	4
241 
242 BWL_PRE_PACKED_STRUCT struct dot11_reassoc_req {
243 	uint16			capability;
244 	uint16			listen;
245 	struct ether_addr	ap;
246 } BWL_POST_PACKED_STRUCT;
247 #define DOT11_REASSOC_REQ_FIXED_LEN	10
248 
249 BWL_PRE_PACKED_STRUCT struct dot11_assoc_resp {
250 	uint16			capability;
251 	uint16			status;
252 	uint16			aid;
253 } BWL_POST_PACKED_STRUCT;
254 #define DOT11_ASSOC_RESP_FIXED_LEN	6
255 
256 BWL_PRE_PACKED_STRUCT struct dot11_action_measure {
257 	uint8	category;
258 	uint8	action;
259 	uint8	token;
260 	uint8	data[1];
261 } BWL_POST_PACKED_STRUCT;
262 #define DOT11_ACTION_MEASURE_LEN	3
263 
264 BWL_PRE_PACKED_STRUCT struct dot11_action_ht_ch_width {
265 	uint8	category;
266 	uint8	action;
267 	uint8	ch_width;
268 } BWL_POST_PACKED_STRUCT;
269 
270 BWL_PRE_PACKED_STRUCT struct dot11_action_ht_mimops {
271 	uint8	category;
272 	uint8	action;
273 	uint8	control;
274 } BWL_POST_PACKED_STRUCT;
275 
276 #define SM_PWRSAVE_ENABLE	1
277 #define SM_PWRSAVE_MODE		2
278 
279 
280 BWL_PRE_PACKED_STRUCT struct dot11_power_cnst {
281 	uint8 id;
282 	uint8 len;
283 	uint8 power;
284 } BWL_POST_PACKED_STRUCT;
285 typedef struct dot11_power_cnst dot11_power_cnst_t;
286 
287 BWL_PRE_PACKED_STRUCT struct dot11_power_cap {
288 	uint8 min;
289 	uint8 max;
290 } BWL_POST_PACKED_STRUCT;
291 typedef struct dot11_power_cap dot11_power_cap_t;
292 
293 BWL_PRE_PACKED_STRUCT struct dot11_tpc_rep {
294 	uint8 id;
295 	uint8 len;
296 	uint8 tx_pwr;
297 	uint8 margin;
298 } BWL_POST_PACKED_STRUCT;
299 typedef struct dot11_tpc_rep dot11_tpc_rep_t;
300 #define DOT11_MNG_IE_TPC_REPORT_LEN	2
301 
302 BWL_PRE_PACKED_STRUCT struct dot11_supp_channels {
303 	uint8 id;
304 	uint8 len;
305 	uint8 first_channel;
306 	uint8 num_channels;
307 } BWL_POST_PACKED_STRUCT;
308 typedef struct dot11_supp_channels dot11_supp_channels_t;
309 
310 
311 BWL_PRE_PACKED_STRUCT struct dot11_extch {
312 	uint8	id;
313 	uint8	len;
314 	uint8	extch;
315 } BWL_POST_PACKED_STRUCT;
316 typedef struct dot11_extch dot11_extch_ie_t;
317 
318 BWL_PRE_PACKED_STRUCT struct dot11_brcm_extch {
319 	uint8	id;
320 	uint8	len;
321 	uint8	oui[3];
322 	uint8	type;
323 	uint8	extch;
324 } BWL_POST_PACKED_STRUCT;
325 typedef struct dot11_brcm_extch dot11_brcm_extch_ie_t;
326 
327 #define BRCM_EXTCH_IE_LEN	5
328 #define BRCM_EXTCH_IE_TYPE	53
329 #define DOT11_EXTCH_IE_LEN	1
330 #define DOT11_EXT_CH_MASK	0x03
331 #define DOT11_EXT_CH_UPPER	0x01
332 #define DOT11_EXT_CH_LOWER	0x03
333 #define DOT11_EXT_CH_NONE	0x00
334 
335 BWL_PRE_PACKED_STRUCT struct dot11_action_frmhdr {
336 	uint8	category;
337 	uint8	action;
338 	uint8	data[1];
339 } BWL_POST_PACKED_STRUCT;
340 #define DOT11_ACTION_FRMHDR_LEN	2
341 
342 
343 BWL_PRE_PACKED_STRUCT struct dot11_channel_switch {
344 	uint8 id;
345 	uint8 len;
346 	uint8 mode;
347 	uint8 channel;
348 	uint8 count;
349 } BWL_POST_PACKED_STRUCT;
350 typedef struct dot11_channel_switch dot11_chan_switch_ie_t;
351 
352 #define DOT11_SWITCH_IE_LEN	3
353 
354 #define DOT11_CSA_MODE_ADVISORY		0
355 #define DOT11_CSA_MODE_NO_TX		1
356 
357 BWL_PRE_PACKED_STRUCT struct dot11_action_switch_channel {
358 	uint8	category;
359 	uint8	action;
360 	dot11_chan_switch_ie_t chan_switch_ie;
361 	dot11_brcm_extch_ie_t extch_ie;
362 } BWL_POST_PACKED_STRUCT;
363 
364 
365 BWL_PRE_PACKED_STRUCT struct dot11_ext_csa {
366 	uint8 id;
367 	uint8 len;
368 	uint8 mode;
369 	uint8 reg;
370 	uint8 channel;
371 	uint8 count;
372 } BWL_POST_PACKED_STRUCT;
373 typedef struct dot11_ext_csa dot11_ext_csa_ie_t;
374 #define DOT11_EXT_CSA_IE_LEN	4
375 
376 BWL_PRE_PACKED_STRUCT struct dot11_action_ext_csa {
377 	uint8	category;
378 	uint8	action;
379 	dot11_ext_csa_ie_t chan_switch_ie;
380 } BWL_POST_PACKED_STRUCT;
381 
382 BWL_PRE_PACKED_STRUCT struct dot11_obss_coex {
383 	uint8	id;
384 	uint8	len;
385 	uint8	info;
386 } BWL_POST_PACKED_STRUCT;
387 typedef struct dot11_obss_coex dot11_obss_coex_t;
388 #define DOT11_OBSS_COEXINFO_LEN	1
389 
390 #define	DOT11_OBSS_COEX_INFO_REQ		0x01
391 #define	DOT11_OBSS_COEX_40MHZ_INTOLERANT	0x02
392 #define	DOT11_OBSS_COEX_20MHZ_WIDTH_REQ	0x04
393 
394 BWL_PRE_PACKED_STRUCT struct dot11_obss_chanlist {
395 	uint8	id;
396 	uint8	len;
397 	uint8	regclass;
398 	uint8	chanlist[1];
399 } BWL_POST_PACKED_STRUCT;
400 typedef struct dot11_obss_chanlist dot11_obss_chanlist_t;
401 #define DOT11_OBSS_CHANLIST_FIXED_LEN	1
402 
403 BWL_PRE_PACKED_STRUCT struct dot11_extcap_ie {
404 	uint8 id;
405 	uint8 len;
406 	uint8 cap;
407 } BWL_POST_PACKED_STRUCT;
408 typedef struct dot11_extcap_ie dot11_extcap_ie_t;
409 #define DOT11_EXTCAP_LEN	1
410 
411 
412 
413 #define DOT11_MEASURE_TYPE_BASIC 	0
414 #define DOT11_MEASURE_TYPE_CCA 		1
415 #define DOT11_MEASURE_TYPE_RPI		2
416 
417 
418 #define DOT11_MEASURE_MODE_ENABLE 	(1<<1)
419 #define DOT11_MEASURE_MODE_REQUEST	(1<<2)
420 #define DOT11_MEASURE_MODE_REPORT 	(1<<3)
421 
422 #define DOT11_MEASURE_MODE_LATE 	(1<<0)
423 #define DOT11_MEASURE_MODE_INCAPABLE	(1<<1)
424 #define DOT11_MEASURE_MODE_REFUSED	(1<<2)
425 
426 #define DOT11_MEASURE_BASIC_MAP_BSS	((uint8)(1<<0))
427 #define DOT11_MEASURE_BASIC_MAP_OFDM	((uint8)(1<<1))
428 #define DOT11_MEASURE_BASIC_MAP_UKNOWN	((uint8)(1<<2))
429 #define DOT11_MEASURE_BASIC_MAP_RADAR	((uint8)(1<<3))
430 #define DOT11_MEASURE_BASIC_MAP_UNMEAS	((uint8)(1<<4))
431 
432 BWL_PRE_PACKED_STRUCT struct dot11_meas_req {
433 	uint8 id;
434 	uint8 len;
435 	uint8 token;
436 	uint8 mode;
437 	uint8 type;
438 	uint8 channel;
439 	uint8 start_time[8];
440 	uint16 duration;
441 } BWL_POST_PACKED_STRUCT;
442 typedef struct dot11_meas_req dot11_meas_req_t;
443 #define DOT11_MNG_IE_MREQ_LEN 14
444 
445 #define DOT11_MNG_IE_MREQ_FIXED_LEN 3
446 
447 BWL_PRE_PACKED_STRUCT struct dot11_meas_rep {
448 	uint8 id;
449 	uint8 len;
450 	uint8 token;
451 	uint8 mode;
452 	uint8 type;
453 	BWL_PRE_PACKED_STRUCT union
454 	{
455 		BWL_PRE_PACKED_STRUCT struct {
456 			uint8 channel;
457 			uint8 start_time[8];
458 			uint16 duration;
459 			uint8 map;
460 		} BWL_POST_PACKED_STRUCT basic;
461 		uint8 data[1];
462 	} BWL_POST_PACKED_STRUCT rep;
463 } BWL_POST_PACKED_STRUCT;
464 typedef struct dot11_meas_rep dot11_meas_rep_t;
465 
466 
467 #define DOT11_MNG_IE_MREP_FIXED_LEN	3
468 
469 BWL_PRE_PACKED_STRUCT struct dot11_meas_rep_basic {
470 	uint8 channel;
471 	uint8 start_time[8];
472 	uint16 duration;
473 	uint8 map;
474 } BWL_POST_PACKED_STRUCT;
475 typedef struct dot11_meas_rep_basic dot11_meas_rep_basic_t;
476 #define DOT11_MEASURE_BASIC_REP_LEN	12
477 
478 BWL_PRE_PACKED_STRUCT struct dot11_quiet {
479 	uint8 id;
480 	uint8 len;
481 	uint8 count;
482 	uint8 period;
483 	uint16 duration;
484 	uint16 offset;
485 } BWL_POST_PACKED_STRUCT;
486 typedef struct dot11_quiet dot11_quiet_t;
487 
488 BWL_PRE_PACKED_STRUCT struct chan_map_tuple {
489 	uint8 channel;
490 	uint8 map;
491 } BWL_POST_PACKED_STRUCT;
492 typedef struct chan_map_tuple chan_map_tuple_t;
493 
494 BWL_PRE_PACKED_STRUCT struct dot11_ibss_dfs {
495 	uint8 id;
496 	uint8 len;
497 	uint8 eaddr[ETHER_ADDR_LEN];
498 	uint8 interval;
499 	chan_map_tuple_t map[1];
500 } BWL_POST_PACKED_STRUCT;
501 typedef struct dot11_ibss_dfs dot11_ibss_dfs_t;
502 
503 
504 #define WME_OUI			"\x00\x50\xf2"
505 #define WME_VER			1
506 #define WME_TYPE		2
507 #define WME_SUBTYPE_IE		0
508 #define WME_SUBTYPE_PARAM_IE	1
509 #define WME_SUBTYPE_TSPEC	2
510 
511 
512 #define AC_BE			0
513 #define AC_BK			1
514 #define AC_VI			2
515 #define AC_VO			3
516 #define AC_COUNT		4
517 
518 typedef uint8 ac_bitmap_t;
519 
520 #define AC_BITMAP_NONE		0x0
521 #define AC_BITMAP_ALL		0xf
522 #define AC_BITMAP_TST(ab, ac)	(((ab) & (1 << (ac))) != 0)
523 #define AC_BITMAP_SET(ab, ac)	(((ab) |= (1 << (ac))))
524 #define AC_BITMAP_RESET(ab, ac) (((ab) &= ~(1 << (ac))))
525 
526 
527 BWL_PRE_PACKED_STRUCT struct wme_ie {
528 	uint8 oui[3];
529 	uint8 type;
530 	uint8 subtype;
531 	uint8 version;
532 	uint8 qosinfo;
533 } BWL_POST_PACKED_STRUCT;
534 typedef struct wme_ie wme_ie_t;
535 #define WME_IE_LEN 7
536 
537 BWL_PRE_PACKED_STRUCT struct edcf_acparam {
538 	uint8	ACI;
539 	uint8	ECW;
540 	uint16  TXOP;
541 } BWL_POST_PACKED_STRUCT;
542 typedef struct edcf_acparam edcf_acparam_t;
543 
544 
545 BWL_PRE_PACKED_STRUCT struct wme_param_ie {
546 	uint8 oui[3];
547 	uint8 type;
548 	uint8 subtype;
549 	uint8 version;
550 	uint8 qosinfo;
551 	uint8 rsvd;
552 	edcf_acparam_t acparam[AC_COUNT];
553 } BWL_POST_PACKED_STRUCT;
554 typedef struct wme_param_ie wme_param_ie_t;
555 #define WME_PARAM_IE_LEN            24
556 
557 
558 #define WME_QI_AP_APSD_MASK         0x80
559 #define WME_QI_AP_APSD_SHIFT        7
560 #define WME_QI_AP_COUNT_MASK        0x0f
561 #define WME_QI_AP_COUNT_SHIFT       0
562 
563 
564 #define WME_QI_STA_MAXSPLEN_MASK    0x60
565 #define WME_QI_STA_MAXSPLEN_SHIFT   5
566 #define WME_QI_STA_APSD_ALL_MASK    0xf
567 #define WME_QI_STA_APSD_ALL_SHIFT   0
568 #define WME_QI_STA_APSD_BE_MASK     0x8
569 #define WME_QI_STA_APSD_BE_SHIFT    3
570 #define WME_QI_STA_APSD_BK_MASK     0x4
571 #define WME_QI_STA_APSD_BK_SHIFT    2
572 #define WME_QI_STA_APSD_VI_MASK     0x2
573 #define WME_QI_STA_APSD_VI_SHIFT    1
574 #define WME_QI_STA_APSD_VO_MASK     0x1
575 #define WME_QI_STA_APSD_VO_SHIFT    0
576 
577 
578 #define EDCF_AIFSN_MIN               1
579 #define EDCF_AIFSN_MAX               15
580 #define EDCF_AIFSN_MASK              0x0f
581 #define EDCF_ACM_MASK                0x10
582 #define EDCF_ACI_MASK                0x60
583 #define EDCF_ACI_SHIFT               5
584 #define EDCF_AIFSN_SHIFT             12
585 
586 
587 #define EDCF_ECW_MIN                 0
588 #define EDCF_ECW_MAX                 15
589 #define EDCF_ECW2CW(exp)             ((1 << (exp)) - 1)
590 #define EDCF_ECWMIN_MASK             0x0f
591 #define EDCF_ECWMAX_MASK             0xf0
592 #define EDCF_ECWMAX_SHIFT            4
593 
594 
595 #define EDCF_TXOP_MIN                0
596 #define EDCF_TXOP_MAX                65535
597 #define EDCF_TXOP2USEC(txop)         ((txop) << 5)
598 
599 
600 #define NON_EDCF_AC_BE_ACI_STA          0x02
601 
602 
603 #define EDCF_AC_BE_ACI_STA           0x03
604 #define EDCF_AC_BE_ECW_STA           0xA4
605 #define EDCF_AC_BE_TXOP_STA          0x0000
606 #define EDCF_AC_BK_ACI_STA           0x27
607 #define EDCF_AC_BK_ECW_STA           0xA4
608 #define EDCF_AC_BK_TXOP_STA          0x0000
609 #define EDCF_AC_VI_ACI_STA           0x42
610 #define EDCF_AC_VI_ECW_STA           0x43
611 #define EDCF_AC_VI_TXOP_STA          0x005e
612 #define EDCF_AC_VO_ACI_STA           0x62
613 #define EDCF_AC_VO_ECW_STA           0x32
614 #define EDCF_AC_VO_TXOP_STA          0x002f
615 
616 
617 #define EDCF_AC_BE_ACI_AP            0x03
618 #define EDCF_AC_BE_ECW_AP            0x64
619 #define EDCF_AC_BE_TXOP_AP           0x0000
620 #define EDCF_AC_BK_ACI_AP            0x27
621 #define EDCF_AC_BK_ECW_AP            0xA4
622 #define EDCF_AC_BK_TXOP_AP           0x0000
623 #define EDCF_AC_VI_ACI_AP            0x41
624 #define EDCF_AC_VI_ECW_AP            0x43
625 #define EDCF_AC_VI_TXOP_AP           0x005e
626 #define EDCF_AC_VO_ACI_AP            0x61
627 #define EDCF_AC_VO_ECW_AP            0x32
628 #define EDCF_AC_VO_TXOP_AP           0x002f
629 
630 
631 BWL_PRE_PACKED_STRUCT struct edca_param_ie {
632 	uint8 qosinfo;
633 	uint8 rsvd;
634 	edcf_acparam_t acparam[AC_COUNT];
635 } BWL_POST_PACKED_STRUCT;
636 typedef struct edca_param_ie edca_param_ie_t;
637 #define EDCA_PARAM_IE_LEN            18
638 
639 
640 BWL_PRE_PACKED_STRUCT struct qos_cap_ie {
641 	uint8 qosinfo;
642 } BWL_POST_PACKED_STRUCT;
643 typedef struct qos_cap_ie qos_cap_ie_t;
644 
645 BWL_PRE_PACKED_STRUCT struct dot11_qbss_load_ie {
646 	uint8 id;
647 	uint8 length;
648 	uint16 station_count;
649 	uint8 channel_utilization;
650 	uint16 aac;
651 } BWL_POST_PACKED_STRUCT;
652 typedef struct dot11_qbss_load_ie dot11_qbss_load_ie_t;
653 
654 
655 #define FIXED_MSDU_SIZE 0x8000
656 #define MSDU_SIZE_MASK	0x7fff
657 
658 
659 
660 #define	INTEGER_SHIFT	13
661 #define FRACTION_MASK	0x1FFF
662 
663 
664 BWL_PRE_PACKED_STRUCT struct dot11_management_notification {
665 	uint8 category;
666 	uint8 action;
667 	uint8 token;
668 	uint8 status;
669 	uint8 data[1];
670 } BWL_POST_PACKED_STRUCT;
671 #define DOT11_MGMT_NOTIFICATION_LEN 4
672 
673 
674 #define WME_ADDTS_REQUEST	0
675 #define WME_ADDTS_RESPONSE	1
676 #define WME_DELTS_REQUEST	2
677 
678 
679 #define WME_ADMISSION_ACCEPTED		0
680 #define WME_INVALID_PARAMETERS		1
681 #define WME_ADMISSION_REFUSED		3
682 
683 
684 #define BCN_PRB_SSID(body) ((char*)(body) + DOT11_BCN_PRB_LEN)
685 
686 
687 #define DOT11_OPEN_SYSTEM	0
688 #define DOT11_SHARED_KEY	1
689 
690 #define DOT11_OPEN_SHARED	2
691 #define DOT11_CHALLENGE_LEN	128
692 
693 
694 #define FC_PVER_MASK		0x3
695 #define FC_PVER_SHIFT		0
696 #define FC_TYPE_MASK		0xC
697 #define FC_TYPE_SHIFT		2
698 #define FC_SUBTYPE_MASK		0xF0
699 #define FC_SUBTYPE_SHIFT	4
700 #define FC_TODS			0x100
701 #define FC_TODS_SHIFT		8
702 #define FC_FROMDS		0x200
703 #define FC_FROMDS_SHIFT		9
704 #define FC_MOREFRAG		0x400
705 #define FC_MOREFRAG_SHIFT	10
706 #define FC_RETRY		0x800
707 #define FC_RETRY_SHIFT		11
708 #define FC_PM			0x1000
709 #define FC_PM_SHIFT		12
710 #define FC_MOREDATA		0x2000
711 #define FC_MOREDATA_SHIFT	13
712 #define FC_WEP			0x4000
713 #define FC_WEP_SHIFT		14
714 #define FC_ORDER		0x8000
715 #define FC_ORDER_SHIFT		15
716 
717 
718 #define SEQNUM_SHIFT		4
719 #define SEQNUM_MAX		0x1000
720 #define FRAGNUM_MASK		0xF
721 
722 
723 
724 
725 #define FC_TYPE_MNG		0
726 #define FC_TYPE_CTL		1
727 #define FC_TYPE_DATA		2
728 
729 
730 #define FC_SUBTYPE_ASSOC_REQ		0
731 #define FC_SUBTYPE_ASSOC_RESP		1
732 #define FC_SUBTYPE_REASSOC_REQ		2
733 #define FC_SUBTYPE_REASSOC_RESP		3
734 #define FC_SUBTYPE_PROBE_REQ		4
735 #define FC_SUBTYPE_PROBE_RESP		5
736 #define FC_SUBTYPE_BEACON		8
737 #define FC_SUBTYPE_ATIM			9
738 #define FC_SUBTYPE_DISASSOC		10
739 #define FC_SUBTYPE_AUTH			11
740 #define FC_SUBTYPE_DEAUTH		12
741 #define FC_SUBTYPE_ACTION		13
742 #define FC_SUBTYPE_ACTION_NOACK		14
743 
744 
745 #define FC_SUBTYPE_CTL_WRAPPER		7
746 #define FC_SUBTYPE_BLOCKACK_REQ		8
747 #define FC_SUBTYPE_BLOCKACK		9
748 #define FC_SUBTYPE_PS_POLL		10
749 #define FC_SUBTYPE_RTS			11
750 #define FC_SUBTYPE_CTS			12
751 #define FC_SUBTYPE_ACK			13
752 #define FC_SUBTYPE_CF_END		14
753 #define FC_SUBTYPE_CF_END_ACK		15
754 
755 
756 #define FC_SUBTYPE_DATA			0
757 #define FC_SUBTYPE_DATA_CF_ACK		1
758 #define FC_SUBTYPE_DATA_CF_POLL		2
759 #define FC_SUBTYPE_DATA_CF_ACK_POLL	3
760 #define FC_SUBTYPE_NULL			4
761 #define FC_SUBTYPE_CF_ACK		5
762 #define FC_SUBTYPE_CF_POLL		6
763 #define FC_SUBTYPE_CF_ACK_POLL		7
764 #define FC_SUBTYPE_QOS_DATA		8
765 #define FC_SUBTYPE_QOS_DATA_CF_ACK	9
766 #define FC_SUBTYPE_QOS_DATA_CF_POLL	10
767 #define FC_SUBTYPE_QOS_DATA_CF_ACK_POLL	11
768 #define FC_SUBTYPE_QOS_NULL		12
769 #define FC_SUBTYPE_QOS_CF_POLL		14
770 #define FC_SUBTYPE_QOS_CF_ACK_POLL	15
771 
772 
773 #define FC_SUBTYPE_ANY_QOS(s)		(((s) & 8) != 0)
774 #define FC_SUBTYPE_ANY_NULL(s)		(((s) & 4) != 0)
775 #define FC_SUBTYPE_ANY_CF_POLL(s)	(((s) & 2) != 0)
776 #define FC_SUBTYPE_ANY_CF_ACK(s)	(((s) & 1) != 0)
777 
778 
779 #define FC_KIND_MASK		(FC_TYPE_MASK | FC_SUBTYPE_MASK)
780 
781 #define FC_KIND(t, s)	(((t) << FC_TYPE_SHIFT) | ((s) << FC_SUBTYPE_SHIFT))
782 
783 #define FC_SUBTYPE(fc)	(((fc) & FC_SUBTYPE_MASK) >> FC_SUBTYPE_SHIFT)
784 #define FC_TYPE(fc)	(((fc) & FC_TYPE_MASK) >> FC_TYPE_SHIFT)
785 
786 #define FC_ASSOC_REQ	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_ASSOC_REQ)
787 #define FC_ASSOC_RESP	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_ASSOC_RESP)
788 #define FC_REASSOC_REQ	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_REASSOC_REQ)
789 #define FC_REASSOC_RESP	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_REASSOC_RESP)
790 #define FC_PROBE_REQ	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_PROBE_REQ)
791 #define FC_PROBE_RESP	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_PROBE_RESP)
792 #define FC_BEACON	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_BEACON)
793 #define FC_DISASSOC	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_DISASSOC)
794 #define FC_AUTH		FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_AUTH)
795 #define FC_DEAUTH	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_DEAUTH)
796 #define FC_ACTION	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_ACTION)
797 #define FC_ACTION_NOACK	FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_ACTION_NOACK)
798 
799 #define FC_CTL_WRAPPER	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_CTL_WRAPPER)
800 #define FC_BLOCKACK_REQ	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_BLOCKACK_REQ)
801 #define FC_BLOCKACK	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_BLOCKACK)
802 #define FC_PS_POLL	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_PS_POLL)
803 #define FC_RTS		FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_RTS)
804 #define FC_CTS		FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_CTS)
805 #define FC_ACK		FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_ACK)
806 #define FC_CF_END	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_CF_END)
807 #define FC_CF_END_ACK	FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_CF_END_ACK)
808 
809 #define FC_DATA		FC_KIND(FC_TYPE_DATA, FC_SUBTYPE_DATA)
810 #define FC_NULL_DATA	FC_KIND(FC_TYPE_DATA, FC_SUBTYPE_NULL)
811 #define FC_DATA_CF_ACK	FC_KIND(FC_TYPE_DATA, FC_SUBTYPE_DATA_CF_ACK)
812 #define FC_QOS_DATA	FC_KIND(FC_TYPE_DATA, FC_SUBTYPE_QOS_DATA)
813 #define FC_QOS_NULL	FC_KIND(FC_TYPE_DATA, FC_SUBTYPE_QOS_NULL)
814 
815 
816 
817 
818 #define QOS_PRIO_SHIFT		0
819 #define QOS_PRIO_MASK		0x0007
820 #define QOS_PRIO(qos)		(((qos) & QOS_PRIO_MASK) >> QOS_PRIO_SHIFT)
821 
822 
823 #define QOS_TID_SHIFT		0
824 #define QOS_TID_MASK		0x000f
825 #define QOS_TID(qos)		(((qos) & QOS_TID_MASK) >> QOS_TID_SHIFT)
826 
827 
828 #define QOS_EOSP_SHIFT		4
829 #define QOS_EOSP_MASK		0x0010
830 #define QOS_EOSP(qos)		(((qos) & QOS_EOSP_MASK) >> QOS_EOSP_SHIFT)
831 
832 
833 #define QOS_ACK_NORMAL_ACK	0
834 #define QOS_ACK_NO_ACK		1
835 #define QOS_ACK_NO_EXP_ACK	2
836 #define QOS_ACK_BLOCK_ACK	3
837 #define QOS_ACK_SHIFT		5
838 #define QOS_ACK_MASK		0x0060
839 #define QOS_ACK(qos)		(((qos) & QOS_ACK_MASK) >> QOS_ACK_SHIFT)
840 
841 
842 #define QOS_AMSDU_SHIFT		7
843 #define QOS_AMSDU_MASK		0x0080
844 
845 
846 
847 
848 
849 
850 #define DOT11_MNG_AUTH_ALGO_LEN		2
851 #define DOT11_MNG_AUTH_SEQ_LEN		2
852 #define DOT11_MNG_BEACON_INT_LEN	2
853 #define DOT11_MNG_CAP_LEN		2
854 #define DOT11_MNG_AP_ADDR_LEN		6
855 #define DOT11_MNG_LISTEN_INT_LEN	2
856 #define DOT11_MNG_REASON_LEN		2
857 #define DOT11_MNG_AID_LEN		2
858 #define DOT11_MNG_STATUS_LEN		2
859 #define DOT11_MNG_TIMESTAMP_LEN		8
860 
861 
862 #define DOT11_AID_MASK			0x3fff
863 
864 
865 #define DOT11_RC_RESERVED		0
866 #define DOT11_RC_UNSPECIFIED		1
867 #define DOT11_RC_AUTH_INVAL		2
868 #define DOT11_RC_DEAUTH_LEAVING		3
869 #define DOT11_RC_INACTIVITY		4
870 #define DOT11_RC_BUSY			5
871 #define DOT11_RC_INVAL_CLASS_2		6
872 #define DOT11_RC_INVAL_CLASS_3		7
873 #define DOT11_RC_DISASSOC_LEAVING	8
874 #define DOT11_RC_NOT_AUTH		9
875 #define DOT11_RC_BAD_PC			10
876 #define DOT11_RC_BAD_CHANNELS		11
877 
878 
879 
880 #define DOT11_RC_UNSPECIFIED_QOS	32
881 #define DOT11_RC_INSUFFCIENT_BW		33
882 #define DOT11_RC_EXCESSIVE_FRAMES	34
883 #define DOT11_RC_TX_OUTSIDE_TXOP	35
884 #define DOT11_RC_LEAVING_QBSS		36
885 #define DOT11_RC_BAD_MECHANISM		37
886 #define DOT11_RC_SETUP_NEEDED		38
887 #define DOT11_RC_TIMEOUT		39
888 
889 #define DOT11_RC_MAX			23
890 
891 
892 #define DOT11_SC_SUCCESS		0
893 #define DOT11_SC_FAILURE		1
894 #define DOT11_SC_CAP_MISMATCH		10
895 #define DOT11_SC_REASSOC_FAIL		11
896 #define DOT11_SC_ASSOC_FAIL		12
897 #define DOT11_SC_AUTH_MISMATCH		13
898 #define DOT11_SC_AUTH_SEQ		14
899 #define DOT11_SC_AUTH_CHALLENGE_FAIL	15
900 #define DOT11_SC_AUTH_TIMEOUT		16
901 #define DOT11_SC_ASSOC_BUSY_FAIL	17
902 #define DOT11_SC_ASSOC_RATE_MISMATCH	18
903 #define DOT11_SC_ASSOC_SHORT_REQUIRED	19
904 #define DOT11_SC_ASSOC_PBCC_REQUIRED	20
905 #define DOT11_SC_ASSOC_AGILITY_REQUIRED	21
906 #define DOT11_SC_ASSOC_SPECTRUM_REQUIRED	22
907 #define DOT11_SC_ASSOC_BAD_POWER_CAP	23
908 #define DOT11_SC_ASSOC_BAD_SUP_CHANNELS	24
909 #define DOT11_SC_ASSOC_SHORTSLOT_REQUIRED	25
910 #define DOT11_SC_ASSOC_ERPBCC_REQUIRED	26
911 #define DOT11_SC_ASSOC_DSSOFDM_REQUIRED	27
912 
913 #define	DOT11_SC_DECLINED		37
914 #define	DOT11_SC_INVALID_PARAMS		38
915 
916 
917 #define DOT11_MNG_DS_PARAM_LEN			1
918 #define DOT11_MNG_IBSS_PARAM_LEN		2
919 
920 
921 #define DOT11_MNG_TIM_FIXED_LEN			3
922 #define DOT11_MNG_TIM_DTIM_COUNT		0
923 #define DOT11_MNG_TIM_DTIM_PERIOD		1
924 #define DOT11_MNG_TIM_BITMAP_CTL		2
925 #define DOT11_MNG_TIM_PVB			3
926 
927 
928 #define TLV_TAG_OFF		0
929 #define TLV_LEN_OFF		1
930 #define TLV_HDR_LEN		2
931 #define TLV_BODY_OFF		2
932 
933 
934 #define DOT11_MNG_SSID_ID			0
935 #define DOT11_MNG_RATES_ID			1
936 #define DOT11_MNG_FH_PARMS_ID			2
937 #define DOT11_MNG_DS_PARMS_ID			3
938 #define DOT11_MNG_CF_PARMS_ID			4
939 #define DOT11_MNG_TIM_ID			5
940 #define DOT11_MNG_IBSS_PARMS_ID			6
941 #define DOT11_MNG_COUNTRY_ID			7
942 #define DOT11_MNG_HOPPING_PARMS_ID		8
943 #define DOT11_MNG_HOPPING_TABLE_ID		9
944 #define DOT11_MNG_REQUEST_ID			10
945 #define DOT11_MNG_QBSS_LOAD_ID 			11
946 #define DOT11_MNG_EDCA_PARAM_ID			12
947 #define DOT11_MNG_CHALLENGE_ID			16
948 #define DOT11_MNG_PWR_CONSTRAINT_ID		32
949 #define DOT11_MNG_PWR_CAP_ID			33
950 #define DOT11_MNG_TPC_REQUEST_ID 		34
951 #define DOT11_MNG_TPC_REPORT_ID			35
952 #define DOT11_MNG_SUPP_CHANNELS_ID		36
953 #define DOT11_MNG_CHANNEL_SWITCH_ID		37
954 #define DOT11_MNG_MEASURE_REQUEST_ID		38
955 #define DOT11_MNG_MEASURE_REPORT_ID		39
956 #define DOT11_MNG_QUIET_ID			40
957 #define DOT11_MNG_IBSS_DFS_ID			41
958 #define DOT11_MNG_ERP_ID			42
959 #define DOT11_MNG_TS_DELAY_ID			43
960 #define	DOT11_MNG_HT_CAP			45
961 #define DOT11_MNG_QOS_CAP_ID			46
962 #define DOT11_MNG_NONERP_ID			47
963 #define DOT11_MNG_RSN_ID			48
964 #define DOT11_MNG_EXT_RATES_ID			50
965 #define	DOT11_MNG_REGCLASS_ID			59
966 #define DOT11_MNG_EXT_CSA_ID			60
967 #define	DOT11_MNG_HT_ADD			61
968 #define	DOT11_MNG_EXT_CHANNEL_OFFSET		62
969 #define	DOT11_MNG_HT_BSS_COEXINFO_ID		72
970 #define	DOT11_MNG_HT_BSS_CHANNEL_REPORT_ID	73
971 #define	DOT11_MNG_HT_OBSS_ID			74
972 #define	DOT11_MNG_EXT_CAP			127
973 #define DOT11_MNG_WPA_ID			221
974 #define DOT11_MNG_PROPR_ID			221
975 
976 
977 #define DOT11_RATE_BASIC			0x80
978 #define DOT11_RATE_MASK				0x7F
979 
980 
981 #define DOT11_MNG_ERP_LEN			1
982 #define DOT11_MNG_NONERP_PRESENT		0x01
983 #define DOT11_MNG_USE_PROTECTION		0x02
984 #define DOT11_MNG_BARKER_PREAMBLE		0x04
985 
986 #define DOT11_MGN_TS_DELAY_LEN		4
987 #define TS_DELAY_FIELD_SIZE			4
988 
989 
990 #define DOT11_CAP_ESS				0x0001
991 #define DOT11_CAP_IBSS				0x0002
992 #define DOT11_CAP_POLLABLE			0x0004
993 #define DOT11_CAP_POLL_RQ			0x0008
994 #define DOT11_CAP_PRIVACY			0x0010
995 #define DOT11_CAP_SHORT				0x0020
996 #define DOT11_CAP_PBCC				0x0040
997 #define DOT11_CAP_AGILITY			0x0080
998 #define DOT11_CAP_SPECTRUM			0x0100
999 #define DOT11_CAP_SHORTSLOT			0x0400
1000 #define DOT11_CAP_CCK_OFDM			0x2000
1001 
1002 
1003 #define DOT11_OBSS_COEX_MNG_SUPPORT	0x01
1004 
1005 
1006 #define DOT11_ACTION_HDR_LEN		2
1007 #define DOT11_ACTION_CAT_ERR_MASK	0x80
1008 #define DOT11_ACTION_CAT_MASK		0x7F
1009 #define DOT11_ACTION_CAT_SPECT_MNG	0
1010 #define DOT11_ACTION_CAT_BLOCKACK	3
1011 #define DOT11_ACTION_CAT_PUBLIC		4
1012 #define DOT11_ACTION_CAT_HT		7
1013 #define DOT11_ACTION_CAT_VS			127
1014 #define DOT11_ACTION_NOTIFICATION	0x11
1015 
1016 #define DOT11_ACTION_ID_M_REQ		0
1017 #define DOT11_ACTION_ID_M_REP		1
1018 #define DOT11_ACTION_ID_TPC_REQ		2
1019 #define DOT11_ACTION_ID_TPC_REP		3
1020 #define DOT11_ACTION_ID_CHANNEL_SWITCH	4
1021 #define DOT11_ACTION_ID_EXT_CSA		5
1022 
1023 
1024 #define DOT11_ACTION_ID_HT_CH_WIDTH	0
1025 #define DOT11_ACTION_ID_HT_MIMO_PS	1
1026 
1027 
1028 #define DOT11_ACTION_ID_BSS_COEX_MNG	0
1029 
1030 
1031 #define DOT11_BA_ACTION_ADDBA_REQ	0
1032 #define DOT11_BA_ACTION_ADDBA_RESP	1
1033 #define DOT11_BA_ACTION_DELBA		2
1034 
1035 
1036 #define DOT11_ADDBA_PARAM_AMSDU_SUP	0x0001
1037 #define DOT11_ADDBA_PARAM_POLICY_MASK	0x0002
1038 #define DOT11_ADDBA_PARAM_POLICY_SHIFT	1
1039 #define DOT11_ADDBA_PARAM_TID_MASK	0x003c
1040 #define DOT11_ADDBA_PARAM_TID_SHIFT	2
1041 #define DOT11_ADDBA_PARAM_BSIZE_MASK	0xffc0
1042 #define DOT11_ADDBA_PARAM_BSIZE_SHIFT	6
1043 
1044 #define DOT11_ADDBA_POLICY_DELAYED	0
1045 #define DOT11_ADDBA_POLICY_IMMEDIATE	1
1046 
1047 BWL_PRE_PACKED_STRUCT struct dot11_addba_req {
1048 	uint8 category;
1049 	uint8 action;
1050 	uint8 token;
1051 	uint16 addba_param_set;
1052 	uint16 timeout;
1053 	uint16 start_seqnum;
1054 } BWL_POST_PACKED_STRUCT;
1055 typedef struct dot11_addba_req dot11_addba_req_t;
1056 #define DOT11_ADDBA_REQ_LEN		9
1057 
1058 BWL_PRE_PACKED_STRUCT struct dot11_addba_resp {
1059 	uint8 category;
1060 	uint8 action;
1061 	uint8 token;
1062 	uint16 status;
1063 	uint16 addba_param_set;
1064 	uint16 timeout;
1065 } BWL_POST_PACKED_STRUCT;
1066 typedef struct dot11_addba_resp dot11_addba_resp_t;
1067 #define DOT11_ADDBA_RESP_LEN		9
1068 
1069 
1070 #define DOT11_DELBA_PARAM_INIT_MASK	0x0800
1071 #define DOT11_DELBA_PARAM_INIT_SHIFT	11
1072 #define DOT11_DELBA_PARAM_TID_MASK	0xf000
1073 #define DOT11_DELBA_PARAM_TID_SHIFT	12
1074 
1075 BWL_PRE_PACKED_STRUCT struct dot11_delba {
1076 	uint8 category;
1077 	uint8 action;
1078 	uint16 delba_param_set;
1079 	uint16 reason;
1080 } BWL_POST_PACKED_STRUCT;
1081 typedef struct dot11_delba dot11_delba_t;
1082 #define DOT11_DELBA_LEN			6
1083 
1084 
1085 #define DOT11_BSSTYPE_INFRASTRUCTURE		0
1086 #define DOT11_BSSTYPE_INDEPENDENT		1
1087 #define DOT11_BSSTYPE_ANY			2
1088 #define DOT11_SCANTYPE_ACTIVE			0
1089 #define DOT11_SCANTYPE_PASSIVE			1
1090 
1091 
1092 #define PREN_PREAMBLE		24
1093 #define PREN_MM_EXT		8
1094 #define PREN_PREAMBLE_EXT	4
1095 
1096 
1097 #define NPHY_RIFS_TIME		2
1098 
1099 
1100 #define APHY_SLOT_TIME		9
1101 #define APHY_SIFS_TIME		16
1102 #define APHY_DIFS_TIME		(APHY_SIFS_TIME + (2 * APHY_SLOT_TIME))
1103 #define APHY_PREAMBLE_TIME	16
1104 #define APHY_SIGNAL_TIME	4
1105 #define APHY_SYMBOL_TIME	4
1106 #define APHY_SERVICE_NBITS	16
1107 #define APHY_TAIL_NBITS		6
1108 #define	APHY_CWMIN		15
1109 
1110 
1111 #define BPHY_SLOT_TIME		20
1112 #define BPHY_SIFS_TIME		10
1113 #define BPHY_DIFS_TIME		50
1114 #define BPHY_PLCP_TIME		192
1115 #define BPHY_PLCP_SHORT_TIME	96
1116 #define	BPHY_CWMIN		31
1117 
1118 
1119 #define DOT11_OFDM_SIGNAL_EXTENSION	6
1120 
1121 #define PHY_CWMAX		1023
1122 
1123 #define	DOT11_MAXNUMFRAGS	16
1124 
1125 
1126 typedef struct d11cnt {
1127 	uint32		txfrag;
1128 	uint32		txmulti;
1129 	uint32		txfail;
1130 	uint32		txretry;
1131 	uint32		txretrie;
1132 	uint32		rxdup;
1133 	uint32		txrts;
1134 	uint32		txnocts;
1135 	uint32		txnoack;
1136 	uint32		rxfrag;
1137 	uint32		rxmulti;
1138 	uint32		rxcrc;
1139 	uint32		txfrmsnt;
1140 	uint32		rxundec;
1141 } d11cnt_t;
1142 
1143 
1144 #define BRCM_PROP_OUI		"\x00\x90\x4C"
1145 
1146 
1147 
1148 
1149 BWL_PRE_PACKED_STRUCT struct brcm_prop_ie_s {
1150 	uint8 id;
1151 	uint8 len;
1152 	uint8 oui[3];
1153 	uint8 type;
1154 	uint16 cap;
1155 } BWL_POST_PACKED_STRUCT;
1156 typedef struct brcm_prop_ie_s brcm_prop_ie_t;
1157 
1158 #define BRCM_PROP_IE_LEN	6
1159 
1160 #define DPT_IE_TYPE		2
1161 
1162 
1163 #define BRCM_OUI		"\x00\x10\x18"
1164 
1165 
1166 BWL_PRE_PACKED_STRUCT struct brcm_ie {
1167 	uint8	id;
1168 	uint8	len;
1169 	uint8	oui[3];
1170 	uint8	ver;
1171 	uint8	assoc;
1172 	uint8	flags;
1173 	uint8	flags1;
1174 	uint16	amsdu_mtu_pref;
1175 } BWL_POST_PACKED_STRUCT;
1176 typedef	struct brcm_ie brcm_ie_t;
1177 #define BRCM_IE_LEN		11
1178 #define BRCM_IE_VER		2
1179 #define BRCM_IE_LEGACY_AES_VER	1
1180 
1181 
1182 #ifdef WLAFTERBURNER
1183 #define	BRF_ABCAP		0x1
1184 #define	BRF_ABRQRD		0x2
1185 #define BRF_ABCOUNTER_MASK	0xf0
1186 #define BRF_ABCOUNTER_SHIFT	4
1187 #endif
1188 #define	BRF_LZWDS		0x4
1189 #define	BRF_BLOCKACK		0x8
1190 
1191 
1192 #define	BRF1_AMSDU		0x1
1193 #define BRF1_WMEPS		0x4
1194 #define BRF1_PSOFIX		0x8
1195 
1196 #ifdef WLAFTERBURNER
1197 #define AB_WDS_TIMEOUT_MAX	15
1198 #define AB_WDS_TIMEOUT_MIN	1
1199 #endif
1200 
1201 #define AB_GUARDCOUNT	10
1202 
1203 #define MCSSET_LEN	16
1204 #define MAX_MCS_NUM	(128)
1205 
1206 BWL_PRE_PACKED_STRUCT struct ht_cap_ie {
1207 	uint16	cap;
1208 	uint8	params;
1209 	uint8	supp_mcs[MCSSET_LEN];
1210 	uint16	ext_htcap;
1211 	uint32	txbf_cap;
1212 	uint8	as_cap;
1213 } BWL_POST_PACKED_STRUCT;
1214 typedef struct ht_cap_ie ht_cap_ie_t;
1215 
1216 
1217 
1218 BWL_PRE_PACKED_STRUCT struct ht_prop_cap_ie {
1219 	uint8	id;
1220 	uint8	len;
1221 	uint8	oui[3];
1222 	uint8	type;
1223 	ht_cap_ie_t cap_ie;
1224 } BWL_POST_PACKED_STRUCT;
1225 typedef struct ht_prop_cap_ie ht_prop_cap_ie_t;
1226 #define HT_PROP_IE_OVERHEAD	4
1227 #define HT_CAP_IE_LEN	26
1228 #define HT_CAP_IE_TYPE	51
1229 
1230 #define HT_CAP_LDPC_CODING	0x0001
1231 #define HT_CAP_40MHZ		0x0002
1232 #define HT_CAP_MIMO_PS_MASK	0x000C
1233 #define HT_CAP_MIMO_PS_SHIFT	0x0002
1234 #define HT_CAP_MIMO_PS_OFF	0x0003
1235 #define HT_CAP_MIMO_PS_RTS	0x0001
1236 #define HT_CAP_MIMO_PS_ON	0x0000
1237 #define HT_CAP_GF		0x0010
1238 #define HT_CAP_SHORT_GI_20	0x0020
1239 #define HT_CAP_SHORT_GI_40	0x0040
1240 #define HT_CAP_TX_STBC		0x0080
1241 #define HT_CAP_RX_STBC_MASK	0x0300
1242 #define HT_CAP_RX_STBC_SHIFT	8
1243 #define HT_CAP_DELAYED_BA	0x0400
1244 #define HT_CAP_MAX_AMSDU	0x0800
1245 #define HT_CAP_DSSS_CCK	0x1000
1246 #define HT_CAP_PSMP		0x2000
1247 #define HT_CAP_40MHZ_INTOLERANT 0x4000
1248 #define HT_CAP_LSIG_TXOP	0x8000
1249 
1250 #define HT_CAP_RX_STBC_NO		0x0
1251 #define HT_CAP_RX_STBC_ONE_STREAM	0x1
1252 #define HT_CAP_RX_STBC_TWO_STREAM	0x2
1253 #define HT_CAP_RX_STBC_THREE_STREAM	0x3
1254 
1255 #define HT_MAX_AMSDU		7935
1256 #define HT_MIN_AMSDU		3835
1257 
1258 #define HT_PARAMS_RX_FACTOR_MASK	0x03
1259 #define HT_PARAMS_DENSITY_MASK		0x1C
1260 #define HT_PARAMS_DENSITY_SHIFT	2
1261 
1262 
1263 #define AMPDU_MAX_MPDU_DENSITY	7
1264 #define AMPDU_RX_FACTOR_64K	3
1265 #define AMPDU_RX_FACTOR_BASE	8*1024
1266 #define AMPDU_DELIMITER_LEN	4
1267 
1268 #define HT_CAP_EXT_PCO			0x0001
1269 #define HT_CAP_EXT_PCO_TTIME_MASK	0x0006
1270 #define HT_CAP_EXT_PCO_TTIME_SHIFT	1
1271 #define HT_CAP_EXT_MCS_FEEDBACK_MASK	0x0300
1272 #define HT_CAP_EXT_MCS_FEEDBACK_SHIFT	8
1273 #define HT_CAP_EXT_HTC			0x0400
1274 #define HT_CAP_EXT_RD_RESP		0x0800
1275 
1276 BWL_PRE_PACKED_STRUCT struct ht_add_ie {
1277 	uint8	ctl_ch;
1278 	uint8	byte1;
1279 	uint16	opmode;
1280 	uint16	misc_bits;
1281 	uint8	basic_mcs[MCSSET_LEN];
1282 } BWL_POST_PACKED_STRUCT;
1283 typedef struct ht_add_ie ht_add_ie_t;
1284 
1285 
1286 
1287 BWL_PRE_PACKED_STRUCT struct ht_prop_add_ie {
1288 	uint8	id;
1289 	uint8	len;
1290 	uint8	oui[3];
1291 	uint8	type;
1292 	ht_add_ie_t add_ie;
1293 } BWL_POST_PACKED_STRUCT;
1294 typedef struct ht_prop_add_ie ht_prop_add_ie_t;
1295 
1296 #define HT_ADD_IE_LEN	22
1297 #define HT_ADD_IE_TYPE	52
1298 
1299 
1300 #define HT_BW_ANY		0x04
1301 #define HT_RIFS_PERMITTED     	0x08
1302 
1303 
1304 #define HT_OPMODE_MASK	        0x0003
1305 #define HT_OPMODE_SHIFT	0
1306 #define HT_OPMODE_PURE		0x0000
1307 #define HT_OPMODE_OPTIONAL	0x0001
1308 #define HT_OPMODE_HT20IN40	0x0002
1309 #define HT_OPMODE_MIXED	0x0003
1310 #define HT_OPMODE_NONGF	0x0004
1311 #define DOT11N_TXBURST		0x0008
1312 #define DOT11N_OBSS_NONHT	0x0010
1313 
1314 
1315 #define HT_BASIC_STBC_MCS	0x007f
1316 #define HT_DUAL_STBC_PROT	0x0080
1317 #define HT_SECOND_BCN		0x0100
1318 #define HT_LSIG_TXOP		0x0200
1319 #define HT_PCO_ACTIVE		0x0400
1320 #define HT_PCO_PHASE		0x0800
1321 #define HT_DUALCTS_PROTECTION	0x0080
1322 
1323 
1324 #define DOT11N_2G_TXBURST_LIMIT	6160
1325 #define DOT11N_5G_TXBURST_LIMIT	3080
1326 
1327 
1328 #define GET_HT_OPMODE(add_ie)		((ltoh16_ua(&add_ie->opmode) & HT_OPMODE_MASK) \
1329 					>> HT_OPMODE_SHIFT)
1330 #define HT_MIXEDMODE_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & HT_OPMODE_MASK) \
1331 					== HT_OPMODE_MIXED)
1332 #define HT_HT20_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & HT_OPMODE_MASK) \
1333 					== HT_OPMODE_HT20IN40)
1334 #define HT_OPTIONAL_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & HT_OPMODE_MASK) \
1335 					== HT_OPMODE_OPTIONAL)
1336 #define HT_USE_PROTECTION(add_ie)	(HT_HT20_PRESENT((add_ie)) || \
1337 					HT_MIXEDMODE_PRESENT((add_ie)))
1338 #define HT_NONGF_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & HT_OPMODE_NONGF) \
1339 					== HT_OPMODE_NONGF)
1340 #define DOT11N_TXBURST_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & DOT11N_TXBURST) \
1341 					== DOT11N_TXBURST)
1342 #define DOT11N_OBSS_NONHT_PRESENT(add_ie)	((ltoh16_ua(&add_ie->opmode) & DOT11N_OBSS_NONHT) \
1343 					== DOT11N_OBSS_NONHT)
1344 
1345 BWL_PRE_PACKED_STRUCT struct obss_params {
1346 	uint16	passive_dwell;
1347 	uint16	active_dwell;
1348 	uint16	bss_widthscan_interval;
1349 	uint16	passive_total;
1350 	uint16	active_total;
1351 	uint16	chanwidth_transition_dly;
1352 	uint16	activity_threshold;
1353 } BWL_POST_PACKED_STRUCT;
1354 typedef struct obss_params obss_params_t;
1355 
1356 BWL_PRE_PACKED_STRUCT struct dot11_obss_ie {
1357 	uint8	id;
1358 	uint8	len;
1359 	obss_params_t obss_params;
1360 } BWL_POST_PACKED_STRUCT;
1361 typedef struct dot11_obss_ie dot11_obss_ie_t;
1362 #define DOT11_OBSS_SCAN_IE_LEN	sizeof(obss_params_t)
1363 
1364 
1365 BWL_PRE_PACKED_STRUCT struct vndr_ie {
1366 	uchar id;
1367 	uchar len;
1368 	uchar oui [3];
1369 	uchar data [1];
1370 } BWL_POST_PACKED_STRUCT;
1371 typedef struct vndr_ie vndr_ie_t;
1372 
1373 #define VNDR_IE_HDR_LEN		2
1374 #define VNDR_IE_MIN_LEN		3
1375 #define VNDR_IE_MAX_LEN		256
1376 
1377 
1378 #define WPA_VERSION		1
1379 #define WPA_OUI			"\x00\x50\xF2"
1380 
1381 #define WPA2_VERSION		1
1382 #define WPA2_VERSION_LEN	2
1383 #define WPA2_OUI		"\x00\x0F\xAC"
1384 
1385 #define WPA_OUI_LEN	3
1386 
1387 
1388 #define RSN_AKM_NONE		0
1389 #define RSN_AKM_UNSPECIFIED	1
1390 #define RSN_AKM_PSK		2
1391 
1392 
1393 #define DOT11_MAX_DEFAULT_KEYS	4
1394 #define DOT11_MAX_KEY_SIZE	32
1395 #define DOT11_MAX_IV_SIZE	16
1396 #define DOT11_EXT_IV_FLAG	(1<<5)
1397 #define DOT11_WPA_KEY_RSC_LEN   8
1398 
1399 #define WEP1_KEY_SIZE		5
1400 #define WEP1_KEY_HEX_SIZE	10
1401 #define WEP128_KEY_SIZE		13
1402 #define WEP128_KEY_HEX_SIZE	26
1403 #define TKIP_MIC_SIZE		8
1404 #define TKIP_EOM_SIZE		7
1405 #define TKIP_EOM_FLAG		0x5a
1406 #define TKIP_KEY_SIZE		32
1407 #define TKIP_MIC_AUTH_TX	16
1408 #define TKIP_MIC_AUTH_RX	24
1409 #define TKIP_MIC_SUP_RX		TKIP_MIC_AUTH_TX
1410 #define TKIP_MIC_SUP_TX		TKIP_MIC_AUTH_RX
1411 #define AES_KEY_SIZE		16
1412 #define AES_MIC_SIZE		8
1413 
1414 
1415 
1416 #include <packed_section_end.h>
1417 
1418 
1419 #endif
1420