]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/net/wireless/ralink/rt2x00/rt2800usb.c
rt2800usb: mark tx failure on timeout
[thirdparty/kernel/stable.git] / drivers / net / wireless / ralink / rt2x00 / rt2800usb.c
CommitLineData
d53d9e67 1/*
96481b20
ID
2 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3 Copyright (C) 2009 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
9c9a0d14
GW
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>
d53d9e67
ID
8 <http://rt2x00.serialmonkey.com>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
a05b8c58 21 along with this program; if not, see <http://www.gnu.org/licenses/>.
d53d9e67
ID
22 */
23
24/*
25 Module: rt2800usb
26 Abstract: rt2800usb device specific routines.
27 Supported chipsets: RT2800U.
28 */
29
d53d9e67
ID
30#include <linux/delay.h>
31#include <linux/etherdevice.h>
d53d9e67
ID
32#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/usb.h>
35
36#include "rt2x00.h"
37#include "rt2x00usb.h"
7ef5cc92 38#include "rt2800lib.h"
b54f78a8 39#include "rt2800.h"
d53d9e67
ID
40#include "rt2800usb.h"
41
42/*
43 * Allow hardware encryption to be disabled.
44 */
eb939922 45static bool modparam_nohwcrypt;
d53d9e67
ID
46module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
47MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
48
ad417a53
GW
49static bool rt2800usb_hwcrypt_disabled(struct rt2x00_dev *rt2x00dev)
50{
51 return modparam_nohwcrypt;
52}
53
5450b7e2
ID
54/*
55 * Queue handlers.
56 */
57static void rt2800usb_start_queue(struct data_queue *queue)
58{
59 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
60 u32 reg;
61
62 switch (queue->qid) {
63 case QID_RX:
8d0a2dcf 64 rt2x00usb_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5450b7e2 65 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
8d0a2dcf 66 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5450b7e2
ID
67 break;
68 case QID_BEACON:
8d0a2dcf 69 rt2x00usb_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
5450b7e2
ID
70 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 1);
71 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 1);
72 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
8d0a2dcf 73 rt2x00usb_register_write(rt2x00dev, BCN_TIME_CFG, reg);
5450b7e2
ID
74 break;
75 default:
76 break;
77 }
78}
79
80static void rt2800usb_stop_queue(struct data_queue *queue)
81{
82 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
83 u32 reg;
84
85 switch (queue->qid) {
86 case QID_RX:
8d0a2dcf 87 rt2x00usb_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
5450b7e2 88 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
8d0a2dcf 89 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
5450b7e2
ID
90 break;
91 case QID_BEACON:
8d0a2dcf 92 rt2x00usb_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
5450b7e2
ID
93 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 0);
94 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 0);
95 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
8d0a2dcf 96 rt2x00usb_register_write(rt2x00dev, BCN_TIME_CFG, reg);
5450b7e2
ID
97 break;
98 default:
99 break;
100 }
5450b7e2
ID
101}
102
f0187a19
JS
103/*
104 * test if there is an entry in any TX queue for which DMA is done
105 * but the TX status has not been returned yet
106 */
107static bool rt2800usb_txstatus_pending(struct rt2x00_dev *rt2x00dev)
108{
109 struct data_queue *queue;
110
111 tx_queue_for_each(rt2x00dev, queue) {
112 if (rt2x00queue_get_entry(queue, Q_INDEX_DMA_DONE) !=
113 rt2x00queue_get_entry(queue, Q_INDEX_DONE))
114 return true;
115 }
116 return false;
117}
118
f421111b
SG
119static inline bool rt2800usb_entry_txstatus_timeout(struct queue_entry *entry)
120{
121 bool tout;
122
123 if (!test_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags))
124 return false;
125
cfe82fbd 126 tout = time_after(jiffies, entry->last_action + msecs_to_jiffies(500));
f421111b 127 if (unlikely(tout))
45cfc516
SG
128 rt2x00_dbg(entry->queue->rt2x00dev,
129 "TX status timeout for entry %d in queue %d\n",
130 entry->entry_idx, entry->queue->qid);
f421111b
SG
131 return tout;
132
133}
134
135static bool rt2800usb_txstatus_timeout(struct rt2x00_dev *rt2x00dev)
136{
137 struct data_queue *queue;
138 struct queue_entry *entry;
139
140 tx_queue_for_each(rt2x00dev, queue) {
141 entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
142 if (rt2800usb_entry_txstatus_timeout(entry))
143 return true;
144 }
145 return false;
146}
147
36165fd5
SG
148#define TXSTATUS_READ_INTERVAL 1000000
149
a073fdef 150static bool rt2800usb_tx_sta_fifo_read_completed(struct rt2x00_dev *rt2x00dev,
0e0d39e5
JS
151 int urb_status, u32 tx_status)
152{
f421111b
SG
153 bool valid;
154
0e0d39e5 155 if (urb_status) {
ec9c4989
JP
156 rt2x00_warn(rt2x00dev, "TX status read failed %d\n",
157 urb_status);
f421111b
SG
158
159 goto stop_reading;
0e0d39e5
JS
160 }
161
f421111b
SG
162 valid = rt2x00_get_field32(tx_status, TX_STA_FIFO_VALID);
163 if (valid) {
498d319b 164 if (!kfifo_put(&rt2x00dev->txstatus_fifo, tx_status))
ec9c4989 165 rt2x00_warn(rt2x00dev, "TX status FIFO overrun\n");
f421111b 166
0e0d39e5 167 queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
f421111b
SG
168
169 /* Reschedule urb to read TX status again instantly */
170 return true;
b9fc1061
SG
171 }
172
173 /* Check if there is any entry that timedout waiting on TX status */
174 if (rt2800usb_txstatus_timeout(rt2x00dev))
175 queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
176
177 if (rt2800usb_txstatus_pending(rt2x00dev)) {
36165fd5
SG
178 /* Read register after 1 ms */
179 hrtimer_start(&rt2x00dev->txstatus_timer,
8b0e1953 180 TXSTATUS_READ_INTERVAL,
f421111b
SG
181 HRTIMER_MODE_REL);
182 return false;
f0187a19 183 }
a073fdef 184
f421111b
SG
185stop_reading:
186 clear_bit(TX_STATUS_READING, &rt2x00dev->flags);
187 /*
188 * There is small race window above, between txstatus pending check and
189 * clear_bit someone could do rt2x00usb_interrupt_txdone, so recheck
190 * here again if status reading is needed.
191 */
192 if (rt2800usb_txstatus_pending(rt2x00dev) &&
4e808a38 193 !test_and_set_bit(TX_STATUS_READING, &rt2x00dev->flags))
f421111b
SG
194 return true;
195 else
196 return false;
197}
198
199static void rt2800usb_async_read_tx_status(struct rt2x00_dev *rt2x00dev)
200{
201
202 if (test_and_set_bit(TX_STATUS_READING, &rt2x00dev->flags))
203 return;
204
36165fd5
SG
205 /* Read TX_STA_FIFO register after 2 ms */
206 hrtimer_start(&rt2x00dev->txstatus_timer,
8b0e1953 207 2 * TXSTATUS_READ_INTERVAL,
f421111b 208 HRTIMER_MODE_REL);
0e0d39e5
JS
209}
210
211static void rt2800usb_tx_dma_done(struct queue_entry *entry)
212{
213 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
214
f421111b 215 rt2800usb_async_read_tx_status(rt2x00dev);
0e0d39e5
JS
216}
217
f421111b 218static enum hrtimer_restart rt2800usb_tx_sta_fifo_timeout(struct hrtimer *timer)
f0187a19 219{
f421111b
SG
220 struct rt2x00_dev *rt2x00dev =
221 container_of(timer, struct rt2x00_dev, txstatus_timer);
f0187a19
JS
222
223 rt2x00usb_register_read_async(rt2x00dev, TX_STA_FIFO,
224 rt2800usb_tx_sta_fifo_read_completed);
f421111b
SG
225
226 return HRTIMER_NORESTART;
f0187a19
JS
227}
228
d53d9e67
ID
229/*
230 * Firmware functions
231 */
de51b35d
MB
232static int rt2800usb_autorun_detect(struct rt2x00_dev *rt2x00dev)
233{
2c4db12e 234 __le32 *reg;
de51b35d 235 u32 fw_mode;
92d5e245 236 int ret;
de51b35d 237
2c4db12e
AM
238 reg = kmalloc(sizeof(*reg), GFP_KERNEL);
239 if (reg == NULL)
240 return -ENOMEM;
de51b35d
MB
241 /* cannot use rt2x00usb_register_read here as it uses different
242 * mode (MULTI_READ vs. DEVICE_MODE) and does not pass the
243 * magic value USB_MODE_AUTORUN (0x11) to the device, thus the
244 * returned value would be invalid.
245 */
92d5e245
SAS
246 ret = rt2x00usb_vendor_request(rt2x00dev, USB_DEVICE_MODE,
247 USB_VENDOR_REQUEST_IN, 0,
248 USB_MODE_AUTORUN, reg, sizeof(*reg),
249 REGISTER_TIMEOUT_FIRMWARE);
2c4db12e
AM
250 fw_mode = le32_to_cpu(*reg);
251 kfree(reg);
92d5e245
SAS
252 if (ret < 0)
253 return ret;
de51b35d
MB
254
255 if ((fw_mode & 0x00000003) == 2)
256 return 1;
257
258 return 0;
259}
260
d53d9e67
ID
261static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
262{
263 return FIRMWARE_RT2870;
264}
265
f31c9a8c 266static int rt2800usb_write_firmware(struct rt2x00_dev *rt2x00dev,
d53d9e67
ID
267 const u8 *data, const size_t len)
268{
d53d9e67 269 int status;
d53d9e67
ID
270 u32 offset;
271 u32 length;
2c4db12e 272 int retval;
d53d9e67
ID
273
274 /*
275 * Check which section of the firmware we need.
276 */
49e721ec
GW
277 if (rt2x00_rt(rt2x00dev, RT2860) ||
278 rt2x00_rt(rt2x00dev, RT2872) ||
279 rt2x00_rt(rt2x00dev, RT3070)) {
d53d9e67
ID
280 offset = 0;
281 length = 4096;
282 } else {
283 offset = 4096;
284 length = 4096;
285 }
286
d53d9e67
ID
287 /*
288 * Write firmware to device.
289 */
2c4db12e
AM
290 retval = rt2800usb_autorun_detect(rt2x00dev);
291 if (retval < 0)
292 return retval;
293 if (retval) {
b663cd10
MB
294 rt2x00_info(rt2x00dev,
295 "Firmware loading not required - NIC in AutoRun mode\n");
01fbd4ec 296 __clear_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags);
b663cd10
MB
297 } else {
298 rt2x00usb_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
299 data + offset, length);
300 }
d53d9e67 301
8d0a2dcf
ID
302 rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
303 rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
d53d9e67
ID
304
305 /*
306 * Send firmware request to device to load firmware,
307 * we need to specify a long timeout time.
308 */
309 status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
310 0, USB_MODE_FIRMWARE,
311 REGISTER_TIMEOUT_FIRMWARE);
312 if (status < 0) {
ec9c4989 313 rt2x00_err(rt2x00dev, "Failed to write Firmware to device\n");
d53d9e67
ID
314 return status;
315 }
316
15e46928 317 msleep(10);
8d0a2dcf 318 rt2x00usb_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
15e46928 319
d53d9e67
ID
320 return 0;
321}
322
d53d9e67
ID
323/*
324 * Device state switch handlers.
325 */
e3a896b9
GW
326static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev)
327{
328 u32 reg;
e3a896b9
GW
329
330 /*
331 * Wait until BBP and RF are ready.
332 */
5ffddc49 333 if (rt2800_wait_csr_ready(rt2x00dev))
e3a896b9 334 return -EBUSY;
e3a896b9 335
8d0a2dcf
ID
336 rt2x00usb_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
337 rt2x00usb_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000);
e3a896b9 338
2a48e8ae 339 reg = 0;
e3a896b9
GW
340 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_CSR, 1);
341 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_BBP, 1);
8d0a2dcf 342 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
e3a896b9 343
e3a896b9
GW
344 rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0,
345 USB_MODE_RESET, REGISTER_TIMEOUT);
346
8d0a2dcf 347 rt2x00usb_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
e3a896b9
GW
348
349 return 0;
350}
351
d53d9e67
ID
352static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
353{
b29a1c1f 354 u32 reg = 0;
d53d9e67 355
b9a07ae9 356 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev)))
d53d9e67
ID
357 return -EIO;
358
d53d9e67 359 rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
9c8427d9 360 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
d53d9e67 361 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
15e46928
ID
362 /*
363 * Total room for RX frames in kilobytes, PBF might still exceed
364 * this limit so reduce the number to prevent errors.
365 */
366 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
3a28c8ac 367 ((rt2x00dev->rx->limit * DATA_FRAME_SIZE)
efd2f271 368 / 1024) - 3);
d53d9e67
ID
369 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
370 rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
8d0a2dcf 371 rt2x00usb_register_write(rt2x00dev, USB_DMA_CFG, reg);
d53d9e67 372
b9a07ae9 373 return rt2800_enable_radio(rt2x00dev);
d53d9e67
ID
374}
375
376static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
377{
b9a07ae9 378 rt2800_disable_radio(rt2x00dev);
d53d9e67
ID
379}
380
381static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
382 enum dev_state state)
383{
d53d9e67 384 if (state == STATE_AWAKE)
303c7d6a 385 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 2);
d53d9e67 386 else
303c7d6a 387 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0xff, 2);
d53d9e67
ID
388
389 return 0;
390}
391
392static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
393 enum dev_state state)
394{
395 int retval = 0;
396
397 switch (state) {
398 case STATE_RADIO_ON:
399 /*
400 * Before the radio can be enabled, the device first has
401 * to be woken up. After that it needs a bit of time
49513481 402 * to be fully awake and then the radio can be enabled.
d53d9e67
ID
403 */
404 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
405 msleep(1);
406 retval = rt2800usb_enable_radio(rt2x00dev);
407 break;
408 case STATE_RADIO_OFF:
409 /*
49513481 410 * After the radio has been disabled, the device should
d53d9e67
ID
411 * be put to sleep for powersaving.
412 */
413 rt2800usb_disable_radio(rt2x00dev);
414 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
415 break;
d53d9e67
ID
416 case STATE_RADIO_IRQ_ON:
417 case STATE_RADIO_IRQ_OFF:
418 /* No support, but no error either */
419 break;
420 case STATE_DEEP_SLEEP:
421 case STATE_SLEEP:
422 case STATE_STANDBY:
423 case STATE_AWAKE:
424 retval = rt2800usb_set_state(rt2x00dev, state);
425 break;
426 default:
427 retval = -ENOTSUPP;
428 break;
429 }
430
431 if (unlikely(retval))
ec9c4989
JP
432 rt2x00_err(rt2x00dev, "Device failed to enter state %d (%d)\n",
433 state, retval);
d53d9e67
ID
434
435 return retval;
436}
437
438/*
439 * TX descriptor initialization
440 */
0c5879bc 441static __le32 *rt2800usb_get_txwi(struct queue_entry *entry)
9cf4cb05 442{
0c5879bc
ID
443 if (entry->queue->qid == QID_BEACON)
444 return (__le32 *) (entry->skb->data);
445 else
446 return (__le32 *) (entry->skb->data + TXINFO_DESC_SIZE);
9cf4cb05
GW
447}
448
93331458 449static void rt2800usb_write_tx_desc(struct queue_entry *entry,
d53d9e67
ID
450 struct txentry_desc *txdesc)
451{
93331458
ID
452 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
453 __le32 *txi = (__le32 *) entry->skb->data;
d53d9e67
ID
454 u32 word;
455
d53d9e67 456 /*
59679b91 457 * Initialize TXINFO descriptor
d53d9e67
ID
458 */
459 rt2x00_desc_read(txi, 0, &word);
b43d63bd
RJH
460
461 /*
462 * The size of TXINFO_W0_USB_DMA_TX_PKT_LEN is
463 * TXWI + 802.11 header + L2 pad + payload + pad,
4bcafac8 464 * so need to decrease size of TXINFO.
b43d63bd 465 */
d53d9e67 466 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
4bcafac8 467 roundup(entry->skb->len, 4) - TXINFO_DESC_SIZE);
d53d9e67
ID
468 rt2x00_set_field32(&word, TXINFO_W0_WIV,
469 !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
470 rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
471 rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
472 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
473 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
474 test_bit(ENTRY_TXD_BURST, &txdesc->flags));
475 rt2x00_desc_write(txi, 0, word);
85b7a8b3
GW
476
477 /*
478 * Register descriptor details in skb frame descriptor.
479 */
0b8004aa 480 skbdesc->flags |= SKBDESC_DESC_IN_SKB;
85b7a8b3 481 skbdesc->desc = txi;
f0bda571 482 skbdesc->desc_len = TXINFO_DESC_SIZE + entry->queue->winfo_size;
d53d9e67
ID
483}
484
4bcafac8
JK
485/*
486 * TX data initialization
487 */
488static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
d53d9e67 489{
d53d9e67 490 /*
4bcafac8
JK
491 * pad(1~3 bytes) is needed after each 802.11 payload.
492 * USB end pad(4 bytes) is needed at each USB bulk out packet end.
b43d63bd
RJH
493 * TX frame format is :
494 * | TXINFO | TXWI | 802.11 header | L2 pad | payload | pad | USB end pad |
495 * |<------------- tx_pkt_len ------------->|
d53d9e67 496 */
11f16aef 497
4bcafac8 498 return roundup(entry->skb->len, 4) + 4;
d53d9e67
ID
499}
500
96481b20
ID
501/*
502 * TX control handlers
503 */
ed61e2b0
SG
504static enum txdone_entry_desc_flags
505rt2800usb_txdone_entry_check(struct queue_entry *entry, u32 reg)
8f66bbb5
GW
506{
507 __le32 *txwi;
508 u32 word;
509 int wcid, ack, pid;
5f8f718a 510 int tx_wcid, tx_ack, tx_pid, is_agg;
8f66bbb5 511
8f66bbb5
GW
512 /*
513 * This frames has returned with an IO error,
514 * so the status report is not intended for this
515 * frame.
516 */
ed61e2b0
SG
517 if (test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
518 return TXDONE_FAILURE;
519
520 wcid = rt2x00_get_field32(reg, TX_STA_FIFO_WCID);
521 ack = rt2x00_get_field32(reg, TX_STA_FIFO_TX_ACK_REQUIRED);
522 pid = rt2x00_get_field32(reg, TX_STA_FIFO_PID_TYPE);
5f8f718a 523 is_agg = rt2x00_get_field32(reg, TX_STA_FIFO_TX_AGGRE);
8f66bbb5
GW
524
525 /*
526 * Validate if this TX status report is intended for
527 * this entry by comparing the WCID/ACK/PID fields.
528 */
529 txwi = rt2800usb_get_txwi(entry);
530
531 rt2x00_desc_read(txwi, 1, &word);
532 tx_wcid = rt2x00_get_field32(word, TXWI_W1_WIRELESS_CLI_ID);
533 tx_ack = rt2x00_get_field32(word, TXWI_W1_ACK);
534 tx_pid = rt2x00_get_field32(word, TXWI_W1_PACKETID);
535
5f8f718a 536 if (wcid != tx_wcid || ack != tx_ack || (!is_agg && pid != tx_pid)) {
ec9c4989
JP
537 rt2x00_dbg(entry->queue->rt2x00dev,
538 "TX status report missed for queue %d entry %d\n",
539 entry->queue->qid, entry->entry_idx);
ed61e2b0 540 return TXDONE_UNKNOWN;
8f66bbb5
GW
541 }
542
ed61e2b0 543 return TXDONE_SUCCESS;
8f66bbb5
GW
544}
545
546static void rt2800usb_txdone(struct rt2x00_dev *rt2x00dev)
547{
548 struct data_queue *queue;
549 struct queue_entry *entry;
550 u32 reg;
551 u8 qid;
ed61e2b0 552 enum txdone_entry_desc_flags done_status;
8f66bbb5
GW
553
554 while (kfifo_get(&rt2x00dev->txstatus_fifo, &reg)) {
ed61e2b0
SG
555 /*
556 * TX_STA_FIFO_PID_QUEUE is a 2-bit field, thus qid is
557 * guaranteed to be one of the TX QIDs .
8f66bbb5
GW
558 */
559 qid = rt2x00_get_field32(reg, TX_STA_FIFO_PID_QUEUE);
560 queue = rt2x00queue_get_tx_queue(rt2x00dev, qid);
ed61e2b0
SG
561
562 if (unlikely(rt2x00queue_empty(queue))) {
45cfc516
SG
563 rt2x00_dbg(rt2x00dev, "Got TX status for an empty queue %u, dropping\n",
564 qid);
ed61e2b0 565 break;
8f66bbb5
GW
566 }
567
ed61e2b0
SG
568 entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
569
570 if (unlikely(test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
571 !test_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags))) {
ec9c4989
JP
572 rt2x00_warn(rt2x00dev, "Data pending for entry %u in queue %u\n",
573 entry->entry_idx, qid);
ed61e2b0 574 break;
8f66bbb5
GW
575 }
576
ed61e2b0
SG
577 done_status = rt2800usb_txdone_entry_check(entry, reg);
578 if (likely(done_status == TXDONE_SUCCESS))
579 rt2800_txdone_entry(entry, reg, rt2800usb_get_txwi(entry));
580 else
581 rt2x00lib_txdone_noinfo(entry, done_status);
8f66bbb5
GW
582 }
583}
584
627fdaf7 585static void rt2800usb_txdone_nostatus(struct rt2x00_dev *rt2x00dev)
96481b20 586{
96481b20
ID
587 struct data_queue *queue;
588 struct queue_entry *entry;
589
96481b20
ID
590 /*
591 * Process any trailing TX status reports for IO failures,
592 * we loop until we find the first non-IO error entry. This
593 * can either be a frame which is free, is being uploaded,
594 * or has completed the upload but didn't have an entry
595 * in the TX_STAT_FIFO register yet.
596 */
597 tx_queue_for_each(rt2x00dev, queue) {
598 while (!rt2x00queue_empty(queue)) {
599 entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
600
4b1bfb7d
SG
601 if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
602 !test_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags))
6e6d6932 603 break;
4b1bfb7d 604
17012216
SG
605 if (test_bit(ENTRY_DATA_IO_FAILED, &entry->flags) ||
606 rt2800usb_entry_txstatus_timeout(entry))
6e6d6932 607 rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
6e6d6932 608 else
96481b20 609 break;
96481b20
ID
610 }
611 }
627fdaf7
SG
612}
613
614static void rt2800usb_work_txdone(struct work_struct *work)
615{
616 struct rt2x00_dev *rt2x00dev =
617 container_of(work, struct rt2x00_dev, txdone_work);
618
f421111b
SG
619 while (!kfifo_is_empty(&rt2x00dev->txstatus_fifo) ||
620 rt2800usb_txstatus_timeout(rt2x00dev)) {
627fdaf7 621
f421111b 622 rt2800usb_txdone(rt2x00dev);
f0187a19 623
f421111b
SG
624 rt2800usb_txdone_nostatus(rt2x00dev);
625
626 /*
627 * The hw may delay sending the packet after DMA complete
628 * if the medium is busy, thus the TX_STA_FIFO entry is
629 * also delayed -> use a timer to retrieve it.
630 */
631 if (rt2800usb_txstatus_pending(rt2x00dev))
632 rt2800usb_async_read_tx_status(rt2x00dev);
633 }
96481b20
ID
634}
635
d53d9e67
ID
636/*
637 * RX control handlers
638 */
639static void rt2800usb_fill_rxdone(struct queue_entry *entry,
640 struct rxdone_entry_desc *rxdesc)
641{
d53d9e67 642 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
5de42f9e 643 __le32 *rxi = (__le32 *)entry->skb->data;
5de42f9e 644 __le32 *rxd;
2de64dd2 645 u32 word;
5de42f9e
BP
646 int rx_pkt_len;
647
2de64dd2
GW
648 /*
649 * Copy descriptor to the skbdesc->desc buffer, making it safe from
650 * moving of frame data in rt2x00usb.
651 */
652 memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
653
5de42f9e
BP
654 /*
655 * RX frame format is :
656 * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
657 * |<------------ rx_pkt_len -------------->|
658 */
2de64dd2
GW
659 rt2x00_desc_read(rxi, 0, &word);
660 rx_pkt_len = rt2x00_get_field32(word, RXINFO_W0_USB_DMA_RX_PKT_LEN);
5de42f9e
BP
661
662 /*
2de64dd2 663 * Remove the RXINFO structure from the sbk.
5de42f9e 664 */
2de64dd2 665 skb_pull(entry->skb, RXINFO_DESC_SIZE);
d53d9e67
ID
666
667 /*
efd5d6b0
SP
668 * Check for rx_pkt_len validity. Return if invalid, leaving
669 * rxdesc->size zeroed out by the upper level.
d53d9e67 670 */
efd5d6b0
SP
671 if (unlikely(rx_pkt_len == 0 ||
672 rx_pkt_len > entry->queue->data_size)) {
ec9c4989
JP
673 rt2x00_err(entry->queue->rt2x00dev,
674 "Bad frame size %d, forcing to 0\n", rx_pkt_len);
efd5d6b0
SP
675 return;
676 }
677
2de64dd2 678 rxd = (__le32 *)(entry->skb->data + rx_pkt_len);
d53d9e67
ID
679
680 /*
681 * It is now safe to read the descriptor on all architectures.
682 */
2de64dd2 683 rt2x00_desc_read(rxd, 0, &word);
d53d9e67 684
2de64dd2 685 if (rt2x00_get_field32(word, RXD_W0_CRC_ERROR))
d53d9e67
ID
686 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
687
2de64dd2 688 rxdesc->cipher_status = rt2x00_get_field32(word, RXD_W0_CIPHER_ERROR);
d53d9e67 689
2de64dd2 690 if (rt2x00_get_field32(word, RXD_W0_DECRYPTED)) {
d53d9e67
ID
691 /*
692 * Hardware has stripped IV/EIV data from 802.11 frame during
693 * decryption. Unfortunately the descriptor doesn't contain
694 * any fields with the EIV/IV data either, so they can't
695 * be restored by rt2x00lib.
696 */
697 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
698
a45f369d
GW
699 /*
700 * The hardware has already checked the Michael Mic and has
701 * stripped it from the frame. Signal this to mac80211.
702 */
703 rxdesc->flags |= RX_FLAG_MMIC_STRIPPED;
704
d53d9e67
ID
705 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
706 rxdesc->flags |= RX_FLAG_DECRYPTED;
707 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
708 rxdesc->flags |= RX_FLAG_MMIC_ERROR;
709 }
710
2de64dd2 711 if (rt2x00_get_field32(word, RXD_W0_MY_BSS))
d53d9e67
ID
712 rxdesc->dev_flags |= RXDONE_MY_BSS;
713
2de64dd2 714 if (rt2x00_get_field32(word, RXD_W0_L2PAD))
d53d9e67
ID
715 rxdesc->dev_flags |= RXDONE_L2PAD;
716
d53d9e67 717 /*
2de64dd2 718 * Remove RXD descriptor from end of buffer.
d53d9e67 719 */
2de64dd2 720 skb_trim(entry->skb, rx_pkt_len);
d53d9e67
ID
721
722 /*
2de64dd2 723 * Process the RXWI structure.
d53d9e67 724 */
74861922 725 rt2800_process_rxwi(entry, rxdesc);
d53d9e67
ID
726}
727
728/*
729 * Device probe functions.
730 */
de51b35d
MB
731static int rt2800usb_efuse_detect(struct rt2x00_dev *rt2x00dev)
732{
2c4db12e
AM
733 int retval;
734
735 retval = rt2800usb_autorun_detect(rt2x00dev);
736 if (retval < 0)
737 return retval;
738 if (retval)
de51b35d
MB
739 return 1;
740 return rt2800_efuse_detect(rt2x00dev);
741}
742
a02308e9 743static int rt2800usb_read_eeprom(struct rt2x00_dev *rt2x00dev)
7ab71325 744{
a02308e9
GJ
745 int retval;
746
2c4db12e
AM
747 retval = rt2800usb_efuse_detect(rt2x00dev);
748 if (retval < 0)
749 return retval;
750 if (retval)
a02308e9 751 retval = rt2800_read_eeprom_efuse(rt2x00dev);
40beee5c 752 else
a02308e9
GJ
753 retval = rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
754 EEPROM_SIZE);
755
756 return retval;
7ab71325
BZ
757}
758
d53d9e67
ID
759static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
760{
761 int retval;
762
ad417a53 763 retval = rt2800_probe_hw(rt2x00dev);
d53d9e67
ID
764 if (retval)
765 return retval;
766
d53d9e67 767 /*
ad417a53 768 * Set txstatus timer function.
d53d9e67 769 */
ad417a53 770 rt2x00dev->txstatus_timer.function = rt2800usb_tx_sta_fifo_timeout;
d53d9e67 771
96481b20
ID
772 /*
773 * Overwrite TX done handler
774 */
434bb46c 775 INIT_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
96481b20 776
d53d9e67
ID
777 return 0;
778}
779
e783619e
HS
780static const struct ieee80211_ops rt2800usb_mac80211_ops = {
781 .tx = rt2x00mac_tx,
782 .start = rt2x00mac_start,
783 .stop = rt2x00mac_stop,
784 .add_interface = rt2x00mac_add_interface,
785 .remove_interface = rt2x00mac_remove_interface,
786 .config = rt2x00mac_config,
787 .configure_filter = rt2x00mac_configure_filter,
788 .set_tim = rt2x00mac_set_tim,
789 .set_key = rt2x00mac_set_key,
790 .sw_scan_start = rt2x00mac_sw_scan_start,
791 .sw_scan_complete = rt2x00mac_sw_scan_complete,
792 .get_stats = rt2x00mac_get_stats,
9352c19f 793 .get_key_seq = rt2800_get_key_seq,
e783619e 794 .set_rts_threshold = rt2800_set_rts_threshold,
a2b1328a
HS
795 .sta_add = rt2x00mac_sta_add,
796 .sta_remove = rt2x00mac_sta_remove,
e783619e
HS
797 .bss_info_changed = rt2x00mac_bss_info_changed,
798 .conf_tx = rt2800_conf_tx,
799 .get_tsf = rt2800_get_tsf,
800 .rfkill_poll = rt2x00mac_rfkill_poll,
801 .ampdu_action = rt2800_ampdu_action,
f44df18c 802 .flush = rt2x00mac_flush,
977206d7 803 .get_survey = rt2800_get_survey,
e7dee444 804 .get_ringparam = rt2x00mac_get_ringparam,
5f0dd296 805 .tx_frames_pending = rt2x00mac_tx_frames_pending,
e783619e
HS
806};
807
e796643e
ID
808static const struct rt2800_ops rt2800usb_rt2800_ops = {
809 .register_read = rt2x00usb_register_read,
810 .register_read_lock = rt2x00usb_register_read_lock,
811 .register_write = rt2x00usb_register_write,
812 .register_write_lock = rt2x00usb_register_write_lock,
813 .register_multiread = rt2x00usb_register_multiread,
814 .register_multiwrite = rt2x00usb_register_multiwrite,
815 .regbusy_read = rt2x00usb_regbusy_read,
ad417a53
GW
816 .read_eeprom = rt2800usb_read_eeprom,
817 .hwcrypt_disabled = rt2800usb_hwcrypt_disabled,
e796643e
ID
818 .drv_write_firmware = rt2800usb_write_firmware,
819 .drv_init_registers = rt2800usb_init_registers,
0c5879bc 820 .drv_get_txwi = rt2800usb_get_txwi,
e796643e
ID
821};
822
d53d9e67
ID
823static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
824 .probe_hw = rt2800usb_probe_hw,
825 .get_firmware_name = rt2800usb_get_firmware_name,
f31c9a8c
ID
826 .check_firmware = rt2800_check_firmware,
827 .load_firmware = rt2800_load_firmware,
d53d9e67
ID
828 .initialize = rt2x00usb_initialize,
829 .uninitialize = rt2x00usb_uninitialize,
830 .clear_entry = rt2x00usb_clear_entry,
831 .set_device_state = rt2800usb_set_device_state,
f4450616
BZ
832 .rfkill_poll = rt2800_rfkill_poll,
833 .link_stats = rt2800_link_stats,
834 .reset_tuner = rt2800_reset_tuner,
835 .link_tuner = rt2800_link_tuner,
9e33a355 836 .gain_calibration = rt2800_gain_calibration,
2e9c43dd 837 .vco_calibration = rt2800_vco_calibration,
dbba306f
ID
838 .start_queue = rt2800usb_start_queue,
839 .kick_queue = rt2x00usb_kick_queue,
840 .stop_queue = rt2800usb_stop_queue,
5be65609 841 .flush_queue = rt2x00usb_flush_queue,
0e0d39e5 842 .tx_dma_done = rt2800usb_tx_dma_done,
d53d9e67 843 .write_tx_desc = rt2800usb_write_tx_desc,
4bcafac8 844 .write_tx_data = rt2800_write_tx_data,
f0194b2d 845 .write_beacon = rt2800_write_beacon,
69cf36a4 846 .clear_beacon = rt2800_clear_beacon,
d53d9e67 847 .get_tx_data_len = rt2800usb_get_tx_data_len,
d53d9e67 848 .fill_rxdone = rt2800usb_fill_rxdone,
f4450616
BZ
849 .config_shared_key = rt2800_config_shared_key,
850 .config_pairwise_key = rt2800_config_pairwise_key,
851 .config_filter = rt2800_config_filter,
852 .config_intf = rt2800_config_intf,
853 .config_erp = rt2800_config_erp,
854 .config_ant = rt2800_config_ant,
855 .config = rt2800_config,
a2b1328a
HS
856 .sta_add = rt2800_sta_add,
857 .sta_remove = rt2800_sta_remove,
d53d9e67
ID
858};
859
d36d13a3
GJ
860static void rt2800usb_queue_init(struct data_queue *queue)
861{
862 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
863 unsigned short txwi_size, rxwi_size;
d53d9e67 864
ae1b1c5d 865 rt2800_get_txwi_rxwi_size(rt2x00dev, &txwi_size, &rxwi_size);
d53d9e67 866
d36d13a3
GJ
867 switch (queue->qid) {
868 case QID_RX:
869 queue->limit = 128;
870 queue->data_size = AGGREGATION_SIZE;
871 queue->desc_size = RXINFO_DESC_SIZE;
872 queue->winfo_size = rxwi_size;
873 queue->priv_size = sizeof(struct queue_entry_priv_usb);
874 break;
875
876 case QID_AC_VO:
877 case QID_AC_VI:
878 case QID_AC_BE:
879 case QID_AC_BK:
880 queue->limit = 16;
881 queue->data_size = AGGREGATION_SIZE;
882 queue->desc_size = TXINFO_DESC_SIZE;
883 queue->winfo_size = txwi_size;
884 queue->priv_size = sizeof(struct queue_entry_priv_usb);
885 break;
886
887 case QID_BEACON:
888 queue->limit = 8;
889 queue->data_size = MGMT_FRAME_SIZE;
890 queue->desc_size = TXINFO_DESC_SIZE;
891 queue->winfo_size = txwi_size;
892 queue->priv_size = sizeof(struct queue_entry_priv_usb);
893 break;
894
895 case QID_ATIM:
896 /* fallthrough */
897 default:
898 BUG();
899 break;
900 }
901}
d53d9e67
ID
902
903static const struct rt2x00_ops rt2800usb_ops = {
04d0362e 904 .name = KBUILD_MODNAME,
3a1c0128 905 .drv_data_size = sizeof(struct rt2800_drv_data),
04d0362e
GW
906 .max_ap_intf = 8,
907 .eeprom_size = EEPROM_SIZE,
908 .rf_size = RF_SIZE,
909 .tx_queues = NUM_TX_QUEUES,
d36d13a3 910 .queue_init = rt2800usb_queue_init,
04d0362e 911 .lib = &rt2800usb_rt2x00_ops,
e796643e 912 .drv = &rt2800usb_rt2800_ops,
e783619e 913 .hw = &rt2800usb_mac80211_ops,
d53d9e67 914#ifdef CONFIG_RT2X00_LIB_DEBUGFS
04d0362e 915 .debugfs = &rt2800_rt2x00debug,
d53d9e67
ID
916#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
917};
918
919/*
920 * rt2800usb module information.
921 */
922static struct usb_device_id rt2800usb_device_table[] = {
d53d9e67 923 /* Abocom */
e01ae27f
GW
924 { USB_DEVICE(0x07b8, 0x2870) },
925 { USB_DEVICE(0x07b8, 0x2770) },
926 { USB_DEVICE(0x07b8, 0x3070) },
927 { USB_DEVICE(0x07b8, 0x3071) },
928 { USB_DEVICE(0x07b8, 0x3072) },
929 { USB_DEVICE(0x1482, 0x3c09) },
a6a8d66e 930 /* AirTies */
87a3b89f 931 { USB_DEVICE(0x1eda, 0x2012) },
63b37641 932 { USB_DEVICE(0x1eda, 0x2210) },
e01ae27f 933 { USB_DEVICE(0x1eda, 0x2310) },
e8958330 934 /* Allwin */
e01ae27f
GW
935 { USB_DEVICE(0x8516, 0x2070) },
936 { USB_DEVICE(0x8516, 0x2770) },
937 { USB_DEVICE(0x8516, 0x2870) },
938 { USB_DEVICE(0x8516, 0x3070) },
939 { USB_DEVICE(0x8516, 0x3071) },
940 { USB_DEVICE(0x8516, 0x3072) },
b3ba44c6 941 /* Alpha Networks */
e01ae27f
GW
942 { USB_DEVICE(0x14b2, 0x3c06) },
943 { USB_DEVICE(0x14b2, 0x3c07) },
944 { USB_DEVICE(0x14b2, 0x3c09) },
945 { USB_DEVICE(0x14b2, 0x3c12) },
946 { USB_DEVICE(0x14b2, 0x3c23) },
947 { USB_DEVICE(0x14b2, 0x3c25) },
948 { USB_DEVICE(0x14b2, 0x3c27) },
949 { USB_DEVICE(0x14b2, 0x3c28) },
950 { USB_DEVICE(0x14b2, 0x3c2c) },
d53d9e67 951 /* Amit */
e01ae27f 952 { USB_DEVICE(0x15c5, 0x0008) },
2edcb7ff 953 /* Askey */
e01ae27f 954 { USB_DEVICE(0x1690, 0x0740) },
d53d9e67 955 /* ASUS */
e01ae27f
GW
956 { USB_DEVICE(0x0b05, 0x1731) },
957 { USB_DEVICE(0x0b05, 0x1732) },
958 { USB_DEVICE(0x0b05, 0x1742) },
959 { USB_DEVICE(0x0b05, 0x1784) },
960 { USB_DEVICE(0x1761, 0x0b05) },
d53d9e67 961 /* AzureWave */
e01ae27f
GW
962 { USB_DEVICE(0x13d3, 0x3247) },
963 { USB_DEVICE(0x13d3, 0x3273) },
964 { USB_DEVICE(0x13d3, 0x3305) },
965 { USB_DEVICE(0x13d3, 0x3307) },
966 { USB_DEVICE(0x13d3, 0x3321) },
d53d9e67 967 /* Belkin */
e01ae27f
GW
968 { USB_DEVICE(0x050d, 0x8053) },
969 { USB_DEVICE(0x050d, 0x805c) },
970 { USB_DEVICE(0x050d, 0x815c) },
bc93eda7 971 { USB_DEVICE(0x050d, 0x825a) },
e01ae27f
GW
972 { USB_DEVICE(0x050d, 0x825b) },
973 { USB_DEVICE(0x050d, 0x935a) },
974 { USB_DEVICE(0x050d, 0x935b) },
d53d9e67 975 /* Buffalo */
e01ae27f 976 { USB_DEVICE(0x0411, 0x00e8) },
c18b7806 977 { USB_DEVICE(0x0411, 0x0158) },
bc93eda7 978 { USB_DEVICE(0x0411, 0x015d) },
e01ae27f
GW
979 { USB_DEVICE(0x0411, 0x016f) },
980 { USB_DEVICE(0x0411, 0x01a2) },
a769f957 981 { USB_DEVICE(0x0411, 0x01ee) },
708ff083 982 { USB_DEVICE(0x0411, 0x01a8) },
f36f2990 983 { USB_DEVICE(0x0411, 0x01fd) },
d53d9e67 984 /* Corega */
e01ae27f
GW
985 { USB_DEVICE(0x07aa, 0x002f) },
986 { USB_DEVICE(0x07aa, 0x003c) },
987 { USB_DEVICE(0x07aa, 0x003f) },
988 { USB_DEVICE(0x18c5, 0x0012) },
de1ebdce 989 /* D-Link */
e01ae27f
GW
990 { USB_DEVICE(0x07d1, 0x3c09) },
991 { USB_DEVICE(0x07d1, 0x3c0a) },
992 { USB_DEVICE(0x07d1, 0x3c0d) },
993 { USB_DEVICE(0x07d1, 0x3c0e) },
994 { USB_DEVICE(0x07d1, 0x3c0f) },
995 { USB_DEVICE(0x07d1, 0x3c11) },
bc93eda7
GW
996 { USB_DEVICE(0x07d1, 0x3c13) },
997 { USB_DEVICE(0x07d1, 0x3c15) },
e01ae27f 998 { USB_DEVICE(0x07d1, 0x3c16) },
cd435d56 999 { USB_DEVICE(0x07d1, 0x3c17) },
7f6d7407 1000 { USB_DEVICE(0x2001, 0x3317) },
d42a179b 1001 { USB_DEVICE(0x2001, 0x3c1b) },
ea345c14 1002 { USB_DEVICE(0x2001, 0x3c25) },
f01a0229 1003 /* Draytek */
e01ae27f 1004 { USB_DEVICE(0x07fa, 0x7712) },
276b02e2
AB
1005 /* DVICO */
1006 { USB_DEVICE(0x0fe9, 0xb307) },
d53d9e67 1007 /* Edimax */
e828b9fb 1008 { USB_DEVICE(0x7392, 0x4085) },
e01ae27f
GW
1009 { USB_DEVICE(0x7392, 0x7711) },
1010 { USB_DEVICE(0x7392, 0x7717) },
1011 { USB_DEVICE(0x7392, 0x7718) },
bc93eda7 1012 { USB_DEVICE(0x7392, 0x7722) },
ce2ebc9b 1013 /* Encore */
e01ae27f
GW
1014 { USB_DEVICE(0x203d, 0x1480) },
1015 { USB_DEVICE(0x203d, 0x14a9) },
d53d9e67 1016 /* EnGenius */
e01ae27f
GW
1017 { USB_DEVICE(0x1740, 0x9701) },
1018 { USB_DEVICE(0x1740, 0x9702) },
1019 { USB_DEVICE(0x1740, 0x9703) },
1020 { USB_DEVICE(0x1740, 0x9705) },
1021 { USB_DEVICE(0x1740, 0x9706) },
1022 { USB_DEVICE(0x1740, 0x9707) },
1023 { USB_DEVICE(0x1740, 0x9708) },
1024 { USB_DEVICE(0x1740, 0x9709) },
b3ba44c6 1025 /* Gemtek */
e01ae27f 1026 { USB_DEVICE(0x15a9, 0x0012) },
de1ebdce 1027 /* Gigabyte */
e01ae27f
GW
1028 { USB_DEVICE(0x1044, 0x800b) },
1029 { USB_DEVICE(0x1044, 0x800d) },
a6a8d66e 1030 /* Hawking */
e01ae27f
GW
1031 { USB_DEVICE(0x0e66, 0x0001) },
1032 { USB_DEVICE(0x0e66, 0x0003) },
1033 { USB_DEVICE(0x0e66, 0x0009) },
1034 { USB_DEVICE(0x0e66, 0x000b) },
1035 { USB_DEVICE(0x0e66, 0x0013) },
1036 { USB_DEVICE(0x0e66, 0x0017) },
1037 { USB_DEVICE(0x0e66, 0x0018) },
de1ebdce 1038 /* I-O DATA */
e01ae27f
GW
1039 { USB_DEVICE(0x04bb, 0x0945) },
1040 { USB_DEVICE(0x04bb, 0x0947) },
1041 { USB_DEVICE(0x04bb, 0x0948) },
a6a8d66e 1042 /* Linksys */
e01ae27f
GW
1043 { USB_DEVICE(0x13b1, 0x0031) },
1044 { USB_DEVICE(0x1737, 0x0070) },
1045 { USB_DEVICE(0x1737, 0x0071) },
3f81f8f1 1046 { USB_DEVICE(0x1737, 0x0077) },
bc93eda7 1047 { USB_DEVICE(0x1737, 0x0078) },
f01a0229 1048 /* Logitec */
e01ae27f
GW
1049 { USB_DEVICE(0x0789, 0x0162) },
1050 { USB_DEVICE(0x0789, 0x0163) },
1051 { USB_DEVICE(0x0789, 0x0164) },
1052 { USB_DEVICE(0x0789, 0x0166) },
a6a8d66e 1053 /* Motorola */
e01ae27f 1054 { USB_DEVICE(0x100d, 0x9031) },
de1ebdce 1055 /* MSI */
e01ae27f
GW
1056 { USB_DEVICE(0x0db0, 0x3820) },
1057 { USB_DEVICE(0x0db0, 0x3821) },
1058 { USB_DEVICE(0x0db0, 0x3822) },
1059 { USB_DEVICE(0x0db0, 0x3870) },
1060 { USB_DEVICE(0x0db0, 0x3871) },
1061 { USB_DEVICE(0x0db0, 0x6899) },
1062 { USB_DEVICE(0x0db0, 0x821a) },
1063 { USB_DEVICE(0x0db0, 0x822a) },
1064 { USB_DEVICE(0x0db0, 0x822b) },
1065 { USB_DEVICE(0x0db0, 0x822c) },
1066 { USB_DEVICE(0x0db0, 0x870a) },
1067 { USB_DEVICE(0x0db0, 0x871a) },
1068 { USB_DEVICE(0x0db0, 0x871b) },
1069 { USB_DEVICE(0x0db0, 0x871c) },
1070 { USB_DEVICE(0x0db0, 0x899a) },
bc93eda7 1071 /* Ovislink */
910367e3 1072 { USB_DEVICE(0x1b75, 0x3070) },
bc93eda7
GW
1073 { USB_DEVICE(0x1b75, 0x3071) },
1074 { USB_DEVICE(0x1b75, 0x3072) },
664d6a79 1075 { USB_DEVICE(0x1b75, 0xa200) },
fc3f1487 1076 /* Para */
e01ae27f 1077 { USB_DEVICE(0x20b8, 0x8888) },
de1ebdce 1078 /* Pegatron */
bc93eda7 1079 { USB_DEVICE(0x1d4d, 0x0002) },
e01ae27f
GW
1080 { USB_DEVICE(0x1d4d, 0x000c) },
1081 { USB_DEVICE(0x1d4d, 0x000e) },
1082 { USB_DEVICE(0x1d4d, 0x0011) },
a6a8d66e 1083 /* Philips */
e01ae27f 1084 { USB_DEVICE(0x0471, 0x200f) },
de1ebdce 1085 /* Planex */
e828b9fb 1086 { USB_DEVICE(0x2019, 0x5201) },
e01ae27f
GW
1087 { USB_DEVICE(0x2019, 0xab25) },
1088 { USB_DEVICE(0x2019, 0xed06) },
de1ebdce 1089 /* Quanta */
e01ae27f 1090 { USB_DEVICE(0x1a32, 0x0304) },
de1ebdce 1091 /* Ralink */
e01ae27f
GW
1092 { USB_DEVICE(0x148f, 0x2070) },
1093 { USB_DEVICE(0x148f, 0x2770) },
1094 { USB_DEVICE(0x148f, 0x2870) },
1095 { USB_DEVICE(0x148f, 0x3070) },
1096 { USB_DEVICE(0x148f, 0x3071) },
1097 { USB_DEVICE(0x148f, 0x3072) },
a6a8d66e 1098 /* Samsung */
e01ae27f 1099 { USB_DEVICE(0x04e8, 0x2018) },
a6a8d66e 1100 /* Siemens */
e01ae27f 1101 { USB_DEVICE(0x129b, 0x1828) },
de1ebdce 1102 /* Sitecom */
e01ae27f
GW
1103 { USB_DEVICE(0x0df6, 0x0017) },
1104 { USB_DEVICE(0x0df6, 0x002b) },
1105 { USB_DEVICE(0x0df6, 0x002c) },
1106 { USB_DEVICE(0x0df6, 0x002d) },
1107 { USB_DEVICE(0x0df6, 0x0039) },
1108 { USB_DEVICE(0x0df6, 0x003b) },
1109 { USB_DEVICE(0x0df6, 0x003d) },
1110 { USB_DEVICE(0x0df6, 0x003e) },
1111 { USB_DEVICE(0x0df6, 0x003f) },
1112 { USB_DEVICE(0x0df6, 0x0040) },
1113 { USB_DEVICE(0x0df6, 0x0042) },
1114 { USB_DEVICE(0x0df6, 0x0047) },
1115 { USB_DEVICE(0x0df6, 0x0048) },
87a3b89f
GW
1116 { USB_DEVICE(0x0df6, 0x0051) },
1117 { USB_DEVICE(0x0df6, 0x005f) },
acb56120 1118 { USB_DEVICE(0x0df6, 0x0060) },
de1ebdce 1119 /* SMC */
e01ae27f
GW
1120 { USB_DEVICE(0x083a, 0x6618) },
1121 { USB_DEVICE(0x083a, 0x7511) },
1122 { USB_DEVICE(0x083a, 0x7512) },
1123 { USB_DEVICE(0x083a, 0x7522) },
1124 { USB_DEVICE(0x083a, 0x8522) },
1125 { USB_DEVICE(0x083a, 0xa618) },
1126 { USB_DEVICE(0x083a, 0xa701) },
1127 { USB_DEVICE(0x083a, 0xa702) },
1128 { USB_DEVICE(0x083a, 0xa703) },
1129 { USB_DEVICE(0x083a, 0xb522) },
a6a8d66e 1130 /* Sparklan */
e01ae27f 1131 { USB_DEVICE(0x15a9, 0x0006) },
a6a8d66e 1132 /* Sweex */
bc93eda7 1133 { USB_DEVICE(0x177f, 0x0153) },
12b66398 1134 { USB_DEVICE(0x177f, 0x0164) },
e01ae27f 1135 { USB_DEVICE(0x177f, 0x0302) },
bc93eda7 1136 { USB_DEVICE(0x177f, 0x0313) },
36f318bb 1137 { USB_DEVICE(0x177f, 0x0323) },
12b66398 1138 { USB_DEVICE(0x177f, 0x0324) },
b3ba44c6 1139 /* U-Media */
e01ae27f
GW
1140 { USB_DEVICE(0x157e, 0x300e) },
1141 { USB_DEVICE(0x157e, 0x3013) },
a6a8d66e 1142 /* ZCOM */
e01ae27f
GW
1143 { USB_DEVICE(0x0cde, 0x0022) },
1144 { USB_DEVICE(0x0cde, 0x0025) },
de1ebdce 1145 /* Zinwell */
e01ae27f
GW
1146 { USB_DEVICE(0x5a57, 0x0280) },
1147 { USB_DEVICE(0x5a57, 0x0282) },
1148 { USB_DEVICE(0x5a57, 0x0283) },
1149 { USB_DEVICE(0x5a57, 0x5257) },
a6a8d66e 1150 /* Zyxel */
e01ae27f
GW
1151 { USB_DEVICE(0x0586, 0x3416) },
1152 { USB_DEVICE(0x0586, 0x3418) },
cd435d56 1153 { USB_DEVICE(0x0586, 0x341a) },
e01ae27f 1154 { USB_DEVICE(0x0586, 0x341e) },
87a3b89f 1155 { USB_DEVICE(0x0586, 0x343e) },
f93bc9b3 1156#ifdef CONFIG_RT2800USB_RT33XX
43bf8c24
EBK
1157 /* Belkin */
1158 { USB_DEVICE(0x050d, 0x945b) },
8fd9d059
AP
1159 /* D-Link */
1160 { USB_DEVICE(0x2001, 0x3c17) },
63b37641
XVP
1161 /* Panasonic */
1162 { USB_DEVICE(0x083a, 0xb511) },
1163 /* Philips */
1164 { USB_DEVICE(0x0471, 0x20dd) },
f93bc9b3 1165 /* Ralink */
e01ae27f
GW
1166 { USB_DEVICE(0x148f, 0x3370) },
1167 { USB_DEVICE(0x148f, 0x8070) },
f93bc9b3 1168 /* Sitecom */
e01ae27f 1169 { USB_DEVICE(0x0df6, 0x0050) },
12b66398
XVP
1170 /* Sweex */
1171 { USB_DEVICE(0x177f, 0x0163) },
1172 { USB_DEVICE(0x177f, 0x0165) },
f93bc9b3 1173#endif
de1ebdce 1174#ifdef CONFIG_RT2800USB_RT35XX
e8958330 1175 /* Allwin */
e01ae27f 1176 { USB_DEVICE(0x8516, 0x3572) },
de1ebdce 1177 /* Askey */
e01ae27f 1178 { USB_DEVICE(0x1690, 0x0744) },
e828b9fb 1179 { USB_DEVICE(0x1690, 0x0761) },
63b37641 1180 { USB_DEVICE(0x1690, 0x0764) },
177ef836
GW
1181 /* ASUS */
1182 { USB_DEVICE(0x0b05, 0x179d) },
de1ebdce 1183 /* Cisco */
e01ae27f 1184 { USB_DEVICE(0x167b, 0x4001) },
de1ebdce 1185 /* EnGenius */
e01ae27f 1186 { USB_DEVICE(0x1740, 0x9801) },
de1ebdce 1187 /* I-O DATA */
e01ae27f 1188 { USB_DEVICE(0x04bb, 0x0944) },
b3ba44c6 1189 /* Linksys */
e01ae27f
GW
1190 { USB_DEVICE(0x13b1, 0x002f) },
1191 { USB_DEVICE(0x1737, 0x0079) },
274dede8
XVP
1192 /* Logitec */
1193 { USB_DEVICE(0x0789, 0x0170) },
de1ebdce 1194 /* Ralink */
e01ae27f 1195 { USB_DEVICE(0x148f, 0x3572) },
de1ebdce 1196 /* Sitecom */
e01ae27f 1197 { USB_DEVICE(0x0df6, 0x0041) },
acb56120 1198 { USB_DEVICE(0x0df6, 0x0062) },
63b37641
XVP
1199 { USB_DEVICE(0x0df6, 0x0065) },
1200 { USB_DEVICE(0x0df6, 0x0066) },
1201 { USB_DEVICE(0x0df6, 0x0068) },
8d4ca61a 1202 /* Toshiba */
e01ae27f 1203 { USB_DEVICE(0x0930, 0x0a07) },
de1ebdce 1204 /* Zinwell */
e01ae27f 1205 { USB_DEVICE(0x5a57, 0x0284) },
de1ebdce 1206#endif
d02433d1 1207#ifdef CONFIG_RT2800USB_RT3573
63706526
XVP
1208 /* AirLive */
1209 { USB_DEVICE(0x1b75, 0x7733) },
1210 /* ASUS */
1211 { USB_DEVICE(0x0b05, 0x17bc) },
1212 { USB_DEVICE(0x0b05, 0x17ad) },
1213 /* Belkin */
1214 { USB_DEVICE(0x050d, 0x1103) },
1215 /* Cameo */
1216 { USB_DEVICE(0x148f, 0xf301) },
274dede8
XVP
1217 /* D-Link */
1218 { USB_DEVICE(0x2001, 0x3c1f) },
63706526
XVP
1219 /* Edimax */
1220 { USB_DEVICE(0x7392, 0x7733) },
1221 /* Hawking */
1222 { USB_DEVICE(0x0e66, 0x0020) },
1223 { USB_DEVICE(0x0e66, 0x0021) },
1224 /* I-O DATA */
1225 { USB_DEVICE(0x04bb, 0x094e) },
d02433d1
GJ
1226 /* Linksys */
1227 { USB_DEVICE(0x13b1, 0x003b) },
63706526
XVP
1228 /* Logitec */
1229 { USB_DEVICE(0x0789, 0x016b) },
1230 /* NETGEAR */
1231 { USB_DEVICE(0x0846, 0x9012) },
274dede8 1232 { USB_DEVICE(0x0846, 0x9013) },
63706526
XVP
1233 { USB_DEVICE(0x0846, 0x9019) },
1234 /* Planex */
1235 { USB_DEVICE(0x2019, 0xed19) },
1236 /* Ralink */
1237 { USB_DEVICE(0x148f, 0x3573) },
1238 /* Sitecom */
1239 { USB_DEVICE(0x0df6, 0x0067) },
1240 { USB_DEVICE(0x0df6, 0x006a) },
274dede8 1241 { USB_DEVICE(0x0df6, 0x006e) },
63706526
XVP
1242 /* ZyXEL */
1243 { USB_DEVICE(0x0586, 0x3421) },
d02433d1 1244#endif
aca355b9 1245#ifdef CONFIG_RT2800USB_RT53XX
2ed71884
JL
1246 /* Arcadyan */
1247 { USB_DEVICE(0x043e, 0x7a12) },
cd435d56 1248 { USB_DEVICE(0x043e, 0x7a32) },
6a06e554
XVP
1249 /* ASUS */
1250 { USB_DEVICE(0x0b05, 0x17e8) },
aca355b9
GW
1251 /* Azurewave */
1252 { USB_DEVICE(0x13d3, 0x3329) },
1253 { USB_DEVICE(0x13d3, 0x3365) },
63b37641
XVP
1254 /* D-Link */
1255 { USB_DEVICE(0x2001, 0x3c15) },
1256 { USB_DEVICE(0x2001, 0x3c19) },
1257 { USB_DEVICE(0x2001, 0x3c1c) },
1258 { USB_DEVICE(0x2001, 0x3c1d) },
fe8e4105 1259 { USB_DEVICE(0x2001, 0x3c1e) },
274dede8
XVP
1260 { USB_DEVICE(0x2001, 0x3c20) },
1261 { USB_DEVICE(0x2001, 0x3c22) },
1262 { USB_DEVICE(0x2001, 0x3c23) },
2ed71884
JL
1263 /* LG innotek */
1264 { USB_DEVICE(0x043e, 0x7a22) },
cd435d56 1265 { USB_DEVICE(0x043e, 0x7a42) },
2ed71884
JL
1266 /* Panasonic */
1267 { USB_DEVICE(0x04da, 0x1801) },
1268 { USB_DEVICE(0x04da, 0x1800) },
cd435d56 1269 { USB_DEVICE(0x04da, 0x23f6) },
2ed71884
JL
1270 /* Philips */
1271 { USB_DEVICE(0x0471, 0x2104) },
cd435d56
XVP
1272 { USB_DEVICE(0x0471, 0x2126) },
1273 { USB_DEVICE(0x0471, 0x2180) },
1274 { USB_DEVICE(0x0471, 0x2181) },
1275 { USB_DEVICE(0x0471, 0x2182) },
aca355b9
GW
1276 /* Ralink */
1277 { USB_DEVICE(0x148f, 0x5370) },
1278 { USB_DEVICE(0x148f, 0x5372) },
1279#endif
b8863f8b 1280#ifdef CONFIG_RT2800USB_RT55XX
856a850a 1281 /* Arcadyan */
7ce0bad5 1282 { USB_DEVICE(0x043e, 0x7a32) },
856a850a 1283 /* AVM GmbH */
7ce0bad5 1284 { USB_DEVICE(0x057c, 0x8501) },
274dede8
XVP
1285 /* Buffalo */
1286 { USB_DEVICE(0x0411, 0x0241) },
6a06e554 1287 { USB_DEVICE(0x0411, 0x0253) },
274dede8 1288 /* D-Link */
7ce0bad5 1289 { USB_DEVICE(0x2001, 0x3c1a) },
274dede8 1290 { USB_DEVICE(0x2001, 0x3c21) },
856a850a 1291 /* Proware */
7ce0bad5 1292 { USB_DEVICE(0x043e, 0x7a13) },
856a850a 1293 /* Ralink */
7ce0bad5 1294 { USB_DEVICE(0x148f, 0x5572) },
274dede8
XVP
1295 /* TRENDnet */
1296 { USB_DEVICE(0x20f4, 0x724a) },
b8863f8b 1297#endif
de1ebdce
GW
1298#ifdef CONFIG_RT2800USB_UNKNOWN
1299 /*
1300 * Unclear what kind of devices these are (they aren't supported by the
12ef116b 1301 * vendor linux driver).
de1ebdce 1302 */
87a3b89f
GW
1303 /* Abocom */
1304 { USB_DEVICE(0x07b8, 0x3073) },
1305 { USB_DEVICE(0x07b8, 0x3074) },
b3ba44c6 1306 /* Alpha Networks */
e01ae27f
GW
1307 { USB_DEVICE(0x14b2, 0x3c08) },
1308 { USB_DEVICE(0x14b2, 0x3c11) },
de1ebdce 1309 /* Amigo */
e01ae27f
GW
1310 { USB_DEVICE(0x0e0b, 0x9031) },
1311 { USB_DEVICE(0x0e0b, 0x9041) },
de1ebdce 1312 /* ASUS */
87a3b89f 1313 { USB_DEVICE(0x0b05, 0x166a) },
e01ae27f
GW
1314 { USB_DEVICE(0x0b05, 0x1760) },
1315 { USB_DEVICE(0x0b05, 0x1761) },
1316 { USB_DEVICE(0x0b05, 0x1790) },
d9d76a04 1317 { USB_DEVICE(0x0b05, 0x17a7) },
de1ebdce 1318 /* AzureWave */
e01ae27f
GW
1319 { USB_DEVICE(0x13d3, 0x3262) },
1320 { USB_DEVICE(0x13d3, 0x3284) },
1321 { USB_DEVICE(0x13d3, 0x3322) },
d9d76a04
XVP
1322 { USB_DEVICE(0x13d3, 0x3340) },
1323 { USB_DEVICE(0x13d3, 0x3399) },
1324 { USB_DEVICE(0x13d3, 0x3400) },
1325 { USB_DEVICE(0x13d3, 0x3401) },
de1ebdce 1326 /* Belkin */
87a3b89f 1327 { USB_DEVICE(0x050d, 0x1003) },
de1ebdce 1328 /* Buffalo */
e01ae27f
GW
1329 { USB_DEVICE(0x0411, 0x012e) },
1330 { USB_DEVICE(0x0411, 0x0148) },
1331 { USB_DEVICE(0x0411, 0x0150) },
de1ebdce 1332 /* Corega */
e01ae27f
GW
1333 { USB_DEVICE(0x07aa, 0x0041) },
1334 { USB_DEVICE(0x07aa, 0x0042) },
1335 { USB_DEVICE(0x18c5, 0x0008) },
de1ebdce 1336 /* D-Link */
e01ae27f 1337 { USB_DEVICE(0x07d1, 0x3c0b) },
de1ebdce 1338 /* Encore */
e01ae27f 1339 { USB_DEVICE(0x203d, 0x14a1) },
d9d76a04
XVP
1340 /* EnGenius */
1341 { USB_DEVICE(0x1740, 0x0600) },
1342 { USB_DEVICE(0x1740, 0x0602) },
d53d9e67 1343 /* Gemtek */
e01ae27f 1344 { USB_DEVICE(0x15a9, 0x0010) },
d53d9e67 1345 /* Gigabyte */
e01ae27f 1346 { USB_DEVICE(0x1044, 0x800c) },
d9d76a04
XVP
1347 /* Hercules */
1348 { USB_DEVICE(0x06f8, 0xe036) },
87a3b89f
GW
1349 /* Huawei */
1350 { USB_DEVICE(0x148f, 0xf101) },
1351 /* I-O DATA */
1352 { USB_DEVICE(0x04bb, 0x094b) },
d53d9e67 1353 /* LevelOne */
e01ae27f
GW
1354 { USB_DEVICE(0x1740, 0x0605) },
1355 { USB_DEVICE(0x1740, 0x0615) },
87a3b89f
GW
1356 /* Logitec */
1357 { USB_DEVICE(0x0789, 0x0168) },
1358 { USB_DEVICE(0x0789, 0x0169) },
d53d9e67 1359 /* Motorola */
e01ae27f 1360 { USB_DEVICE(0x100d, 0x9032) },
d53d9e67 1361 /* Pegatron */
e01ae27f 1362 { USB_DEVICE(0x05a6, 0x0101) },
e01ae27f 1363 { USB_DEVICE(0x1d4d, 0x0010) },
d53d9e67 1364 /* Planex */
e01ae27f 1365 { USB_DEVICE(0x2019, 0xab24) },
274dede8 1366 { USB_DEVICE(0x2019, 0xab29) },
d53d9e67 1367 /* Qcom */
e01ae27f 1368 { USB_DEVICE(0x18e8, 0x6259) },
87a3b89f
GW
1369 /* RadioShack */
1370 { USB_DEVICE(0x08b9, 0x1197) },
1371 /* Sitecom */
1372 { USB_DEVICE(0x0df6, 0x003c) },
1373 { USB_DEVICE(0x0df6, 0x004a) },
1374 { USB_DEVICE(0x0df6, 0x004d) },
1375 { USB_DEVICE(0x0df6, 0x0053) },
d9d76a04
XVP
1376 { USB_DEVICE(0x0df6, 0x0069) },
1377 { USB_DEVICE(0x0df6, 0x006f) },
6a06e554 1378 { USB_DEVICE(0x0df6, 0x0078) },
d53d9e67 1379 /* SMC */
e01ae27f
GW
1380 { USB_DEVICE(0x083a, 0xa512) },
1381 { USB_DEVICE(0x083a, 0xc522) },
1382 { USB_DEVICE(0x083a, 0xd522) },
1383 { USB_DEVICE(0x083a, 0xf511) },
d9d76a04
XVP
1384 /* Sweex */
1385 { USB_DEVICE(0x177f, 0x0254) },
1386 /* TP-LINK */
1387 { USB_DEVICE(0xf201, 0x5370) },
de1ebdce 1388#endif
d53d9e67
ID
1389 { 0, }
1390};
1391
1392MODULE_AUTHOR(DRV_PROJECT);
1393MODULE_VERSION(DRV_VERSION);
1394MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
1395MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
1396MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
1397MODULE_FIRMWARE(FIRMWARE_RT2870);
1398MODULE_LICENSE("GPL");
1399
e01ae27f
GW
1400static int rt2800usb_probe(struct usb_interface *usb_intf,
1401 const struct usb_device_id *id)
1402{
1403 return rt2x00usb_probe(usb_intf, &rt2800usb_ops);
1404}
1405
d53d9e67
ID
1406static struct usb_driver rt2800usb_driver = {
1407 .name = KBUILD_MODNAME,
1408 .id_table = rt2800usb_device_table,
e01ae27f 1409 .probe = rt2800usb_probe,
d53d9e67
ID
1410 .disconnect = rt2x00usb_disconnect,
1411 .suspend = rt2x00usb_suspend,
1412 .resume = rt2x00usb_resume,
761ce8c4 1413 .reset_resume = rt2x00usb_resume,
e1f12eb6 1414 .disable_hub_initiated_lpm = 1,
d53d9e67
ID
1415};
1416
d632eb1b 1417module_usb_driver(rt2800usb_driver);