2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
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.
21 * Purpose: driver entry for initial, open, close, tx and rx.
29 * vt6655_probe - module initial (insmod) driver entry
30 * vt6655_remove - module remove entry
31 * vt6655_init_info - device structure resource allocation function
32 * device_free_info - device structure resource free function
33 * device_get_pci_info - get allocated pci io/mem resource
34 * device_print_info - print out resource
35 * device_open - allocate dma/descripter resource & initial mac/bbp function
36 * device_xmit - asynchrous data tx function
37 * device_intr - interrupt handle function
38 * device_set_multi - set mac filter
39 * device_ioctl - ioctl entry
40 * device_close - shutdown mac/bbp & free dma/descripter resource
41 * device_rx_srv - rx service function
42 * device_receive_frame - rx data function
43 * device_alloc_rx_buf - rx buffer pre-allocated function
44 * device_alloc_frag_buf - rx fragement pre-allocated function
45 * device_free_tx_buf - free tx buffer function
46 * device_free_frag_buf- free de-fragement buffer
47 * device_dma0_tx_80211- tx 802.11 frame via dma0
48 * device_dma0_xmit- tx PS bufferred frame via dma0
49 * device_init_rd0_ring- initial rd dma0 ring
50 * device_init_rd1_ring- initial rd dma1 ring
51 * device_init_td0_ring- initial tx dma0 ring buffer
52 * device_init_td1_ring- initial tx dma1 ring buffer
53 * device_init_registers- initial MAC & BBP & RF internal registers.
54 * device_init_rings- initial tx/rx ring buffer
55 * device_init_defrag_cb- initial & allocate de-fragement buffer.
56 * device_free_rings- free all allocated ring buffer
57 * device_tx_srv- tx interrupt service function
86 #include <linux/delay.h>
87 #include <linux/kthread.h>
88 #include <linux/slab.h>
91 /*--------------------- Static Definitions -------------------------*/
92 //static int msglevel =MSG_LEVEL_DEBUG;
93 static int msglevel
= MSG_LEVEL_INFO
;
97 // Define module options
99 MODULE_AUTHOR("VIA Networking Technologies, Inc., <lyndonchen@vntek.com.tw>");
100 MODULE_LICENSE("GPL");
101 MODULE_DESCRIPTION("VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver");
104 static int mlme_kill
;
105 //static struct task_struct * mlme_task;
108 #define DEVICE_PARAM(N,D)
110 static const int N[MAX_UINTS]=OPTION_DEFAULT;\
111 MODULE_PARM(N, "1-" __MODULE_STRING(MAX_UINTS) "i");\
112 MODULE_PARM_DESC(N, D);
115 #define RX_DESC_MIN0 16
116 #define RX_DESC_MAX0 128
117 #define RX_DESC_DEF0 32
118 DEVICE_PARAM(RxDescriptors0
,"Number of receive descriptors0");
120 #define RX_DESC_MIN1 16
121 #define RX_DESC_MAX1 128
122 #define RX_DESC_DEF1 32
123 DEVICE_PARAM(RxDescriptors1
,"Number of receive descriptors1");
125 #define TX_DESC_MIN0 16
126 #define TX_DESC_MAX0 128
127 #define TX_DESC_DEF0 32
128 DEVICE_PARAM(TxDescriptors0
,"Number of transmit descriptors0");
130 #define TX_DESC_MIN1 16
131 #define TX_DESC_MAX1 128
132 #define TX_DESC_DEF1 64
133 DEVICE_PARAM(TxDescriptors1
,"Number of transmit descriptors1");
136 #define IP_ALIG_DEF 0
137 /* IP_byte_align[] is used for IP header unsigned long byte aligned
138 0: indicate the IP header won't be unsigned long byte aligned.(Default) .
139 1: indicate the IP header will be unsigned long byte aligned.
140 In some environment, the IP header should be unsigned long byte aligned,
141 or the packet will be droped when we receive it. (eg: IPVS)
143 DEVICE_PARAM(IP_byte_align
,"Enable IP header dword aligned");
146 #define INT_WORKS_DEF 20
147 #define INT_WORKS_MIN 10
148 #define INT_WORKS_MAX 64
150 DEVICE_PARAM(int_works
,"Number of packets per interrupt services");
152 #define CHANNEL_MIN 1
153 #define CHANNEL_MAX 14
154 #define CHANNEL_DEF 6
156 DEVICE_PARAM(Channel
, "Channel number");
159 /* PreambleType[] is the preamble length used for transmit.
160 0: indicate allows long preamble type
161 1: indicate allows short preamble type
164 #define PREAMBLE_TYPE_DEF 1
166 DEVICE_PARAM(PreambleType
, "Preamble Type");
169 #define RTS_THRESH_MIN 512
170 #define RTS_THRESH_MAX 2347
171 #define RTS_THRESH_DEF 2347
173 DEVICE_PARAM(RTSThreshold
, "RTS threshold");
176 #define FRAG_THRESH_MIN 256
177 #define FRAG_THRESH_MAX 2346
178 #define FRAG_THRESH_DEF 2346
180 DEVICE_PARAM(FragThreshold
, "Fragmentation threshold");
183 #define DATA_RATE_MIN 0
184 #define DATA_RATE_MAX 13
185 #define DATA_RATE_DEF 13
187 0: indicate 1 Mbps 0x02
188 1: indicate 2 Mbps 0x04
189 2: indicate 5.5 Mbps 0x0B
190 3: indicate 11 Mbps 0x16
191 4: indicate 6 Mbps 0x0c
192 5: indicate 9 Mbps 0x12
193 6: indicate 12 Mbps 0x18
194 7: indicate 18 Mbps 0x24
195 8: indicate 24 Mbps 0x30
196 9: indicate 36 Mbps 0x48
197 10: indicate 48 Mbps 0x60
198 11: indicate 54 Mbps 0x6c
199 12: indicate 72 Mbps 0x90
200 13: indicate auto rate
203 DEVICE_PARAM(ConnectionRate
, "Connection data rate");
205 #define OP_MODE_DEF 0
207 DEVICE_PARAM(OPMode
, "Infrastruct, adhoc, AP mode ");
209 /* OpMode[] is used for transmit.
210 0: indicate infrastruct mode used
211 1: indicate adhoc mode used
212 2: indicate AP mode used
217 0: indicate disable power saving mode
218 1: indicate enable power saving mode
221 #define PS_MODE_DEF 0
223 DEVICE_PARAM(PSMode
, "Power saving mode");
226 #define SHORT_RETRY_MIN 0
227 #define SHORT_RETRY_MAX 31
228 #define SHORT_RETRY_DEF 8
231 DEVICE_PARAM(ShortRetryLimit
, "Short frame retry limits");
233 #define LONG_RETRY_MIN 0
234 #define LONG_RETRY_MAX 15
235 #define LONG_RETRY_DEF 4
238 DEVICE_PARAM(LongRetryLimit
, "long frame retry limits");
241 /* BasebandType[] baseband type selected
242 0: indicate 802.11a type
243 1: indicate 802.11b type
244 2: indicate 802.11g type
246 #define BBP_TYPE_MIN 0
247 #define BBP_TYPE_MAX 2
248 #define BBP_TYPE_DEF 2
250 DEVICE_PARAM(BasebandType
, "baseband type");
255 0: indicate disable 802.11h
256 1: indicate enable 802.11h
259 #define X80211h_MODE_DEF 0
261 DEVICE_PARAM(b80211hEnable
, "802.11h mode");
264 0: indicate disable 802.11h
265 1: indicate enable 802.11h
268 #define DIVERSITY_ANT_DEF 0
270 DEVICE_PARAM(bDiversityANTEnable
, "ANT diversity mode");
274 // Static vars definitions
278 static int device_nics
=0;
279 static PSDevice pDevice_Infos
=NULL
;
280 static struct net_device
*root_device_dev
= NULL
;
282 static CHIP_INFO chip_info_table
[]= {
283 { VT3253
, "VIA Networking Solomon-A/B/G Wireless LAN Adapter ",
284 256, 1, DEVICE_FLAGS_IP_ALIGN
|DEVICE_FLAGS_TX_ALIGN
},
288 DEFINE_PCI_DEVICE_TABLE(vt6655_pci_id_table
) = {
289 { PCI_VDEVICE(VIA
, 0x3253), (kernel_ulong_t
)chip_info_table
},
293 /*--------------------- Static Functions --------------------------*/
296 static int vt6655_probe(struct pci_dev
*pcid
, const struct pci_device_id
*ent
);
297 static bool vt6655_init_info(struct pci_dev
* pcid
, PSDevice
* ppDevice
, PCHIP_INFO
);
298 static void device_free_info(PSDevice pDevice
);
299 static bool device_get_pci_info(PSDevice
, struct pci_dev
* pcid
);
300 static void device_print_info(PSDevice pDevice
);
301 static struct net_device_stats
*device_get_stats(struct net_device
*dev
);
302 static void device_init_diversity_timer(PSDevice pDevice
);
303 static int device_open(struct net_device
*dev
);
304 static int device_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
305 static irqreturn_t
device_intr(int irq
, void*dev_instance
);
306 static void device_set_multi(struct net_device
*dev
);
307 static int device_close(struct net_device
*dev
);
308 static int device_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
311 static int device_notify_reboot(struct notifier_block
*, unsigned long event
, void *ptr
);
312 static int viawget_suspend(struct pci_dev
*pcid
, pm_message_t state
);
313 static int viawget_resume(struct pci_dev
*pcid
);
314 struct notifier_block device_notifier
= {
315 .notifier_call
= device_notify_reboot
,
322 static void device_init_rd0_ring(PSDevice pDevice
);
323 static void device_init_rd1_ring(PSDevice pDevice
);
324 static void device_init_defrag_cb(PSDevice pDevice
);
325 static void device_init_td0_ring(PSDevice pDevice
);
326 static void device_init_td1_ring(PSDevice pDevice
);
328 static int device_dma0_tx_80211(struct sk_buff
*skb
, struct net_device
*dev
);
329 //2008-0714<Add>by Mike Liu
330 static bool device_release_WPADEV(PSDevice pDevice
);
332 static int ethtool_ioctl(struct net_device
*dev
, void *useraddr
);
333 static int device_rx_srv(PSDevice pDevice
, unsigned int uIdx
);
334 static int device_tx_srv(PSDevice pDevice
, unsigned int uIdx
);
335 static bool device_alloc_rx_buf(PSDevice pDevice
, PSRxDesc pDesc
);
336 static void device_init_registers(PSDevice pDevice
, DEVICE_INIT_TYPE InitType
);
337 static void device_free_tx_buf(PSDevice pDevice
, PSTxDesc pDesc
);
338 static void device_free_td0_ring(PSDevice pDevice
);
339 static void device_free_td1_ring(PSDevice pDevice
);
340 static void device_free_rd0_ring(PSDevice pDevice
);
341 static void device_free_rd1_ring(PSDevice pDevice
);
342 static void device_free_rings(PSDevice pDevice
);
343 static void device_free_frag_buf(PSDevice pDevice
);
344 static int Config_FileGetParameter(unsigned char *string
,
345 unsigned char *dest
, unsigned char *source
);
348 /*--------------------- Export Variables --------------------------*/
350 /*--------------------- Export Functions --------------------------*/
354 static char* get_chip_name(int chip_id
) {
356 for (i
=0;chip_info_table
[i
].name
!=NULL
;i
++)
357 if (chip_info_table
[i
].chip_id
==chip_id
)
359 return chip_info_table
[i
].name
;
362 static void __devexit
vt6655_remove(struct pci_dev
*pcid
)
364 PSDevice pDevice
=pci_get_drvdata(pcid
);
368 device_free_info(pDevice
);
374 device_set_int_opt(int *opt, int val, int min, int max, int def,char* name,char* devname) {
377 else if (val<min || val>max) {
378 DBG_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: the value of parameter %s is invalid, the valid range is (%d-%d)\n" ,
379 devname,name, min,max);
382 DBG_PRT(MSG_LEVEL_INFO, KERN_INFO "%s: set value of parameter %s to %d\n",
389 device_set_bool_opt(unsigned int *opt, int val,bool def,u32 flag, char* name,char* devname) {
392 *opt|=(def ? flag : 0);
393 else if (val<0 || val>1) {
394 DBG_PRT(MSG_LEVEL_INFO, KERN_NOTICE
395 "%s: the value of parameter %s is invalid, the valid range is (0-1)\n",devname,name);
396 *opt|=(def ? flag : 0);
398 DBG_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: set parameter %s to %s\n",
399 devname,name , val ? "true" : "false");
400 *opt|=(val ? flag : 0);
405 device_get_options(PSDevice pDevice
, int index
, char* devname
) {
407 POPTIONS pOpts
= &(pDevice
->sOpts
);
408 pOpts
->nRxDescs0
=RX_DESC_DEF0
;
409 pOpts
->nRxDescs1
=RX_DESC_DEF1
;
410 pOpts
->nTxDescs
[0]=TX_DESC_DEF0
;
411 pOpts
->nTxDescs
[1]=TX_DESC_DEF1
;
412 pOpts
->flags
|=DEVICE_FLAGS_IP_ALIGN
;
413 pOpts
->int_works
=INT_WORKS_DEF
;
414 pOpts
->rts_thresh
=RTS_THRESH_DEF
;
415 pOpts
->frag_thresh
=FRAG_THRESH_DEF
;
416 pOpts
->data_rate
=DATA_RATE_DEF
;
417 pOpts
->channel_num
=CHANNEL_DEF
;
419 pOpts
->flags
|=DEVICE_FLAGS_PREAMBLE_TYPE
;
420 pOpts
->flags
|=DEVICE_FLAGS_OP_MODE
;
421 //pOpts->flags|=DEVICE_FLAGS_PS_MODE;
422 pOpts
->short_retry
=SHORT_RETRY_DEF
;
423 pOpts
->long_retry
=LONG_RETRY_DEF
;
424 pOpts
->bbp_type
=BBP_TYPE_DEF
;
425 pOpts
->flags
|=DEVICE_FLAGS_80211h_MODE
;
426 pOpts
->flags
|=DEVICE_FLAGS_DiversityANT
;
432 device_set_options(PSDevice pDevice
) {
434 unsigned char abyBroadcastAddr
[ETH_ALEN
] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
435 unsigned char abySNAP_RFC1042
[ETH_ALEN
] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
436 unsigned char abySNAP_Bridgetunnel
[ETH_ALEN
] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
439 memcpy(pDevice
->abyBroadcastAddr
, abyBroadcastAddr
, ETH_ALEN
);
440 memcpy(pDevice
->abySNAP_RFC1042
, abySNAP_RFC1042
, ETH_ALEN
);
441 memcpy(pDevice
->abySNAP_Bridgetunnel
, abySNAP_Bridgetunnel
, ETH_ALEN
);
443 pDevice
->uChannel
= pDevice
->sOpts
.channel_num
;
444 pDevice
->wRTSThreshold
= pDevice
->sOpts
.rts_thresh
;
445 pDevice
->wFragmentationThreshold
= pDevice
->sOpts
.frag_thresh
;
446 pDevice
->byShortRetryLimit
= pDevice
->sOpts
.short_retry
;
447 pDevice
->byLongRetryLimit
= pDevice
->sOpts
.long_retry
;
448 pDevice
->wMaxTransmitMSDULifetime
= DEFAULT_MSDU_LIFETIME
;
449 pDevice
->byShortPreamble
= (pDevice
->sOpts
.flags
& DEVICE_FLAGS_PREAMBLE_TYPE
) ? 1 : 0;
450 pDevice
->byOpMode
= (pDevice
->sOpts
.flags
& DEVICE_FLAGS_OP_MODE
) ? 1 : 0;
451 pDevice
->ePSMode
= (pDevice
->sOpts
.flags
& DEVICE_FLAGS_PS_MODE
) ? 1 : 0;
452 pDevice
->b11hEnable
= (pDevice
->sOpts
.flags
& DEVICE_FLAGS_80211h_MODE
) ? 1 : 0;
453 pDevice
->bDiversityRegCtlON
= (pDevice
->sOpts
.flags
& DEVICE_FLAGS_DiversityANT
) ? 1 : 0;
454 pDevice
->uConnectionRate
= pDevice
->sOpts
.data_rate
;
455 if (pDevice
->uConnectionRate
< RATE_AUTO
) pDevice
->bFixRate
= true;
456 pDevice
->byBBType
= pDevice
->sOpts
.bbp_type
;
457 pDevice
->byPacketType
= pDevice
->byBBType
;
460 pDevice
->byAutoFBCtrl
= AUTO_FB_0
;
461 //pDevice->byAutoFBCtrl = AUTO_FB_1;
463 pDevice
->bUpdateBBVGA
= true;
464 pDevice
->byFOETuning
= 0;
465 pDevice
->wCTSDuration
= 0;
466 pDevice
->byPreambleType
= 0;
469 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" uChannel= %d\n",(int)pDevice
->uChannel
);
470 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byOpMode= %d\n",(int)pDevice
->byOpMode
);
471 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" ePSMode= %d\n",(int)pDevice
->ePSMode
);
472 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" wRTSThreshold= %d\n",(int)pDevice
->wRTSThreshold
);
473 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byShortRetryLimit= %d\n",(int)pDevice
->byShortRetryLimit
);
474 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byLongRetryLimit= %d\n",(int)pDevice
->byLongRetryLimit
);
475 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byPreambleType= %d\n",(int)pDevice
->byPreambleType
);
476 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byShortPreamble= %d\n",(int)pDevice
->byShortPreamble
);
477 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" uConnectionRate= %d\n",(int)pDevice
->uConnectionRate
);
478 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" byBBType= %d\n",(int)pDevice
->byBBType
);
479 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" pDevice->b11hEnable= %d\n",(int)pDevice
->b11hEnable
);
480 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" pDevice->bDiversityRegCtlON= %d\n",(int)pDevice
->bDiversityRegCtlON
);
483 static void s_vCompleteCurrentMeasure (PSDevice pDevice
, unsigned char byResult
)
486 unsigned long dwDuration
= 0;
487 unsigned char byRPI0
= 0;
489 for(ii
=1;ii
<8;ii
++) {
490 pDevice
->dwRPIs
[ii
] *= 255;
491 dwDuration
|= *((unsigned short *) (pDevice
->pCurrMeasureEID
->sReq
.abyDuration
));
493 pDevice
->dwRPIs
[ii
] /= dwDuration
;
494 pDevice
->abyRPIs
[ii
] = (unsigned char) pDevice
->dwRPIs
[ii
];
495 byRPI0
+= pDevice
->abyRPIs
[ii
];
497 pDevice
->abyRPIs
[0] = (0xFF - byRPI0
);
499 if (pDevice
->uNumOfMeasureEIDs
== 0) {
500 VNTWIFIbMeasureReport( pDevice
->pMgmt
,
502 pDevice
->pCurrMeasureEID
,
505 pDevice
->byCCAFraction
,
509 VNTWIFIbMeasureReport( pDevice
->pMgmt
,
511 pDevice
->pCurrMeasureEID
,
514 pDevice
->byCCAFraction
,
517 CARDbStartMeasure (pDevice
, pDevice
->pCurrMeasureEID
++, pDevice
->uNumOfMeasureEIDs
);
525 // Initialiation of MAC & BBP registers
528 static void device_init_registers(PSDevice pDevice
, DEVICE_INIT_TYPE InitType
)
531 unsigned char byValue
;
532 unsigned char byValue1
;
533 unsigned char byCCKPwrdBm
= 0;
534 unsigned char byOFDMPwrdBm
= 0;
536 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
537 MACbShutdown(pDevice
->PortOffset
);
538 BBvSoftwareReset(pDevice
->PortOffset
);
540 if ((InitType
== DEVICE_INIT_COLD
) ||
541 (InitType
== DEVICE_INIT_DXPL
)) {
542 // Do MACbSoftwareReset in MACvInitialize
543 MACbSoftwareReset(pDevice
->PortOffset
);
545 pDevice
->bCCK
= true;
546 pDevice
->bAES
= false;
547 pDevice
->bProtectMode
= false; //Only used in 11g type, sync with ERP IE
548 pDevice
->bNonERPPresent
= false;
549 pDevice
->bBarkerPreambleMd
= false;
550 pDevice
->wCurrentRate
= RATE_1M
;
551 pDevice
->byTopOFDMBasicRate
= RATE_24M
;
552 pDevice
->byTopCCKBasicRate
= RATE_1M
;
554 pDevice
->byRevId
= 0; //Target to IF pin while programming to RF chip.
557 MACvInitialize(pDevice
->PortOffset
);
560 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_LOCALID
, &(pDevice
->byLocalID
));
562 spin_lock_irq(&pDevice
->lock
);
563 SROMvReadAllContents(pDevice
->PortOffset
,pDevice
->abyEEPROM
);
565 spin_unlock_irq(&pDevice
->lock
);
569 pDevice
->byMinChannel
= 1;
570 pDevice
->byMaxChannel
= CB_MAX_CHANNEL
;
573 byValue
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_ANTENNA
);
574 if (byValue
& EEP_ANTINV
)
575 pDevice
->bTxRxAntInv
= true;
577 pDevice
->bTxRxAntInv
= false;
579 //printk("init_register:TxRxAntInv is %d,byValue is %d\n",pDevice->bTxRxAntInv,byValue);
582 byValue
&= (EEP_ANTENNA_AUX
| EEP_ANTENNA_MAIN
);
583 if (byValue
== 0) // if not set default is All
584 byValue
= (EEP_ANTENNA_AUX
| EEP_ANTENNA_MAIN
);
586 //printk("init_register:byValue is %d\n",byValue);
588 pDevice
->ulDiversityNValue
= 100*260;//100*SROMbyReadEmbedded(pDevice->PortOffset, 0x51);
589 pDevice
->ulDiversityMValue
= 100*16;//SROMbyReadEmbedded(pDevice->PortOffset, 0x52);
590 pDevice
->byTMax
= 1;//SROMbyReadEmbedded(pDevice->PortOffset, 0x53);
591 pDevice
->byTMax2
= 4;//SROMbyReadEmbedded(pDevice->PortOffset, 0x54);
592 pDevice
->ulSQ3TH
= 0;//(unsigned long) SROMbyReadEmbedded(pDevice->PortOffset, 0x55);
593 pDevice
->byTMax3
= 64;//SROMbyReadEmbedded(pDevice->PortOffset, 0x56);
595 if (byValue
== (EEP_ANTENNA_AUX
| EEP_ANTENNA_MAIN
)) {
596 pDevice
->byAntennaCount
= 2;
597 pDevice
->byTxAntennaMode
= ANT_B
;
598 pDevice
->dwTxAntennaSel
= 1;
599 pDevice
->dwRxAntennaSel
= 1;
600 if (pDevice
->bTxRxAntInv
== true)
601 pDevice
->byRxAntennaMode
= ANT_A
;
603 pDevice
->byRxAntennaMode
= ANT_B
;
604 // chester for antenna
605 byValue1
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_ANTENNA
);
606 // if (pDevice->bDiversityRegCtlON)
607 if((byValue1
&0x08)==0)
608 pDevice
->bDiversityEnable
= false;//SROMbyReadEmbedded(pDevice->PortOffset, 0x50);
610 pDevice
->bDiversityEnable
= true;
612 //printk("aux |main antenna: RxAntennaMode is %d\n",pDevice->byRxAntennaMode);
615 pDevice
->bDiversityEnable
= false;
616 pDevice
->byAntennaCount
= 1;
617 pDevice
->dwTxAntennaSel
= 0;
618 pDevice
->dwRxAntennaSel
= 0;
619 if (byValue
& EEP_ANTENNA_AUX
) {
620 pDevice
->byTxAntennaMode
= ANT_A
;
621 if (pDevice
->bTxRxAntInv
== true)
622 pDevice
->byRxAntennaMode
= ANT_B
;
624 pDevice
->byRxAntennaMode
= ANT_A
;
626 pDevice
->byTxAntennaMode
= ANT_B
;
627 if (pDevice
->bTxRxAntInv
== true)
628 pDevice
->byRxAntennaMode
= ANT_A
;
630 pDevice
->byRxAntennaMode
= ANT_B
;
634 //printk("init registers: TxAntennaMode is %d\n",pDevice->byTxAntennaMode);
636 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"bDiversityEnable=[%d],NValue=[%d],MValue=[%d],TMax=[%d],TMax2=[%d]\n",
637 pDevice
->bDiversityEnable
,(int)pDevice
->ulDiversityNValue
,(int)pDevice
->ulDiversityMValue
,pDevice
->byTMax
,pDevice
->byTMax2
);
639 //#ifdef ZoneType_DefaultSetting
640 //2008-8-4 <add> by chester
642 pDevice
->byOriginalZonetype
= pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
];
643 zonetype
= Config_FileOperation(pDevice
,false,NULL
);
644 if (zonetype
>= 0) { //read zonetype file ok!
645 if ((zonetype
== 0)&&
646 (pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] !=0x00)){ //for USA
647 pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] = 0;
648 pDevice
->abyEEPROM
[EEP_OFS_MAXCHANNEL
] = 0x0B;
649 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Init Zone Type :USA\n");
651 else if((zonetype
== 1)&&
652 (pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
]!=0x01)){ //for Japan
653 pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] = 0x01;
654 pDevice
->abyEEPROM
[EEP_OFS_MAXCHANNEL
] = 0x0D;
656 else if((zonetype
== 2)&&
657 (pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
]!=0x02)){ //for Europe
658 pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] = 0x02;
659 pDevice
->abyEEPROM
[EEP_OFS_MAXCHANNEL
] = 0x0D;
660 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Init Zone Type :Europe\n");
665 if(zonetype
!=pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
])
666 printk("zonetype in file[%02x] mismatch with in EEPROM[%02x]\n",zonetype
,pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
]);
668 printk("Read Zonetype file success,use default zonetype setting[%02x]\n",zonetype
);
672 printk("Read Zonetype file fail,use default zonetype setting[%02x]\n",SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_ZONETYPE
));
675 pDevice
->byRFType
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_RFTYPE
);
677 if ((pDevice
->byRFType
& RF_EMU
) != 0) {
678 // force change RevID for VT3253 emu
679 pDevice
->byRevId
= 0x80;
682 pDevice
->byRFType
&= RF_MASK
;
683 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pDevice->byRFType = %x\n", pDevice
->byRFType
);
685 if (pDevice
->bZoneRegExist
== false) {
686 pDevice
->byZoneType
= pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
];
688 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pDevice->byZoneType = %x\n", pDevice
->byZoneType
);
693 //Get Desire Power Value
694 pDevice
->byCurPwr
= 0xFF;
695 pDevice
->byCCKPwr
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_PWR_CCK
);
696 pDevice
->byOFDMPwrG
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_PWR_OFDMG
);
697 //byCCKPwrdBm = SROMbyReadEmbedded(pDevice->PortOffset, EEP_OFS_CCK_PWR_dBm);
699 //byOFDMPwrdBm = SROMbyReadEmbedded(pDevice->PortOffset, EEP_OFS_OFDM_PWR_dBm);
700 //printk("CCKPwrdBm is 0x%x,byOFDMPwrdBm is 0x%x\n",byCCKPwrdBm,byOFDMPwrdBm);
704 for (ii
=0;ii
<CB_MAX_CHANNEL_24G
;ii
++) {
705 pDevice
->abyCCKPwrTbl
[ii
+1] = SROMbyReadEmbedded(pDevice
->PortOffset
, (unsigned char)(ii
+ EEP_OFS_CCK_PWR_TBL
));
706 if (pDevice
->abyCCKPwrTbl
[ii
+1] == 0) {
707 pDevice
->abyCCKPwrTbl
[ii
+1] = pDevice
->byCCKPwr
;
709 pDevice
->abyOFDMPwrTbl
[ii
+1] = SROMbyReadEmbedded(pDevice
->PortOffset
, (unsigned char)(ii
+ EEP_OFS_OFDM_PWR_TBL
));
710 if (pDevice
->abyOFDMPwrTbl
[ii
+1] == 0) {
711 pDevice
->abyOFDMPwrTbl
[ii
+1] = pDevice
->byOFDMPwrG
;
713 pDevice
->abyCCKDefaultPwr
[ii
+1] = byCCKPwrdBm
;
714 pDevice
->abyOFDMDefaultPwr
[ii
+1] = byOFDMPwrdBm
;
716 //2008-8-4 <add> by chester
717 //recover 12,13 ,14channel for EUROPE by 11 channel
718 if(((pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] == ZoneType_Japan
) ||
719 (pDevice
->abyEEPROM
[EEP_OFS_ZONETYPE
] == ZoneType_Europe
))&&
720 (pDevice
->byOriginalZonetype
== ZoneType_USA
)) {
721 for(ii
=11;ii
<14;ii
++) {
722 pDevice
->abyCCKPwrTbl
[ii
] = pDevice
->abyCCKPwrTbl
[10];
723 pDevice
->abyOFDMPwrTbl
[ii
] = pDevice
->abyOFDMPwrTbl
[10];
729 // Load OFDM A Power Table
730 for (ii
=0;ii
<CB_MAX_CHANNEL_5G
;ii
++) { //RobertYu:20041224, bug using CB_MAX_CHANNEL
731 pDevice
->abyOFDMPwrTbl
[ii
+CB_MAX_CHANNEL_24G
+1] = SROMbyReadEmbedded(pDevice
->PortOffset
, (unsigned char)(ii
+ EEP_OFS_OFDMA_PWR_TBL
));
732 pDevice
->abyOFDMDefaultPwr
[ii
+CB_MAX_CHANNEL_24G
+1] = SROMbyReadEmbedded(pDevice
->PortOffset
, (unsigned char)(ii
+ EEP_OFS_OFDMA_PWR_dBm
));
734 init_channel_table((void *)pDevice
);
737 if (pDevice
->byLocalID
> REV_ID_VT3253_B1
) {
738 MACvSelectPage1(pDevice
->PortOffset
);
739 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_MSRCTL
+ 1, (MSRCTL1_TXPWR
| MSRCTL1_CSAPAREN
));
740 MACvSelectPage0(pDevice
->PortOffset
);
744 // use relative tx timeout and 802.11i D4
745 MACvWordRegBitsOn(pDevice
->PortOffset
, MAC_REG_CFG
, (CFG_TKIPOPT
| CFG_NOTXTIMEOUT
));
747 // set performance parameter by registry
748 MACvSetShortRetryLimit(pDevice
->PortOffset
, pDevice
->byShortRetryLimit
);
749 MACvSetLongRetryLimit(pDevice
->PortOffset
, pDevice
->byLongRetryLimit
);
752 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_TFTCTL
, TFTCTL_TSFCNTRST
);
753 // enable TSF counter
754 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_TFTCTL
, TFTCTL_TSFCNTREN
);
756 // initialize BBP registers
757 BBbVT3253Init(pDevice
);
759 if (pDevice
->bUpdateBBVGA
) {
760 pDevice
->byBBVGACurrent
= pDevice
->abyBBVGA
[0];
761 pDevice
->byBBVGANew
= pDevice
->byBBVGACurrent
;
762 BBvSetVGAGainOffset(pDevice
, pDevice
->abyBBVGA
[0]);
765 //printk("init registers:RxAntennaMode is %x,TxAntennaMode is %x\n",pDevice->byRxAntennaMode,pDevice->byTxAntennaMode);
767 BBvSetRxAntennaMode(pDevice
->PortOffset
, pDevice
->byRxAntennaMode
);
768 BBvSetTxAntennaMode(pDevice
->PortOffset
, pDevice
->byTxAntennaMode
);
770 pDevice
->byCurrentCh
= 0;
772 //pDevice->NetworkType = Ndis802_11Automode;
773 // Set BB and packet type at the same time.
774 // Set Short Slot Time, xIFS, and RSPINF.
775 if (pDevice
->uConnectionRate
== RATE_AUTO
) {
776 pDevice
->wCurrentRate
= RATE_54M
;
778 pDevice
->wCurrentRate
= (unsigned short)pDevice
->uConnectionRate
;
782 VNTWIFIbConfigPhyMode(pDevice
->pMgmt
, PHY_TYPE_11G
);
783 VNTWIFIbConfigPhyMode(pDevice
->pMgmt
, PHY_TYPE_AUTO
);
785 pDevice
->bRadioOff
= false;
787 pDevice
->byRadioCtl
= SROMbyReadEmbedded(pDevice
->PortOffset
, EEP_OFS_RADIOCTL
);
788 pDevice
->bHWRadioOff
= false;
790 if (pDevice
->byRadioCtl
& EEP_RADIOCTL_ENABLE
) {
792 MACvGPIOIn(pDevice
->PortOffset
, &pDevice
->byGPIO
);
793 //2008-4-14 <add> by chester for led issue
794 #ifdef FOR_LED_ON_NOTEBOOK
795 if (pDevice
->byGPIO
& GPIO0_DATA
){pDevice
->bHWRadioOff
= true;}
796 if ( !(pDevice
->byGPIO
& GPIO0_DATA
)){pDevice
->bHWRadioOff
= false;}
799 if ( (pDevice
->bRadioControlOff
== true)) {
800 CARDbRadioPowerOff(pDevice
);
802 else CARDbRadioPowerOn(pDevice
);
804 if (((pDevice
->byGPIO
& GPIO0_DATA
) && !(pDevice
->byRadioCtl
& EEP_RADIOCTL_INV
)) ||
805 ( !(pDevice
->byGPIO
& GPIO0_DATA
) && (pDevice
->byRadioCtl
& EEP_RADIOCTL_INV
))) {
806 pDevice
->bHWRadioOff
= true;
809 if ((pDevice
->bHWRadioOff
== true) || (pDevice
->bRadioControlOff
== true)) {
810 CARDbRadioPowerOff(pDevice
);
815 pMgmt
->eScanType
= WMAC_SCAN_PASSIVE
;
816 // get Permanent network address
817 SROMvReadEtherAddress(pDevice
->PortOffset
, pDevice
->abyCurrentNetAddr
);
818 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Network address = %02x-%02x-%02x=%02x-%02x-%02x\n",
819 pDevice
->abyCurrentNetAddr
[0],
820 pDevice
->abyCurrentNetAddr
[1],
821 pDevice
->abyCurrentNetAddr
[2],
822 pDevice
->abyCurrentNetAddr
[3],
823 pDevice
->abyCurrentNetAddr
[4],
824 pDevice
->abyCurrentNetAddr
[5]);
828 CARDvSafeResetRx(pDevice
);
830 CARDvSafeResetTx(pDevice
);
832 if (pDevice
->byLocalID
<= REV_ID_VT3253_A1
) {
833 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_RCR
, RCR_WPAERR
);
836 pDevice
->eEncryptionStatus
= Ndis802_11EncryptionDisabled
;
839 MACvReceive0(pDevice
->PortOffset
);
840 MACvReceive1(pDevice
->PortOffset
);
843 MACvStart(pDevice
->PortOffset
);
845 netif_stop_queue(pDevice
->dev
);
852 static void device_init_diversity_timer(PSDevice pDevice
) {
854 init_timer(&pDevice
->TimerSQ3Tmax1
);
855 pDevice
->TimerSQ3Tmax1
.data
= (unsigned long) pDevice
;
856 pDevice
->TimerSQ3Tmax1
.function
= (TimerFunction
)TimerSQ3CallBack
;
857 pDevice
->TimerSQ3Tmax1
.expires
= RUN_AT(HZ
);
859 init_timer(&pDevice
->TimerSQ3Tmax2
);
860 pDevice
->TimerSQ3Tmax2
.data
= (unsigned long) pDevice
;
861 pDevice
->TimerSQ3Tmax2
.function
= (TimerFunction
)TimerSQ3CallBack
;
862 pDevice
->TimerSQ3Tmax2
.expires
= RUN_AT(HZ
);
864 init_timer(&pDevice
->TimerSQ3Tmax3
);
865 pDevice
->TimerSQ3Tmax3
.data
= (unsigned long) pDevice
;
866 pDevice
->TimerSQ3Tmax3
.function
= (TimerFunction
)TimerState1CallBack
;
867 pDevice
->TimerSQ3Tmax3
.expires
= RUN_AT(HZ
);
873 static bool device_release_WPADEV(PSDevice pDevice
)
875 viawget_wpa_header
*wpahdr
;
877 // wait_queue_head_t Set_wait;
878 //send device close to wpa_supplicnat layer
879 if (pDevice
->bWPADEVUp
==true) {
880 wpahdr
= (viawget_wpa_header
*)pDevice
->skb
->data
;
881 wpahdr
->type
= VIAWGET_DEVICECLOSE_MSG
;
882 wpahdr
->resp_ie_len
= 0;
883 wpahdr
->req_ie_len
= 0;
884 skb_put(pDevice
->skb
, sizeof(viawget_wpa_header
));
885 pDevice
->skb
->dev
= pDevice
->wpadev
;
886 skb_reset_mac_header(pDevice
->skb
);
887 pDevice
->skb
->pkt_type
= PACKET_HOST
;
888 pDevice
->skb
->protocol
= htons(ETH_P_802_2
);
889 memset(pDevice
->skb
->cb
, 0, sizeof(pDevice
->skb
->cb
));
890 netif_rx(pDevice
->skb
);
891 pDevice
->skb
= dev_alloc_skb((int)pDevice
->rx_buf_sz
);
893 //wait release WPADEV
894 // init_waitqueue_head(&Set_wait);
895 // wait_event_timeout(Set_wait, ((pDevice->wpadev==NULL)&&(pDevice->skb == NULL)),5*HZ); //1s wait
896 while((pDevice
->bWPADEVUp
==true)) {
897 set_current_state(TASK_UNINTERRUPTIBLE
);
898 schedule_timeout (HZ
/20); //wait 50ms
908 static const struct net_device_ops device_netdev_ops
= {
909 .ndo_open
= device_open
,
910 .ndo_stop
= device_close
,
911 .ndo_do_ioctl
= device_ioctl
,
912 .ndo_get_stats
= device_get_stats
,
913 .ndo_start_xmit
= device_xmit
,
914 .ndo_set_multicast_list
= device_set_multi
,
920 vt6655_probe(struct pci_dev
*pcid
, const struct pci_device_id
*ent
)
922 static bool bFirst
= true;
923 struct net_device
* dev
= NULL
;
924 PCHIP_INFO pChip_info
= (PCHIP_INFO
)ent
->driver_data
;
927 if (device_nics
++>= MAX_UINTS
) {
928 printk(KERN_NOTICE DEVICE_NAME
": already found %d NICs\n", device_nics
);
933 dev
= alloc_etherdev(sizeof(DEVICE_INFO
));
935 pDevice
= (PSDevice
) netdev_priv(dev
);
938 printk(KERN_ERR DEVICE_NAME
": allocate net device failed \n");
942 // Chain it all together
943 // SET_MODULE_OWNER(dev);
944 SET_NETDEV_DEV(dev
, &pcid
->dev
);
947 printk(KERN_NOTICE
"%s Ver. %s\n",DEVICE_FULL_DRV_NAM
, DEVICE_VERSION
);
948 printk(KERN_NOTICE
"Copyright (c) 2003 VIA Networking Technologies, Inc.\n");
952 if (!vt6655_init_info(pcid
, &pDevice
, pChip_info
)) {
956 pDevice
->next_module
= root_device_dev
;
957 root_device_dev
= dev
;
959 if (pci_enable_device(pcid
)) {
960 device_free_info(pDevice
);
963 dev
->irq
= pcid
->irq
;
966 printk("Before get pci_info memaddr is %x\n",pDevice
->memaddr
);
968 if (device_get_pci_info(pDevice
,pcid
) == false) {
969 printk(KERN_ERR DEVICE_NAME
": Failed to find PCI device.\n");
970 device_free_info(pDevice
);
978 //pci_read_config_byte(pcid, PCI_BASE_ADDRESS_0, &pDevice->byRevId);
979 printk("after get pci_info memaddr is %x, io addr is %x,io_size is %d\n",pDevice
->memaddr
,pDevice
->ioaddr
,pDevice
->io_size
);
991 for (i
=0;address
[i
];i
++)
993 //pci_write_config_dword(pcid,address[i], 0xFFFFFFFF);
994 pci_read_config_dword(pcid
, address
[i
], &bar
);
995 printk("bar %d is %x\n",i
,bar
);
998 printk("bar %d not implemented\n",i
);
1001 if (bar
& PCI_BASE_ADDRESS_SPACE_IO
) {
1004 len
= bar
& (PCI_BASE_ADDRESS_IO_MASK
& 0xFFFF);
1005 len
= len
& ~(len
- 1);
1007 printk("IO space: len in IO %x, BAR %d\n", len
, i
);
1011 len
= bar
& 0xFFFFFFF0;
1014 printk("len in MEM %x, BAR %d\n", len
, i
);
1026 pDevice
->PortOffset
= (unsigned long)ioremap(pDevice
->memaddr
& PCI_BASE_ADDRESS_MEM_MASK
, pDevice
->io_size
);
1027 //pDevice->PortOffset = (unsigned long)ioremap(pDevice->ioaddr & PCI_BASE_ADDRESS_IO_MASK, pDevice->io_size);
1029 if(pDevice
->PortOffset
== 0) {
1030 printk(KERN_ERR DEVICE_NAME
": Failed to IO remapping ..\n");
1031 device_free_info(pDevice
);
1038 rc
= pci_request_regions(pcid
, DEVICE_NAME
);
1040 printk(KERN_ERR DEVICE_NAME
": Failed to find PCI device\n");
1041 device_free_info(pDevice
);
1045 dev
->base_addr
= pDevice
->ioaddr
;
1047 unsigned char value
;
1049 VNSvInPortB(pDevice
->PortOffset
+0x4F, &value
);
1050 printk("Before write: value is %x\n",value
);
1051 //VNSvInPortB(pDevice->PortOffset+0x3F, 0x00);
1052 VNSvOutPortB(pDevice
->PortOffset
,value
);
1053 VNSvInPortB(pDevice
->PortOffset
+0x4F, &value
);
1054 printk("After write: value is %x\n",value
);
1060 pDevice
->PortOffset
= pDevice
->ioaddr
;
1063 if (!MACbSoftwareReset(pDevice
->PortOffset
)) {
1064 printk(KERN_ERR DEVICE_NAME
": Failed to access MAC hardware..\n");
1065 device_free_info(pDevice
);
1068 // initial to reload eeprom
1069 MACvInitialize(pDevice
->PortOffset
);
1070 MACvReadEtherAddress(pDevice
->PortOffset
, dev
->dev_addr
);
1072 device_get_options(pDevice
, device_nics
-1, dev
->name
);
1073 device_set_options(pDevice
);
1074 //Mask out the options cannot be set to the chip
1075 pDevice
->sOpts
.flags
&= pChip_info
->flags
;
1077 //Enable the chip specified capbilities
1078 pDevice
->flags
= pDevice
->sOpts
.flags
| (pChip_info
->flags
& 0xFF000000UL
);
1079 pDevice
->tx_80211
= device_dma0_tx_80211
;
1080 pDevice
->sMgmtObj
.pAdapter
= (void *)pDevice
;
1081 pDevice
->pMgmt
= &(pDevice
->sMgmtObj
);
1083 dev
->irq
= pcid
->irq
;
1084 dev
->netdev_ops
= &device_netdev_ops
;
1086 dev
->wireless_handlers
= (struct iw_handler_def
*)&iwctl_handler_def
;
1088 rc
= register_netdev(dev
);
1091 printk(KERN_ERR DEVICE_NAME
" Failed to register netdev\n");
1092 device_free_info(pDevice
);
1095 //2008-07-21-01<Add>by MikeLiu
1098 if(wpa_set_wpadev(pDevice
, 1)!=0) {
1099 printk("Fail to Register WPADEV?\n");
1100 unregister_netdev(pDevice
->dev
);
1104 device_print_info(pDevice
);
1105 pci_set_drvdata(pcid
, pDevice
);
1110 static void device_print_info(PSDevice pDevice
)
1112 struct net_device
* dev
=pDevice
->dev
;
1114 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
"%s: %s\n",dev
->name
, get_chip_name(pDevice
->chip_id
));
1115 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
"%s: MAC=%pM", dev
->name
, dev
->dev_addr
);
1117 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
" IO=0x%lx ",(unsigned long) pDevice
->ioaddr
);
1118 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
" IRQ=%d \n", pDevice
->dev
->irq
);
1120 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
" IO=0x%lx Mem=0x%lx ",
1121 (unsigned long) pDevice
->ioaddr
,(unsigned long) pDevice
->PortOffset
);
1122 DBG_PRT(MSG_LEVEL_INFO
, KERN_INFO
" IRQ=%d \n", pDevice
->dev
->irq
);
1127 static bool __devinit
vt6655_init_info(struct pci_dev
* pcid
, PSDevice
* ppDevice
,
1128 PCHIP_INFO pChip_info
) {
1132 memset(*ppDevice
,0,sizeof(DEVICE_INFO
));
1134 if (pDevice_Infos
== NULL
) {
1135 pDevice_Infos
=*ppDevice
;
1138 for (p
=pDevice_Infos
;p
->next
!=NULL
;p
=p
->next
)
1140 p
->next
= *ppDevice
;
1141 (*ppDevice
)->prev
= p
;
1144 (*ppDevice
)->pcid
= pcid
;
1145 (*ppDevice
)->chip_id
= pChip_info
->chip_id
;
1146 (*ppDevice
)->io_size
= pChip_info
->io_size
;
1147 (*ppDevice
)->nTxQueues
= pChip_info
->nTxQueue
;
1148 (*ppDevice
)->multicast_limit
=32;
1150 spin_lock_init(&((*ppDevice
)->lock
));
1155 static bool device_get_pci_info(PSDevice pDevice
, struct pci_dev
* pcid
) {
1159 unsigned int cis_addr
;
1161 unsigned char pci_config
[256];
1162 unsigned char value
=0x00;
1165 memset(pci_config
,0x00,256);
1168 pci_read_config_byte(pcid
, PCI_REVISION_ID
, &pDevice
->byRevId
);
1169 pci_read_config_word(pcid
, PCI_SUBSYSTEM_ID
,&pDevice
->SubSystemID
);
1170 pci_read_config_word(pcid
, PCI_SUBSYSTEM_VENDOR_ID
, &pDevice
->SubVendorID
);
1171 pci_read_config_word(pcid
, PCI_COMMAND
, (u16
*) & (pci_cmd
));
1173 pci_set_master(pcid
);
1175 pDevice
->memaddr
= pci_resource_start(pcid
,0);
1176 pDevice
->ioaddr
= pci_resource_start(pcid
,1);
1179 // pDevice->ioaddr = pci_resource_start(pcid, 0);
1180 // pDevice->memaddr = pci_resource_start(pcid,1);
1183 cis_addr
= pci_resource_start(pcid
,2);
1185 pDevice
->pcid
= pcid
;
1187 pci_read_config_byte(pcid
, PCI_COMMAND
, &b
);
1188 pci_write_config_byte(pcid
, PCI_COMMAND
, (b
|PCI_COMMAND_MASTER
));
1191 //pci_read_config_word(pcid,PCI_MAX_LAT,&max_lat);
1192 //printk("max lat is %x,SubSystemID is %x\n",max_lat,pDevice->SubSystemID);
1193 //for (ii=0;ii<0xFF;ii++)
1194 //pci_read_config_word(pcid,PCI_MAX_LAT,&max_lat);
1196 //pci_write_config_word(pcid,PCI_MAX_LAT,max_lat);
1197 //pci_read_config_word(pcid,PCI_MAX_LAT,&max_lat);
1198 //printk("max lat is %x\n",max_lat);
1200 for (ii
=0;ii
<0xFF;ii
++)
1202 pci_read_config_byte(pcid
,ii
,&value
);
1203 pci_config
[ii
] = value
;
1205 for (ii
=0,j
=1;ii
<0x100;ii
++,j
++)
1209 printk("%x:",pci_config
[ii
]);
1214 printk("%x:",pci_config
[ii
]);
1221 static void device_free_info(PSDevice pDevice
) {
1223 struct net_device
* dev
=pDevice
->dev
;
1226 //2008-0714-01<Add>by chester
1227 device_release_WPADEV(pDevice
);
1229 //2008-07-21-01<Add>by MikeLiu
1231 if(wpa_set_wpadev(pDevice
, 0)!=0)
1232 printk("unregister wpadev fail?\n");
1234 if (pDevice_Infos
==NULL
)
1237 for (ptr
=pDevice_Infos
;ptr
&& (ptr
!=pDevice
);ptr
=ptr
->next
)
1241 if (ptr
==pDevice_Infos
)
1242 pDevice_Infos
=ptr
->next
;
1244 ptr
->prev
->next
=ptr
->next
;
1247 DBG_PRT(MSG_LEVEL_ERR
, KERN_ERR
"info struct not found\n");
1252 vt6655_hostap_set_hostapd(pDevice
, 0, 0);
1255 unregister_netdev(dev
);
1257 if (pDevice
->PortOffset
)
1258 iounmap((void *)pDevice
->PortOffset
);
1261 pci_release_regions(pDevice
->pcid
);
1265 if (pDevice
->pcid
) {
1266 pci_set_drvdata(pDevice
->pcid
,NULL
);
1270 static bool device_init_rings(PSDevice pDevice
) {
1274 /*allocate all RD/TD rings a single pool*/
1275 vir_pool
= pci_alloc_consistent(pDevice
->pcid
,
1276 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
) +
1277 pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
) +
1278 pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
) +
1279 pDevice
->sOpts
.nTxDescs
[1] * sizeof(STxDesc
),
1280 &pDevice
->pool_dma
);
1282 if (vir_pool
== NULL
) {
1283 DBG_PRT(MSG_LEVEL_ERR
,KERN_ERR
"%s : allocate desc dma memory failed\n", pDevice
->dev
->name
);
1288 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
) +
1289 pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
) +
1290 pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
) +
1291 pDevice
->sOpts
.nTxDescs
[1] * sizeof(STxDesc
)
1294 pDevice
->aRD0Ring
= vir_pool
;
1295 pDevice
->aRD1Ring
= vir_pool
+
1296 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
);
1299 pDevice
->rd0_pool_dma
= pDevice
->pool_dma
;
1300 pDevice
->rd1_pool_dma
= pDevice
->rd0_pool_dma
+
1301 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
);
1303 pDevice
->tx0_bufs
= pci_alloc_consistent(pDevice
->pcid
,
1304 pDevice
->sOpts
.nTxDescs
[0] * PKT_BUF_SZ
+
1305 pDevice
->sOpts
.nTxDescs
[1] * PKT_BUF_SZ
+
1306 CB_BEACON_BUF_SIZE
+
1308 &pDevice
->tx_bufs_dma0
);
1310 if (pDevice
->tx0_bufs
== NULL
) {
1311 DBG_PRT(MSG_LEVEL_ERR
,KERN_ERR
"%s: allocate buf dma memory failed\n", pDevice
->dev
->name
);
1312 pci_free_consistent(pDevice
->pcid
,
1313 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
) +
1314 pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
) +
1315 pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
) +
1316 pDevice
->sOpts
.nTxDescs
[1] * sizeof(STxDesc
),
1317 vir_pool
, pDevice
->pool_dma
1322 memset(pDevice
->tx0_bufs
, 0,
1323 pDevice
->sOpts
.nTxDescs
[0] * PKT_BUF_SZ
+
1324 pDevice
->sOpts
.nTxDescs
[1] * PKT_BUF_SZ
+
1325 CB_BEACON_BUF_SIZE
+
1329 pDevice
->td0_pool_dma
= pDevice
->rd1_pool_dma
+
1330 pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
);
1332 pDevice
->td1_pool_dma
= pDevice
->td0_pool_dma
+
1333 pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
);
1336 // vir_pool: pvoid type
1337 pDevice
->apTD0Rings
= vir_pool
1338 + pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
)
1339 + pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
);
1341 pDevice
->apTD1Rings
= vir_pool
1342 + pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
)
1343 + pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
)
1344 + pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
);
1347 pDevice
->tx1_bufs
= pDevice
->tx0_bufs
+
1348 pDevice
->sOpts
.nTxDescs
[0] * PKT_BUF_SZ
;
1351 pDevice
->tx_beacon_bufs
= pDevice
->tx1_bufs
+
1352 pDevice
->sOpts
.nTxDescs
[1] * PKT_BUF_SZ
;
1354 pDevice
->pbyTmpBuff
= pDevice
->tx_beacon_bufs
+
1357 pDevice
->tx_bufs_dma1
= pDevice
->tx_bufs_dma0
+
1358 pDevice
->sOpts
.nTxDescs
[0] * PKT_BUF_SZ
;
1361 pDevice
->tx_beacon_dma
= pDevice
->tx_bufs_dma1
+
1362 pDevice
->sOpts
.nTxDescs
[1] * PKT_BUF_SZ
;
1368 static void device_free_rings(PSDevice pDevice
) {
1370 pci_free_consistent(pDevice
->pcid
,
1371 pDevice
->sOpts
.nRxDescs0
* sizeof(SRxDesc
) +
1372 pDevice
->sOpts
.nRxDescs1
* sizeof(SRxDesc
) +
1373 pDevice
->sOpts
.nTxDescs
[0] * sizeof(STxDesc
) +
1374 pDevice
->sOpts
.nTxDescs
[1] * sizeof(STxDesc
)
1376 pDevice
->aRD0Ring
, pDevice
->pool_dma
1379 if (pDevice
->tx0_bufs
)
1380 pci_free_consistent(pDevice
->pcid
,
1381 pDevice
->sOpts
.nTxDescs
[0] * PKT_BUF_SZ
+
1382 pDevice
->sOpts
.nTxDescs
[1] * PKT_BUF_SZ
+
1383 CB_BEACON_BUF_SIZE
+
1385 pDevice
->tx0_bufs
, pDevice
->tx_bufs_dma0
1389 static void device_init_rd0_ring(PSDevice pDevice
) {
1391 dma_addr_t curr
= pDevice
->rd0_pool_dma
;
1394 /* Init the RD0 ring entries */
1395 for (i
= 0; i
< pDevice
->sOpts
.nRxDescs0
; i
++, curr
+= sizeof(SRxDesc
)) {
1396 pDesc
= &(pDevice
->aRD0Ring
[i
]);
1397 pDesc
->pRDInfo
= alloc_rd_info();
1398 ASSERT(pDesc
->pRDInfo
);
1399 if (!device_alloc_rx_buf(pDevice
, pDesc
)) {
1400 DBG_PRT(MSG_LEVEL_ERR
,KERN_ERR
"%s: can not alloc rx bufs\n",
1401 pDevice
->dev
->name
);
1403 pDesc
->next
= &(pDevice
->aRD0Ring
[(i
+1) % pDevice
->sOpts
.nRxDescs0
]);
1404 pDesc
->pRDInfo
->curr_desc
= cpu_to_le32(curr
);
1405 pDesc
->next_desc
= cpu_to_le32(curr
+ sizeof(SRxDesc
));
1409 pDevice
->aRD0Ring
[i
-1].next_desc
= cpu_to_le32(pDevice
->rd0_pool_dma
);
1410 pDevice
->pCurrRD
[0] = &(pDevice
->aRD0Ring
[0]);
1414 static void device_init_rd1_ring(PSDevice pDevice
) {
1416 dma_addr_t curr
= pDevice
->rd1_pool_dma
;
1419 /* Init the RD1 ring entries */
1420 for (i
= 0; i
< pDevice
->sOpts
.nRxDescs1
; i
++, curr
+= sizeof(SRxDesc
)) {
1421 pDesc
= &(pDevice
->aRD1Ring
[i
]);
1422 pDesc
->pRDInfo
= alloc_rd_info();
1423 ASSERT(pDesc
->pRDInfo
);
1424 if (!device_alloc_rx_buf(pDevice
, pDesc
)) {
1425 DBG_PRT(MSG_LEVEL_ERR
,KERN_ERR
"%s: can not alloc rx bufs\n",
1426 pDevice
->dev
->name
);
1428 pDesc
->next
= &(pDevice
->aRD1Ring
[(i
+1) % pDevice
->sOpts
.nRxDescs1
]);
1429 pDesc
->pRDInfo
->curr_desc
= cpu_to_le32(curr
);
1430 pDesc
->next_desc
= cpu_to_le32(curr
+ sizeof(SRxDesc
));
1434 pDevice
->aRD1Ring
[i
-1].next_desc
= cpu_to_le32(pDevice
->rd1_pool_dma
);
1435 pDevice
->pCurrRD
[1] = &(pDevice
->aRD1Ring
[0]);
1439 static void device_init_defrag_cb(PSDevice pDevice
) {
1441 PSDeFragControlBlock pDeF
;
1443 /* Init the fragment ctl entries */
1444 for (i
= 0; i
< CB_MAX_RX_FRAG
; i
++) {
1445 pDeF
= &(pDevice
->sRxDFCB
[i
]);
1446 if (!device_alloc_frag_buf(pDevice
, pDeF
)) {
1447 DBG_PRT(MSG_LEVEL_ERR
,KERN_ERR
"%s: can not alloc frag bufs\n",
1448 pDevice
->dev
->name
);
1451 pDevice
->cbDFCB
= CB_MAX_RX_FRAG
;
1452 pDevice
->cbFreeDFCB
= pDevice
->cbDFCB
;
1458 static void device_free_rd0_ring(PSDevice pDevice
) {
1461 for (i
= 0; i
< pDevice
->sOpts
.nRxDescs0
; i
++) {
1462 PSRxDesc pDesc
=&(pDevice
->aRD0Ring
[i
]);
1463 PDEVICE_RD_INFO pRDInfo
=pDesc
->pRDInfo
;
1465 pci_unmap_single(pDevice
->pcid
,pRDInfo
->skb_dma
,
1466 pDevice
->rx_buf_sz
, PCI_DMA_FROMDEVICE
);
1468 dev_kfree_skb(pRDInfo
->skb
);
1470 kfree((void *)pDesc
->pRDInfo
);
1475 static void device_free_rd1_ring(PSDevice pDevice
) {
1479 for (i
= 0; i
< pDevice
->sOpts
.nRxDescs1
; i
++) {
1480 PSRxDesc pDesc
=&(pDevice
->aRD1Ring
[i
]);
1481 PDEVICE_RD_INFO pRDInfo
=pDesc
->pRDInfo
;
1483 pci_unmap_single(pDevice
->pcid
,pRDInfo
->skb_dma
,
1484 pDevice
->rx_buf_sz
, PCI_DMA_FROMDEVICE
);
1486 dev_kfree_skb(pRDInfo
->skb
);
1488 kfree((void *)pDesc
->pRDInfo
);
1493 static void device_free_frag_buf(PSDevice pDevice
) {
1494 PSDeFragControlBlock pDeF
;
1497 for (i
= 0; i
< CB_MAX_RX_FRAG
; i
++) {
1499 pDeF
= &(pDevice
->sRxDFCB
[i
]);
1502 dev_kfree_skb(pDeF
->skb
);
1508 static void device_init_td0_ring(PSDevice pDevice
) {
1513 curr
= pDevice
->td0_pool_dma
;
1514 for (i
= 0; i
< pDevice
->sOpts
.nTxDescs
[0]; i
++, curr
+= sizeof(STxDesc
)) {
1515 pDesc
= &(pDevice
->apTD0Rings
[i
]);
1516 pDesc
->pTDInfo
= alloc_td_info();
1517 ASSERT(pDesc
->pTDInfo
);
1518 if (pDevice
->flags
& DEVICE_FLAGS_TX_ALIGN
) {
1519 pDesc
->pTDInfo
->buf
= pDevice
->tx0_bufs
+ (i
)*PKT_BUF_SZ
;
1520 pDesc
->pTDInfo
->buf_dma
= pDevice
->tx_bufs_dma0
+ (i
)*PKT_BUF_SZ
;
1522 pDesc
->next
=&(pDevice
->apTD0Rings
[(i
+1) % pDevice
->sOpts
.nTxDescs
[0]]);
1523 pDesc
->pTDInfo
->curr_desc
= cpu_to_le32(curr
);
1524 pDesc
->next_desc
= cpu_to_le32(curr
+sizeof(STxDesc
));
1528 pDevice
->apTD0Rings
[i
-1].next_desc
= cpu_to_le32(pDevice
->td0_pool_dma
);
1529 pDevice
->apTailTD
[0] = pDevice
->apCurrTD
[0] =&(pDevice
->apTD0Rings
[0]);
1533 static void device_init_td1_ring(PSDevice pDevice
) {
1538 /* Init the TD ring entries */
1539 curr
=pDevice
->td1_pool_dma
;
1540 for (i
= 0; i
< pDevice
->sOpts
.nTxDescs
[1]; i
++, curr
+=sizeof(STxDesc
)) {
1541 pDesc
=&(pDevice
->apTD1Rings
[i
]);
1542 pDesc
->pTDInfo
= alloc_td_info();
1543 ASSERT(pDesc
->pTDInfo
);
1544 if (pDevice
->flags
& DEVICE_FLAGS_TX_ALIGN
) {
1545 pDesc
->pTDInfo
->buf
=pDevice
->tx1_bufs
+(i
)*PKT_BUF_SZ
;
1546 pDesc
->pTDInfo
->buf_dma
=pDevice
->tx_bufs_dma1
+(i
)*PKT_BUF_SZ
;
1548 pDesc
->next
=&(pDevice
->apTD1Rings
[(i
+1) % pDevice
->sOpts
.nTxDescs
[1]]);
1549 pDesc
->pTDInfo
->curr_desc
= cpu_to_le32(curr
);
1550 pDesc
->next_desc
= cpu_to_le32(curr
+sizeof(STxDesc
));
1554 pDevice
->apTD1Rings
[i
-1].next_desc
= cpu_to_le32(pDevice
->td1_pool_dma
);
1555 pDevice
->apTailTD
[1] = pDevice
->apCurrTD
[1] = &(pDevice
->apTD1Rings
[0]);
1560 static void device_free_td0_ring(PSDevice pDevice
) {
1562 for (i
= 0; i
< pDevice
->sOpts
.nTxDescs
[0]; i
++) {
1563 PSTxDesc pDesc
=&(pDevice
->apTD0Rings
[i
]);
1564 PDEVICE_TD_INFO pTDInfo
=pDesc
->pTDInfo
;
1566 if (pTDInfo
->skb_dma
&& (pTDInfo
->skb_dma
!= pTDInfo
->buf_dma
))
1567 pci_unmap_single(pDevice
->pcid
,pTDInfo
->skb_dma
,
1568 pTDInfo
->skb
->len
, PCI_DMA_TODEVICE
);
1571 dev_kfree_skb(pTDInfo
->skb
);
1573 kfree((void *)pDesc
->pTDInfo
);
1577 static void device_free_td1_ring(PSDevice pDevice
) {
1580 for (i
= 0; i
< pDevice
->sOpts
.nTxDescs
[1]; i
++) {
1581 PSTxDesc pDesc
=&(pDevice
->apTD1Rings
[i
]);
1582 PDEVICE_TD_INFO pTDInfo
=pDesc
->pTDInfo
;
1584 if (pTDInfo
->skb_dma
&& (pTDInfo
->skb_dma
!= pTDInfo
->buf_dma
))
1585 pci_unmap_single(pDevice
->pcid
, pTDInfo
->skb_dma
,
1586 pTDInfo
->skb
->len
, PCI_DMA_TODEVICE
);
1589 dev_kfree_skb(pTDInfo
->skb
);
1591 kfree((void *)pDesc
->pTDInfo
);
1598 /*-----------------------------------------------------------------*/
1600 static int device_rx_srv(PSDevice pDevice
, unsigned int uIdx
) {
1605 for (pRD
= pDevice
->pCurrRD
[uIdx
];
1606 pRD
->m_rd0RD0
.f1Owner
== OWNED_BY_HOST
;
1608 // DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pDevice->pCurrRD = %x, works = %d\n", pRD, works);
1611 if (device_receive_frame(pDevice
, pRD
)) {
1612 if (!device_alloc_rx_buf(pDevice
,pRD
)) {
1613 DBG_PRT(MSG_LEVEL_ERR
, KERN_ERR
1614 "%s: can not allocate rx buf\n", pDevice
->dev
->name
);
1618 pRD
->m_rd0RD0
.f1Owner
= OWNED_BY_NIC
;
1619 pDevice
->dev
->last_rx
= jiffies
;
1622 pDevice
->pCurrRD
[uIdx
]=pRD
;
1628 static bool device_alloc_rx_buf(PSDevice pDevice
, PSRxDesc pRD
) {
1630 PDEVICE_RD_INFO pRDInfo
=pRD
->pRDInfo
;
1633 pRDInfo
->skb
= dev_alloc_skb((int)pDevice
->rx_buf_sz
);
1635 //printk("device_alloc_rx_buf:skb is %x\n",pRDInfo->skb);
1637 if (pRDInfo
->skb
==NULL
)
1639 ASSERT(pRDInfo
->skb
);
1640 pRDInfo
->skb
->dev
= pDevice
->dev
;
1641 pRDInfo
->skb_dma
= pci_map_single(pDevice
->pcid
, skb_tail_pointer(pRDInfo
->skb
),
1642 pDevice
->rx_buf_sz
, PCI_DMA_FROMDEVICE
);
1643 *((unsigned int *) &(pRD
->m_rd0RD0
)) = 0; /* FIX cast */
1645 pRD
->m_rd0RD0
.wResCount
= cpu_to_le16(pDevice
->rx_buf_sz
);
1646 pRD
->m_rd0RD0
.f1Owner
= OWNED_BY_NIC
;
1647 pRD
->m_rd1RD1
.wReqCount
= cpu_to_le16(pDevice
->rx_buf_sz
);
1648 pRD
->buff_addr
= cpu_to_le32(pRDInfo
->skb_dma
);
1655 bool device_alloc_frag_buf(PSDevice pDevice
, PSDeFragControlBlock pDeF
) {
1657 pDeF
->skb
= dev_alloc_skb((int)pDevice
->rx_buf_sz
);
1658 if (pDeF
->skb
== NULL
)
1661 pDeF
->skb
->dev
= pDevice
->dev
;
1668 static int device_tx_srv(PSDevice pDevice
, unsigned int uIdx
) {
1672 unsigned char byTsr0
;
1673 unsigned char byTsr1
;
1674 unsigned int uFrameSize
, uFIFOHeaderSize
;
1675 PSTxBufHead pTxBufHead
;
1676 struct net_device_stats
* pStats
= &pDevice
->stats
;
1677 struct sk_buff
* skb
;
1678 unsigned int uNodeIndex
;
1679 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
1682 for (pTD
= pDevice
->apTailTD
[uIdx
]; pDevice
->iTDUsed
[uIdx
] >0; pTD
= pTD
->next
) {
1684 if (pTD
->m_td0TD0
.f1Owner
== OWNED_BY_NIC
)
1689 byTsr0
= pTD
->m_td0TD0
.byTSR0
;
1690 byTsr1
= pTD
->m_td0TD0
.byTSR1
;
1692 //Only the status of first TD in the chain is correct
1693 if (pTD
->m_td1TD1
.byTCR
& TCR_STP
) {
1695 if ((pTD
->pTDInfo
->byFlags
& TD_FLAGS_NETIF_SKB
) != 0) {
1696 uFIFOHeaderSize
= pTD
->pTDInfo
->dwHeaderLength
;
1697 uFrameSize
= pTD
->pTDInfo
->dwReqCount
- uFIFOHeaderSize
;
1698 pTxBufHead
= (PSTxBufHead
) (pTD
->pTDInfo
->buf
);
1699 // Update the statistics based on the Transmit status
1700 // now, we DO'NT check TSR0_CDH
1702 STAvUpdateTDStatCounter(&pDevice
->scStatistic
,
1704 (unsigned char *)(pTD
->pTDInfo
->buf
+ uFIFOHeaderSize
),
1708 BSSvUpdateNodeTxCounter(pDevice
,
1710 (unsigned char *)(pTD
->pTDInfo
->buf
),
1714 if ( !(byTsr1
& TSR1_TERR
)) {
1716 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Tx[%d] OK but has error. tsr1[%02X] tsr0[%02X].\n",
1717 (int)uIdx
, byTsr1
, byTsr0
);
1719 if ((pTxBufHead
->wFragCtl
& FRAGCTL_ENDFRAG
) != FRAGCTL_NONFRAG
) {
1720 pDevice
->s802_11Counter
.TransmittedFragmentCount
++;
1722 pStats
->tx_packets
++;
1723 pStats
->tx_bytes
+= pTD
->pTDInfo
->skb
->len
;
1726 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Tx[%d] dropped & tsr1[%02X] tsr0[%02X].\n",
1727 (int)uIdx
, byTsr1
, byTsr0
);
1728 pStats
->tx_errors
++;
1729 pStats
->tx_dropped
++;
1733 if ((pTD
->pTDInfo
->byFlags
& TD_FLAGS_PRIV_SKB
) != 0) {
1734 if (pDevice
->bEnableHostapd
) {
1735 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"tx call back netif.. \n");
1736 skb
= pTD
->pTDInfo
->skb
;
1737 skb
->dev
= pDevice
->apdev
;
1738 skb_reset_mac_header(skb
);
1739 skb
->pkt_type
= PACKET_OTHERHOST
;
1740 //skb->protocol = htons(ETH_P_802_2);
1741 memset(skb
->cb
, 0, sizeof(skb
->cb
));
1746 if (byTsr1
& TSR1_TERR
) {
1747 if ((pTD
->pTDInfo
->byFlags
& TD_FLAGS_PRIV_SKB
) != 0) {
1748 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Tx[%d] fail has error. tsr1[%02X] tsr0[%02X].\n",
1749 (int)uIdx
, byTsr1
, byTsr0
);
1752 // DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" Tx[%d] fail has error. tsr1[%02X] tsr0[%02X].\n",
1753 // (int)uIdx, byTsr1, byTsr0);
1755 if ((pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
) &&
1756 (pTD
->pTDInfo
->byFlags
& TD_FLAGS_NETIF_SKB
)) {
1757 unsigned short wAID
;
1758 unsigned char byMask
[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
1760 skb
= pTD
->pTDInfo
->skb
;
1761 if (BSSDBbIsSTAInNodeDB(pMgmt
, (unsigned char *)(skb
->data
), &uNodeIndex
)) {
1762 if (pMgmt
->sNodeDBTable
[uNodeIndex
].bPSEnable
) {
1763 skb_queue_tail(&pMgmt
->sNodeDBTable
[uNodeIndex
].sTxPSQueue
, skb
);
1764 pMgmt
->sNodeDBTable
[uNodeIndex
].wEnQueueCnt
++;
1766 wAID
= pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
;
1767 pMgmt
->abyPSTxMap
[wAID
>> 3] |= byMask
[wAID
& 7];
1768 pTD
->pTDInfo
->byFlags
&= ~(TD_FLAGS_NETIF_SKB
);
1769 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"tx_srv:tx fail re-queue sta index= %d, QueCnt= %d\n"
1770 ,(int)uNodeIndex
, pMgmt
->sNodeDBTable
[uNodeIndex
].wEnQueueCnt
);
1771 pStats
->tx_errors
--;
1772 pStats
->tx_dropped
--;
1777 device_free_tx_buf(pDevice
,pTD
);
1778 pDevice
->iTDUsed
[uIdx
]--;
1783 if (uIdx
== TYPE_AC0DMA
) {
1784 // RESERV_AC0DMA reserved for relay
1786 if (AVAIL_TD(pDevice
, uIdx
) < RESERV_AC0DMA
) {
1788 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" AC0DMA is Full = %d\n", pDevice
->iTDUsed
[uIdx
]);
1790 if (netif_queue_stopped(pDevice
->dev
) && (bFull
==false)){
1791 netif_wake_queue(pDevice
->dev
);
1796 pDevice
->apTailTD
[uIdx
] = pTD
;
1802 static void device_error(PSDevice pDevice
, unsigned short status
) {
1804 if (status
& ISR_FETALERR
) {
1805 DBG_PRT(MSG_LEVEL_ERR
, KERN_ERR
1806 "%s: Hardware fatal error.\n",
1807 pDevice
->dev
->name
);
1808 netif_stop_queue(pDevice
->dev
);
1809 del_timer(&pDevice
->sTimerCommand
);
1810 del_timer(&(pDevice
->pMgmt
->sTimerSecondCallback
));
1811 pDevice
->bCmdRunning
= false;
1812 MACbShutdown(pDevice
->PortOffset
);
1818 static void device_free_tx_buf(PSDevice pDevice
, PSTxDesc pDesc
) {
1819 PDEVICE_TD_INFO pTDInfo
=pDesc
->pTDInfo
;
1820 struct sk_buff
* skb
=pTDInfo
->skb
;
1822 // pre-allocated buf_dma can't be unmapped.
1823 if (pTDInfo
->skb_dma
&& (pTDInfo
->skb_dma
!= pTDInfo
->buf_dma
)) {
1824 pci_unmap_single(pDevice
->pcid
,pTDInfo
->skb_dma
,skb
->len
,
1828 if ((pTDInfo
->byFlags
& TD_FLAGS_NETIF_SKB
) != 0)
1829 dev_kfree_skb_irq(skb
);
1831 pTDInfo
->skb_dma
= 0;
1833 pTDInfo
->byFlags
= 0;
1839 void InitRxManagementQueue(PSDevice pDevice
)
1841 pDevice
->rxManeQueue
.packet_num
= 0;
1842 pDevice
->rxManeQueue
.head
= pDevice
->rxManeQueue
.tail
= 0;
1854 PSDevice pDevice
= (PSDevice
) Context
;
1855 PSRxMgmtPacket pRxMgmtPacket
;
1857 //complete(&pDevice->notify);
1858 //printk("Enter MngWorkItem,Queue packet num is %d\n",pDevice->rxManeQueue.packet_num);
1860 //printk("Enter MlmeThread,packet _num is %d\n",pDevice->rxManeQueue.packet_num);
1867 //down(&pDevice->mlme_semaphore);
1868 // pRxMgmtPacket = DeQueue(pDevice);
1870 spin_lock_irq(&pDevice
->lock
);
1871 while(pDevice
->rxManeQueue
.packet_num
!= 0)
1873 pRxMgmtPacket
= DeQueue(pDevice
);
1875 //DequeueManageObject(pDevice->FirstRecvMngList, pDevice->LastRecvMngList);
1876 vMgrRxManagePacket(pDevice
, pDevice
->pMgmt
, pRxMgmtPacket
);
1877 //printk("packet_num is %d\n",pDevice->rxManeQueue.packet_num);
1880 spin_unlock_irq(&pDevice
->lock
);
1885 //printk("Before schedule thread jiffies is %x\n",jiffies);
1887 //printk("after schedule thread jiffies is %x\n",jiffies);
1890 //printk("i is %d\n",i);
1900 static int device_open(struct net_device
*dev
) {
1901 PSDevice pDevice
=(PSDevice
) netdev_priv(dev
);
1903 #ifdef WPA_SM_Transtatus
1904 extern SWPAResult wpa_Result
;
1907 pDevice
->rx_buf_sz
= PKT_BUF_SZ
;
1908 if (!device_init_rings(pDevice
)) {
1911 //2008-5-13 <add> by chester
1912 i
=request_irq(pDevice
->pcid
->irq
, &device_intr
, IRQF_SHARED
, dev
->name
, dev
);
1915 //printk("DEBUG1\n");
1916 #ifdef WPA_SM_Transtatus
1917 memset(wpa_Result
.ifname
,0,sizeof(wpa_Result
.ifname
));
1918 wpa_Result
.proto
= 0;
1919 wpa_Result
.key_mgmt
= 0;
1920 wpa_Result
.eap_type
= 0;
1921 wpa_Result
.authenticated
= false;
1922 pDevice
->fWPA_Authened
= false;
1924 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"call device init rd0 ring\n");
1925 device_init_rd0_ring(pDevice
);
1926 device_init_rd1_ring(pDevice
);
1927 device_init_defrag_cb(pDevice
);
1928 device_init_td0_ring(pDevice
);
1929 device_init_td1_ring(pDevice
);
1930 // VNTWIFIvSet11h(pDevice->pMgmt, pDevice->b11hEnable);
1933 if (pDevice
->bDiversityRegCtlON
) {
1934 device_init_diversity_timer(pDevice
);
1936 vMgrObjectInit(pDevice
);
1937 vMgrTimerInit(pDevice
);
1941 tasklet_init (&pDevice
->RxMngWorkItem
,(void *)MngWorkItem
,(unsigned long )pDevice
);
1944 InitRxManagementQueue(pDevice
);
1946 mlme_task
= kthread_run(MlmeThread
,(void *) pDevice
, "MLME");
1947 if (IS_ERR(mlme_task
)) {
1948 printk("thread create fail\n");
1958 pDevice
->MLMEThr_pid
= kernel_thread(MlmeThread
, pDevice
, CLONE_VM
);
1959 if (pDevice
->MLMEThr_pid
<0 )
1961 printk("unable start thread MlmeThread\n");
1966 //printk("thread id is %d\n",pDevice->MLMEThr_pid);
1967 //printk("Create thread time is %x\n",jiffies);
1968 //wait_for_completion(&pDevice->notify);
1973 // if (( SROMbyReadEmbedded(pDevice->PortOffset, EEP_OFS_RADIOCTL)&0x06)==0x04)
1975 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"call device_init_registers\n");
1976 device_init_registers(pDevice
, DEVICE_INIT_COLD
);
1977 MACvReadEtherAddress(pDevice
->PortOffset
, pDevice
->abyCurrentNetAddr
);
1978 memcpy(pDevice
->pMgmt
->abyMACAddr
, pDevice
->abyCurrentNetAddr
, ETH_ALEN
);
1979 device_set_multi(pDevice
->dev
);
1981 // Init for Key Management
1982 KeyvInitTable(&pDevice
->sKey
, pDevice
->PortOffset
);
1983 add_timer(&(pDevice
->pMgmt
->sTimerSecondCallback
));
1985 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
1987 pDevice->bwextstep0 = false;
1988 pDevice->bwextstep1 = false;
1989 pDevice->bwextstep2 = false;
1990 pDevice->bwextstep3 = false;
1992 pDevice
->bwextcount
=0;
1993 pDevice
->bWPASuppWextEnabled
= false;
1995 pDevice
->byReAssocCount
= 0;
1996 pDevice
->bWPADEVUp
= false;
1997 // Patch: if WEP key already set by iwconfig but device not yet open
1998 if ((pDevice
->bEncryptionEnable
== true) && (pDevice
->bTransmitKey
== true)) {
1999 KeybSetDefaultKey(&(pDevice
->sKey
),
2000 (unsigned long)(pDevice
->byKeyIndex
| (1 << 31)),
2001 pDevice
->uKeyLength
,
2005 pDevice
->PortOffset
,
2008 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
2011 //printk("DEBUG2\n");
2014 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"call MACvIntEnable\n");
2015 MACvIntEnable(pDevice
->PortOffset
, IMR_MASK_VALUE
);
2017 if (pDevice
->pMgmt
->eConfigMode
== WMAC_CONFIG_AP
) {
2018 bScheduleCommand((void *)pDevice
, WLAN_CMD_RUN_AP
, NULL
);
2021 bScheduleCommand((void *)pDevice
, WLAN_CMD_BSSID_SCAN
, NULL
);
2022 bScheduleCommand((void *)pDevice
, WLAN_CMD_SSID
, NULL
);
2024 pDevice
->flags
|=DEVICE_FLAGS_OPENED
;
2026 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_open success.. \n");
2031 static int device_close(struct net_device
*dev
) {
2032 PSDevice pDevice
=(PSDevice
) netdev_priv(dev
);
2033 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
2039 //2007-1121-02<Add>by EinsnLiu
2040 if (pDevice
->bLinkPass
) {
2041 bScheduleCommand((void *)pDevice
, WLAN_CMD_DISASSOCIATE
, NULL
);
2045 del_timer(&pDevice
->sTimerTxData
);
2047 del_timer(&pDevice
->sTimerCommand
);
2048 del_timer(&pMgmt
->sTimerSecondCallback
);
2049 if (pDevice
->bDiversityRegCtlON
) {
2050 del_timer(&pDevice
->TimerSQ3Tmax1
);
2051 del_timer(&pDevice
->TimerSQ3Tmax2
);
2052 del_timer(&pDevice
->TimerSQ3Tmax3
);
2056 tasklet_kill(&pDevice
->RxMngWorkItem
);
2058 netif_stop_queue(dev
);
2059 pDevice
->bCmdRunning
= false;
2060 MACbShutdown(pDevice
->PortOffset
);
2061 MACbSoftwareReset(pDevice
->PortOffset
);
2062 CARDbRadioPowerOff(pDevice
);
2064 pDevice
->bLinkPass
= false;
2065 memset(pMgmt
->abyCurrBSSID
, 0, 6);
2066 pMgmt
->eCurrState
= WMAC_STATE_IDLE
;
2067 device_free_td0_ring(pDevice
);
2068 device_free_td1_ring(pDevice
);
2069 device_free_rd0_ring(pDevice
);
2070 device_free_rd1_ring(pDevice
);
2071 device_free_frag_buf(pDevice
);
2072 device_free_rings(pDevice
);
2073 BSSvClearNodeDBTable(pDevice
, 0);
2074 free_irq(dev
->irq
, dev
);
2075 pDevice
->flags
&=(~DEVICE_FLAGS_OPENED
);
2076 //2008-0714-01<Add>by chester
2077 device_release_WPADEV(pDevice
);
2079 //tasklet_kill(&pDevice->RxMngWorkItem);
2081 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_close.. \n");
2087 static int device_dma0_tx_80211(struct sk_buff
*skb
, struct net_device
*dev
) {
2088 PSDevice pDevice
=netdev_priv(dev
);
2089 unsigned char *pbMPDU
;
2090 unsigned int cbMPDULen
= 0;
2093 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_dma0_tx_80211\n");
2094 spin_lock_irq(&pDevice
->lock
);
2096 if (AVAIL_TD(pDevice
, TYPE_TXDMA0
) <= 0) {
2097 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_dma0_tx_80211, td0 <=0\n");
2098 dev_kfree_skb_irq(skb
);
2099 spin_unlock_irq(&pDevice
->lock
);
2103 if (pDevice
->bStopTx0Pkt
== true) {
2104 dev_kfree_skb_irq(skb
);
2105 spin_unlock_irq(&pDevice
->lock
);
2109 cbMPDULen
= skb
->len
;
2112 vDMA0_tx_80211(pDevice
, skb
, pbMPDU
, cbMPDULen
);
2114 spin_unlock_irq(&pDevice
->lock
);
2122 bool device_dma0_xmit(PSDevice pDevice
, struct sk_buff
*skb
, unsigned int uNodeIndex
) {
2123 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
2124 PSTxDesc pHeadTD
, pLastTD
;
2125 unsigned int cbFrameBodySize
;
2126 unsigned int uMACfragNum
;
2127 unsigned char byPktType
;
2128 bool bNeedEncryption
= false;
2129 PSKeyItem pTransmitKey
= NULL
;
2130 unsigned int cbHeaderSize
;
2133 // unsigned char byKeyIndex = 0;
2136 if (pDevice
->bStopTx0Pkt
== true) {
2137 dev_kfree_skb_irq(skb
);
2141 if (AVAIL_TD(pDevice
, TYPE_TXDMA0
) <= 0) {
2142 dev_kfree_skb_irq(skb
);
2143 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_dma0_xmit, td0 <=0\n");
2147 if (pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
) {
2148 if (pDevice
->uAssocCount
== 0) {
2149 dev_kfree_skb_irq(skb
);
2150 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"device_dma0_xmit, assocCount = 0\n");
2155 pHeadTD
= pDevice
->apCurrTD
[TYPE_TXDMA0
];
2157 pHeadTD
->m_td1TD1
.byTCR
= (TCR_EDP
|TCR_STP
);
2159 memcpy(pDevice
->sTxEthHeader
.abyDstAddr
, (unsigned char *)(skb
->data
), ETH_HLEN
);
2160 cbFrameBodySize
= skb
->len
- ETH_HLEN
;
2163 if (ntohs(pDevice
->sTxEthHeader
.wType
) > ETH_DATA_LEN
) {
2164 cbFrameBodySize
+= 8;
2166 uMACfragNum
= cbGetFragCount(pDevice
, pTransmitKey
, cbFrameBodySize
, &pDevice
->sTxEthHeader
);
2168 if ( uMACfragNum
> AVAIL_TD(pDevice
, TYPE_TXDMA0
)) {
2169 dev_kfree_skb_irq(skb
);
2172 byPktType
= (unsigned char)pDevice
->byPacketType
;
2175 if (pDevice
->bFixRate
) {
2176 if (pDevice
->eCurrentPHYType
== PHY_TYPE_11B
) {
2177 if (pDevice
->uConnectionRate
>= RATE_11M
) {
2178 pDevice
->wCurrentRate
= RATE_11M
;
2180 pDevice
->wCurrentRate
= (unsigned short)pDevice
->uConnectionRate
;
2183 if (pDevice
->uConnectionRate
>= RATE_54M
)
2184 pDevice
->wCurrentRate
= RATE_54M
;
2186 pDevice
->wCurrentRate
= (unsigned short)pDevice
->uConnectionRate
;
2190 pDevice
->wCurrentRate
= pDevice
->pMgmt
->sNodeDBTable
[uNodeIndex
].wTxDataRate
;
2194 if (pMgmt
->sNodeDBTable
[uNodeIndex
].bShortPreamble
) {
2195 pDevice
->byPreambleType
= pDevice
->byShortPreamble
;
2198 pDevice
->byPreambleType
= PREAMBLE_LONG
;
2201 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"dma0: pDevice->wCurrentRate = %d \n", pDevice
->wCurrentRate
);
2204 if (pDevice
->wCurrentRate
<= RATE_11M
) {
2205 byPktType
= PK_TYPE_11B
;
2206 } else if (pDevice
->eCurrentPHYType
== PHY_TYPE_11A
) {
2207 byPktType
= PK_TYPE_11A
;
2209 if (pDevice
->bProtectMode
== true) {
2210 byPktType
= PK_TYPE_11GB
;
2212 byPktType
= PK_TYPE_11GA
;
2216 if (pDevice
->bEncryptionEnable
== true)
2217 bNeedEncryption
= true;
2219 if (pDevice
->bEnableHostWEP
) {
2220 pTransmitKey
= &STempKey
;
2221 pTransmitKey
->byCipherSuite
= pMgmt
->sNodeDBTable
[uNodeIndex
].byCipherSuite
;
2222 pTransmitKey
->dwKeyIndex
= pMgmt
->sNodeDBTable
[uNodeIndex
].dwKeyIndex
;
2223 pTransmitKey
->uKeyLength
= pMgmt
->sNodeDBTable
[uNodeIndex
].uWepKeyLength
;
2224 pTransmitKey
->dwTSC47_16
= pMgmt
->sNodeDBTable
[uNodeIndex
].dwTSC47_16
;
2225 pTransmitKey
->wTSC15_0
= pMgmt
->sNodeDBTable
[uNodeIndex
].wTSC15_0
;
2226 memcpy(pTransmitKey
->abyKey
,
2227 &pMgmt
->sNodeDBTable
[uNodeIndex
].abyWepKey
[0],
2228 pTransmitKey
->uKeyLength
2231 vGenerateFIFOHeader(pDevice
, byPktType
, pDevice
->pbyTmpBuff
, bNeedEncryption
,
2232 cbFrameBodySize
, TYPE_TXDMA0
, pHeadTD
,
2233 &pDevice
->sTxEthHeader
, (unsigned char *)skb
->data
, pTransmitKey
, uNodeIndex
,
2238 if (MACbIsRegBitsOn(pDevice
->PortOffset
, MAC_REG_PSCTL
, PSCTL_PS
)) {
2240 MACbPSWakeup(pDevice
->PortOffset
);
2243 pDevice
->bPWBitOn
= false;
2246 for (ii
= 0; ii
< uMACfragNum
; ii
++) {
2247 // Poll Transmit the adapter
2249 pHeadTD
->m_td0TD0
.f1Owner
=OWNED_BY_NIC
;
2251 if (ii
== (uMACfragNum
- 1))
2253 pHeadTD
= pHeadTD
->next
;
2256 // Save the information needed by the tx interrupt handler
2257 // to complete the Send request
2258 pLastTD
->pTDInfo
->skb
= skb
;
2259 pLastTD
->pTDInfo
->byFlags
= 0;
2260 pLastTD
->pTDInfo
->byFlags
|= TD_FLAGS_NETIF_SKB
;
2262 pDevice
->apCurrTD
[TYPE_TXDMA0
] = pHeadTD
;
2264 MACvTransmit0(pDevice
->PortOffset
);
2270 //TYPE_AC0DMA data tx
2271 static int device_xmit(struct sk_buff
*skb
, struct net_device
*dev
) {
2272 PSDevice pDevice
=netdev_priv(dev
);
2274 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
2275 PSTxDesc pHeadTD
, pLastTD
;
2276 unsigned int uNodeIndex
= 0;
2277 unsigned char byMask
[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2278 unsigned short wAID
;
2279 unsigned int uMACfragNum
= 1;
2280 unsigned int cbFrameBodySize
;
2281 unsigned char byPktType
;
2282 unsigned int cbHeaderSize
;
2283 bool bNeedEncryption
= false;
2284 PSKeyItem pTransmitKey
= NULL
;
2287 bool bTKIP_UseGTK
= false;
2288 bool bNeedDeAuth
= false;
2289 unsigned char *pbyBSSID
;
2290 bool bNodeExist
= false;
2294 spin_lock_irq(&pDevice
->lock
);
2295 if (pDevice
->bLinkPass
== false) {
2296 dev_kfree_skb_irq(skb
);
2297 spin_unlock_irq(&pDevice
->lock
);
2301 if (pDevice
->bStopDataPkt
) {
2302 dev_kfree_skb_irq(skb
);
2303 spin_unlock_irq(&pDevice
->lock
);
2308 if (pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
) {
2309 if (pDevice
->uAssocCount
== 0) {
2310 dev_kfree_skb_irq(skb
);
2311 spin_unlock_irq(&pDevice
->lock
);
2314 if (is_multicast_ether_addr((unsigned char *)(skb
->data
))) {
2317 if (pMgmt
->sNodeDBTable
[0].bPSEnable
) {
2318 skb_queue_tail(&(pMgmt
->sNodeDBTable
[0].sTxPSQueue
), skb
);
2319 pMgmt
->sNodeDBTable
[0].wEnQueueCnt
++;
2321 pMgmt
->abyPSTxMap
[0] |= byMask
[0];
2322 spin_unlock_irq(&pDevice
->lock
);
2326 if (BSSDBbIsSTAInNodeDB(pMgmt
, (unsigned char *)(skb
->data
), &uNodeIndex
)) {
2327 if (pMgmt
->sNodeDBTable
[uNodeIndex
].bPSEnable
) {
2328 skb_queue_tail(&pMgmt
->sNodeDBTable
[uNodeIndex
].sTxPSQueue
, skb
);
2329 pMgmt
->sNodeDBTable
[uNodeIndex
].wEnQueueCnt
++;
2331 wAID
= pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
;
2332 pMgmt
->abyPSTxMap
[wAID
>> 3] |= byMask
[wAID
& 7];
2333 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set:pMgmt->abyPSTxMap[%d]= %d\n",
2334 (wAID
>> 3), pMgmt
->abyPSTxMap
[wAID
>> 3]);
2335 spin_unlock_irq(&pDevice
->lock
);
2339 if (pMgmt
->sNodeDBTable
[uNodeIndex
].bShortPreamble
) {
2340 pDevice
->byPreambleType
= pDevice
->byShortPreamble
;
2343 pDevice
->byPreambleType
= PREAMBLE_LONG
;
2350 if (bNodeExist
== false) {
2351 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"Unknown STA not found in node DB \n");
2352 dev_kfree_skb_irq(skb
);
2353 spin_unlock_irq(&pDevice
->lock
);
2358 pHeadTD
= pDevice
->apCurrTD
[TYPE_AC0DMA
];
2360 pHeadTD
->m_td1TD1
.byTCR
= (TCR_EDP
|TCR_STP
);
2363 memcpy(pDevice
->sTxEthHeader
.abyDstAddr
, (unsigned char *)(skb
->data
), ETH_HLEN
);
2364 cbFrameBodySize
= skb
->len
- ETH_HLEN
;
2366 if (ntohs(pDevice
->sTxEthHeader
.wType
) > ETH_DATA_LEN
) {
2367 cbFrameBodySize
+= 8;
2371 if (pDevice
->bEncryptionEnable
== true) {
2372 bNeedEncryption
= true;
2375 if ((pDevice
->pMgmt
->eCurrMode
== WMAC_MODE_ESS_STA
) &&
2376 (pDevice
->pMgmt
->eCurrState
== WMAC_STATE_ASSOC
)) {
2377 pbyBSSID
= pDevice
->abyBSSID
;
2379 if (KeybGetTransmitKey(&(pDevice
->sKey
), pbyBSSID
, PAIRWISE_KEY
, &pTransmitKey
) == false) {
2381 if(KeybGetTransmitKey(&(pDevice
->sKey
), pbyBSSID
, GROUP_KEY
, &pTransmitKey
) == true) {
2382 bTKIP_UseGTK
= true;
2383 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"Get GTK.\n");
2387 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"Get PTK.\n");
2390 }else if (pDevice
->pMgmt
->eCurrMode
== WMAC_MODE_IBSS_STA
) {
2392 pbyBSSID
= pDevice
->sTxEthHeader
.abyDstAddr
; //TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1
2393 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"IBSS Serach Key: \n");
2394 for (ii
= 0; ii
< 6; ii
++)
2395 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"%x \n", *(pbyBSSID
+ii
));
2396 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"\n");
2399 if(KeybGetTransmitKey(&(pDevice
->sKey
), pbyBSSID
, PAIRWISE_KEY
, &pTransmitKey
) == true)
2403 pbyBSSID
= pDevice
->abyBroadcastAddr
;
2404 if(KeybGetTransmitKey(&(pDevice
->sKey
), pbyBSSID
, GROUP_KEY
, &pTransmitKey
) == false) {
2405 pTransmitKey
= NULL
;
2406 if (pDevice
->pMgmt
->eCurrMode
== WMAC_MODE_IBSS_STA
) {
2407 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"IBSS and KEY is NULL. [%d]\n", pDevice
->pMgmt
->eCurrMode
);
2410 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"NOT IBSS and KEY is NULL. [%d]\n", pDevice
->pMgmt
->eCurrMode
);
2412 bTKIP_UseGTK
= true;
2413 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"Get GTK.\n");
2418 if (pDevice
->bEnableHostWEP
) {
2419 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_DEBUG
"acdma0: STA index %d\n", uNodeIndex
);
2420 if (pDevice
->bEncryptionEnable
== true) {
2421 pTransmitKey
= &STempKey
;
2422 pTransmitKey
->byCipherSuite
= pMgmt
->sNodeDBTable
[uNodeIndex
].byCipherSuite
;
2423 pTransmitKey
->dwKeyIndex
= pMgmt
->sNodeDBTable
[uNodeIndex
].dwKeyIndex
;
2424 pTransmitKey
->uKeyLength
= pMgmt
->sNodeDBTable
[uNodeIndex
].uWepKeyLength
;
2425 pTransmitKey
->dwTSC47_16
= pMgmt
->sNodeDBTable
[uNodeIndex
].dwTSC47_16
;
2426 pTransmitKey
->wTSC15_0
= pMgmt
->sNodeDBTable
[uNodeIndex
].wTSC15_0
;
2427 memcpy(pTransmitKey
->abyKey
,
2428 &pMgmt
->sNodeDBTable
[uNodeIndex
].abyWepKey
[0],
2429 pTransmitKey
->uKeyLength
2434 uMACfragNum
= cbGetFragCount(pDevice
, pTransmitKey
, cbFrameBodySize
, &pDevice
->sTxEthHeader
);
2436 if (uMACfragNum
> AVAIL_TD(pDevice
, TYPE_AC0DMA
)) {
2437 DBG_PRT(MSG_LEVEL_ERR
, KERN_DEBUG
"uMACfragNum > AVAIL_TD(TYPE_AC0DMA) = %d\n", uMACfragNum
);
2438 dev_kfree_skb_irq(skb
);
2439 spin_unlock_irq(&pDevice
->lock
);
2443 if (pTransmitKey
!= NULL
) {
2444 if ((pTransmitKey
->byCipherSuite
== KEY_CTL_WEP
) &&
2445 (pTransmitKey
->uKeyLength
== WLAN_WEP232_KEYLEN
)) {
2446 uMACfragNum
= 1; //WEP256 doesn't support fragment
2450 byPktType
= (unsigned char)pDevice
->byPacketType
;
2452 if (pDevice
->bFixRate
) {
2454 printk("Fix Rate: PhyType is %d,ConnectionRate is %d\n",pDevice
->eCurrentPHYType
,pDevice
->uConnectionRate
);
2457 if (pDevice
->eCurrentPHYType
== PHY_TYPE_11B
) {
2458 if (pDevice
->uConnectionRate
>= RATE_11M
) {
2459 pDevice
->wCurrentRate
= RATE_11M
;
2461 pDevice
->wCurrentRate
= (unsigned short)pDevice
->uConnectionRate
;
2464 if ((pDevice
->eCurrentPHYType
== PHY_TYPE_11A
) &&
2465 (pDevice
->uConnectionRate
<= RATE_6M
)) {
2466 pDevice
->wCurrentRate
= RATE_6M
;
2468 if (pDevice
->uConnectionRate
>= RATE_54M
)
2469 pDevice
->wCurrentRate
= RATE_54M
;
2471 pDevice
->wCurrentRate
= (unsigned short)pDevice
->uConnectionRate
;
2475 pDevice
->byACKRate
= (unsigned char) pDevice
->wCurrentRate
;
2476 pDevice
->byTopCCKBasicRate
= RATE_1M
;
2477 pDevice
->byTopOFDMBasicRate
= RATE_6M
;
2481 if (pDevice
->sTxEthHeader
.wType
== TYPE_PKT_802_1x
) {
2482 if (pDevice
->eCurrentPHYType
!= PHY_TYPE_11A
) {
2483 pDevice
->wCurrentRate
= RATE_1M
;
2484 pDevice
->byACKRate
= RATE_1M
;
2485 pDevice
->byTopCCKBasicRate
= RATE_1M
;
2486 pDevice
->byTopOFDMBasicRate
= RATE_6M
;
2488 pDevice
->wCurrentRate
= RATE_6M
;
2489 pDevice
->byACKRate
= RATE_6M
;
2490 pDevice
->byTopCCKBasicRate
= RATE_1M
;
2491 pDevice
->byTopOFDMBasicRate
= RATE_6M
;
2495 VNTWIFIvGetTxRate( pDevice
->pMgmt
,
2496 pDevice
->sTxEthHeader
.abyDstAddr
,
2497 &(pDevice
->wCurrentRate
),
2498 &(pDevice
->byACKRate
),
2499 &(pDevice
->byTopCCKBasicRate
),
2500 &(pDevice
->byTopOFDMBasicRate
));
2503 printk("auto rate:Rate : %d,AckRate:%d,TopCCKRate:%d,TopOFDMRate:%d\n",
2504 pDevice
->wCurrentRate
,pDevice
->byACKRate
,
2505 pDevice
->byTopCCKBasicRate
,pDevice
->byTopOFDMBasicRate
);
2511 pDevice
->wCurrentRate
= 11;
2512 pDevice
->byACKRate
= 8;
2513 pDevice
->byTopCCKBasicRate
= 3;
2514 pDevice
->byTopOFDMBasicRate
= 8;
2521 // DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "acdma0: pDevice->wCurrentRate = %d \n", pDevice->wCurrentRate);
2523 if (pDevice
->wCurrentRate
<= RATE_11M
) {
2524 byPktType
= PK_TYPE_11B
;
2525 } else if (pDevice
->eCurrentPHYType
== PHY_TYPE_11A
) {
2526 byPktType
= PK_TYPE_11A
;
2528 if (pDevice
->bProtectMode
== true) {
2529 byPktType
= PK_TYPE_11GB
;
2531 byPktType
= PK_TYPE_11GA
;
2535 //#ifdef PLICE_DEBUG
2536 // printk("FIX RATE:CurrentRate is %d");
2539 if (bNeedEncryption
== true) {
2540 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"ntohs Pkt Type=%04x\n", ntohs(pDevice
->sTxEthHeader
.wType
));
2541 if ((pDevice
->sTxEthHeader
.wType
) == TYPE_PKT_802_1x
) {
2542 bNeedEncryption
= false;
2543 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Pkt Type=%04x\n", (pDevice
->sTxEthHeader
.wType
));
2544 if ((pDevice
->pMgmt
->eCurrMode
== WMAC_MODE_ESS_STA
) && (pDevice
->pMgmt
->eCurrState
== WMAC_STATE_ASSOC
)) {
2545 if (pTransmitKey
== NULL
) {
2546 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Don't Find TX KEY\n");
2549 if (bTKIP_UseGTK
== true) {
2550 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"error: KEY is GTK!!~~\n");
2553 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Find PTK [%lX]\n", pTransmitKey
->dwKeyIndex
);
2554 bNeedEncryption
= true;
2559 if (pDevice
->byCntMeasure
== 2) {
2561 pDevice
->s802_11Counter
.TKIPCounterMeasuresInvoked
++;
2564 if (pDevice
->bEnableHostWEP
) {
2565 if ((uNodeIndex
!= 0) &&
2566 (pMgmt
->sNodeDBTable
[uNodeIndex
].dwKeyIndex
& PAIRWISE_KEY
)) {
2567 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Find PTK [%lX]\n", pTransmitKey
->dwKeyIndex
);
2568 bNeedEncryption
= true;
2573 if (pTransmitKey
== NULL
) {
2574 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"return no tx key\n");
2575 dev_kfree_skb_irq(skb
);
2576 spin_unlock_irq(&pDevice
->lock
);
2584 //if (skb->len == 98)
2586 // printk("ping:len is %d\n");
2589 vGenerateFIFOHeader(pDevice
, byPktType
, pDevice
->pbyTmpBuff
, bNeedEncryption
,
2590 cbFrameBodySize
, TYPE_AC0DMA
, pHeadTD
,
2591 &pDevice
->sTxEthHeader
, (unsigned char *)skb
->data
, pTransmitKey
, uNodeIndex
,
2596 if (MACbIsRegBitsOn(pDevice
->PortOffset
, MAC_REG_PSCTL
, PSCTL_PS
)) {
2598 MACbPSWakeup(pDevice
->PortOffset
);
2600 pDevice
->bPWBitOn
= false;
2603 for (ii
= 0; ii
< uMACfragNum
; ii
++) {
2604 // Poll Transmit the adapter
2606 pHeadTD
->m_td0TD0
.f1Owner
=OWNED_BY_NIC
;
2608 if (ii
== uMACfragNum
- 1)
2610 pHeadTD
= pHeadTD
->next
;
2613 // Save the information needed by the tx interrupt handler
2614 // to complete the Send request
2615 pLastTD
->pTDInfo
->skb
= skb
;
2616 pLastTD
->pTDInfo
->byFlags
= 0;
2617 pLastTD
->pTDInfo
->byFlags
|= TD_FLAGS_NETIF_SKB
;
2619 pDevice
->nTxDataTimeCout
=0; //2008-8-21 chester <add> for send null packet
2621 if (AVAIL_TD(pDevice
, TYPE_AC0DMA
) <= 1) {
2622 netif_stop_queue(dev
);
2625 pDevice
->apCurrTD
[TYPE_AC0DMA
] = pHeadTD
;
2626 //#ifdef PLICE_DEBUG
2627 if (pDevice
->bFixRate
)
2629 printk("FixRate:Rate is %d,TxPower is %d\n",pDevice
->wCurrentRate
,pDevice
->byCurPwr
);
2633 //printk("Auto Rate:Rate is %d,TxPower is %d\n",pDevice->wCurrentRate,pDevice->byCurPwr);
2638 unsigned char Protocol_Version
; //802.1x Authentication
2639 unsigned char Packet_Type
; //802.1x Authentication
2640 unsigned char Descriptor_type
;
2641 unsigned short Key_info
;
2642 bool bTxeapol_key
= false;
2643 Protocol_Version
= skb
->data
[ETH_HLEN
];
2644 Packet_Type
= skb
->data
[ETH_HLEN
+1];
2645 Descriptor_type
= skb
->data
[ETH_HLEN
+1+1+2];
2646 Key_info
= (skb
->data
[ETH_HLEN
+1+1+2+1] << 8)|(skb
->data
[ETH_HLEN
+1+1+2+2]);
2647 if (pDevice
->sTxEthHeader
.wType
== TYPE_PKT_802_1x
) {
2648 if(((Protocol_Version
==1) ||(Protocol_Version
==2)) &&
2649 (Packet_Type
==3)) { //802.1x OR eapol-key challenge frame transfer
2650 bTxeapol_key
= true;
2651 if((Descriptor_type
==254)||(Descriptor_type
==2)) { //WPA or RSN
2652 if(!(Key_info
& BIT3
) && //group-key challenge
2653 (Key_info
& BIT8
) && (Key_info
& BIT9
)) { //send 2/2 key
2654 pDevice
->fWPA_Authened
= true;
2655 if(Descriptor_type
==254)
2659 printk("Authentication completed!!\n");
2666 MACvTransmitAC0(pDevice
->PortOffset
);
2667 // DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "acdma0:pDevice->apCurrTD= %p\n", pHeadTD);
2669 dev
->trans_start
= jiffies
;
2671 spin_unlock_irq(&pDevice
->lock
);
2676 static irqreturn_t
device_intr(int irq
, void *dev_instance
) {
2677 struct net_device
* dev
=dev_instance
;
2678 PSDevice pDevice
=(PSDevice
) netdev_priv(dev
);
2681 unsigned long dwMIBCounter
=0;
2682 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
2683 unsigned char byOrgPageSel
=0;
2685 unsigned char byData
= 0;
2687 // unsigned char byRSSI;
2690 MACvReadISR(pDevice
->PortOffset
, &pDevice
->dwIsr
);
2692 if (pDevice
->dwIsr
== 0)
2693 return IRQ_RETVAL(handled
);
2695 if (pDevice
->dwIsr
== 0xffffffff) {
2696 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"dwIsr = 0xffff\n");
2697 return IRQ_RETVAL(handled
);
2700 // 2008-05-21 <mark> by Richardtai, we can't read RSSI here, because no packet bound with RSSI
2702 if ((pDevice->dwIsr & ISR_RXDMA0) &&
2703 (pDevice->byLocalID != REV_ID_VT3253_B0) &&
2704 (pDevice->bBSSIDFilter == true)) {
2706 //BBbReadEmbeded(pDevice->PortOffset, 0x3E, &byRSSI);
2707 //pDevice->uCurrRSSI = byRSSI;
2712 MACvIntDisable(pDevice
->PortOffset
);
2713 spin_lock_irq(&pDevice
->lock
);
2715 //Make sure current page is 0
2716 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_PAGE1SEL
, &byOrgPageSel
);
2717 if (byOrgPageSel
== 1) {
2718 MACvSelectPage0(pDevice
->PortOffset
);
2723 MACvReadMIBCounter(pDevice
->PortOffset
, &dwMIBCounter
);
2725 // Must do this after doing rx/tx, cause ISR bit is slow
2726 // than RD/TD write back
2727 // update ISR counter
2728 STAvUpdate802_11Counter(&pDevice
->s802_11Counter
, &pDevice
->scStatistic
, dwMIBCounter
);
2729 while (pDevice
->dwIsr
!= 0) {
2731 STAvUpdateIsrStatCounter(&pDevice
->scStatistic
, pDevice
->dwIsr
);
2732 MACvWriteISR(pDevice
->PortOffset
, pDevice
->dwIsr
);
2734 if (pDevice
->dwIsr
& ISR_FETALERR
){
2735 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" ISR_FETALERR \n");
2736 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_SOFTPWRCTL
, 0);
2737 VNSvOutPortW(pDevice
->PortOffset
+ MAC_REG_SOFTPWRCTL
, SOFTPWRCTL_SWPECTI
);
2738 device_error(pDevice
, pDevice
->dwIsr
);
2741 if (pDevice
->byLocalID
> REV_ID_VT3253_B1
) {
2743 if (pDevice
->dwIsr
& ISR_MEASURESTART
) {
2744 // 802.11h measure start
2745 pDevice
->byOrgChannel
= pDevice
->byCurrentCh
;
2746 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_RCR
, &(pDevice
->byOrgRCR
));
2747 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_RCR
, (RCR_RXALLTYPE
| RCR_UNICAST
| RCR_BROADCAST
| RCR_MULTICAST
| RCR_WPAERR
));
2748 MACvSelectPage1(pDevice
->PortOffset
);
2749 VNSvInPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
, &(pDevice
->dwOrgMAR0
));
2750 VNSvInPortD(pDevice
->PortOffset
+ MAC_REG_MAR4
, &(pDevice
->dwOrgMAR4
));
2751 MACvSelectPage0(pDevice
->PortOffset
);
2753 // WCMDbFlushCommandQueue(pDevice->pMgmt, true);
2754 if (set_channel(pDevice
, pDevice
->pCurrMeasureEID
->sReq
.byChannel
) == true) {
2755 pDevice
->bMeasureInProgress
= true;
2756 MACvSelectPage1(pDevice
->PortOffset
);
2757 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
, MSRCTL_READY
);
2758 MACvSelectPage0(pDevice
->PortOffset
);
2759 pDevice
->byBasicMap
= 0;
2760 pDevice
->byCCAFraction
= 0;
2761 for(ii
=0;ii
<8;ii
++) {
2762 pDevice
->dwRPIs
[ii
] = 0;
2765 // can not measure because set channel fail
2766 // WCMDbResetCommandQueue(pDevice->pMgmt);
2767 // clear measure control
2768 MACvRegBitsOff(pDevice
->PortOffset
, MAC_REG_MSRCTL
, MSRCTL_EN
);
2769 s_vCompleteCurrentMeasure(pDevice
, MEASURE_MODE_INCAPABLE
);
2770 MACvSelectPage1(pDevice
->PortOffset
);
2771 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
+1, MSRCTL1_TXPAUSE
);
2772 MACvSelectPage0(pDevice
->PortOffset
);
2775 if (pDevice
->dwIsr
& ISR_MEASUREEND
) {
2776 // 802.11h measure end
2777 pDevice
->bMeasureInProgress
= false;
2778 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_RCR
, pDevice
->byOrgRCR
);
2779 MACvSelectPage1(pDevice
->PortOffset
);
2780 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
, pDevice
->dwOrgMAR0
);
2781 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR4
, pDevice
->dwOrgMAR4
);
2782 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_MSRBBSTS
, &byData
);
2783 pDevice
->byBasicMap
|= (byData
>> 4);
2784 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_CCAFRACTION
, &pDevice
->byCCAFraction
);
2785 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_MSRCTL
, &byData
);
2786 // clear measure control
2787 MACvRegBitsOff(pDevice
->PortOffset
, MAC_REG_MSRCTL
, MSRCTL_EN
);
2788 MACvSelectPage0(pDevice
->PortOffset
);
2789 set_channel(pDevice
, pDevice
->byOrgChannel
);
2790 // WCMDbResetCommandQueue(pDevice->pMgmt);
2791 MACvSelectPage1(pDevice
->PortOffset
);
2792 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
+1, MSRCTL1_TXPAUSE
);
2793 MACvSelectPage0(pDevice
->PortOffset
);
2794 if (byData
& MSRCTL_FINISH
) {
2796 s_vCompleteCurrentMeasure(pDevice
, 0);
2798 // can not measure because not ready before end of measure time
2799 s_vCompleteCurrentMeasure(pDevice
, MEASURE_MODE_LATE
);
2802 if (pDevice
->dwIsr
& ISR_QUIETSTART
) {
2805 } while (CARDbStartQuiet(pDevice
) == false);
2809 if (pDevice
->dwIsr
& ISR_TBTT
) {
2810 if (pDevice
->bEnableFirstQuiet
== true) {
2811 pDevice
->byQuietStartCount
--;
2812 if (pDevice
->byQuietStartCount
== 0) {
2813 pDevice
->bEnableFirstQuiet
= false;
2814 MACvSelectPage1(pDevice
->PortOffset
);
2815 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
, (MSRCTL_QUIETTXCHK
| MSRCTL_QUIETEN
));
2816 MACvSelectPage0(pDevice
->PortOffset
);
2819 if ((pDevice
->bChannelSwitch
== true) &&
2820 (pDevice
->eOPMode
== OP_MODE_INFRASTRUCTURE
)) {
2821 pDevice
->byChannelSwitchCount
--;
2822 if (pDevice
->byChannelSwitchCount
== 0) {
2823 pDevice
->bChannelSwitch
= false;
2824 set_channel(pDevice
, pDevice
->byNewChannel
);
2825 VNTWIFIbChannelSwitch(pDevice
->pMgmt
, pDevice
->byNewChannel
);
2826 MACvSelectPage1(pDevice
->PortOffset
);
2827 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
+1, MSRCTL1_TXPAUSE
);
2828 MACvSelectPage0(pDevice
->PortOffset
);
2829 CARDbStartTxPacket(pDevice
, PKT_TYPE_802_11_ALL
);
2833 if (pDevice
->eOPMode
== OP_MODE_ADHOC
) {
2834 //pDevice->bBeaconSent = false;
2836 if ((pDevice
->bUpdateBBVGA
) && (pDevice
->bLinkPass
== true) && (pDevice
->uCurrRSSI
!= 0)) {
2839 RFvRSSITodBm(pDevice
, (unsigned char) pDevice
->uCurrRSSI
, &ldBm
);
2840 for (ii
=0;ii
<BB_VGA_LEVEL
;ii
++) {
2841 if (ldBm
< pDevice
->ldBmThreshold
[ii
]) {
2842 pDevice
->byBBVGANew
= pDevice
->abyBBVGA
[ii
];
2846 if (pDevice
->byBBVGANew
!= pDevice
->byBBVGACurrent
) {
2847 pDevice
->uBBVGADiffCount
++;
2848 if (pDevice
->uBBVGADiffCount
== 1) {
2849 // first VGA diff gain
2850 BBvSetVGAGainOffset(pDevice
, pDevice
->byBBVGANew
);
2851 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
2852 (int)ldBm
, pDevice
->byBBVGANew
, pDevice
->byBBVGACurrent
, (int)pDevice
->uBBVGADiffCount
);
2854 if (pDevice
->uBBVGADiffCount
>= BB_VGA_CHANGE_THRESHOLD
) {
2855 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
2856 (int)ldBm
, pDevice
->byBBVGANew
, pDevice
->byBBVGACurrent
, (int)pDevice
->uBBVGADiffCount
);
2857 BBvSetVGAGainOffset(pDevice
, pDevice
->byBBVGANew
);
2860 pDevice
->uBBVGADiffCount
= 1;
2865 pDevice
->bBeaconSent
= false;
2866 if (pDevice
->bEnablePSMode
) {
2867 PSbIsNextTBTTWakeUp((void *)pDevice
);
2870 if ((pDevice
->eOPMode
== OP_MODE_AP
) ||
2871 (pDevice
->eOPMode
== OP_MODE_ADHOC
)) {
2873 MACvOneShotTimer1MicroSec(pDevice
->PortOffset
,
2874 (pMgmt
->wIBSSBeaconPeriod
- MAKE_BEACON_RESERVED
) << 10);
2877 if (pDevice
->eOPMode
== OP_MODE_ADHOC
&& pDevice
->pMgmt
->wCurrATIMWindow
> 0) {
2878 // todo adhoc PS mode
2883 if (pDevice
->dwIsr
& ISR_BNTX
) {
2885 if (pDevice
->eOPMode
== OP_MODE_ADHOC
) {
2886 pDevice
->bIsBeaconBufReadySet
= false;
2887 pDevice
->cbBeaconBufReadySetCnt
= 0;
2890 if (pDevice
->eOPMode
== OP_MODE_AP
) {
2891 if(pMgmt
->byDTIMCount
> 0) {
2892 pMgmt
->byDTIMCount
--;
2893 pMgmt
->sNodeDBTable
[0].bRxPSPoll
= false;
2896 if(pMgmt
->byDTIMCount
== 0) {
2897 // check if mutltcast tx bufferring
2898 pMgmt
->byDTIMCount
= pMgmt
->byDTIMPeriod
- 1;
2899 pMgmt
->sNodeDBTable
[0].bRxPSPoll
= true;
2900 bScheduleCommand((void *)pDevice
, WLAN_CMD_RX_PSPOLL
, NULL
);
2904 pDevice
->bBeaconSent
= true;
2906 if (pDevice
->bChannelSwitch
== true) {
2907 pDevice
->byChannelSwitchCount
--;
2908 if (pDevice
->byChannelSwitchCount
== 0) {
2909 pDevice
->bChannelSwitch
= false;
2910 set_channel(pDevice
, pDevice
->byNewChannel
);
2911 VNTWIFIbChannelSwitch(pDevice
->pMgmt
, pDevice
->byNewChannel
);
2912 MACvSelectPage1(pDevice
->PortOffset
);
2913 MACvRegBitsOn(pDevice
->PortOffset
, MAC_REG_MSRCTL
+1, MSRCTL1_TXPAUSE
);
2914 MACvSelectPage0(pDevice
->PortOffset
);
2915 //VNTWIFIbSendBeacon(pDevice->pMgmt);
2916 CARDbStartTxPacket(pDevice
, PKT_TYPE_802_11_ALL
);
2922 if (pDevice
->dwIsr
& ISR_RXDMA0
) {
2923 max_count
+= device_rx_srv(pDevice
, TYPE_RXDMA0
);
2925 if (pDevice
->dwIsr
& ISR_RXDMA1
) {
2926 max_count
+= device_rx_srv(pDevice
, TYPE_RXDMA1
);
2928 if (pDevice
->dwIsr
& ISR_TXDMA0
){
2929 max_count
+= device_tx_srv(pDevice
, TYPE_TXDMA0
);
2931 if (pDevice
->dwIsr
& ISR_AC0DMA
){
2932 max_count
+= device_tx_srv(pDevice
, TYPE_AC0DMA
);
2934 if (pDevice
->dwIsr
& ISR_SOFTTIMER
) {
2937 if (pDevice
->dwIsr
& ISR_SOFTTIMER1
) {
2938 if (pDevice
->eOPMode
== OP_MODE_AP
) {
2939 if (pDevice
->bShortSlotTime
)
2940 pMgmt
->wCurrCapInfo
|= WLAN_SET_CAP_INFO_SHORTSLOTTIME(1);
2942 pMgmt
->wCurrCapInfo
&= ~(WLAN_SET_CAP_INFO_SHORTSLOTTIME(1));
2944 bMgrPrepareBeaconToSend(pDevice
, pMgmt
);
2945 pDevice
->byCntMeasure
= 0;
2948 MACvReadISR(pDevice
->PortOffset
, &pDevice
->dwIsr
);
2950 MACvReceive0(pDevice
->PortOffset
);
2951 MACvReceive1(pDevice
->PortOffset
);
2953 if (max_count
>pDevice
->sOpts
.int_works
)
2957 if (byOrgPageSel
== 1) {
2958 MACvSelectPage1(pDevice
->PortOffset
);
2961 spin_unlock_irq(&pDevice
->lock
);
2962 MACvIntEnable(pDevice
->PortOffset
, IMR_MASK_VALUE
);
2964 return IRQ_RETVAL(handled
);
2968 static unsigned const ethernet_polynomial
= 0x04c11db7U
;
2969 static inline u32
ether_crc(int length
, unsigned char *data
)
2973 while(--length
>= 0) {
2974 unsigned char current_octet
= *data
++;
2976 for (bit
= 0; bit
< 8; bit
++, current_octet
>>= 1) {
2978 ((crc
< 0) ^ (current_octet
& 1) ? ethernet_polynomial
: 0);
2984 //2008-8-4 <add> by chester
2985 static int Config_FileGetParameter(unsigned char *string
,
2986 unsigned char *dest
, unsigned char *source
)
2988 unsigned char buf1
[100];
2989 int source_len
= strlen(source
);
2992 strcat(buf1
, string
);
2994 source
+=strlen(buf1
);
2996 memcpy(dest
,source
,source_len
-strlen(buf1
));
3000 int Config_FileOperation(PSDevice pDevice
,bool fwrite
,unsigned char *Parameter
) {
3001 unsigned char *config_path
= CONFIG_PATH
;
3002 unsigned char *buffer
= NULL
;
3003 unsigned char tmpbuffer
[20];
3004 struct file
*filp
=NULL
;
3005 mm_segment_t old_fs
= get_fs();
3006 //int oldfsuid=0,oldfsgid=0;
3011 /* Can't do this anymore, so we rely on correct filesystem permissions:
3012 //Make sure a caller can read or write power as root
3013 oldfsuid=current->cred->fsuid;
3014 oldfsgid=current->cred->fsgid;
3015 current->cred->fsuid = 0;
3016 current->cred->fsgid = 0;
3020 filp
= filp_open(config_path
, O_RDWR
, 0);
3022 printk("Config_FileOperation:open file fail?\n");
3027 if(!(filp
->f_op
) || !(filp
->f_op
->read
) ||!(filp
->f_op
->write
)) {
3028 printk("file %s cann't readable or writable?\n",config_path
);
3033 buffer
= kmalloc(1024, GFP_KERNEL
);
3035 printk("allocate mem for file fail?\n");
3040 if(filp
->f_op
->read(filp
, buffer
, 1024, &filp
->f_pos
)<0) {
3041 printk("read file error?\n");
3046 if(Config_FileGetParameter("ZONETYPE",tmpbuffer
,buffer
)!=true) {
3047 printk("get parameter error?\n");
3052 if(memcmp(tmpbuffer
,"USA",3)==0) {
3053 result
=ZoneType_USA
;
3055 else if(memcmp(tmpbuffer
,"JAPAN",5)==0) {
3056 result
=ZoneType_Japan
;
3058 else if(memcmp(tmpbuffer
,"EUROPE",5)==0) {
3059 result
=ZoneType_Europe
;
3063 printk("Unknown Zonetype[%s]?\n",tmpbuffer
);
3069 if(filp_close(filp
,NULL
))
3070 printk("Config_FileOperation:close file fail\n");
3076 current->cred->fsuid=oldfsuid;
3077 current->cred->fsgid=oldfsgid;
3085 static void device_set_multi(struct net_device
*dev
) {
3086 PSDevice pDevice
= (PSDevice
) netdev_priv(dev
);
3088 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
3090 struct netdev_hw_addr
*ha
;
3093 VNSvInPortB(pDevice
->PortOffset
+ MAC_REG_RCR
, &(pDevice
->byRxMode
));
3095 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
3096 DBG_PRT(MSG_LEVEL_ERR
,KERN_NOTICE
"%s: Promiscuous mode enabled.\n", dev
->name
);
3097 /* Unconditionally log net taps. */
3098 pDevice
->byRxMode
|= (RCR_MULTICAST
|RCR_BROADCAST
|RCR_UNICAST
);
3100 else if ((netdev_mc_count(dev
) > pDevice
->multicast_limit
)
3101 || (dev
->flags
& IFF_ALLMULTI
)) {
3102 MACvSelectPage1(pDevice
->PortOffset
);
3103 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
, 0xffffffff);
3104 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
+ 4, 0xffffffff);
3105 MACvSelectPage0(pDevice
->PortOffset
);
3106 pDevice
->byRxMode
|= (RCR_MULTICAST
|RCR_BROADCAST
);
3109 memset(mc_filter
, 0, sizeof(mc_filter
));
3110 netdev_for_each_mc_addr(ha
, dev
) {
3111 int bit_nr
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
3112 mc_filter
[bit_nr
>> 5] |= cpu_to_le32(1 << (bit_nr
& 31));
3114 MACvSelectPage1(pDevice
->PortOffset
);
3115 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
, mc_filter
[0]);
3116 VNSvOutPortD(pDevice
->PortOffset
+ MAC_REG_MAR0
+ 4, mc_filter
[1]);
3117 MACvSelectPage0(pDevice
->PortOffset
);
3118 pDevice
->byRxMode
&= ~(RCR_UNICAST
);
3119 pDevice
->byRxMode
|= (RCR_MULTICAST
|RCR_BROADCAST
);
3122 if (pMgmt
->eConfigMode
== WMAC_CONFIG_AP
) {
3123 // If AP mode, don't enable RCR_UNICAST. Since hw only compare addr1 with local mac.
3124 pDevice
->byRxMode
|= (RCR_MULTICAST
|RCR_BROADCAST
);
3125 pDevice
->byRxMode
&= ~(RCR_UNICAST
);
3128 VNSvOutPortB(pDevice
->PortOffset
+ MAC_REG_RCR
, pDevice
->byRxMode
);
3129 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pDevice->byRxMode = %x\n", pDevice
->byRxMode
);
3133 static struct net_device_stats
*device_get_stats(struct net_device
*dev
) {
3134 PSDevice pDevice
=(PSDevice
) netdev_priv(dev
);
3136 return &pDevice
->stats
;
3141 static int device_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
) {
3142 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
3144 struct iwreq
*wrq
= (struct iwreq
*) rq
;
3146 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
3150 if (pMgmt
== NULL
) {
3158 rc
= iwctl_giwname(dev
, NULL
, (char *)&(wrq
->u
.name
), NULL
);
3161 case SIOCGIWNWID
: //0x8b03 support
3162 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
3163 rc
= iwctl_giwnwid(dev
, NULL
, &(wrq
->u
.nwid
), NULL
);
3169 // Set frequency/channel
3171 rc
= iwctl_siwfreq(dev
, NULL
, &(wrq
->u
.freq
), NULL
);
3174 // Get frequency/channel
3176 rc
= iwctl_giwfreq(dev
, NULL
, &(wrq
->u
.freq
), NULL
);
3179 // Set desired network name (ESSID)
3183 char essid
[IW_ESSID_MAX_SIZE
+1];
3184 if (wrq
->u
.essid
.length
> IW_ESSID_MAX_SIZE
) {
3188 if (copy_from_user(essid
, wrq
->u
.essid
.pointer
,
3189 wrq
->u
.essid
.length
)) {
3193 rc
= iwctl_siwessid(dev
, NULL
,
3194 &(wrq
->u
.essid
), essid
);
3199 // Get current network name (ESSID)
3203 char essid
[IW_ESSID_MAX_SIZE
+1];
3204 if (wrq
->u
.essid
.pointer
)
3205 rc
= iwctl_giwessid(dev
, NULL
,
3206 &(wrq
->u
.essid
), essid
);
3207 if (copy_to_user(wrq
->u
.essid
.pointer
,
3209 wrq
->u
.essid
.length
) )
3216 rc
= iwctl_siwap(dev
, NULL
, &(wrq
->u
.ap_addr
), NULL
);
3220 // Get current Access Point (BSSID)
3222 rc
= iwctl_giwap(dev
, NULL
, &(wrq
->u
.ap_addr
), NULL
);
3226 // Set desired station name
3228 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWNICKN \n");
3232 // Get current station name
3234 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWNICKN \n");
3238 // Set the desired bit-rate
3240 rc
= iwctl_siwrate(dev
, NULL
, &(wrq
->u
.bitrate
), NULL
);
3243 // Get the current bit-rate
3246 rc
= iwctl_giwrate(dev
, NULL
, &(wrq
->u
.bitrate
), NULL
);
3249 // Set the desired RTS threshold
3252 rc
= iwctl_siwrts(dev
, NULL
, &(wrq
->u
.rts
), NULL
);
3255 // Get the current RTS threshold
3258 rc
= iwctl_giwrts(dev
, NULL
, &(wrq
->u
.rts
), NULL
);
3261 // Set the desired fragmentation threshold
3264 rc
= iwctl_siwfrag(dev
, NULL
, &(wrq
->u
.frag
), NULL
);
3267 // Get the current fragmentation threshold
3270 rc
= iwctl_giwfrag(dev
, NULL
, &(wrq
->u
.frag
), NULL
);
3273 // Set mode of operation
3275 rc
= iwctl_siwmode(dev
, NULL
, &(wrq
->u
.mode
), NULL
);
3278 // Get mode of operation
3280 rc
= iwctl_giwmode(dev
, NULL
, &(wrq
->u
.mode
), NULL
);
3283 // Set WEP keys and mode
3286 char abyKey
[WLAN_WEP232_KEYLEN
];
3288 if (wrq
->u
.encoding
.pointer
) {
3291 if (wrq
->u
.encoding
.length
> WLAN_WEP232_KEYLEN
) {
3295 memset(abyKey
, 0, WLAN_WEP232_KEYLEN
);
3296 if (copy_from_user(abyKey
,
3297 wrq
->u
.encoding
.pointer
,
3298 wrq
->u
.encoding
.length
)) {
3302 } else if (wrq
->u
.encoding
.length
!= 0) {
3306 rc
= iwctl_siwencode(dev
, NULL
, &(wrq
->u
.encoding
), abyKey
);
3310 // Get the WEP keys and mode
3313 if (!capable(CAP_NET_ADMIN
)) {
3318 char abyKey
[WLAN_WEP232_KEYLEN
];
3320 rc
= iwctl_giwencode(dev
, NULL
, &(wrq
->u
.encoding
), abyKey
);
3322 if (wrq
->u
.encoding
.pointer
) {
3323 if (copy_to_user(wrq
->u
.encoding
.pointer
,
3325 wrq
->u
.encoding
.length
))
3331 // Get the current Tx-Power
3333 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWTXPOW \n");
3338 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWTXPOW \n");
3344 rc
= iwctl_siwretry(dev
, NULL
, &(wrq
->u
.retry
), NULL
);
3349 rc
= iwctl_giwretry(dev
, NULL
, &(wrq
->u
.retry
), NULL
);
3352 // Get range of parameters
3356 struct iw_range range
;
3358 rc
= iwctl_giwrange(dev
, NULL
, &(wrq
->u
.data
), (char *) &range
);
3359 if (copy_to_user(wrq
->u
.data
.pointer
, &range
, sizeof(struct iw_range
)))
3367 rc
= iwctl_giwpower(dev
, NULL
, &(wrq
->u
.power
), NULL
);
3373 rc
= iwctl_siwpower(dev
, NULL
, &(wrq
->u
.power
), NULL
);
3379 rc
= iwctl_giwsens(dev
, NULL
, &(wrq
->u
.sens
), NULL
);
3383 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWSENS \n");
3389 char buffer
[IW_MAX_AP
* (sizeof(struct sockaddr
) + sizeof(struct iw_quality
))];
3391 if (wrq
->u
.data
.pointer
) {
3392 rc
= iwctl_giwaplist(dev
, NULL
, &(wrq
->u
.data
), buffer
);
3394 if (copy_to_user(wrq
->u
.data
.pointer
,
3396 (wrq
->u
.data
.length
* (sizeof(struct sockaddr
) + sizeof(struct iw_quality
)))
3409 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWSPY \n");
3416 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWSPY \n");
3420 #endif // WIRELESS_SPY
3423 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWPRIV \n");
3426 if(wrq->u.data.pointer) {
3427 wrq->u.data.length = sizeof(iwctl_private_args) / sizeof( iwctl_private_args[0]);
3429 if(copy_to_user(wrq->u.data.pointer,
3430 (u_char *) iwctl_private_args,
3431 sizeof(iwctl_private_args)))
3438 //2008-0409-07, <Add> by Einsn Liu
3439 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
3441 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWAUTH \n");
3442 rc
= iwctl_siwauth(dev
, NULL
, &(wrq
->u
.param
), NULL
);
3446 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWAUTH \n");
3447 rc
= iwctl_giwauth(dev
, NULL
, &(wrq
->u
.param
), NULL
);
3451 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWGENIE \n");
3452 rc
= iwctl_siwgenie(dev
, NULL
, &(wrq
->u
.data
), wrq
->u
.data
.pointer
);
3456 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWGENIE \n");
3457 rc
= iwctl_giwgenie(dev
, NULL
, &(wrq
->u
.data
), wrq
->u
.data
.pointer
);
3460 case SIOCSIWENCODEEXT
:
3462 char extra
[sizeof(struct iw_encode_ext
)+MAX_KEY_LEN
+1];
3463 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWENCODEEXT \n");
3464 if(wrq
->u
.encoding
.pointer
){
3465 memset(extra
, 0, sizeof(struct iw_encode_ext
)+MAX_KEY_LEN
+1);
3466 if(wrq
->u
.encoding
.length
> (sizeof(struct iw_encode_ext
)+ MAX_KEY_LEN
)){
3470 if(copy_from_user(extra
, wrq
->u
.encoding
.pointer
,wrq
->u
.encoding
.length
)){
3474 }else if(wrq
->u
.encoding
.length
!= 0){
3478 rc
= iwctl_siwencodeext(dev
, NULL
, &(wrq
->u
.encoding
), extra
);
3482 case SIOCGIWENCODEEXT
:
3483 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWENCODEEXT \n");
3484 rc
= iwctl_giwencodeext(dev
, NULL
, &(wrq
->u
.encoding
), NULL
);
3488 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWMLME \n");
3489 rc
= iwctl_siwmlme(dev
, NULL
, &(wrq
->u
.data
), wrq
->u
.data
.pointer
);
3492 #endif // #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
3493 //End Add -- //2008-0409-07, <Add> by Einsn Liu
3495 case IOCTL_CMD_TEST
:
3497 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
)) {
3503 pReq
= (PSCmdRequest
)rq
;
3504 pReq
->wResult
= MAGIC_CODE
;
3510 if((((PSCmdRequest
)rq
)->wCmdCode
!=WLAN_CMD_SET_EVT
) &&
3511 !(pDevice
->flags
& DEVICE_FLAGS_OPENED
))
3513 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
) &&
3514 (((PSCmdRequest
)rq
)->wCmdCode
!=WLAN_CMD_SET_WPA
))
3523 if (test_and_set_bit( 0, (void*)&(pMgmt
->uCmdBusy
))) {
3526 rc
= private_ioctl(pDevice
, rq
);
3527 clear_bit( 0, (void*)&(pMgmt
->uCmdBusy
));
3530 case IOCTL_CMD_HOSTAPD
:
3533 rc
= vt6655_hostap_ioctl(pDevice
, &wrq
->u
.data
);
3538 rc
= wpa_ioctl(pDevice
, &wrq
->u
.data
);
3542 return ethtool_ioctl(dev
, (void *) rq
->ifr_data
);
3543 // All other calls are currently unsupported
3547 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Ioctl command not support..%x\n", cmd
);
3552 if (pDevice
->bCommit
) {
3553 if (pMgmt
->eConfigMode
== WMAC_CONFIG_AP
) {
3554 netif_stop_queue(pDevice
->dev
);
3555 spin_lock_irq(&pDevice
->lock
);
3556 bScheduleCommand((void *)pDevice
, WLAN_CMD_RUN_AP
, NULL
);
3557 spin_unlock_irq(&pDevice
->lock
);
3560 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Commit the settings\n");
3561 spin_lock_irq(&pDevice
->lock
);
3562 pDevice
->bLinkPass
= false;
3563 memset(pMgmt
->abyCurrBSSID
, 0, 6);
3564 pMgmt
->eCurrState
= WMAC_STATE_IDLE
;
3565 netif_stop_queue(pDevice
->dev
);
3566 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
3567 pMgmt
->eScanType
= WMAC_SCAN_ACTIVE
;
3568 if(pDevice
->bWPASuppWextEnabled
!=true)
3570 bScheduleCommand((void *) pDevice
, WLAN_CMD_BSSID_SCAN
, pMgmt
->abyDesireSSID
);
3571 bScheduleCommand((void *) pDevice
, WLAN_CMD_SSID
, NULL
);
3572 spin_unlock_irq(&pDevice
->lock
);
3574 pDevice
->bCommit
= false;
3581 static int ethtool_ioctl(struct net_device
*dev
, void *useraddr
)
3585 if (copy_from_user(ðcmd
, useraddr
, sizeof(ethcmd
)))
3589 case ETHTOOL_GDRVINFO
: {
3590 struct ethtool_drvinfo info
= {ETHTOOL_GDRVINFO
};
3591 strncpy(info
.driver
, DEVICE_NAME
, sizeof(info
.driver
)-1);
3592 strncpy(info
.version
, DEVICE_VERSION
, sizeof(info
.version
)-1);
3593 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
3603 /*------------------------------------------------------------------*/
3605 MODULE_DEVICE_TABLE(pci
, vt6655_pci_id_table
);
3607 static struct pci_driver device_driver
= {
3608 .name
= DEVICE_NAME
,
3609 .id_table
= vt6655_pci_id_table
,
3610 .probe
= vt6655_probe
,
3611 .remove
= vt6655_remove
,
3613 .suspend
= viawget_suspend
,
3614 .resume
= viawget_resume
,
3618 static int __init
vt6655_init_module(void)
3623 // ret=pci_module_init(&device_driver);
3624 //ret = pcie_port_service_register(&device_driver);
3625 ret
= pci_register_driver(&device_driver
);
3628 register_reboot_notifier(&device_notifier
);
3634 static void __exit
vt6655_cleanup_module(void)
3639 unregister_reboot_notifier(&device_notifier
);
3641 pci_unregister_driver(&device_driver
);
3645 module_init(vt6655_init_module
);
3646 module_exit(vt6655_cleanup_module
);
3651 device_notify_reboot(struct notifier_block
*nb
, unsigned long event
, void *p
)
3653 struct pci_dev
*pdev
= NULL
;
3658 for_each_pci_dev(pdev
) {
3659 if(pci_dev_driver(pdev
) == &device_driver
) {
3660 if (pci_get_drvdata(pdev
))
3661 viawget_suspend(pdev
, PMSG_HIBERNATE
);
3669 viawget_suspend(struct pci_dev
*pcid
, pm_message_t state
)
3671 int power_status
; // to silence the compiler
3673 PSDevice pDevice
=pci_get_drvdata(pcid
);
3674 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
3676 netif_stop_queue(pDevice
->dev
);
3677 spin_lock_irq(&pDevice
->lock
);
3678 pci_save_state(pcid
);
3679 del_timer(&pDevice
->sTimerCommand
);
3680 del_timer(&pMgmt
->sTimerSecondCallback
);
3681 pDevice
->cbFreeCmdQueue
= CMD_Q_SIZE
;
3682 pDevice
->uCmdDequeueIdx
= 0;
3683 pDevice
->uCmdEnqueueIdx
= 0;
3684 pDevice
->bCmdRunning
= false;
3685 MACbShutdown(pDevice
->PortOffset
);
3686 MACvSaveContext(pDevice
->PortOffset
, pDevice
->abyMacContext
);
3687 pDevice
->bLinkPass
= false;
3688 memset(pMgmt
->abyCurrBSSID
, 0, 6);
3689 pMgmt
->eCurrState
= WMAC_STATE_IDLE
;
3690 pci_disable_device(pcid
);
3691 power_status
= pci_set_power_state(pcid
, pci_choose_state(pcid
, state
));
3692 spin_unlock_irq(&pDevice
->lock
);
3697 viawget_resume(struct pci_dev
*pcid
)
3699 PSDevice pDevice
=pci_get_drvdata(pcid
);
3700 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
3701 int power_status
; // to silence the compiler
3704 power_status
= pci_set_power_state(pcid
, 0);
3705 power_status
= pci_enable_wake(pcid
, 0, 0);
3706 pci_restore_state(pcid
);
3707 if (netif_running(pDevice
->dev
)) {
3708 spin_lock_irq(&pDevice
->lock
);
3709 MACvRestoreContext(pDevice
->PortOffset
, pDevice
->abyMacContext
);
3710 device_init_registers(pDevice
, DEVICE_INIT_DXPL
);
3711 if (pMgmt
->sNodeDBTable
[0].bActive
== true) { // Assoc with BSS
3712 pMgmt
->sNodeDBTable
[0].bActive
= false;
3713 pDevice
->bLinkPass
= false;
3714 if(pMgmt
->eCurrMode
== WMAC_MODE_IBSS_STA
) {
3715 // In Adhoc, BSS state set back to started.
3716 pMgmt
->eCurrState
= WMAC_STATE_STARTED
;
3719 pMgmt
->eCurrMode
= WMAC_MODE_STANDBY
;
3720 pMgmt
->eCurrState
= WMAC_STATE_IDLE
;
3723 init_timer(&pMgmt
->sTimerSecondCallback
);
3724 init_timer(&pDevice
->sTimerCommand
);
3725 MACvIntEnable(pDevice
->PortOffset
, IMR_MASK_VALUE
);
3726 BSSvClearBSSList((void *)pDevice
, pDevice
->bLinkPass
);
3727 bScheduleCommand((void *) pDevice
, WLAN_CMD_BSSID_SCAN
, NULL
);
3728 bScheduleCommand((void *) pDevice
, WLAN_CMD_SSID
, NULL
);
3729 spin_unlock_irq(&pDevice
->lock
);