]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/staging/rt2860/rtmp_def.h
staging: rtlxxxx: off by one in AsicSendCommandToMcu() and NDIS_STATUS NICLoadFirmware()
[mv-sheeva.git] / drivers / staging / rt2860 / rtmp_def.h
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     rtmp_def.h
29
30     Abstract:
31     Miniport related definition header
32
33     Revision History:
34     Who         When          What
35     --------    ----------    ----------------------------------------------
36     Paul Lin    08-01-2002    created
37     John Chang  08-05-2003    add definition for 11g & other drafts
38 */
39 #ifndef __RTMP_DEF_H__
40 #define __RTMP_DEF_H__
41
42 #include "oid.h"
43
44 //
45 //  Debug information verbosity: lower values indicate higher urgency
46 //
47 #define RT_DEBUG_OFF        0
48 #define RT_DEBUG_ERROR      1
49 #define RT_DEBUG_WARN       2
50 #define RT_DEBUG_TRACE      3
51 #define RT_DEBUG_INFO       4
52 #define RT_DEBUG_LOUD       5
53
54 #define NIC_TAG             ((ULONG)'0682')
55 #define NIC_DBG_STRING      ("**RT28xx**")
56
57 #define RALINK_2883_VERSION             ((UINT32)0x28830300)
58 #define RALINK_2880E_VERSION    ((UINT32)0x28720200)
59 #define RALINK_3070_VERSION             ((UINT32)0x30700200)
60
61 //
62 // NDIS version in use by the NIC driver.
63 // The high byte is the major version. The low byte is the minor version.
64 //
65 #ifdef  NDIS51_MINIPORT
66 #define NIC_DRIVER_VERSION      0x0501
67 #else
68 #define NIC_DRIVER_VERSION      0x0500
69 #endif
70
71 //
72 // NDIS media type, current is ethernet, change if native wireless supported
73 //
74 #define NIC_MEDIA_TYPE          NdisMedium802_3
75 #define NIC_PCI_HDR_LENGTH      0xe2
76 #define NIC_MAX_PACKET_SIZE     2304
77 #define NIC_HEADER_SIZE         14
78 #define MAX_MAP_REGISTERS_NEEDED 32
79 #define MIN_MAP_REGISTERS_NEEDED 2   //Todo: should consider fragment issue.
80
81 //
82 // interface type, we use PCI
83 //
84 #define NIC_INTERFACE_TYPE      NdisInterfacePci
85 #define NIC_INTERRUPT_MODE      NdisInterruptLevelSensitive
86
87 //
88 // buffer size passed in NdisMQueryAdapterResources
89 // We should only need three adapter resources (IO, interrupt and memory),
90 // Some devices get extra resources, so have room for 10 resources
91 //                    UF_SIZE   (sizeof(NDIS_RESOURCE_LIST) + (10*sizeof(CM_PARTIAL_RESOURCE_DESCRIPTOR)))
92
93
94 #define NIC_RESOURCE_B//
95 // IO space length
96 //
97 #define NIC_MAP_IOSPACE_LENGTH  sizeof(CSR_STRUC)
98
99 #define MAX_RX_PKT_LEN  1520
100
101 //
102 // Entry number for each DMA descriptor ring
103 //
104
105 #ifdef RT2860
106 #define TX_RING_SIZE            64 //64
107 #define MGMT_RING_SIZE          128
108 #define RX_RING_SIZE            128 //64
109 #define MAX_TX_PROCESS          TX_RING_SIZE //8
110 #define MAX_DMA_DONE_PROCESS    TX_RING_SIZE
111 #define MAX_TX_DONE_PROCESS     TX_RING_SIZE //8
112 #define LOCAL_TXBUF_SIZE        2
113 #endif
114 #ifdef RT2870
115 #define TX_RING_SIZE            8 // 1
116 #define PRIO_RING_SIZE          8
117 #define MGMT_RING_SIZE       32 // PRIO_RING_SIZE
118 #define RX_RING_SIZE            8
119 #define MAX_TX_PROCESS          4
120 #define LOCAL_TXBUF_SIZE        2048
121 #endif // RT2870 //
122
123 #define MAX_RX_PROCESS          128 //64 //32
124 #define NUM_OF_LOCAL_TXBUF      2
125 #define TXD_SIZE                16
126 #define TXWI_SIZE               16
127 #define RXD_SIZE                16
128 #define RXWI_SIZE               16
129 // TXINFO_SIZE + TXWI_SIZE + 802.11 Header Size + AMSDU sub frame header
130 #define TX_DMA_1ST_BUFFER_SIZE  96    // only the 1st physical buffer is pre-allocated
131 #define MGMT_DMA_BUFFER_SIZE    1536 //2048
132 #define RX_BUFFER_AGGRESIZE     3840 //3904 //3968 //4096 //2048 //4096
133 #define RX_BUFFER_NORMSIZE      3840 //3904 //3968 //4096 //2048 //4096
134 #define TX_BUFFER_NORMSIZE              RX_BUFFER_NORMSIZE
135 #define MAX_FRAME_SIZE          2346                    // Maximum 802.11 frame size
136 #define MAX_AGGREGATION_SIZE    3840 //3904 //3968 //4096
137 #define MAX_NUM_OF_TUPLE_CACHE  2
138 #define MAX_MCAST_LIST_SIZE     32
139 #define MAX_LEN_OF_VENDOR_DESC  64
140 //#define MAX_SIZE_OF_MCAST_PSQ   (NUM_OF_LOCAL_TXBUF >> 2) // AP won't spend more than 1/4 of total buffers on M/BCAST PSQ
141 #define MAX_SIZE_OF_MCAST_PSQ               32
142
143 #define MAX_RX_PROCESS_CNT      (RX_RING_SIZE)
144
145
146 #define MAX_PACKETS_IN_QUEUE                            (512) //(512)    // to pass WMM A5-WPAPSK
147 #define MAX_PACKETS_IN_MCAST_PS_QUEUE           32
148 #define MAX_PACKETS_IN_PS_QUEUE                         128     //32
149 #define WMM_NUM_OF_AC                       4  /* AC0, AC1, AC2, and AC3 */
150
151 #ifdef RT30xx
152 //2008/09/11:KH add to support efuse<--
153 #define MAX_EEPROM_BIN_FILE_SIZE                                        1024
154 //2008/09/11:KH add to support efuse-->
155 #endif
156
157 // RxFilter
158 #define STANORMAL        0x17f97
159 #define APNORMAL         0x15f97
160 //
161 //  RTMP_ADAPTER flags
162 //
163 #define fRTMP_ADAPTER_MAP_REGISTER          0x00000001
164 #define fRTMP_ADAPTER_INTERRUPT_IN_USE      0x00000002
165 #define fRTMP_ADAPTER_HARDWARE_ERROR        0x00000004
166 #define fRTMP_ADAPTER_SCATTER_GATHER        0x00000008
167 #define fRTMP_ADAPTER_SEND_PACKET_ERROR     0x00000010
168 #define fRTMP_ADAPTER_MLME_RESET_IN_PROGRESS 0x00000020
169 #define fRTMP_ADAPTER_HALT_IN_PROGRESS      0x00000040
170 #define fRTMP_ADAPTER_RESET_IN_PROGRESS     0x00000080
171 #define fRTMP_ADAPTER_NIC_NOT_EXIST         0x00000100
172 #define fRTMP_ADAPTER_TX_RING_ALLOCATED     0x00000200
173 #define fRTMP_ADAPTER_REMOVE_IN_PROGRESS    0x00000400
174 #define fRTMP_ADAPTER_MIMORATE_INUSED       0x00000800
175 #define fRTMP_ADAPTER_RX_RING_ALLOCATED     0x00001000
176 #define fRTMP_ADAPTER_INTERRUPT_ACTIVE      0x00002000
177 #define fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS  0x00004000
178 #define fRTMP_ADAPTER_REASSOC_IN_PROGRESS       0x00008000
179 #define fRTMP_ADAPTER_MEDIA_STATE_PENDING       0x00010000
180 #define fRTMP_ADAPTER_RADIO_OFF                         0x00020000
181 #define fRTMP_ADAPTER_BULKOUT_RESET                     0x00040000
182 #define fRTMP_ADAPTER_BULKIN_RESET                      0x00080000
183 #define fRTMP_ADAPTER_RDG_ACTIVE                        0x00100000
184 #define fRTMP_ADAPTER_DYNAMIC_BE_TXOP_ACTIVE 0x00200000
185 #define fRTMP_ADAPTER_SCAN_2040                         0x04000000
186 #define fRTMP_ADAPTER_RADIO_MEASUREMENT         0x08000000
187
188 #define fRTMP_ADAPTER_START_UP                  0x10000000      //Devive already initialized and enabled Tx/Rx.
189 #define fRTMP_ADAPTER_MEDIA_STATE_CHANGE    0x20000000
190 #define fRTMP_ADAPTER_IDLE_RADIO_OFF        0x40000000
191
192 //
193 //  STA operation status flags
194 //
195 #define fOP_STATUS_INFRA_ON                 0x00000001
196 #define fOP_STATUS_ADHOC_ON                 0x00000002
197 #define fOP_STATUS_BG_PROTECTION_INUSED     0x00000004
198 #define fOP_STATUS_SHORT_SLOT_INUSED        0x00000008
199 #define fOP_STATUS_SHORT_PREAMBLE_INUSED    0x00000010
200 #define fOP_STATUS_RECEIVE_DTIM             0x00000020
201 #define fOP_STATUS_MEDIA_STATE_CONNECTED    0x00000080
202 #define fOP_STATUS_WMM_INUSED               0x00000100
203 #define fOP_STATUS_AGGREGATION_INUSED       0x00000200
204 #define fOP_STATUS_DOZE                     0x00000400  // debug purpose
205 #define fOP_STATUS_PIGGYBACK_INUSED         0x00000800  // piggy-back, and aggregation
206 #define fOP_STATUS_APSD_INUSED                          0x00001000
207 #define fOP_STATUS_TX_AMSDU_INUSED                      0x00002000
208 #define fOP_STATUS_MAX_RETRY_ENABLED            0x00004000
209 #define fOP_STATUS_WAKEUP_NOW               0x00008000
210 #define fOP_STATUS_ADVANCE_POWER_SAVE_PCIE_DEVICE       0x00020000
211
212 #ifdef RT2860
213 //
214 //  RTMP_ADAPTER PSFlags : related to advanced power save.
215 //
216 // Indicate whether driver can go to sleep mode from now. This flag is useful AFTER link up
217 #define fRTMP_PS_CAN_GO_SLEEP          0x00000001
218 // Indicate whether driver has issue a LinkControl command to PCIe L1
219 #define fRTMP_PS_SET_PCI_CLK_OFF_COMMAND          0x00000002
220 // Indicate driver should disable kick off hardware to send packets from now.
221 #define fRTMP_PS_DISABLE_TX         0x00000004
222 // Indicate driver should IMMEDIATELY fo to sleep after receiving AP's beacon in which  doesn't indicate unicate nor multicast packets for me
223 //. This flag is used ONLY in RTMPHandleRxDoneInterrupt routine.
224 #define fRTMP_PS_GO_TO_SLEEP_NOW         0x00000008
225 #endif
226
227 #define CCKSETPROTECT           0x1
228 #define OFDMSETPROTECT          0x2
229 #define MM20SETPROTECT          0x4
230 #define MM40SETPROTECT          0x8
231 #define GF20SETPROTECT          0x10
232 #define GR40SETPROTECT          0x20
233 #define ALLN_SETPROTECT         (GR40SETPROTECT | GF20SETPROTECT | MM40SETPROTECT | MM20SETPROTECT)
234
235 //
236 //  AP's client table operation status flags
237 //
238 #define fCLIENT_STATUS_WMM_CAPABLE          0x00000001  // CLIENT can parse QOS DATA frame
239 #define fCLIENT_STATUS_AGGREGATION_CAPABLE  0x00000002  // CLIENT can receive Ralink's proprietary TX aggregation frame
240 #define fCLIENT_STATUS_PIGGYBACK_CAPABLE    0x00000004  // CLIENT support piggy-back
241 #define fCLIENT_STATUS_AMSDU_INUSED                     0x00000008
242 #define fCLIENT_STATUS_SGI20_CAPABLE            0x00000010
243 #define fCLIENT_STATUS_SGI40_CAPABLE            0x00000020
244 #define fCLIENT_STATUS_TxSTBC_CAPABLE           0x00000040
245 #define fCLIENT_STATUS_RxSTBC_CAPABLE           0x00000080
246 #define fCLIENT_STATUS_HTC_CAPABLE                      0x00000100
247 #define fCLIENT_STATUS_RDG_CAPABLE                      0x00000200
248 #define fCLIENT_STATUS_MCSFEEDBACK_CAPABLE  0x00000400
249 #define fCLIENT_STATUS_APSD_CAPABLE         0x00000800  /* UAPSD STATION */
250
251 #define fCLIENT_STATUS_RALINK_CHIPSET           0x00100000
252 //
253 //  STA configuration flags
254 //
255
256 // 802.11n Operating Mode Definition. 0-3 also used in ASICUPdateProtect switch case
257 #define HT_NO_PROTECT   0
258 #define HT_LEGACY_PROTECT       1
259 #define HT_40_PROTECT   2
260 #define HT_2040_PROTECT 3
261 #define HT_RTSCTS_6M    7
262 //following is our own definition in order to turn on our ASIC protection register in INFRASTRUCTURE.
263 #define HT_ATHEROS      8       // rt2860c has problem with atheros chip. we need to turn on RTS/CTS .
264 #define HT_FORCERTSCTS  9       // Force turn on RTS/CTS first. then go to evaluate if this force RTS is necessary.
265
266 //
267 // RX Packet Filter control flags. Apply on pAd->PacketFilter
268 //
269 #define fRX_FILTER_ACCEPT_DIRECT            NDIS_PACKET_TYPE_DIRECTED
270 #define fRX_FILTER_ACCEPT_MULTICAST         NDIS_PACKET_TYPE_MULTICAST
271 #define fRX_FILTER_ACCEPT_BROADCAST         NDIS_PACKET_TYPE_BROADCAST
272 #define fRX_FILTER_ACCEPT_ALL_MULTICAST     NDIS_PACKET_TYPE_ALL_MULTICAST
273
274 //
275 // Error code section
276 //
277 // NDIS_ERROR_CODE_ADAPTER_NOT_FOUND
278 #define ERRLOG_READ_PCI_SLOT_FAILED     0x00000101L
279 #define ERRLOG_WRITE_PCI_SLOT_FAILED    0x00000102L
280 #define ERRLOG_VENDOR_DEVICE_NOMATCH    0x00000103L
281
282 // NDIS_ERROR_CODE_ADAPTER_DISABLED
283 #define ERRLOG_BUS_MASTER_DISABLED      0x00000201L
284
285 // NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION
286 #define ERRLOG_INVALID_SPEED_DUPLEX     0x00000301L
287 #define ERRLOG_SET_SECONDARY_FAILED     0x00000302L
288
289 // NDIS_ERROR_CODE_OUT_OF_RESOURCES
290 #define ERRLOG_OUT_OF_MEMORY            0x00000401L
291 #define ERRLOG_OUT_OF_SHARED_MEMORY     0x00000402L
292 #define ERRLOG_OUT_OF_MAP_REGISTERS     0x00000403L
293 #define ERRLOG_OUT_OF_BUFFER_POOL       0x00000404L
294 #define ERRLOG_OUT_OF_NDIS_BUFFER       0x00000405L
295 #define ERRLOG_OUT_OF_PACKET_POOL       0x00000406L
296 #define ERRLOG_OUT_OF_NDIS_PACKET       0x00000407L
297 #define ERRLOG_OUT_OF_LOOKASIDE_MEMORY  0x00000408L
298
299 // NDIS_ERROR_CODE_HARDWARE_FAILURE
300 #define ERRLOG_SELFTEST_FAILED          0x00000501L
301 #define ERRLOG_INITIALIZE_ADAPTER       0x00000502L
302 #define ERRLOG_REMOVE_MINIPORT          0x00000503L
303
304 // NDIS_ERROR_CODE_RESOURCE_CONFLICT
305 #define ERRLOG_MAP_IO_SPACE             0x00000601L
306 #define ERRLOG_QUERY_ADAPTER_RESOURCES  0x00000602L
307 #define ERRLOG_NO_IO_RESOURCE           0x00000603L
308 #define ERRLOG_NO_INTERRUPT_RESOURCE    0x00000604L
309 #define ERRLOG_NO_MEMORY_RESOURCE       0x00000605L
310
311
312 // WDS definition
313 #define MAX_WDS_ENTRY               4
314 #define WDS_PAIRWISE_KEY_OFFSET     60    // WDS links uses pairwise key#60 ~ 63 in ASIC pairwise key table
315
316 #define WDS_DISABLE_MODE            0
317 #define WDS_RESTRICT_MODE           1
318 #define WDS_BRIDGE_MODE             2
319 #define WDS_REPEATER_MODE           3
320 #define WDS_LAZY_MODE               4
321
322
323 #define MAX_MESH_NUM                            0
324
325 #define MAX_APCLI_NUM                           0
326
327 #define MAX_MBSSID_NUM                          1
328 #if defined(RT2860) || defined(RT30xx)
329 #ifdef MBSS_SUPPORT
330 #undef  MAX_MBSSID_NUM
331 #define MAX_MBSSID_NUM                          (8 - MAX_MESH_NUM - MAX_APCLI_NUM)
332 #endif // MBSS_SUPPORT //
333 #endif
334
335 /* sanity check for apidx */
336 #define MBSS_MR_APIDX_SANITY_CHECK(apidx) \
337     { if (apidx > MAX_MBSSID_NUM) { \
338           printk("%s> Error! apidx = %d > MAX_MBSSID_NUM!\n", __func__, apidx); \
339           apidx = MAIN_MBSSID; } }
340
341 #define VALID_WCID(_wcid)       ((_wcid) > 0 && (_wcid) < MAX_LEN_OF_MAC_TABLE )
342
343 #define MAIN_MBSSID                 0
344 #define FIRST_MBSSID                1
345
346
347 #define MAX_BEACON_SIZE                         512
348 // If the MAX_MBSSID_NUM is larger than 6,
349 // it shall reserve some WCID space(wcid 222~253) for beacon frames.
350 // -    these wcid 238~253 are reserved for beacon#6(ra6).
351 // -    these wcid 222~237 are reserved for beacon#7(ra7).
352 #if defined(MAX_MBSSID_NUM) && (MAX_MBSSID_NUM == 8)
353 #define HW_RESERVED_WCID        222
354 #elif defined(MAX_MBSSID_NUM) && (MAX_MBSSID_NUM == 7)
355 #define HW_RESERVED_WCID        238
356 #else
357 #define HW_RESERVED_WCID        255
358 #endif
359
360 // Then dedicate wcid of DFS and Carrier-Sense.
361 #define DFS_CTS_WCID            (HW_RESERVED_WCID - 1)
362 #define CS_CTS_WCID             (HW_RESERVED_WCID - 2)
363 #define LAST_SPECIFIC_WCID      (HW_RESERVED_WCID - 2)
364
365 // If MAX_MBSSID_NUM is 8, the maximum available wcid for the associated STA is 211.
366 // If MAX_MBSSID_NUM is 7, the maximum available wcid for the associated STA is 228.
367 #define MAX_AVAILABLE_CLIENT_WCID       (LAST_SPECIFIC_WCID - MAX_MBSSID_NUM - 1)
368
369 // TX need WCID to find Cipher Key
370 // these wcid 212 ~ 219 are reserved for bc/mc packets if MAX_MBSSID_NUM is 8.
371 #define GET_GroupKey_WCID(__wcid, __bssidx) \
372         {                                                                               \
373                 __wcid = LAST_SPECIFIC_WCID - (MAX_MBSSID_NUM) + __bssidx;      \
374         }
375
376 #define IsGroupKeyWCID(__wcid) (((__wcid) < LAST_SPECIFIC_WCID) && ((__wcid) >= (LAST_SPECIFIC_WCID - (MAX_MBSSID_NUM))))
377
378
379 // definition to support multiple BSSID
380 #define BSS0                            0
381 #define BSS1                            1
382 #define BSS2                            2
383 #define BSS3                            3
384 #define BSS4                            4
385 #define BSS5                            5
386 #define BSS6                            6
387 #define BSS7                            7
388
389
390 //============================================================
391 // Length definitions
392 #define PEER_KEY_NO                     2
393 #define MAC_ADDR_LEN                    6
394 #define TIMESTAMP_LEN                   8
395 #define MAX_LEN_OF_SUPPORTED_RATES      MAX_LENGTH_OF_SUPPORT_RATES // 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54
396 #define MAX_LEN_OF_KEY                  32      // 32 octets == 256 bits, Redefine for WPA
397 #define MAX_NUM_OF_CHANNELS             MAX_NUM_OF_CHS      // 14 channels @2.4G +  12@UNII + 4 @MMAC + 11 @HiperLAN2 + 7 @Japan + 1 as NULL termination
398 #define MAX_NUM_OF_11JCHANNELS             20      // 14 channels @2.4G +  12@UNII + 4 @MMAC + 11 @HiperLAN2 + 7 @Japan + 1 as NULL termination
399 #define MAX_LEN_OF_SSID                 32
400 #define CIPHER_TEXT_LEN                 128
401 #define HASH_TABLE_SIZE                 256
402 #define MAX_VIE_LEN                     1024   // New for WPA cipher suite variable IE sizes.
403 #define MAX_SUPPORT_MCS             32
404
405 //============================================================
406 // ASIC WCID Table definition.
407 //============================================================
408 #define BSSID_WCID              1       // in infra mode, always put bssid with this WCID
409 #define MCAST_WCID      0x0
410 #define BSS0Mcast_WCID  0x0
411 #define BSS1Mcast_WCID  0xf8
412 #define BSS2Mcast_WCID  0xf9
413 #define BSS3Mcast_WCID  0xfa
414 #define BSS4Mcast_WCID  0xfb
415 #define BSS5Mcast_WCID  0xfc
416 #define BSS6Mcast_WCID  0xfd
417 #define BSS7Mcast_WCID  0xfe
418 #define RESERVED_WCID           0xff
419
420 #define MAX_NUM_OF_ACL_LIST                             MAX_NUMBER_OF_ACL
421
422 #define MAX_LEN_OF_MAC_TABLE            MAX_NUMBER_OF_MAC // if MAX_MBSSID_NUM is 8, this value can't be larger than 211
423
424 #if MAX_LEN_OF_MAC_TABLE>MAX_AVAILABLE_CLIENT_WCID
425 #error MAX_LEN_OF_MAC_TABLE can not be larger than MAX_AVAILABLE_CLIENT_WCID!!!!
426 #endif
427
428 #define MAX_NUM_OF_WDS_LINK_PERBSSID                3
429 #define MAX_NUM_OF_WDS_LINK                 (MAX_NUM_OF_WDS_LINK_PERBSSID*MAX_MBSSID_NUM)
430 #define MAX_NUM_OF_EVENT                MAX_NUMBER_OF_EVENT
431 #define WDS_LINK_START_WCID                             (MAX_LEN_OF_MAC_TABLE-1)
432
433 #define NUM_OF_TID                      8
434 #define MAX_AID_BA                    4
435 #define MAX_LEN_OF_BA_REC_TABLE          ((NUM_OF_TID * MAX_LEN_OF_MAC_TABLE)/2)//   (NUM_OF_TID*MAX_AID_BA + 32)        //Block ACK recipient
436 #define MAX_LEN_OF_BA_ORI_TABLE          ((NUM_OF_TID * MAX_LEN_OF_MAC_TABLE)/2)//   (NUM_OF_TID*MAX_AID_BA + 32)   // Block ACK originator
437 #define MAX_LEN_OF_BSS_TABLE             64
438 #define MAX_REORDERING_MPDU_NUM                  512
439
440 // key related definitions
441 #define SHARE_KEY_NUM                   4
442 #define MAX_LEN_OF_SHARE_KEY            16    // byte count
443 #define MAX_LEN_OF_PEER_KEY             16    // byte count
444 #define PAIRWISE_KEY_NUM                64    // in MAC ASIC pairwise key table
445 #define GROUP_KEY_NUM                   4
446 #define PMK_LEN                         32
447 #define WDS_PAIRWISE_KEY_OFFSET         60    // WDS links uses pairwise key#60 ~ 63 in ASIC pairwise key table
448 #define PMKID_NO                        4     // Number of PMKID saved supported
449 #define MAX_LEN_OF_MLME_BUFFER          2048
450
451 // power status related definitions
452 #define PWR_ACTIVE                      0
453 #define PWR_SAVE                        1
454 #define PWR_MMPS                        2                       //MIMO power save
455
456 // Auth and Assoc mode related definitions
457 #define AUTH_MODE_OPEN                  0x00
458 #define AUTH_MODE_KEY                   0x01
459
460 // BSS Type definitions
461 #define BSS_ADHOC                       0  // = Ndis802_11IBSS
462 #define BSS_INFRA                       1  // = Ndis802_11Infrastructure
463 #define BSS_ANY                         2  // = Ndis802_11AutoUnknown
464 #define BSS_MONITOR                                 3  // = Ndis802_11Monitor
465
466
467 // Reason code definitions
468 #define REASON_RESERVED                 0
469 #define REASON_UNSPECIFY                1
470 #define REASON_NO_LONGER_VALID          2
471 #define REASON_DEAUTH_STA_LEAVING       3
472 #define REASON_DISASSOC_INACTIVE        4
473 #define REASON_DISASSPC_AP_UNABLE       5
474 #define REASON_CLS2ERR                  6
475 #define REASON_CLS3ERR                  7
476 #define REASON_DISASSOC_STA_LEAVING     8
477 #define REASON_STA_REQ_ASSOC_NOT_AUTH   9
478 #define REASON_INVALID_IE               13
479 #define REASON_MIC_FAILURE              14
480 #define REASON_4_WAY_TIMEOUT            15
481 #define REASON_GROUP_KEY_HS_TIMEOUT     16
482 #define REASON_IE_DIFFERENT             17
483 #define REASON_MCIPHER_NOT_VALID        18
484 #define REASON_UCIPHER_NOT_VALID        19
485 #define REASON_AKMP_NOT_VALID           20
486 #define REASON_UNSUPPORT_RSNE_VER       21
487 #define REASON_INVALID_RSNE_CAP         22
488 #define REASON_8021X_AUTH_FAIL          23
489 #define REASON_CIPHER_SUITE_REJECTED    24
490 #define REASON_DECLINED                 37
491
492 #define REASON_QOS_UNSPECIFY              32
493 #define REASON_QOS_LACK_BANDWIDTH         33
494 #define REASON_POOR_CHANNEL_CONDITION     34
495 #define REASON_QOS_OUTSIDE_TXOP_LIMITION  35
496 #define REASON_QOS_QSTA_LEAVING_QBSS      36
497 #define REASON_QOS_UNWANTED_MECHANISM     37
498 #define REASON_QOS_MECH_SETUP_REQUIRED    38
499 #define REASON_QOS_REQUEST_TIMEOUT        39
500 #define REASON_QOS_CIPHER_NOT_SUPPORT     45
501
502 // Status code definitions
503 #define MLME_SUCCESS                    0
504 #define MLME_UNSPECIFY_FAIL             1
505 #define MLME_CANNOT_SUPPORT_CAP         10
506 #define MLME_REASSOC_DENY_ASSOC_EXIST   11
507 #define MLME_ASSOC_DENY_OUT_SCOPE       12
508 #define MLME_ALG_NOT_SUPPORT            13
509 #define MLME_SEQ_NR_OUT_OF_SEQUENCE     14
510 #define MLME_REJ_CHALLENGE_FAILURE      15
511 #define MLME_REJ_TIMEOUT                  16
512 #define MLME_ASSOC_REJ_UNABLE_HANDLE_STA  17
513 #define MLME_ASSOC_REJ_DATA_RATE          18
514
515 #define MLME_ASSOC_REJ_NO_EXT_RATE        22
516 #define MLME_ASSOC_REJ_NO_EXT_RATE_PBCC   23
517 #define MLME_ASSOC_REJ_NO_CCK_OFDM        24
518
519 #define MLME_QOS_UNSPECIFY                32
520 #define MLME_REQUEST_DECLINED             37
521 #define MLME_REQUEST_WITH_INVALID_PARAM   38
522 #define MLME_DLS_NOT_ALLOW_IN_QBSS        48
523 #define MLME_DEST_STA_NOT_IN_QBSS         49
524 #define MLME_DEST_STA_IS_NOT_A_QSTA       50
525
526 #define MLME_INVALID_FORMAT             0x51
527 #define MLME_FAIL_NO_RESOURCE           0x52
528 #define MLME_STATE_MACHINE_REJECT       0x53
529 #define MLME_MAC_TABLE_FAIL             0x54
530
531 // IE code
532 #define IE_SSID                         0
533 #define IE_SUPP_RATES                   1
534 #define IE_FH_PARM                      2
535 #define IE_DS_PARM                      3
536 #define IE_CF_PARM                      4
537 #define IE_TIM                          5
538 #define IE_IBSS_PARM                    6
539 #define IE_COUNTRY                      7     // 802.11d
540 #define IE_802_11D_REQUEST              10    // 802.11d
541 #define IE_QBSS_LOAD                    11    // 802.11e d9
542 #define IE_EDCA_PARAMETER               12    // 802.11e d9
543 #define IE_TSPEC                        13    // 802.11e d9
544 #define IE_TCLAS                        14    // 802.11e d9
545 #define IE_SCHEDULE                     15    // 802.11e d9
546 #define IE_CHALLENGE_TEXT               16
547 #define IE_POWER_CONSTRAINT             32    // 802.11h d3.3
548 #define IE_POWER_CAPABILITY             33    // 802.11h d3.3
549 #define IE_TPC_REQUEST                  34    // 802.11h d3.3
550 #define IE_TPC_REPORT                   35    // 802.11h d3.3
551 #define IE_SUPP_CHANNELS                36    // 802.11h d3.3
552 #define IE_CHANNEL_SWITCH_ANNOUNCEMENT  37    // 802.11h d3.3
553 #define IE_MEASUREMENT_REQUEST          38    // 802.11h d3.3
554 #define IE_MEASUREMENT_REPORT           39    // 802.11h d3.3
555 #define IE_QUIET                        40    // 802.11h d3.3
556 #define IE_IBSS_DFS                     41    // 802.11h d3.3
557 #define IE_ERP                          42    // 802.11g
558 #define IE_TS_DELAY                     43    // 802.11e d9
559 #define IE_TCLAS_PROCESSING             44    // 802.11e d9
560 #define IE_QOS_CAPABILITY               46    // 802.11e d6
561 #define IE_HT_CAP                       45    // 802.11n d1. HT CAPABILITY. ELEMENT ID TBD
562 #define IE_AP_CHANNEL_REPORT                    51    // 802.11k d6
563 #define IE_HT_CAP2                         52    // 802.11n d1. HT CAPABILITY. ELEMENT ID TBD
564 #define IE_RSN                          48    // 802.11i d3.0
565 #define IE_WPA2                         48    // WPA2
566 #define IE_EXT_SUPP_RATES               50    // 802.11g
567 #define IE_SUPP_REG_CLASS               59    // 802.11y. Supported regulatory classes.
568 #define IE_EXT_CHANNEL_SWITCH_ANNOUNCEMENT      60      // 802.11n
569 #define IE_ADD_HT                         61    // 802.11n d1. ADDITIONAL HT CAPABILITY. ELEMENT ID TBD
570 #define IE_ADD_HT2                        53    // 802.11n d1. ADDITIONAL HT CAPABILITY. ELEMENT ID TBD
571
572
573 // For 802.11n D3.03
574 //#define IE_NEW_EXT_CHA_OFFSET             62    // 802.11n d1. New extension channel offset elemet
575 #define IE_SECONDARY_CH_OFFSET          62      // 802.11n D3.03        Secondary Channel Offset element
576 #ifdef RT2870
577 #define IE_WAPI                                                 68              // WAPI information element
578 #endif
579 #define IE_2040_BSS_COEXIST               72    // 802.11n D3.0.3
580 #define IE_2040_BSS_INTOLERANT_REPORT     73    // 802.11n D3.03
581 #define IE_OVERLAPBSS_SCAN_PARM           74    // 802.11n D3.03
582 #define IE_EXT_CAPABILITY                127   // 802.11n D3.03
583
584
585 #define IE_WPA                          221   // WPA
586 #define IE_VENDOR_SPECIFIC              221   // Wifi WMM (WME)
587
588 #define OUI_BROADCOM_HT              51   //
589 #define OUI_BROADCOM_HTADD              52   //
590 #define OUI_PREN_HT_CAP              51   //
591 #define OUI_PREN_ADD_HT              52   //
592
593 // CCX information
594 #define IE_AIRONET_CKIP                 133   // CCX1.0 ID 85H for CKIP
595 #define IE_AP_TX_POWER                  150   // CCX 2.0 for AP transmit power
596 #define IE_MEASUREMENT_CAPABILITY       221   // CCX 2.0
597 #define IE_CCX_V2                       221
598 #define IE_AIRONET_IPADDRESS            149   // CCX ID 95H for IP Address
599 #define IE_AIRONET_CCKMREASSOC          156   // CCX ID 9CH for CCKM Reassociation Request element
600 #define CKIP_NEGOTIATION_LENGTH         30
601 #define AIRONET_IPADDRESS_LENGTH        10
602 #define AIRONET_CCKMREASSOC_LENGTH      24
603
604 // ========================================================
605 // MLME state machine definition
606 // ========================================================
607
608 // STA MLME state mahcines
609 #define ASSOC_STATE_MACHINE             1
610 #define AUTH_STATE_MACHINE              2
611 #define AUTH_RSP_STATE_MACHINE          3
612 #define SYNC_STATE_MACHINE              4
613 #define MLME_CNTL_STATE_MACHINE         5
614 #define WPA_PSK_STATE_MACHINE           6
615 #define LEAP_STATE_MACHINE              7
616 #define AIRONET_STATE_MACHINE           8
617 #define ACTION_STATE_MACHINE           9
618
619 // AP MLME state machines
620 #define AP_ASSOC_STATE_MACHINE          11
621 #define AP_AUTH_STATE_MACHINE           12
622 #define AP_AUTH_RSP_STATE_MACHINE       13
623 #define AP_SYNC_STATE_MACHINE           14
624 #define AP_CNTL_STATE_MACHINE           15
625 #define AP_WPA_STATE_MACHINE            16
626
627 #ifdef RT30xx
628 #define WSC_STATE_MACHINE            17
629 #define WSC_UPNP_STATE_MACHINE              18
630 #endif
631
632 //
633 // STA's CONTROL/CONNECT state machine: states, events, total function #
634 //
635 #define CNTL_IDLE                       0
636 #define CNTL_WAIT_DISASSOC              1
637 #define CNTL_WAIT_JOIN                  2
638 #define CNTL_WAIT_REASSOC               3
639 #define CNTL_WAIT_START                 4
640 #define CNTL_WAIT_AUTH                  5
641 #define CNTL_WAIT_ASSOC                 6
642 #define CNTL_WAIT_AUTH2                 7
643 #define CNTL_WAIT_OID_LIST_SCAN         8
644 #define CNTL_WAIT_OID_DISASSOC          9
645 #ifdef RT2870
646 #define CNTL_WAIT_SCAN_FOR_CONNECT      10
647 #endif // RT2870 //
648
649 #define MT2_ASSOC_CONF                  34
650 #define MT2_AUTH_CONF                   35
651 #define MT2_DEAUTH_CONF                 36
652 #define MT2_DISASSOC_CONF               37
653 #define MT2_REASSOC_CONF                38
654 #define MT2_PWR_MGMT_CONF               39
655 #define MT2_JOIN_CONF                   40
656 #define MT2_SCAN_CONF                   41
657 #define MT2_START_CONF                  42
658 #define MT2_GET_CONF                    43
659 #define MT2_SET_CONF                    44
660 #define MT2_RESET_CONF                  45
661 #define MT2_MLME_ROAMING_REQ            52
662
663 #define CNTL_FUNC_SIZE                  1
664
665 //
666 // STA's ASSOC state machine: states, events, total function #
667 //
668 #define ASSOC_IDLE                      0
669 #define ASSOC_WAIT_RSP                  1
670 #define REASSOC_WAIT_RSP                2
671 #define DISASSOC_WAIT_RSP               3
672 #define MAX_ASSOC_STATE                 4
673
674 #define ASSOC_MACHINE_BASE              0
675 #define MT2_MLME_ASSOC_REQ              0
676 #define MT2_MLME_REASSOC_REQ            1
677 #define MT2_MLME_DISASSOC_REQ           2
678 #define MT2_PEER_DISASSOC_REQ           3
679 #define MT2_PEER_ASSOC_REQ              4
680 #define MT2_PEER_ASSOC_RSP              5
681 #define MT2_PEER_REASSOC_REQ            6
682 #define MT2_PEER_REASSOC_RSP            7
683 #define MT2_DISASSOC_TIMEOUT            8
684 #define MT2_ASSOC_TIMEOUT               9
685 #define MT2_REASSOC_TIMEOUT             10
686 #define MAX_ASSOC_MSG                   11
687
688 #define ASSOC_FUNC_SIZE                 (MAX_ASSOC_STATE * MAX_ASSOC_MSG)
689
690 //
691 // ACT state machine: states, events, total function #
692 //
693 #define ACT_IDLE                      0
694 #define MAX_ACT_STATE                 1
695
696 #define ACT_MACHINE_BASE              0
697
698 //Those PEER_xx_CATE number is based on real Categary value in IEEE spec. Please don'es modify it by your self.
699 //Category
700 #define MT2_PEER_SPECTRUM_CATE              0
701 #define MT2_PEER_QOS_CATE              1
702 #define MT2_PEER_DLS_CATE             2
703 #define MT2_PEER_BA_CATE             3
704 #define MT2_PEER_PUBLIC_CATE             4
705 #define MT2_PEER_RM_CATE             5
706 #define MT2_PEER_HT_CATE             7  //      7.4.7
707 #define MAX_PEER_CATE_MSG                   7
708 #define MT2_MLME_ADD_BA_CATE             8
709 #define MT2_MLME_ORI_DELBA_CATE             9
710 #define MT2_MLME_REC_DELBA_CATE             10
711 #define MT2_MLME_QOS_CATE              11
712 #define MT2_MLME_DLS_CATE             12
713 #define MT2_ACT_INVALID             13
714 #define MAX_ACT_MSG                   14
715
716 //Category field
717 #define CATEGORY_SPECTRUM               0
718 #define CATEGORY_QOS                    1
719 #define CATEGORY_DLS                    2
720 #define CATEGORY_BA                     3
721 #define CATEGORY_PUBLIC         4
722 #define CATEGORY_RM                     5
723 #define CATEGORY_HT                     7
724
725
726 // DLS Action frame definition
727 #define ACTION_DLS_REQUEST                      0
728 #define ACTION_DLS_RESPONSE                     1
729 #define ACTION_DLS_TEARDOWN                     2
730
731 //Spectrum  Action field value 802.11h 7.4.1
732 #define SPEC_MRQ        0       // Request
733 #define SPEC_MRP        1       //Report
734 #define SPEC_TPCRQ      2
735 #define SPEC_TPCRP      3
736 #define SPEC_CHANNEL_SWITCH     4
737
738
739 //BA  Action field value
740 #define ADDBA_REQ       0
741 #define ADDBA_RESP      1
742 #define DELBA   2
743
744 //Public's  Action field value in Public Category.  Some in 802.11y and some in 11n
745 #define ACTION_BSS_2040_COEXIST                         0       // 11n
746 #define ACTION_DSE_ENABLEMENT                                   1       // 11y D9.0
747 #define ACTION_DSE_DEENABLEMENT                         2       // 11y D9.0
748 #define ACTION_DSE_REG_LOCATION_ANNOUNCE        3       // 11y D9.0
749 #define ACTION_EXT_CH_SWITCH_ANNOUNCE           4       // 11y D9.0
750 #define ACTION_DSE_MEASUREMENT_REQ                      5       // 11y D9.0
751 #define ACTION_DSE_MEASUREMENT_REPORT           6       // 11y D9.0
752 #define ACTION_MEASUREMENT_PILOT_ACTION         7       // 11y D9.0
753 #define ACTION_DSE_POWER_CONSTRAINT                     8       // 11y D9.0
754
755
756 //HT  Action field value
757 #define NOTIFY_BW_ACTION                                0
758 #define SMPS_ACTION                                             1
759 #define PSMP_ACTION                                     2
760 #define SETPCO_ACTION                                   3
761 #define MIMO_CHA_MEASURE_ACTION                 4
762 #define MIMO_N_BEACONFORM                               5
763 #define MIMO_BEACONFORM                                 6
764 #define ANTENNA_SELECT                                  7
765 #define HT_INFO_EXCHANGE                                8
766
767 #define ACT_FUNC_SIZE                 (MAX_ACT_STATE * MAX_ACT_MSG)
768 //
769 // STA's AUTHENTICATION state machine: states, evvents, total function #
770 //
771 #define AUTH_REQ_IDLE                   0
772 #define AUTH_WAIT_SEQ2                  1
773 #define AUTH_WAIT_SEQ4                  2
774 #define MAX_AUTH_STATE                  3
775
776 #define AUTH_MACHINE_BASE               0
777 #define MT2_MLME_AUTH_REQ               0
778 #define MT2_PEER_AUTH_EVEN              1
779 #define MT2_AUTH_TIMEOUT                2
780 #define MAX_AUTH_MSG                    3
781
782 #define AUTH_FUNC_SIZE                  (MAX_AUTH_STATE * MAX_AUTH_MSG)
783
784 //
785 // STA's AUTH_RSP state machine: states, events, total function #
786 //
787 #define AUTH_RSP_IDLE                   0
788 #define AUTH_RSP_WAIT_CHAL              1
789 #define MAX_AUTH_RSP_STATE              2
790
791 #define AUTH_RSP_MACHINE_BASE           0
792 #define MT2_AUTH_CHALLENGE_TIMEOUT      0
793 #define MT2_PEER_AUTH_ODD               1
794 #define MT2_PEER_DEAUTH                 2
795 #define MAX_AUTH_RSP_MSG                3
796
797 #define AUTH_RSP_FUNC_SIZE              (MAX_AUTH_RSP_STATE * MAX_AUTH_RSP_MSG)
798
799 //
800 // STA's SYNC state machine: states, events, total function #
801 //
802 #define SYNC_IDLE                       0  // merge NO_BSS,IBSS_IDLE,IBSS_ACTIVE and BSS in to 1 state
803 #define JOIN_WAIT_BEACON                1
804 #define SCAN_LISTEN                     2
805 #define MAX_SYNC_STATE                  3
806
807 #define SYNC_MACHINE_BASE               0
808 #define MT2_MLME_SCAN_REQ               0
809 #define MT2_MLME_JOIN_REQ               1
810 #define MT2_MLME_START_REQ              2
811 #define MT2_PEER_BEACON                 3
812 #define MT2_PEER_PROBE_RSP              4
813 #define MT2_PEER_ATIM                   5
814 #define MT2_SCAN_TIMEOUT                6
815 #define MT2_BEACON_TIMEOUT              7
816 #define MT2_ATIM_TIMEOUT                8
817 #define MT2_PEER_PROBE_REQ              9
818 #define MAX_SYNC_MSG                    10
819
820 #define SYNC_FUNC_SIZE                  (MAX_SYNC_STATE * MAX_SYNC_MSG)
821
822 //Messages for the DLS state machine
823 #define DLS_IDLE                                                0
824 #define MAX_DLS_STATE                                   1
825
826 #define DLS_MACHINE_BASE                                0
827 #define MT2_MLME_DLS_REQ                            0
828 #define MT2_PEER_DLS_REQ                            1
829 #define MT2_PEER_DLS_RSP                            2
830 #define MT2_MLME_DLS_TEAR_DOWN              3
831 #define MT2_PEER_DLS_TEAR_DOWN              4
832 #define MAX_DLS_MSG                                     5
833
834 #define DLS_FUNC_SIZE                                   (MAX_DLS_STATE * MAX_DLS_MSG)
835
836 //
837 // STA's WPA-PSK State machine: states, events, total function #
838 //
839 #define WPA_PSK_IDLE                                    0
840 #define MAX_WPA_PSK_STATE                               1
841
842 #define WPA_MACHINE_BASE                0
843 #define MT2_EAPPacket                   0
844 #define MT2_EAPOLStart                  1
845 #define MT2_EAPOLLogoff                 2
846 #define MT2_EAPOLKey                    3
847 #define MT2_EAPOLASFAlert               4
848 #define MAX_WPA_PSK_MSG                 5
849
850 #define WPA_PSK_FUNC_SIZE                               (MAX_WPA_PSK_STATE * MAX_WPA_PSK_MSG)
851
852 //
853 // STA's CISCO-AIRONET State machine: states, events, total function #
854 //
855 #define AIRONET_IDLE                                    0
856 #define AIRONET_SCANNING                                1
857 #define MAX_AIRONET_STATE                               2
858
859 #define AIRONET_MACHINE_BASE                0
860 #define MT2_AIRONET_MSG                             0
861 #define MT2_AIRONET_SCAN_REQ                1
862 #define MT2_AIRONET_SCAN_DONE               2
863 #define MAX_AIRONET_MSG                             3
864
865 #define AIRONET_FUNC_SIZE                               (MAX_AIRONET_STATE * MAX_AIRONET_MSG)
866
867 //
868 // AP's CONTROL/CONNECT state machine: states, events, total function #
869 //
870 #define AP_CNTL_FUNC_SIZE               1
871
872 //
873 // AP's ASSOC state machine: states, events, total function #
874 //
875 #define AP_ASSOC_IDLE                   0
876 #define AP_MAX_ASSOC_STATE              1
877
878 #define AP_ASSOC_MACHINE_BASE           0
879 #define APMT2_MLME_DISASSOC_REQ         0
880 #define APMT2_PEER_DISASSOC_REQ         1
881 #define APMT2_PEER_ASSOC_REQ            2
882 #define APMT2_PEER_REASSOC_REQ          3
883 #define APMT2_CLS3ERR                   4
884 #define AP_MAX_ASSOC_MSG                5
885
886 #define AP_ASSOC_FUNC_SIZE              (AP_MAX_ASSOC_STATE * AP_MAX_ASSOC_MSG)
887
888 //
889 // AP's AUTHENTICATION state machine: states, events, total function #
890 //
891 #define AP_AUTH_REQ_IDLE                0
892 #define AP_MAX_AUTH_STATE               1
893
894 #define AP_AUTH_MACHINE_BASE            0
895 #define APMT2_MLME_DEAUTH_REQ           0
896 #define APMT2_CLS2ERR                   1
897 #define AP_MAX_AUTH_MSG                 2
898
899 #define AP_AUTH_FUNC_SIZE               (AP_MAX_AUTH_STATE * AP_MAX_AUTH_MSG)
900
901 //
902 // AP's AUTH-RSP state machine: states, events, total function #
903 //
904 #define AP_AUTH_RSP_IDLE                0
905 #define AP_MAX_AUTH_RSP_STATE           1
906
907 #define AP_AUTH_RSP_MACHINE_BASE        0
908 #define APMT2_AUTH_CHALLENGE_TIMEOUT    0
909 #define APMT2_PEER_AUTH_ODD             1
910 #define APMT2_PEER_DEAUTH               2
911 #define AP_MAX_AUTH_RSP_MSG             3
912
913 #define AP_AUTH_RSP_FUNC_SIZE           (AP_MAX_AUTH_RSP_STATE * AP_MAX_AUTH_RSP_MSG)
914
915 //
916 // AP's SYNC state machine: states, events, total function #
917 //
918 #define AP_SYNC_IDLE                    0
919 #define AP_SCAN_LISTEN                                  1
920 #define AP_MAX_SYNC_STATE               2
921
922 #define AP_SYNC_MACHINE_BASE            0
923 #define APMT2_PEER_PROBE_REQ            0
924 #define APMT2_PEER_BEACON               1
925 #define APMT2_MLME_SCAN_REQ                             2
926 #define APMT2_PEER_PROBE_RSP                    3
927 #define APMT2_SCAN_TIMEOUT                              4
928 #define APMT2_MLME_SCAN_CNCL                    5
929 #define AP_MAX_SYNC_MSG                 6
930
931 #define AP_SYNC_FUNC_SIZE               (AP_MAX_SYNC_STATE * AP_MAX_SYNC_MSG)
932
933 //
934 // AP's WPA state machine: states, events, total function #
935 //
936 #define AP_WPA_PTK                      0
937 #define AP_MAX_WPA_PTK_STATE            1
938
939 #define AP_WPA_MACHINE_BASE             0
940 #define APMT2_EAPPacket                 0
941 #define APMT2_EAPOLStart                1
942 #define APMT2_EAPOLLogoff               2
943 #define APMT2_EAPOLKey                  3
944 #define APMT2_EAPOLASFAlert             4
945 #define AP_MAX_WPA_MSG                  5
946
947 #define AP_WPA_FUNC_SIZE                (AP_MAX_WPA_PTK_STATE * AP_MAX_WPA_MSG)
948
949 // =============================================================================
950
951 // value domain of 802.11 header FC.Tyte, which is b3..b2 of the 1st-byte of MAC header
952 #define BTYPE_MGMT                  0
953 #define BTYPE_CNTL                  1
954 #define BTYPE_DATA                  2
955
956 // value domain of 802.11 MGMT frame's FC.subtype, which is b7..4 of the 1st-byte of MAC header
957 #define SUBTYPE_ASSOC_REQ           0
958 #define SUBTYPE_ASSOC_RSP           1
959 #define SUBTYPE_REASSOC_REQ         2
960 #define SUBTYPE_REASSOC_RSP         3
961 #define SUBTYPE_PROBE_REQ           4
962 #define SUBTYPE_PROBE_RSP           5
963 #define SUBTYPE_BEACON              8
964 #define SUBTYPE_ATIM                9
965 #define SUBTYPE_DISASSOC            10
966 #define SUBTYPE_AUTH                11
967 #define SUBTYPE_DEAUTH              12
968 #define SUBTYPE_ACTION              13
969 #define SUBTYPE_ACTION_NO_ACK              14
970
971 // value domain of 802.11 CNTL frame's FC.subtype, which is b7..4 of the 1st-byte of MAC header
972 #define SUBTYPE_WRAPPER         7
973 #define SUBTYPE_BLOCK_ACK_REQ       8
974 #define SUBTYPE_BLOCK_ACK           9
975 #define SUBTYPE_PS_POLL             10
976 #define SUBTYPE_RTS                 11
977 #define SUBTYPE_CTS                 12
978 #define SUBTYPE_ACK                 13
979 #define SUBTYPE_CFEND               14
980 #define SUBTYPE_CFEND_CFACK         15
981
982 // value domain of 802.11 DATA frame's FC.subtype, which is b7..4 of the 1st-byte of MAC header
983 #define SUBTYPE_DATA                0
984 #define SUBTYPE_DATA_CFACK          1
985 #define SUBTYPE_DATA_CFPOLL         2
986 #define SUBTYPE_DATA_CFACK_CFPOLL   3
987 #define SUBTYPE_NULL_FUNC           4
988 #define SUBTYPE_CFACK               5
989 #define SUBTYPE_CFPOLL              6
990 #define SUBTYPE_CFACK_CFPOLL        7
991 #define SUBTYPE_QDATA               8
992 #define SUBTYPE_QDATA_CFACK         9
993 #define SUBTYPE_QDATA_CFPOLL        10
994 #define SUBTYPE_QDATA_CFACK_CFPOLL  11
995 #define SUBTYPE_QOS_NULL            12
996 #define SUBTYPE_QOS_CFACK           13
997 #define SUBTYPE_QOS_CFPOLL          14
998 #define SUBTYPE_QOS_CFACK_CFPOLL    15
999
1000 // ACK policy of QOS Control field bit 6:5
1001 #define NORMAL_ACK                  0x00  // b6:5 = 00
1002 #define NO_ACK                      0x20  // b6:5 = 01
1003 #define NO_EXPLICIT_ACK             0x40  // b6:5 = 10
1004 #define BLOCK_ACK                   0x60  // b6:5 = 11
1005
1006 //
1007 // rtmp_data.c use these definition
1008 //
1009 #define LENGTH_802_11               24
1010 #define LENGTH_802_11_AND_H         30
1011 #define LENGTH_802_11_CRC_H         34
1012 #define LENGTH_802_11_CRC           28
1013 #define LENGTH_802_11_WITH_ADDR4    30
1014 #define LENGTH_802_3                14
1015 #define LENGTH_802_3_TYPE           2
1016 #define LENGTH_802_1_H              8
1017 #define LENGTH_EAPOL_H              4
1018 #define LENGTH_WMMQOS_H                         2
1019 #define LENGTH_CRC                  4
1020 #define MAX_SEQ_NUMBER              0x0fff
1021 #define LENGTH_802_3_NO_TYPE            12
1022 #define LENGTH_802_1Q                           4 /* VLAN related */
1023
1024 // STA_CSR4.field.TxResult
1025 #define TX_RESULT_SUCCESS           0
1026 #define TX_RESULT_ZERO_LENGTH       1
1027 #define TX_RESULT_UNDER_RUN         2
1028 #define TX_RESULT_OHY_ERROR         4
1029 #define TX_RESULT_RETRY_FAIL        6
1030
1031 // All PHY rate summary in TXD
1032 // Preamble MODE in TxD
1033 #define MODE_CCK        0
1034 #define MODE_OFDM   1
1035 #define MODE_HTMIX      2
1036 #define MODE_HTGREENFIELD       3
1037
1038 // MCS for CCK.  BW.SGI.STBC are reserved
1039 #define MCS_LONGP_RATE_1                      0  // long preamble CCK 1Mbps
1040 #define MCS_LONGP_RATE_2                      1 // long preamble CCK 1Mbps
1041 #define MCS_LONGP_RATE_5_5                    2
1042 #define MCS_LONGP_RATE_11                     3
1043 #define MCS_SHORTP_RATE_1                      4         // long preamble CCK 1Mbps. short is forbidden in 1Mbps
1044 #define MCS_SHORTP_RATE_2                      5        // short preamble CCK 2Mbps
1045 #define MCS_SHORTP_RATE_5_5                    6
1046 #define MCS_SHORTP_RATE_11                     7
1047 // To send duplicate legacy OFDM. set BW=BW_40.  SGI.STBC are reserved
1048 #define MCS_RATE_6                      0   // legacy OFDM
1049 #define MCS_RATE_9                      1   // OFDM
1050 #define MCS_RATE_12                     2   // OFDM
1051 #define MCS_RATE_18                     3   // OFDM
1052 #define MCS_RATE_24                     4  // OFDM
1053 #define MCS_RATE_36                     5   // OFDM
1054 #define MCS_RATE_48                     6  // OFDM
1055 #define MCS_RATE_54                     7 // OFDM
1056 // HT
1057 #define MCS_0           0       // 1S
1058 #define MCS_1           1
1059 #define MCS_2           2
1060 #define MCS_3           3
1061 #define MCS_4           4
1062 #define MCS_5           5
1063 #define MCS_6           6
1064 #define MCS_7           7
1065 #define MCS_8           8       // 2S
1066 #define MCS_9           9
1067 #define MCS_10          10
1068 #define MCS_11          11
1069 #define MCS_12          12
1070 #define MCS_13          13
1071 #define MCS_14          14
1072 #define MCS_15          15
1073 #define MCS_16          16      // 3*3
1074 #define MCS_17          17
1075 #define MCS_18          18
1076 #define MCS_19          19
1077 #define MCS_20          20
1078 #define MCS_21          21
1079 #define MCS_22          22
1080 #define MCS_23          23
1081 #define MCS_32          32
1082 #define MCS_AUTO                33
1083
1084 // OID_HTPHYMODE
1085 // MODE
1086 #define HTMODE_MM       0
1087 #define HTMODE_GF       1
1088
1089 // Fixed Tx MODE - HT, CCK or OFDM
1090 #define FIXED_TXMODE_HT         0
1091 #define FIXED_TXMODE_CCK        1
1092 #define FIXED_TXMODE_OFDM       2
1093 // BW
1094 #define BW_20           BAND_WIDTH_20
1095 #define BW_40           BAND_WIDTH_40
1096 #define BW_BOTH         BAND_WIDTH_BOTH
1097 #define BW_10           BAND_WIDTH_10   // 802.11j has 10MHz. This definition is for internal usage. doesn't fill in the IE or other field.
1098
1099 // SHORTGI
1100 #define GI_400          GAP_INTERVAL_400        // only support in HT mode
1101 #define GI_BOTH         GAP_INTERVAL_BOTH
1102 #define GI_800          GAP_INTERVAL_800
1103 // STBC
1104 #define STBC_NONE       0
1105 #define STBC_USE        1       // limited use in rt2860b phy
1106 #define RXSTBC_ONE      1       // rx support of one spatial stream
1107 #define RXSTBC_TWO      2       // rx support of 1 and 2 spatial stream
1108 #define RXSTBC_THR      3       // rx support of 1~3 spatial stream
1109 // MCS FEEDBACK
1110 #define MCSFBK_NONE     0  // not support mcs feedback /
1111 #define MCSFBK_RSV      1       // reserved
1112 #define MCSFBK_UNSOLICIT        2       // only support unsolict mcs feedback
1113 #define MCSFBK_MRQ      3       // response to both MRQ and unsolict mcs feedback
1114
1115 // MIMO power safe
1116 #define MMPS_STATIC     0
1117 #define MMPS_DYNAMIC            1
1118 #define   MMPS_RSV              2
1119 #define MMPS_ENABLE             3
1120
1121
1122 // A-MSDU size
1123 #define AMSDU_0 0
1124 #define AMSDU_1         1
1125
1126 // MCS use 7 bits
1127 #define TXRATEMIMO              0x80
1128 #define TXRATEMCS               0x7F
1129 #define TXRATEOFDM              0x7F
1130 #define RATE_1                      0
1131 #define RATE_2                      1
1132 #define RATE_5_5                    2
1133 #define RATE_11                     3
1134 #define RATE_6                      4   // OFDM
1135 #define RATE_9                      5   // OFDM
1136 #define RATE_12                     6   // OFDM
1137 #define RATE_18                     7   // OFDM
1138 #define RATE_24                     8   // OFDM
1139 #define RATE_36                     9   // OFDM
1140 #define RATE_48                     10  // OFDM
1141 #define RATE_54                     11  // OFDM
1142 #define RATE_FIRST_OFDM_RATE        RATE_6
1143 #define RATE_LAST_OFDM_RATE             RATE_54
1144 #define RATE_6_5                    12  // HT mix
1145 #define RATE_13                     13  // HT mix
1146 #define RATE_19_5                   14  // HT mix
1147 #define RATE_26                     15  // HT mix
1148 #define RATE_39                     16  // HT mix
1149 #define RATE_52                     17  // HT mix
1150 #define RATE_58_5                   18  // HT mix
1151 #define RATE_65                     19  // HT mix
1152 #define RATE_78                     20  // HT mix
1153 #define RATE_104                    21  // HT mix
1154 #define RATE_117                    22  // HT mix
1155 #define RATE_130                    23  // HT mix
1156 //#define RATE_AUTO_SWITCH            255 // for StaCfg.FixedTxRate only
1157 #define HTRATE_0                      12
1158 #define RATE_FIRST_MM_RATE        HTRATE_0
1159 #define RATE_FIRST_HT_RATE        HTRATE_0
1160 #define RATE_LAST_HT_RATE        HTRATE_0
1161
1162 // pTxWI->txop
1163 #define IFS_HTTXOP                 0    // The txop will be handles by ASIC.
1164 #define IFS_PIFS                    1
1165 #define IFS_SIFS                    2
1166 #define IFS_BACKOFF                 3
1167
1168 // pTxD->RetryMode
1169 #define LONG_RETRY                  1
1170 #define SHORT_RETRY                 0
1171
1172 // Country Region definition
1173 #define REGION_MINIMUM_BG_BAND            0
1174 #define REGION_0_BG_BAND                  0       // 1-11
1175 #define REGION_1_BG_BAND                  1       // 1-13
1176 #define REGION_2_BG_BAND                  2       // 10-11
1177 #define REGION_3_BG_BAND                  3       // 10-13
1178 #define REGION_4_BG_BAND                  4       // 14
1179 #define REGION_5_BG_BAND                  5       // 1-14
1180 #define REGION_6_BG_BAND                  6       // 3-9
1181 #define REGION_7_BG_BAND                  7       // 5-13
1182 #define REGION_31_BG_BAND                 31       // 5-13
1183 #define REGION_MAXIMUM_BG_BAND            7
1184
1185 #define REGION_MINIMUM_A_BAND             0
1186 #define REGION_0_A_BAND                   0       // 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, 165
1187 #define REGION_1_A_BAND                   1       // 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
1188 #define REGION_2_A_BAND                   2       // 36, 40, 44, 48, 52, 56, 60, 64
1189 #define REGION_3_A_BAND                   3       // 52, 56, 60, 64, 149, 153, 157, 161
1190 #define REGION_4_A_BAND                   4       // 149, 153, 157, 161, 165
1191 #define REGION_5_A_BAND                   5       // 149, 153, 157, 161
1192 #define REGION_6_A_BAND                   6       // 36, 40, 44, 48
1193 #define REGION_7_A_BAND                   7       // 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165
1194 #define REGION_8_A_BAND                   8       // 52, 56, 60, 64
1195 #define REGION_9_A_BAND                   9       // 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165
1196 #define REGION_10_A_BAND                  10      // 36, 40, 44, 48, 149, 153, 157, 161, 165
1197 #define REGION_11_A_BAND                  11      // 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 149, 153, 157, 161
1198 #define REGION_MAXIMUM_A_BAND             11
1199
1200 // pTxD->CipherAlg
1201 #define CIPHER_NONE                 0
1202 #define CIPHER_WEP64                1
1203 #define CIPHER_WEP128               2
1204 #define CIPHER_TKIP                 3
1205 #define CIPHER_AES                  4
1206 #define CIPHER_CKIP64               5
1207 #define CIPHER_CKIP128              6
1208 #define CIPHER_TKIP_NO_MIC          7       // MIC appended by driver: not a valid value in hardware key table
1209 #define CIPHER_SMS4                                     8
1210
1211 // value domain of pAd->RfIcType
1212 #define RFIC_2820                   1       // 2.4G 2T3R
1213 #define RFIC_2850                   2       // 2.4G/5G 2T3R
1214 #define RFIC_2720                   3       // 2.4G 1T2R
1215 #define RFIC_2750                   4       // 2.4G/5G 1T2R
1216 #define RFIC_3020                   5       // 2.4G 1T1R
1217 #define RFIC_2020                   6       // 2.4G B/G
1218 #ifdef RT30xx
1219 #define RFIC_3021                   7       // 2.4G 1T2R
1220 #define RFIC_3022                   8       // 2.4G 2T2R
1221 #endif
1222
1223 // LED Status.
1224 #define LED_LINK_DOWN               0
1225 #define LED_LINK_UP                 1
1226 #define LED_RADIO_OFF               2
1227 #define LED_RADIO_ON                3
1228 #define LED_HALT                    4
1229 #define LED_WPS                     5
1230 #define LED_ON_SITE_SURVEY          6
1231 #define LED_POWER_UP                7
1232
1233 // value domain of pAd->LedCntl.LedMode and E2PROM
1234 #define LED_MODE_DEFAULT            0
1235 #define LED_MODE_TWO_LED                        1
1236 #define LED_MODE_SIGNAL_STREGTH         8  // EEPROM define =8
1237
1238 // RC4 init value, used fro WEP & TKIP
1239 #define PPPINITFCS32                0xffffffff   /* Initial FCS value */
1240
1241 // value domain of pAd->StaCfg.PortSecured. 802.1X controlled port definition
1242 #define WPA_802_1X_PORT_SECURED     1
1243 #define WPA_802_1X_PORT_NOT_SECURED 2
1244
1245 #define PAIRWISE_KEY                1
1246 #define GROUP_KEY                   2
1247
1248 //definition of DRS
1249 #define MAX_STEP_OF_TX_RATE_SWITCH      32
1250
1251
1252 // pre-allocated free NDIS PACKET/BUFFER poll for internal usage
1253 #define MAX_NUM_OF_FREE_NDIS_PACKET 128
1254
1255 //Block ACK
1256 #define MAX_TX_REORDERBUF   64
1257 #define MAX_RX_REORDERBUF   64
1258 #define DEFAULT_TX_TIMEOUT   30
1259 #define DEFAULT_RX_TIMEOUT   30
1260
1261 // definition of Recipient or Originator
1262 #define I_RECIPIENT                  TRUE
1263 #define I_ORIGINATOR                   FALSE
1264
1265 #define DEFAULT_BBP_TX_POWER        0
1266 #define DEFAULT_RF_TX_POWER         5
1267
1268 #define MAX_INI_BUFFER_SIZE                     4096
1269 #define MAX_PARAM_BUFFER_SIZE           (2048) // enough for ACL (18*64)
1270                                                                                         //18 : the length of Mac address acceptable format "01:02:03:04:05:06;")
1271                                                                                         //64 : MAX_NUM_OF_ACL_LIST
1272 // definition of pAd->OpMode
1273 #define OPMODE_STA                  0
1274 #define OPMODE_AP                   1
1275 //#define OPMODE_L3_BRG               2       // as AP and STA at the same time
1276
1277 // ========================= AP rtmp_def.h ===========================
1278 // value domain for pAd->EventTab.Log[].Event
1279 #define EVENT_RESET_ACCESS_POINT    0 // Log = "hh:mm:ss   Restart Access Point"
1280 #define EVENT_ASSOCIATED            1 // Log = "hh:mm:ss   STA 00:01:02:03:04:05 associated"
1281 #define EVENT_DISASSOCIATED         2 // Log = "hh:mm:ss   STA 00:01:02:03:04:05 left this BSS"
1282 #define EVENT_AGED_OUT              3 // Log = "hh:mm:ss   STA 00:01:02:03:04:05 was aged-out and removed from this BSS"
1283 #define EVENT_COUNTER_M             4
1284 #define EVENT_INVALID_PSK           5
1285 #define EVENT_MAX_EVENT_TYPE        6
1286 // ==== end of AP rtmp_def.h ============
1287
1288 // definition RSSI Number
1289 #define RSSI_0                                  0
1290 #define RSSI_1                                  1
1291 #define RSSI_2                                  2
1292
1293 // definition of radar detection
1294 #define RD_NORMAL_MODE                          0       // Not found radar signal
1295 #define RD_SWITCHING_MODE                       1       // Found radar signal, and doing channel switch
1296 #define RD_SILENCE_MODE                         2       // After channel switch, need to be silence a while to ensure radar not found
1297
1298 //Driver defined cid for mapping status and command.
1299 #define  SLEEPCID       0x11
1300 #define  WAKECID        0x22
1301 #define  QUERYPOWERCID  0x33
1302 #define  OWNERMCU       0x1
1303 #define  OWNERCPU       0x0
1304
1305 // MBSSID definition
1306 #define ENTRY_NOT_FOUND             0xFF
1307
1308
1309 /* After Linux 2.6.9,
1310  * VLAN module use Private (from user) interface flags (netdevice->priv_flags).
1311  * #define IFF_802_1Q_VLAN 0x1         --    802.1Q VLAN device.  in if.h
1312  * ref to ip_sabotage_out() [ out->priv_flags & IFF_802_1Q_VLAN ] in br_netfilter.c
1313  *
1314  * For this reason, we MUST use EVEN value in priv_flags
1315  */
1316 #define INT_MAIN                    0x0100
1317 #define INT_MBSSID                  0x0200
1318 #define INT_WDS                     0x0300
1319 #define INT_APCLI                   0x0400
1320 #define INT_MESH                        0x0500
1321
1322 // Use bitmap to allow coexist of ATE_TXFRAME and ATE_RXFRAME(i.e.,to support LoopBack mode)
1323
1324 // WEP Key TYPE
1325 #define WEP_HEXADECIMAL_TYPE    0
1326 #define WEP_ASCII_TYPE          1
1327
1328
1329
1330 // WIRELESS EVENTS definition
1331 /* Max number of char in custom event, refer to wireless_tools.28/wireless.20.h */
1332 #define IW_CUSTOM_MAX_LEN                                                       255     /* In bytes */
1333
1334 // For system event - start
1335 #define IW_SYS_EVENT_FLAG_START                     0x0200
1336 #define IW_ASSOC_EVENT_FLAG                         0x0200
1337 #define IW_DISASSOC_EVENT_FLAG                      0x0201
1338 #define IW_DEAUTH_EVENT_FLAG                            0x0202
1339 #define IW_AGEOUT_EVENT_FLAG                            0x0203
1340 #define IW_COUNTER_MEASURES_EVENT_FLAG              0x0204
1341 #define IW_REPLAY_COUNTER_DIFF_EVENT_FLAG           0x0205
1342 #define IW_RSNIE_DIFF_EVENT_FLAG                                0x0206
1343 #define IW_MIC_DIFF_EVENT_FLAG                                  0x0207
1344 #define IW_ICV_ERROR_EVENT_FLAG                                         0x0208
1345 #define IW_MIC_ERROR_EVENT_FLAG                                         0x0209
1346 #define IW_GROUP_HS_TIMEOUT_EVENT_FLAG                          0x020A
1347 #define IW_PAIRWISE_HS_TIMEOUT_EVENT_FLAG                       0x020B
1348 #define IW_RSNIE_SANITY_FAIL_EVENT_FLAG                         0x020C
1349 #define IW_SET_KEY_DONE_WPA1_EVENT_FLAG                         0x020D
1350 #define IW_SET_KEY_DONE_WPA2_EVENT_FLAG                         0x020E
1351 #define IW_STA_LINKUP_EVENT_FLAG                                        0x020F
1352 #define IW_STA_LINKDOWN_EVENT_FLAG                                      0x0210
1353 #define IW_SCAN_COMPLETED_EVENT_FLAG                            0x0211
1354 #define IW_SCAN_ENQUEUE_FAIL_EVENT_FLAG                         0x0212
1355 // if add new system event flag, please upadte the IW_SYS_EVENT_FLAG_END
1356 #define IW_SYS_EVENT_FLAG_END                       0x0212
1357 #define IW_SYS_EVENT_TYPE_NUM                                           (IW_SYS_EVENT_FLAG_END - IW_SYS_EVENT_FLAG_START + 1)
1358 // For system event - end
1359
1360 // For spoof attack event - start
1361 #define IW_SPOOF_EVENT_FLAG_START                   0x0300
1362 #define IW_CONFLICT_SSID_EVENT_FLAG                                     0x0300
1363 #define IW_SPOOF_ASSOC_RESP_EVENT_FLAG                          0x0301
1364 #define IW_SPOOF_REASSOC_RESP_EVENT_FLAG                        0x0302
1365 #define IW_SPOOF_PROBE_RESP_EVENT_FLAG                          0x0303
1366 #define IW_SPOOF_BEACON_EVENT_FLAG                                      0x0304
1367 #define IW_SPOOF_DISASSOC_EVENT_FLAG                            0x0305
1368 #define IW_SPOOF_AUTH_EVENT_FLAG                                        0x0306
1369 #define IW_SPOOF_DEAUTH_EVENT_FLAG                                      0x0307
1370 #define IW_SPOOF_UNKNOWN_MGMT_EVENT_FLAG                        0x0308
1371 #define IW_REPLAY_ATTACK_EVENT_FLAG                                     0x0309
1372 // if add new spoof attack event flag, please upadte the IW_SPOOF_EVENT_FLAG_END
1373 #define IW_SPOOF_EVENT_FLAG_END                     0x0309
1374 #define IW_SPOOF_EVENT_TYPE_NUM                                         (IW_SPOOF_EVENT_FLAG_END - IW_SPOOF_EVENT_FLAG_START + 1)
1375 // For spoof attack event - end
1376
1377 // For flooding attack event - start
1378 #define IW_FLOOD_EVENT_FLAG_START                   0x0400
1379 #define IW_FLOOD_AUTH_EVENT_FLAG                                        0x0400
1380 #define IW_FLOOD_ASSOC_REQ_EVENT_FLAG                           0x0401
1381 #define IW_FLOOD_REASSOC_REQ_EVENT_FLAG                         0x0402
1382 #define IW_FLOOD_PROBE_REQ_EVENT_FLAG                           0x0403
1383 #define IW_FLOOD_DISASSOC_EVENT_FLAG                            0x0404
1384 #define IW_FLOOD_DEAUTH_EVENT_FLAG                                      0x0405
1385 #define IW_FLOOD_EAP_REQ_EVENT_FLAG                                     0x0406
1386 // if add new flooding attack event flag, please upadte the IW_FLOOD_EVENT_FLAG_END
1387 #define IW_FLOOD_EVENT_FLAG_END                         0x0406
1388 #define IW_FLOOD_EVENT_TYPE_NUM                                         (IW_FLOOD_EVENT_FLAG_END - IW_FLOOD_EVENT_FLAG_START + 1)
1389 // For flooding attack - end
1390
1391 // End - WIRELESS EVENTS definition
1392
1393 // definition for DLS, kathy
1394 #define MAX_NUM_OF_INIT_DLS_ENTRY   1
1395 #define MAX_NUM_OF_DLS_ENTRY        MAX_NUMBER_OF_DLS_ENTRY
1396
1397 //Block ACK , rt2860, kathy
1398 #define MAX_TX_REORDERBUF               64
1399 #define MAX_RX_REORDERBUF               64
1400 #define DEFAULT_TX_TIMEOUT              30
1401 #define DEFAULT_RX_TIMEOUT              30
1402 #define MAX_BARECI_SESSION              8
1403
1404 #ifndef IW_ESSID_MAX_SIZE
1405 /* Maximum size of the ESSID and pAd->nickname strings */
1406 #define IW_ESSID_MAX_SIZE               32
1407 #endif
1408
1409 #ifdef MCAST_RATE_SPECIFIC
1410 #define MCAST_DISABLE   0
1411 #define MCAST_CCK               1
1412 #define MCAST_OFDM              2
1413 #define MCAST_HTMIX             3
1414 #endif // MCAST_RATE_SPECIFIC //
1415
1416 #ifdef RT2860
1417 // For AsicRadioOff/AsicRadioOn/AsicForceWakeup function
1418 // This is to indicate from where to call this function.
1419 #define DOT11POWERSAVE          0       // TO do .11 power save sleep
1420 #define GUIRADIO_OFF            1       // To perform Radio OFf command from GUI
1421 #define RTMP_HALT                       2       // Called from Halt handler.
1422 #define GUI_IDLE_POWER_SAVE     3       // Call to sleep before link up with AP
1423 #define FROM_TX                         4       // Force wake up from Tx packet.
1424 #endif
1425 #ifdef RT2870
1426 // For AsicRadioOff/AsicRadioOn function
1427 #define DOT11POWERSAVE          0
1428 #define GUIRADIO_OFF            1
1429 #define RTMP_HALT                   2
1430 #define GUI_IDLE_POWER_SAVE             3
1431 #endif
1432
1433 // definition for WpaSupport flag
1434 #define WPA_SUPPLICANT_DISABLE                          0
1435 #define WPA_SUPPLICANT_ENABLE                           1
1436 #define WPA_SUPPLICANT_ENABLE_WITH_WEB_UI       2
1437
1438 // Endian byte swapping codes
1439 #define SWAP16(x) \
1440     ((UINT16)( \
1441     (((UINT16)(x) & (UINT16) 0x00ffU) << 8) | \
1442     (((UINT16)(x) & (UINT16) 0xff00U) >> 8) ))
1443
1444 #define SWAP32(x) \
1445     ((UINT32)( \
1446     (((UINT32)(x) & (UINT32) 0x000000ffUL) << 24) | \
1447     (((UINT32)(x) & (UINT32) 0x0000ff00UL) <<  8) | \
1448     (((UINT32)(x) & (UINT32) 0x00ff0000UL) >>  8) | \
1449     (((UINT32)(x) & (UINT32) 0xff000000UL) >> 24) ))
1450
1451 #define SWAP64(x) \
1452     ((UINT64)( \
1453     (UINT64)(((UINT64)(x) & (UINT64) 0x00000000000000ffULL) << 56) | \
1454     (UINT64)(((UINT64)(x) & (UINT64) 0x000000000000ff00ULL) << 40) | \
1455     (UINT64)(((UINT64)(x) & (UINT64) 0x0000000000ff0000ULL) << 24) | \
1456     (UINT64)(((UINT64)(x) & (UINT64) 0x00000000ff000000ULL) <<  8) | \
1457     (UINT64)(((UINT64)(x) & (UINT64) 0x000000ff00000000ULL) >>  8) | \
1458     (UINT64)(((UINT64)(x) & (UINT64) 0x0000ff0000000000ULL) >> 24) | \
1459     (UINT64)(((UINT64)(x) & (UINT64) 0x00ff000000000000ULL) >> 40) | \
1460     (UINT64)(((UINT64)(x) & (UINT64) 0xff00000000000000ULL) >> 56) ))
1461
1462 #define cpu2le64(x) ((UINT64)(x))
1463 #define le2cpu64(x) ((UINT64)(x))
1464 #define cpu2le32(x) ((UINT32)(x))
1465 #define le2cpu32(x) ((UINT32)(x))
1466 #define cpu2le16(x) ((UINT16)(x))
1467 #define le2cpu16(x) ((UINT16)(x))
1468 #define cpu2be64(x) SWAP64((x))
1469 #define be2cpu64(x) SWAP64((x))
1470 #define cpu2be32(x) SWAP32((x))
1471 #define be2cpu32(x) SWAP32((x))
1472 #define cpu2be16(x) SWAP16((x))
1473 #define be2cpu16(x) SWAP16((x))
1474
1475 #endif  // __RTMP_DEF_H__
1476
1477