1 #ifndef __WINBOND_MLME_H
2 #define __WINBOND_MLME_H
4 #include <linux/types.h>
5 #include <linux/spinlock.h>
7 #include "mac_structures.h"
10 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12 // Define the related definitions of MLME module
13 // history -- 01/14/03' created
15 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17 #define AUTH_REJECT_REASON_CHALLENGE_FAIL 1
19 //====== the state of MLME module
23 //====== the state of MLME/ESS module
31 //====== the state of MLME/IBSS module
32 #define IBSS_JOIN_SYNC 0x8
33 #define IBSS_AUTH_REQ 0x9
34 #define IBSS_AUTH_CHANLGE 0xa
35 #define IBSS_AUTH_WEP 0xb
36 #define IBSS_AUTH_IND 0xc
37 #define IBSS_STATE_2 0xd
41 //=========================================
42 //depend on D5C(MAC timing control 03 register): MaxTxMSDULifeTime default 0x80000us
43 #define AUTH_FAIL_TIMEOUT 550
44 #define ASSOC_FAIL_TIMEOUT 550
45 #define REASSOC_FAIL_TIMEOUT 550
50 // MLME task global CONSTANTS, STRUCTURE, variables
54 /////////////////////////////////////////////////////////////
56 // Result code returned from MLME to SME.
58 /////////////////////////////////////////////////////////////
59 // PD43 20030829 Modifiled
61 #define MLME_SUCCESS 0 //follow spec.
62 #define INVALID_PARAMETERS 1 //Not following spec.
63 #define NOT_SUPPPORTED 2
65 #define TOO_MANY_SIMULTANEOUS_REQUESTS 4
67 #define BSS_ALREADY_STARTED_OR_JOINED 6
68 #define TRANSMIT_FRAME_FAIL 7
69 #define NO_BSS_FOUND 8
77 #define WPA_AUTH 3 //for WPA
79 #define WPANONE_AUTH 5
80 ///////////////////////////////////////////// added by ws 04/19/04
82 #define WPA2_AUTH 6//for WPA2
83 #define WPA2PSK_AUTH 7
84 #endif //end def _WPA2_
86 //////////////////////////////////////////////////////////////////
87 //define the msg type of MLME module
88 //////////////////////////////////////////////////////////////////
89 //--------------------------------------------------------
92 #define MLMEMSG_AUTH_REQ 0x0b
93 #define MLMEMSG_DEAUTH_REQ 0x0c
94 #define MLMEMSG_ASSOC_REQ 0x0d
95 #define MLMEMSG_REASSOC_REQ 0x0e
96 #define MLMEMSG_DISASSOC_REQ 0x0f
97 #define MLMEMSG_START_IBSS_REQ 0x10
98 #define MLMEMSG_IBSS_NET_CFM 0x11
101 #define MLMEMSG_RCV_MLMEFRAME 0x20
102 #define MLMEMSG_RCV_ASSOCRSP 0x22
103 #define MLMEMSG_RCV_REASSOCRSP 0x24
104 #define MLMEMSG_RCV_DISASSOC 0x2b
105 #define MLMEMSG_RCV_AUTH 0x2c
106 #define MLMEMSG_RCV_DEAUTH 0x2d
110 #define MLMEMSG_TX_CALLBACK 0x40
111 #define MLMEMSG_ASSOCREQ_CALLBACK 0x41
112 #define MLMEMSG_REASSOCREQ_CALLBACK 0x43
113 #define MLMEMSG_DISASSOC_CALLBACK 0x4a
114 #define MLMEMSG_AUTH_CALLBACK 0x4c
115 #define MLMEMSG_DEAUTH_CALLBACK 0x4d
117 //#define MLMEMSG_JOIN_FAIL 4
118 //#define MLMEMSG_AUTHEN_FAIL 18
119 #define MLMEMSG_TIMEOUT 0x50
121 ///////////////////////////////////////////////////////////////////////////
122 //Global data structures
123 #define MAX_NUM_TX_MMPDU 2
124 #define MAX_MMPDU_SIZE 1512
125 #define MAX_NUM_RX_MMPDU 6
128 ///////////////////////////////////////////////////////////////////////////
130 #define boMLME_InactiveState(_AA_) (_AA_->wState==INACTIVE)
131 #define boMLME_IdleScanState(_BB_) (_BB_->wState==IDLE_SCAN)
132 #define boMLME_FoundSTAinfo(_CC_) (_CC_->wState>=IDLE_SCAN)
134 typedef struct _MLME_FRAME
136 //NDIS_PACKET MLME_Packet;
142 spinlock_t MLMESpinLock;
144 u8 TxMMPDU[MAX_NUM_TX_MMPDU][MAX_MMPDU_SIZE];
145 u8 TxMMPDUInUse[ (MAX_NUM_TX_MMPDU+3) & ~0x03 ];
148 u16 wNumTxMMPDUDiscarded;
150 u8 RxMMPDU[MAX_NUM_RX_MMPDU][MAX_MMPDU_SIZE];
151 u8 SaveRxBufSlotInUse[ (MAX_NUM_RX_MMPDU+3) & ~0x03 ];
154 u16 wNumRxMMPDUDiscarded;
156 u16 wNumRxMMPDUInMLME; // Number of the Rx MMPDU
157 u16 reserved_1; // in MLME.
158 // excluding the discarded
159 } MLME_FRAME, *psMLME_FRAME;
161 typedef struct _AUTHREQ {
163 u8 peerMACaddr[MAC_ADDR_LENGTH];
166 } MLME_AUTHREQ_PARA, *psMLME_AUTHREQ_PARA;
168 struct _Reason_Code {
170 u8 peerMACaddr[MAC_ADDR_LENGTH];
173 typedef struct _Reason_Code MLME_DEAUTHREQ_PARA, *psMLME_DEAUTHREQ_PARA;
174 typedef struct _Reason_Code MLME_DISASSOCREQ_PARA, *psMLME_DISASSOCREQ_PARA;
176 typedef struct _ASSOCREQ {
177 u8 PeerSTAAddr[MAC_ADDR_LENGTH];
181 }__attribute__ ((packed)) MLME_ASSOCREQ_PARA, *psMLME_ASSOCREQ_PARA;
183 typedef struct _REASSOCREQ {
184 u8 NewAPAddr[MAC_ADDR_LENGTH];
188 }__attribute__ ((packed)) MLME_REASSOCREQ_PARA, *psMLME_REASSOCREQ_PARA;
190 typedef struct _MLMECALLBACK {
195 } MLME_TXCALLBACK, *psMLME_TXCALLBACK;
197 typedef struct _RXDATA
200 u8 __attribute__ ((packed)) *pbFramePtr;
202 }__attribute__ ((packed)) RXDATA, *psRXDATA;