rt2x00: Cleanup chip handling helper functions.
[safe/jmp/linux-2.6] / drivers / net / wireless / rt2x00 / rt2800usb.c
1 /*
2         Copyright (C) 2009 Ivo van Doorn <IvDoorn@gmail.com>
3         Copyright (C) 2009 Mattias Nissler <mattias.nissler@gmx.de>
4         Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
5         Copyright (C) 2009 Xose Vazquez Perez <xose.vazquez@gmail.com>
6         Copyright (C) 2009 Axel Kollhofer <rain_maker@root-forum.org>
7         <http://rt2x00.serialmonkey.com>
8
9         This program is free software; you can redistribute it and/or modify
10         it under the terms of the GNU General Public License as published by
11         the Free Software Foundation; either version 2 of the License, or
12         (at your option) any later version.
13
14         This program is distributed in the hope that it will be useful,
15         but WITHOUT ANY WARRANTY; without even the implied warranty of
16         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17         GNU General Public License for more details.
18
19         You should have received a copy of the GNU General Public License
20         along with this program; if not, write to the
21         Free Software Foundation, Inc.,
22         59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24
25 /*
26         Module: rt2800usb
27         Abstract: rt2800usb device specific routines.
28         Supported chipsets: RT2800U.
29  */
30
31 #include <linux/crc-ccitt.h>
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 int modparam_nohwcrypt = 1;
49 module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
50 MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
51
52 /*
53  * Firmware functions
54  */
55 static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
56 {
57         return FIRMWARE_RT2870;
58 }
59
60 static bool rt2800usb_check_crc(const u8 *data, const size_t len)
61 {
62         u16 fw_crc;
63         u16 crc;
64
65         /*
66          * The last 2 bytes in the firmware array are the crc checksum itself,
67          * this means that we should never pass those 2 bytes to the crc
68          * algorithm.
69          */
70         fw_crc = (data[len - 2] << 8 | data[len - 1]);
71
72         /*
73          * Use the crc ccitt algorithm.
74          * This will return the same value as the legacy driver which
75          * used bit ordering reversion on the both the firmware bytes
76          * before input input as well as on the final output.
77          * Obviously using crc ccitt directly is much more efficient.
78          */
79         crc = crc_ccitt(~0, data, len - 2);
80
81         /*
82          * There is a small difference between the crc-itu-t + bitrev and
83          * the crc-ccitt crc calculation. In the latter method the 2 bytes
84          * will be swapped, use swab16 to convert the crc to the correct
85          * value.
86          */
87         crc = swab16(crc);
88
89         return fw_crc == crc;
90 }
91
92 static int rt2800usb_check_firmware(struct rt2x00_dev *rt2x00dev,
93                                     const u8 *data, const size_t len)
94 {
95         u16 chipset = (rt2x00_rev(rt2x00dev) >> 16) & 0xffff;
96         size_t offset = 0;
97
98         /*
99          * Firmware files:
100          * There are 2 variations of the rt2870 firmware.
101          * a) size: 4kb
102          * b) size: 8kb
103          * Note that (b) contains 2 seperate firmware blobs of 4k
104          * within the file. The first blob is the same firmware as (a),
105          * but the second blob is for the additional chipsets.
106          */
107         if (len != 4096 && len != 8192)
108                 return FW_BAD_LENGTH;
109
110         /*
111          * Check if we need the upper 4kb firmware data or not.
112          */
113         if ((len == 4096) &&
114             (chipset != 0x2860) &&
115             (chipset != 0x2872) &&
116             (chipset != 0x3070))
117                 return FW_BAD_VERSION;
118
119         /*
120          * 8kb firmware files must be checked as if it were
121          * 2 seperate firmware files.
122          */
123         while (offset < len) {
124                 if (!rt2800usb_check_crc(data + offset, 4096))
125                         return FW_BAD_CRC;
126
127                 offset += 4096;
128         }
129
130         return FW_OK;
131 }
132
133 static int rt2800usb_load_firmware(struct rt2x00_dev *rt2x00dev,
134                                    const u8 *data, const size_t len)
135 {
136         unsigned int i;
137         int status;
138         u32 reg;
139         u32 offset;
140         u32 length;
141         u16 chipset = (rt2x00_rev(rt2x00dev) >> 16) & 0xffff;
142
143         /*
144          * Check which section of the firmware we need.
145          */
146         if ((chipset == 0x2860) ||
147             (chipset == 0x2872) ||
148             (chipset == 0x3070)) {
149                 offset = 0;
150                 length = 4096;
151         } else {
152                 offset = 4096;
153                 length = 4096;
154         }
155
156         /*
157          * Wait for stable hardware.
158          */
159         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
160                 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
161                 if (reg && reg != ~0)
162                         break;
163                 msleep(1);
164         }
165
166         if (i == REGISTER_BUSY_COUNT) {
167                 ERROR(rt2x00dev, "Unstable hardware.\n");
168                 return -EBUSY;
169         }
170
171         /*
172          * Write firmware to device.
173          */
174         rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
175                                             USB_VENDOR_REQUEST_OUT,
176                                             FIRMWARE_IMAGE_BASE,
177                                             data + offset, length,
178                                             REGISTER_TIMEOUT32(length));
179
180         rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
181         rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
182
183         /*
184          * Send firmware request to device to load firmware,
185          * we need to specify a long timeout time.
186          */
187         status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
188                                              0, USB_MODE_FIRMWARE,
189                                              REGISTER_TIMEOUT_FIRMWARE);
190         if (status < 0) {
191                 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
192                 return status;
193         }
194
195         msleep(10);
196         rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
197
198         /*
199          * Send signal to firmware during boot time.
200          */
201         rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0xff, 0, 0);
202
203         if ((chipset == 0x3070) ||
204             (chipset == 0x3071) ||
205             (chipset == 0x3572)) {
206                 udelay(200);
207                 rt2800_mcu_request(rt2x00dev, MCU_CURRENT, 0, 0, 0);
208                 udelay(10);
209         }
210
211         /*
212          * Wait for device to stabilize.
213          */
214         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
215                 rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
216                 if (rt2x00_get_field32(reg, PBF_SYS_CTRL_READY))
217                         break;
218                 msleep(1);
219         }
220
221         if (i == REGISTER_BUSY_COUNT) {
222                 ERROR(rt2x00dev, "PBF system register not ready.\n");
223                 return -EBUSY;
224         }
225
226         /*
227          * Initialize firmware.
228          */
229         rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
230         rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
231         msleep(1);
232
233         return 0;
234 }
235
236 /*
237  * Device state switch handlers.
238  */
239 static void rt2800usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
240                                 enum dev_state state)
241 {
242         u32 reg;
243
244         rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
245         rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX,
246                            (state == STATE_RADIO_RX_ON) ||
247                            (state == STATE_RADIO_RX_ON_LINK));
248         rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
249 }
250
251 static int rt2800usb_wait_wpdma_ready(struct rt2x00_dev *rt2x00dev)
252 {
253         unsigned int i;
254         u32 reg;
255
256         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
257                 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
258                 if (!rt2x00_get_field32(reg, WPDMA_GLO_CFG_TX_DMA_BUSY) &&
259                     !rt2x00_get_field32(reg, WPDMA_GLO_CFG_RX_DMA_BUSY))
260                         return 0;
261
262                 msleep(1);
263         }
264
265         ERROR(rt2x00dev, "WPDMA TX/RX busy, aborting.\n");
266         return -EACCES;
267 }
268
269 static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
270 {
271         u32 reg;
272         u16 word;
273
274         /*
275          * Initialize all registers.
276          */
277         if (unlikely(rt2800usb_wait_wpdma_ready(rt2x00dev) ||
278                      rt2800_init_registers(rt2x00dev) ||
279                      rt2800_init_bbp(rt2x00dev) ||
280                      rt2800_init_rfcsr(rt2x00dev)))
281                 return -EIO;
282
283         rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
284         rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
285         rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
286
287         udelay(50);
288
289         rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
290         rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
291         rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 1);
292         rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 1);
293         rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
294
295
296         rt2800_register_read(rt2x00dev, USB_DMA_CFG, &reg);
297         rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
298         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
299         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
300         /*
301          * Total room for RX frames in kilobytes, PBF might still exceed
302          * this limit so reduce the number to prevent errors.
303          */
304         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
305                            ((RX_ENTRIES * DATA_FRAME_SIZE) / 1024) - 3);
306         rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
307         rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
308         rt2800_register_write(rt2x00dev, USB_DMA_CFG, reg);
309
310         rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
311         rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
312         rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
313         rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
314
315         /*
316          * Initialize LED control
317          */
318         rt2x00_eeprom_read(rt2x00dev, EEPROM_LED1, &word);
319         rt2800_mcu_request(rt2x00dev, MCU_LED_1, 0xff,
320                               word & 0xff, (word >> 8) & 0xff);
321
322         rt2x00_eeprom_read(rt2x00dev, EEPROM_LED2, &word);
323         rt2800_mcu_request(rt2x00dev, MCU_LED_2, 0xff,
324                               word & 0xff, (word >> 8) & 0xff);
325
326         rt2x00_eeprom_read(rt2x00dev, EEPROM_LED3, &word);
327         rt2800_mcu_request(rt2x00dev, MCU_LED_3, 0xff,
328                               word & 0xff, (word >> 8) & 0xff);
329
330         return 0;
331 }
332
333 static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
334 {
335         u32 reg;
336
337         rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
338         rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
339         rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
340         rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
341
342         rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0);
343         rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0);
344         rt2800_register_write(rt2x00dev, TX_PIN_CFG, 0);
345
346         /* Wait for DMA, ignore error */
347         rt2800usb_wait_wpdma_ready(rt2x00dev);
348
349         rt2x00usb_disable_radio(rt2x00dev);
350 }
351
352 static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
353                                enum dev_state state)
354 {
355         if (state == STATE_AWAKE)
356                 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 0);
357         else
358                 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0, 2);
359
360         return 0;
361 }
362
363 static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
364                                       enum dev_state state)
365 {
366         int retval = 0;
367
368         switch (state) {
369         case STATE_RADIO_ON:
370                 /*
371                  * Before the radio can be enabled, the device first has
372                  * to be woken up. After that it needs a bit of time
373                  * to be fully awake and then the radio can be enabled.
374                  */
375                 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
376                 msleep(1);
377                 retval = rt2800usb_enable_radio(rt2x00dev);
378                 break;
379         case STATE_RADIO_OFF:
380                 /*
381                  * After the radio has been disabled, the device should
382                  * be put to sleep for powersaving.
383                  */
384                 rt2800usb_disable_radio(rt2x00dev);
385                 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
386                 break;
387         case STATE_RADIO_RX_ON:
388         case STATE_RADIO_RX_ON_LINK:
389         case STATE_RADIO_RX_OFF:
390         case STATE_RADIO_RX_OFF_LINK:
391                 rt2800usb_toggle_rx(rt2x00dev, state);
392                 break;
393         case STATE_RADIO_IRQ_ON:
394         case STATE_RADIO_IRQ_OFF:
395                 /* No support, but no error either */
396                 break;
397         case STATE_DEEP_SLEEP:
398         case STATE_SLEEP:
399         case STATE_STANDBY:
400         case STATE_AWAKE:
401                 retval = rt2800usb_set_state(rt2x00dev, state);
402                 break;
403         default:
404                 retval = -ENOTSUPP;
405                 break;
406         }
407
408         if (unlikely(retval))
409                 ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
410                       state, retval);
411
412         return retval;
413 }
414
415 /*
416  * TX descriptor initialization
417  */
418 static void rt2800usb_write_tx_desc(struct rt2x00_dev *rt2x00dev,
419                                     struct sk_buff *skb,
420                                     struct txentry_desc *txdesc)
421 {
422         struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
423         __le32 *txi = skbdesc->desc;
424         __le32 *txwi = &txi[TXINFO_DESC_SIZE / sizeof(__le32)];
425         u32 word;
426
427         /*
428          * Initialize TX Info descriptor
429          */
430         rt2x00_desc_read(txwi, 0, &word);
431         rt2x00_set_field32(&word, TXWI_W0_FRAG,
432                            test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
433         rt2x00_set_field32(&word, TXWI_W0_MIMO_PS, 0);
434         rt2x00_set_field32(&word, TXWI_W0_CF_ACK, 0);
435         rt2x00_set_field32(&word, TXWI_W0_TS,
436                            test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
437         rt2x00_set_field32(&word, TXWI_W0_AMPDU,
438                            test_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags));
439         rt2x00_set_field32(&word, TXWI_W0_MPDU_DENSITY, txdesc->mpdu_density);
440         rt2x00_set_field32(&word, TXWI_W0_TX_OP, txdesc->ifs);
441         rt2x00_set_field32(&word, TXWI_W0_MCS, txdesc->mcs);
442         rt2x00_set_field32(&word, TXWI_W0_BW,
443                            test_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags));
444         rt2x00_set_field32(&word, TXWI_W0_SHORT_GI,
445                            test_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags));
446         rt2x00_set_field32(&word, TXWI_W0_STBC, txdesc->stbc);
447         rt2x00_set_field32(&word, TXWI_W0_PHYMODE, txdesc->rate_mode);
448         rt2x00_desc_write(txwi, 0, word);
449
450         rt2x00_desc_read(txwi, 1, &word);
451         rt2x00_set_field32(&word, TXWI_W1_ACK,
452                            test_bit(ENTRY_TXD_ACK, &txdesc->flags));
453         rt2x00_set_field32(&word, TXWI_W1_NSEQ,
454                            test_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags));
455         rt2x00_set_field32(&word, TXWI_W1_BW_WIN_SIZE, txdesc->ba_size);
456         rt2x00_set_field32(&word, TXWI_W1_WIRELESS_CLI_ID,
457                            test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags) ?
458                            txdesc->key_idx : 0xff);
459         rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT,
460                            skb->len - txdesc->l2pad);
461         rt2x00_set_field32(&word, TXWI_W1_PACKETID,
462                            skbdesc->entry->queue->qid + 1);
463         rt2x00_desc_write(txwi, 1, word);
464
465         /*
466          * Always write 0 to IV/EIV fields, hardware will insert the IV
467          * from the IVEIV register when TXINFO_W0_WIV is set to 0.
468          * When TXINFO_W0_WIV is set to 1 it will use the IV data
469          * from the descriptor. The TXWI_W1_WIRELESS_CLI_ID indicates which
470          * crypto entry in the registers should be used to encrypt the frame.
471          */
472         _rt2x00_desc_write(txwi, 2, 0 /* skbdesc->iv[0] */);
473         _rt2x00_desc_write(txwi, 3, 0 /* skbdesc->iv[1] */);
474
475         /*
476          * Initialize TX descriptor
477          */
478         rt2x00_desc_read(txi, 0, &word);
479         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
480                            skb->len + TXWI_DESC_SIZE);
481         rt2x00_set_field32(&word, TXINFO_W0_WIV,
482                            !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
483         rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
484         rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
485         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
486         rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
487                            test_bit(ENTRY_TXD_BURST, &txdesc->flags));
488         rt2x00_desc_write(txi, 0, word);
489 }
490
491 /*
492  * TX data initialization
493  */
494 static void rt2800usb_write_beacon(struct queue_entry *entry)
495 {
496         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
497         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
498         unsigned int beacon_base;
499         u32 reg;
500
501         /*
502          * Add the descriptor in front of the skb.
503          */
504         skb_push(entry->skb, entry->queue->desc_size);
505         memcpy(entry->skb->data, skbdesc->desc, skbdesc->desc_len);
506         skbdesc->desc = entry->skb->data;
507
508         /*
509          * Disable beaconing while we are reloading the beacon data,
510          * otherwise we might be sending out invalid data.
511          */
512         rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
513         rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
514         rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
515
516         /*
517          * Write entire beacon with descriptor to register.
518          */
519         beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
520         rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
521                                             USB_VENDOR_REQUEST_OUT, beacon_base,
522                                             entry->skb->data, entry->skb->len,
523                                             REGISTER_TIMEOUT32(entry->skb->len));
524
525         /*
526          * Clean up the beacon skb.
527          */
528         dev_kfree_skb(entry->skb);
529         entry->skb = NULL;
530 }
531
532 static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
533 {
534         int length;
535
536         /*
537          * The length _must_ include 4 bytes padding,
538          * it should always be multiple of 4,
539          * but it must _not_ be a multiple of the USB packet size.
540          */
541         length = roundup(entry->skb->len + 4, 4);
542         length += (4 * !(length % entry->queue->usb_maxpacket));
543
544         return length;
545 }
546
547 static void rt2800usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
548                                     const enum data_queue_qid queue)
549 {
550         u32 reg;
551
552         if (queue != QID_BEACON) {
553                 rt2x00usb_kick_tx_queue(rt2x00dev, queue);
554                 return;
555         }
556
557         rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
558         if (!rt2x00_get_field32(reg, BCN_TIME_CFG_BEACON_GEN)) {
559                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 1);
560                 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 1);
561                 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
562                 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
563         }
564 }
565
566 /*
567  * RX control handlers
568  */
569 static void rt2800usb_fill_rxdone(struct queue_entry *entry,
570                                   struct rxdone_entry_desc *rxdesc)
571 {
572         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
573         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
574         __le32 *rxi = (__le32 *)entry->skb->data;
575         __le32 *rxwi;
576         __le32 *rxd;
577         u32 rxi0;
578         u32 rxwi0;
579         u32 rxwi1;
580         u32 rxwi2;
581         u32 rxwi3;
582         u32 rxd0;
583         int rx_pkt_len;
584
585         /*
586          * RX frame format is :
587          * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
588          *          |<------------ rx_pkt_len -------------->|
589          */
590         rt2x00_desc_read(rxi, 0, &rxi0);
591         rx_pkt_len = rt2x00_get_field32(rxi0, RXINFO_W0_USB_DMA_RX_PKT_LEN);
592
593         rxwi = (__le32 *)(entry->skb->data + RXINFO_DESC_SIZE);
594
595         /*
596          * FIXME : we need to check for rx_pkt_len validity
597          */
598         rxd = (__le32 *)(entry->skb->data + RXINFO_DESC_SIZE + rx_pkt_len);
599
600         /*
601          * Copy descriptor to the skbdesc->desc buffer, making it safe from
602          * moving of frame data in rt2x00usb.
603          */
604         memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
605
606         /*
607          * It is now safe to read the descriptor on all architectures.
608          */
609         rt2x00_desc_read(rxwi, 0, &rxwi0);
610         rt2x00_desc_read(rxwi, 1, &rxwi1);
611         rt2x00_desc_read(rxwi, 2, &rxwi2);
612         rt2x00_desc_read(rxwi, 3, &rxwi3);
613         rt2x00_desc_read(rxd, 0, &rxd0);
614
615         if (rt2x00_get_field32(rxd0, RXD_W0_CRC_ERROR))
616                 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
617
618         if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) {
619                 rxdesc->cipher = rt2x00_get_field32(rxwi0, RXWI_W0_UDF);
620                 rxdesc->cipher_status =
621                     rt2x00_get_field32(rxd0, RXD_W0_CIPHER_ERROR);
622         }
623
624         if (rt2x00_get_field32(rxd0, RXD_W0_DECRYPTED)) {
625                 /*
626                  * Hardware has stripped IV/EIV data from 802.11 frame during
627                  * decryption. Unfortunately the descriptor doesn't contain
628                  * any fields with the EIV/IV data either, so they can't
629                  * be restored by rt2x00lib.
630                  */
631                 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
632
633                 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
634                         rxdesc->flags |= RX_FLAG_DECRYPTED;
635                 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
636                         rxdesc->flags |= RX_FLAG_MMIC_ERROR;
637         }
638
639         if (rt2x00_get_field32(rxd0, RXD_W0_MY_BSS))
640                 rxdesc->dev_flags |= RXDONE_MY_BSS;
641
642         if (rt2x00_get_field32(rxd0, RXD_W0_L2PAD))
643                 rxdesc->dev_flags |= RXDONE_L2PAD;
644
645         if (rt2x00_get_field32(rxwi1, RXWI_W1_SHORT_GI))
646                 rxdesc->flags |= RX_FLAG_SHORT_GI;
647
648         if (rt2x00_get_field32(rxwi1, RXWI_W1_BW))
649                 rxdesc->flags |= RX_FLAG_40MHZ;
650
651         /*
652          * Detect RX rate, always use MCS as signal type.
653          */
654         rxdesc->dev_flags |= RXDONE_SIGNAL_MCS;
655         rxdesc->rate_mode = rt2x00_get_field32(rxwi1, RXWI_W1_PHYMODE);
656         rxdesc->signal = rt2x00_get_field32(rxwi1, RXWI_W1_MCS);
657
658         /*
659          * Mask of 0x8 bit to remove the short preamble flag.
660          */
661         if (rxdesc->rate_mode == RATE_MODE_CCK)
662                 rxdesc->signal &= ~0x8;
663
664         rxdesc->rssi =
665             (rt2x00_get_field32(rxwi2, RXWI_W2_RSSI0) +
666              rt2x00_get_field32(rxwi2, RXWI_W2_RSSI1)) / 2;
667
668         rxdesc->noise =
669             (rt2x00_get_field32(rxwi3, RXWI_W3_SNR0) +
670              rt2x00_get_field32(rxwi3, RXWI_W3_SNR1)) / 2;
671
672         rxdesc->size = rt2x00_get_field32(rxwi0, RXWI_W0_MPDU_TOTAL_BYTE_COUNT);
673
674         /*
675          * Remove RXWI descriptor from start of buffer.
676          */
677         skb_pull(entry->skb, skbdesc->desc_len);
678 }
679
680 /*
681  * Device probe functions.
682  */
683 static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
684 {
685         if (rt2800_efuse_detect(rt2x00dev))
686                 rt2800_read_eeprom_efuse(rt2x00dev);
687         else
688                 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
689                                       EEPROM_SIZE);
690
691         return rt2800_validate_eeprom(rt2x00dev);
692 }
693
694 static const struct rt2800_ops rt2800usb_rt2800_ops = {
695         .register_read          = rt2x00usb_register_read,
696         .register_read_lock     = rt2x00usb_register_read_lock,
697         .register_write         = rt2x00usb_register_write,
698         .register_write_lock    = rt2x00usb_register_write_lock,
699
700         .register_multiread     = rt2x00usb_register_multiread,
701         .register_multiwrite    = rt2x00usb_register_multiwrite,
702
703         .regbusy_read           = rt2x00usb_regbusy_read,
704 };
705
706 static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
707 {
708         int retval;
709
710         rt2x00dev->priv = (void *)&rt2800usb_rt2800_ops;
711
712         /*
713          * Allocate eeprom data.
714          */
715         retval = rt2800usb_validate_eeprom(rt2x00dev);
716         if (retval)
717                 return retval;
718
719         retval = rt2800_init_eeprom(rt2x00dev);
720         if (retval)
721                 return retval;
722
723         /*
724          * Initialize hw specifications.
725          */
726         retval = rt2800_probe_hw_mode(rt2x00dev);
727         if (retval)
728                 return retval;
729
730         /*
731          * This device has multiple filters for control frames
732          * and has a separate filter for PS Poll frames.
733          */
734         __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags);
735         __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags);
736
737         /*
738          * This device requires firmware.
739          */
740         __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
741         __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
742         if (!modparam_nohwcrypt)
743                 __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
744
745         /*
746          * Set the rssi offset.
747          */
748         rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
749
750         return 0;
751 }
752
753 static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
754         .probe_hw               = rt2800usb_probe_hw,
755         .get_firmware_name      = rt2800usb_get_firmware_name,
756         .check_firmware         = rt2800usb_check_firmware,
757         .load_firmware          = rt2800usb_load_firmware,
758         .initialize             = rt2x00usb_initialize,
759         .uninitialize           = rt2x00usb_uninitialize,
760         .clear_entry            = rt2x00usb_clear_entry,
761         .set_device_state       = rt2800usb_set_device_state,
762         .rfkill_poll            = rt2800_rfkill_poll,
763         .link_stats             = rt2800_link_stats,
764         .reset_tuner            = rt2800_reset_tuner,
765         .link_tuner             = rt2800_link_tuner,
766         .write_tx_desc          = rt2800usb_write_tx_desc,
767         .write_tx_data          = rt2x00usb_write_tx_data,
768         .write_beacon           = rt2800usb_write_beacon,
769         .get_tx_data_len        = rt2800usb_get_tx_data_len,
770         .kick_tx_queue          = rt2800usb_kick_tx_queue,
771         .kill_tx_queue          = rt2x00usb_kill_tx_queue,
772         .fill_rxdone            = rt2800usb_fill_rxdone,
773         .config_shared_key      = rt2800_config_shared_key,
774         .config_pairwise_key    = rt2800_config_pairwise_key,
775         .config_filter          = rt2800_config_filter,
776         .config_intf            = rt2800_config_intf,
777         .config_erp             = rt2800_config_erp,
778         .config_ant             = rt2800_config_ant,
779         .config                 = rt2800_config,
780 };
781
782 static const struct data_queue_desc rt2800usb_queue_rx = {
783         .entry_num              = RX_ENTRIES,
784         .data_size              = AGGREGATION_SIZE,
785         .desc_size              = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
786         .priv_size              = sizeof(struct queue_entry_priv_usb),
787 };
788
789 static const struct data_queue_desc rt2800usb_queue_tx = {
790         .entry_num              = TX_ENTRIES,
791         .data_size              = AGGREGATION_SIZE,
792         .desc_size              = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
793         .priv_size              = sizeof(struct queue_entry_priv_usb),
794 };
795
796 static const struct data_queue_desc rt2800usb_queue_bcn = {
797         .entry_num              = 8 * BEACON_ENTRIES,
798         .data_size              = MGMT_FRAME_SIZE,
799         .desc_size              = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
800         .priv_size              = sizeof(struct queue_entry_priv_usb),
801 };
802
803 static const struct rt2x00_ops rt2800usb_ops = {
804         .name                   = KBUILD_MODNAME,
805         .max_sta_intf           = 1,
806         .max_ap_intf            = 8,
807         .eeprom_size            = EEPROM_SIZE,
808         .rf_size                = RF_SIZE,
809         .tx_queues              = NUM_TX_QUEUES,
810         .extra_tx_headroom      = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
811         .rx                     = &rt2800usb_queue_rx,
812         .tx                     = &rt2800usb_queue_tx,
813         .bcn                    = &rt2800usb_queue_bcn,
814         .lib                    = &rt2800usb_rt2x00_ops,
815         .hw                     = &rt2800_mac80211_ops,
816 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
817         .debugfs                = &rt2800_rt2x00debug,
818 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
819 };
820
821 /*
822  * rt2800usb module information.
823  */
824 static struct usb_device_id rt2800usb_device_table[] = {
825         /* Abocom */
826         { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
827         { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
828         { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
829         { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
830         { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
831         { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
832         /* AirTies */
833         { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops) },
834         /* Amigo */
835         { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
836         { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops) },
837         /* Amit */
838         { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
839         /* Askey */
840         { USB_DEVICE(0x1690, 0x0740), USB_DEVICE_DATA(&rt2800usb_ops) },
841         { USB_DEVICE(0x1690, 0x0744), USB_DEVICE_DATA(&rt2800usb_ops) },
842         { USB_DEVICE(0x0930, 0x0a07), USB_DEVICE_DATA(&rt2800usb_ops) },
843         /* ASUS */
844         { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops) },
845         { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops) },
846         { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops) },
847         { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops) },
848         { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops) },
849         { USB_DEVICE(0x0b05, 0x1784), USB_DEVICE_DATA(&rt2800usb_ops) },
850         /* AzureWave */
851         { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops) },
852         { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops) },
853         { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops) },
854         { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops) },
855         { USB_DEVICE(0x13d3, 0x3305), USB_DEVICE_DATA(&rt2800usb_ops) },
856         /* Belkin */
857         { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops) },
858         { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops) },
859         { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops) },
860         { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops) },
861         /* Buffalo */
862         { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops) },
863         { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops) },
864         /* Cisco */
865         { USB_DEVICE(0x167b, 0x4001), USB_DEVICE_DATA(&rt2800usb_ops) },
866         /* Conceptronic */
867         { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops) },
868         { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops) },
869         { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops) },
870         { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
871         { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
872         { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops) },
873         { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops) },
874         { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops) },
875         { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops) },
876         { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops) },
877         /* Corega */
878         { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
879         { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
880         { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
881         { USB_DEVICE(0x07aa, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
882         { USB_DEVICE(0x07aa, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
883         { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
884         { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
885         /* D-Link */
886         { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
887         { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops) },
888         { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops) },
889         { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops) },
890         { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops) },
891         { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops) },
892         { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
893         { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops) },
894         { USB_DEVICE(0x07d1, 0x3c15), USB_DEVICE_DATA(&rt2800usb_ops) },
895         /* Edimax */
896         { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops) },
897         { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops) },
898         { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops) },
899         /* Encore */
900         { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops) },
901         { USB_DEVICE(0x203d, 0x14a1), USB_DEVICE_DATA(&rt2800usb_ops) },
902         { USB_DEVICE(0x203d, 0x14a9), USB_DEVICE_DATA(&rt2800usb_ops) },
903         /* EnGenius */
904         { USB_DEVICE(0X1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops) },
905         { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops) },
906         { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops) },
907         { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops) },
908         { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops) },
909         { USB_DEVICE(0x1740, 0x9707), USB_DEVICE_DATA(&rt2800usb_ops) },
910         { USB_DEVICE(0x1740, 0x9708), USB_DEVICE_DATA(&rt2800usb_ops) },
911         { USB_DEVICE(0x1740, 0x9709), USB_DEVICE_DATA(&rt2800usb_ops) },
912         { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops) },
913         /* Gemtek */
914         { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
915         /* Gigabyte */
916         { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops) },
917         { USB_DEVICE(0x1044, 0x800c), USB_DEVICE_DATA(&rt2800usb_ops) },
918         { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops) },
919         /* Hawking */
920         { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops) },
921         { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops) },
922         { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops) },
923         { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops) },
924         /* I-O DATA */
925         { USB_DEVICE(0x04bb, 0x0944), USB_DEVICE_DATA(&rt2800usb_ops) },
926         { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops) },
927         { USB_DEVICE(0x04bb, 0x0947), USB_DEVICE_DATA(&rt2800usb_ops) },
928         { USB_DEVICE(0x04bb, 0x0948), USB_DEVICE_DATA(&rt2800usb_ops) },
929         /* LevelOne */
930         { USB_DEVICE(0x1740, 0x0605), USB_DEVICE_DATA(&rt2800usb_ops) },
931         { USB_DEVICE(0x1740, 0x0615), USB_DEVICE_DATA(&rt2800usb_ops) },
932         /* Linksys */
933         { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops) },
934         { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops) },
935         { USB_DEVICE(0x1737, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops) },
936         /* Logitec */
937         { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops) },
938         { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops) },
939         { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops) },
940         /* Motorola */
941         { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
942         { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops) },
943         /* MSI */
944         { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops) },
945         { USB_DEVICE(0x0db0, 0x3821), USB_DEVICE_DATA(&rt2800usb_ops) },
946         { USB_DEVICE(0x0db0, 0x3870), USB_DEVICE_DATA(&rt2800usb_ops) },
947         { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops) },
948         { USB_DEVICE(0x0db0, 0x821a), USB_DEVICE_DATA(&rt2800usb_ops) },
949         { USB_DEVICE(0x0db0, 0x870a), USB_DEVICE_DATA(&rt2800usb_ops) },
950         { USB_DEVICE(0x0db0, 0x899a), USB_DEVICE_DATA(&rt2800usb_ops) },
951         /* Ovislink */
952         { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
953         /* Para */
954         { USB_DEVICE(0x20b8, 0x8888), USB_DEVICE_DATA(&rt2800usb_ops) },
955         /* Pegatron */
956         { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops) },
957         { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops) },
958         { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops) },
959         /* Philips */
960         { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops) },
961         /* Planex */
962         { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops) },
963         { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops) },
964         { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops) },
965         /* Qcom */
966         { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops) },
967         /* Quanta */
968         { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops) },
969         /* Ralink */
970         { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
971         { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
972         { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
973         { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
974         { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
975         { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
976         { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
977         /* Samsung */
978         { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops) },
979         /* Siemens */
980         { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops) },
981         /* Sitecom */
982         { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
983         { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops) },
984         { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops) },
985         { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops) },
986         { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops) },
987         { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops) },
988         { USB_DEVICE(0x0df6, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
989         { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops) },
990         { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops) },
991         { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
992         { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops) },
993         { USB_DEVICE(0x0df6, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
994         { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
995         { USB_DEVICE(0x0df6, 0x0047), USB_DEVICE_DATA(&rt2800usb_ops) },
996         { USB_DEVICE(0x0df6, 0x0048), USB_DEVICE_DATA(&rt2800usb_ops) },
997         { USB_DEVICE(0x0df6, 0x004a), USB_DEVICE_DATA(&rt2800usb_ops) },
998         { USB_DEVICE(0x0df6, 0x004d), USB_DEVICE_DATA(&rt2800usb_ops) },
999         /* SMC */
1000         { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops) },
1001         { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops) },
1002         { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops) },
1003         { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops) },
1004         { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops) },
1005         { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops) },
1006         { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops) },
1007         { USB_DEVICE(0x083a, 0xa701), USB_DEVICE_DATA(&rt2800usb_ops) },
1008         { USB_DEVICE(0x083a, 0xa702), USB_DEVICE_DATA(&rt2800usb_ops) },
1009         { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops) },
1010         { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops) },
1011         /* Sparklan */
1012         { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops) },
1013         /* Sweex */
1014         { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops) },
1015         { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops) },
1016         { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops) },
1017         /* U-Media*/
1018         { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops) },
1019         /* ZCOM */
1020         { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops) },
1021         { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops) },
1022         /* Zinwell */
1023         { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops) },
1024         { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops) },
1025         { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops) },
1026         { USB_DEVICE(0x5a57, 0x0284), USB_DEVICE_DATA(&rt2800usb_ops) },
1027         { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops) },
1028         /* Zyxel */
1029         { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops) },
1030         { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops) },
1031         { 0, }
1032 };
1033
1034 MODULE_AUTHOR(DRV_PROJECT);
1035 MODULE_VERSION(DRV_VERSION);
1036 MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
1037 MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
1038 MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
1039 MODULE_FIRMWARE(FIRMWARE_RT2870);
1040 MODULE_LICENSE("GPL");
1041
1042 static struct usb_driver rt2800usb_driver = {
1043         .name           = KBUILD_MODNAME,
1044         .id_table       = rt2800usb_device_table,
1045         .probe          = rt2x00usb_probe,
1046         .disconnect     = rt2x00usb_disconnect,
1047         .suspend        = rt2x00usb_suspend,
1048         .resume         = rt2x00usb_resume,
1049 };
1050
1051 static int __init rt2800usb_init(void)
1052 {
1053         return usb_register(&rt2800usb_driver);
1054 }
1055
1056 static void __exit rt2800usb_exit(void)
1057 {
1058         usb_deregister(&rt2800usb_driver);
1059 }
1060
1061 module_init(rt2800usb_init);
1062 module_exit(rt2800usb_exit);