staging: vt6655: do not use PCI resources before pci_enable_device()
[deliverable/linux.git] / drivers / staging / vt6656 / device.h
CommitLineData
92b96797
FB
1/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
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.
9 *
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.
14 *
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.
18 *
19 * File: device.h
20 *
21 * Purpose: MAC Data structure
22 *
23 * Author: Tevin Chen
24 *
25 * Date: Mar 17, 1997
26 *
27 */
28
29#ifndef __DEVICE_H__
30#define __DEVICE_H__
31
92b96797 32#include <linux/module.h>
92b96797
FB
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>
92b96797
FB
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
92b96797
FB
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>
92b96797 68#include <net/iw_handler.h> // New driver API
92b96797 69
92b96797
FB
70#ifndef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
71#define WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
72#endif
92b96797 73
92b96797
FB
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
92b96797
FB
81
82//
83// device specific
84//
85
92b96797 86#include "device_cfg.h"
92b96797 87#include "ttype.h"
92b96797 88#include "80211hdr.h"
92b96797 89#include "tether.h"
92b96797 90#include "wmgr.h"
92b96797 91#include "wcmd.h"
92b96797 92#include "mib.h"
92b96797 93#include "srom.h"
92b96797 94#include "rc4.h"
92b96797 95#include "desc.h"
92b96797 96#include "key.h"
92b96797 97#include "card.h"
92b96797
FB
98
99/*--------------------- Export Definitions -------------------------*/
5008c456 100#define VNT_USB_VENDOR_ID 0x160a
92b96797
FB
101#define VNT_USB_PRODUCT_ID 0x3184
102
103#define MAC_MAX_CONTEXT_REG (256+128)
104
105#define MAX_MULTICAST_ADDRESS_NUM 32
9a0e756c 106#define MULTICAST_ADDRESS_LIST_SIZE (MAX_MULTICAST_ADDRESS_NUM * ETH_ALEN)
92b96797 107
92b96797
FB
108//#define OP_MODE_INFRASTRUCTURE 0
109//#define OP_MODE_ADHOC 1
110//#define OP_MODE_AP 2
111
112#define DUPLICATE_RX_CACHE_LENGTH 5
113
114#define NUM_KEY_ENTRY 11
115
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
122
123#define KEYSEL_WEP40 0
124#define KEYSEL_WEP104 1
125#define KEYSEL_TKIP 2
126#define KEYSEL_CCMP 3
127
92b96797
FB
128#define AUTO_FB_NONE 0
129#define AUTO_FB_0 1
130#define AUTO_FB_1 2
131
132#define FB_RATE0 0
133#define FB_RATE1 1
134
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
146
147
148#define MAXCHECKHANGCNT 4
149
150//Packet type
151#define TX_PKT_UNI 0x00
152#define TX_PKT_MULTI 0x01
153#define TX_PKT_BROAD 0x02
154
155#define BB_VGA_LEVEL 4
156#define BB_VGA_CHANGE_THRESHOLD 3
157
92b96797
FB
158#ifndef RUN_AT
159#define RUN_AT(x) (jiffies+(x))
160#endif
161
162// DMA related
163#define RESERV_AC0DMA 4
164
165#define PRIVATE_Message 0
166
167/*--------------------- Export Types ------------------------------*/
168
d9d1ccb5
AM
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); }
92b96797
FB
171
172typedef enum __device_msg_level {
d9d1ccb5
AM
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. */
92b96797
FB
178} DEVICE_MSG_LEVEL, *PDEVICE_MSG_LEVEL;
179
180typedef enum __device_init_type {
d9d1ccb5
AM
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 */
92b96797
FB
184} DEVICE_INIT_TYPE, *PDEVICE_INIT_TYPE;
185
92b96797
FB
186//USB
187
188//
189// Enum of context types for SendPacket
190//
191typedef enum _CONTEXT_TYPE {
192 CONTEXT_DATA_PACKET = 1,
193 CONTEXT_MGMT_PACKET
194} CONTEXT_TYPE;
195
92b96797
FB
196// RCB (Receive Control Block)
197typedef struct _RCB
198{
8611a29a 199 void *Next;
213d2e93 200 signed long Ref;
8611a29a 201 void *pDevice;
92b96797
FB
202 struct urb *pUrb;
203 SRxMgmtPacket sMngPacket;
204 struct sk_buff* skb;
205 BOOL bBoolInUse;
206
207} RCB, *PRCB;
208
92b96797
FB
209// used to track bulk out irps
210typedef struct _USB_SEND_CONTEXT {
8611a29a 211 void *pDevice;
92b96797
FB
212 struct sk_buff *pPacket;
213 struct urb *pUrb;
cc856e61 214 unsigned int uBufLen;
92b96797
FB
215 CONTEXT_TYPE Type;
216 SEthernetHeader sEthHeader;
8611a29a 217 void *Next;
92b96797 218 BOOL bBoolInUse;
cc856e61 219 unsigned char Data[MAX_TOTAL_SIZE_WITH_ALL_HEADERS];
92b96797
FB
220} USB_SEND_CONTEXT, *PUSB_SEND_CONTEXT;
221
213d2e93
AM
222/* structure got from configuration file as user-desired default settings */
223typedef 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;
92b96797
FB
231
232//
233// Structure to keep track of usb interrupt packets
234//
235typedef struct {
cc856e61 236 unsigned int uDataLen;
92b96797
FB
237 PBYTE pDataBuf;
238// struct urb *pUrb;
239 BOOL bInUse;
240} INT_BUFFER, *PINT_BUFFER;
241
92b96797
FB
242//0:11A 1:11B 2:11G
243typedef enum _VIA_BB_TYPE
244{
d9d1ccb5 245 BB_TYPE_11A = 0,
92b96797
FB
246 BB_TYPE_11B,
247 BB_TYPE_11G
248} VIA_BB_TYPE, *PVIA_BB_TYPE;
249
250//0:11a,1:11b,2:11gb(only CCK in BasicRate),3:11ga(OFDM in Basic Rate)
251typedef enum _VIA_PKT_TYPE
252{
d9d1ccb5 253 PK_TYPE_11A = 0,
92b96797
FB
254 PK_TYPE_11B,
255 PK_TYPE_11GB,
256 PK_TYPE_11GA
257} VIA_PKT_TYPE, *PVIA_PKT_TYPE;
258
92b96797
FB
259//++ NDIS related
260
261#define NDIS_STATUS int
92b96797
FB
262
263typedef enum __DEVICE_NDIS_STATUS {
d9d1ccb5 264 STATUS_SUCCESS = 0,
92b96797
FB
265 STATUS_FAILURE,
266 STATUS_RESOURCES,
267 STATUS_PENDING,
268} DEVICE_NDIS_STATUS, *PDEVICE_NDIS_STATUS;
269
270
271#define MAX_BSSIDINFO_4_PMKID 16
272#define MAX_PMKIDLIST 5
273//Flags for PMKID Candidate list structure
274#define NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED 0x01
275
276// PMKID Structures
cc856e61 277typedef unsigned char NDIS_802_11_PMKID_VALUE[16];
92b96797
FB
278
279
280typedef enum _NDIS_802_11_WEP_STATUS
281{
282 Ndis802_11WEPEnabled,
283 Ndis802_11Encryption1Enabled = Ndis802_11WEPEnabled,
284 Ndis802_11WEPDisabled,
285 Ndis802_11EncryptionDisabled = Ndis802_11WEPDisabled,
286 Ndis802_11WEPKeyAbsent,
287 Ndis802_11Encryption1KeyAbsent = Ndis802_11WEPKeyAbsent,
288 Ndis802_11WEPNotSupported,
289 Ndis802_11EncryptionNotSupported = Ndis802_11WEPNotSupported,
290 Ndis802_11Encryption2Enabled,
291 Ndis802_11Encryption2KeyAbsent,
292 Ndis802_11Encryption3Enabled,
293 Ndis802_11Encryption3KeyAbsent
294} NDIS_802_11_WEP_STATUS, *PNDIS_802_11_WEP_STATUS,
295 NDIS_802_11_ENCRYPTION_STATUS, *PNDIS_802_11_ENCRYPTION_STATUS;
296
297
298typedef enum _NDIS_802_11_STATUS_TYPE
299{
300 Ndis802_11StatusType_Authentication,
301 Ndis802_11StatusType_MediaStreamMode,
302 Ndis802_11StatusType_PMKID_CandidateList,
303 Ndis802_11StatusTypeMax // not a real type, defined as an upper bound
304} NDIS_802_11_STATUS_TYPE, *PNDIS_802_11_STATUS_TYPE;
305
306//Added new types for PMKID Candidate lists.
307typedef struct _PMKID_CANDIDATE {
308 NDIS_802_11_MAC_ADDRESS BSSID;
cc856e61 309 unsigned long Flags;
92b96797
FB
310} PMKID_CANDIDATE, *PPMKID_CANDIDATE;
311
312
313typedef struct _BSSID_INFO
314{
315 NDIS_802_11_MAC_ADDRESS BSSID;
316 NDIS_802_11_PMKID_VALUE PMKID;
317} BSSID_INFO, *PBSSID_INFO;
318
319typedef struct tagSPMKID {
cc856e61
AM
320 unsigned long Length;
321 unsigned long BSSIDInfoCount;
92b96797
FB
322 BSSID_INFO BSSIDInfo[MAX_BSSIDINFO_4_PMKID];
323} SPMKID, *PSPMKID;
324
325typedef struct tagSPMKIDCandidateEvent {
326 NDIS_802_11_STATUS_TYPE StatusType;
cc856e61
AM
327 unsigned long Version; /* Version of the structure */
328 unsigned long NumCandidates; /* No. of pmkid candidates */
92b96797 329 PMKID_CANDIDATE CandidateList[MAX_PMKIDLIST];
193a823c 330} SPMKIDCandidateEvent, *PSPMKIDCandidateEvent;
92b96797
FB
331
332//--
333
334//++ 802.11h related
335#define MAX_QUIET_COUNT 8
336
337typedef struct tagSQuietControl {
338 BOOL bEnable;
339 DWORD dwStartTime;
340 BYTE byPeriod;
341 WORD wDuration;
193a823c 342} SQuietControl, *PSQuietControl;
92b96797
FB
343
344//--
345
346
347// The receive duplicate detection cache entry
348typedef struct tagSCacheEntry{
349 WORD wFmSequence;
9a0e756c 350 BYTE abyAddr2[ETH_ALEN];
92b96797
FB
351 WORD wFrameCtl;
352} SCacheEntry, *PSCacheEntry;
353
354typedef struct tagSCache{
355/* The receive cache is updated circularly. The next entry to be written is
356 * indexed by the "InPtr".
357*/
cc856e61 358 unsigned int uInPtr; /* Place to use next */
92b96797
FB
359 SCacheEntry asCacheEntry[DUPLICATE_RX_CACHE_LENGTH];
360} SCache, *PSCache;
361
362#define CB_MAX_RX_FRAG 64
363// DeFragment Control Block, used for collecting fragments prior to reassembly
364typedef struct tagSDeFragControlBlock
365{
366 WORD wSequence;
367 WORD wFragNum;
9a0e756c 368 BYTE abyAddr2[ETH_ALEN];
cc856e61 369 unsigned int uLifetime;
92b96797
FB
370 struct sk_buff* skb;
371 PBYTE pbyRxBuffer;
cc856e61 372 unsigned int cbFrameLength;
92b96797 373 BOOL bInUse;
193a823c 374} SDeFragControlBlock, *PSDeFragControlBlock;
92b96797
FB
375
376
377
378//flags for options
379#define DEVICE_FLAGS_UNPLUG 0x00000001UL
380#define DEVICE_FLAGS_PREAMBLE_TYPE 0x00000002UL
381#define DEVICE_FLAGS_OP_MODE 0x00000004UL
382#define DEVICE_FLAGS_PS_MODE 0x00000008UL
383#define DEVICE_FLAGS_80211h_MODE 0x00000010UL
384
385//flags for driver status
386#define DEVICE_FLAGS_OPENED 0x00010000UL
387#define DEVICE_FLAGS_WOL_ENABLED 0x00080000UL
388//flags for capbilities
389#define DEVICE_FLAGS_TX_ALIGN 0x01000000UL
390#define DEVICE_FLAGS_HAVE_CAM 0x02000000UL
391#define DEVICE_FLAGS_FLOW_CTRL 0x04000000UL
392
393//flags for MII status
394#define DEVICE_LINK_FAIL 0x00000001UL
395#define DEVICE_SPEED_10 0x00000002UL
396#define DEVICE_SPEED_100 0x00000004UL
397#define DEVICE_SPEED_1000 0x00000008UL
398#define DEVICE_DUPLEX_FULL 0x00000010UL
399#define DEVICE_AUTONEG_ENABLE 0x00000020UL
400#define DEVICE_FORCED_BY_EEPROM 0x00000040UL
401//for device_set_media_duplex
402#define DEVICE_LINK_CHANGE 0x00000001UL
403
404
405typedef struct __device_opt {
406 int nRxDescs0; //Number of RX descriptors0
407 int nTxDescs0; //Number of TX descriptors 0, 1, 2, 3
408 int rts_thresh; //rts threshold
409 int frag_thresh;
410 int OpMode;
411 int data_rate;
412 int channel_num;
413 int short_retry;
414 int long_retry;
415 int bbp_type;
659770d4 416 u32 flags;
92b96797
FB
417} OPTIONS, *POPTIONS;
418
419
420typedef struct __device_info {
421
422// netdev
423 struct usb_device* usb;
424 struct net_device* dev;
425 struct net_device_stats stats;
426
427 OPTIONS sOpts;
428
429 struct tasklet_struct CmdWorkItem;
430 struct tasklet_struct EventWorkItem;
431 struct tasklet_struct ReadWorkItem;
432 struct tasklet_struct RxMngWorkItem;
433
659770d4 434 u32 rx_buf_sz;
92b96797
FB
435 int multicast_limit;
436 BYTE byRxMode;
437
438 spinlock_t lock;
439
659770d4 440 u32 rx_bytes;
92b96797
FB
441
442 BYTE byRevId;
443
659770d4 444 u32 flags;
cc856e61 445 unsigned long Flags;
92b96797
FB
446
447 SCache sDupRxCache;
448
449 SDeFragControlBlock sRxDFCB[CB_MAX_RX_FRAG];
cc856e61
AM
450 unsigned int cbDFCB;
451 unsigned int cbFreeDFCB;
452 unsigned int uCurrentDFCBIdx;
92b96797
FB
453
454 // +++USB
455
456 struct urb *pControlURB;
457 struct urb *pInterruptURB;
458 struct usb_ctrlrequest sUsbCtlRequest;
459
cc856e61 460 unsigned int int_interval;
92b96797
FB
461 //
462 // Variables to track resources for the BULK In Pipe
463 //
464 PRCB pRCBMem;
465 PRCB apRCB[CB_MAX_RX_DESC];
cc856e61 466 unsigned int cbRD;
92b96797
FB
467 PRCB FirstRecvFreeList;
468 PRCB LastRecvFreeList;
cc856e61 469 unsigned int NumRecvFreeList;
92b96797
FB
470 PRCB FirstRecvMngList;
471 PRCB LastRecvMngList;
cc856e61 472 unsigned int NumRecvMngList;
92b96797
FB
473 BOOL bIsRxWorkItemQueued;
474 BOOL bIsRxMngWorkItemQueued;
cc856e61 475 unsigned long ulRcvRefCount; /* packets that have not returned back */
92b96797
FB
476
477 //
478 // Variables to track resources for the BULK Out Pipe
479 //
480
481 PUSB_SEND_CONTEXT apTD[CB_MAX_TX_DESC];
cc856e61 482 unsigned int cbTD;
92b96797
FB
483
484 //
485 // Variables to track resources for the Interript In Pipe
486 //
487 INT_BUFFER intBuf;
488 BOOL fKillEventPollingThread;
489 BOOL bEventAvailable;
490
491
492 //default config from file by user setting
493 DEFAULT_CONFIG config_file;
494
495
496 //
497 // Statistic for USB
498 // protect with spinlock
cc856e61
AM
499 unsigned long ulBulkInPosted;
500 unsigned long ulBulkInError;
501 unsigned long ulBulkInContCRCError;
502 unsigned long ulBulkInBytesRead;
92b96797 503
cc856e61
AM
504 unsigned long ulBulkOutPosted;
505 unsigned long ulBulkOutError;
506 unsigned long ulBulkOutContCRCError;
507 unsigned long ulBulkOutBytesWrite;
92b96797 508
cc856e61
AM
509 unsigned long ulIntInPosted;
510 unsigned long ulIntInError;
511 unsigned long ulIntInContCRCError;
512 unsigned long ulIntInBytesRead;
92b96797
FB
513
514
515 // Version control
516 WORD wFirmwareVersion;
517 BYTE byLocalID;
518 BYTE byRFType;
519 BYTE byBBRxConf;
520
521
522 BYTE byZoneType;
523 BOOL bZoneRegExist;
524
525 BYTE byOriginalZonetype;
526
527 BOOL bLinkPass; // link status: OK or fail
9a0e756c
AM
528 BYTE abyCurrentNetAddr[ETH_ALEN];
529 BYTE abyPermanentNetAddr[ETH_ALEN];
92b96797 530 // SW network address
9a0e756c 531 /* u8 abySoftwareNetAddr[ETH_ALEN]; */
92b96797
FB
532 BOOL bExistSWNetAddr;
533
534 // Adapter statistics
535 SStatCounter scStatistic;
536 // 802.11 counter
537 SDot11Counters s802_11Counter;
538
539 //
540 // Maintain statistical debug info.
541 //
cc856e61
AM
542 unsigned long packetsReceived;
543 unsigned long packetsReceivedDropped;
544 unsigned long packetsReceivedOverflow;
545 unsigned long packetsSent;
546 unsigned long packetsSentDropped;
547 unsigned long SendContextsInUse;
548 unsigned long RcvBuffersInUse;
92b96797
FB
549
550
551 // 802.11 management
552 SMgmtObject sMgmtObj;
553
554 QWORD qwCurrTSF;
cc856e61 555 unsigned int cbBulkInMax;
92b96797
FB
556 BOOL bPSRxBeacon;
557
558 // 802.11 MAC specific
cc856e61 559 unsigned int uCurrRSSI;
92b96797
FB
560 BYTE byCurrSQ;
561
562
563 //Antenna Diversity
564 BOOL bTxRxAntInv;
565 DWORD dwRxAntennaSel;
566 DWORD dwTxAntennaSel;
567 BYTE byAntennaCount;
568 BYTE byRxAntennaMode;
569 BYTE byTxAntennaMode;
570 BYTE byRadioCtl;
571 BYTE bHWRadioOff;
572
573 //SQ3 functions for antenna diversity
574 struct timer_list TimerSQ3Tmax1;
575 struct timer_list TimerSQ3Tmax2;
576 struct timer_list TimerSQ3Tmax3;
577
578 BOOL bDiversityRegCtlON;
579 BOOL bDiversityEnable;
cc856e61
AM
580 unsigned long ulDiversityNValue;
581 unsigned long ulDiversityMValue;
92b96797
FB
582 BYTE byTMax;
583 BYTE byTMax2;
584 BYTE byTMax3;
cc856e61 585 unsigned long ulSQ3TH;
92b96797 586
cc856e61 587 unsigned long uDiversityCnt;
92b96797 588 BYTE byAntennaState;
cc856e61
AM
589 unsigned long ulRatio_State0;
590 unsigned long ulRatio_State1;
591 unsigned long ulSQ3_State0;
592 unsigned long ulSQ3_State1;
593
594 unsigned long aulSQ3Val[MAX_RATE];
595 unsigned long aulPktNum[MAX_RATE];
596
597 /* IFS & Cw */
598 unsigned int uSIFS; /* Current SIFS */
599 unsigned int uDIFS; /* Current DIFS */
600 unsigned int uEIFS; /* Current EIFS */
601 unsigned int uSlot; /* Current SlotTime */
602 unsigned int uCwMin; /* Current CwMin */
603 unsigned int uCwMax; /* CwMax is fixed on 1023 */
604
92b96797
FB
605 // PHY parameter
606 BYTE bySIFS;
607 BYTE byDIFS;
608 BYTE byEIFS;
609 BYTE bySlot;
610 BYTE byCWMaxMin;
611
612 // Rate
613 VIA_BB_TYPE byBBType; //0: 11A, 1:11B, 2:11G
614 VIA_PKT_TYPE byPacketType; //0:11a,1:11b,2:11gb(only CCK in BasicRate),3:11ga(OFDM in Basic Rate)
615 WORD wBasicRate;
616 BYTE byACKRate;
617 BYTE byTopOFDMBasicRate;
618 BYTE byTopCCKBasicRate;
619
620
621 DWORD dwAotoRateTxOkCnt;
622 DWORD dwAotoRateTxFailCnt;
623 DWORD dwErrorRateThreshold[13];
624 DWORD dwTPTable[MAX_RATE];
625 BYTE abyEEPROM[EEP_MAX_CONTEXT_SIZE]; //DWORD alignment
626
627 BYTE byMinChannel;
628 BYTE byMaxChannel;
cc856e61 629 unsigned int uConnectionRate;
92b96797
FB
630
631 BYTE byPreambleType;
632 BYTE byShortPreamble;
633 // CARD_PHY_TYPE
634 BYTE eConfigPHYMode;
635
636 // For RF Power table
637 BYTE byCCKPwr;
638 BYTE byOFDMPwrG;
639 BYTE byOFDMPwrA;
640 BYTE byCurPwr;
641 BYTE abyCCKPwrTbl[14];
642 BYTE abyOFDMPwrTbl[14];
643 BYTE abyOFDMAPwrTbl[42];
644
645 WORD wCurrentRate;
646 WORD wRTSThreshold;
647 WORD wFragmentationThreshold;
648 BYTE byShortRetryLimit;
649 BYTE byLongRetryLimit;
650 CARD_OP_MODE eOPMode;
651 BOOL bBSSIDFilter;
652 WORD wMaxTransmitMSDULifetime;
9a0e756c
AM
653 BYTE abyBSSID[ETH_ALEN];
654 BYTE abyDesireBSSID[ETH_ALEN];
92b96797
FB
655 WORD wCTSDuration; // update while speed change
656 WORD wACKDuration; // update while speed change
657 WORD wRTSTransmitLen; // update while speed change
658 BYTE byRTSServiceField; // update while speed change
659 BYTE byRTSSignalField; // update while speed change
660
661 DWORD dwMaxReceiveLifetime; // dot11MaxReceiveLifetime
662
663 BOOL bCCK;
664 BOOL bEncryptionEnable;
665 BOOL bLongHeader;
666 BOOL bSoftwareGenCrcErr;
667 BOOL bShortSlotTime;
668 BOOL bProtectMode;
669 BOOL bNonERPPresent;
670 BOOL bBarkerPreambleMd;
671
672 BYTE byERPFlag;
673 WORD wUseProtectCntDown;
674
675 BOOL bRadioControlOff;
676 BOOL bRadioOff;
677
678 // Power save
679 BOOL bEnablePSMode;
680 WORD wListenInterval;
681 BOOL bPWBitOn;
682 WMAC_POWER_MODE ePSMode;
cc856e61 683 unsigned long ulPSModeWaitTx;
92b96797
FB
684 BOOL bPSModeTxBurst;
685
686 // Beacon releated
687 WORD wSeqCounter;
688 BOOL bBeaconBufReady;
689 BOOL bBeaconSent;
690 BOOL bFixRate;
691 BYTE byCurrentCh;
cc856e61 692 unsigned int uScanTime;
92b96797
FB
693
694 CMD_STATE eCommandState;
695
696 CMD_CODE eCommand;
697 BOOL bBeaconTx;
698 BYTE byScanBBType;
699
700 BOOL bStopBeacon;
701 BOOL bStopDataPkt;
702 BOOL bStopTx0Pkt;
cc856e61
AM
703 unsigned int uAutoReConnectTime;
704 unsigned int uIsroamingTime;
92b96797
FB
705
706 // 802.11 counter
707
708 CMD_ITEM eCmdQueue[CMD_Q_SIZE];
cc856e61
AM
709 unsigned int uCmdDequeueIdx;
710 unsigned int uCmdEnqueueIdx;
711 unsigned int cbFreeCmdQueue;
92b96797
FB
712 BOOL bCmdRunning;
713 BOOL bCmdClear;
714 BOOL bNeedRadioOFF;
715
716 BOOL bEnableRoaming; //DavidWang
717 BOOL bIsRoaming; //DavidWang
718 BOOL bFastRoaming; //DavidWang
719 BYTE bSameBSSMaxNum; //Davidwang
720 BYTE bSameBSSCurNum; //DavidWang
721 BOOL bRoaming;
722 BOOL b11hEable;
cc856e61 723 unsigned long ulTxPower;
92b96797
FB
724
725 // Encryption
726 NDIS_802_11_WEP_STATUS eEncryptionStatus;
727 BOOL bTransmitKey;
728
729//2007-0925-01<Add>by MikeLiu
730//mike add :save old Encryption
731 NDIS_802_11_WEP_STATUS eOldEncryptionStatus;
732
733 SKeyManagement sKey;
734 DWORD dwIVCounter;
735
736
737 RC4Ext SBox;
738 BYTE abyPRNG[WLAN_WEPMAX_KEYLEN+3];
739 BYTE byKeyIndex;
740
741 BOOL bAES;
742 BYTE byCntMeasure;
743
cc856e61 744 unsigned int uKeyLength;
92b96797
FB
745 BYTE abyKey[WLAN_WEP232_KEYLEN];
746
747 // for AP mode
cc856e61 748 unsigned int uAssocCount;
92b96797
FB
749 BOOL bMoreData;
750
751 // QoS
752 BOOL bGrpAckPolicy;
753
754
755 BYTE byAutoFBCtrl;
756
757 BOOL bTxMICFail;
758 BOOL bRxMICFail;
759
760
761 // For Update BaseBand VGA Gain Offset
762 BOOL bUpdateBBVGA;
cc856e61 763 unsigned int uBBVGADiffCount;
92b96797
FB
764 BYTE byBBVGANew;
765 BYTE byBBVGACurrent;
766 BYTE abyBBVGA[BB_VGA_LEVEL];
213d2e93 767 signed long ldBmThreshold[BB_VGA_LEVEL];
92b96797
FB
768
769 BYTE byBBPreEDRSSI;
770 BYTE byBBPreEDIndex;
771
772
773 BOOL bRadioCmd;
774 DWORD dwDiagRefCount;
775
776 // For FOE Tuning
777 BYTE byFOETuning;
778
779 // For Auto Power Tunning
780
781 BYTE byAutoPwrTunning;
782
783 // BaseBand Loopback Use
784 BYTE byBBCR4d;
785 BYTE byBBCRc9;
786 BYTE byBBCR88;
787 BYTE byBBCR09;
788
789 // command timer
790 struct timer_list sTimerCommand;
791
92b96797 792 struct timer_list sTimerTxData;
cc856e61 793 unsigned long nTxDataTimeCout;
92b96797
FB
794 BOOL fTxDataInSleep;
795 BOOL IsTxDataTrigger;
92b96797 796
92b96797 797 BOOL fWPA_Authened; //is WPA/WPA-PSK or WPA2/WPA2-PSK authen??
92b96797
FB
798 BYTE byReAssocCount; //mike add:re-association retry times!
799 BYTE byLinkWaitCount;
800
801 SEthernetHeader sTxEthHeader;
802 SEthernetHeader sRxEthHeader;
9a0e756c
AM
803 BYTE abyBroadcastAddr[ETH_ALEN];
804 BYTE abySNAP_RFC1042[ETH_ALEN];
805 BYTE abySNAP_Bridgetunnel[ETH_ALEN];
92b96797
FB
806
807 // Pre-Authentication & PMK cache
808 SPMKID gsPMKID;
809 SPMKIDCandidateEvent gsPMKIDCandidate;
810
811
812 // for 802.11h
813 BOOL b11hEnable;
814
815 BOOL bChannelSwitch;
816 BYTE byNewChannel;
817 BYTE byChannelSwitchCount;
818
819 //WPA supplicant daemon
820 struct net_device *wpadev;
821 BOOL bWPADEVUp;
822 struct sk_buff *skb;
823 //--
824
825#ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
826 BOOL bwextstep0;
827 BOOL bwextstep1;
828 BOOL bwextstep2;
829 BOOL bwextstep3;
830 BOOL bWPASuppWextEnabled;
831#endif
832
833#ifdef HOSTAP
834 // user space daemon: hostapd, is used for HOSTAP
835 BOOL bEnableHostapd;
836 BOOL bEnable8021x;
837 BOOL bEnableHostWEP;
838 struct net_device *apdev;
839 int (*tx_80211)(struct sk_buff *skb, struct net_device *dev);
840#endif
cc856e61 841 unsigned int uChannel;
92b96797 842
92b96797 843 struct iw_statistics wstats; // wireless stats
92b96797
FB
844 BOOL bCommit;
845
846} DEVICE_INFO, *PSDevice;
847
848
849
850
851#define EnqueueRCB(_Head, _Tail, _RCB) \
852{ \
853 if (!_Head) { \
854 _Head = _RCB; \
855 } \
856 else { \
857 _Tail->Next = _RCB; \
858 } \
859 _RCB->Next = NULL; \
860 _Tail = _RCB; \
861}
862
863#define DequeueRCB(Head, Tail) \
864{ \
865 PRCB RCB = Head; \
866 if (!RCB->Next) { \
867 Tail = NULL; \
868 } \
869 Head = RCB->Next; \
870}
871
872
873#define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
874 if ((uVar) >= ((uModulo) - 1)) \
875 (uVar) = 0; \
876 else \
877 (uVar)++; \
878}
879
880
881#define fMP_RESET_IN_PROGRESS 0x00000001
882#define fMP_DISCONNECTED 0x00000002
883#define fMP_HALT_IN_PROGRESS 0x00000004
884#define fMP_SURPRISE_REMOVED 0x00000008
885#define fMP_RECV_LOOKASIDE 0x00000010
886#define fMP_INIT_IN_PROGRESS 0x00000020
887#define fMP_SEND_SIDE_RESOURCE_ALLOCATED 0x00000040
888#define fMP_RECV_SIDE_RESOURCE_ALLOCATED 0x00000080
889#define fMP_POST_READS 0x00000100
890#define fMP_POST_WRITES 0x00000200
891#define fMP_CONTROL_READS 0x00000400
892#define fMP_CONTROL_WRITES 0x00000800
893
894
895
896#define MP_SET_FLAG(_M, _F) ((_M)->Flags |= (_F))
897#define MP_CLEAR_FLAG(_M, _F) ((_M)->Flags &= ~(_F))
898#define MP_TEST_FLAG(_M, _F) (((_M)->Flags & (_F)) != 0)
899#define MP_TEST_FLAGS(_M, _F) (((_M)->Flags & (_F)) == (_F))
900
901#define MP_IS_READY(_M) (((_M)->Flags & \
902 (fMP_DISCONNECTED | fMP_RESET_IN_PROGRESS | fMP_HALT_IN_PROGRESS | fMP_INIT_IN_PROGRESS | fMP_SURPRISE_REMOVED)) == 0)
903
904/*--------------------- Export Functions --------------------------*/
905
cc856e61
AM
906/* BOOL device_dma0_xmit(PSDevice pDevice, struct sk_buff *skb,
907 * unsigned int uNodeIndex);
908 */
92b96797
FB
909BOOL device_alloc_frag_buf(PSDevice pDevice, PSDeFragControlBlock pDeF);
910
911#endif
912
913
This page took 0.172904 seconds and 5 git commands to generate.