rt2x00: Simplify arguments to rt2x00 driver callback functions
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / rt2x00 / rt2800usb.c
blob02f95892aa077238fbed8ad7422d2738ce32cee7
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>
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.
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.
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.
27 Module: rt2800usb
28 Abstract: rt2800usb device specific routines.
29 Supported chipsets: RT2800U.
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>
39 #include "rt2x00.h"
40 #include "rt2x00usb.h"
41 #include "rt2800lib.h"
42 #include "rt2800.h"
43 #include "rt2800usb.h"
46 * Allow hardware encryption to be disabled.
48 static int modparam_nohwcrypt = 0;
49 module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
50 MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
53 * Firmware functions
55 static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
57 return FIRMWARE_RT2870;
60 static int rt2800usb_write_firmware(struct rt2x00_dev *rt2x00dev,
61 const u8 *data, const size_t len)
63 int status;
64 u32 offset;
65 u32 length;
68 * Check which section of the firmware we need.
70 if (rt2x00_rt(rt2x00dev, RT2860) ||
71 rt2x00_rt(rt2x00dev, RT2872) ||
72 rt2x00_rt(rt2x00dev, RT3070)) {
73 offset = 0;
74 length = 4096;
75 } else {
76 offset = 4096;
77 length = 4096;
81 * Write firmware to device.
83 rt2800_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
84 data + offset, length);
86 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
87 rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
90 * Send firmware request to device to load firmware,
91 * we need to specify a long timeout time.
93 status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
94 0, USB_MODE_FIRMWARE,
95 REGISTER_TIMEOUT_FIRMWARE);
96 if (status < 0) {
97 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
98 return status;
101 msleep(10);
102 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
105 * Send signal to firmware during boot time.
107 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0);
109 if (rt2x00_rt(rt2x00dev, RT3070) ||
110 rt2x00_rt(rt2x00dev, RT3071) ||
111 rt2x00_rt(rt2x00dev, RT3572)) {
112 udelay(200);
113 rt2800_mcu_request(rt2x00dev, MCU_CURRENT, 0, 0, 0);
114 udelay(10);
117 return 0;
121 * Device state switch handlers.
123 static void rt2800usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
124 enum dev_state state)
126 u32 reg;
128 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
129 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX,
130 (state == STATE_RADIO_RX_ON) ||
131 (state == STATE_RADIO_RX_ON_LINK));
132 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
135 static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev)
137 u32 reg;
138 int i;
141 * Wait until BBP and RF are ready.
143 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
144 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
145 if (reg && reg != ~0)
146 break;
147 msleep(1);
150 if (i == REGISTER_BUSY_COUNT) {
151 ERROR(rt2x00dev, "Unstable hardware.\n");
152 return -EBUSY;
155 rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
156 rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000);
158 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
159 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_CSR, 1);
160 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_BBP, 1);
161 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
163 rt2800_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000);
165 rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0,
166 USB_MODE_RESET, REGISTER_TIMEOUT);
168 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
170 return 0;
173 static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
175 u32 reg;
176 u16 word;
179 * Initialize all registers.
181 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev) ||
182 rt2800_init_registers(rt2x00dev) ||
183 rt2800_init_bbp(rt2x00dev) ||
184 rt2800_init_rfcsr(rt2x00dev)))
185 return -EIO;
187 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
188 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
189 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
191 udelay(50);
193 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
194 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
195 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 1);
196 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 1);
197 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
200 rt2800_register_read(rt2x00dev, USB_DMA_CFG, &reg);
201 rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
202 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
203 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
205 * Total room for RX frames in kilobytes, PBF might still exceed
206 * this limit so reduce the number to prevent errors.
208 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
209 ((RX_ENTRIES * DATA_FRAME_SIZE) / 1024) - 3);
210 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
211 rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
212 rt2800_register_write(rt2x00dev, USB_DMA_CFG, reg);
214 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
215 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
216 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
217 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
220 * Initialize LED control
222 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED1, &word);
223 rt2800_mcu_request(rt2x00dev, MCU_LED_1, 0xff,
224 word & 0xff, (word >> 8) & 0xff);
226 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED2, &word);
227 rt2800_mcu_request(rt2x00dev, MCU_LED_2, 0xff,
228 word & 0xff, (word >> 8) & 0xff);
230 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED3, &word);
231 rt2800_mcu_request(rt2x00dev, MCU_LED_3, 0xff,
232 word & 0xff, (word >> 8) & 0xff);
234 return 0;
237 static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
239 u32 reg;
241 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
242 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
243 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
244 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
246 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0);
247 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0);
248 rt2800_register_write(rt2x00dev, TX_PIN_CFG, 0);
250 /* Wait for DMA, ignore error */
251 rt2800_wait_wpdma_ready(rt2x00dev);
253 rt2x00usb_disable_radio(rt2x00dev);
256 static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
257 enum dev_state state)
259 if (state == STATE_AWAKE)
260 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 0);
261 else
262 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0, 2);
264 return 0;
267 static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
268 enum dev_state state)
270 int retval = 0;
272 switch (state) {
273 case STATE_RADIO_ON:
275 * Before the radio can be enabled, the device first has
276 * to be woken up. After that it needs a bit of time
277 * to be fully awake and then the radio can be enabled.
279 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
280 msleep(1);
281 retval = rt2800usb_enable_radio(rt2x00dev);
282 break;
283 case STATE_RADIO_OFF:
285 * After the radio has been disabled, the device should
286 * be put to sleep for powersaving.
288 rt2800usb_disable_radio(rt2x00dev);
289 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
290 break;
291 case STATE_RADIO_RX_ON:
292 case STATE_RADIO_RX_ON_LINK:
293 case STATE_RADIO_RX_OFF:
294 case STATE_RADIO_RX_OFF_LINK:
295 rt2800usb_toggle_rx(rt2x00dev, state);
296 break;
297 case STATE_RADIO_IRQ_ON:
298 case STATE_RADIO_IRQ_ON_ISR:
299 case STATE_RADIO_IRQ_OFF:
300 case STATE_RADIO_IRQ_OFF_ISR:
301 /* No support, but no error either */
302 break;
303 case STATE_DEEP_SLEEP:
304 case STATE_SLEEP:
305 case STATE_STANDBY:
306 case STATE_AWAKE:
307 retval = rt2800usb_set_state(rt2x00dev, state);
308 break;
309 default:
310 retval = -ENOTSUPP;
311 break;
314 if (unlikely(retval))
315 ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
316 state, retval);
318 return retval;
322 * TX descriptor initialization
324 static __le32 *rt2800usb_get_txwi(struct queue_entry *entry)
326 if (entry->queue->qid == QID_BEACON)
327 return (__le32 *) (entry->skb->data);
328 else
329 return (__le32 *) (entry->skb->data + TXINFO_DESC_SIZE);
332 static void rt2800usb_write_tx_desc(struct queue_entry *entry,
333 struct txentry_desc *txdesc)
335 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
336 __le32 *txi = (__le32 *) entry->skb->data;
337 u32 word;
340 * Initialize TXINFO descriptor
342 rt2x00_desc_read(txi, 0, &word);
343 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
344 entry->skb->len - TXINFO_DESC_SIZE);
345 rt2x00_set_field32(&word, TXINFO_W0_WIV,
346 !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
347 rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
348 rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
349 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
350 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
351 test_bit(ENTRY_TXD_BURST, &txdesc->flags));
352 rt2x00_desc_write(txi, 0, word);
355 * Register descriptor details in skb frame descriptor.
357 skbdesc->flags |= SKBDESC_DESC_IN_SKB;
358 skbdesc->desc = txi;
359 skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE;
363 * TX data initialization
365 static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
367 int length;
370 * The length _must_ include 4 bytes padding,
371 * it should always be multiple of 4,
372 * but it must _not_ be a multiple of the USB packet size.
374 length = roundup(entry->skb->len + 4, 4);
375 length += (4 * !(length % entry->queue->usb_maxpacket));
377 return length;
381 * TX control handlers
383 static void rt2800usb_work_txdone(struct work_struct *work)
385 struct rt2x00_dev *rt2x00dev =
386 container_of(work, struct rt2x00_dev, txdone_work);
387 struct data_queue *queue;
388 struct queue_entry *entry;
390 rt2800_txdone(rt2x00dev);
393 * Process any trailing TX status reports for IO failures,
394 * we loop until we find the first non-IO error entry. This
395 * can either be a frame which is free, is being uploaded,
396 * or has completed the upload but didn't have an entry
397 * in the TX_STAT_FIFO register yet.
399 tx_queue_for_each(rt2x00dev, queue) {
400 while (!rt2x00queue_empty(queue)) {
401 entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
403 if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
404 !test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
405 break;
407 rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
413 * RX control handlers
415 static void rt2800usb_fill_rxdone(struct queue_entry *entry,
416 struct rxdone_entry_desc *rxdesc)
418 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
419 __le32 *rxi = (__le32 *)entry->skb->data;
420 __le32 *rxd;
421 u32 word;
422 int rx_pkt_len;
425 * Copy descriptor to the skbdesc->desc buffer, making it safe from
426 * moving of frame data in rt2x00usb.
428 memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
431 * RX frame format is :
432 * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
433 * |<------------ rx_pkt_len -------------->|
435 rt2x00_desc_read(rxi, 0, &word);
436 rx_pkt_len = rt2x00_get_field32(word, RXINFO_W0_USB_DMA_RX_PKT_LEN);
439 * Remove the RXINFO structure from the sbk.
441 skb_pull(entry->skb, RXINFO_DESC_SIZE);
444 * FIXME: we need to check for rx_pkt_len validity
446 rxd = (__le32 *)(entry->skb->data + rx_pkt_len);
449 * It is now safe to read the descriptor on all architectures.
451 rt2x00_desc_read(rxd, 0, &word);
453 if (rt2x00_get_field32(word, RXD_W0_CRC_ERROR))
454 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
456 rxdesc->cipher_status = rt2x00_get_field32(word, RXD_W0_CIPHER_ERROR);
458 if (rt2x00_get_field32(word, RXD_W0_DECRYPTED)) {
460 * Hardware has stripped IV/EIV data from 802.11 frame during
461 * decryption. Unfortunately the descriptor doesn't contain
462 * any fields with the EIV/IV data either, so they can't
463 * be restored by rt2x00lib.
465 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
467 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
468 rxdesc->flags |= RX_FLAG_DECRYPTED;
469 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
470 rxdesc->flags |= RX_FLAG_MMIC_ERROR;
473 if (rt2x00_get_field32(word, RXD_W0_MY_BSS))
474 rxdesc->dev_flags |= RXDONE_MY_BSS;
476 if (rt2x00_get_field32(word, RXD_W0_L2PAD))
477 rxdesc->dev_flags |= RXDONE_L2PAD;
480 * Remove RXD descriptor from end of buffer.
482 skb_trim(entry->skb, rx_pkt_len);
485 * Process the RXWI structure.
487 rt2800_process_rxwi(entry, rxdesc);
491 * Device probe functions.
493 static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
495 if (rt2800_efuse_detect(rt2x00dev))
496 rt2800_read_eeprom_efuse(rt2x00dev);
497 else
498 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
499 EEPROM_SIZE);
501 return rt2800_validate_eeprom(rt2x00dev);
504 static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
506 int retval;
509 * Allocate eeprom data.
511 retval = rt2800usb_validate_eeprom(rt2x00dev);
512 if (retval)
513 return retval;
515 retval = rt2800_init_eeprom(rt2x00dev);
516 if (retval)
517 return retval;
520 * Initialize hw specifications.
522 retval = rt2800_probe_hw_mode(rt2x00dev);
523 if (retval)
524 return retval;
527 * This device has multiple filters for control frames
528 * and has a separate filter for PS Poll frames.
530 __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags);
531 __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags);
534 * This device requires firmware.
536 __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
537 __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
538 if (!modparam_nohwcrypt)
539 __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
540 __set_bit(DRIVER_SUPPORT_LINK_TUNING, &rt2x00dev->flags);
541 __set_bit(DRIVER_SUPPORT_WATCHDOG, &rt2x00dev->flags);
544 * Set the rssi offset.
546 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
549 * Overwrite TX done handler
551 PREPARE_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
553 return 0;
556 static const struct ieee80211_ops rt2800usb_mac80211_ops = {
557 .tx = rt2x00mac_tx,
558 .start = rt2x00mac_start,
559 .stop = rt2x00mac_stop,
560 .add_interface = rt2x00mac_add_interface,
561 .remove_interface = rt2x00mac_remove_interface,
562 .config = rt2x00mac_config,
563 .configure_filter = rt2x00mac_configure_filter,
564 .set_tim = rt2x00mac_set_tim,
565 .set_key = rt2x00mac_set_key,
566 .sw_scan_start = rt2x00mac_sw_scan_start,
567 .sw_scan_complete = rt2x00mac_sw_scan_complete,
568 .get_stats = rt2x00mac_get_stats,
569 .get_tkip_seq = rt2800_get_tkip_seq,
570 .set_rts_threshold = rt2800_set_rts_threshold,
571 .bss_info_changed = rt2x00mac_bss_info_changed,
572 .conf_tx = rt2800_conf_tx,
573 .get_tsf = rt2800_get_tsf,
574 .rfkill_poll = rt2x00mac_rfkill_poll,
575 .ampdu_action = rt2800_ampdu_action,
578 static const struct rt2800_ops rt2800usb_rt2800_ops = {
579 .register_read = rt2x00usb_register_read,
580 .register_read_lock = rt2x00usb_register_read_lock,
581 .register_write = rt2x00usb_register_write,
582 .register_write_lock = rt2x00usb_register_write_lock,
583 .register_multiread = rt2x00usb_register_multiread,
584 .register_multiwrite = rt2x00usb_register_multiwrite,
585 .regbusy_read = rt2x00usb_regbusy_read,
586 .drv_write_firmware = rt2800usb_write_firmware,
587 .drv_init_registers = rt2800usb_init_registers,
588 .drv_get_txwi = rt2800usb_get_txwi,
591 static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
592 .probe_hw = rt2800usb_probe_hw,
593 .get_firmware_name = rt2800usb_get_firmware_name,
594 .check_firmware = rt2800_check_firmware,
595 .load_firmware = rt2800_load_firmware,
596 .initialize = rt2x00usb_initialize,
597 .uninitialize = rt2x00usb_uninitialize,
598 .clear_entry = rt2x00usb_clear_entry,
599 .set_device_state = rt2800usb_set_device_state,
600 .rfkill_poll = rt2800_rfkill_poll,
601 .link_stats = rt2800_link_stats,
602 .reset_tuner = rt2800_reset_tuner,
603 .link_tuner = rt2800_link_tuner,
604 .watchdog = rt2x00usb_watchdog,
605 .write_tx_desc = rt2800usb_write_tx_desc,
606 .write_tx_data = rt2800_write_tx_data,
607 .write_beacon = rt2800_write_beacon,
608 .get_tx_data_len = rt2800usb_get_tx_data_len,
609 .kick_tx_queue = rt2x00usb_kick_tx_queue,
610 .kill_tx_queue = rt2x00usb_kill_tx_queue,
611 .fill_rxdone = rt2800usb_fill_rxdone,
612 .config_shared_key = rt2800_config_shared_key,
613 .config_pairwise_key = rt2800_config_pairwise_key,
614 .config_filter = rt2800_config_filter,
615 .config_intf = rt2800_config_intf,
616 .config_erp = rt2800_config_erp,
617 .config_ant = rt2800_config_ant,
618 .config = rt2800_config,
621 static const struct data_queue_desc rt2800usb_queue_rx = {
622 .entry_num = RX_ENTRIES,
623 .data_size = AGGREGATION_SIZE,
624 .desc_size = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
625 .priv_size = sizeof(struct queue_entry_priv_usb),
628 static const struct data_queue_desc rt2800usb_queue_tx = {
629 .entry_num = TX_ENTRIES,
630 .data_size = AGGREGATION_SIZE,
631 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
632 .priv_size = sizeof(struct queue_entry_priv_usb),
635 static const struct data_queue_desc rt2800usb_queue_bcn = {
636 .entry_num = 8 * BEACON_ENTRIES,
637 .data_size = MGMT_FRAME_SIZE,
638 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
639 .priv_size = sizeof(struct queue_entry_priv_usb),
642 static const struct rt2x00_ops rt2800usb_ops = {
643 .name = KBUILD_MODNAME,
644 .max_sta_intf = 1,
645 .max_ap_intf = 8,
646 .eeprom_size = EEPROM_SIZE,
647 .rf_size = RF_SIZE,
648 .tx_queues = NUM_TX_QUEUES,
649 .extra_tx_headroom = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
650 .rx = &rt2800usb_queue_rx,
651 .tx = &rt2800usb_queue_tx,
652 .bcn = &rt2800usb_queue_bcn,
653 .lib = &rt2800usb_rt2x00_ops,
654 .drv = &rt2800usb_rt2800_ops,
655 .hw = &rt2800usb_mac80211_ops,
656 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
657 .debugfs = &rt2800_rt2x00debug,
658 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
662 * rt2800usb module information.
664 static struct usb_device_id rt2800usb_device_table[] = {
665 /* Abocom */
666 { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
667 { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
668 { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
669 /* Allwin */
670 { USB_DEVICE(0x8516, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
671 { USB_DEVICE(0x8516, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
672 { USB_DEVICE(0x8516, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
673 /* Amit */
674 { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
675 /* Askey */
676 { USB_DEVICE(0x1690, 0x0740), USB_DEVICE_DATA(&rt2800usb_ops) },
677 /* ASUS */
678 { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops) },
679 { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops) },
680 { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops) },
681 /* AzureWave */
682 { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops) },
683 /* Belkin */
684 { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops) },
685 { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops) },
686 { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops) },
687 /* Buffalo */
688 { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops) },
689 /* Conceptronic */
690 { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops) },
691 { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops) },
692 { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
693 { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops) },
694 { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops) },
695 { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops) },
696 { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops) },
697 /* Corega */
698 { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
699 { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
700 { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
701 /* D-Link */
702 { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
703 { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
704 /* Edimax */
705 { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops) },
706 { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops) },
707 /* EnGenius */
708 { USB_DEVICE(0x1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops) },
709 { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops) },
710 /* Gigabyte */
711 { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops) },
712 /* Hawking */
713 { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops) },
714 { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops) },
715 { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops) },
716 { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops) },
717 { USB_DEVICE(0x0e66, 0x0013), USB_DEVICE_DATA(&rt2800usb_ops) },
718 { USB_DEVICE(0x0e66, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
719 { USB_DEVICE(0x0e66, 0x0018), USB_DEVICE_DATA(&rt2800usb_ops) },
720 /* Linksys */
721 { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops) },
722 { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops) },
723 /* Logitec */
724 { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops) },
725 { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops) },
726 { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops) },
727 /* Motorola */
728 { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
729 /* MSI */
730 { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops) },
731 /* Philips */
732 { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops) },
733 /* Planex */
734 { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops) },
735 /* Ralink */
736 { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
737 { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
738 /* Samsung */
739 { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops) },
740 /* Siemens */
741 { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops) },
742 /* Sitecom */
743 { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
744 { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops) },
745 { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops) },
746 { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops) },
747 { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops) },
748 { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops) },
749 { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops) },
750 { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
751 /* SMC */
752 { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops) },
753 { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops) },
754 { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops) },
755 { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops) },
756 { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops) },
757 { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops) },
758 /* Sparklan */
759 { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops) },
760 /* Sweex */
761 { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops) },
762 /* U-Media*/
763 { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops) },
764 /* ZCOM */
765 { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops) },
766 { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops) },
767 /* Zinwell */
768 { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops) },
769 { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops) },
770 /* Zyxel */
771 { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops) },
772 #ifdef CONFIG_RT2800USB_RT30XX
773 /* Abocom */
774 { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
775 { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
776 { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
777 /* AirTies */
778 { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops) },
779 /* Allwin */
780 { USB_DEVICE(0x8516, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
781 { USB_DEVICE(0x8516, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
782 { USB_DEVICE(0x8516, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
783 /* ASUS */
784 { USB_DEVICE(0x0b05, 0x1784), USB_DEVICE_DATA(&rt2800usb_ops) },
785 /* AzureWave */
786 { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops) },
787 { USB_DEVICE(0x13d3, 0x3305), USB_DEVICE_DATA(&rt2800usb_ops) },
788 { USB_DEVICE(0x13d3, 0x3307), USB_DEVICE_DATA(&rt2800usb_ops) },
789 { USB_DEVICE(0x13d3, 0x3321), USB_DEVICE_DATA(&rt2800usb_ops) },
790 /* Conceptronic */
791 { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops) },
792 /* Corega */
793 { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
794 /* D-Link */
795 { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops) },
796 { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops) },
797 { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops) },
798 { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops) },
799 { USB_DEVICE(0x07d1, 0x3c16), USB_DEVICE_DATA(&rt2800usb_ops) },
800 /* Draytek */
801 { USB_DEVICE(0x07fa, 0x7712), USB_DEVICE_DATA(&rt2800usb_ops) },
802 /* Edimax */
803 { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops) },
804 /* Encore */
805 { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops) },
806 { USB_DEVICE(0x203d, 0x14a9), USB_DEVICE_DATA(&rt2800usb_ops) },
807 /* EnGenius */
808 { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops) },
809 { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops) },
810 { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops) },
811 { USB_DEVICE(0x1740, 0x9707), USB_DEVICE_DATA(&rt2800usb_ops) },
812 { USB_DEVICE(0x1740, 0x9708), USB_DEVICE_DATA(&rt2800usb_ops) },
813 { USB_DEVICE(0x1740, 0x9709), USB_DEVICE_DATA(&rt2800usb_ops) },
814 /* Gigabyte */
815 { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops) },
816 /* I-O DATA */
817 { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops) },
818 { USB_DEVICE(0x04bb, 0x0947), USB_DEVICE_DATA(&rt2800usb_ops) },
819 { USB_DEVICE(0x04bb, 0x0948), USB_DEVICE_DATA(&rt2800usb_ops) },
820 /* Logitec */
821 { USB_DEVICE(0x0789, 0x0166), USB_DEVICE_DATA(&rt2800usb_ops) },
822 /* MSI */
823 { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops) },
824 { USB_DEVICE(0x0db0, 0x3821), USB_DEVICE_DATA(&rt2800usb_ops) },
825 { USB_DEVICE(0x0db0, 0x3822), USB_DEVICE_DATA(&rt2800usb_ops) },
826 { USB_DEVICE(0x0db0, 0x3870), USB_DEVICE_DATA(&rt2800usb_ops) },
827 { USB_DEVICE(0x0db0, 0x3871), USB_DEVICE_DATA(&rt2800usb_ops) },
828 { USB_DEVICE(0x0db0, 0x821a), USB_DEVICE_DATA(&rt2800usb_ops) },
829 { USB_DEVICE(0x0db0, 0x822a), USB_DEVICE_DATA(&rt2800usb_ops) },
830 { USB_DEVICE(0x0db0, 0x822b), USB_DEVICE_DATA(&rt2800usb_ops) },
831 { USB_DEVICE(0x0db0, 0x822c), USB_DEVICE_DATA(&rt2800usb_ops) },
832 { USB_DEVICE(0x0db0, 0x870a), USB_DEVICE_DATA(&rt2800usb_ops) },
833 { USB_DEVICE(0x0db0, 0x871a), USB_DEVICE_DATA(&rt2800usb_ops) },
834 { USB_DEVICE(0x0db0, 0x871b), USB_DEVICE_DATA(&rt2800usb_ops) },
835 { USB_DEVICE(0x0db0, 0x871c), USB_DEVICE_DATA(&rt2800usb_ops) },
836 { USB_DEVICE(0x0db0, 0x899a), USB_DEVICE_DATA(&rt2800usb_ops) },
837 /* Para */
838 { USB_DEVICE(0x20b8, 0x8888), USB_DEVICE_DATA(&rt2800usb_ops) },
839 /* Pegatron */
840 { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops) },
841 { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops) },
842 /* Planex */
843 { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops) },
844 /* Quanta */
845 { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops) },
846 /* Ralink */
847 { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
848 { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
849 { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
850 { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
851 /* Sitecom */
852 { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops) },
853 { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops) },
854 { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
855 { USB_DEVICE(0x0df6, 0x0047), USB_DEVICE_DATA(&rt2800usb_ops) },
856 { USB_DEVICE(0x0df6, 0x0048), USB_DEVICE_DATA(&rt2800usb_ops) },
857 /* SMC */
858 { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops) },
859 { USB_DEVICE(0x083a, 0xa701), USB_DEVICE_DATA(&rt2800usb_ops) },
860 { USB_DEVICE(0x083a, 0xa702), USB_DEVICE_DATA(&rt2800usb_ops) },
861 { USB_DEVICE(0x083a, 0xa703), USB_DEVICE_DATA(&rt2800usb_ops) },
862 /* Zinwell */
863 { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops) },
864 { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops) },
865 #endif
866 #ifdef CONFIG_RT2800USB_RT35XX
867 /* Allwin */
868 { USB_DEVICE(0x8516, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
869 /* Askey */
870 { USB_DEVICE(0x1690, 0x0744), USB_DEVICE_DATA(&rt2800usb_ops) },
871 /* Cisco */
872 { USB_DEVICE(0x167b, 0x4001), USB_DEVICE_DATA(&rt2800usb_ops) },
873 /* EnGenius */
874 { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops) },
875 /* I-O DATA */
876 { USB_DEVICE(0x04bb, 0x0944), USB_DEVICE_DATA(&rt2800usb_ops) },
877 /* Ralink */
878 { USB_DEVICE(0x148f, 0x3370), USB_DEVICE_DATA(&rt2800usb_ops) },
879 { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
880 { USB_DEVICE(0x148f, 0x8070), USB_DEVICE_DATA(&rt2800usb_ops) },
881 /* Sitecom */
882 { USB_DEVICE(0x0df6, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
883 { USB_DEVICE(0x0df6, 0x0050), USB_DEVICE_DATA(&rt2800usb_ops) },
884 /* Zinwell */
885 { USB_DEVICE(0x5a57, 0x0284), USB_DEVICE_DATA(&rt2800usb_ops) },
886 #endif
887 #ifdef CONFIG_RT2800USB_UNKNOWN
889 * Unclear what kind of devices these are (they aren't supported by the
890 * vendor linux driver).
892 /* Amigo */
893 { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
894 { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops) },
895 /* ASUS */
896 { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops) },
897 { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops) },
898 { USB_DEVICE(0x0b05, 0x1790), USB_DEVICE_DATA(&rt2800usb_ops) },
899 { USB_DEVICE(0x1761, 0x0b05), USB_DEVICE_DATA(&rt2800usb_ops) },
900 /* AzureWave */
901 { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops) },
902 { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops) },
903 { USB_DEVICE(0x13d3, 0x3322), USB_DEVICE_DATA(&rt2800usb_ops) },
904 /* Belkin */
905 { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops) },
906 /* Buffalo */
907 { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops) },
908 { USB_DEVICE(0x0411, 0x0148), USB_DEVICE_DATA(&rt2800usb_ops) },
909 { USB_DEVICE(0x0411, 0x0150), USB_DEVICE_DATA(&rt2800usb_ops) },
910 { USB_DEVICE(0x0411, 0x015d), USB_DEVICE_DATA(&rt2800usb_ops) },
911 /* Conceptronic */
912 { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops) },
913 { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
914 /* Corega */
915 { USB_DEVICE(0x07aa, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
916 { USB_DEVICE(0x07aa, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
917 { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
918 /* D-Link */
919 { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops) },
920 { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops) },
921 { USB_DEVICE(0x07d1, 0x3c15), USB_DEVICE_DATA(&rt2800usb_ops) },
922 { USB_DEVICE(0x07d1, 0x3c17), USB_DEVICE_DATA(&rt2800usb_ops) },
923 /* Encore */
924 { USB_DEVICE(0x203d, 0x14a1), USB_DEVICE_DATA(&rt2800usb_ops) },
925 /* Gemtek */
926 { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
927 /* Gigabyte */
928 { USB_DEVICE(0x1044, 0x800c), 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, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops) },
934 { USB_DEVICE(0x1737, 0x0078), USB_DEVICE_DATA(&rt2800usb_ops) },
935 { USB_DEVICE(0x1737, 0x0079), USB_DEVICE_DATA(&rt2800usb_ops) },
936 /* Motorola */
937 { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops) },
938 /* Ovislink */
939 { USB_DEVICE(0x1b75, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
940 { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
941 /* Pegatron */
942 { USB_DEVICE(0x05a6, 0x0101), USB_DEVICE_DATA(&rt2800usb_ops) },
943 { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops) },
944 { USB_DEVICE(0x1d4d, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
945 { USB_DEVICE(0x1d4d, 0x0011), USB_DEVICE_DATA(&rt2800usb_ops) },
946 /* Planex */
947 { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops) },
948 /* Qcom */
949 { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops) },
950 /* SMC */
951 { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops) },
952 { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops) },
953 { USB_DEVICE(0x083a, 0xd522), USB_DEVICE_DATA(&rt2800usb_ops) },
954 { USB_DEVICE(0x083a, 0xf511), USB_DEVICE_DATA(&rt2800usb_ops) },
955 /* Sweex */
956 { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops) },
957 { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops) },
958 /* Zyxel */
959 { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops) },
960 #endif
961 { 0, }
964 MODULE_AUTHOR(DRV_PROJECT);
965 MODULE_VERSION(DRV_VERSION);
966 MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
967 MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
968 MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
969 MODULE_FIRMWARE(FIRMWARE_RT2870);
970 MODULE_LICENSE("GPL");
972 static struct usb_driver rt2800usb_driver = {
973 .name = KBUILD_MODNAME,
974 .id_table = rt2800usb_device_table,
975 .probe = rt2x00usb_probe,
976 .disconnect = rt2x00usb_disconnect,
977 .suspend = rt2x00usb_suspend,
978 .resume = rt2x00usb_resume,
981 static int __init rt2800usb_init(void)
983 return usb_register(&rt2800usb_driver);
986 static void __exit rt2800usb_exit(void)
988 usb_deregister(&rt2800usb_driver);
991 module_init(rt2800usb_init);
992 module_exit(rt2800usb_exit);