blob: 862430e600add7c09ef3bb46a3ada2b8af039429 [file] [log] [blame]
Ivo van Doornd53d9e62009-04-26 15:47:48 +02001/*
Ivo van Doorn96481b22010-08-06 20:47:57 +02002 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3 Copyright (C) 2009 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01004 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>
Ivo van Doornd53d9e62009-04-26 15:47:48 +02008 <http://rt2x00.serialmonkey.com>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the
22 Free Software Foundation, Inc.,
23 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 */
25
26/*
27 Module: rt2800usb
28 Abstract: rt2800usb device specific routines.
29 Supported chipsets: RT2800U.
30 */
31
Ivo van Doornd53d9e62009-04-26 15:47:48 +020032#include <linux/delay.h>
33#include <linux/etherdevice.h>
34#include <linux/init.h>
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/usb.h>
38
39#include "rt2x00.h"
40#include "rt2x00usb.h"
Bartlomiej Zolnierkiewicz7ef5cc92009-11-04 18:35:32 +010041#include "rt2800lib.h"
Bartlomiej Zolnierkiewiczb54f78a2009-11-04 18:35:54 +010042#include "rt2800.h"
Ivo van Doornd53d9e62009-04-26 15:47:48 +020043#include "rt2800usb.h"
44
45/*
46 * Allow hardware encryption to be disabled.
47 */
Mark Einon144b80b2010-11-06 15:45:41 +010048static int modparam_nohwcrypt;
Ivo van Doornd53d9e62009-04-26 15:47:48 +020049module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
50MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
51
Ivo van Doornd53d9e62009-04-26 15:47:48 +020052/*
Ivo van Doorn5450b7e2010-12-13 12:34:22 +010053 * Queue handlers.
54 */
55static void rt2800usb_start_queue(struct data_queue *queue)
56{
57 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
58 u32 reg;
59
60 switch (queue->qid) {
61 case QID_RX:
62 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
63 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
64 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
65 break;
66 case QID_BEACON:
67 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
68 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 1);
69 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 1);
70 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
71 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
72 break;
73 default:
74 break;
75 }
76}
77
78static void rt2800usb_stop_queue(struct data_queue *queue)
79{
80 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
81 u32 reg;
82
83 switch (queue->qid) {
84 case QID_RX:
85 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
86 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 0);
87 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
88 break;
89 case QID_BEACON:
90 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
91 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 0);
92 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 0);
93 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
94 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
95 break;
96 default:
97 break;
98 }
Ivo van Doorn5450b7e2010-12-13 12:34:22 +010099}
100
Johannes Stezenbach0e0d39e2011-04-18 15:29:12 +0200101static void rt2800usb_tx_sta_fifo_read_completed(struct rt2x00_dev *rt2x00dev,
102 int urb_status, u32 tx_status)
103{
104 if (urb_status) {
105 WARNING(rt2x00dev, "rt2x00usb_register_read_async failed: %d\n", urb_status);
106 return;
107 }
108
109 /* try to read all TX_STA_FIFO entries before scheduling txdone_work */
110 if (rt2x00_get_field32(tx_status, TX_STA_FIFO_VALID)) {
111 if (!kfifo_put(&rt2x00dev->txstatus_fifo, &tx_status)) {
112 WARNING(rt2x00dev, "TX status FIFO overrun, "
113 "drop tx status report.\n");
114 queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
115 } else
116 rt2x00usb_register_read_async(rt2x00dev, TX_STA_FIFO,
117 rt2800usb_tx_sta_fifo_read_completed);
118 } else if (!kfifo_is_empty(&rt2x00dev->txstatus_fifo))
119 queue_work(rt2x00dev->workqueue, &rt2x00dev->txdone_work);
120}
121
122static void rt2800usb_tx_dma_done(struct queue_entry *entry)
123{
124 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
125
126 rt2x00usb_register_read_async(rt2x00dev, TX_STA_FIFO,
127 rt2800usb_tx_sta_fifo_read_completed);
128}
129
Ivo van Doorn5450b7e2010-12-13 12:34:22 +0100130/*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200131 * Firmware functions
132 */
133static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
134{
135 return FIRMWARE_RT2870;
136}
137
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200138static int rt2800usb_write_firmware(struct rt2x00_dev *rt2x00dev,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200139 const u8 *data, const size_t len)
140{
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200141 int status;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200142 u32 offset;
143 u32 length;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200144
145 /*
146 * Check which section of the firmware we need.
147 */
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +0100148 if (rt2x00_rt(rt2x00dev, RT2860) ||
149 rt2x00_rt(rt2x00dev, RT2872) ||
150 rt2x00_rt(rt2x00dev, RT3070)) {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200151 offset = 0;
152 length = 4096;
153 } else {
154 offset = 4096;
155 length = 4096;
156 }
157
158 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200159 * Write firmware to device.
160 */
Gertjan van Wingerde96b61ba2010-06-03 10:51:51 +0200161 rt2800_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
162 data + offset, length);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200163
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100164 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
165 rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200166
167 /*
168 * Send firmware request to device to load firmware,
169 * we need to specify a long timeout time.
170 */
171 status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
172 0, USB_MODE_FIRMWARE,
173 REGISTER_TIMEOUT_FIRMWARE);
174 if (status < 0) {
175 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
176 return status;
177 }
178
Ivo van Doorn15e46922009-04-28 20:14:58 +0200179 msleep(10);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100180 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200181
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200182 return 0;
183}
184
185/*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200186 * Device state switch handlers.
187 */
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +0200188static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev)
189{
190 u32 reg;
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +0200191
192 /*
193 * Wait until BBP and RF are ready.
194 */
Ivo van Doorn5ffddc42010-08-30 21:13:08 +0200195 if (rt2800_wait_csr_ready(rt2x00dev))
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +0200196 return -EBUSY;
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +0200197
198 rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
199 rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000);
200
Ivo van Doorne0540872010-08-30 21:14:38 +0200201 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003);
202
Gertjan van Wingerdee3a896b2010-06-03 10:52:04 +0200203 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
204 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_CSR, 1);
205 rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_BBP, 1);
206 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
207
208 rt2800_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000);
209
210 rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0,
211 USB_MODE_RESET, REGISTER_TIMEOUT);
212
213 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
214
215 return 0;
216}
217
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200218static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
219{
220 u32 reg;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200221
Ivo van Doornb9a07ae2010-08-23 19:55:22 +0200222 if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev)))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200223 return -EIO;
224
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100225 rt2800_register_read(rt2x00dev, USB_DMA_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200226 rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
Benoit PAPILLAULT9c8427d2009-12-04 23:47:05 +0100227 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200228 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200229 /*
230 * Total room for RX frames in kilobytes, PBF might still exceed
231 * this limit so reduce the number to prevent errors.
232 */
233 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
Helmut Schaaefd2f272010-11-04 20:37:22 +0100234 ((rt2x00dev->ops->rx->entry_num * DATA_FRAME_SIZE)
235 / 1024) - 3);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200236 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
237 rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100238 rt2800_register_write(rt2x00dev, USB_DMA_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200239
Ivo van Doornb9a07ae2010-08-23 19:55:22 +0200240 return rt2800_enable_radio(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200241}
242
243static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
244{
Ivo van Doornb9a07ae2010-08-23 19:55:22 +0200245 rt2800_disable_radio(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200246 rt2x00usb_disable_radio(rt2x00dev);
247}
248
249static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
250 enum dev_state state)
251{
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200252 if (state == STATE_AWAKE)
Ivo van Doorn303c7d62010-11-04 20:40:46 +0100253 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 2);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200254 else
Ivo van Doorn303c7d62010-11-04 20:40:46 +0100255 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0xff, 2);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200256
257 return 0;
258}
259
260static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
261 enum dev_state state)
262{
263 int retval = 0;
264
265 switch (state) {
266 case STATE_RADIO_ON:
267 /*
268 * Before the radio can be enabled, the device first has
269 * to be woken up. After that it needs a bit of time
Luis Correia49513482009-07-17 21:39:19 +0200270 * to be fully awake and then the radio can be enabled.
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200271 */
272 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
273 msleep(1);
274 retval = rt2800usb_enable_radio(rt2x00dev);
275 break;
276 case STATE_RADIO_OFF:
277 /*
Luis Correia49513482009-07-17 21:39:19 +0200278 * After the radio has been disabled, the device should
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200279 * be put to sleep for powersaving.
280 */
281 rt2800usb_disable_radio(rt2x00dev);
282 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
283 break;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200284 case STATE_RADIO_IRQ_ON:
285 case STATE_RADIO_IRQ_OFF:
286 /* No support, but no error either */
287 break;
288 case STATE_DEEP_SLEEP:
289 case STATE_SLEEP:
290 case STATE_STANDBY:
291 case STATE_AWAKE:
292 retval = rt2800usb_set_state(rt2x00dev, state);
293 break;
294 default:
295 retval = -ENOTSUPP;
296 break;
297 }
298
299 if (unlikely(retval))
300 ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
301 state, retval);
302
303 return retval;
304}
305
306/*
Ivo van Doorn8c5765f2010-11-06 15:49:01 +0100307 * Watchdog handlers
308 */
309static void rt2800usb_watchdog(struct rt2x00_dev *rt2x00dev)
310{
311 unsigned int i;
312 u32 reg;
313
314 rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
315 if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q)) {
316 WARNING(rt2x00dev, "TX HW queue 0 timed out,"
Johannes Stezenbach094a1d92010-12-13 12:34:00 +0100317 " invoke forced kick\n");
Ivo van Doorn8c5765f2010-11-06 15:49:01 +0100318
319 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40012);
320
321 for (i = 0; i < 10; i++) {
322 udelay(10);
323 if (!rt2x00_get_field32(reg, TXRXQ_PCNT_TX0Q))
324 break;
325 }
326
327 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40006);
328 }
329
330 rt2800_register_read(rt2x00dev, TXRXQ_PCNT, &reg);
331 if (rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q)) {
332 WARNING(rt2x00dev, "TX HW queue 1 timed out,"
Johannes Stezenbach094a1d92010-12-13 12:34:00 +0100333 " invoke forced kick\n");
Ivo van Doorn8c5765f2010-11-06 15:49:01 +0100334
335 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf4000a);
336
337 for (i = 0; i < 10; i++) {
338 udelay(10);
339 if (!rt2x00_get_field32(reg, TXRXQ_PCNT_TX1Q))
340 break;
341 }
342
343 rt2800_register_write(rt2x00dev, PBF_CFG, 0xf40006);
344 }
345
346 rt2x00usb_watchdog(rt2x00dev);
347}
348
349/*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200350 * TX descriptor initialization
351 */
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200352static __le32 *rt2800usb_get_txwi(struct queue_entry *entry)
Gertjan van Wingerde9cf4cb02010-06-29 21:43:03 +0200353{
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200354 if (entry->queue->qid == QID_BEACON)
355 return (__le32 *) (entry->skb->data);
356 else
357 return (__le32 *) (entry->skb->data + TXINFO_DESC_SIZE);
Gertjan van Wingerde9cf4cb02010-06-29 21:43:03 +0200358}
359
Ivo van Doorn93331452010-08-23 19:53:39 +0200360static void rt2800usb_write_tx_desc(struct queue_entry *entry,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200361 struct txentry_desc *txdesc)
362{
Ivo van Doorn93331452010-08-23 19:53:39 +0200363 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
364 __le32 *txi = (__le32 *) entry->skb->data;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200365 u32 word;
366
367 /*
Gertjan van Wingerde59679b92010-05-08 23:40:21 +0200368 * Initialize TXINFO descriptor
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200369 */
370 rt2x00_desc_read(txi, 0, &word);
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100371
372 /*
373 * The size of TXINFO_W0_USB_DMA_TX_PKT_LEN is
374 * TXWI + 802.11 header + L2 pad + payload + pad,
375 * so need to decrease size of TXINFO and USB end pad.
376 */
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200377 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100378 entry->skb->len - TXINFO_DESC_SIZE - 4);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200379 rt2x00_set_field32(&word, TXINFO_W0_WIV,
380 !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
381 rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
382 rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
383 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
384 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
385 test_bit(ENTRY_TXD_BURST, &txdesc->flags));
386 rt2x00_desc_write(txi, 0, word);
Gertjan van Wingerde85b7a8b2010-05-11 23:51:40 +0200387
388 /*
389 * Register descriptor details in skb frame descriptor.
390 */
Gertjan van Wingerde0b8004a2010-06-03 10:51:45 +0200391 skbdesc->flags |= SKBDESC_DESC_IN_SKB;
Gertjan van Wingerde85b7a8b2010-05-11 23:51:40 +0200392 skbdesc->desc = txi;
393 skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200394}
395
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100396static void rt2800usb_write_tx_data(struct queue_entry *entry,
397 struct txentry_desc *txdesc)
398{
Ismael Luceno11f16ae2010-12-27 15:06:17 +0100399 unsigned int len;
400 int err;
401
402 rt2800_write_tx_data(entry, txdesc);
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100403
404 /*
405 * pad(1~3 bytes) is added after each 802.11 payload.
406 * USB end pad(4 bytes) is added at each USB bulk out packet end.
407 * TX frame format is :
408 * | TXINFO | TXWI | 802.11 header | L2 pad | payload | pad | USB end pad |
409 * |<------------- tx_pkt_len ------------->|
410 */
Ismael Luceno11f16ae2010-12-27 15:06:17 +0100411 len = roundup(entry->skb->len, 4) + 4;
412 err = skb_padto(entry->skb, len);
413 if (unlikely(err)) {
414 WARNING(entry->queue->rt2x00dev, "TX SKB padding error, out of memory\n");
415 return;
416 }
417
418 entry->skb->len = len;
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100419}
420
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200421/*
422 * TX data initialization
423 */
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200424static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
425{
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100426 return entry->skb->len;
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200427}
428
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200429/*
Ivo van Doorn96481b22010-08-06 20:47:57 +0200430 * TX control handlers
431 */
432static void rt2800usb_work_txdone(struct work_struct *work)
433{
434 struct rt2x00_dev *rt2x00dev =
435 container_of(work, struct rt2x00_dev, txdone_work);
436 struct data_queue *queue;
437 struct queue_entry *entry;
438
439 rt2800_txdone(rt2x00dev);
440
441 /*
442 * Process any trailing TX status reports for IO failures,
443 * we loop until we find the first non-IO error entry. This
444 * can either be a frame which is free, is being uploaded,
445 * or has completed the upload but didn't have an entry
446 * in the TX_STAT_FIFO register yet.
447 */
448 tx_queue_for_each(rt2x00dev, queue) {
449 while (!rt2x00queue_empty(queue)) {
450 entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
451
452 if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
453 !test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
454 break;
455
456 rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
457 }
458 }
459}
460
461/*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200462 * RX control handlers
463 */
464static void rt2800usb_fill_rxdone(struct queue_entry *entry,
465 struct rxdone_entry_desc *rxdesc)
466{
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200467 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Benoit Papillault5de42f92009-12-04 23:47:06 +0100468 __le32 *rxi = (__le32 *)entry->skb->data;
Benoit Papillault5de42f92009-12-04 23:47:06 +0100469 __le32 *rxd;
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200470 u32 word;
Benoit Papillault5de42f92009-12-04 23:47:06 +0100471 int rx_pkt_len;
472
473 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200474 * Copy descriptor to the skbdesc->desc buffer, making it safe from
475 * moving of frame data in rt2x00usb.
476 */
Benoit Papillault5de42f92009-12-04 23:47:06 +0100477 memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200478
479 /*
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200480 * RX frame format is :
481 * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
482 * |<------------ rx_pkt_len -------------->|
483 */
484 rt2x00_desc_read(rxi, 0, &word);
485 rx_pkt_len = rt2x00_get_field32(word, RXINFO_W0_USB_DMA_RX_PKT_LEN);
486
487 /*
488 * Remove the RXINFO structure from the sbk.
489 */
490 skb_pull(entry->skb, RXINFO_DESC_SIZE);
491
492 /*
493 * FIXME: we need to check for rx_pkt_len validity
494 */
495 rxd = (__le32 *)(entry->skb->data + rx_pkt_len);
496
497 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200498 * It is now safe to read the descriptor on all architectures.
499 */
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200500 rt2x00_desc_read(rxd, 0, &word);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200501
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200502 if (rt2x00_get_field32(word, RXD_W0_CRC_ERROR))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200503 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
504
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200505 rxdesc->cipher_status = rt2x00_get_field32(word, RXD_W0_CIPHER_ERROR);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200506
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200507 if (rt2x00_get_field32(word, RXD_W0_DECRYPTED)) {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200508 /*
509 * Hardware has stripped IV/EIV data from 802.11 frame during
510 * decryption. Unfortunately the descriptor doesn't contain
511 * any fields with the EIV/IV data either, so they can't
512 * be restored by rt2x00lib.
513 */
514 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
515
Gertjan van Wingerdea45f3692011-01-30 13:22:41 +0100516 /*
517 * The hardware has already checked the Michael Mic and has
518 * stripped it from the frame. Signal this to mac80211.
519 */
520 rxdesc->flags |= RX_FLAG_MMIC_STRIPPED;
521
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200522 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
523 rxdesc->flags |= RX_FLAG_DECRYPTED;
524 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
525 rxdesc->flags |= RX_FLAG_MMIC_ERROR;
526 }
527
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200528 if (rt2x00_get_field32(word, RXD_W0_MY_BSS))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200529 rxdesc->dev_flags |= RXDONE_MY_BSS;
530
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200531 if (rt2x00_get_field32(word, RXD_W0_L2PAD))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200532 rxdesc->dev_flags |= RXDONE_L2PAD;
533
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200534 /*
535 * Remove RXD descriptor from end of buffer.
536 */
537 skb_trim(entry->skb, rx_pkt_len);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200538
539 /*
Gertjan van Wingerde2de64dd2010-05-08 23:40:22 +0200540 * Process the RXWI structure.
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200541 */
Ivo van Doorn74861922010-07-11 12:23:50 +0200542 rt2800_process_rxwi(entry, rxdesc);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200543}
544
545/*
546 * Device probe functions.
547 */
Bartlomiej Zolnierkiewicz7ab71322009-11-08 14:38:54 +0100548static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
549{
Bartlomiej Zolnierkiewicz40beee52009-11-08 14:39:55 +0100550 if (rt2800_efuse_detect(rt2x00dev))
551 rt2800_read_eeprom_efuse(rt2x00dev);
552 else
553 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
554 EEPROM_SIZE);
Bartlomiej Zolnierkiewicz7ab71322009-11-08 14:38:54 +0100555
556 return rt2800_validate_eeprom(rt2x00dev);
557}
558
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200559static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
560{
561 int retval;
562
563 /*
564 * Allocate eeprom data.
565 */
566 retval = rt2800usb_validate_eeprom(rt2x00dev);
567 if (retval)
568 return retval;
569
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +0100570 retval = rt2800_init_eeprom(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200571 if (retval)
572 return retval;
573
574 /*
575 * Initialize hw specifications.
576 */
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +0100577 retval = rt2800_probe_hw_mode(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200578 if (retval)
579 return retval;
580
581 /*
Igor Perminov1afcfd542009-08-08 23:55:55 +0200582 * This device has multiple filters for control frames
583 * and has a separate filter for PS Poll frames.
584 */
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200585 __set_bit(CAPABILITY_CONTROL_FILTERS, &rt2x00dev->cap_flags);
586 __set_bit(CAPABILITY_CONTROL_FILTER_PSPOLL, &rt2x00dev->cap_flags);
Igor Perminov1afcfd542009-08-08 23:55:55 +0200587
588 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200589 * This device requires firmware.
590 */
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200591 __set_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags);
592 __set_bit(REQUIRE_L2PAD, &rt2x00dev->cap_flags);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200593 if (!modparam_nohwcrypt)
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200594 __set_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags);
595 __set_bit(CAPABILITY_LINK_TUNING, &rt2x00dev->cap_flags);
596 __set_bit(REQUIRE_HT_TX_DESC, &rt2x00dev->cap_flags);
Johannes Stezenbach0e0d39e2011-04-18 15:29:12 +0200597 __set_bit(REQUIRE_TXSTATUS_FIFO, &rt2x00dev->cap_flags);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200598
599 /*
600 * Set the rssi offset.
601 */
602 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
603
Ivo van Doorn96481b22010-08-06 20:47:57 +0200604 /*
605 * Overwrite TX done handler
606 */
607 PREPARE_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
608
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200609 return 0;
610}
611
Helmut Schaae7836192010-07-11 12:28:54 +0200612static const struct ieee80211_ops rt2800usb_mac80211_ops = {
613 .tx = rt2x00mac_tx,
614 .start = rt2x00mac_start,
615 .stop = rt2x00mac_stop,
616 .add_interface = rt2x00mac_add_interface,
617 .remove_interface = rt2x00mac_remove_interface,
618 .config = rt2x00mac_config,
619 .configure_filter = rt2x00mac_configure_filter,
620 .set_tim = rt2x00mac_set_tim,
621 .set_key = rt2x00mac_set_key,
622 .sw_scan_start = rt2x00mac_sw_scan_start,
623 .sw_scan_complete = rt2x00mac_sw_scan_complete,
624 .get_stats = rt2x00mac_get_stats,
625 .get_tkip_seq = rt2800_get_tkip_seq,
626 .set_rts_threshold = rt2800_set_rts_threshold,
627 .bss_info_changed = rt2x00mac_bss_info_changed,
628 .conf_tx = rt2800_conf_tx,
629 .get_tsf = rt2800_get_tsf,
630 .rfkill_poll = rt2x00mac_rfkill_poll,
631 .ampdu_action = rt2800_ampdu_action,
Ivo van Doornf44df182010-11-04 20:40:11 +0100632 .flush = rt2x00mac_flush,
Helmut Schaa977206d2010-12-13 12:31:58 +0100633 .get_survey = rt2800_get_survey,
Helmut Schaae7836192010-07-11 12:28:54 +0200634};
635
Ivo van Doorne7966432010-07-11 12:31:23 +0200636static const struct rt2800_ops rt2800usb_rt2800_ops = {
637 .register_read = rt2x00usb_register_read,
638 .register_read_lock = rt2x00usb_register_read_lock,
639 .register_write = rt2x00usb_register_write,
640 .register_write_lock = rt2x00usb_register_write_lock,
641 .register_multiread = rt2x00usb_register_multiread,
642 .register_multiwrite = rt2x00usb_register_multiwrite,
643 .regbusy_read = rt2x00usb_regbusy_read,
644 .drv_write_firmware = rt2800usb_write_firmware,
645 .drv_init_registers = rt2800usb_init_registers,
Ivo van Doorn0c5879b2010-08-06 20:47:20 +0200646 .drv_get_txwi = rt2800usb_get_txwi,
Ivo van Doorne7966432010-07-11 12:31:23 +0200647};
648
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200649static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
650 .probe_hw = rt2800usb_probe_hw,
651 .get_firmware_name = rt2800usb_get_firmware_name,
Ivo van Doornf31c9a82010-07-11 12:30:37 +0200652 .check_firmware = rt2800_check_firmware,
653 .load_firmware = rt2800_load_firmware,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200654 .initialize = rt2x00usb_initialize,
655 .uninitialize = rt2x00usb_uninitialize,
656 .clear_entry = rt2x00usb_clear_entry,
657 .set_device_state = rt2800usb_set_device_state,
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100658 .rfkill_poll = rt2800_rfkill_poll,
659 .link_stats = rt2800_link_stats,
660 .reset_tuner = rt2800_reset_tuner,
661 .link_tuner = rt2800_link_tuner,
Helmut Schaa9e33a352011-03-28 13:33:40 +0200662 .gain_calibration = rt2800_gain_calibration,
Ivo van Doorn8c5765f2010-11-06 15:49:01 +0100663 .watchdog = rt2800usb_watchdog,
Ivo van Doorndbba3062010-12-13 12:34:54 +0100664 .start_queue = rt2800usb_start_queue,
665 .kick_queue = rt2x00usb_kick_queue,
666 .stop_queue = rt2800usb_stop_queue,
Ivo van Doorn5be65602010-12-13 12:35:40 +0100667 .flush_queue = rt2x00usb_flush_queue,
Johannes Stezenbach0e0d39e2011-04-18 15:29:12 +0200668 .tx_dma_done = rt2800usb_tx_dma_done,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200669 .write_tx_desc = rt2800usb_write_tx_desc,
RA-Jay Hungb43d63b2010-11-13 19:11:46 +0100670 .write_tx_data = rt2800usb_write_tx_data,
Gertjan van Wingerdef0194b22010-06-03 10:51:53 +0200671 .write_beacon = rt2800_write_beacon,
Helmut Schaa69cf36a2011-01-30 13:16:03 +0100672 .clear_beacon = rt2800_clear_beacon,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200673 .get_tx_data_len = rt2800usb_get_tx_data_len,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200674 .fill_rxdone = rt2800usb_fill_rxdone,
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100675 .config_shared_key = rt2800_config_shared_key,
676 .config_pairwise_key = rt2800_config_pairwise_key,
677 .config_filter = rt2800_config_filter,
678 .config_intf = rt2800_config_intf,
679 .config_erp = rt2800_config_erp,
680 .config_ant = rt2800_config_ant,
681 .config = rt2800_config,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200682};
683
684static const struct data_queue_desc rt2800usb_queue_rx = {
Helmut Schaaefd2f272010-11-04 20:37:22 +0100685 .entry_num = 128,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200686 .data_size = AGGREGATION_SIZE,
Bartlomiej Zolnierkiewiczd42c8d82009-11-04 18:35:47 +0100687 .desc_size = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200688 .priv_size = sizeof(struct queue_entry_priv_usb),
689};
690
691static const struct data_queue_desc rt2800usb_queue_tx = {
Helmut Schaaefd2f272010-11-04 20:37:22 +0100692 .entry_num = 64,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200693 .data_size = AGGREGATION_SIZE,
694 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
695 .priv_size = sizeof(struct queue_entry_priv_usb),
696};
697
698static const struct data_queue_desc rt2800usb_queue_bcn = {
Helmut Schaaefd2f272010-11-04 20:37:22 +0100699 .entry_num = 8,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200700 .data_size = MGMT_FRAME_SIZE,
701 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
702 .priv_size = sizeof(struct queue_entry_priv_usb),
703};
704
705static const struct rt2x00_ops rt2800usb_ops = {
Gertjan van Wingerde04d03622009-11-23 22:44:51 +0100706 .name = KBUILD_MODNAME,
707 .max_sta_intf = 1,
708 .max_ap_intf = 8,
709 .eeprom_size = EEPROM_SIZE,
710 .rf_size = RF_SIZE,
711 .tx_queues = NUM_TX_QUEUES,
Gertjan van Wingerdee6218cc2009-11-23 22:44:52 +0100712 .extra_tx_headroom = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
Gertjan van Wingerde04d03622009-11-23 22:44:51 +0100713 .rx = &rt2800usb_queue_rx,
714 .tx = &rt2800usb_queue_tx,
715 .bcn = &rt2800usb_queue_bcn,
716 .lib = &rt2800usb_rt2x00_ops,
Ivo van Doorne7966432010-07-11 12:31:23 +0200717 .drv = &rt2800usb_rt2800_ops,
Helmut Schaae7836192010-07-11 12:28:54 +0200718 .hw = &rt2800usb_mac80211_ops,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200719#ifdef CONFIG_RT2X00_LIB_DEBUGFS
Gertjan van Wingerde04d03622009-11-23 22:44:51 +0100720 .debugfs = &rt2800_rt2x00debug,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200721#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
722};
723
724/*
725 * rt2800usb module information.
726 */
727static struct usb_device_id rt2800usb_device_table[] = {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200728 /* Abocom */
729 { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
730 { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100731 { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
732 { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
733 { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200734 { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100735 /* AirTies */
736 { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Pereze8958332010-04-19 11:54:16 +0200737 /* Allwin */
738 { USB_DEVICE(0x8516, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
739 { USB_DEVICE(0x8516, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
740 { USB_DEVICE(0x8516, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100741 { USB_DEVICE(0x8516, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
742 { USB_DEVICE(0x8516, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
743 { USB_DEVICE(0x8516, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400744 /* Alpha Networks */
745 { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops) },
746 { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops) },
747 { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
748 { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops) },
749 { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops) },
750 { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops) },
751 { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops) },
752 { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops) },
753 { USB_DEVICE(0x14b2, 0x3c2c), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200754 /* Amit */
755 { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez2edcb7f2009-11-17 13:43:16 +0100756 /* Askey */
757 { USB_DEVICE(0x1690, 0x0740), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200758 /* ASUS */
759 { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops) },
760 { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops) },
761 { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100762 { USB_DEVICE(0x0b05, 0x1784), USB_DEVICE_DATA(&rt2800usb_ops) },
Peter Lemenkov2cea5b32011-03-16 17:12:15 +0300763 { USB_DEVICE(0x1761, 0x0b05), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200764 /* AzureWave */
765 { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100766 { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops) },
767 { USB_DEVICE(0x13d3, 0x3305), USB_DEVICE_DATA(&rt2800usb_ops) },
768 { USB_DEVICE(0x13d3, 0x3307), USB_DEVICE_DATA(&rt2800usb_ops) },
769 { USB_DEVICE(0x13d3, 0x3321), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200770 /* Belkin */
771 { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops) },
772 { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops) },
773 { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez8d4ca612011-03-27 20:33:06 +0200774 { USB_DEVICE(0x050d, 0x825b), USB_DEVICE_DATA(&rt2800usb_ops) },
775 { USB_DEVICE(0x050d, 0x935a), USB_DEVICE_DATA(&rt2800usb_ops) },
776 { USB_DEVICE(0x050d, 0x935b), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200777 /* Buffalo */
778 { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez8d4ca612011-03-27 20:33:06 +0200779 { USB_DEVICE(0x0411, 0x016f), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400780 { USB_DEVICE(0x0411, 0x01a2), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200781 /* Corega */
782 { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
783 { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
784 { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100785 { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200786 /* D-Link */
787 { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100788 { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops) },
789 { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops) },
790 { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops) },
791 { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200792 { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100793 { USB_DEVICE(0x07d1, 0x3c16), USB_DEVICE_DATA(&rt2800usb_ops) },
794 /* Draytek */
795 { USB_DEVICE(0x07fa, 0x7712), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200796 /* Edimax */
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100797 { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200798 { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops) },
799 { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100800 /* Encore */
801 { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops) },
802 { USB_DEVICE(0x203d, 0x14a9), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200803 /* EnGenius */
Xose Vazquez Pereza6bc03a2010-05-10 11:35:36 +0200804 { USB_DEVICE(0x1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200805 { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100806 { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops) },
807 { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops) },
808 { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops) },
809 { USB_DEVICE(0x1740, 0x9707), USB_DEVICE_DATA(&rt2800usb_ops) },
810 { USB_DEVICE(0x1740, 0x9708), USB_DEVICE_DATA(&rt2800usb_ops) },
811 { USB_DEVICE(0x1740, 0x9709), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400812 /* Gemtek */
813 { USB_DEVICE(0x15a9, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200814 /* Gigabyte */
815 { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100816 { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200817 /* Hawking */
818 { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops) },
819 { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez2fddd882010-04-15 13:25:49 +0200820 { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops) },
821 { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops) },
822 { USB_DEVICE(0x0e66, 0x0013), USB_DEVICE_DATA(&rt2800usb_ops) },
823 { USB_DEVICE(0x0e66, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
824 { USB_DEVICE(0x0e66, 0x0018), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100825 /* I-O DATA */
826 { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops) },
827 { USB_DEVICE(0x04bb, 0x0947), USB_DEVICE_DATA(&rt2800usb_ops) },
828 { USB_DEVICE(0x04bb, 0x0948), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200829 /* Linksys */
Mark Davisb3ba44c62011-04-12 00:19:10 -0400830 { USB_DEVICE(0x13b1, 0x0031), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200831 { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops) },
832 { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200833 /* Logitec */
834 { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops) },
835 { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops) },
836 { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100837 { USB_DEVICE(0x0789, 0x0166), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200838 /* Motorola */
839 { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez2edcb7f2009-11-17 13:43:16 +0100840 /* MSI */
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100841 { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200842 { USB_DEVICE(0x0db0, 0x3821), USB_DEVICE_DATA(&rt2800usb_ops) },
843 { USB_DEVICE(0x0db0, 0x3822), USB_DEVICE_DATA(&rt2800usb_ops) },
844 { USB_DEVICE(0x0db0, 0x3870), USB_DEVICE_DATA(&rt2800usb_ops) },
845 { USB_DEVICE(0x0db0, 0x3871), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100846 { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200847 { USB_DEVICE(0x0db0, 0x821a), USB_DEVICE_DATA(&rt2800usb_ops) },
848 { USB_DEVICE(0x0db0, 0x822a), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezf01a0222010-03-28 20:02:41 +0200849 { USB_DEVICE(0x0db0, 0x822b), USB_DEVICE_DATA(&rt2800usb_ops) },
850 { USB_DEVICE(0x0db0, 0x822c), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200851 { USB_DEVICE(0x0db0, 0x870a), USB_DEVICE_DATA(&rt2800usb_ops) },
852 { USB_DEVICE(0x0db0, 0x871a), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezf01a0222010-03-28 20:02:41 +0200853 { USB_DEVICE(0x0db0, 0x871b), USB_DEVICE_DATA(&rt2800usb_ops) },
854 { USB_DEVICE(0x0db0, 0x871c), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200855 { USB_DEVICE(0x0db0, 0x899a), USB_DEVICE_DATA(&rt2800usb_ops) },
856 /* Para */
857 { USB_DEVICE(0x20b8, 0x8888), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100858 /* Pegatron */
859 { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops) },
860 { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez8d4ca612011-03-27 20:33:06 +0200861 { USB_DEVICE(0x1d4d, 0x0011), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100862 /* Philips */
863 { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100864 /* Planex */
865 { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100866 { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100867 /* Quanta */
868 { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops) },
869 /* Ralink */
870 { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100871 { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
872 { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100873 { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
874 { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
875 { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100876 /* Samsung */
877 { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops) },
878 /* Siemens */
879 { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100880 /* Sitecom */
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100881 { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
882 { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops) },
883 { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops) },
884 { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops) },
885 { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops) },
886 { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops) },
887 { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100888 { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100889 { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Pereza5e944f2010-04-14 12:16:00 +0200890 { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100891 { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200892 { USB_DEVICE(0x0df6, 0x0047), USB_DEVICE_DATA(&rt2800usb_ops) },
893 { USB_DEVICE(0x0df6, 0x0048), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100894 /* SMC */
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100895 { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100896 { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100897 { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops) },
898 { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops) },
899 { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops) },
900 { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezfc3f1482010-03-28 15:52:43 +0200901 { USB_DEVICE(0x083a, 0xa701), USB_DEVICE_DATA(&rt2800usb_ops) },
902 { USB_DEVICE(0x083a, 0xa702), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perezf01a0222010-03-28 20:02:41 +0200903 { USB_DEVICE(0x083a, 0xa703), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100904 { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops) },
905 /* Sparklan */
906 { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops) },
907 /* Sweex */
908 { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400909 /* U-Media */
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100910 { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400911 { USB_DEVICE(0x157e, 0x3013), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100912 /* ZCOM */
913 { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops) },
914 { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100915 /* Zinwell */
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100916 { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops) },
917 { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100918 { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops) },
919 { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdea6a8d66e2010-11-13 19:10:31 +0100920 /* Zyxel */
921 { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornb35e77c2011-03-28 13:34:50 +0200922 { USB_DEVICE(0x0586, 0x3418), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400923 { USB_DEVICE(0x0586, 0x341e), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdef93bc9b2010-11-13 19:09:50 +0100924#ifdef CONFIG_RT2800USB_RT33XX
925 /* Ralink */
926 { USB_DEVICE(0x148f, 0x3370), USB_DEVICE_DATA(&rt2800usb_ops) },
927 { USB_DEVICE(0x148f, 0x8070), USB_DEVICE_DATA(&rt2800usb_ops) },
928 /* Sitecom */
929 { USB_DEVICE(0x0df6, 0x0050), USB_DEVICE_DATA(&rt2800usb_ops) },
930#endif
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100931#ifdef CONFIG_RT2800USB_RT35XX
Xose Vazquez Pereze8958332010-04-19 11:54:16 +0200932 /* Allwin */
933 { USB_DEVICE(0x8516, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100934 /* Askey */
935 { USB_DEVICE(0x1690, 0x0744), USB_DEVICE_DATA(&rt2800usb_ops) },
936 /* Cisco */
937 { USB_DEVICE(0x167b, 0x4001), USB_DEVICE_DATA(&rt2800usb_ops) },
938 /* EnGenius */
939 { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops) },
940 /* I-O DATA */
941 { USB_DEVICE(0x04bb, 0x0944), USB_DEVICE_DATA(&rt2800usb_ops) },
Mark Davisb3ba44c62011-04-12 00:19:10 -0400942 /* Linksys */
943 { USB_DEVICE(0x13b1, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100944 /* Ralink */
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100945 { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100946 /* Sitecom */
947 { USB_DEVICE(0x0df6, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez8d4ca612011-03-27 20:33:06 +0200948 /* Toshiba */
949 { USB_DEVICE(0x0930, 0x0a07), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100950 /* Zinwell */
951 { USB_DEVICE(0x5a57, 0x0284), USB_DEVICE_DATA(&rt2800usb_ops) },
952#endif
953#ifdef CONFIG_RT2800USB_UNKNOWN
954 /*
955 * Unclear what kind of devices these are (they aren't supported by the
Xose Vazquez Perez12ef1162010-05-03 13:11:38 +0200956 * vendor linux driver).
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100957 */
Mark Davisb3ba44c62011-04-12 00:19:10 -0400958 /* Alpha Networks */
959 { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops) },
960 { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100961 /* Amigo */
962 { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
963 { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100964 /* ASUS */
965 { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops) },
966 { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100967 { USB_DEVICE(0x0b05, 0x1790), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100968 /* AzureWave */
969 { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops) },
970 { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez12ef1162010-05-03 13:11:38 +0200971 { USB_DEVICE(0x13d3, 0x3322), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100972 /* Belkin */
973 { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops) },
974 /* Buffalo */
975 { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops) },
976 { USB_DEVICE(0x0411, 0x0148), USB_DEVICE_DATA(&rt2800usb_ops) },
977 { USB_DEVICE(0x0411, 0x0150), USB_DEVICE_DATA(&rt2800usb_ops) },
978 { USB_DEVICE(0x0411, 0x015d), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100979 /* Corega */
980 { USB_DEVICE(0x07aa, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
981 { USB_DEVICE(0x07aa, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
982 { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
983 /* D-Link */
984 { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops) },
985 { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops) },
986 { USB_DEVICE(0x07d1, 0x3c15), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez12ef1162010-05-03 13:11:38 +0200987 { USB_DEVICE(0x07d1, 0x3c17), USB_DEVICE_DATA(&rt2800usb_ops) },
Peter Lemenkov9a745972011-03-16 17:12:17 +0300988 /* Edimax */
989 { USB_DEVICE(0x7392, 0x4085), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100990 /* Encore */
991 { USB_DEVICE(0x203d, 0x14a1), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100992 /* Gemtek */
993 { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
994 /* Gigabyte */
995 { USB_DEVICE(0x1044, 0x800c), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +0100996 /* LevelOne */
997 { USB_DEVICE(0x1740, 0x0605), USB_DEVICE_DATA(&rt2800usb_ops) },
998 { USB_DEVICE(0x1740, 0x0615), USB_DEVICE_DATA(&rt2800usb_ops) },
999 /* Linksys */
1000 { USB_DEVICE(0x1737, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops) },
1001 { USB_DEVICE(0x1737, 0x0078), USB_DEVICE_DATA(&rt2800usb_ops) },
1002 { USB_DEVICE(0x1737, 0x0079), USB_DEVICE_DATA(&rt2800usb_ops) },
1003 /* Motorola */
1004 { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001005 /* Ovislink */
Xose Vazquez Perez12ef1162010-05-03 13:11:38 +02001006 { USB_DEVICE(0x1b75, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001007 { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001008 /* Pegatron */
1009 { USB_DEVICE(0x05a6, 0x0101), USB_DEVICE_DATA(&rt2800usb_ops) },
1010 { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops) },
1011 { USB_DEVICE(0x1d4d, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
1012 /* Planex */
Peter Lemenkov7a2a75b2011-03-16 17:12:16 +03001013 { USB_DEVICE(0x2019, 0x5201), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001014 { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops) },
1015 /* Qcom */
1016 { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001017 /* SMC */
1018 { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001019 { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops) },
1020 { USB_DEVICE(0x083a, 0xd522), USB_DEVICE_DATA(&rt2800usb_ops) },
Xose Vazquez Perez12ef1162010-05-03 13:11:38 +02001021 { USB_DEVICE(0x083a, 0xf511), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001022 /* Sweex */
1023 { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops) },
1024 { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops) },
1025 /* Zyxel */
Ivo van Doornd53d9e62009-04-26 15:47:48 +02001026 { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops) },
Gertjan van Wingerdede1ebdc2010-02-14 12:52:05 +01001027#endif
Ivo van Doornd53d9e62009-04-26 15:47:48 +02001028 { 0, }
1029};
1030
1031MODULE_AUTHOR(DRV_PROJECT);
1032MODULE_VERSION(DRV_VERSION);
1033MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
1034MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
1035MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
1036MODULE_FIRMWARE(FIRMWARE_RT2870);
1037MODULE_LICENSE("GPL");
1038
1039static struct usb_driver rt2800usb_driver = {
1040 .name = KBUILD_MODNAME,
1041 .id_table = rt2800usb_device_table,
1042 .probe = rt2x00usb_probe,
1043 .disconnect = rt2x00usb_disconnect,
1044 .suspend = rt2x00usb_suspend,
1045 .resume = rt2x00usb_resume,
1046};
1047
1048static int __init rt2800usb_init(void)
1049{
1050 return usb_register(&rt2800usb_driver);
1051}
1052
1053static void __exit rt2800usb_exit(void)
1054{
1055 usb_deregister(&rt2800usb_driver);
1056}
1057
1058module_init(rt2800usb_init);
1059module_exit(rt2800usb_exit);