rt2x00: Use struct rt2x00_dev driver data in rt2800{pci,usb}.
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rt2x00 / rt2800usb.c
1 /*
2         Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3         Copyright (C) 2009 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
4         Copyright (C) 2009 Mattias Nissler <mattias.nissler@gmx.de>
5         Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
6         Copyright (C) 2009 Xose Vazquez Perez <xose.vazquez@gmail.com>
7         Copyright (C) 2009 Axel Kollhofer <rain_maker@root-forum.org>
8         <http://rt2x00.serialmonkey.com>
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: rt2800usb
28         Abstract: rt2800usb device specific routines.
29         Supported chipsets: RT2800U.
30  */
31
32 #include <linux/delay.h>
33 #include <linux/etherdevice.h>
34 #include <linux/init.h>
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/usb.h>
38
39 #include "rt2x00.h"
40 #include "rt2x00usb.h"
41 #include "rt2800lib.h"
42 #include "rt2800.h"
43 #include "rt2800usb.h"
44
45 /*
46  * Allow hardware encryption to be disabled.
47  */
48 static bool modparam_nohwcrypt;
49 module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
50 MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
51
52 /*
53  * Queue handlers.
54  */
55 static void rt2800usb_start_queue(struct data_queue *queue)
56 {
57         struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
58         u32 reg;
59
60         switch (queue->qid) {
61         case QID_RX:
62                 rt2x00usb_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
63                 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
64                 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
65                 break;
66         case QID_BEACON:
67                 rt2x00usb_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
68                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 1);
69                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 1);
70                 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
71                 rt2x00usb_register_write(rt2x00dev, BCN_TIME_CFG, reg);
72                 break;
73         default:
74                 break;
75         }
76 }
77
78 static void rt2800usb_stop_queue(struct data_queue *queue)
79 {
80         struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
81         u32 reg;
82
83         switch (queue->qid) {
84         case QID_RX:
85                 rt2x00usb_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
86                 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
87                 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
88                 break;
89         case QID_BEACON:
90                 rt2x00usb_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
91                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 0);
92                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 0);
93                 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
94                 rt2x00usb_register_write(rt2x00dev, BCN_TIME_CFG, reg);
95                 break;
96         default:
97                 break;
98         }
99 }
100
101 /*
102  * test if there is an entry in any TX queue for which DMA is done
103  * but the TX status has not been returned yet
104  */
105 static bool rt2800usb_txstatus_pending(struct rt2x00_dev *rt2x00dev)
106 {
107         struct data_queue *queue;
108
109         tx_queue_for_each(rt2x00dev, queue) {
110                 if (rt2x00queue_get_entry(queue, Q_INDEX_DMA_DONE) !=
111                     rt2x00queue_get_entry(queue, Q_INDEX_DONE))
112                         return true;
113         }
114         return false;
115 }
116
117 static bool rt2800usb_tx_sta_fifo_read_completed(struct rt2x00_dev *rt2x00dev,
118                                                  int urb_status, u32 tx_status)
119 {
120         if (urb_status) {
121                 WARNING(rt2x00dev, "rt2x00usb_register_read_async failed: %d\n", urb_status);
122                 return false;
123         }
124
125         /* try to read all TX_STA_FIFO entries before scheduling txdone_work */
126         if (rt2x00_get_field32(tx_status, TX_STA_FIFO_VALID)) {
127                 if (!kfifo_put(&rt2x00dev->txstatus_fifo, &tx_status)) {
128                         WARNING(rt2x00dev, "TX status FIFO overrun, "
129                                 "drop tx status report.\n");
130                         queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
131                 } else
132                         return true;
133         } else if (!kfifo_is_empty(&rt2x00dev->txstatus_fifo)) {
134                 queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
135         } else if (rt2800usb_txstatus_pending(rt2x00dev)) {
136                 mod_timer(&rt2x00dev->txstatus_timer, jiffies + msecs_to_jiffies(2));
137         }
138
139         return false;
140 }
141
142 static void rt2800usb_tx_dma_done(struct queue_entry *entry)
143 {
144         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
145
146         rt2x00usb_register_read_async(rt2x00dev, TX_STA_FIFO,
147                                       rt2800usb_tx_sta_fifo_read_completed);
148 }
149
150 static void rt2800usb_tx_sta_fifo_timeout(unsigned long data)
151 {
152         struct rt2x00_dev *rt2x00dev = (struct rt2x00_dev *)data;
153
154         rt2x00usb_register_read_async(rt2x00dev, TX_STA_FIFO,
155                                       rt2800usb_tx_sta_fifo_read_completed);
156 }
157
158 /*
159  * Firmware functions
160  */
161 static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
162 {
163         return FIRMWARE_RT2870;
164 }
165
166 static int rt2800usb_write_firmware(struct rt2x00_dev *rt2x00dev,
167                                     const u8 *data, const size_t len)
168 {
169         int status;
170         u32 offset;
171         u32 length;
172
173         /*
174          * Check which section of the firmware we need.
175          */
176         if (rt2x00_rt(rt2x00dev, RT2860) ||
177             rt2x00_rt(rt2x00dev, RT2872) ||
178             rt2x00_rt(rt2x00dev, RT3070)) {
179                 offset = 0;
180                 length = 4096;
181         } else {
182                 offset = 4096;
183                 length = 4096;
184         }
185
186         /*
187          * Write firmware to device.
188          */
189         rt2x00usb_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
190                                       data + offset, length);
191
192         rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
193         rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
194
195         /*
196          * Send firmware request to device to load firmware,
197          * we need to specify a long timeout time.
198          */
199         status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
200                                              0, USB_MODE_FIRMWARE,
201                                              REGISTER_TIMEOUT_FIRMWARE);
202         if (status < 0) {
203                 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
204                 return status;
205         }
206
207         msleep(10);
208         rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
209
210         return 0;
211 }
212
213 /*
214  * Device state switch handlers.
215  */
216 static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev)
217 {
218         u32 reg;
219
220         /*
221          * Wait until BBP and RF are ready.
222          */
223         if (rt2800_wait_csr_ready(rt2x00dev))
224                 return -EBUSY;
225
226         rt2x00usb_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
227         rt2x00usb_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000);
228
229         reg = 0;
230         rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_CSR, 1);
231         rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_BBP, 1);
232         rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
233
234         rt2x00usb_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000);
235
236         rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0,
237                                     USB_MODE_RESET, REGISTER_TIMEOUT);
238
239         rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
240
241         return 0;
242 }
243
244 static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
245 {
246         u32 reg;
247
248         if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev)))
249                 return -EIO;
250
251         rt2x00usb_register_read(rt2x00dev, USB_DMA_CFG, &reg);
252         rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
253         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
254         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
255         /*
256          * Total room for RX frames in kilobytes, PBF might still exceed
257          * this limit so reduce the number to prevent errors.
258          */
259         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
260                            ((rt2x00dev->ops->rx->entry_num * DATA_FRAME_SIZE)
261                             / 1024) - 3);
262         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
263         rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
264         rt2x00usb_register_write(rt2x00dev, USB_DMA_CFG, reg);
265
266         return rt2800_enable_radio(rt2x00dev);
267 }
268
269 static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
270 {
271         rt2800_disable_radio(rt2x00dev);
272         rt2x00usb_disable_radio(rt2x00dev);
273 }
274
275 static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
276                                enum dev_state state)
277 {
278         if (state == STATE_AWAKE)
279                 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 2);
280         else
281                 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0xff, 2);
282
283         return 0;
284 }
285
286 static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
287                                       enum dev_state state)
288 {
289         int retval = 0;
290
291         switch (state) {
292         case STATE_RADIO_ON:
293                 /*
294                  * Before the radio can be enabled, the device first has
295                  * to be woken up. After that it needs a bit of time
296                  * to be fully awake and then the radio can be enabled.
297                  */
298                 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
299                 msleep(1);
300                 retval = rt2800usb_enable_radio(rt2x00dev);
301                 break;
302         case STATE_RADIO_OFF:
303                 /*
304                  * After the radio has been disabled, the device should
305                  * be put to sleep for powersaving.
306                  */
307                 rt2800usb_disable_radio(rt2x00dev);
308                 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
309                 break;
310         case STATE_RADIO_IRQ_ON:
311         case STATE_RADIO_IRQ_OFF:
312                 /* No support, but no error either */
313                 break;
314         case STATE_DEEP_SLEEP:
315         case STATE_SLEEP:
316         case STATE_STANDBY:
317         case STATE_AWAKE:
318                 retval = rt2800usb_set_state(rt2x00dev, state);
319                 break;
320         default:
321                 retval = -ENOTSUPP;
322                 break;
323         }
324
325         if (unlikely(retval))
326                 ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
327                       state, retval);
328
329         return retval;
330 }
331
332 /*
333  * Watchdog handlers
334  */
335 static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
336 {
337         unsigned int i;
338         u32 reg;
339
340         rt2x00usb_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
341         if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q)) {
342                 WARNING(rt2x00dev, "TX HW queue 0 timed out,"
343                         " invoke forced kick\n");
344
345                 rt2x00usb_register_write(rt2x00dev, PBF_CFG, 0xf40012);
346
347                 for (i = 0; i < 10; i++) {
348                         udelay(10);
349                         if (!rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q))
350                                 break;
351                 }
352
353                 rt2x00usb_register_write(rt2x00dev, PBF_CFG, 0xf40006);
354         }
355
356         rt2x00usb_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
357         if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q)) {
358                 WARNING(rt2x00dev, "TX HW queue 1 timed out,"
359                         " invoke forced kick\n");
360
361                 rt2x00usb_register_write(rt2x00dev, PBF_CFG, 0xf4000a);
362
363                 for (i = 0; i < 10; i++) {
364                         udelay(10);
365                         if (!rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q))
366                                 break;
367                 }
368
369                 rt2x00usb_register_write(rt2x00dev, PBF_CFG, 0xf40006);
370         }
371
372         rt2x00usb_watchdog(rt2x00dev);
373 }
374
375 /*
376  * TX descriptor initialization
377  */
378 static __le32 *rt2800usb_get_txwi(struct queue_entry *entry)
379 {
380         if (entry->queue->qid == QID_BEACON)
381                 return (__le32 *) (entry->skb->data);
382         else
383                 return (__le32 *) (entry->skb->data + TXINFO_DESC_SIZE);
384 }
385
386 static void rt2800usb_write_tx_desc(struct queue_entry *entry,
387                                     struct txentry_desc *txdesc)
388 {
389         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
390         __le32 *txi = (__le32 *) entry->skb->data;
391         u32 word;
392
393         /*
394          * Initialize TXINFO descriptor
395          */
396         rt2x00_desc_read(txi, 0, &word);
397
398         /*
399          * The size of TXINFO_W0_USB_DMA_TX_PKT_LEN is
400          * TXWI + 802.11 header + L2 pad + payload + pad,
401          * so need to decrease size of TXINFO.
402          */
403         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
404                            roundup(entry->skb->len, 4) - TXINFO_DESC_SIZE);
405         rt2x00_set_field32(&word, TXINFO_W0_WIV,
406                            !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
407         rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
408         rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
409         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
410         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
411                            test_bit(ENTRY_TXD_BURST, &txdesc->flags));
412         rt2x00_desc_write(txi, 0, word);
413
414         /*
415          * Register descriptor details in skb frame descriptor.
416          */
417         skbdesc->flags |= SKBDESC_DESC_IN_SKB;
418         skbdesc->desc = txi;
419         skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE;
420 }
421
422 /*
423  * TX data initialization
424  */
425 static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
426 {
427         /*
428          * pad(1~3 bytes) is needed after each 802.11 payload.
429          * USB end pad(4 bytes) is needed at each USB bulk out packet end.
430          * TX frame format is :
431          * | TXINFO | TXWI | 802.11 header | L2 pad | payload | pad | USB end pad |
432          *                 |<------------- tx_pkt_len ------------->|
433          */
434
435         return roundup(entry->skb->len, 4) + 4;
436 }
437
438 /*
439  * TX control handlers
440  */
441 static bool rt2800usb_txdone_entry_check(struct queue_entry *entry, u32 reg)
442 {
443         __le32 *txwi;
444         u32 word;
445         int wcid, ack, pid;
446         int tx_wcid, tx_ack, tx_pid;
447
448         if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
449             !test_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags)) {
450                 WARNING(entry->queue->rt2x00dev,
451                         "Data pending for entry %u in queue %u\n",
452                         entry->entry_idx, entry->queue->qid);
453                 cond_resched();
454                 return false;
455         }
456
457         wcid    = rt2x00_get_field32(reg, TX_STA_FIFO_WCID);
458         ack     = rt2x00_get_field32(reg, TX_STA_FIFO_TX_ACK_REQUIRED);
459         pid     = rt2x00_get_field32(reg, TX_STA_FIFO_PID_TYPE);
460
461         /*
462          * This frames has returned with an IO error,
463          * so the status report is not intended for this
464          * frame.
465          */
466         if (test_bit(ENTRY_DATA_IO_FAILED, &entry->flags)) {
467                 rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
468                 return false;
469         }
470
471         /*
472          * Validate if this TX status report is intended for
473          * this entry by comparing the WCID/ACK/PID fields.
474          */
475         txwi = rt2800usb_get_txwi(entry);
476
477         rt2x00_desc_read(txwi, 1, &word);
478         tx_wcid = rt2x00_get_field32(word, TXWI_W1_WIRELESS_CLI_ID);
479         tx_ack  = rt2x00_get_field32(word, TXWI_W1_ACK);
480         tx_pid  = rt2x00_get_field32(word, TXWI_W1_PACKETID);
481
482         if ((wcid != tx_wcid) || (ack != tx_ack) || (pid != tx_pid)) {
483                 WARNING(entry->queue->rt2x00dev,
484                         "TX status report missed for queue %d entry %d\n",
485                 entry->queue->qid, entry->entry_idx);
486                 rt2x00lib_txdone_noinfo(entry, TXDONE_UNKNOWN);
487                 return false;
488         }
489
490         return true;
491 }
492
493 static void rt2800usb_txdone(struct rt2x00_dev *rt2x00dev)
494 {
495         struct data_queue *queue;
496         struct queue_entry *entry;
497         u32 reg;
498         u8 qid;
499
500         while (kfifo_get(&rt2x00dev->txstatus_fifo, &reg)) {
501
502                 /* TX_STA_FIFO_PID_QUEUE is a 2-bit field, thus
503                  * qid is guaranteed to be one of the TX QIDs
504                  */
505                 qid = rt2x00_get_field32(reg, TX_STA_FIFO_PID_QUEUE);
506                 queue = rt2x00queue_get_tx_queue(rt2x00dev, qid);
507                 if (unlikely(!queue)) {
508                         WARNING(rt2x00dev, "Got TX status for an unavailable "
509                                            "queue %u, dropping\n", qid);
510                         continue;
511                 }
512
513                 /*
514                  * Inside each queue, we process each entry in a chronological
515                  * order. We first check that the queue is not empty.
516                  */
517                 entry = NULL;
518                 while (!rt2x00queue_empty(queue)) {
519                         entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
520                         if (rt2800usb_txdone_entry_check(entry, reg))
521                                 break;
522                         entry = NULL;
523                 }
524
525                 if (entry)
526                         rt2800_txdone_entry(entry, reg,
527                                             rt2800usb_get_txwi(entry));
528         }
529 }
530
531 static void rt2800usb_work_txdone(struct work_struct *work)
532 {
533         struct rt2x00_dev *rt2x00dev =
534             container_of(work, struct rt2x00_dev, txdone_work);
535         struct data_queue *queue;
536         struct queue_entry *entry;
537
538         rt2800usb_txdone(rt2x00dev);
539
540         /*
541          * Process any trailing TX status reports for IO failures,
542          * we loop until we find the first non-IO error entry. This
543          * can either be a frame which is free, is being uploaded,
544          * or has completed the upload but didn't have an entry
545          * in the TX_STAT_FIFO register yet.
546          */
547         tx_queue_for_each(rt2x00dev, queue) {
548                 while (!rt2x00queue_empty(queue)) {
549                         entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
550
551                         if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
552                             !test_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags))
553                                 break;
554
555                         if (test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
556                                 rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
557                         else if (rt2x00queue_status_timeout(entry))
558                                 rt2x00lib_txdone_noinfo(entry, TXDONE_UNKNOWN);
559                         else
560                                 break;
561                 }
562         }
563
564         /*
565          * The hw may delay sending the packet after DMA complete
566          * if the medium is busy, thus the TX_STA_FIFO entry is
567          * also delayed -> use a timer to retrieve it.
568          */
569         if (rt2800usb_txstatus_pending(rt2x00dev))
570                 mod_timer(&rt2x00dev->txstatus_timer, jiffies + msecs_to_jiffies(2));
571 }
572
573 /*
574  * RX control handlers
575  */
576 static void rt2800usb_fill_rxdone(struct queue_entry *entry,
577                                   struct rxdone_entry_desc *rxdesc)
578 {
579         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
580         __le32 *rxi = (__le32 *)entry->skb->data;
581         __le32 *rxd;
582         u32 word;
583         int rx_pkt_len;
584
585         /*
586          * Copy descriptor to the skbdesc->desc buffer, making it safe from
587          * moving of frame data in rt2x00usb.
588          */
589         memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
590
591         /*
592          * RX frame format is :
593          * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
594          *          |<------------ rx_pkt_len -------------->|
595          */
596         rt2x00_desc_read(rxi, 0, &word);
597         rx_pkt_len = rt2x00_get_field32(word, RXINFO_W0_USB_DMA_RX_PKT_LEN);
598
599         /*
600          * Remove the RXINFO structure from the sbk.
601          */
602         skb_pull(entry->skb, RXINFO_DESC_SIZE);
603
604         /*
605          * FIXME: we need to check for rx_pkt_len validity
606          */
607         rxd = (__le32 *)(entry->skb->data + rx_pkt_len);
608
609         /*
610          * It is now safe to read the descriptor on all architectures.
611          */
612         rt2x00_desc_read(rxd, 0, &word);
613
614         if (rt2x00_get_field32(word, RXD_W0_CRC_ERROR))
615                 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
616
617         rxdesc->cipher_status = rt2x00_get_field32(word, RXD_W0_CIPHER_ERROR);
618
619         if (rt2x00_get_field32(word, RXD_W0_DECRYPTED)) {
620                 /*
621                  * Hardware has stripped IV/EIV data from 802.11 frame during
622                  * decryption. Unfortunately the descriptor doesn't contain
623                  * any fields with the EIV/IV data either, so they can't
624                  * be restored by rt2x00lib.
625                  */
626                 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
627
628                 /*
629                  * The hardware has already checked the Michael Mic and has
630                  * stripped it from the frame. Signal this to mac80211.
631                  */
632                 rxdesc->flags |= RX_FLAG_MMIC_STRIPPED;
633
634                 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
635                         rxdesc->flags |= RX_FLAG_DECRYPTED;
636                 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
637                         rxdesc->flags |= RX_FLAG_MMIC_ERROR;
638         }
639
640         if (rt2x00_get_field32(word, RXD_W0_MY_BSS))
641                 rxdesc->dev_flags |= RXDONE_MY_BSS;
642
643         if (rt2x00_get_field32(word, RXD_W0_L2PAD))
644                 rxdesc->dev_flags |= RXDONE_L2PAD;
645
646         /*
647          * Remove RXD descriptor from end of buffer.
648          */
649         skb_trim(entry->skb, rx_pkt_len);
650
651         /*
652          * Process the RXWI structure.
653          */
654         rt2800_process_rxwi(entry, rxdesc);
655 }
656
657 /*
658  * Device probe functions.
659  */
660 static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
661 {
662         if (rt2800_efuse_detect(rt2x00dev))
663                 rt2800_read_eeprom_efuse(rt2x00dev);
664         else
665                 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
666                                       EEPROM_SIZE);
667
668         return rt2800_validate_eeprom(rt2x00dev);
669 }
670
671 static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
672 {
673         int retval;
674
675         /*
676          * Allocate eeprom data.
677          */
678         retval = rt2800usb_validate_eeprom(rt2x00dev);
679         if (retval)
680                 return retval;
681
682         retval = rt2800_init_eeprom(rt2x00dev);
683         if (retval)
684                 return retval;
685
686         /*
687          * Initialize hw specifications.
688          */
689         retval = rt2800_probe_hw_mode(rt2x00dev);
690         if (retval)
691                 return retval;
692
693         /*
694          * This device has multiple filters for control frames
695          * and has a separate filter for PS Poll frames.
696          */
697         __set_bit(CAPABILITY_CONTROL_FILTERS, &rt2x00dev->cap_flags);
698         __set_bit(CAPABILITY_CONTROL_FILTER_PSPOLL, &rt2x00dev->cap_flags);
699
700         /*
701          * This device requires firmware.
702          */
703         __set_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags);
704         __set_bit(REQUIRE_L2PAD, &rt2x00dev->cap_flags);
705         if (!modparam_nohwcrypt)
706                 __set_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags);
707         __set_bit(CAPABILITY_LINK_TUNING, &rt2x00dev->cap_flags);
708         __set_bit(REQUIRE_HT_TX_DESC, &rt2x00dev->cap_flags);
709         __set_bit(REQUIRE_TXSTATUS_FIFO, &rt2x00dev->cap_flags);
710         __set_bit(REQUIRE_PS_AUTOWAKE, &rt2x00dev->cap_flags);
711
712         setup_timer(&rt2x00dev->txstatus_timer,
713                     rt2800usb_tx_sta_fifo_timeout,
714                     (unsigned long) rt2x00dev);
715
716         /*
717          * Set the rssi offset.
718          */
719         rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
720
721         /*
722          * Overwrite TX done handler
723          */
724         PREPARE_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
725
726         return 0;
727 }
728
729 static const struct ieee80211_ops rt2800usb_mac80211_ops = {
730         .tx                     = rt2x00mac_tx,
731         .start                  = rt2x00mac_start,
732         .stop                   = rt2x00mac_stop,
733         .add_interface          = rt2x00mac_add_interface,
734         .remove_interface       = rt2x00mac_remove_interface,
735         .config                 = rt2x00mac_config,
736         .configure_filter       = rt2x00mac_configure_filter,
737         .set_tim                = rt2x00mac_set_tim,
738         .set_key                = rt2x00mac_set_key,
739         .sw_scan_start          = rt2x00mac_sw_scan_start,
740         .sw_scan_complete       = rt2x00mac_sw_scan_complete,
741         .get_stats              = rt2x00mac_get_stats,
742         .get_tkip_seq           = rt2800_get_tkip_seq,
743         .set_rts_threshold      = rt2800_set_rts_threshold,
744         .sta_add                = rt2x00mac_sta_add,
745         .sta_remove             = rt2x00mac_sta_remove,
746         .bss_info_changed       = rt2x00mac_bss_info_changed,
747         .conf_tx                = rt2800_conf_tx,
748         .get_tsf                = rt2800_get_tsf,
749         .rfkill_poll            = rt2x00mac_rfkill_poll,
750         .ampdu_action           = rt2800_ampdu_action,
751         .flush                  = rt2x00mac_flush,
752         .get_survey             = rt2800_get_survey,
753         .get_ringparam          = rt2x00mac_get_ringparam,
754         .tx_frames_pending      = rt2x00mac_tx_frames_pending,
755 };
756
757 static const struct rt2800_ops rt2800usb_rt2800_ops = {
758         .register_read          = rt2x00usb_register_read,
759         .register_read_lock     = rt2x00usb_register_read_lock,
760         .register_write         = rt2x00usb_register_write,
761         .register_write_lock    = rt2x00usb_register_write_lock,
762         .register_multiread     = rt2x00usb_register_multiread,
763         .register_multiwrite    = rt2x00usb_register_multiwrite,
764         .regbusy_read           = rt2x00usb_regbusy_read,
765         .drv_write_firmware     = rt2800usb_write_firmware,
766         .drv_init_registers     = rt2800usb_init_registers,
767         .drv_get_txwi           = rt2800usb_get_txwi,
768 };
769
770 static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
771         .probe_hw               = rt2800usb_probe_hw,
772         .get_firmware_name      = rt2800usb_get_firmware_name,
773         .check_firmware         = rt2800_check_firmware,
774         .load_firmware          = rt2800_load_firmware,
775         .initialize             = rt2x00usb_initialize,
776         .uninitialize           = rt2x00usb_uninitialize,
777         .clear_entry            = rt2x00usb_clear_entry,
778         .set_device_state       = rt2800usb_set_device_state,
779         .rfkill_poll            = rt2800_rfkill_poll,
780         .link_stats             = rt2800_link_stats,
781         .reset_tuner            = rt2800_reset_tuner,
782         .link_tuner             = rt2800_link_tuner,
783         .gain_calibration       = rt2800_gain_calibration,
784         .watchdog               = rt2800usb_watchdog,
785         .start_queue            = rt2800usb_start_queue,
786         .kick_queue             = rt2x00usb_kick_queue,
787         .stop_queue             = rt2800usb_stop_queue,
788         .flush_queue            = rt2x00usb_flush_queue,
789         .tx_dma_done            = rt2800usb_tx_dma_done,
790         .write_tx_desc          = rt2800usb_write_tx_desc,
791         .write_tx_data          = rt2800_write_tx_data,
792         .write_beacon           = rt2800_write_beacon,
793         .clear_beacon           = rt2800_clear_beacon,
794         .get_tx_data_len        = rt2800usb_get_tx_data_len,
795         .fill_rxdone            = rt2800usb_fill_rxdone,
796         .config_shared_key      = rt2800_config_shared_key,
797         .config_pairwise_key    = rt2800_config_pairwise_key,
798         .config_filter          = rt2800_config_filter,
799         .config_intf            = rt2800_config_intf,
800         .config_erp             = rt2800_config_erp,
801         .config_ant             = rt2800_config_ant,
802         .config                 = rt2800_config,
803         .sta_add                = rt2800_sta_add,
804         .sta_remove             = rt2800_sta_remove,
805 };
806
807 static const struct data_queue_desc rt2800usb_queue_rx = {
808         .entry_num              = 128,
809         .data_size              = AGGREGATION_SIZE,
810         .desc_size              = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
811         .priv_size              = sizeof(struct queue_entry_priv_usb),
812 };
813
814 static const struct data_queue_desc rt2800usb_queue_tx = {
815         .entry_num              = 64,
816         .data_size              = AGGREGATION_SIZE,
817         .desc_size              = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
818         .priv_size              = sizeof(struct queue_entry_priv_usb),
819 };
820
821 static const struct data_queue_desc rt2800usb_queue_bcn = {
822         .entry_num              = 8,
823         .data_size              = MGMT_FRAME_SIZE,
824         .desc_size              = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
825         .priv_size              = sizeof(struct queue_entry_priv_usb),
826 };
827
828 static const struct rt2x00_ops rt2800usb_ops = {
829         .name                   = KBUILD_MODNAME,
830         .drv_data_size          = sizeof(struct rt2800_drv_data),
831         .max_sta_intf           = 1,
832         .max_ap_intf            = 8,
833         .eeprom_size            = EEPROM_SIZE,
834         .rf_size                = RF_SIZE,
835         .tx_queues              = NUM_TX_QUEUES,
836         .extra_tx_headroom      = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
837         .rx                     = &rt2800usb_queue_rx,
838         .tx                     = &rt2800usb_queue_tx,
839         .bcn                    = &rt2800usb_queue_bcn,
840         .lib                    = &rt2800usb_rt2x00_ops,
841         .drv                    = &rt2800usb_rt2800_ops,
842         .hw                     = &rt2800usb_mac80211_ops,
843 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
844         .debugfs                = &rt2800_rt2x00debug,
845 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
846 };
847
848 /*
849  * rt2800usb module information.
850  */
851 static struct usb_device_id rt2800usb_device_table[] = {
852         /* Abocom */
853         { USB_DEVICE(0x07b8, 0x2870) },
854         { USB_DEVICE(0x07b8, 0x2770) },
855         { USB_DEVICE(0x07b8, 0x3070) },
856         { USB_DEVICE(0x07b8, 0x3071) },
857         { USB_DEVICE(0x07b8, 0x3072) },
858         { USB_DEVICE(0x1482, 0x3c09) },
859         /* AirTies */
860         { USB_DEVICE(0x1eda, 0x2012) },
861         { USB_DEVICE(0x1eda, 0x2310) },
862         /* Allwin */
863         { USB_DEVICE(0x8516, 0x2070) },
864         { USB_DEVICE(0x8516, 0x2770) },
865         { USB_DEVICE(0x8516, 0x2870) },
866         { USB_DEVICE(0x8516, 0x3070) },
867         { USB_DEVICE(0x8516, 0x3071) },
868         { USB_DEVICE(0x8516, 0x3072) },
869         /* Alpha Networks */
870         { USB_DEVICE(0x14b2, 0x3c06) },
871         { USB_DEVICE(0x14b2, 0x3c07) },
872         { USB_DEVICE(0x14b2, 0x3c09) },
873         { USB_DEVICE(0x14b2, 0x3c12) },
874         { USB_DEVICE(0x14b2, 0x3c23) },
875         { USB_DEVICE(0x14b2, 0x3c25) },
876         { USB_DEVICE(0x14b2, 0x3c27) },
877         { USB_DEVICE(0x14b2, 0x3c28) },
878         { USB_DEVICE(0x14b2, 0x3c2c) },
879         /* Amit */
880         { USB_DEVICE(0x15c5, 0x0008) },
881         /* Askey */
882         { USB_DEVICE(0x1690, 0x0740) },
883         /* ASUS */
884         { USB_DEVICE(0x0b05, 0x1731) },
885         { USB_DEVICE(0x0b05, 0x1732) },
886         { USB_DEVICE(0x0b05, 0x1742) },
887         { USB_DEVICE(0x0b05, 0x1784) },
888         { USB_DEVICE(0x1761, 0x0b05) },
889         /* AzureWave */
890         { USB_DEVICE(0x13d3, 0x3247) },
891         { USB_DEVICE(0x13d3, 0x3273) },
892         { USB_DEVICE(0x13d3, 0x3305) },
893         { USB_DEVICE(0x13d3, 0x3307) },
894         { USB_DEVICE(0x13d3, 0x3321) },
895         /* Belkin */
896         { USB_DEVICE(0x050d, 0x8053) },
897         { USB_DEVICE(0x050d, 0x805c) },
898         { USB_DEVICE(0x050d, 0x815c) },
899         { USB_DEVICE(0x050d, 0x825a) },
900         { USB_DEVICE(0x050d, 0x825b) },
901         { USB_DEVICE(0x050d, 0x935a) },
902         { USB_DEVICE(0x050d, 0x935b) },
903         /* Buffalo */
904         { USB_DEVICE(0x0411, 0x00e8) },
905         { USB_DEVICE(0x0411, 0x0158) },
906         { USB_DEVICE(0x0411, 0x015d) },
907         { USB_DEVICE(0x0411, 0x016f) },
908         { USB_DEVICE(0x0411, 0x01a2) },
909         /* Corega */
910         { USB_DEVICE(0x07aa, 0x002f) },
911         { USB_DEVICE(0x07aa, 0x003c) },
912         { USB_DEVICE(0x07aa, 0x003f) },
913         { USB_DEVICE(0x18c5, 0x0012) },
914         /* D-Link */
915         { USB_DEVICE(0x07d1, 0x3c09) },
916         { USB_DEVICE(0x07d1, 0x3c0a) },
917         { USB_DEVICE(0x07d1, 0x3c0d) },
918         { USB_DEVICE(0x07d1, 0x3c0e) },
919         { USB_DEVICE(0x07d1, 0x3c0f) },
920         { USB_DEVICE(0x07d1, 0x3c11) },
921         { USB_DEVICE(0x07d1, 0x3c13) },
922         { USB_DEVICE(0x07d1, 0x3c15) },
923         { USB_DEVICE(0x07d1, 0x3c16) },
924         /* Draytek */
925         { USB_DEVICE(0x07fa, 0x7712) },
926         /* DVICO */
927         { USB_DEVICE(0x0fe9, 0xb307) },
928         /* Edimax */
929         { USB_DEVICE(0x7392, 0x7711) },
930         { USB_DEVICE(0x7392, 0x7717) },
931         { USB_DEVICE(0x7392, 0x7718) },
932         { USB_DEVICE(0x7392, 0x7722) },
933         /* Encore */
934         { USB_DEVICE(0x203d, 0x1480) },
935         { USB_DEVICE(0x203d, 0x14a9) },
936         /* EnGenius */
937         { USB_DEVICE(0x1740, 0x9701) },
938         { USB_DEVICE(0x1740, 0x9702) },
939         { USB_DEVICE(0x1740, 0x9703) },
940         { USB_DEVICE(0x1740, 0x9705) },
941         { USB_DEVICE(0x1740, 0x9706) },
942         { USB_DEVICE(0x1740, 0x9707) },
943         { USB_DEVICE(0x1740, 0x9708) },
944         { USB_DEVICE(0x1740, 0x9709) },
945         /* Gemtek */
946         { USB_DEVICE(0x15a9, 0x0012) },
947         /* Gigabyte */
948         { USB_DEVICE(0x1044, 0x800b) },
949         { USB_DEVICE(0x1044, 0x800d) },
950         /* Hawking */
951         { USB_DEVICE(0x0e66, 0x0001) },
952         { USB_DEVICE(0x0e66, 0x0003) },
953         { USB_DEVICE(0x0e66, 0x0009) },
954         { USB_DEVICE(0x0e66, 0x000b) },
955         { USB_DEVICE(0x0e66, 0x0013) },
956         { USB_DEVICE(0x0e66, 0x0017) },
957         { USB_DEVICE(0x0e66, 0x0018) },
958         /* I-O DATA */
959         { USB_DEVICE(0x04bb, 0x0945) },
960         { USB_DEVICE(0x04bb, 0x0947) },
961         { USB_DEVICE(0x04bb, 0x0948) },
962         /* Linksys */
963         { USB_DEVICE(0x13b1, 0x0031) },
964         { USB_DEVICE(0x1737, 0x0070) },
965         { USB_DEVICE(0x1737, 0x0071) },
966         { USB_DEVICE(0x1737, 0x0077) },
967         { USB_DEVICE(0x1737, 0x0078) },
968         /* Logitec */
969         { USB_DEVICE(0x0789, 0x0162) },
970         { USB_DEVICE(0x0789, 0x0163) },
971         { USB_DEVICE(0x0789, 0x0164) },
972         { USB_DEVICE(0x0789, 0x0166) },
973         /* Motorola */
974         { USB_DEVICE(0x100d, 0x9031) },
975         /* MSI */
976         { USB_DEVICE(0x0db0, 0x3820) },
977         { USB_DEVICE(0x0db0, 0x3821) },
978         { USB_DEVICE(0x0db0, 0x3822) },
979         { USB_DEVICE(0x0db0, 0x3870) },
980         { USB_DEVICE(0x0db0, 0x3871) },
981         { USB_DEVICE(0x0db0, 0x6899) },
982         { USB_DEVICE(0x0db0, 0x821a) },
983         { USB_DEVICE(0x0db0, 0x822a) },
984         { USB_DEVICE(0x0db0, 0x822b) },
985         { USB_DEVICE(0x0db0, 0x822c) },
986         { USB_DEVICE(0x0db0, 0x870a) },
987         { USB_DEVICE(0x0db0, 0x871a) },
988         { USB_DEVICE(0x0db0, 0x871b) },
989         { USB_DEVICE(0x0db0, 0x871c) },
990         { USB_DEVICE(0x0db0, 0x899a) },
991         /* Ovislink */
992         { USB_DEVICE(0x1b75, 0x3071) },
993         { USB_DEVICE(0x1b75, 0x3072) },
994         /* Para */
995         { USB_DEVICE(0x20b8, 0x8888) },
996         /* Pegatron */
997         { USB_DEVICE(0x1d4d, 0x0002) },
998         { USB_DEVICE(0x1d4d, 0x000c) },
999         { USB_DEVICE(0x1d4d, 0x000e) },
1000         { USB_DEVICE(0x1d4d, 0x0011) },
1001         /* Philips */
1002         { USB_DEVICE(0x0471, 0x200f) },
1003         /* Planex */
1004         { USB_DEVICE(0x2019, 0xab25) },
1005         { USB_DEVICE(0x2019, 0xed06) },
1006         /* Quanta */
1007         { USB_DEVICE(0x1a32, 0x0304) },
1008         /* Ralink */
1009         { USB_DEVICE(0x148f, 0x2070) },
1010         { USB_DEVICE(0x148f, 0x2770) },
1011         { USB_DEVICE(0x148f, 0x2870) },
1012         { USB_DEVICE(0x148f, 0x3070) },
1013         { USB_DEVICE(0x148f, 0x3071) },
1014         { USB_DEVICE(0x148f, 0x3072) },
1015         /* Samsung */
1016         { USB_DEVICE(0x04e8, 0x2018) },
1017         /* Siemens */
1018         { USB_DEVICE(0x129b, 0x1828) },
1019         /* Sitecom */
1020         { USB_DEVICE(0x0df6, 0x0017) },
1021         { USB_DEVICE(0x0df6, 0x002b) },
1022         { USB_DEVICE(0x0df6, 0x002c) },
1023         { USB_DEVICE(0x0df6, 0x002d) },
1024         { USB_DEVICE(0x0df6, 0x0039) },
1025         { USB_DEVICE(0x0df6, 0x003b) },
1026         { USB_DEVICE(0x0df6, 0x003d) },
1027         { USB_DEVICE(0x0df6, 0x003e) },
1028         { USB_DEVICE(0x0df6, 0x003f) },
1029         { USB_DEVICE(0x0df6, 0x0040) },
1030         { USB_DEVICE(0x0df6, 0x0042) },
1031         { USB_DEVICE(0x0df6, 0x0047) },
1032         { USB_DEVICE(0x0df6, 0x0048) },
1033         { USB_DEVICE(0x0df6, 0x0051) },
1034         { USB_DEVICE(0x0df6, 0x005f) },
1035         { USB_DEVICE(0x0df6, 0x0060) },
1036         /* SMC */
1037         { USB_DEVICE(0x083a, 0x6618) },
1038         { USB_DEVICE(0x083a, 0x7511) },
1039         { USB_DEVICE(0x083a, 0x7512) },
1040         { USB_DEVICE(0x083a, 0x7522) },
1041         { USB_DEVICE(0x083a, 0x8522) },
1042         { USB_DEVICE(0x083a, 0xa618) },
1043         { USB_DEVICE(0x083a, 0xa701) },
1044         { USB_DEVICE(0x083a, 0xa702) },
1045         { USB_DEVICE(0x083a, 0xa703) },
1046         { USB_DEVICE(0x083a, 0xb522) },
1047         /* Sparklan */
1048         { USB_DEVICE(0x15a9, 0x0006) },
1049         /* Sweex */
1050         { USB_DEVICE(0x177f, 0x0153) },
1051         { USB_DEVICE(0x177f, 0x0302) },
1052         { USB_DEVICE(0x177f, 0x0313) },
1053         /* U-Media */
1054         { USB_DEVICE(0x157e, 0x300e) },
1055         { USB_DEVICE(0x157e, 0x3013) },
1056         /* ZCOM */
1057         { USB_DEVICE(0x0cde, 0x0022) },
1058         { USB_DEVICE(0x0cde, 0x0025) },
1059         /* Zinwell */
1060         { USB_DEVICE(0x5a57, 0x0280) },
1061         { USB_DEVICE(0x5a57, 0x0282) },
1062         { USB_DEVICE(0x5a57, 0x0283) },
1063         { USB_DEVICE(0x5a57, 0x5257) },
1064         /* Zyxel */
1065         { USB_DEVICE(0x0586, 0x3416) },
1066         { USB_DEVICE(0x0586, 0x3418) },
1067         { USB_DEVICE(0x0586, 0x341e) },
1068         { USB_DEVICE(0x0586, 0x343e) },
1069 #ifdef CONFIG_RT2800USB_RT33XX
1070         /* Belkin */
1071         { USB_DEVICE(0x050d, 0x945b) },
1072         /* Ralink */
1073         { USB_DEVICE(0x148f, 0x3370) },
1074         { USB_DEVICE(0x148f, 0x8070) },
1075         /* Sitecom */
1076         { USB_DEVICE(0x0df6, 0x0050) },
1077 #endif
1078 #ifdef CONFIG_RT2800USB_RT35XX
1079         /* Allwin */
1080         { USB_DEVICE(0x8516, 0x3572) },
1081         /* Askey */
1082         { USB_DEVICE(0x1690, 0x0744) },
1083         /* Cisco */
1084         { USB_DEVICE(0x167b, 0x4001) },
1085         /* EnGenius */
1086         { USB_DEVICE(0x1740, 0x9801) },
1087         /* I-O DATA */
1088         { USB_DEVICE(0x04bb, 0x0944) },
1089         /* Linksys */
1090         { USB_DEVICE(0x13b1, 0x002f) },
1091         { USB_DEVICE(0x1737, 0x0079) },
1092         /* Ralink */
1093         { USB_DEVICE(0x148f, 0x3572) },
1094         /* Sitecom */
1095         { USB_DEVICE(0x0df6, 0x0041) },
1096         { USB_DEVICE(0x0df6, 0x0062) },
1097         /* Toshiba */
1098         { USB_DEVICE(0x0930, 0x0a07) },
1099         /* Zinwell */
1100         { USB_DEVICE(0x5a57, 0x0284) },
1101 #endif
1102 #ifdef CONFIG_RT2800USB_RT53XX
1103         /* Azurewave */
1104         { USB_DEVICE(0x13d3, 0x3329) },
1105         { USB_DEVICE(0x13d3, 0x3365) },
1106         /* Ralink */
1107         { USB_DEVICE(0x148f, 0x5370) },
1108         { USB_DEVICE(0x148f, 0x5372) },
1109 #endif
1110 #ifdef CONFIG_RT2800USB_UNKNOWN
1111         /*
1112          * Unclear what kind of devices these are (they aren't supported by the
1113          * vendor linux driver).
1114          */
1115         /* Abocom */
1116         { USB_DEVICE(0x07b8, 0x3073) },
1117         { USB_DEVICE(0x07b8, 0x3074) },
1118         /* Alpha Networks */
1119         { USB_DEVICE(0x14b2, 0x3c08) },
1120         { USB_DEVICE(0x14b2, 0x3c11) },
1121         /* Amigo */
1122         { USB_DEVICE(0x0e0b, 0x9031) },
1123         { USB_DEVICE(0x0e0b, 0x9041) },
1124         /* ASUS */
1125         { USB_DEVICE(0x0b05, 0x166a) },
1126         { USB_DEVICE(0x0b05, 0x1760) },
1127         { USB_DEVICE(0x0b05, 0x1761) },
1128         { USB_DEVICE(0x0b05, 0x1790) },
1129         { USB_DEVICE(0x0b05, 0x179d) },
1130         /* AzureWave */
1131         { USB_DEVICE(0x13d3, 0x3262) },
1132         { USB_DEVICE(0x13d3, 0x3284) },
1133         { USB_DEVICE(0x13d3, 0x3322) },
1134         /* Belkin */
1135         { USB_DEVICE(0x050d, 0x1003) },
1136         /* Buffalo */
1137         { USB_DEVICE(0x0411, 0x012e) },
1138         { USB_DEVICE(0x0411, 0x0148) },
1139         { USB_DEVICE(0x0411, 0x0150) },
1140         /* Corega */
1141         { USB_DEVICE(0x07aa, 0x0041) },
1142         { USB_DEVICE(0x07aa, 0x0042) },
1143         { USB_DEVICE(0x18c5, 0x0008) },
1144         /* D-Link */
1145         { USB_DEVICE(0x07d1, 0x3c0b) },
1146         { USB_DEVICE(0x07d1, 0x3c17) },
1147         { USB_DEVICE(0x2001, 0x3c17) },
1148         /* Edimax */
1149         { USB_DEVICE(0x7392, 0x4085) },
1150         /* Encore */
1151         { USB_DEVICE(0x203d, 0x14a1) },
1152         /* Fujitsu Stylistic 550 */
1153         { USB_DEVICE(0x1690, 0x0761) },
1154         /* Gemtek */
1155         { USB_DEVICE(0x15a9, 0x0010) },
1156         /* Gigabyte */
1157         { USB_DEVICE(0x1044, 0x800c) },
1158         /* Huawei */
1159         { USB_DEVICE(0x148f, 0xf101) },
1160         /* I-O DATA */
1161         { USB_DEVICE(0x04bb, 0x094b) },
1162         /* LevelOne */
1163         { USB_DEVICE(0x1740, 0x0605) },
1164         { USB_DEVICE(0x1740, 0x0615) },
1165         /* Logitec */
1166         { USB_DEVICE(0x0789, 0x0168) },
1167         { USB_DEVICE(0x0789, 0x0169) },
1168         /* Motorola */
1169         { USB_DEVICE(0x100d, 0x9032) },
1170         /* Pegatron */
1171         { USB_DEVICE(0x05a6, 0x0101) },
1172         { USB_DEVICE(0x1d4d, 0x0010) },
1173         /* Planex */
1174         { USB_DEVICE(0x2019, 0x5201) },
1175         { USB_DEVICE(0x2019, 0xab24) },
1176         /* Qcom */
1177         { USB_DEVICE(0x18e8, 0x6259) },
1178         /* RadioShack */
1179         { USB_DEVICE(0x08b9, 0x1197) },
1180         /* Sitecom */
1181         { USB_DEVICE(0x0df6, 0x003c) },
1182         { USB_DEVICE(0x0df6, 0x004a) },
1183         { USB_DEVICE(0x0df6, 0x004d) },
1184         { USB_DEVICE(0x0df6, 0x0053) },
1185         /* SMC */
1186         { USB_DEVICE(0x083a, 0xa512) },
1187         { USB_DEVICE(0x083a, 0xc522) },
1188         { USB_DEVICE(0x083a, 0xd522) },
1189         { USB_DEVICE(0x083a, 0xf511) },
1190         /* Zyxel */
1191         { USB_DEVICE(0x0586, 0x341a) },
1192 #endif
1193         { 0, }
1194 };
1195
1196 MODULE_AUTHOR(DRV_PROJECT);
1197 MODULE_VERSION(DRV_VERSION);
1198 MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
1199 MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
1200 MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
1201 MODULE_FIRMWARE(FIRMWARE_RT2870);
1202 MODULE_LICENSE("GPL");
1203
1204 static int rt2800usb_probe(struct usb_interface *usb_intf,
1205                            const struct usb_device_id *id)
1206 {
1207         return rt2x00usb_probe(usb_intf, &rt2800usb_ops);
1208 }
1209
1210 static struct usb_driver rt2800usb_driver = {
1211         .name           = KBUILD_MODNAME,
1212         .id_table       = rt2800usb_device_table,
1213         .probe          = rt2800usb_probe,
1214         .disconnect     = rt2x00usb_disconnect,
1215         .suspend        = rt2x00usb_suspend,
1216         .resume         = rt2x00usb_resume,
1217 };
1218
1219 module_usb_driver(rt2800usb_driver);