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>
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.
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.
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.
27 Abstract: rt2800usb device specific routines.
28 Supported chipsets: RT2800U.
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>
40 #include "rt2x00usb.h"
41 #include "rt2800lib.h"
43 #include "rt2800usb.h"
46 * Allow hardware encryption to be disabled.
48 static int modparam_nohwcrypt
= 1;
49 module_param_named(nohwcrypt
, modparam_nohwcrypt
, bool, S_IRUGO
);
50 MODULE_PARM_DESC(nohwcrypt
, "Disable hardware encryption.");
55 static char *rt2800usb_get_firmware_name(struct rt2x00_dev
*rt2x00dev
)
57 return FIRMWARE_RT2870
;
60 static bool rt2800usb_check_crc(const u8
*data
, const size_t len
)
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
70 fw_crc
= (data
[len
- 2] << 8 | data
[len
- 1]);
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.
79 crc
= crc_ccitt(~0, data
, len
- 2);
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
92 static int rt2800usb_check_firmware(struct rt2x00_dev
*rt2x00dev
,
93 const u8
*data
, const size_t len
)
99 * There are 2 variations of the rt2870 firmware.
102 * Note that (b) contains 2 separate firmware blobs of 4k
103 * within the file. The first blob is the same firmware as (a),
104 * but the second blob is for the additional chipsets.
106 if (len
!= 4096 && len
!= 8192)
107 return FW_BAD_LENGTH
;
110 * Check if we need the upper 4kb firmware data or not.
113 !rt2x00_rt(rt2x00dev
, RT2860
) &&
114 !rt2x00_rt(rt2x00dev
, RT2872
) &&
115 !rt2x00_rt(rt2x00dev
, RT3070
))
116 return FW_BAD_VERSION
;
119 * 8kb firmware files must be checked as if it were
120 * 2 separate firmware files.
122 while (offset
< len
) {
123 if (!rt2800usb_check_crc(data
+ offset
, 4096))
132 static int rt2800usb_load_firmware(struct rt2x00_dev
*rt2x00dev
,
133 const u8
*data
, const size_t len
)
142 * Check which section of the firmware we need.
144 if (rt2x00_rt(rt2x00dev
, RT2860
) ||
145 rt2x00_rt(rt2x00dev
, RT2872
) ||
146 rt2x00_rt(rt2x00dev
, RT3070
)) {
155 * Wait for stable hardware.
157 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
158 rt2800_register_read(rt2x00dev
, MAC_CSR0
, ®
);
159 if (reg
&& reg
!= ~0)
164 if (i
== REGISTER_BUSY_COUNT
) {
165 ERROR(rt2x00dev
, "Unstable hardware.\n");
170 * Write firmware to device.
172 rt2x00usb_vendor_request_large_buff(rt2x00dev
, USB_MULTI_WRITE
,
173 USB_VENDOR_REQUEST_OUT
,
175 data
+ offset
, length
,
176 REGISTER_TIMEOUT32(length
));
178 rt2800_register_write(rt2x00dev
, H2M_MAILBOX_CID
, ~0);
179 rt2800_register_write(rt2x00dev
, H2M_MAILBOX_STATUS
, ~0);
182 * Send firmware request to device to load firmware,
183 * we need to specify a long timeout time.
185 status
= rt2x00usb_vendor_request_sw(rt2x00dev
, USB_DEVICE_MODE
,
186 0, USB_MODE_FIRMWARE
,
187 REGISTER_TIMEOUT_FIRMWARE
);
189 ERROR(rt2x00dev
, "Failed to write Firmware to device.\n");
194 rt2800_register_write(rt2x00dev
, H2M_MAILBOX_CSR
, 0);
197 * Send signal to firmware during boot time.
199 rt2800_mcu_request(rt2x00dev
, MCU_BOOT_SIGNAL
, 0xff, 0, 0);
201 if (rt2x00_rt(rt2x00dev
, RT3070
) ||
202 rt2x00_rt(rt2x00dev
, RT3071
) ||
203 rt2x00_rt(rt2x00dev
, RT3572
)) {
205 rt2800_mcu_request(rt2x00dev
, MCU_CURRENT
, 0, 0, 0);
210 * Wait for device to stabilize.
212 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
213 rt2800_register_read(rt2x00dev
, PBF_SYS_CTRL
, ®
);
214 if (rt2x00_get_field32(reg
, PBF_SYS_CTRL_READY
))
219 if (i
== REGISTER_BUSY_COUNT
) {
220 ERROR(rt2x00dev
, "PBF system register not ready.\n");
225 * Initialize firmware.
227 rt2800_register_write(rt2x00dev
, H2M_BBP_AGENT
, 0);
228 rt2800_register_write(rt2x00dev
, H2M_MAILBOX_CSR
, 0);
235 * Device state switch handlers.
237 static void rt2800usb_toggle_rx(struct rt2x00_dev
*rt2x00dev
,
238 enum dev_state state
)
242 rt2800_register_read(rt2x00dev
, MAC_SYS_CTRL
, ®
);
243 rt2x00_set_field32(®
, MAC_SYS_CTRL_ENABLE_RX
,
244 (state
== STATE_RADIO_RX_ON
) ||
245 (state
== STATE_RADIO_RX_ON_LINK
));
246 rt2800_register_write(rt2x00dev
, MAC_SYS_CTRL
, reg
);
249 static int rt2800usb_enable_radio(struct rt2x00_dev
*rt2x00dev
)
255 * Initialize all registers.
257 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev
) ||
258 rt2800_init_registers(rt2x00dev
) ||
259 rt2800_init_bbp(rt2x00dev
) ||
260 rt2800_init_rfcsr(rt2x00dev
)))
263 rt2800_register_read(rt2x00dev
, MAC_SYS_CTRL
, ®
);
264 rt2x00_set_field32(®
, MAC_SYS_CTRL_ENABLE_TX
, 1);
265 rt2800_register_write(rt2x00dev
, MAC_SYS_CTRL
, reg
);
269 rt2800_register_read(rt2x00dev
, WPDMA_GLO_CFG
, ®
);
270 rt2x00_set_field32(®
, WPDMA_GLO_CFG_TX_WRITEBACK_DONE
, 1);
271 rt2x00_set_field32(®
, WPDMA_GLO_CFG_ENABLE_RX_DMA
, 1);
272 rt2x00_set_field32(®
, WPDMA_GLO_CFG_ENABLE_TX_DMA
, 1);
273 rt2800_register_write(rt2x00dev
, WPDMA_GLO_CFG
, reg
);
276 rt2800_register_read(rt2x00dev
, USB_DMA_CFG
, ®
);
277 rt2x00_set_field32(®
, USB_DMA_CFG_PHY_CLEAR
, 0);
278 rt2x00_set_field32(®
, USB_DMA_CFG_RX_BULK_AGG_EN
, 0);
279 rt2x00_set_field32(®
, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT
, 128);
281 * Total room for RX frames in kilobytes, PBF might still exceed
282 * this limit so reduce the number to prevent errors.
284 rt2x00_set_field32(®
, USB_DMA_CFG_RX_BULK_AGG_LIMIT
,
285 ((RX_ENTRIES
* DATA_FRAME_SIZE
) / 1024) - 3);
286 rt2x00_set_field32(®
, USB_DMA_CFG_RX_BULK_EN
, 1);
287 rt2x00_set_field32(®
, USB_DMA_CFG_TX_BULK_EN
, 1);
288 rt2800_register_write(rt2x00dev
, USB_DMA_CFG
, reg
);
290 rt2800_register_read(rt2x00dev
, MAC_SYS_CTRL
, ®
);
291 rt2x00_set_field32(®
, MAC_SYS_CTRL_ENABLE_TX
, 1);
292 rt2x00_set_field32(®
, MAC_SYS_CTRL_ENABLE_RX
, 1);
293 rt2800_register_write(rt2x00dev
, MAC_SYS_CTRL
, reg
);
296 * Initialize LED control
298 rt2x00_eeprom_read(rt2x00dev
, EEPROM_LED1
, &word
);
299 rt2800_mcu_request(rt2x00dev
, MCU_LED_1
, 0xff,
300 word
& 0xff, (word
>> 8) & 0xff);
302 rt2x00_eeprom_read(rt2x00dev
, EEPROM_LED2
, &word
);
303 rt2800_mcu_request(rt2x00dev
, MCU_LED_2
, 0xff,
304 word
& 0xff, (word
>> 8) & 0xff);
306 rt2x00_eeprom_read(rt2x00dev
, EEPROM_LED3
, &word
);
307 rt2800_mcu_request(rt2x00dev
, MCU_LED_3
, 0xff,
308 word
& 0xff, (word
>> 8) & 0xff);
313 static void rt2800usb_disable_radio(struct rt2x00_dev
*rt2x00dev
)
317 rt2800_register_read(rt2x00dev
, WPDMA_GLO_CFG
, ®
);
318 rt2x00_set_field32(®
, WPDMA_GLO_CFG_ENABLE_TX_DMA
, 0);
319 rt2x00_set_field32(®
, WPDMA_GLO_CFG_ENABLE_RX_DMA
, 0);
320 rt2800_register_write(rt2x00dev
, WPDMA_GLO_CFG
, reg
);
322 rt2800_register_write(rt2x00dev
, MAC_SYS_CTRL
, 0);
323 rt2800_register_write(rt2x00dev
, PWR_PIN_CFG
, 0);
324 rt2800_register_write(rt2x00dev
, TX_PIN_CFG
, 0);
326 /* Wait for DMA, ignore error */
327 rt2800_wait_wpdma_ready(rt2x00dev
);
329 rt2x00usb_disable_radio(rt2x00dev
);
332 static int rt2800usb_set_state(struct rt2x00_dev
*rt2x00dev
,
333 enum dev_state state
)
335 if (state
== STATE_AWAKE
)
336 rt2800_mcu_request(rt2x00dev
, MCU_WAKEUP
, 0xff, 0, 0);
338 rt2800_mcu_request(rt2x00dev
, MCU_SLEEP
, 0xff, 0, 2);
343 static int rt2800usb_set_device_state(struct rt2x00_dev
*rt2x00dev
,
344 enum dev_state state
)
351 * Before the radio can be enabled, the device first has
352 * to be woken up. After that it needs a bit of time
353 * to be fully awake and then the radio can be enabled.
355 rt2800usb_set_state(rt2x00dev
, STATE_AWAKE
);
357 retval
= rt2800usb_enable_radio(rt2x00dev
);
359 case STATE_RADIO_OFF
:
361 * After the radio has been disabled, the device should
362 * be put to sleep for powersaving.
364 rt2800usb_disable_radio(rt2x00dev
);
365 rt2800usb_set_state(rt2x00dev
, STATE_SLEEP
);
367 case STATE_RADIO_RX_ON
:
368 case STATE_RADIO_RX_ON_LINK
:
369 case STATE_RADIO_RX_OFF
:
370 case STATE_RADIO_RX_OFF_LINK
:
371 rt2800usb_toggle_rx(rt2x00dev
, state
);
373 case STATE_RADIO_IRQ_ON
:
374 case STATE_RADIO_IRQ_OFF
:
375 /* No support, but no error either */
377 case STATE_DEEP_SLEEP
:
381 retval
= rt2800usb_set_state(rt2x00dev
, state
);
388 if (unlikely(retval
))
389 ERROR(rt2x00dev
, "Device failed to enter state %d (%d).\n",
396 * TX descriptor initialization
398 static void rt2800usb_write_tx_desc(struct rt2x00_dev
*rt2x00dev
,
400 struct txentry_desc
*txdesc
)
402 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(skb
);
403 __le32
*txi
= skbdesc
->desc
;
404 __le32
*txwi
= &txi
[TXINFO_DESC_SIZE
/ sizeof(__le32
)];
408 * Initialize TX Info descriptor
410 rt2x00_desc_read(txwi
, 0, &word
);
411 rt2x00_set_field32(&word
, TXWI_W0_FRAG
,
412 test_bit(ENTRY_TXD_MORE_FRAG
, &txdesc
->flags
));
413 rt2x00_set_field32(&word
, TXWI_W0_MIMO_PS
, 0);
414 rt2x00_set_field32(&word
, TXWI_W0_CF_ACK
, 0);
415 rt2x00_set_field32(&word
, TXWI_W0_TS
,
416 test_bit(ENTRY_TXD_REQ_TIMESTAMP
, &txdesc
->flags
));
417 rt2x00_set_field32(&word
, TXWI_W0_AMPDU
,
418 test_bit(ENTRY_TXD_HT_AMPDU
, &txdesc
->flags
));
419 rt2x00_set_field32(&word
, TXWI_W0_MPDU_DENSITY
, txdesc
->mpdu_density
);
420 rt2x00_set_field32(&word
, TXWI_W0_TX_OP
, txdesc
->ifs
);
421 rt2x00_set_field32(&word
, TXWI_W0_MCS
, txdesc
->mcs
);
422 rt2x00_set_field32(&word
, TXWI_W0_BW
,
423 test_bit(ENTRY_TXD_HT_BW_40
, &txdesc
->flags
));
424 rt2x00_set_field32(&word
, TXWI_W0_SHORT_GI
,
425 test_bit(ENTRY_TXD_HT_SHORT_GI
, &txdesc
->flags
));
426 rt2x00_set_field32(&word
, TXWI_W0_STBC
, txdesc
->stbc
);
427 rt2x00_set_field32(&word
, TXWI_W0_PHYMODE
, txdesc
->rate_mode
);
428 rt2x00_desc_write(txwi
, 0, word
);
430 rt2x00_desc_read(txwi
, 1, &word
);
431 rt2x00_set_field32(&word
, TXWI_W1_ACK
,
432 test_bit(ENTRY_TXD_ACK
, &txdesc
->flags
));
433 rt2x00_set_field32(&word
, TXWI_W1_NSEQ
,
434 test_bit(ENTRY_TXD_GENERATE_SEQ
, &txdesc
->flags
));
435 rt2x00_set_field32(&word
, TXWI_W1_BW_WIN_SIZE
, txdesc
->ba_size
);
436 rt2x00_set_field32(&word
, TXWI_W1_WIRELESS_CLI_ID
,
437 test_bit(ENTRY_TXD_ENCRYPT
, &txdesc
->flags
) ?
438 txdesc
->key_idx
: 0xff);
439 rt2x00_set_field32(&word
, TXWI_W1_MPDU_TOTAL_BYTE_COUNT
,
440 skb
->len
- txdesc
->l2pad
);
441 rt2x00_set_field32(&word
, TXWI_W1_PACKETID
,
442 skbdesc
->entry
->queue
->qid
+ 1);
443 rt2x00_desc_write(txwi
, 1, word
);
446 * Always write 0 to IV/EIV fields, hardware will insert the IV
447 * from the IVEIV register when TXINFO_W0_WIV is set to 0.
448 * When TXINFO_W0_WIV is set to 1 it will use the IV data
449 * from the descriptor. The TXWI_W1_WIRELESS_CLI_ID indicates which
450 * crypto entry in the registers should be used to encrypt the frame.
452 _rt2x00_desc_write(txwi
, 2, 0 /* skbdesc->iv[0] */);
453 _rt2x00_desc_write(txwi
, 3, 0 /* skbdesc->iv[1] */);
456 * Initialize TX descriptor
458 rt2x00_desc_read(txi
, 0, &word
);
459 rt2x00_set_field32(&word
, TXINFO_W0_USB_DMA_TX_PKT_LEN
,
460 skb
->len
+ TXWI_DESC_SIZE
);
461 rt2x00_set_field32(&word
, TXINFO_W0_WIV
,
462 !test_bit(ENTRY_TXD_ENCRYPT_IV
, &txdesc
->flags
));
463 rt2x00_set_field32(&word
, TXINFO_W0_QSEL
, 2);
464 rt2x00_set_field32(&word
, TXINFO_W0_SW_USE_LAST_ROUND
, 0);
465 rt2x00_set_field32(&word
, TXINFO_W0_USB_DMA_NEXT_VALID
, 0);
466 rt2x00_set_field32(&word
, TXINFO_W0_USB_DMA_TX_BURST
,
467 test_bit(ENTRY_TXD_BURST
, &txdesc
->flags
));
468 rt2x00_desc_write(txi
, 0, word
);
472 * TX data initialization
474 static void rt2800usb_write_beacon(struct queue_entry
*entry
)
476 struct rt2x00_dev
*rt2x00dev
= entry
->queue
->rt2x00dev
;
477 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(entry
->skb
);
478 unsigned int beacon_base
;
482 * Add the descriptor in front of the skb.
484 skb_push(entry
->skb
, entry
->queue
->desc_size
);
485 memcpy(entry
->skb
->data
, skbdesc
->desc
, skbdesc
->desc_len
);
486 skbdesc
->desc
= entry
->skb
->data
;
489 * Disable beaconing while we are reloading the beacon data,
490 * otherwise we might be sending out invalid data.
492 rt2800_register_read(rt2x00dev
, BCN_TIME_CFG
, ®
);
493 rt2x00_set_field32(®
, BCN_TIME_CFG_BEACON_GEN
, 0);
494 rt2800_register_write(rt2x00dev
, BCN_TIME_CFG
, reg
);
497 * Write entire beacon with descriptor to register.
499 beacon_base
= HW_BEACON_OFFSET(entry
->entry_idx
);
500 rt2x00usb_vendor_request_large_buff(rt2x00dev
, USB_MULTI_WRITE
,
501 USB_VENDOR_REQUEST_OUT
, beacon_base
,
502 entry
->skb
->data
, entry
->skb
->len
,
503 REGISTER_TIMEOUT32(entry
->skb
->len
));
506 * Clean up the beacon skb.
508 dev_kfree_skb(entry
->skb
);
512 static int rt2800usb_get_tx_data_len(struct queue_entry
*entry
)
517 * The length _must_ include 4 bytes padding,
518 * it should always be multiple of 4,
519 * but it must _not_ be a multiple of the USB packet size.
521 length
= roundup(entry
->skb
->len
+ 4, 4);
522 length
+= (4 * !(length
% entry
->queue
->usb_maxpacket
));
527 static void rt2800usb_kick_tx_queue(struct rt2x00_dev
*rt2x00dev
,
528 const enum data_queue_qid queue
)
532 if (queue
!= QID_BEACON
) {
533 rt2x00usb_kick_tx_queue(rt2x00dev
, queue
);
537 rt2800_register_read(rt2x00dev
, BCN_TIME_CFG
, ®
);
538 if (!rt2x00_get_field32(reg
, BCN_TIME_CFG_BEACON_GEN
)) {
539 rt2x00_set_field32(®
, BCN_TIME_CFG_TSF_TICKING
, 1);
540 rt2x00_set_field32(®
, BCN_TIME_CFG_TBTT_ENABLE
, 1);
541 rt2x00_set_field32(®
, BCN_TIME_CFG_BEACON_GEN
, 1);
542 rt2800_register_write(rt2x00dev
, BCN_TIME_CFG
, reg
);
547 * RX control handlers
549 static void rt2800usb_fill_rxdone(struct queue_entry
*entry
,
550 struct rxdone_entry_desc
*rxdesc
)
552 struct rt2x00_dev
*rt2x00dev
= entry
->queue
->rt2x00dev
;
553 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(entry
->skb
);
554 __le32
*rxi
= (__le32
*)entry
->skb
->data
;
566 * RX frame format is :
567 * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
568 * |<------------ rx_pkt_len -------------->|
570 rt2x00_desc_read(rxi
, 0, &rxi0
);
571 rx_pkt_len
= rt2x00_get_field32(rxi0
, RXINFO_W0_USB_DMA_RX_PKT_LEN
);
573 rxwi
= (__le32
*)(entry
->skb
->data
+ RXINFO_DESC_SIZE
);
576 * FIXME : we need to check for rx_pkt_len validity
578 rxd
= (__le32
*)(entry
->skb
->data
+ RXINFO_DESC_SIZE
+ rx_pkt_len
);
581 * Copy descriptor to the skbdesc->desc buffer, making it safe from
582 * moving of frame data in rt2x00usb.
584 memcpy(skbdesc
->desc
, rxi
, skbdesc
->desc_len
);
587 * It is now safe to read the descriptor on all architectures.
589 rt2x00_desc_read(rxwi
, 0, &rxwi0
);
590 rt2x00_desc_read(rxwi
, 1, &rxwi1
);
591 rt2x00_desc_read(rxwi
, 2, &rxwi2
);
592 rt2x00_desc_read(rxwi
, 3, &rxwi3
);
593 rt2x00_desc_read(rxd
, 0, &rxd0
);
595 if (rt2x00_get_field32(rxd0
, RXD_W0_CRC_ERROR
))
596 rxdesc
->flags
|= RX_FLAG_FAILED_FCS_CRC
;
598 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO
, &rt2x00dev
->flags
)) {
599 rxdesc
->cipher
= rt2x00_get_field32(rxwi0
, RXWI_W0_UDF
);
600 rxdesc
->cipher_status
=
601 rt2x00_get_field32(rxd0
, RXD_W0_CIPHER_ERROR
);
604 if (rt2x00_get_field32(rxd0
, RXD_W0_DECRYPTED
)) {
606 * Hardware has stripped IV/EIV data from 802.11 frame during
607 * decryption. Unfortunately the descriptor doesn't contain
608 * any fields with the EIV/IV data either, so they can't
609 * be restored by rt2x00lib.
611 rxdesc
->flags
|= RX_FLAG_IV_STRIPPED
;
613 if (rxdesc
->cipher_status
== RX_CRYPTO_SUCCESS
)
614 rxdesc
->flags
|= RX_FLAG_DECRYPTED
;
615 else if (rxdesc
->cipher_status
== RX_CRYPTO_FAIL_MIC
)
616 rxdesc
->flags
|= RX_FLAG_MMIC_ERROR
;
619 if (rt2x00_get_field32(rxd0
, RXD_W0_MY_BSS
))
620 rxdesc
->dev_flags
|= RXDONE_MY_BSS
;
622 if (rt2x00_get_field32(rxd0
, RXD_W0_L2PAD
))
623 rxdesc
->dev_flags
|= RXDONE_L2PAD
;
625 if (rt2x00_get_field32(rxwi1
, RXWI_W1_SHORT_GI
))
626 rxdesc
->flags
|= RX_FLAG_SHORT_GI
;
628 if (rt2x00_get_field32(rxwi1
, RXWI_W1_BW
))
629 rxdesc
->flags
|= RX_FLAG_40MHZ
;
632 * Detect RX rate, always use MCS as signal type.
634 rxdesc
->dev_flags
|= RXDONE_SIGNAL_MCS
;
635 rxdesc
->rate_mode
= rt2x00_get_field32(rxwi1
, RXWI_W1_PHYMODE
);
636 rxdesc
->signal
= rt2x00_get_field32(rxwi1
, RXWI_W1_MCS
);
639 * Mask of 0x8 bit to remove the short preamble flag.
641 if (rxdesc
->rate_mode
== RATE_MODE_CCK
)
642 rxdesc
->signal
&= ~0x8;
645 (rt2x00_get_field32(rxwi2
, RXWI_W2_RSSI0
) +
646 rt2x00_get_field32(rxwi2
, RXWI_W2_RSSI1
)) / 2;
649 (rt2x00_get_field32(rxwi3
, RXWI_W3_SNR0
) +
650 rt2x00_get_field32(rxwi3
, RXWI_W3_SNR1
)) / 2;
652 rxdesc
->size
= rt2x00_get_field32(rxwi0
, RXWI_W0_MPDU_TOTAL_BYTE_COUNT
);
655 * Remove RXWI descriptor from start of buffer.
657 skb_pull(entry
->skb
, skbdesc
->desc_len
);
661 * Device probe functions.
663 static int rt2800usb_validate_eeprom(struct rt2x00_dev
*rt2x00dev
)
665 if (rt2800_efuse_detect(rt2x00dev
))
666 rt2800_read_eeprom_efuse(rt2x00dev
);
668 rt2x00usb_eeprom_read(rt2x00dev
, rt2x00dev
->eeprom
,
671 return rt2800_validate_eeprom(rt2x00dev
);
674 static const struct rt2800_ops rt2800usb_rt2800_ops
= {
675 .register_read
= rt2x00usb_register_read
,
676 .register_read_lock
= rt2x00usb_register_read_lock
,
677 .register_write
= rt2x00usb_register_write
,
678 .register_write_lock
= rt2x00usb_register_write_lock
,
680 .register_multiread
= rt2x00usb_register_multiread
,
681 .register_multiwrite
= rt2x00usb_register_multiwrite
,
683 .regbusy_read
= rt2x00usb_regbusy_read
,
686 static int rt2800usb_probe_hw(struct rt2x00_dev
*rt2x00dev
)
690 rt2x00dev
->priv
= (void *)&rt2800usb_rt2800_ops
;
693 * Allocate eeprom data.
695 retval
= rt2800usb_validate_eeprom(rt2x00dev
);
699 retval
= rt2800_init_eeprom(rt2x00dev
);
704 * Initialize hw specifications.
706 retval
= rt2800_probe_hw_mode(rt2x00dev
);
711 * This device has multiple filters for control frames
712 * and has a separate filter for PS Poll frames.
714 __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS
, &rt2x00dev
->flags
);
715 __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL
, &rt2x00dev
->flags
);
718 * This device requires firmware.
720 __set_bit(DRIVER_REQUIRE_FIRMWARE
, &rt2x00dev
->flags
);
721 __set_bit(DRIVER_REQUIRE_L2PAD
, &rt2x00dev
->flags
);
722 if (!modparam_nohwcrypt
)
723 __set_bit(CONFIG_SUPPORT_HW_CRYPTO
, &rt2x00dev
->flags
);
726 * Set the rssi offset.
728 rt2x00dev
->rssi_offset
= DEFAULT_RSSI_OFFSET
;
733 static const struct rt2x00lib_ops rt2800usb_rt2x00_ops
= {
734 .probe_hw
= rt2800usb_probe_hw
,
735 .get_firmware_name
= rt2800usb_get_firmware_name
,
736 .check_firmware
= rt2800usb_check_firmware
,
737 .load_firmware
= rt2800usb_load_firmware
,
738 .initialize
= rt2x00usb_initialize
,
739 .uninitialize
= rt2x00usb_uninitialize
,
740 .clear_entry
= rt2x00usb_clear_entry
,
741 .set_device_state
= rt2800usb_set_device_state
,
742 .rfkill_poll
= rt2800_rfkill_poll
,
743 .link_stats
= rt2800_link_stats
,
744 .reset_tuner
= rt2800_reset_tuner
,
745 .link_tuner
= rt2800_link_tuner
,
746 .write_tx_desc
= rt2800usb_write_tx_desc
,
747 .write_tx_data
= rt2x00usb_write_tx_data
,
748 .write_beacon
= rt2800usb_write_beacon
,
749 .get_tx_data_len
= rt2800usb_get_tx_data_len
,
750 .kick_tx_queue
= rt2800usb_kick_tx_queue
,
751 .kill_tx_queue
= rt2x00usb_kill_tx_queue
,
752 .fill_rxdone
= rt2800usb_fill_rxdone
,
753 .config_shared_key
= rt2800_config_shared_key
,
754 .config_pairwise_key
= rt2800_config_pairwise_key
,
755 .config_filter
= rt2800_config_filter
,
756 .config_intf
= rt2800_config_intf
,
757 .config_erp
= rt2800_config_erp
,
758 .config_ant
= rt2800_config_ant
,
759 .config
= rt2800_config
,
762 static const struct data_queue_desc rt2800usb_queue_rx
= {
763 .entry_num
= RX_ENTRIES
,
764 .data_size
= AGGREGATION_SIZE
,
765 .desc_size
= RXINFO_DESC_SIZE
+ RXWI_DESC_SIZE
,
766 .priv_size
= sizeof(struct queue_entry_priv_usb
),
769 static const struct data_queue_desc rt2800usb_queue_tx
= {
770 .entry_num
= TX_ENTRIES
,
771 .data_size
= AGGREGATION_SIZE
,
772 .desc_size
= TXINFO_DESC_SIZE
+ TXWI_DESC_SIZE
,
773 .priv_size
= sizeof(struct queue_entry_priv_usb
),
776 static const struct data_queue_desc rt2800usb_queue_bcn
= {
777 .entry_num
= 8 * BEACON_ENTRIES
,
778 .data_size
= MGMT_FRAME_SIZE
,
779 .desc_size
= TXINFO_DESC_SIZE
+ TXWI_DESC_SIZE
,
780 .priv_size
= sizeof(struct queue_entry_priv_usb
),
783 static const struct rt2x00_ops rt2800usb_ops
= {
784 .name
= KBUILD_MODNAME
,
787 .eeprom_size
= EEPROM_SIZE
,
789 .tx_queues
= NUM_TX_QUEUES
,
790 .extra_tx_headroom
= TXINFO_DESC_SIZE
+ TXWI_DESC_SIZE
,
791 .rx
= &rt2800usb_queue_rx
,
792 .tx
= &rt2800usb_queue_tx
,
793 .bcn
= &rt2800usb_queue_bcn
,
794 .lib
= &rt2800usb_rt2x00_ops
,
795 .hw
= &rt2800_mac80211_ops
,
796 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
797 .debugfs
= &rt2800_rt2x00debug
,
798 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
802 * rt2800usb module information.
804 static struct usb_device_id rt2800usb_device_table
[] = {
806 { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops
) },
807 { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops
) },
808 { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops
) },
810 { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops
) },
812 { USB_DEVICE(0x1690, 0x0740), USB_DEVICE_DATA(&rt2800usb_ops
) },
814 { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops
) },
815 { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops
) },
816 { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops
) },
818 { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops
) },
820 { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops
) },
821 { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops
) },
822 { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops
) },
824 { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops
) },
826 { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops
) },
827 { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops
) },
828 { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops
) },
829 { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops
) },
830 { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops
) },
831 { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops
) },
832 { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops
) },
834 { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops
) },
835 { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops
) },
836 { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops
) },
838 { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops
) },
839 { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops
) },
841 { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops
) },
842 { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops
) },
844 { USB_DEVICE(0X1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops
) },
845 { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops
) },
847 { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops
) },
849 { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops
) },
850 { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops
) },
852 { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops
) },
853 { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops
) },
855 { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops
) },
856 { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops
) },
857 { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops
) },
859 { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops
) },
861 { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops
) },
863 { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops
) },
865 { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops
) },
867 { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops
) },
868 { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops
) },
870 { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops
) },
872 { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops
) },
874 { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops
) },
875 { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops
) },
876 { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops
) },
877 { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops
) },
878 { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops
) },
879 { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops
) },
881 { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops
) },
882 { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops
) },
883 { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops
) },
884 { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops
) },
885 { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops
) },
886 { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops
) },
888 { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops
) },
890 { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops
) },
892 { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops
) },
894 { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops
) },
895 { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops
) },
897 { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops
) },
898 { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops
) },
900 { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops
) },
901 #ifdef CONFIG_RT2800USB_RT30XX
903 { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops
) },
904 { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops
) },
905 { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops
) },
907 { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops
) },
909 { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops
) },
911 { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops
) },
913 { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops
) },
915 { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops
) },
916 { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops
) },
917 { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops
) },
918 { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops
) },
920 { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops
) },
922 { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops
) },
924 { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops
) },
925 { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops
) },
926 { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops
) },
928 { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops
) },
930 { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops
) },
932 { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops
) },
934 { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops
) },
935 { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops
) },
937 { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops
) },
939 { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops
) },
941 { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops
) },
942 { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops
) },
943 { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops
) },
944 { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops
) },
946 { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops
) },
947 { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops
) },
949 { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops
) },
951 { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops
) },
952 { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops
) },
954 #ifdef CONFIG_RT2800USB_RT35XX
956 { USB_DEVICE(0x1690, 0x0744), USB_DEVICE_DATA(&rt2800usb_ops
) },
958 { USB_DEVICE(0x167b, 0x4001), USB_DEVICE_DATA(&rt2800usb_ops
) },
960 { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops
) },
962 { USB_DEVICE(0x04bb, 0x0944), USB_DEVICE_DATA(&rt2800usb_ops
) },
964 { USB_DEVICE(0x148f, 0x3370), USB_DEVICE_DATA(&rt2800usb_ops
) },
965 { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops
) },
966 { USB_DEVICE(0x148f, 0x8070), USB_DEVICE_DATA(&rt2800usb_ops
) },
968 { USB_DEVICE(0x0df6, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops
) },
970 { USB_DEVICE(0x5a57, 0x0284), USB_DEVICE_DATA(&rt2800usb_ops
) },
972 #ifdef CONFIG_RT2800USB_UNKNOWN
974 * Unclear what kind of devices these are (they aren't supported by the
978 { USB_DEVICE(0x8516, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops
) },
979 { USB_DEVICE(0x8516, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops
) },
980 { USB_DEVICE(0x8516, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops
) },
981 { USB_DEVICE(0x8516, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops
) },
982 { USB_DEVICE(0x8516, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops
) },
983 { USB_DEVICE(0x8516, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops
) },
984 { USB_DEVICE(0x8516, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops
) },
986 { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops
) },
987 { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops
) },
989 { USB_DEVICE(0x0930, 0x0a07), USB_DEVICE_DATA(&rt2800usb_ops
) },
991 { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops
) },
992 { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops
) },
993 { USB_DEVICE(0x0b05, 0x1784), USB_DEVICE_DATA(&rt2800usb_ops
) },
994 { USB_DEVICE(0x0b05, 0x1790), USB_DEVICE_DATA(&rt2800usb_ops
) },
995 { USB_DEVICE(0x1761, 0x0b05), USB_DEVICE_DATA(&rt2800usb_ops
) },
997 { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops
) },
998 { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops
) },
999 { USB_DEVICE(0x13d3, 0x3305), USB_DEVICE_DATA(&rt2800usb_ops
) },
1001 { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1003 { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops
) },
1004 { USB_DEVICE(0x0411, 0x0148), USB_DEVICE_DATA(&rt2800usb_ops
) },
1005 { USB_DEVICE(0x0411, 0x0150), USB_DEVICE_DATA(&rt2800usb_ops
) },
1006 { USB_DEVICE(0x0411, 0x015d), USB_DEVICE_DATA(&rt2800usb_ops
) },
1008 { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops
) },
1009 { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops
) },
1011 { USB_DEVICE(0x07aa, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops
) },
1012 { USB_DEVICE(0x07aa, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops
) },
1013 { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops
) },
1015 { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops
) },
1016 { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops
) },
1017 { USB_DEVICE(0x07d1, 0x3c15), USB_DEVICE_DATA(&rt2800usb_ops
) },
1018 { USB_DEVICE(0x07d1, 0x3c16), USB_DEVICE_DATA(&rt2800usb_ops
) },
1020 { USB_DEVICE(0x203d, 0x14a1), USB_DEVICE_DATA(&rt2800usb_ops
) },
1021 { USB_DEVICE(0x203d, 0x14a9), USB_DEVICE_DATA(&rt2800usb_ops
) },
1023 { USB_DEVICE(0x1740, 0x9707), USB_DEVICE_DATA(&rt2800usb_ops
) },
1024 { USB_DEVICE(0x1740, 0x9708), USB_DEVICE_DATA(&rt2800usb_ops
) },
1025 { USB_DEVICE(0x1740, 0x9709), USB_DEVICE_DATA(&rt2800usb_ops
) },
1027 { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops
) },
1029 { USB_DEVICE(0x1044, 0x800c), USB_DEVICE_DATA(&rt2800usb_ops
) },
1031 { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops
) },
1032 { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops
) },
1034 { USB_DEVICE(0x04bb, 0x0947), USB_DEVICE_DATA(&rt2800usb_ops
) },
1035 { USB_DEVICE(0x04bb, 0x0948), USB_DEVICE_DATA(&rt2800usb_ops
) },
1037 { USB_DEVICE(0x1740, 0x0605), USB_DEVICE_DATA(&rt2800usb_ops
) },
1038 { USB_DEVICE(0x1740, 0x0615), USB_DEVICE_DATA(&rt2800usb_ops
) },
1040 { USB_DEVICE(0x1737, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops
) },
1041 { USB_DEVICE(0x1737, 0x0078), USB_DEVICE_DATA(&rt2800usb_ops
) },
1042 { USB_DEVICE(0x1737, 0x0079), USB_DEVICE_DATA(&rt2800usb_ops
) },
1044 { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops
) },
1046 { USB_DEVICE(0x0db0, 0x3821), USB_DEVICE_DATA(&rt2800usb_ops
) },
1047 { USB_DEVICE(0x0db0, 0x3822), USB_DEVICE_DATA(&rt2800usb_ops
) },
1048 { USB_DEVICE(0x0db0, 0x3870), USB_DEVICE_DATA(&rt2800usb_ops
) },
1049 { USB_DEVICE(0x0db0, 0x3871), USB_DEVICE_DATA(&rt2800usb_ops
) },
1050 { USB_DEVICE(0x0db0, 0x821a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1051 { USB_DEVICE(0x0db0, 0x822a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1052 { USB_DEVICE(0x0db0, 0x870a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1053 { USB_DEVICE(0x0db0, 0x871a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1054 { USB_DEVICE(0x0db0, 0x899a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1056 { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops
) },
1058 { USB_DEVICE(0x20b8, 0x8888), USB_DEVICE_DATA(&rt2800usb_ops
) },
1060 { USB_DEVICE(0x05a6, 0x0101), USB_DEVICE_DATA(&rt2800usb_ops
) },
1061 { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops
) },
1062 { USB_DEVICE(0x1d4d, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops
) },
1064 { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops
) },
1066 { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops
) },
1068 { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops
) },
1069 { USB_DEVICE(0x0df6, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops
) },
1070 { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops
) },
1071 { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops
) },
1072 { USB_DEVICE(0x0df6, 0x0047), USB_DEVICE_DATA(&rt2800usb_ops
) },
1073 { USB_DEVICE(0x0df6, 0x0048), USB_DEVICE_DATA(&rt2800usb_ops
) },
1074 { USB_DEVICE(0x0df6, 0x004a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1075 { USB_DEVICE(0x0df6, 0x004d), USB_DEVICE_DATA(&rt2800usb_ops
) },
1077 { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops
) },
1078 { USB_DEVICE(0x083a, 0xa701), USB_DEVICE_DATA(&rt2800usb_ops
) },
1079 { USB_DEVICE(0x083a, 0xa702), USB_DEVICE_DATA(&rt2800usb_ops
) },
1080 { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops
) },
1081 { USB_DEVICE(0x083a, 0xd522), USB_DEVICE_DATA(&rt2800usb_ops
) },
1083 { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops
) },
1084 { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops
) },
1086 { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops
) },
1091 MODULE_AUTHOR(DRV_PROJECT
);
1092 MODULE_VERSION(DRV_VERSION
);
1093 MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
1094 MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
1095 MODULE_DEVICE_TABLE(usb
, rt2800usb_device_table
);
1096 MODULE_FIRMWARE(FIRMWARE_RT2870
);
1097 MODULE_LICENSE("GPL");
1099 static struct usb_driver rt2800usb_driver
= {
1100 .name
= KBUILD_MODNAME
,
1101 .id_table
= rt2800usb_device_table
,
1102 .probe
= rt2x00usb_probe
,
1103 .disconnect
= rt2x00usb_disconnect
,
1104 .suspend
= rt2x00usb_suspend
,
1105 .resume
= rt2x00usb_resume
,
1108 static int __init
rt2800usb_init(void)
1110 return usb_register(&rt2800usb_driver
);
1113 static void __exit
rt2800usb_exit(void)
1115 usb_deregister(&rt2800usb_driver
);
1118 module_init(rt2800usb_init
);
1119 module_exit(rt2800usb_exit
);