ext3: Add journal error check into ext3_delete_entry()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / vt6656 / device.h
blobe8d0b4203cad577721689f8199051d01447108be
1 /*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 * File: device.h
21 * Purpose: MAC Data structure
23 * Author: Tevin Chen
25 * Date: Mar 17, 1997
29 #ifndef __DEVICE_H__
30 #define __DEVICE_H__
32 #include <linux/module.h>
33 #include <linux/types.h>
34 #include <linux/init.h>
35 #include <linux/mm.h>
36 #include <linux/errno.h>
37 #include <linux/ioport.h>
38 #include <linux/pci.h>
39 #include <linux/kernel.h>
40 #include <linux/netdevice.h>
41 #include <linux/etherdevice.h>
42 #include <linux/skbuff.h>
43 #include <linux/delay.h>
44 #include <linux/timer.h>
45 #include <linux/slab.h>
46 #include <linux/interrupt.h>
47 #include <linux/string.h>
48 #include <linux/wait.h>
49 #include <linux/if_arp.h>
50 #include <linux/sched.h>
51 #include <linux/if.h>
52 #include <linux/rtnetlink.h>//James
53 #include <linux/proc_fs.h>
54 #include <linux/inetdevice.h>
55 #include <linux/reboot.h>
56 #include <linux/usb.h>
57 #include <linux/signal.h>
58 #include <asm/io.h>
59 #include <asm/uaccess.h>
60 #ifdef SIOCETHTOOL
61 #define DEVICE_ETHTOOL_IOCTL_SUPPORT
62 #include <linux/ethtool.h>
63 #else
64 #undef DEVICE_ETHTOOL_IOCTL_SUPPORT
65 #endif
66 /* Include Wireless Extension definition and check version - Jean II */
67 #include <linux/wireless.h>
68 #include <net/iw_handler.h> // New driver API
70 #ifndef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
71 #define WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
72 #endif
74 //please copy below macro to driver_event.c for API
75 #define RT_INSMOD_EVENT_FLAG 0x0101
76 #define RT_UPDEV_EVENT_FLAG 0x0102
77 #define RT_DISCONNECTED_EVENT_FLAG 0x0103
78 #define RT_WPACONNECTED_EVENT_FLAG 0x0104
79 #define RT_DOWNDEV_EVENT_FLAG 0x0105
80 #define RT_RMMOD_EVENT_FLAG 0x0106
83 // device specific
86 #include "device_cfg.h"
87 #include "ttype.h"
88 #include "80211hdr.h"
89 #include "tether.h"
90 #include "wmgr.h"
91 #include "wcmd.h"
92 #include "mib.h"
93 #include "srom.h"
94 #include "rc4.h"
95 #include "desc.h"
96 #include "key.h"
97 #include "card.h"
99 /*--------------------- Export Definitions -------------------------*/
100 #define VNT_USB_VENDOR_ID 0x160a
101 #define VNT_USB_PRODUCT_ID 0x3184
103 #define MAC_MAX_CONTEXT_REG (256+128)
105 #define MAX_MULTICAST_ADDRESS_NUM 32
106 #define MULTICAST_ADDRESS_LIST_SIZE (MAX_MULTICAST_ADDRESS_NUM * ETH_ALEN)
108 //#define OP_MODE_INFRASTRUCTURE 0
109 //#define OP_MODE_ADHOC 1
110 //#define OP_MODE_AP 2
112 #define DUPLICATE_RX_CACHE_LENGTH 5
114 #define NUM_KEY_ENTRY 11
116 #define TX_WEP_NONE 0
117 #define TX_WEP_OTF 1
118 #define TX_WEP_SW 2
119 #define TX_WEP_SWOTP 3
120 #define TX_WEP_OTPSW 4
121 #define TX_WEP_SW232 5
123 #define KEYSEL_WEP40 0
124 #define KEYSEL_WEP104 1
125 #define KEYSEL_TKIP 2
126 #define KEYSEL_CCMP 3
128 #define AUTO_FB_NONE 0
129 #define AUTO_FB_0 1
130 #define AUTO_FB_1 2
132 #define FB_RATE0 0
133 #define FB_RATE1 1
135 // Antenna Mode
136 #define ANT_A 0
137 #define ANT_B 1
138 #define ANT_DIVERSITY 2
139 #define ANT_RXD_TXA 3
140 #define ANT_RXD_TXB 4
141 #define ANT_UNKNOWN 0xFF
142 #define ANT_TXA 0
143 #define ANT_TXB 1
144 #define ANT_RXA 2
145 #define ANT_RXB 3
148 #define MAXCHECKHANGCNT 4
150 //Packet type
151 #define TX_PKT_UNI 0x00
152 #define TX_PKT_MULTI 0x01
153 #define TX_PKT_BROAD 0x02
155 #define BB_VGA_LEVEL 4
156 #define BB_VGA_CHANGE_THRESHOLD 3
158 #ifndef RUN_AT
159 #define RUN_AT(x) (jiffies+(x))
160 #endif
162 // DMA related
163 #define RESERV_AC0DMA 4
165 #define PRIVATE_Message 0
167 /*--------------------- Export Types ------------------------------*/
169 #define DBG_PRT(l, p, args...) { if (l <= msglevel) printk(p, ##args); }
170 #define PRINT_K(p, args...) { if (PRIVATE_Message) printk(p, ##args); }
172 typedef enum __device_msg_level {
173 MSG_LEVEL_ERR = 0, /* Errors causing abnormal operation */
174 MSG_LEVEL_NOTICE = 1, /* Errors needing user notification */
175 MSG_LEVEL_INFO = 2, /* Normal message. */
176 MSG_LEVEL_VERBOSE = 3, /* Will report all trival errors. */
177 MSG_LEVEL_DEBUG = 4 /* Only for debug purpose. */
178 } DEVICE_MSG_LEVEL, *PDEVICE_MSG_LEVEL;
180 typedef enum __device_init_type {
181 DEVICE_INIT_COLD = 0, /* cold init */
182 DEVICE_INIT_RESET, /* reset init or Dx to D0 power remain */
183 DEVICE_INIT_DXPL /* Dx to D0 power lost init */
184 } DEVICE_INIT_TYPE, *PDEVICE_INIT_TYPE;
186 //USB
189 // Enum of context types for SendPacket
191 typedef enum _CONTEXT_TYPE {
192 CONTEXT_DATA_PACKET = 1,
193 CONTEXT_MGMT_PACKET
194 } CONTEXT_TYPE;
196 // RCB (Receive Control Block)
197 typedef struct _RCB
199 void *Next;
200 signed long Ref;
201 void *pDevice;
202 struct urb *pUrb;
203 SRxMgmtPacket sMngPacket;
204 struct sk_buff* skb;
205 BOOL bBoolInUse;
207 } RCB, *PRCB;
209 // used to track bulk out irps
210 typedef struct _USB_SEND_CONTEXT {
211 void *pDevice;
212 struct sk_buff *pPacket;
213 struct urb *pUrb;
214 unsigned int uBufLen;
215 CONTEXT_TYPE Type;
216 SEthernetHeader sEthHeader;
217 void *Next;
218 BOOL bBoolInUse;
219 unsigned char Data[MAX_TOTAL_SIZE_WITH_ALL_HEADERS];
220 } USB_SEND_CONTEXT, *PUSB_SEND_CONTEXT;
222 /* structure got from configuration file as user-desired default settings */
223 typedef struct _DEFAULT_CONFIG {
224 signed int ZoneType;
225 signed int eConfigMode;
226 signed int eAuthenMode; /* open/wep/wpa */
227 signed int bShareKeyAlgorithm; /* open-open/{open,wep}-sharekey */
228 signed int keyidx; /* wepkey index */
229 signed int eEncryptionStatus;
230 } DEFAULT_CONFIG, *PDEFAULT_CONFIG;
233 // Structure to keep track of usb interrupt packets
235 typedef struct {
236 unsigned int uDataLen;
237 PBYTE pDataBuf;
238 // struct urb *pUrb;
239 BOOL bInUse;
240 } INT_BUFFER, *PINT_BUFFER;
242 //0:11A 1:11B 2:11G
243 typedef enum _VIA_BB_TYPE
245 BB_TYPE_11A = 0,
246 BB_TYPE_11B,
247 BB_TYPE_11G
248 } VIA_BB_TYPE, *PVIA_BB_TYPE;
250 //0:11a,1:11b,2:11gb(only CCK in BasicRate),3:11ga(OFDM in Basic Rate)
251 typedef enum _VIA_PKT_TYPE
253 PK_TYPE_11A = 0,
254 PK_TYPE_11B,
255 PK_TYPE_11GB,
256 PK_TYPE_11GA
257 } VIA_PKT_TYPE, *PVIA_PKT_TYPE;
259 //++ NDIS related
261 typedef enum __DEVICE_NDIS_STATUS {
262 STATUS_SUCCESS = 0,
263 STATUS_FAILURE,
264 STATUS_RESOURCES,
265 STATUS_PENDING,
266 } DEVICE_NDIS_STATUS, *PDEVICE_NDIS_STATUS;
268 #define MAX_BSSIDINFO_4_PMKID 16
269 #define MAX_PMKIDLIST 5
270 //Flags for PMKID Candidate list structure
271 #define NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED 0x01
273 // PMKID Structures
274 typedef unsigned char NDIS_802_11_PMKID_VALUE[16];
277 typedef enum _NDIS_802_11_WEP_STATUS
279 Ndis802_11WEPEnabled,
280 Ndis802_11Encryption1Enabled = Ndis802_11WEPEnabled,
281 Ndis802_11WEPDisabled,
282 Ndis802_11EncryptionDisabled = Ndis802_11WEPDisabled,
283 Ndis802_11WEPKeyAbsent,
284 Ndis802_11Encryption1KeyAbsent = Ndis802_11WEPKeyAbsent,
285 Ndis802_11WEPNotSupported,
286 Ndis802_11EncryptionNotSupported = Ndis802_11WEPNotSupported,
287 Ndis802_11Encryption2Enabled,
288 Ndis802_11Encryption2KeyAbsent,
289 Ndis802_11Encryption3Enabled,
290 Ndis802_11Encryption3KeyAbsent
291 } NDIS_802_11_WEP_STATUS, *PNDIS_802_11_WEP_STATUS,
292 NDIS_802_11_ENCRYPTION_STATUS, *PNDIS_802_11_ENCRYPTION_STATUS;
295 typedef enum _NDIS_802_11_STATUS_TYPE
297 Ndis802_11StatusType_Authentication,
298 Ndis802_11StatusType_MediaStreamMode,
299 Ndis802_11StatusType_PMKID_CandidateList,
300 Ndis802_11StatusTypeMax // not a real type, defined as an upper bound
301 } NDIS_802_11_STATUS_TYPE, *PNDIS_802_11_STATUS_TYPE;
303 //Added new types for PMKID Candidate lists.
304 typedef struct _PMKID_CANDIDATE {
305 NDIS_802_11_MAC_ADDRESS BSSID;
306 unsigned long Flags;
307 } PMKID_CANDIDATE, *PPMKID_CANDIDATE;
310 typedef struct _BSSID_INFO
312 NDIS_802_11_MAC_ADDRESS BSSID;
313 NDIS_802_11_PMKID_VALUE PMKID;
314 } BSSID_INFO, *PBSSID_INFO;
316 typedef struct tagSPMKID {
317 unsigned long Length;
318 unsigned long BSSIDInfoCount;
319 BSSID_INFO BSSIDInfo[MAX_BSSIDINFO_4_PMKID];
320 } SPMKID, *PSPMKID;
322 typedef struct tagSPMKIDCandidateEvent {
323 NDIS_802_11_STATUS_TYPE StatusType;
324 unsigned long Version; /* Version of the structure */
325 unsigned long NumCandidates; /* No. of pmkid candidates */
326 PMKID_CANDIDATE CandidateList[MAX_PMKIDLIST];
327 } SPMKIDCandidateEvent, *PSPMKIDCandidateEvent;
329 //--
331 //++ 802.11h related
332 #define MAX_QUIET_COUNT 8
334 typedef struct tagSQuietControl {
335 BOOL bEnable;
336 DWORD dwStartTime;
337 BYTE byPeriod;
338 WORD wDuration;
339 } SQuietControl, *PSQuietControl;
341 //--
344 // The receive duplicate detection cache entry
345 typedef struct tagSCacheEntry{
346 WORD wFmSequence;
347 BYTE abyAddr2[ETH_ALEN];
348 WORD wFrameCtl;
349 } SCacheEntry, *PSCacheEntry;
351 typedef struct tagSCache{
352 /* The receive cache is updated circularly. The next entry to be written is
353 * indexed by the "InPtr".
355 unsigned int uInPtr; /* Place to use next */
356 SCacheEntry asCacheEntry[DUPLICATE_RX_CACHE_LENGTH];
357 } SCache, *PSCache;
359 #define CB_MAX_RX_FRAG 64
360 // DeFragment Control Block, used for collecting fragments prior to reassembly
361 typedef struct tagSDeFragControlBlock
363 WORD wSequence;
364 WORD wFragNum;
365 BYTE abyAddr2[ETH_ALEN];
366 unsigned int uLifetime;
367 struct sk_buff* skb;
368 PBYTE pbyRxBuffer;
369 unsigned int cbFrameLength;
370 BOOL bInUse;
371 } SDeFragControlBlock, *PSDeFragControlBlock;
375 //flags for options
376 #define DEVICE_FLAGS_UNPLUG 0x00000001UL
377 #define DEVICE_FLAGS_PREAMBLE_TYPE 0x00000002UL
378 #define DEVICE_FLAGS_OP_MODE 0x00000004UL
379 #define DEVICE_FLAGS_PS_MODE 0x00000008UL
380 #define DEVICE_FLAGS_80211h_MODE 0x00000010UL
382 //flags for driver status
383 #define DEVICE_FLAGS_OPENED 0x00010000UL
384 #define DEVICE_FLAGS_WOL_ENABLED 0x00080000UL
385 //flags for capbilities
386 #define DEVICE_FLAGS_TX_ALIGN 0x01000000UL
387 #define DEVICE_FLAGS_HAVE_CAM 0x02000000UL
388 #define DEVICE_FLAGS_FLOW_CTRL 0x04000000UL
390 //flags for MII status
391 #define DEVICE_LINK_FAIL 0x00000001UL
392 #define DEVICE_SPEED_10 0x00000002UL
393 #define DEVICE_SPEED_100 0x00000004UL
394 #define DEVICE_SPEED_1000 0x00000008UL
395 #define DEVICE_DUPLEX_FULL 0x00000010UL
396 #define DEVICE_AUTONEG_ENABLE 0x00000020UL
397 #define DEVICE_FORCED_BY_EEPROM 0x00000040UL
398 //for device_set_media_duplex
399 #define DEVICE_LINK_CHANGE 0x00000001UL
402 typedef struct __device_opt {
403 int nRxDescs0; //Number of RX descriptors0
404 int nTxDescs0; //Number of TX descriptors 0, 1, 2, 3
405 int rts_thresh; //rts threshold
406 int frag_thresh;
407 int OpMode;
408 int data_rate;
409 int channel_num;
410 int short_retry;
411 int long_retry;
412 int bbp_type;
413 u32 flags;
414 } OPTIONS, *POPTIONS;
417 typedef struct __device_info {
419 // netdev
420 struct usb_device* usb;
421 struct net_device* dev;
422 struct net_device_stats stats;
424 OPTIONS sOpts;
426 struct tasklet_struct CmdWorkItem;
427 struct tasklet_struct EventWorkItem;
428 struct tasklet_struct ReadWorkItem;
429 struct tasklet_struct RxMngWorkItem;
431 u32 rx_buf_sz;
432 int multicast_limit;
433 BYTE byRxMode;
435 spinlock_t lock;
437 u32 rx_bytes;
439 BYTE byRevId;
441 u32 flags;
442 unsigned long Flags;
444 SCache sDupRxCache;
446 SDeFragControlBlock sRxDFCB[CB_MAX_RX_FRAG];
447 unsigned int cbDFCB;
448 unsigned int cbFreeDFCB;
449 unsigned int uCurrentDFCBIdx;
451 // +++USB
453 struct urb *pControlURB;
454 struct urb *pInterruptURB;
455 struct usb_ctrlrequest sUsbCtlRequest;
457 unsigned int int_interval;
459 // Variables to track resources for the BULK In Pipe
461 PRCB pRCBMem;
462 PRCB apRCB[CB_MAX_RX_DESC];
463 unsigned int cbRD;
464 PRCB FirstRecvFreeList;
465 PRCB LastRecvFreeList;
466 unsigned int NumRecvFreeList;
467 PRCB FirstRecvMngList;
468 PRCB LastRecvMngList;
469 unsigned int NumRecvMngList;
470 BOOL bIsRxWorkItemQueued;
471 BOOL bIsRxMngWorkItemQueued;
472 unsigned long ulRcvRefCount; /* packets that have not returned back */
475 // Variables to track resources for the BULK Out Pipe
478 PUSB_SEND_CONTEXT apTD[CB_MAX_TX_DESC];
479 unsigned int cbTD;
482 // Variables to track resources for the Interript In Pipe
484 INT_BUFFER intBuf;
485 BOOL fKillEventPollingThread;
486 BOOL bEventAvailable;
489 //default config from file by user setting
490 DEFAULT_CONFIG config_file;
494 // Statistic for USB
495 // protect with spinlock
496 unsigned long ulBulkInPosted;
497 unsigned long ulBulkInError;
498 unsigned long ulBulkInContCRCError;
499 unsigned long ulBulkInBytesRead;
501 unsigned long ulBulkOutPosted;
502 unsigned long ulBulkOutError;
503 unsigned long ulBulkOutContCRCError;
504 unsigned long ulBulkOutBytesWrite;
506 unsigned long ulIntInPosted;
507 unsigned long ulIntInError;
508 unsigned long ulIntInContCRCError;
509 unsigned long ulIntInBytesRead;
512 // Version control
513 WORD wFirmwareVersion;
514 BYTE byLocalID;
515 BYTE byRFType;
516 BYTE byBBRxConf;
519 BYTE byZoneType;
520 BOOL bZoneRegExist;
522 BYTE byOriginalZonetype;
524 BOOL bLinkPass; // link status: OK or fail
525 BYTE abyCurrentNetAddr[ETH_ALEN];
526 BYTE abyPermanentNetAddr[ETH_ALEN];
527 // SW network address
528 /* u8 abySoftwareNetAddr[ETH_ALEN]; */
529 BOOL bExistSWNetAddr;
531 // Adapter statistics
532 SStatCounter scStatistic;
533 // 802.11 counter
534 SDot11Counters s802_11Counter;
537 // Maintain statistical debug info.
539 unsigned long packetsReceived;
540 unsigned long packetsReceivedDropped;
541 unsigned long packetsReceivedOverflow;
542 unsigned long packetsSent;
543 unsigned long packetsSentDropped;
544 unsigned long SendContextsInUse;
545 unsigned long RcvBuffersInUse;
548 // 802.11 management
549 SMgmtObject sMgmtObj;
551 QWORD qwCurrTSF;
552 unsigned int cbBulkInMax;
553 BOOL bPSRxBeacon;
555 // 802.11 MAC specific
556 unsigned int uCurrRSSI;
557 BYTE byCurrSQ;
560 //Antenna Diversity
561 BOOL bTxRxAntInv;
562 DWORD dwRxAntennaSel;
563 DWORD dwTxAntennaSel;
564 BYTE byAntennaCount;
565 BYTE byRxAntennaMode;
566 BYTE byTxAntennaMode;
567 BYTE byRadioCtl;
568 BYTE bHWRadioOff;
570 //SQ3 functions for antenna diversity
571 struct timer_list TimerSQ3Tmax1;
572 struct timer_list TimerSQ3Tmax2;
573 struct timer_list TimerSQ3Tmax3;
575 BOOL bDiversityRegCtlON;
576 BOOL bDiversityEnable;
577 unsigned long ulDiversityNValue;
578 unsigned long ulDiversityMValue;
579 BYTE byTMax;
580 BYTE byTMax2;
581 BYTE byTMax3;
582 unsigned long ulSQ3TH;
584 unsigned long uDiversityCnt;
585 BYTE byAntennaState;
586 unsigned long ulRatio_State0;
587 unsigned long ulRatio_State1;
588 unsigned long ulSQ3_State0;
589 unsigned long ulSQ3_State1;
591 unsigned long aulSQ3Val[MAX_RATE];
592 unsigned long aulPktNum[MAX_RATE];
594 /* IFS & Cw */
595 unsigned int uSIFS; /* Current SIFS */
596 unsigned int uDIFS; /* Current DIFS */
597 unsigned int uEIFS; /* Current EIFS */
598 unsigned int uSlot; /* Current SlotTime */
599 unsigned int uCwMin; /* Current CwMin */
600 unsigned int uCwMax; /* CwMax is fixed on 1023 */
602 // PHY parameter
603 BYTE bySIFS;
604 BYTE byDIFS;
605 BYTE byEIFS;
606 BYTE bySlot;
607 BYTE byCWMaxMin;
609 // Rate
610 VIA_BB_TYPE byBBType; //0: 11A, 1:11B, 2:11G
611 VIA_PKT_TYPE byPacketType; //0:11a,1:11b,2:11gb(only CCK in BasicRate),3:11ga(OFDM in Basic Rate)
612 WORD wBasicRate;
613 BYTE byACKRate;
614 BYTE byTopOFDMBasicRate;
615 BYTE byTopCCKBasicRate;
618 DWORD dwAotoRateTxOkCnt;
619 DWORD dwAotoRateTxFailCnt;
620 DWORD dwErrorRateThreshold[13];
621 DWORD dwTPTable[MAX_RATE];
622 BYTE abyEEPROM[EEP_MAX_CONTEXT_SIZE]; //DWORD alignment
624 BYTE byMinChannel;
625 BYTE byMaxChannel;
626 unsigned int uConnectionRate;
628 BYTE byPreambleType;
629 BYTE byShortPreamble;
630 // CARD_PHY_TYPE
631 BYTE eConfigPHYMode;
633 // For RF Power table
634 BYTE byCCKPwr;
635 BYTE byOFDMPwrG;
636 BYTE byOFDMPwrA;
637 BYTE byCurPwr;
638 BYTE abyCCKPwrTbl[14];
639 BYTE abyOFDMPwrTbl[14];
640 BYTE abyOFDMAPwrTbl[42];
642 WORD wCurrentRate;
643 WORD wRTSThreshold;
644 WORD wFragmentationThreshold;
645 BYTE byShortRetryLimit;
646 BYTE byLongRetryLimit;
647 CARD_OP_MODE eOPMode;
648 BOOL bBSSIDFilter;
649 WORD wMaxTransmitMSDULifetime;
650 BYTE abyBSSID[ETH_ALEN];
651 BYTE abyDesireBSSID[ETH_ALEN];
652 WORD wCTSDuration; // update while speed change
653 WORD wACKDuration; // update while speed change
654 WORD wRTSTransmitLen; // update while speed change
655 BYTE byRTSServiceField; // update while speed change
656 BYTE byRTSSignalField; // update while speed change
658 DWORD dwMaxReceiveLifetime; // dot11MaxReceiveLifetime
660 BOOL bCCK;
661 BOOL bEncryptionEnable;
662 BOOL bLongHeader;
663 BOOL bSoftwareGenCrcErr;
664 BOOL bShortSlotTime;
665 BOOL bProtectMode;
666 BOOL bNonERPPresent;
667 BOOL bBarkerPreambleMd;
669 BYTE byERPFlag;
670 WORD wUseProtectCntDown;
672 BOOL bRadioControlOff;
673 BOOL bRadioOff;
675 // Power save
676 BOOL bEnablePSMode;
677 WORD wListenInterval;
678 BOOL bPWBitOn;
679 WMAC_POWER_MODE ePSMode;
680 unsigned long ulPSModeWaitTx;
681 BOOL bPSModeTxBurst;
683 // Beacon releated
684 WORD wSeqCounter;
685 BOOL bBeaconBufReady;
686 BOOL bBeaconSent;
687 BOOL bFixRate;
688 BYTE byCurrentCh;
689 unsigned int uScanTime;
691 CMD_STATE eCommandState;
693 CMD_CODE eCommand;
694 BOOL bBeaconTx;
695 BYTE byScanBBType;
697 BOOL bStopBeacon;
698 BOOL bStopDataPkt;
699 BOOL bStopTx0Pkt;
700 unsigned int uAutoReConnectTime;
701 unsigned int uIsroamingTime;
703 // 802.11 counter
705 CMD_ITEM eCmdQueue[CMD_Q_SIZE];
706 unsigned int uCmdDequeueIdx;
707 unsigned int uCmdEnqueueIdx;
708 unsigned int cbFreeCmdQueue;
709 BOOL bCmdRunning;
710 BOOL bCmdClear;
711 BOOL bNeedRadioOFF;
713 BOOL bEnableRoaming;
714 BOOL bIsRoaming;
715 BOOL bFastRoaming;
716 BYTE bSameBSSMaxNum;
717 BYTE bSameBSSCurNum;
718 BOOL bRoaming;
719 BOOL b11hEable;
720 unsigned long ulTxPower;
722 // Encryption
723 NDIS_802_11_WEP_STATUS eEncryptionStatus;
724 BOOL bTransmitKey;
726 //mike add :save old Encryption
727 NDIS_802_11_WEP_STATUS eOldEncryptionStatus;
729 SKeyManagement sKey;
730 DWORD dwIVCounter;
733 RC4Ext SBox;
734 BYTE abyPRNG[WLAN_WEPMAX_KEYLEN+3];
735 BYTE byKeyIndex;
737 BOOL bAES;
738 BYTE byCntMeasure;
740 unsigned int uKeyLength;
741 BYTE abyKey[WLAN_WEP232_KEYLEN];
743 // for AP mode
744 unsigned int uAssocCount;
745 BOOL bMoreData;
747 // QoS
748 BOOL bGrpAckPolicy;
751 BYTE byAutoFBCtrl;
753 BOOL bTxMICFail;
754 BOOL bRxMICFail;
757 // For Update BaseBand VGA Gain Offset
758 BOOL bUpdateBBVGA;
759 unsigned int uBBVGADiffCount;
760 BYTE byBBVGANew;
761 BYTE byBBVGACurrent;
762 BYTE abyBBVGA[BB_VGA_LEVEL];
763 signed long ldBmThreshold[BB_VGA_LEVEL];
765 BYTE byBBPreEDRSSI;
766 BYTE byBBPreEDIndex;
769 BOOL bRadioCmd;
770 DWORD dwDiagRefCount;
772 // For FOE Tuning
773 BYTE byFOETuning;
775 // For Auto Power Tunning
777 BYTE byAutoPwrTunning;
779 // BaseBand Loopback Use
780 BYTE byBBCR4d;
781 BYTE byBBCRc9;
782 BYTE byBBCR88;
783 BYTE byBBCR09;
785 // command timer
786 struct timer_list sTimerCommand;
788 struct timer_list sTimerTxData;
789 unsigned long nTxDataTimeCout;
790 BOOL fTxDataInSleep;
791 BOOL IsTxDataTrigger;
793 BOOL fWPA_Authened; //is WPA/WPA-PSK or WPA2/WPA2-PSK authen??
794 BYTE byReAssocCount; //mike add:re-association retry times!
795 BYTE byLinkWaitCount;
797 SEthernetHeader sTxEthHeader;
798 SEthernetHeader sRxEthHeader;
799 BYTE abyBroadcastAddr[ETH_ALEN];
800 BYTE abySNAP_RFC1042[ETH_ALEN];
801 BYTE abySNAP_Bridgetunnel[ETH_ALEN];
803 // Pre-Authentication & PMK cache
804 SPMKID gsPMKID;
805 SPMKIDCandidateEvent gsPMKIDCandidate;
808 // for 802.11h
809 BOOL b11hEnable;
811 BOOL bChannelSwitch;
812 BYTE byNewChannel;
813 BYTE byChannelSwitchCount;
815 //WPA supplicant daemon
816 struct net_device *wpadev;
817 BOOL bWPADEVUp;
818 struct sk_buff *skb;
819 //--
821 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
822 BOOL bwextstep0;
823 BOOL bwextstep1;
824 BOOL bwextstep2;
825 BOOL bwextstep3;
826 BOOL bWPASuppWextEnabled;
827 #endif
829 #ifdef HOSTAP
830 // user space daemon: hostapd, is used for HOSTAP
831 BOOL bEnableHostapd;
832 BOOL bEnable8021x;
833 BOOL bEnableHostWEP;
834 struct net_device *apdev;
835 int (*tx_80211)(struct sk_buff *skb, struct net_device *dev);
836 #endif
837 unsigned int uChannel;
839 struct iw_statistics wstats; // wireless stats
840 BOOL bCommit;
842 } DEVICE_INFO, *PSDevice;
847 #define EnqueueRCB(_Head, _Tail, _RCB) \
849 if (!_Head) { \
850 _Head = _RCB; \
852 else { \
853 _Tail->Next = _RCB; \
855 _RCB->Next = NULL; \
856 _Tail = _RCB; \
859 #define DequeueRCB(Head, Tail) \
861 PRCB RCB = Head; \
862 if (!RCB->Next) { \
863 Tail = NULL; \
865 Head = RCB->Next; \
869 #define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
870 if ((uVar) >= ((uModulo) - 1)) \
871 (uVar) = 0; \
872 else \
873 (uVar)++; \
877 #define fMP_RESET_IN_PROGRESS 0x00000001
878 #define fMP_DISCONNECTED 0x00000002
879 #define fMP_HALT_IN_PROGRESS 0x00000004
880 #define fMP_SURPRISE_REMOVED 0x00000008
881 #define fMP_RECV_LOOKASIDE 0x00000010
882 #define fMP_INIT_IN_PROGRESS 0x00000020
883 #define fMP_SEND_SIDE_RESOURCE_ALLOCATED 0x00000040
884 #define fMP_RECV_SIDE_RESOURCE_ALLOCATED 0x00000080
885 #define fMP_POST_READS 0x00000100
886 #define fMP_POST_WRITES 0x00000200
887 #define fMP_CONTROL_READS 0x00000400
888 #define fMP_CONTROL_WRITES 0x00000800
890 #define MP_SET_FLAG(_M, _F) ((_M)->Flags |= (_F))
891 #define MP_CLEAR_FLAG(_M, _F) ((_M)->Flags &= ~(_F))
892 #define MP_TEST_FLAGS(_M, _F) (((_M)->Flags & (_F)) == (_F))
894 #define MP_IS_READY(_M) (((_M)->Flags & \
895 (fMP_DISCONNECTED | fMP_RESET_IN_PROGRESS | fMP_HALT_IN_PROGRESS | fMP_INIT_IN_PROGRESS | fMP_SURPRISE_REMOVED)) == 0)
897 /*--------------------- Export Functions --------------------------*/
899 /* BOOL device_dma0_xmit(PSDevice pDevice, struct sk_buff *skb,
900 * unsigned int uNodeIndex);
902 BOOL device_alloc_frag_buf(PSDevice pDevice, PSDeFragControlBlock pDeF);
904 #endif