Staging: rt28x0: fix comments in *.h files
[deliverable/linux.git] / drivers / staging / rt2860 / mlme.h
CommitLineData
91980990
GKH
1/*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
7 *
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
26
27 Module Name:
28 mlme.h
29
30 Abstract:
31
32 Revision History:
33 Who When What
34 -------- ---------- ----------------------------------------------
35 John Chang 2003-08-28 Created
36 John Chang 2004-09-06 modified for RT2600
37
38*/
39#ifndef __MLME_H__
40#define __MLME_H__
41
ca97b838
BZ
42#include "rtmp_dot11.h"
43
cc277069
BZ
44/* maximum supported capability information - */
45/* ESS, IBSS, Privacy, Short Preamble, Spectrum mgmt, Short Slot */
91980990
GKH
46#define SUPPORTED_CAPABILITY_INFO 0x0533
47
48#define END_OF_ARGS -1
49#define LFSR_MASK 0x80000057
cc277069 50#define MLME_TASK_EXEC_INTV 100/*200*/ /* */
91980990 51#define LEAD_TIME 5
cc277069
BZ
52#define MLME_TASK_EXEC_MULTIPLE 10 /*5*/ /* MLME_TASK_EXEC_MULTIPLE * MLME_TASK_EXEC_INTV = 1 sec */
53#define REORDER_EXEC_INTV 100 /* 0.1 sec */
91980990 54
cc277069 55/* The definition of Radar detection duration region */
91980990
GKH
56#define CE 0
57#define FCC 1
58#define JAP 2
59#define JAP_W53 3
60#define JAP_W56 4
61#define MAX_RD_REGION 5
62
cc277069
BZ
63#define BEACON_LOST_TIME 4 * OS_HZ /* 2048 msec = 2 sec */
64
65#define DLS_TIMEOUT 1200 /* unit: msec */
66#define AUTH_TIMEOUT 300 /* unit: msec */
67#define ASSOC_TIMEOUT 300 /* unit: msec */
68#define JOIN_TIMEOUT 2000 /* unit: msec */
69#define SHORT_CHANNEL_TIME 90 /* unit: msec */
70#define MIN_CHANNEL_TIME 110 /* unit: msec, for dual band scan */
71#define MAX_CHANNEL_TIME 140 /* unit: msec, for single band scan */
72#define FAST_ACTIVE_SCAN_TIME 30 /* Active scan waiting for probe response time */
73#define CW_MIN_IN_BITS 4 /* actual CwMin = 2^CW_MIN_IN_BITS - 1 */
74#define LINK_DOWN_TIMEOUT 20000 /* unit: msec */
75#define AUTO_WAKEUP_TIMEOUT 70 /*unit: msec */
76
77#define CW_MAX_IN_BITS 10 /* actual CwMax = 2^CW_MAX_IN_BITS - 1 */
78
79/* Note: RSSI_TO_DBM_OFFSET has been changed to variable for new RF (2004-0720). */
80/* SHould not refer to this constant anymore */
81/*#define RSSI_TO_DBM_OFFSET 120 // for RT2530 RSSI-115 = dBm */
82#define RSSI_FOR_MID_TX_POWER -55 /* -55 db is considered mid-distance */
83#define RSSI_FOR_LOW_TX_POWER -45 /* -45 db is considered very short distance and */
84 /* eligible to use a lower TX power */
91980990 85#define RSSI_FOR_LOWEST_TX_POWER -30
cc277069
BZ
86/*#define MID_TX_POWER_DELTA 0 // 0 db from full TX power upon mid-distance to AP */
87#define LOW_TX_POWER_DELTA 6 /* -3 db from full TX power upon very short distance. 1 grade is 0.5 db */
88#define LOWEST_TX_POWER_DELTA 16 /* -8 db from full TX power upon shortest distance. 1 grade is 0.5 db */
91980990
GKH
89
90#define RSSI_TRIGGERED_UPON_BELOW_THRESHOLD 0
91#define RSSI_TRIGGERED_UPON_EXCCEED_THRESHOLD 1
92#define RSSI_THRESHOLD_FOR_ROAMING 25
93#define RSSI_DELTA 5
94
cc277069 95/* Channel Quality Indication */
91980990 96#define CQI_IS_GOOD(cqi) ((cqi) >= 50)
cc277069
BZ
97/*#define CQI_IS_FAIR(cqi) (((cqi) >= 20) && ((cqi) < 50)) */
98#define CQI_IS_POOR(cqi) (cqi < 50) /*(((cqi) >= 5) && ((cqi) < 20)) */
91980990
GKH
99#define CQI_IS_BAD(cqi) (cqi < 5)
100#define CQI_IS_DEAD(cqi) (cqi == 0)
101
cc277069 102/* weighting factor to calculate Channel quality, total should be 100% */
91980990
GKH
103#define RSSI_WEIGHTING 50
104#define TX_WEIGHTING 30
105#define RX_WEIGHTING 20
106
107#define BSS_NOT_FOUND 0xFFFFFFFF
108
cc277069 109#define MAX_LEN_OF_MLME_QUEUE 40 /*10 */
91980990 110
cc277069
BZ
111#define SCAN_PASSIVE 18 /* scan with no probe request, only wait beacon and probe response */
112#define SCAN_ACTIVE 19 /* scan with probe request, and wait beacon and probe response */
113#define SCAN_CISCO_PASSIVE 20 /* Single channel passive scan */
114#define SCAN_CISCO_ACTIVE 21 /* Single channel active scan */
115#define SCAN_CISCO_NOISE 22 /* Single channel passive scan for noise histogram collection */
116#define SCAN_CISCO_CHANNEL_LOAD 23 /* Single channel passive scan for channel load collection */
117#define FAST_SCAN_ACTIVE 24 /* scan with probe request, and wait beacon and probe response */
91980990 118
91980990
GKH
119#define MAC_ADDR_IS_GROUP(Addr) (((Addr[0]) & 0x01))
120#define MAC_ADDR_HASH(Addr) (Addr[0] ^ Addr[1] ^ Addr[2] ^ Addr[3] ^ Addr[4] ^ Addr[5])
121#define MAC_ADDR_HASH_INDEX(Addr) (MAC_ADDR_HASH(Addr) % HASH_TABLE_SIZE)
122#define TID_MAC_HASH(Addr,TID) (TID^Addr[0] ^ Addr[1] ^ Addr[2] ^ Addr[3] ^ Addr[4] ^ Addr[5])
123#define TID_MAC_HASH_INDEX(Addr,TID) (TID_MAC_HASH(Addr,TID) % HASH_TABLE_SIZE)
124
cc277069
BZ
125/* LED Control */
126/* assoiation ON. one LED ON. another blinking when TX, OFF when idle */
127/* no association, both LED off */
91980990
GKH
128#define ASIC_LED_ACT_ON(pAd) RTMP_IO_WRITE32(pAd, MAC_CSR14, 0x00031e46)
129#define ASIC_LED_ACT_OFF(pAd) RTMP_IO_WRITE32(pAd, MAC_CSR14, 0x00001e46)
130
cc277069 131/* bit definition of the 2-byte pBEACON->Capability field */
91980990
GKH
132#define CAP_IS_ESS_ON(x) (((x) & 0x0001) != 0)
133#define CAP_IS_IBSS_ON(x) (((x) & 0x0002) != 0)
134#define CAP_IS_CF_POLLABLE_ON(x) (((x) & 0x0004) != 0)
135#define CAP_IS_CF_POLL_REQ_ON(x) (((x) & 0x0008) != 0)
136#define CAP_IS_PRIVACY_ON(x) (((x) & 0x0010) != 0)
137#define CAP_IS_SHORT_PREAMBLE_ON(x) (((x) & 0x0020) != 0)
138#define CAP_IS_PBCC_ON(x) (((x) & 0x0040) != 0)
139#define CAP_IS_AGILITY_ON(x) (((x) & 0x0080) != 0)
cc277069
BZ
140#define CAP_IS_SPECTRUM_MGMT(x) (((x) & 0x0100) != 0) /* 802.11e d9 */
141#define CAP_IS_QOS(x) (((x) & 0x0200) != 0) /* 802.11e d9 */
91980990 142#define CAP_IS_SHORT_SLOT(x) (((x) & 0x0400) != 0)
cc277069
BZ
143#define CAP_IS_APSD(x) (((x) & 0x0800) != 0) /* 802.11e d9 */
144#define CAP_IS_IMMED_BA(x) (((x) & 0x1000) != 0) /* 802.11e d9 */
91980990 145#define CAP_IS_DSSS_OFDM(x) (((x) & 0x2000) != 0)
cc277069 146#define CAP_IS_DELAY_BA(x) (((x) & 0x4000) != 0) /* 802.11e d9 */
91980990
GKH
147
148#define CAP_GENERATE(ess,ibss,priv,s_pre,s_slot,spectrum) (((ess) ? 0x0001 : 0x0000) | ((ibss) ? 0x0002 : 0x0000) | ((priv) ? 0x0010 : 0x0000) | ((s_pre) ? 0x0020 : 0x0000) | ((s_slot) ? 0x0400 : 0x0000) | ((spectrum) ? 0x0100 : 0x0000))
149
cc277069
BZ
150#define ERP_IS_NON_ERP_PRESENT(x) (((x) & 0x01) != 0) /* 802.11g */
151#define ERP_IS_USE_PROTECTION(x) (((x) & 0x02) != 0) /* 802.11g */
152#define ERP_IS_USE_BARKER_PREAMBLE(x) (((x) & 0x04) != 0) /* 802.11g */
91980990 153
cc277069 154#define DRS_TX_QUALITY_WORST_BOUND 8 /* 3 // just test by gary */
91980990
GKH
155#define DRS_PENALTY 8
156
157#define BA_NOTUSE 2
cc277069 158/*BA Policy subfiled value in ADDBA frame */
91980990
GKH
159#define IMMED_BA 1
160#define DELAY_BA 0
161
cc277069 162/* BA Initiator subfield in DELBA frame */
91980990
GKH
163#define ORIGINATOR 1
164#define RECIPIENT 0
165
cc277069 166/* ADDBA Status Code */
91980990
GKH
167#define ADDBA_RESULTCODE_SUCCESS 0
168#define ADDBA_RESULTCODE_REFUSED 37
169#define ADDBA_RESULTCODE_INVALID_PARAMETERS 38
170
cc277069 171/* DELBA Reason Code */
91980990
GKH
172#define DELBA_REASONCODE_QSTA_LEAVING 36
173#define DELBA_REASONCODE_END_BA 37
174#define DELBA_REASONCODE_UNKNOWN_BA 38
175#define DELBA_REASONCODE_TIMEOUT 39
176
cc277069 177/* reset all OneSecTx counters */
91980990
GKH
178#define RESET_ONE_SEC_TX_CNT(__pEntry) \
179if (((__pEntry)) != NULL) \
180{ \
181 (__pEntry)->OneSecTxRetryOkCount = 0; \
182 (__pEntry)->OneSecTxFailCount = 0; \
183 (__pEntry)->OneSecTxNoRetryOkCount = 0; \
184}
185
cc277069
BZ
186/* */
187/* 802.11 frame formats */
188/* */
189/* HT Capability INFO field in HT Cap IE . */
91980990 190typedef struct PACKED {
52b81c89
BZ
191 USHORT AdvCoding:1;
192 USHORT ChannelWidth:1;
cc277069
BZ
193 USHORT MimoPs:2; /*momi power safe */
194 USHORT GF:1; /*green field */
52b81c89 195 USHORT ShortGIfor20:1;
cc277069 196 USHORT ShortGIfor40:1; /*for40MHz */
52b81c89
BZ
197 USHORT TxSTBC:1;
198 USHORT RxSTBC:2;
cc277069
BZ
199 USHORT DelayedBA:1; /*rt2860c not support */
200 USHORT AMsduSize:1; /* only support as zero */
52b81c89
BZ
201 USHORT CCKmodein40:1;
202 USHORT PSMP:1;
203 USHORT Forty_Mhz_Intolerant:1;
204 USHORT LSIGTxopProSup:1;
91980990
GKH
205} HT_CAP_INFO, *PHT_CAP_INFO;
206
cc277069 207/* HT Capability INFO field in HT Cap IE . */
91980990 208typedef struct PACKED {
52b81c89
BZ
209 UCHAR MaxRAmpduFactor:2;
210 UCHAR MpduDensity:3;
cc277069 211 UCHAR rsv:3; /*momi power safe */
91980990
GKH
212} HT_CAP_PARM, *PHT_CAP_PARM;
213
cc277069 214/* HT Capability INFO field in HT Cap IE . */
91980990 215typedef struct PACKED {
52b81c89 216 UCHAR MCSSet[10];
cc277069 217 UCHAR SupRate[2]; /* unit : 1Mbps */
52b81c89
BZ
218 UCHAR TxMCSSetDefined:1;
219 UCHAR TxRxNotEqual:1;
220 UCHAR TxStream:2;
221 UCHAR MpduDensity:1;
222 UCHAR rsv:3;
223 UCHAR rsv3[3];
91980990
GKH
224} HT_MCS_SET, *PHT_MCS_SET;
225
cc277069 226/* HT Capability INFO field in HT Cap IE . */
91980990 227typedef struct PACKED {
52b81c89
BZ
228 USHORT Pco:1;
229 USHORT TranTime:2;
cc277069
BZ
230 USHORT rsv:5; /*momi power safe */
231 USHORT MCSFeedback:2; /*0:no MCS feedback, 2:unsolicited MCS feedback, 3:Full MCS feedback, 1:rsv. */
232 USHORT PlusHTC:1; /*+HTC control field support */
233 USHORT RDGSupport:1; /*reverse Direction Grant support */
52b81c89 234 USHORT rsv2:4;
91980990
GKH
235} EXT_HT_CAP_INFO, *PEXT_HT_CAP_INFO;
236
cc277069 237/* HT Beamforming field in HT Cap IE . */
52b81c89
BZ
238typedef struct PACKED _HT_BF_CAP {
239 ULONG TxBFRecCapable:1;
240 ULONG RxSoundCapable:1;
241 ULONG TxSoundCapable:1;
242 ULONG RxNDPCapable:1;
243 ULONG TxNDPCapable:1;
244 ULONG ImpTxBFCapable:1;
245 ULONG Calibration:2;
246 ULONG ExpCSICapable:1;
247 ULONG ExpNoComSteerCapable:1;
248 ULONG ExpComSteerCapable:1;
249 ULONG ExpCSIFbk:2;
250 ULONG ExpNoComBF:2;
251 ULONG ExpComBF:2;
252 ULONG MinGrouping:2;
253 ULONG CSIBFAntSup:2;
254 ULONG NoComSteerBFAntSup:2;
255 ULONG ComSteerBFAntSup:2;
256 ULONG CSIRowBFSup:2;
257 ULONG ChanEstimation:2;
258 ULONG rsv:3;
91980990
GKH
259} HT_BF_CAP, *PHT_BF_CAP;
260
cc277069 261/* HT antenna selection field in HT Cap IE . */
52b81c89
BZ
262typedef struct PACKED _HT_AS_CAP {
263 UCHAR AntSelect:1;
264 UCHAR ExpCSIFbkTxASEL:1;
265 UCHAR AntIndFbkTxASEL:1;
266 UCHAR ExpCSIFbk:1;
267 UCHAR AntIndFbk:1;
268 UCHAR RxASel:1;
269 UCHAR TxSoundPPDU:1;
270 UCHAR rsv:1;
91980990
GKH
271} HT_AS_CAP, *PHT_AS_CAP;
272
cc277069 273/* Draft 1.0 set IE length 26, but is extensible.. */
91980990 274#define SIZE_HT_CAP_IE 26
cc277069 275/* The structure for HT Capability IE. */
52b81c89
BZ
276typedef struct PACKED _HT_CAPABILITY_IE {
277 HT_CAP_INFO HtCapInfo;
278 HT_CAP_PARM HtCapParm;
cc277069 279/* HT_MCS_SET HtMCSSet; */
52b81c89
BZ
280 UCHAR MCSSet[16];
281 EXT_HT_CAP_INFO ExtHtCapInfo;
cc277069
BZ
282 HT_BF_CAP TxBFCap; /* beamforming cap. rt2860c not support beamforming. */
283 HT_AS_CAP ASCap; /*antenna selection. */
91980990
GKH
284} HT_CAPABILITY_IE, *PHT_CAPABILITY_IE;
285
cc277069
BZ
286/* 802.11n draft3 related structure definitions. */
287/* 7.3.2.60 */
288#define dot11OBSSScanPassiveDwell 20 /* in TU. min amount of time that the STA continously scans each channel when performing an active OBSS scan. */
289#define dot11OBSSScanActiveDwell 10 /* in TU.min amount of time that the STA continously scans each channel when performing an passive OBSS scan. */
290#define dot11BSSWidthTriggerScanInterval 300 /* in sec. max interval between scan operations to be performed to detect BSS channel width trigger events. */
291#define dot11OBSSScanPassiveTotalPerChannel 200 /* in TU. min total amount of time that the STA scans each channel when performing a passive OBSS scan. */
292#define dot11OBSSScanActiveTotalPerChannel 20 /*in TU. min total amount of time that the STA scans each channel when performing a active OBSS scan */
293#define dot11BSSWidthChannelTransactionDelayFactor 5 /* min ratio between the delay time in performing a switch from 20MHz BSS to 20/40 BSS operation and the maximum */
294 /* interval between overlapping BSS scan operations. */
295#define dot11BSSScanActivityThreshold 25 /* in %%, max total time that a STA may be active on the medium during a period of */
296 /* (dot11BSSWidthChannelTransactionDelayFactor * dot11BSSWidthTriggerScanInterval) seconds without */
297 /* being obligated to perform OBSS Scan operations. default is 25(== 0.25%) */
52b81c89
BZ
298
299typedef struct PACKED _OVERLAP_BSS_SCAN_IE {
300 USHORT ScanPassiveDwell;
301 USHORT ScanActiveDwell;
cc277069
BZ
302 USHORT TriggerScanInt; /* Trigger scan interval */
303 USHORT PassiveTalPerChannel; /* passive total per channel */
304 USHORT ActiveTalPerChannel; /* active total per channel */
305 USHORT DelayFactor; /* BSS width channel transition delay factor */
306 USHORT ScanActThre; /* Scan Activity threshold */
52b81c89 307} OVERLAP_BSS_SCAN_IE, *POVERLAP_BSS_SCAN_IE;
91980990 308
cc277069 309/* 7.3.2.56. 20/40 Coexistence element used in Element ID = 72 = IE_2040_BSS_COEXIST */
52b81c89
BZ
310typedef union PACKED _BSS_2040_COEXIST_IE {
311 struct PACKED {
312 UCHAR InfoReq:1;
cc277069
BZ
313 UCHAR Intolerant40:1; /* Inter-BSS. set 1 when prohibits a receiving BSS from operating as a 20/40 Mhz BSS. */
314 UCHAR BSS20WidthReq:1; /* Intra-BSS set 1 when prohibits a receiving AP from operating its BSS as a 20/40MHz BSS. */
52b81c89
BZ
315 UCHAR rsv:5;
316 } field;
317 UCHAR word;
91980990
GKH
318} BSS_2040_COEXIST_IE, *PBSS_2040_COEXIST_IE;
319
52b81c89
BZ
320typedef struct _TRIGGER_EVENTA {
321 BOOLEAN bValid;
322 UCHAR BSSID[6];
cc277069 323 UCHAR RegClass; /* Regulatory Class */
52b81c89 324 USHORT Channel;
cc277069 325 ULONG CDCounter; /* Maintain a seperate count down counter for each Event A. */
91980990
GKH
326} TRIGGER_EVENTA, *PTRIGGER_EVENTA;
327
cc277069
BZ
328/* 20/40 trigger event table */
329/* If one Event A delete or created, or if Event B is detected or not detected, STA should send 2040BSSCoexistence to AP. */
91980990 330#define MAX_TRIGGER_EVENT 64
52b81c89
BZ
331typedef struct _TRIGGER_EVENT_TAB {
332 UCHAR EventANo;
333 TRIGGER_EVENTA EventA[MAX_TRIGGER_EVENT];
cc277069 334 ULONG EventBCountDown; /* Count down counter for Event B. */
91980990
GKH
335} TRIGGER_EVENT_TAB, *PTRIGGER_EVENT_TAB;
336
cc277069
BZ
337/* 7.3.27 20/40 Bss Coexistence Mgmt capability used in extended capabilities information IE( ID = 127 = IE_EXT_CAPABILITY). */
338/* This is the first octet and was defined in 802.11n D3.03 and 802.11yD9.0 */
52b81c89
BZ
339typedef struct PACKED _EXT_CAP_INFO_ELEMENT {
340 UCHAR BssCoexistMgmtSupport:1;
341 UCHAR rsv:1;
342 UCHAR ExtendChannelSwitch:1;
343 UCHAR rsv2:5;
344} EXT_CAP_INFO_ELEMENT, *PEXT_CAP_INFO_ELEMENT;
91980990 345
cc277069 346/* 802.11n 7.3.2.61 */
52b81c89 347typedef struct PACKED _BSS_2040_COEXIST_ELEMENT {
cc277069 348 UCHAR ElementID; /* ID = IE_2040_BSS_COEXIST = 72 */
52b81c89
BZ
349 UCHAR Len;
350 BSS_2040_COEXIST_IE BssCoexistIe;
351} BSS_2040_COEXIST_ELEMENT, *PBSS_2040_COEXIST_ELEMENT;
91980990 352
cc277069 353/*802.11n 7.3.2.59 */
52b81c89 354typedef struct PACKED _BSS_2040_INTOLERANT_CH_REPORT {
cc277069 355 UCHAR ElementID; /* ID = IE_2040_BSS_INTOLERANT_REPORT = 73 */
52b81c89
BZ
356 UCHAR Len;
357 UCHAR RegulatoryClass;
358 UCHAR ChList[0];
359} BSS_2040_INTOLERANT_CH_REPORT, *PBSS_2040_INTOLERANT_CH_REPORT;
91980990 360
cc277069 361/* The structure for channel switch annoucement IE. This is in 802.11n D3.03 */
52b81c89 362typedef struct PACKED _CHA_SWITCH_ANNOUNCE_IE {
cc277069
BZ
363 UCHAR SwitchMode; /*channel switch mode */
364 UCHAR NewChannel; /* */
365 UCHAR SwitchCount; /* */
91980990
GKH
366} CHA_SWITCH_ANNOUNCE_IE, *PCHA_SWITCH_ANNOUNCE_IE;
367
cc277069 368/* The structure for channel switch annoucement IE. This is in 802.11n D3.03 */
52b81c89 369typedef struct PACKED _SEC_CHA_OFFSET_IE {
cc277069 370 UCHAR SecondaryChannelOffset; /* 1: Secondary above, 3: Secondary below, 0: no Secondary */
91980990
GKH
371} SEC_CHA_OFFSET_IE, *PSEC_CHA_OFFSET_IE;
372
cc277069 373/* This structure is extracted from struct RT_HT_CAPABILITY */
91980990 374typedef struct {
cc277069
BZ
375 BOOLEAN bHtEnable; /* If we should use ht rate. */
376 BOOLEAN bPreNHt; /* If we should use ht rate. */
377 /*Substract from HT Capability IE */
52b81c89 378 UCHAR MCSSet[16];
91980990
GKH
379} RT_HT_PHY_INFO, *PRT_HT_PHY_INFO;
380
cc277069
BZ
381/*This structure substracts ralink supports from all 802.11n-related features. */
382/*Features not listed here but contained in 802.11n spec are not supported in rt2860. */
91980990 383typedef struct {
52b81c89 384 USHORT ChannelWidth:1;
cc277069
BZ
385 USHORT MimoPs:2; /*mimo power safe MMPS_ */
386 USHORT GF:1; /*green field */
52b81c89 387 USHORT ShortGIfor20:1;
cc277069 388 USHORT ShortGIfor40:1; /*for40MHz */
52b81c89 389 USHORT TxSTBC:1;
cc277069
BZ
390 USHORT RxSTBC:2; /* 2 bits */
391 USHORT AmsduEnable:1; /* Enable to transmit A-MSDU. Suggest disable. We should use A-MPDU to gain best benifit of 802.11n */
392 USHORT AmsduSize:1; /* Max receiving A-MSDU size */
52b81c89 393 USHORT rsv:5;
91980990 394
cc277069 395 /*Substract from Addiont HT INFO IE */
52b81c89
BZ
396 UCHAR MaxRAmpduFactor:2;
397 UCHAR MpduDensity:3;
cc277069 398 UCHAR ExtChanOffset:2; /* Please not the difference with following UCHAR NewExtChannelOffset; from 802.11n */
52b81c89 399 UCHAR RecomWidth:1;
91980990 400
52b81c89
BZ
401 USHORT OperaionMode:2;
402 USHORT NonGfPresent:1;
403 USHORT rsv3:1;
404 USHORT OBSS_NonHTExist:1;
405 USHORT rsv2:11;
91980990 406
cc277069 407 /* New Extension Channel Offset IE */
52b81c89 408 UCHAR NewExtChannelOffset;
cc277069 409 /* Extension Capability IE = 127 */
52b81c89 410 UCHAR BSSCoexist2040;
91980990
GKH
411} RT_HT_CAPABILITY, *PRT_HT_CAPABILITY;
412
cc277069 413/* field in Addtional HT Information IE . */
91980990 414typedef struct PACKED {
52b81c89
BZ
415 UCHAR ExtChanOffset:2;
416 UCHAR RecomWidth:1;
417 UCHAR RifsMode:1;
cc277069
BZ
418 UCHAR S_PSMPSup:1; /*Indicate support for scheduled PSMP */
419 UCHAR SerInterGranu:3; /*service interval granularity */
91980990
GKH
420} ADD_HTINFO, *PADD_HTINFO;
421
52b81c89
BZ
422typedef struct PACKED {
423 USHORT OperaionMode:2;
424 USHORT NonGfPresent:1;
425 USHORT rsv:1;
426 USHORT OBSS_NonHTExist:1;
427 USHORT rsv2:11;
91980990
GKH
428} ADD_HTINFO2, *PADD_HTINFO2;
429
cc277069 430/* TODO: Need sync with spec about the definition of StbcMcs. In Draft 3.03, it's reserved. */
52b81c89
BZ
431typedef struct PACKED {
432 USHORT StbcMcs:6;
433 USHORT DualBeacon:1;
434 USHORT DualCTSProtect:1;
435 USHORT STBCBeacon:1;
cc277069 436 USHORT LsigTxopProt:1; /* L-SIG TXOP protection full support */
52b81c89
BZ
437 USHORT PcoActive:1;
438 USHORT PcoPhase:1;
439 USHORT rsv:4;
91980990
GKH
440} ADD_HTINFO3, *PADD_HTINFO3;
441
442#define SIZE_ADD_HT_INFO_IE 22
52b81c89
BZ
443typedef struct PACKED {
444 UCHAR ControlChan;
445 ADD_HTINFO AddHtInfo;
446 ADD_HTINFO2 AddHtInfo2;
447 ADD_HTINFO3 AddHtInfo3;
cc277069 448 UCHAR MCSSet[16]; /* Basic MCS set */
91980990
GKH
449} ADD_HT_INFO_IE, *PADD_HT_INFO_IE;
450
52b81c89
BZ
451typedef struct PACKED {
452 UCHAR NewExtChanOffset;
91980990
GKH
453} NEW_EXT_CHAN_IE, *PNEW_EXT_CHAN_IE;
454
91980990 455typedef struct PACKED _FRAME_802_11 {
52b81c89
BZ
456 HEADER_802_11 Hdr;
457 UCHAR Octet[1];
458} FRAME_802_11, *PFRAME_802_11;
91980990 459
cc277069 460/* QoSNull embedding of management action. When HT Control MA field set to 1. */
91980990 461typedef struct PACKED _MA_BODY {
52b81c89
BZ
462 UCHAR Category;
463 UCHAR Action;
464 UCHAR Octet[1];
465} MA_BODY, *PMA_BODY;
466
467typedef struct PACKED _HEADER_802_3 {
468 UCHAR DAAddr1[MAC_ADDR_LEN];
469 UCHAR SAAddr2[MAC_ADDR_LEN];
470 UCHAR Octet[2];
471} HEADER_802_3, *PHEADER_802_3;
cc277069
BZ
472/*//Block ACK related format */
473/* 2-byte BA Parameter field in DELBA frames to terminate an already set up bA */
52b81c89 474typedef struct PACKED {
cc277069
BZ
475 USHORT Rsv:11; /* always set to 0 */
476 USHORT Initiator:1; /* 1: originator 0:recipient */
477 USHORT TID:4; /* value of TC os TS */
91980990
GKH
478} DELBA_PARM, *PDELBA_PARM;
479
cc277069 480/* 2-byte BA Parameter Set field in ADDBA frames to signal parm for setting up a BA */
91980990 481typedef struct PACKED {
cc277069
BZ
482 USHORT AMSDUSupported:1; /* 0: not permitted 1: permitted */
483 USHORT BAPolicy:1; /* 1: immediately BA 0:delayed BA */
484 USHORT TID:4; /* value of TC os TS */
485 USHORT BufSize:10; /* number of buffe of size 2304 octetsr */
91980990
GKH
486} BA_PARM, *PBA_PARM;
487
cc277069 488/* 2-byte BA Starting Seq CONTROL field */
91980990 489typedef union PACKED {
52b81c89 490 struct PACKED {
cc277069
BZ
491 USHORT FragNum:4; /* always set to 0 */
492 USHORT StartSeq:12; /* sequence number of the 1st MSDU for which this BAR is sent */
52b81c89
BZ
493 } field;
494 USHORT word;
91980990
GKH
495} BASEQ_CONTROL, *PBASEQ_CONTROL;
496
cc277069
BZ
497/*BAControl and BARControl are the same */
498/* 2-byte BA CONTROL field in BA frame */
91980990 499typedef struct PACKED {
cc277069
BZ
500 USHORT ACKPolicy:1; /* only related to N-Delayed BA. But not support in RT2860b. 0:NormalACK 1:No ACK */
501 USHORT MTID:1; /*EWC V1.24 */
52b81c89
BZ
502 USHORT Compressed:1;
503 USHORT Rsv:9;
504 USHORT TID:4;
91980990
GKH
505} BA_CONTROL, *PBA_CONTROL;
506
cc277069 507/* 2-byte BAR CONTROL field in BAR frame */
91980990 508typedef struct PACKED {
cc277069
BZ
509 USHORT ACKPolicy:1; /* 0:normal ack, 1:no ack. */
510 USHORT MTID:1; /*if this bit1, use FRAME_MTBA_REQ, if 0, use FRAME_BA_REQ */
52b81c89
BZ
511 USHORT Compressed:1;
512 USHORT Rsv1:9;
513 USHORT TID:4;
91980990
GKH
514} BAR_CONTROL, *PBAR_CONTROL;
515
cc277069 516/* BARControl in MTBAR frame */
91980990 517typedef struct PACKED {
52b81c89
BZ
518 USHORT ACKPolicy:1;
519 USHORT MTID:1;
520 USHORT Compressed:1;
521 USHORT Rsv1:9;
522 USHORT NumTID:4;
91980990
GKH
523} MTBAR_CONTROL, *PMTBAR_CONTROL;
524
525typedef struct PACKED {
52b81c89
BZ
526 USHORT Rsv1:12;
527 USHORT TID:4;
91980990
GKH
528} PER_TID_INFO, *PPER_TID_INFO;
529
530typedef struct {
52b81c89
BZ
531 PER_TID_INFO PerTID;
532 BASEQ_CONTROL BAStartingSeq;
91980990
GKH
533} EACH_TID, *PEACH_TID;
534
cc277069 535/* BAREQ AND MTBAREQ have the same subtype BAR, 802.11n BAR use compressed bitmap. */
91980990 536typedef struct PACKED _FRAME_BA_REQ {
52b81c89
BZ
537 FRAME_CONTROL FC;
538 USHORT Duration;
539 UCHAR Addr1[MAC_ADDR_LEN];
540 UCHAR Addr2[MAC_ADDR_LEN];
541 BAR_CONTROL BARControl;
542 BASEQ_CONTROL BAStartingSeq;
543} FRAME_BA_REQ, *PFRAME_BA_REQ;
91980990
GKH
544
545typedef struct PACKED _FRAME_MTBA_REQ {
52b81c89
BZ
546 FRAME_CONTROL FC;
547 USHORT Duration;
548 UCHAR Addr1[MAC_ADDR_LEN];
549 UCHAR Addr2[MAC_ADDR_LEN];
550 MTBAR_CONTROL MTBARControl;
551 PER_TID_INFO PerTIDInfo;
552 BASEQ_CONTROL BAStartingSeq;
553} FRAME_MTBA_REQ, *PFRAME_MTBA_REQ;
91980990 554
cc277069 555/* Compressed format is mandantory in HT STA */
91980990 556typedef struct PACKED _FRAME_MTBA {
52b81c89
BZ
557 FRAME_CONTROL FC;
558 USHORT Duration;
559 UCHAR Addr1[MAC_ADDR_LEN];
560 UCHAR Addr2[MAC_ADDR_LEN];
561 BA_CONTROL BAControl;
562 BASEQ_CONTROL BAStartingSeq;
563 UCHAR BitMap[8];
564} FRAME_MTBA, *PFRAME_MTBA;
91980990
GKH
565
566typedef struct PACKED _FRAME_PSMP_ACTION {
52b81c89
BZ
567 HEADER_802_11 Hdr;
568 UCHAR Category;
569 UCHAR Action;
cc277069 570 UCHAR Psmp; /* 7.3.1.25 */
52b81c89 571} FRAME_PSMP_ACTION, *PFRAME_PSMP_ACTION;
91980990
GKH
572
573typedef struct PACKED _FRAME_ACTION_HDR {
52b81c89
BZ
574 HEADER_802_11 Hdr;
575 UCHAR Category;
576 UCHAR Action;
577} FRAME_ACTION_HDR, *PFRAME_ACTION_HDR;
91980990 578
cc277069
BZ
579/*Action Frame */
580/*Action Frame Category:Spectrum, Action:Channel Switch. 7.3.2.20 */
91980990 581typedef struct PACKED _CHAN_SWITCH_ANNOUNCE {
cc277069 582 UCHAR ElementID; /* ID = IE_CHANNEL_SWITCH_ANNOUNCEMENT = 37 */
52b81c89
BZ
583 UCHAR Len;
584 CHA_SWITCH_ANNOUNCE_IE CSAnnounceIe;
585} CHAN_SWITCH_ANNOUNCE, *PCHAN_SWITCH_ANNOUNCE;
91980990 586
cc277069 587/*802.11n : 7.3.2.20a */
91980990 588typedef struct PACKED _SECOND_CHAN_OFFSET {
cc277069 589 UCHAR ElementID; /* ID = IE_SECONDARY_CH_OFFSET = 62 */
52b81c89
BZ
590 UCHAR Len;
591 SEC_CHA_OFFSET_IE SecChOffsetIe;
592} SECOND_CHAN_OFFSET, *PSECOND_CHAN_OFFSET;
91980990
GKH
593
594typedef struct PACKED _FRAME_SPETRUM_CS {
52b81c89
BZ
595 HEADER_802_11 Hdr;
596 UCHAR Category;
597 UCHAR Action;
598 CHAN_SWITCH_ANNOUNCE CSAnnounce;
599 SECOND_CHAN_OFFSET SecondChannel;
600} FRAME_SPETRUM_CS, *PFRAME_SPETRUM_CS;
91980990
GKH
601
602typedef struct PACKED _FRAME_ADDBA_REQ {
52b81c89
BZ
603 HEADER_802_11 Hdr;
604 UCHAR Category;
605 UCHAR Action;
cc277069
BZ
606 UCHAR Token; /* 1 */
607 BA_PARM BaParm; /* 2 - 10 */
608 USHORT TimeOutValue; /* 0 - 0 */
609 BASEQ_CONTROL BaStartSeq; /* 0-0 */
52b81c89 610} FRAME_ADDBA_REQ, *PFRAME_ADDBA_REQ;
91980990
GKH
611
612typedef struct PACKED _FRAME_ADDBA_RSP {
52b81c89
BZ
613 HEADER_802_11 Hdr;
614 UCHAR Category;
615 UCHAR Action;
616 UCHAR Token;
617 USHORT StatusCode;
cc277069 618 BA_PARM BaParm; /*0 - 2 */
52b81c89
BZ
619 USHORT TimeOutValue;
620} FRAME_ADDBA_RSP, *PFRAME_ADDBA_RSP;
91980990
GKH
621
622typedef struct PACKED _FRAME_DELBA_REQ {
52b81c89
BZ
623 HEADER_802_11 Hdr;
624 UCHAR Category;
625 UCHAR Action;
626 DELBA_PARM DelbaParm;
627 USHORT ReasonCode;
628} FRAME_DELBA_REQ, *PFRAME_DELBA_REQ;
91980990 629
cc277069 630/*7.2.1.7 */
91980990 631typedef struct PACKED _FRAME_BAR {
52b81c89
BZ
632 FRAME_CONTROL FC;
633 USHORT Duration;
634 UCHAR Addr1[MAC_ADDR_LEN];
635 UCHAR Addr2[MAC_ADDR_LEN];
636 BAR_CONTROL BarControl;
637 BASEQ_CONTROL StartingSeq;
638} FRAME_BAR, *PFRAME_BAR;
91980990 639
cc277069 640/*7.2.1.7 */
91980990 641typedef struct PACKED _FRAME_BA {
52b81c89
BZ
642 FRAME_CONTROL FC;
643 USHORT Duration;
644 UCHAR Addr1[MAC_ADDR_LEN];
645 UCHAR Addr2[MAC_ADDR_LEN];
646 BAR_CONTROL BarControl;
647 BASEQ_CONTROL StartingSeq;
648 UCHAR bitmask[8];
649} FRAME_BA, *PFRAME_BA;
91980990 650
cc277069 651/* Radio Measuement Request Frame Format */
91980990 652typedef struct PACKED _FRAME_RM_REQ_ACTION {
52b81c89
BZ
653 HEADER_802_11 Hdr;
654 UCHAR Category;
655 UCHAR Action;
656 UCHAR Token;
657 USHORT Repetition;
658 UCHAR data[0];
659} FRAME_RM_REQ_ACTION, *PFRAME_RM_REQ_ACTION;
91980990
GKH
660
661typedef struct PACKED {
52b81c89
BZ
662 UCHAR ID;
663 UCHAR Length;
664 UCHAR ChannelSwitchMode;
665 UCHAR NewRegClass;
666 UCHAR NewChannelNum;
667 UCHAR ChannelSwitchCount;
668} HT_EXT_CHANNEL_SWITCH_ANNOUNCEMENT_IE,
669 *PHT_EXT_CHANNEL_SWITCH_ANNOUNCEMENT_IE;
91980990 670
cc277069
BZ
671/* */
672/* _Limit must be the 2**n - 1 */
673/* _SEQ1 , _SEQ2 must be within 0 ~ _Limit */
674/* */
91980990
GKH
675#define SEQ_STEPONE(_SEQ1, _SEQ2, _Limit) ((_SEQ1 == ((_SEQ2+1) & _Limit)))
676#define SEQ_SMALLER(_SEQ1, _SEQ2, _Limit) (((_SEQ1-_SEQ2) & ((_Limit+1)>>1)))
677#define SEQ_LARGER(_SEQ1, _SEQ2, _Limit) ((_SEQ1 != _SEQ2) && !(((_SEQ1-_SEQ2) & ((_Limit+1)>>1))))
678#define SEQ_WITHIN_WIN(_SEQ1, _SEQ2, _WIN, _Limit) (SEQ_LARGER(_SEQ1, _SEQ2, _Limit) && \
679 SEQ_SMALLER(_SEQ1, ((_SEQ2+_WIN+1)&_Limit), _Limit))
680
cc277069
BZ
681/* */
682/* Contention-free parameter (without ID and Length) */
683/* */
91980990 684typedef struct PACKED {
cc277069 685 BOOLEAN bValid; /* 1: variable contains valid value */
52b81c89
BZ
686 UCHAR CfpCount;
687 UCHAR CfpPeriod;
688 USHORT CfpMaxDuration;
689 USHORT CfpDurRemaining;
91980990
GKH
690} CF_PARM, *PCF_PARM;
691
52b81c89 692typedef struct _CIPHER_SUITE {
cc277069
BZ
693 NDIS_802_11_ENCRYPTION_STATUS PairCipher; /* Unicast cipher 1, this one has more secured cipher suite */
694 NDIS_802_11_ENCRYPTION_STATUS PairCipherAux; /* Unicast cipher 2 if AP announce two unicast cipher suite */
695 NDIS_802_11_ENCRYPTION_STATUS GroupCipher; /* Group cipher */
696 USHORT RsnCapability; /* RSN capability from beacon */
697 BOOLEAN bMixMode; /* Indicate Pair & Group cipher might be different */
52b81c89 698} CIPHER_SUITE, *PCIPHER_SUITE;
91980990 699
cc277069 700/* EDCA configuration from AP's BEACON/ProbeRsp */
91980990 701typedef struct {
cc277069
BZ
702 BOOLEAN bValid; /* 1: variable contains valid value */
703 BOOLEAN bAdd; /* 1: variable contains valid value */
52b81c89
BZ
704 BOOLEAN bQAck;
705 BOOLEAN bQueueRequest;
706 BOOLEAN bTxopRequest;
707 BOOLEAN bAPSDCapable;
cc277069 708/* BOOLEAN bMoreDataAck; */
52b81c89 709 UCHAR EdcaUpdateCount;
cc277069 710 UCHAR Aifsn[4]; /* 0:AC_BK, 1:AC_BE, 2:AC_VI, 3:AC_VO */
52b81c89
BZ
711 UCHAR Cwmin[4];
712 UCHAR Cwmax[4];
cc277069
BZ
713 USHORT Txop[4]; /* in unit of 32-us */
714 BOOLEAN bACM[4]; /* 1: Admission Control of AC_BK is mandattory */
91980990
GKH
715} EDCA_PARM, *PEDCA_PARM;
716
cc277069 717/* QBSS LOAD information from QAP's BEACON/ProbeRsp */
91980990 718typedef struct {
cc277069 719 BOOLEAN bValid; /* 1: variable contains valid value */
52b81c89
BZ
720 USHORT StaNum;
721 UCHAR ChannelUtilization;
cc277069 722 USHORT RemainingAdmissionControl; /* in unit of 32-us */
91980990
GKH
723} QBSS_LOAD_PARM, *PQBSS_LOAD_PARM;
724
cc277069 725/* QBSS Info field in QSTA's assoc req */
91980990 726typedef struct PACKED {
52b81c89
BZ
727 UCHAR UAPSD_AC_VO:1;
728 UCHAR UAPSD_AC_VI:1;
729 UCHAR UAPSD_AC_BK:1;
730 UCHAR UAPSD_AC_BE:1;
731 UCHAR Rsv1:1;
732 UCHAR MaxSPLength:2;
733 UCHAR Rsv2:1;
91980990
GKH
734} QBSS_STA_INFO_PARM, *PQBSS_STA_INFO_PARM;
735
cc277069 736/* QBSS Info field in QAP's Beacon/ProbeRsp */
91980990 737typedef struct PACKED {
52b81c89
BZ
738 UCHAR ParamSetCount:4;
739 UCHAR Rsv:3;
740 UCHAR UAPSD:1;
91980990
GKH
741} QBSS_AP_INFO_PARM, *PQBSS_AP_INFO_PARM;
742
cc277069
BZ
743/* QOS Capability reported in QAP's BEACON/ProbeRsp */
744/* QOS Capability sent out in QSTA's AssociateReq/ReAssociateReq */
91980990 745typedef struct {
cc277069 746 BOOLEAN bValid; /* 1: variable contains valid value */
52b81c89
BZ
747 BOOLEAN bQAck;
748 BOOLEAN bQueueRequest;
749 BOOLEAN bTxopRequest;
cc277069 750/* BOOLEAN bMoreDataAck; */
52b81c89 751 UCHAR EdcaUpdateCount;
91980990
GKH
752} QOS_CAPABILITY_PARM, *PQOS_CAPABILITY_PARM;
753
91980990 754typedef struct {
52b81c89
BZ
755 UCHAR IELen;
756 UCHAR IE[MAX_CUSTOM_LEN];
91980990 757} WPA_IE_;
91980990
GKH
758
759typedef struct {
52b81c89
BZ
760 UCHAR Bssid[MAC_ADDR_LEN];
761 UCHAR Channel;
cc277069 762 UCHAR CentralChannel; /*Store the wide-band central channel for 40MHz. .used in 40MHz AP. Or this is the same as Channel. */
52b81c89
BZ
763 UCHAR BssType;
764 USHORT AtimWin;
765 USHORT BeaconPeriod;
766
767 UCHAR SupRate[MAX_LEN_OF_SUPPORTED_RATES];
768 UCHAR SupRateLen;
769 UCHAR ExtRate[MAX_LEN_OF_SUPPORTED_RATES];
770 UCHAR ExtRateLen;
91980990 771 HT_CAPABILITY_IE HtCapability;
52b81c89 772 UCHAR HtCapabilityLen;
cc277069 773 ADD_HT_INFO_IE AddHtInfo; /* AP might use this additional ht info IE */
52b81c89
BZ
774 UCHAR AddHtInfoLen;
775 UCHAR NewExtChanOffset;
776 CHAR Rssi;
cc277069 777 UCHAR Privacy; /* Indicate security function ON/OFF. Don't mess up with auth mode. */
52b81c89 778 UCHAR Hidden;
91980990 779
52b81c89
BZ
780 USHORT DtimPeriod;
781 USHORT CapabilityInfo;
91980990 782
52b81c89
BZ
783 USHORT CfpCount;
784 USHORT CfpPeriod;
785 USHORT CfpMaxDuration;
786 USHORT CfpDurRemaining;
787 UCHAR SsidLen;
788 CHAR Ssid[MAX_LEN_OF_SSID];
91980990 789
cc277069 790 ULONG LastBeaconRxTime; /* OS's timestamp */
91980990 791
52b81c89 792 BOOLEAN bSES;
91980990 793
cc277069
BZ
794 /* New for WPA2 */
795 CIPHER_SUITE WPA; /* AP announced WPA cipher suite */
796 CIPHER_SUITE WPA2; /* AP announced WPA2 cipher suite */
91980990 797
cc277069 798 /* New for microsoft WPA support */
52b81c89 799 NDIS_802_11_FIXED_IEs FixIEs;
cc277069 800 NDIS_802_11_AUTHENTICATION_MODE AuthModeAux; /* Addition mode for WPA2 / WPA capable AP */
52b81c89 801 NDIS_802_11_AUTHENTICATION_MODE AuthMode;
cc277069
BZ
802 NDIS_802_11_WEP_STATUS WepStatus; /* Unicast Encryption Algorithm extract from VAR_IE */
803 USHORT VarIELen; /* Length of next VIE include EID & Length */
52b81c89 804 UCHAR VarIEs[MAX_VIE_LEN];
91980990 805
cc277069 806 /* CCX Ckip information */
52b81c89 807 UCHAR CkipFlag;
91980990 808
cc277069
BZ
809 /* CCX 2 TSF */
810 UCHAR PTSF[4]; /* Parent TSF */
811 UCHAR TTSF[8]; /* Target TSF */
91980990 812
cc277069 813 /* 802.11e d9, and WMM */
52b81c89 814 EDCA_PARM EdcaParm;
91980990 815 QOS_CAPABILITY_PARM QosCapability;
52b81c89
BZ
816 QBSS_LOAD_PARM QbssLoad;
817 WPA_IE_ WpaIE;
818 WPA_IE_ RsnIE;
91980990
GKH
819} BSS_ENTRY, *PBSS_ENTRY;
820
821typedef struct {
52b81c89
BZ
822 UCHAR BssNr;
823 UCHAR BssOverlapNr;
824 BSS_ENTRY BssEntry[MAX_LEN_OF_BSS_TABLE];
91980990
GKH
825} BSS_TABLE, *PBSS_TABLE;
826
91980990 827typedef struct _MLME_QUEUE_ELEM {
52b81c89
BZ
828 ULONG Machine;
829 ULONG MsgType;
830 ULONG MsgLen;
831 UCHAR Msg[MGMT_DMA_BUFFER_SIZE];
832 LARGE_INTEGER TimeStamp;
833 UCHAR Rssi0;
834 UCHAR Rssi1;
835 UCHAR Rssi2;
836 UCHAR Signal;
837 UCHAR Channel;
838 UCHAR Wcid;
839 BOOLEAN Occupied;
91980990
GKH
840} MLME_QUEUE_ELEM, *PMLME_QUEUE_ELEM;
841
842typedef struct _MLME_QUEUE {
52b81c89
BZ
843 ULONG Num;
844 ULONG Head;
845 ULONG Tail;
846 NDIS_SPIN_LOCK Lock;
847 MLME_QUEUE_ELEM Entry[MAX_LEN_OF_MLME_QUEUE];
91980990
GKH
848} MLME_QUEUE, *PMLME_QUEUE;
849
52b81c89 850typedef VOID(*STATE_MACHINE_FUNC) (VOID * Adaptor, MLME_QUEUE_ELEM * Elem);
91980990
GKH
851
852typedef struct _STATE_MACHINE {
52b81c89
BZ
853 ULONG Base;
854 ULONG NrState;
855 ULONG NrMsg;
856 ULONG CurrState;
857 STATE_MACHINE_FUNC *TransFunc;
91980990
GKH
858} STATE_MACHINE, *PSTATE_MACHINE;
859
cc277069
BZ
860/* MLME AUX data structure that hold temporarliy settings during a connection attempt. */
861/* Once this attemp succeeds, all settings will be copy to pAd->StaActive. */
862/* A connection attempt (user set OID, roaming, CCX fast roaming,..) consists of */
863/* several steps (JOIN, AUTH, ASSOC or REASSOC) and may fail at any step. We purposely */
864/* separate this under-trial settings away from pAd->StaActive so that once */
865/* this new attempt failed, driver can auto-recover back to the active settings. */
91980990 866typedef struct _MLME_AUX {
52b81c89
BZ
867 UCHAR BssType;
868 UCHAR Ssid[MAX_LEN_OF_SSID];
869 UCHAR SsidLen;
870 UCHAR Bssid[MAC_ADDR_LEN];
871 UCHAR AutoReconnectSsid[MAX_LEN_OF_SSID];
872 UCHAR AutoReconnectSsidLen;
873 USHORT Alg;
874 UCHAR ScanType;
875 UCHAR Channel;
876 UCHAR CentralChannel;
877 USHORT Aid;
878 USHORT CapabilityInfo;
879 USHORT BeaconPeriod;
880 USHORT CfpMaxDuration;
881 USHORT CfpPeriod;
882 USHORT AtimWin;
91980990 883
cc277069
BZ
884 /* Copy supported rate from desired AP's beacon. We are trying to match */
885 /* AP's supported and extended rate settings. */
52b81c89
BZ
886 UCHAR SupRate[MAX_LEN_OF_SUPPORTED_RATES];
887 UCHAR ExtRate[MAX_LEN_OF_SUPPORTED_RATES];
888 UCHAR SupRateLen;
889 UCHAR ExtRateLen;
890 HT_CAPABILITY_IE HtCapability;
891 UCHAR HtCapabilityLen;
cc277069 892 ADD_HT_INFO_IE AddHtInfo; /* AP might use this additional ht info IE */
52b81c89 893 UCHAR NewExtChannelOffset;
cc277069 894 /*RT_HT_CAPABILITY SupportedHtPhy; */
52b81c89 895
cc277069
BZ
896 /* new for QOS */
897 QOS_CAPABILITY_PARM APQosCapability; /* QOS capability of the current associated AP */
898 EDCA_PARM APEdcaParm; /* EDCA parameters of the current associated AP */
899 QBSS_LOAD_PARM APQbssLoad; /* QBSS load of the current associated AP */
52b81c89 900
cc277069 901 /* new to keep Ralink specific feature */
52b81c89
BZ
902 ULONG APRalinkIe;
903
cc277069
BZ
904 BSS_TABLE SsidBssTab; /* AP list for the same SSID */
905 BSS_TABLE RoamTab; /* AP list eligible for roaming */
52b81c89
BZ
906 ULONG BssIdx;
907 ULONG RoamIdx;
908
909 BOOLEAN CurrReqIsFromNdis;
910
911 RALINK_TIMER_STRUCT BeaconTimer, ScanTimer;
912 RALINK_TIMER_STRUCT AuthTimer;
913 RALINK_TIMER_STRUCT AssocTimer, ReassocTimer, DisassocTimer;
91980990
GKH
914} MLME_AUX, *PMLME_AUX;
915
52b81c89 916typedef struct _MLME_ADDBA_REQ_STRUCT {
cc277069 917 UCHAR Wcid; /* */
52b81c89
BZ
918 UCHAR pAddr[MAC_ADDR_LEN];
919 UCHAR BaBufSize;
920 USHORT TimeOutValue;
921 UCHAR TID;
922 UCHAR Token;
923 USHORT BaStartSeq;
91980990
GKH
924} MLME_ADDBA_REQ_STRUCT, *PMLME_ADDBA_REQ_STRUCT;
925
52b81c89 926typedef struct _MLME_DELBA_REQ_STRUCT {
cc277069 927 UCHAR Wcid; /* */
52b81c89
BZ
928 UCHAR Addr[MAC_ADDR_LEN];
929 UCHAR TID;
930 UCHAR Initiator;
91980990
GKH
931} MLME_DELBA_REQ_STRUCT, *PMLME_DELBA_REQ_STRUCT;
932
cc277069 933/* assoc struct is equal to reassoc */
52b81c89
BZ
934typedef struct _MLME_ASSOC_REQ_STRUCT {
935 UCHAR Addr[MAC_ADDR_LEN];
936 USHORT CapabilityInfo;
937 USHORT ListenIntv;
938 ULONG Timeout;
939} MLME_ASSOC_REQ_STRUCT, *PMLME_ASSOC_REQ_STRUCT, MLME_REASSOC_REQ_STRUCT,
940 *PMLME_REASSOC_REQ_STRUCT;
941
942typedef struct _MLME_DISASSOC_REQ_STRUCT {
943 UCHAR Addr[MAC_ADDR_LEN];
944 USHORT Reason;
91980990
GKH
945} MLME_DISASSOC_REQ_STRUCT, *PMLME_DISASSOC_REQ_STRUCT;
946
947typedef struct _MLME_AUTH_REQ_STRUCT {
52b81c89
BZ
948 UCHAR Addr[MAC_ADDR_LEN];
949 USHORT Alg;
950 ULONG Timeout;
91980990
GKH
951} MLME_AUTH_REQ_STRUCT, *PMLME_AUTH_REQ_STRUCT;
952
953typedef struct _MLME_DEAUTH_REQ_STRUCT {
52b81c89
BZ
954 UCHAR Addr[MAC_ADDR_LEN];
955 USHORT Reason;
91980990
GKH
956} MLME_DEAUTH_REQ_STRUCT, *PMLME_DEAUTH_REQ_STRUCT;
957
958typedef struct {
52b81c89 959 ULONG BssIdx;
91980990
GKH
960} MLME_JOIN_REQ_STRUCT;
961
962typedef struct _MLME_SCAN_REQ_STRUCT {
52b81c89
BZ
963 UCHAR Bssid[MAC_ADDR_LEN];
964 UCHAR BssType;
965 UCHAR ScanType;
966 UCHAR SsidLen;
967 CHAR Ssid[MAX_LEN_OF_SSID];
91980990
GKH
968} MLME_SCAN_REQ_STRUCT, *PMLME_SCAN_REQ_STRUCT;
969
970typedef struct _MLME_START_REQ_STRUCT {
52b81c89
BZ
971 CHAR Ssid[MAX_LEN_OF_SSID];
972 UCHAR SsidLen;
91980990
GKH
973} MLME_START_REQ_STRUCT, *PMLME_START_REQ_STRUCT;
974
91980990 975typedef struct PACKED {
52b81c89
BZ
976 UCHAR Eid;
977 UCHAR Len;
978 UCHAR Octet[1];
979} EID_STRUCT, *PEID_STRUCT, BEACON_EID_STRUCT, *PBEACON_EID_STRUCT;
980
981typedef struct PACKED _RTMP_TX_RATE_SWITCH {
982 UCHAR ItemNo;
983 UCHAR STBC:1;
984 UCHAR ShortGI:1;
985 UCHAR BW:1;
986 UCHAR Rsv1:1;
987 UCHAR Mode:2;
988 UCHAR Rsv2:2;
989 UCHAR CurrMCS;
990 UCHAR TrainUp;
991 UCHAR TrainDown;
91980990
GKH
992} RRTMP_TX_RATE_SWITCH, *PRTMP_TX_RATE_SWITCH;
993
cc277069
BZ
994/* ========================== AP mlme.h =============================== */
995#define TBTT_PRELOAD_TIME 384 /* usec. LomgPreamble + 24-byte at 1Mbps */
91980990
GKH
996#define DEFAULT_DTIM_PERIOD 1
997
cc277069
BZ
998#define MAC_TABLE_AGEOUT_TIME 300 /* unit: sec */
999#define MAC_TABLE_ASSOC_TIMEOUT 5 /* unit: sec */
91980990
GKH
1000#define MAC_TABLE_FULL(Tab) ((Tab).size == MAX_LEN_OF_MAC_TABLE)
1001
cc277069
BZ
1002/* AP shall drop the sta if contine Tx fail count reach it. */
1003#define MAC_ENTRY_LIFE_CHECK_CNT 20 /* packet cnt. */
91980990 1004
cc277069 1005/* Value domain of pMacEntry->Sst */
91980990 1006typedef enum _Sst {
cc277069
BZ
1007 SST_NOT_AUTH, /* 0: equivalent to IEEE 802.11/1999 state 1 */
1008 SST_AUTH, /* 1: equivalent to IEEE 802.11/1999 state 2 */
1009 SST_ASSOC /* 2: equivalent to IEEE 802.11/1999 state 3 */
91980990
GKH
1010} SST;
1011
cc277069 1012/* value domain of pMacEntry->AuthState */
91980990 1013typedef enum _AuthState {
52b81c89 1014 AS_NOT_AUTH,
cc277069
BZ
1015 AS_AUTH_OPEN, /* STA has been authenticated using OPEN SYSTEM */
1016 AS_AUTH_KEY, /* STA has been authenticated using SHARED KEY */
1017 AS_AUTHENTICATING /* STA is waiting for AUTH seq#3 using SHARED KEY */
91980990
GKH
1018} AUTH_STATE;
1019
cc277069 1020/*for-wpa value domain of pMacEntry->WpaState 802.1i D3 p.114 */
91980990 1021typedef enum _ApWpaState {
cc277069
BZ
1022 AS_NOTUSE, /* 0 */
1023 AS_DISCONNECT, /* 1 */
1024 AS_DISCONNECTED, /* 2 */
1025 AS_INITIALIZE, /* 3 */
1026 AS_AUTHENTICATION, /* 4 */
1027 AS_AUTHENTICATION2, /* 5 */
1028 AS_INITPMK, /* 6 */
1029 AS_INITPSK, /* 7 */
1030 AS_PTKSTART, /* 8 */
1031 AS_PTKINIT_NEGOTIATING, /* 9 */
1032 AS_PTKINITDONE, /* 10 */
1033 AS_UPDATEKEYS, /* 11 */
1034 AS_INTEGRITY_FAILURE, /* 12 */
1035 AS_KEYUPDATE, /* 13 */
91980990
GKH
1036} AP_WPA_STATE;
1037
cc277069 1038/* for-wpa value domain of pMacEntry->WpaState 802.1i D3 p.114 */
91980990 1039typedef enum _GTKState {
52b81c89
BZ
1040 REKEY_NEGOTIATING,
1041 REKEY_ESTABLISHED,
1042 KEYERROR,
91980990
GKH
1043} GTK_STATE;
1044
cc277069 1045/* for-wpa value domain of pMacEntry->WpaState 802.1i D3 p.114 */
91980990 1046typedef enum _WpaGTKState {
52b81c89
BZ
1047 SETKEYS,
1048 SETKEYS_DONE,
91980990 1049} WPA_GTK_STATE;
cc277069 1050/* ====================== end of AP mlme.h ============================ */
91980990 1051
cc277069 1052#endif /* MLME_H__ */
This page took 0.157515 seconds and 5 git commands to generate.