]> Pileus Git - ~andy/linux/blob - drivers/staging/rt2870/rt_main_dev.c
Staging: rt2870: remove dead code
[~andy/linux] / drivers / staging / rt2870 / rt_main_dev.c
1 /*
2  *************************************************************************
3  * Ralink Tech Inc.
4  * 5F., No.36, Taiyuan St., Jhubei City,
5  * Hsinchu County 302,
6  * Taiwan, R.O.C.
7  *
8  * (c) Copyright 2002-2007, Ralink Technology, Inc.
9  *
10  * This program is free software; you can redistribute it and/or modify  *
11  * it under the terms of the GNU General Public License as published by  *
12  * the Free Software Foundation; either version 2 of the License, or     *
13  * (at your option) any later version.                                   *
14  *                                                                       *
15  * This program is distributed in the hope that it will be useful,       *
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of        *
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
18  * GNU General Public License for more details.                          *
19  *                                                                       *
20  * You should have received a copy of the GNU General Public License     *
21  * along with this program; if not, write to the                         *
22  * Free Software Foundation, Inc.,                                       *
23  * 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
24  *                                                                       *
25  *************************************************************************
26
27     Module Name:
28     rt_main_dev.c
29
30     Abstract:
31     Create and register network interface.
32
33     Revision History:
34     Who         When            What
35     --------    ----------      ----------------------------------------------
36         Sample          Mar/21/07               Merge RT2870 and RT2860 drivers.
37 */
38
39 #include "rt_config.h"
40
41 #define FORTY_MHZ_INTOLERANT_INTERVAL   (60*1000) // 1 min
42
43 /*---------------------------------------------------------------------*/
44 /* Private Variables Used                                              */
45 /*---------------------------------------------------------------------*/
46 //static RALINK_TIMER_STRUCT     PeriodicTimer;
47
48 char *mac = "";            // default 00:00:00:00:00:00
49 char *hostname = "";
50 module_param (mac, charp, 0);
51 MODULE_PARM_DESC (mac, "rt28xx: wireless mac addr");
52
53
54 /*---------------------------------------------------------------------*/
55 /* Prototypes of Functions Used                                        */
56 /*---------------------------------------------------------------------*/
57 extern BOOLEAN ba_reordering_resource_init(PRTMP_ADAPTER pAd, int num);
58 extern void ba_reordering_resource_release(PRTMP_ADAPTER pAd);
59 extern NDIS_STATUS NICLoadRateSwitchingParams(IN PRTMP_ADAPTER pAd);
60
61
62 // public function prototype
63 INT __devinit rt28xx_probe(IN void *_dev_p, IN void *_dev_id_p,
64                                                         IN UINT argc, OUT PRTMP_ADAPTER *ppAd);
65
66 // private function prototype
67 static int rt28xx_init(IN struct net_device *net_dev);
68 INT rt28xx_send_packets(IN struct sk_buff *skb_p, IN struct net_device *net_dev);
69
70 static void CfgInitHook(PRTMP_ADAPTER pAd);
71
72 extern  const struct iw_handler_def rt28xx_iw_handler_def;
73
74 #if WIRELESS_EXT >= 12
75 // This function will be called when query /proc
76 struct iw_statistics *rt28xx_get_wireless_stats(
77     IN struct net_device *net_dev);
78 #endif
79
80 struct net_device_stats *RT28xx_get_ether_stats(
81     IN  struct net_device *net_dev);
82
83 /*
84 ========================================================================
85 Routine Description:
86     Close raxx interface.
87
88 Arguments:
89         *net_dev                        the raxx interface pointer
90
91 Return Value:
92     0                                   Open OK
93         otherwise                       Open Fail
94
95 Note:
96         1. if open fail, kernel will not call the close function.
97         2. Free memory for
98                 (1) Mlme Memory Handler:                MlmeHalt()
99                 (2) TX & RX:                                    RTMPFreeTxRxRingMemory()
100                 (3) BA Reordering:                              ba_reordering_resource_release()
101 ========================================================================
102 */
103 int MainVirtualIF_close(IN struct net_device *net_dev)
104 {
105     RTMP_ADAPTER *pAd = net_dev->ml_priv;
106
107         // Sanity check for pAd
108         if (pAd == NULL)
109                 return 0; // close ok
110
111         netif_carrier_off(pAd->net_dev);
112         netif_stop_queue(pAd->net_dev);
113
114
115
116         VIRTUAL_IF_DOWN(pAd);
117
118         RT_MOD_DEC_USE_COUNT();
119
120         return 0; // close ok
121 }
122
123 /*
124 ========================================================================
125 Routine Description:
126     Open raxx interface.
127
128 Arguments:
129         *net_dev                        the raxx interface pointer
130
131 Return Value:
132     0                                   Open OK
133         otherwise                       Open Fail
134
135 Note:
136         1. if open fail, kernel will not call the close function.
137         2. Free memory for
138                 (1) Mlme Memory Handler:                MlmeHalt()
139                 (2) TX & RX:                                    RTMPFreeTxRxRingMemory()
140                 (3) BA Reordering:                              ba_reordering_resource_release()
141 ========================================================================
142 */
143 int MainVirtualIF_open(IN struct net_device *net_dev)
144 {
145     RTMP_ADAPTER *pAd = net_dev->ml_priv;
146
147         // Sanity check for pAd
148         if (pAd == NULL)
149                 return 0; // close ok
150
151         if (VIRTUAL_IF_UP(pAd) != 0)
152                 return -1;
153
154         // increase MODULE use count
155         RT_MOD_INC_USE_COUNT();
156
157         netif_start_queue(net_dev);
158         netif_carrier_on(net_dev);
159         netif_wake_queue(net_dev);
160
161         return 0;
162 }
163
164 /*
165 ========================================================================
166 Routine Description:
167     Close raxx interface.
168
169 Arguments:
170         *net_dev                        the raxx interface pointer
171
172 Return Value:
173     0                                   Open OK
174         otherwise                       Open Fail
175
176 Note:
177         1. if open fail, kernel will not call the close function.
178         2. Free memory for
179                 (1) Mlme Memory Handler:                MlmeHalt()
180                 (2) TX & RX:                                    RTMPFreeTxRxRingMemory()
181                 (3) BA Reordering:                              ba_reordering_resource_release()
182 ========================================================================
183 */
184 int rt28xx_close(IN PNET_DEV dev)
185 {
186         struct net_device * net_dev = (struct net_device *)dev;
187     RTMP_ADAPTER        *pAd = net_dev->ml_priv;
188         BOOLEAN                 Cancelled = FALSE;
189         UINT32                  i = 0;
190 #ifdef RT2870
191         DECLARE_WAIT_QUEUE_HEAD(unlink_wakeup);
192         DECLARE_WAITQUEUE(wait, current);
193
194         //RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_REMOVE_IN_PROGRESS);
195 #endif // RT2870 //
196
197
198     DBGPRINT(RT_DEBUG_TRACE, ("===> rt28xx_close\n"));
199
200         // Sanity check for pAd
201         if (pAd == NULL)
202                 return 0; // close ok
203
204         {
205
206                 // If dirver doesn't wake up firmware here,
207                 // NICLoadFirmware will hang forever when interface is up again.
208                 if (OPSTATUS_TEST_FLAG(pAd, fOP_STATUS_DOZE))
209         {
210                     AsicForceWakeup(pAd, TRUE);
211         }
212
213                 if (INFRA_ON(pAd) &&
214                         (!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_NIC_NOT_EXIST)))
215                 {
216                         MLME_DISASSOC_REQ_STRUCT        DisReq;
217                         MLME_QUEUE_ELEM *MsgElem = (MLME_QUEUE_ELEM *) kmalloc(sizeof(MLME_QUEUE_ELEM), MEM_ALLOC_FLAG);
218
219                         COPY_MAC_ADDR(DisReq.Addr, pAd->CommonCfg.Bssid);
220                         DisReq.Reason =  REASON_DEAUTH_STA_LEAVING;
221
222                         MsgElem->Machine = ASSOC_STATE_MACHINE;
223                         MsgElem->MsgType = MT2_MLME_DISASSOC_REQ;
224                         MsgElem->MsgLen = sizeof(MLME_DISASSOC_REQ_STRUCT);
225                         NdisMoveMemory(MsgElem->Msg, &DisReq, sizeof(MLME_DISASSOC_REQ_STRUCT));
226
227                         // Prevent to connect AP again in STAMlmePeriodicExec
228                         pAd->MlmeAux.AutoReconnectSsidLen= 32;
229                         NdisZeroMemory(pAd->MlmeAux.AutoReconnectSsid, pAd->MlmeAux.AutoReconnectSsidLen);
230
231                         pAd->Mlme.CntlMachine.CurrState = CNTL_WAIT_OID_DISASSOC;
232                         MlmeDisassocReqAction(pAd, MsgElem);
233                         kfree(MsgElem);
234
235                         RTMPusecDelay(1000);
236                 }
237
238 #ifdef RT2870
239         RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_REMOVE_IN_PROGRESS);
240 #endif // RT2870 //
241
242 #ifdef CCX_SUPPORT
243                 RTMPCancelTimer(&pAd->StaCfg.LeapAuthTimer, &Cancelled);
244 #endif
245
246                 RTMPCancelTimer(&pAd->StaCfg.StaQuickResponeForRateUpTimer, &Cancelled);
247                 RTMPCancelTimer(&pAd->StaCfg.WpaDisassocAndBlockAssocTimer, &Cancelled);
248
249                 MlmeRadioOff(pAd);
250         }
251
252         RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_HALT_IN_PROGRESS);
253
254         for (i = 0 ; i < NUM_OF_TX_RING; i++)
255         {
256                 while (pAd->DeQueueRunning[i] == TRUE)
257                 {
258                         printk("Waiting for TxQueue[%d] done..........\n", i);
259                         RTMPusecDelay(1000);
260                 }
261         }
262
263 #ifdef RT2870
264         // ensure there are no more active urbs.
265         add_wait_queue (&unlink_wakeup, &wait);
266         pAd->wait = &unlink_wakeup;
267
268         // maybe wait for deletions to finish.
269         i = 0;
270         //while((i < 25) && atomic_read(&pAd->PendingRx) > 0)
271         while(i < 25)
272         {
273                 unsigned long IrqFlags;
274
275                 RTMP_IRQ_LOCK(&pAd->BulkInLock, IrqFlags);
276                 if (pAd->PendingRx == 0)
277                 {
278                         RTMP_IRQ_UNLOCK(&pAd->BulkInLock, IrqFlags);
279                         break;
280                 }
281                 RTMP_IRQ_UNLOCK(&pAd->BulkInLock, IrqFlags);
282
283                 msleep(UNLINK_TIMEOUT_MS);      //Time in millisecond
284                 i++;
285         }
286         pAd->wait = NULL;
287         remove_wait_queue (&unlink_wakeup, &wait);
288 #endif // RT2870 //
289
290 #ifdef RT2870
291         // We need clear timerQ related structure before exits of the timer thread.
292         RT2870_TimerQ_Exit(pAd);
293         // Close kernel threads or tasklets
294         RT28xxThreadTerminate(pAd);
295 #endif // RT2870 //
296
297         // Stop Mlme state machine
298         MlmeHalt(pAd);
299
300         // Close kernel threads or tasklets
301         kill_thread_task(pAd);
302
303         MacTableReset(pAd);
304
305         MeasureReqTabExit(pAd);
306         TpcReqTabExit(pAd);
307
308
309
310
311         // Free Ring or USB buffers
312         RTMPFreeTxRxRingMemory(pAd);
313
314         RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_HALT_IN_PROGRESS);
315
316         // Free BA reorder resource
317         ba_reordering_resource_release(pAd);
318
319         RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_START_UP);
320
321         return 0; // close ok
322 } /* End of rt28xx_close */
323
324 static int rt28xx_init(IN struct net_device *net_dev)
325 {
326         PRTMP_ADAPTER                   pAd = net_dev->ml_priv;
327         UINT                                    index;
328         UCHAR                                   TmpPhy;
329         NDIS_STATUS                             Status;
330         UINT32          MacCsr0 = 0;
331
332         // Allocate BA Reordering memory
333         ba_reordering_resource_init(pAd, MAX_REORDERING_MPDU_NUM);
334
335         // Make sure MAC gets ready.
336         index = 0;
337         do
338         {
339                 RTMP_IO_READ32(pAd, MAC_CSR0, &MacCsr0);
340                 pAd->MACVersion = MacCsr0;
341
342                 if ((pAd->MACVersion != 0x00) && (pAd->MACVersion != 0xFFFFFFFF))
343                         break;
344
345                 RTMPusecDelay(10);
346         } while (index++ < 100);
347
348         DBGPRINT(RT_DEBUG_TRACE, ("MAC_CSR0  [ Ver:Rev=0x%08x]\n", pAd->MACVersion));
349
350         // Disable DMA
351         RT28XXDMADisable(pAd);
352
353
354         // Load 8051 firmware
355         Status = NICLoadFirmware(pAd);
356         if (Status != NDIS_STATUS_SUCCESS)
357         {
358                 DBGPRINT_ERR(("NICLoadFirmware failed, Status[=0x%08x]\n", Status));
359                 goto err1;
360         }
361
362         NICLoadRateSwitchingParams(pAd);
363
364         // Disable interrupts here which is as soon as possible
365         // This statement should never be true. We might consider to remove it later
366
367         Status = RTMPAllocTxRxRingMemory(pAd);
368         if (Status != NDIS_STATUS_SUCCESS)
369         {
370                 DBGPRINT_ERR(("RTMPAllocDMAMemory failed, Status[=0x%08x]\n", Status));
371                 goto err1;
372         }
373
374         RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE);
375
376         // initialize MLME
377         //
378
379         Status = MlmeInit(pAd);
380         if (Status != NDIS_STATUS_SUCCESS)
381         {
382                 DBGPRINT_ERR(("MlmeInit failed, Status[=0x%08x]\n", Status));
383                 goto err2;
384         }
385
386         // Initialize pAd->StaCfg, pAd->ApCfg, pAd->CommonCfg to manufacture default
387         //
388         UserCfgInit(pAd);
389
390 #ifdef RT2870
391         // We need init timerQ related structure before create the timer thread.
392         RT2870_TimerQ_Init(pAd);
393 #endif // RT2870 //
394
395         RT28XX_TASK_THREAD_INIT(pAd, Status);
396         if (Status != NDIS_STATUS_SUCCESS)
397                 goto err1;
398
399         CfgInitHook(pAd);
400
401         NdisAllocateSpinLock(&pAd->MacTabLock);
402
403         MeasureReqTabInit(pAd);
404         TpcReqTabInit(pAd);
405
406         //
407         // Init the hardware, we need to init asic before read registry, otherwise mac register will be reset
408         //
409         Status = NICInitializeAdapter(pAd, TRUE);
410         if (Status != NDIS_STATUS_SUCCESS)
411         {
412                 DBGPRINT_ERR(("NICInitializeAdapter failed, Status[=0x%08x]\n", Status));
413                 if (Status != NDIS_STATUS_SUCCESS)
414                 goto err3;
415         }
416
417         // Read parameters from Config File
418         Status = RTMPReadParametersHook(pAd);
419
420         printk("1. Phy Mode = %d\n", pAd->CommonCfg.PhyMode);
421         if (Status != NDIS_STATUS_SUCCESS)
422         {
423                 DBGPRINT_ERR(("NICReadRegParameters failed, Status[=0x%08x]\n",Status));
424                 goto err4;
425         }
426
427 #ifdef RT2870
428         pAd->CommonCfg.bMultipleIRP = FALSE;
429
430         if (pAd->CommonCfg.bMultipleIRP)
431                 pAd->CommonCfg.NumOfBulkInIRP = RX_RING_SIZE;
432         else
433                 pAd->CommonCfg.NumOfBulkInIRP = 1;
434 #endif // RT2870 //
435
436
437         //Init Ba Capability parameters.
438         pAd->CommonCfg.DesiredHtPhy.MpduDensity = (UCHAR)pAd->CommonCfg.BACapability.field.MpduDensity;
439         pAd->CommonCfg.DesiredHtPhy.AmsduEnable = (USHORT)pAd->CommonCfg.BACapability.field.AmsduEnable;
440         pAd->CommonCfg.DesiredHtPhy.AmsduSize = (USHORT)pAd->CommonCfg.BACapability.field.AmsduSize;
441         pAd->CommonCfg.DesiredHtPhy.MimoPs = (USHORT)pAd->CommonCfg.BACapability.field.MMPSmode;
442         // UPdata to HT IE
443         pAd->CommonCfg.HtCapability.HtCapInfo.MimoPs = (USHORT)pAd->CommonCfg.BACapability.field.MMPSmode;
444         pAd->CommonCfg.HtCapability.HtCapInfo.AMsduSize = (USHORT)pAd->CommonCfg.BACapability.field.AmsduSize;
445         pAd->CommonCfg.HtCapability.HtCapParm.MpduDensity = (UCHAR)pAd->CommonCfg.BACapability.field.MpduDensity;
446
447         printk("2. Phy Mode = %d\n", pAd->CommonCfg.PhyMode);
448
449         // We should read EEPROM for all cases.  rt2860b
450         NICReadEEPROMParameters(pAd, mac);
451
452         printk("3. Phy Mode = %d\n", pAd->CommonCfg.PhyMode);
453
454         NICInitAsicFromEEPROM(pAd); //rt2860b
455
456         // Set PHY to appropriate mode
457         TmpPhy = pAd->CommonCfg.PhyMode;
458         pAd->CommonCfg.PhyMode = 0xff;
459         RTMPSetPhyMode(pAd, TmpPhy);
460         SetCommonHT(pAd);
461
462         // No valid channels.
463         if (pAd->ChannelListNum == 0)
464         {
465                 printk("Wrong configuration. No valid channel found. Check \"ContryCode\" and \"ChannelGeography\" setting.\n");
466                 goto err4;
467         }
468
469         printk("MCS Set = %02x %02x %02x %02x %02x\n", pAd->CommonCfg.HtCapability.MCSSet[0],
470            pAd->CommonCfg.HtCapability.MCSSet[1], pAd->CommonCfg.HtCapability.MCSSet[2],
471            pAd->CommonCfg.HtCapability.MCSSet[3], pAd->CommonCfg.HtCapability.MCSSet[4]);
472
473 #ifdef RT2870
474     //Init RT30xx RFRegisters after read RFIC type from EEPROM
475         NICInitRT30xxRFRegisters(pAd);
476 #endif // RT2870 //
477
478 #ifdef IKANOS_VX_1X0
479         VR_IKANOS_FP_Init(pAd->ApCfg.BssidNum, pAd->PermanentAddress);
480 #endif // IKANOS_VX_1X0 //
481
482                 //
483         // Initialize RF register to default value
484         //
485         AsicSwitchChannel(pAd, pAd->CommonCfg.Channel, FALSE);
486         AsicLockChannel(pAd, pAd->CommonCfg.Channel);
487
488         // 8051 firmware require the signal during booting time.
489         AsicSendCommandToMcu(pAd, 0x72, 0xFF, 0x00, 0x00);
490
491         if (pAd && (Status != NDIS_STATUS_SUCCESS))
492         {
493                 //
494                 // Undo everything if it failed
495                 //
496                 if (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE))
497                 {
498                         RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE);
499                 }
500         }
501         else if (pAd)
502         {
503                 // Microsoft HCT require driver send a disconnect event after driver initialization.
504                 OPSTATUS_CLEAR_FLAG(pAd, fOP_STATUS_MEDIA_STATE_CONNECTED);
505                 RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_MEDIA_STATE_CHANGE);
506
507                 DBGPRINT(RT_DEBUG_TRACE, ("NDIS_STATUS_MEDIA_DISCONNECT Event B!\n"));
508
509
510 #ifdef RT2870
511                 RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_RESET_IN_PROGRESS);
512                 RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_REMOVE_IN_PROGRESS);
513
514                 //
515                 // Support multiple BulkIn IRP,
516                 // the value on pAd->CommonCfg.NumOfBulkInIRP may be large than 1.
517                 //
518                 for(index=0; index<pAd->CommonCfg.NumOfBulkInIRP; index++)
519                 {
520                         RTUSBBulkReceive(pAd);
521                         DBGPRINT(RT_DEBUG_TRACE, ("RTUSBBulkReceive!\n" ));
522                 }
523 #endif // RT2870 //
524         }// end of else
525
526
527         DBGPRINT_S(Status, ("<==== RTMPInitialize, Status=%x\n", Status));
528
529         return TRUE;
530
531
532 err4:
533 err3:
534         MlmeHalt(pAd);
535 err2:
536         RTMPFreeTxRxRingMemory(pAd);
537 err1:
538         os_free_mem(pAd, pAd->mpdu_blk_pool.mem); // free BA pool
539         RT28XX_IRQ_RELEASE(net_dev);
540
541         // shall not set ml_priv to NULL here because the ml_priv didn't been free yet.
542         //net_dev->ml_priv = 0;
543
544         printk("!!! %s Initialized fail !!!\n", RT28xx_CHIP_NAME);
545         return FALSE;
546 } /* End of rt28xx_init */
547
548
549 /*
550 ========================================================================
551 Routine Description:
552     Open raxx interface.
553
554 Arguments:
555         *net_dev                        the raxx interface pointer
556
557 Return Value:
558     0                                   Open OK
559         otherwise                       Open Fail
560
561 Note:
562 ========================================================================
563 */
564 int rt28xx_open(IN PNET_DEV dev)
565 {
566         struct net_device * net_dev = (struct net_device *)dev;
567         PRTMP_ADAPTER pAd = net_dev->ml_priv;
568         int retval = 0;
569         POS_COOKIE pObj;
570
571
572         // Sanity check for pAd
573         if (pAd == NULL)
574         {
575                 /* if 1st open fail, pAd will be free;
576                    So the net_dev->ml_priv will be NULL in 2rd open */
577                 return -1;
578         }
579
580         // Init
581         pObj = (POS_COOKIE)pAd->OS_Cookie;
582
583         // reset Adapter flags
584         RTMP_CLEAR_FLAGS(pAd);
585
586         // Request interrupt service routine for PCI device
587         // register the interrupt routine with the os
588         RT28XX_IRQ_REQUEST(net_dev);
589
590
591         // Init BssTab & ChannelInfo tabbles for auto channel select.
592
593
594         // Chip & other init
595         if (rt28xx_init(net_dev) == FALSE)
596                 goto err;
597
598         NdisZeroMemory(pAd->StaCfg.dev_name, 16);
599         NdisMoveMemory(pAd->StaCfg.dev_name, net_dev->name, strlen(net_dev->name));
600
601         // Set up the Mac address
602         NdisMoveMemory(net_dev->dev_addr, (void *) pAd->CurrentAddress, 6);
603
604         // Init IRQ parameters
605         RT28XX_IRQ_INIT(pAd);
606
607         // Various AP function init
608
609         // Enable Interrupt
610         RT28XX_IRQ_ENABLE(pAd);
611
612         // Now Enable RxTx
613         RTMPEnableRxTx(pAd);
614         RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_START_UP);
615
616         {
617         UINT32 reg = 0;
618         RTMP_IO_READ32(pAd, 0x1300, &reg);  // clear garbage interrupts
619         printk("0x1300 = %08x\n", reg);
620         }
621
622         return (retval);
623
624 err:
625         return (-1);
626 } /* End of rt28xx_open */
627
628 static const struct net_device_ops rt2870_netdev_ops = {
629         .ndo_open               = MainVirtualIF_open,
630         .ndo_stop               = MainVirtualIF_close,
631         .ndo_do_ioctl           = rt28xx_ioctl,
632         .ndo_get_stats          = RT28xx_get_ether_stats,
633         .ndo_validate_addr      = NULL,
634         .ndo_set_mac_address    = eth_mac_addr,
635         .ndo_change_mtu         = eth_change_mtu,
636 #ifdef IKANOS_VX_1X0
637         .ndo_start_xmit         = IKANOS_DataFramesTx,
638 #else
639         .ndo_start_xmit         = rt28xx_send_packets,
640 #endif
641 };
642
643 /* Must not be called for mdev and apdev */
644 static NDIS_STATUS rt_ieee80211_if_setup(struct net_device *dev, PRTMP_ADAPTER pAd)
645 {
646         NDIS_STATUS Status;
647         INT     i=0;
648         CHAR    slot_name[IFNAMSIZ];
649         struct net_device   *device;
650
651 #if WIRELESS_EXT >= 12
652         if (pAd->OpMode == OPMODE_STA)
653         {
654                 dev->wireless_handlers = &rt28xx_iw_handler_def;
655         }
656 #endif //WIRELESS_EXT >= 12
657
658 #if WIRELESS_EXT < 21
659                 dev->get_wireless_stats = rt28xx_get_wireless_stats;
660 #endif
661         dev->priv_flags = INT_MAIN;
662         dev->netdev_ops = &rt2870_netdev_ops;
663         // find available device name
664         for (i = 0; i < 8; i++)
665         {
666                 sprintf(slot_name, "ra%d", i);
667
668                 device = dev_get_by_name(dev_net(dev), slot_name);
669                 if (device != NULL)
670                         dev_put(device);
671
672                 if (device == NULL)
673                         break;
674         }
675
676         if(i == 8)
677         {
678                 DBGPRINT(RT_DEBUG_ERROR, ("No available slot name\n"));
679                 Status = NDIS_STATUS_FAILURE;
680         }
681         else
682         {
683                 sprintf(dev->name, "ra%d", i);
684                 Status = NDIS_STATUS_SUCCESS;
685         }
686
687         return Status;
688
689 }
690
691 /*
692 ========================================================================
693 Routine Description:
694     Probe RT28XX chipset.
695
696 Arguments:
697     _dev_p                              Point to the PCI or USB device
698         _dev_id_p                       Point to the PCI or USB device ID
699
700 Return Value:
701     0                                   Probe OK
702         -ENODEV                         Probe Fail
703
704 Note:
705 ========================================================================
706 */
707 INT __devinit   rt28xx_probe(
708     IN  void *_dev_p,
709     IN  void *_dev_id_p,
710         IN  UINT argc,
711         OUT PRTMP_ADAPTER *ppAd)
712 {
713     struct  net_device  *net_dev;
714     PRTMP_ADAPTER       pAd = (PRTMP_ADAPTER) NULL;
715     INT                 status;
716         PVOID                           handle;
717 #ifdef RT2870
718         struct usb_interface *intf = (struct usb_interface *)_dev_p;
719         struct usb_device *dev_p = interface_to_usbdev(intf);
720
721         dev_p = usb_get_dev(dev_p);
722 #endif // RT2870 //
723
724
725     DBGPRINT(RT_DEBUG_TRACE, ("STA Driver version-%s\n", STA_DRIVER_VERSION));
726
727     net_dev = alloc_etherdev(sizeof(PRTMP_ADAPTER));
728     if (net_dev == NULL)
729     {
730         printk("alloc_netdev failed\n");
731
732         goto err_out;
733     }
734
735         netif_stop_queue(net_dev);
736
737 /* for supporting Network Manager */
738 /* Set the sysfs physical device reference for the network logical device
739  * if set prior to registration will cause a symlink during initialization.
740  */
741     SET_NETDEV_DEV(net_dev, &(dev_p->dev));
742
743         // Allocate RTMP_ADAPTER miniport adapter structure
744         handle = kmalloc(sizeof(struct os_cookie), GFP_KERNEL);
745         RT28XX_HANDLE_DEV_ASSIGN(handle, dev_p);
746
747         status = RTMPAllocAdapterBlock(handle, &pAd);
748         if (status != NDIS_STATUS_SUCCESS)
749                 goto err_out_free_netdev;
750
751         net_dev->ml_priv = (PVOID)pAd;
752     pAd->net_dev = net_dev; // must be before RT28XXNetDevInit()
753
754         RT28XXNetDevInit(_dev_p, net_dev, pAd);
755
756     pAd->StaCfg.OriDevType = net_dev->type;
757
758         // Post config
759         if (RT28XXProbePostConfig(_dev_p, pAd, 0) == FALSE)
760                 goto err_out_unmap;
761
762         pAd->OpMode = OPMODE_STA;
763
764         // sample move
765         if (rt_ieee80211_if_setup(net_dev, pAd) != NDIS_STATUS_SUCCESS)
766                 goto err_out_unmap;
767
768     // Register this device
769     status = register_netdev(net_dev);
770     if (status)
771         goto err_out_unmap;
772
773     // Set driver data
774         RT28XX_DRVDATA_SET(_dev_p);
775
776
777
778         *ppAd = pAd;
779     return 0; // probe ok
780
781
782         /* --------------------------- ERROR HANDLE --------------------------- */
783 err_out_unmap:
784         RTMPFreeAdapter(pAd);
785         RT28XX_UNMAP();
786
787 err_out_free_netdev:
788         free_netdev(net_dev);
789
790 err_out:
791         RT28XX_PUT_DEVICE(dev_p);
792
793         return -ENODEV; /* probe fail */
794 } /* End of rt28xx_probe */
795
796
797 /*
798 ========================================================================
799 Routine Description:
800     The entry point for Linux kernel sent packet to our driver.
801
802 Arguments:
803     sk_buff *skb                the pointer refer to a sk_buffer.
804
805 Return Value:
806     0
807
808 Note:
809         This function is the entry point of Tx Path for Os delivery packet to
810         our driver. You only can put OS-depened & STA/AP common handle procedures
811         in here.
812 ========================================================================
813 */
814 int rt28xx_packet_xmit(struct sk_buff *skb)
815 {
816         struct net_device *net_dev = skb->dev;
817         PRTMP_ADAPTER pAd = net_dev->ml_priv;
818         int status = 0;
819         PNDIS_PACKET pPacket = (PNDIS_PACKET) skb;
820
821         {
822                 // Drop send request since we are in monitor mode
823                 if (MONITOR_ON(pAd))
824                 {
825                         RELEASE_NDIS_PACKET(pAd, pPacket, NDIS_STATUS_FAILURE);
826                         goto done;
827                 }
828         }
829
830         // EapolStart size is 18
831         if (skb->len < 14)
832         {
833                 //printk("bad packet size: %d\n", pkt->len);
834                 hex_dump("bad packet", skb->data, skb->len);
835                 RELEASE_NDIS_PACKET(pAd, pPacket, NDIS_STATUS_FAILURE);
836                 goto done;
837         }
838
839         RTMP_SET_PACKET_5VT(pPacket, 0);
840 #ifdef CONFIG_5VT_ENHANCE
841     if (*(int*)(skb->cb) == BRIDGE_TAG) {
842                 RTMP_SET_PACKET_5VT(pPacket, 1);
843     }
844 #endif
845
846         STASendPackets((NDIS_HANDLE)pAd, (PPNDIS_PACKET) &pPacket, 1);
847
848         status = 0;
849 done:
850
851         return status;
852 }
853
854
855 /*
856 ========================================================================
857 Routine Description:
858     Send a packet to WLAN.
859
860 Arguments:
861     skb_p           points to our adapter
862     dev_p           which WLAN network interface
863
864 Return Value:
865     0: transmit successfully
866     otherwise: transmit fail
867
868 Note:
869 ========================================================================
870 */
871 INT rt28xx_send_packets(
872         IN struct sk_buff               *skb_p,
873         IN struct net_device    *net_dev)
874 {
875     RTMP_ADAPTER *pAd = net_dev->ml_priv;
876
877         if (!(net_dev->flags & IFF_UP))
878         {
879                 RELEASE_NDIS_PACKET(pAd, (PNDIS_PACKET)skb_p, NDIS_STATUS_FAILURE);
880                 return 0;
881         }
882
883         NdisZeroMemory((PUCHAR)&skb_p->cb[CB_OFF], 15);
884         RTMP_SET_PACKET_NET_DEVICE_MBSSID(skb_p, MAIN_MBSSID);
885
886         return rt28xx_packet_xmit(skb_p);
887 } /* End of MBSS_VirtualIF_PacketSend */
888
889
890
891
892 void CfgInitHook(PRTMP_ADAPTER pAd)
893 {
894         pAd->bBroadComHT = TRUE;
895 } /* End of CfgInitHook */
896
897 #if WIRELESS_EXT >= 12
898 // This function will be called when query /proc
899 struct iw_statistics *rt28xx_get_wireless_stats(
900     IN struct net_device *net_dev)
901 {
902         PRTMP_ADAPTER pAd = net_dev->ml_priv;
903
904
905         DBGPRINT(RT_DEBUG_TRACE, ("rt28xx_get_wireless_stats --->\n"));
906
907         pAd->iw_stats.status = 0; // Status - device dependent for now
908
909         // link quality
910         pAd->iw_stats.qual.qual = ((pAd->Mlme.ChannelQuality * 12)/10 + 10);
911         if(pAd->iw_stats.qual.qual > 100)
912                 pAd->iw_stats.qual.qual = 100;
913
914         if (pAd->OpMode == OPMODE_STA)
915                 pAd->iw_stats.qual.level = RTMPMaxRssi(pAd, pAd->StaCfg.RssiSample.LastRssi0, pAd->StaCfg.RssiSample.LastRssi1, pAd->StaCfg.RssiSample.LastRssi2);
916
917         pAd->iw_stats.qual.noise = pAd->BbpWriteLatch[66]; // noise level (dBm)
918
919         pAd->iw_stats.qual.noise += 256 - 143;
920         pAd->iw_stats.qual.updated = 1;     // Flags to know if updated
921 #ifdef IW_QUAL_DBM
922         pAd->iw_stats.qual.updated |= IW_QUAL_DBM;      // Level + Noise are dBm
923 #endif // IW_QUAL_DBM //
924
925         pAd->iw_stats.discard.nwid = 0;     // Rx : Wrong nwid/essid
926         pAd->iw_stats.miss.beacon = 0;      // Missed beacons/superframe
927
928         DBGPRINT(RT_DEBUG_TRACE, ("<--- rt28xx_get_wireless_stats\n"));
929         return &pAd->iw_stats;
930 } /* End of rt28xx_get_wireless_stats */
931 #endif // WIRELESS_EXT //
932
933
934
935 void tbtt_tasklet(unsigned long data)
936 {
937 #define MAX_TX_IN_TBTT          (16)
938
939 }
940
941 INT rt28xx_ioctl(
942         IN      struct net_device       *net_dev,
943         IN      OUT     struct ifreq    *rq,
944         IN      INT                                     cmd)
945 {
946         VIRTUAL_ADAPTER *pVirtualAd = NULL;
947         RTMP_ADAPTER    *pAd = NULL;
948         INT                             ret = 0;
949
950         if (net_dev->priv_flags == INT_MAIN)
951         {
952                 pAd = net_dev->ml_priv;
953         }
954         else
955         {
956                 pVirtualAd = net_dev->ml_priv;
957                 pAd = pVirtualAd->RtmpDev->ml_priv;
958         }
959
960         if (pAd == NULL)
961         {
962                 /* if 1st open fail, pAd will be free;
963                    So the net_dev->ml_priv will be NULL in 2rd open */
964                 return -ENETDOWN;
965         }
966
967         ret = rt28xx_sta_ioctl(net_dev, rq, cmd);
968
969         return ret;
970 }
971
972 /*
973     ========================================================================
974
975     Routine Description:
976         return ethernet statistics counter
977
978     Arguments:
979         net_dev                     Pointer to net_device
980
981     Return Value:
982         net_device_stats*
983
984     Note:
985
986     ========================================================================
987 */
988 struct net_device_stats *RT28xx_get_ether_stats(
989     IN  struct net_device *net_dev)
990 {
991     RTMP_ADAPTER *pAd = NULL;
992
993         if (net_dev)
994                 pAd = net_dev->ml_priv;
995
996         if (pAd)
997         {
998
999                 pAd->stats.rx_packets = pAd->WlanCounters.ReceivedFragmentCount.QuadPart;
1000                 pAd->stats.tx_packets = pAd->WlanCounters.TransmittedFragmentCount.QuadPart;
1001
1002                 pAd->stats.rx_bytes = pAd->RalinkCounters.ReceivedByteCount;
1003                 pAd->stats.tx_bytes = pAd->RalinkCounters.TransmittedByteCount;
1004
1005                 pAd->stats.rx_errors = pAd->Counters8023.RxErrors;
1006                 pAd->stats.tx_errors = pAd->Counters8023.TxErrors;
1007
1008                 pAd->stats.rx_dropped = 0;
1009                 pAd->stats.tx_dropped = 0;
1010
1011             pAd->stats.multicast = pAd->WlanCounters.MulticastReceivedFrameCount.QuadPart;   // multicast packets received
1012             pAd->stats.collisions = pAd->Counters8023.OneCollision + pAd->Counters8023.MoreCollisions;  // Collision packets
1013
1014             pAd->stats.rx_length_errors = 0;
1015             pAd->stats.rx_over_errors = pAd->Counters8023.RxNoBuffer;                   // receiver ring buff overflow
1016             pAd->stats.rx_crc_errors = 0;//pAd->WlanCounters.FCSErrorCount;     // recved pkt with crc error
1017             pAd->stats.rx_frame_errors = pAd->Counters8023.RcvAlignmentErrors;          // recv'd frame alignment error
1018             pAd->stats.rx_fifo_errors = pAd->Counters8023.RxNoBuffer;                   // recv'r fifo overrun
1019             pAd->stats.rx_missed_errors = 0;                                            // receiver missed packet
1020
1021             // detailed tx_errors
1022             pAd->stats.tx_aborted_errors = 0;
1023             pAd->stats.tx_carrier_errors = 0;
1024             pAd->stats.tx_fifo_errors = 0;
1025             pAd->stats.tx_heartbeat_errors = 0;
1026             pAd->stats.tx_window_errors = 0;
1027
1028             // for cslip etc
1029             pAd->stats.rx_compressed = 0;
1030             pAd->stats.tx_compressed = 0;
1031
1032                 return &pAd->stats;
1033         }
1034         else
1035         return NULL;
1036 }
1037