blob: 54afbc8378df269a20b878f04e6ebae4656f0b12 [file] [log] [blame]
Ivo van Doornd53d9e62009-04-26 15:47:48 +02001/*
2 Copyright (C) 2004 - 2009 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2800usb
23 Abstract: rt2800usb device specific routines.
24 Supported chipsets: RT2800U.
25 */
26
27#include <linux/crc-ccitt.h>
28#include <linux/delay.h>
29#include <linux/etherdevice.h>
30#include <linux/init.h>
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/usb.h>
34
35#include "rt2x00.h"
36#include "rt2x00usb.h"
Bartlomiej Zolnierkiewicz7ef5cc92009-11-04 18:35:32 +010037#include "rt2800lib.h"
Bartlomiej Zolnierkiewiczb54f78a2009-11-04 18:35:54 +010038#include "rt2800.h"
Ivo van Doornd53d9e62009-04-26 15:47:48 +020039#include "rt2800usb.h"
40
41/*
42 * Allow hardware encryption to be disabled.
43 */
44static int modparam_nohwcrypt = 1;
45module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
46MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
47
Ivo van Doornd53d9e62009-04-26 15:47:48 +020048/*
49 * Firmware functions
50 */
51static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
52{
53 return FIRMWARE_RT2870;
54}
55
56static bool rt2800usb_check_crc(const u8 *data, const size_t len)
57{
58 u16 fw_crc;
59 u16 crc;
60
61 /*
62 * The last 2 bytes in the firmware array are the crc checksum itself,
63 * this means that we should never pass those 2 bytes to the crc
64 * algorithm.
65 */
66 fw_crc = (data[len - 2] << 8 | data[len - 1]);
67
68 /*
69 * Use the crc ccitt algorithm.
70 * This will return the same value as the legacy driver which
71 * used bit ordering reversion on the both the firmware bytes
72 * before input input as well as on the final output.
73 * Obviously using crc ccitt directly is much more efficient.
74 */
75 crc = crc_ccitt(~0, data, len - 2);
76
77 /*
78 * There is a small difference between the crc-itu-t + bitrev and
79 * the crc-ccitt crc calculation. In the latter method the 2 bytes
80 * will be swapped, use swab16 to convert the crc to the correct
81 * value.
82 */
83 crc = swab16(crc);
84
85 return fw_crc == crc;
86}
87
88static int rt2800usb_check_firmware(struct rt2x00_dev *rt2x00dev,
89 const u8 *data, const size_t len)
90{
91 u16 chipset = (rt2x00_rev(&rt2x00dev->chip) >> 16) & 0xffff;
92 size_t offset = 0;
93
94 /*
95 * Firmware files:
96 * There are 2 variations of the rt2870 firmware.
97 * a) size: 4kb
98 * b) size: 8kb
99 * Note that (b) contains 2 seperate firmware blobs of 4k
100 * within the file. The first blob is the same firmware as (a),
101 * but the second blob is for the additional chipsets.
102 */
103 if (len != 4096 && len != 8192)
104 return FW_BAD_LENGTH;
105
106 /*
107 * Check if we need the upper 4kb firmware data or not.
108 */
109 if ((len == 4096) &&
110 (chipset != 0x2860) &&
111 (chipset != 0x2872) &&
112 (chipset != 0x3070))
113 return FW_BAD_VERSION;
114
115 /*
116 * 8kb firmware files must be checked as if it were
117 * 2 seperate firmware files.
118 */
119 while (offset < len) {
120 if (!rt2800usb_check_crc(data + offset, 4096))
121 return FW_BAD_CRC;
122
123 offset += 4096;
124 }
125
126 return FW_OK;
127}
128
129static int rt2800usb_load_firmware(struct rt2x00_dev *rt2x00dev,
130 const u8 *data, const size_t len)
131{
132 unsigned int i;
133 int status;
134 u32 reg;
135 u32 offset;
136 u32 length;
137 u16 chipset = (rt2x00_rev(&rt2x00dev->chip) >> 16) & 0xffff;
138
139 /*
140 * Check which section of the firmware we need.
141 */
Ivo van Doorn15e46922009-04-28 20:14:58 +0200142 if ((chipset == 0x2860) ||
143 (chipset == 0x2872) ||
144 (chipset == 0x3070)) {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200145 offset = 0;
146 length = 4096;
147 } else {
148 offset = 4096;
149 length = 4096;
150 }
151
152 /*
153 * Wait for stable hardware.
154 */
155 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100156 rt2800_register_read(rt2x00dev, MAC_CSR0, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200157 if (reg && reg != ~0)
158 break;
159 msleep(1);
160 }
161
162 if (i == REGISTER_BUSY_COUNT) {
163 ERROR(rt2x00dev, "Unstable hardware.\n");
164 return -EBUSY;
165 }
166
167 /*
168 * Write firmware to device.
169 */
170 rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
171 USB_VENDOR_REQUEST_OUT,
172 FIRMWARE_IMAGE_BASE,
173 data + offset, length,
174 REGISTER_TIMEOUT32(length));
175
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100176 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
177 rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200178
179 /*
180 * Send firmware request to device to load firmware,
181 * we need to specify a long timeout time.
182 */
183 status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
184 0, USB_MODE_FIRMWARE,
185 REGISTER_TIMEOUT_FIRMWARE);
186 if (status < 0) {
187 ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
188 return status;
189 }
190
Ivo van Doorn15e46922009-04-28 20:14:58 +0200191 msleep(10);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100192 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200193
194 /*
195 * Send signal to firmware during boot time.
196 */
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100197 rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0xff, 0, 0);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200198
199 if ((chipset == 0x3070) ||
200 (chipset == 0x3071) ||
201 (chipset == 0x3572)) {
202 udelay(200);
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100203 rt2800_mcu_request(rt2x00dev, MCU_CURRENT, 0, 0, 0);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200204 udelay(10);
205 }
206
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200207 /*
208 * Wait for device to stabilize.
209 */
210 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100211 rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200212 if (rt2x00_get_field32(reg, PBF_SYS_CTRL_READY))
213 break;
214 msleep(1);
215 }
216
217 if (i == REGISTER_BUSY_COUNT) {
218 ERROR(rt2x00dev, "PBF system register not ready.\n");
219 return -EBUSY;
220 }
221
222 /*
223 * Initialize firmware.
224 */
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100225 rt2800_register_write(rt2x00dev, H2M_BBP_AGENT, 0);
226 rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200227 msleep(1);
228
229 return 0;
230}
231
232/*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200233 * Device state switch handlers.
234 */
235static void rt2800usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
236 enum dev_state state)
237{
238 u32 reg;
239
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100240 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200241 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX,
242 (state == STATE_RADIO_RX_ON) ||
243 (state == STATE_RADIO_RX_ON_LINK));
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100244 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200245}
246
247static int rt2800usb_wait_wpdma_ready(struct rt2x00_dev *rt2x00dev)
248{
249 unsigned int i;
250 u32 reg;
251
252 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100253 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200254 if (!rt2x00_get_field32(reg, WPDMA_GLO_CFG_TX_DMA_BUSY) &&
255 !rt2x00_get_field32(reg, WPDMA_GLO_CFG_RX_DMA_BUSY))
256 return 0;
257
258 msleep(1);
259 }
260
261 ERROR(rt2x00dev, "WPDMA TX/RX busy, aborting.\n");
262 return -EACCES;
263}
264
265static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
266{
267 u32 reg;
268 u16 word;
269
270 /*
271 * Initialize all registers.
272 */
273 if (unlikely(rt2800usb_wait_wpdma_ready(rt2x00dev) ||
Bartlomiej Zolnierkiewiczfcf51542009-11-04 18:36:57 +0100274 rt2800_init_registers(rt2x00dev) ||
275 rt2800_init_bbp(rt2x00dev) ||
276 rt2800_init_rfcsr(rt2x00dev)))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200277 return -EIO;
278
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100279 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200280 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100281 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200282
283 udelay(50);
284
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100285 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200286 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1);
287 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 1);
288 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100289 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200290
291
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100292 rt2800_register_read(rt2x00dev, USB_DMA_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200293 rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
294 /* Don't use bulk in aggregation when working with USB 1.1 */
295 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN,
296 (rt2x00dev->rx->usb_maxpacket == 512));
297 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
Ivo van Doorn15e46922009-04-28 20:14:58 +0200298 /*
299 * Total room for RX frames in kilobytes, PBF might still exceed
300 * this limit so reduce the number to prevent errors.
301 */
302 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
303 ((RX_ENTRIES * DATA_FRAME_SIZE) / 1024) - 3);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200304 rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
305 rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100306 rt2800_register_write(rt2x00dev, USB_DMA_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200307
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100308 rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200309 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_TX, 1);
310 rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100311 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200312
313 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200314 * Initialize LED control
315 */
316 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED1, &word);
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100317 rt2800_mcu_request(rt2x00dev, MCU_LED_1, 0xff,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200318 word & 0xff, (word >> 8) & 0xff);
319
320 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED2, &word);
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100321 rt2800_mcu_request(rt2x00dev, MCU_LED_2, 0xff,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200322 word & 0xff, (word >> 8) & 0xff);
323
324 rt2x00_eeprom_read(rt2x00dev, EEPROM_LED3, &word);
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100325 rt2800_mcu_request(rt2x00dev, MCU_LED_3, 0xff,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200326 word & 0xff, (word >> 8) & 0xff);
327
328 return 0;
329}
330
331static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
332{
333 u32 reg;
334
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100335 rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200336 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0);
337 rt2x00_set_field32(&reg, WPDMA_GLO_CFG_ENABLE_RX_DMA, 0);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100338 rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200339
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100340 rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0);
341 rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0);
342 rt2800_register_write(rt2x00dev, TX_PIN_CFG, 0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200343
344 /* Wait for DMA, ignore error */
345 rt2800usb_wait_wpdma_ready(rt2x00dev);
346
347 rt2x00usb_disable_radio(rt2x00dev);
348}
349
350static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
351 enum dev_state state)
352{
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200353 if (state == STATE_AWAKE)
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100354 rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 0);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200355 else
Bartlomiej Zolnierkiewicz4f2c5322009-11-04 18:34:32 +0100356 rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0, 2);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200357
358 return 0;
359}
360
361static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
362 enum dev_state state)
363{
364 int retval = 0;
365
366 switch (state) {
367 case STATE_RADIO_ON:
368 /*
369 * Before the radio can be enabled, the device first has
370 * to be woken up. After that it needs a bit of time
Luis Correia49513482009-07-17 21:39:19 +0200371 * to be fully awake and then the radio can be enabled.
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200372 */
373 rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
374 msleep(1);
375 retval = rt2800usb_enable_radio(rt2x00dev);
376 break;
377 case STATE_RADIO_OFF:
378 /*
Luis Correia49513482009-07-17 21:39:19 +0200379 * After the radio has been disabled, the device should
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200380 * be put to sleep for powersaving.
381 */
382 rt2800usb_disable_radio(rt2x00dev);
383 rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
384 break;
385 case STATE_RADIO_RX_ON:
386 case STATE_RADIO_RX_ON_LINK:
387 case STATE_RADIO_RX_OFF:
388 case STATE_RADIO_RX_OFF_LINK:
389 rt2800usb_toggle_rx(rt2x00dev, state);
390 break;
391 case STATE_RADIO_IRQ_ON:
392 case STATE_RADIO_IRQ_OFF:
393 /* No support, but no error either */
394 break;
395 case STATE_DEEP_SLEEP:
396 case STATE_SLEEP:
397 case STATE_STANDBY:
398 case STATE_AWAKE:
399 retval = rt2800usb_set_state(rt2x00dev, state);
400 break;
401 default:
402 retval = -ENOTSUPP;
403 break;
404 }
405
406 if (unlikely(retval))
407 ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
408 state, retval);
409
410 return retval;
411}
412
413/*
414 * TX descriptor initialization
415 */
416static void rt2800usb_write_tx_desc(struct rt2x00_dev *rt2x00dev,
417 struct sk_buff *skb,
418 struct txentry_desc *txdesc)
419{
420 struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
421 __le32 *txi = skbdesc->desc;
422 __le32 *txwi = &txi[TXINFO_DESC_SIZE / sizeof(__le32)];
423 u32 word;
424
425 /*
426 * Initialize TX Info descriptor
427 */
428 rt2x00_desc_read(txwi, 0, &word);
429 rt2x00_set_field32(&word, TXWI_W0_FRAG,
430 test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
431 rt2x00_set_field32(&word, TXWI_W0_MIMO_PS, 0);
432 rt2x00_set_field32(&word, TXWI_W0_CF_ACK, 0);
433 rt2x00_set_field32(&word, TXWI_W0_TS,
434 test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
435 rt2x00_set_field32(&word, TXWI_W0_AMPDU,
436 test_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags));
437 rt2x00_set_field32(&word, TXWI_W0_MPDU_DENSITY, txdesc->mpdu_density);
438 rt2x00_set_field32(&word, TXWI_W0_TX_OP, txdesc->ifs);
439 rt2x00_set_field32(&word, TXWI_W0_MCS, txdesc->mcs);
440 rt2x00_set_field32(&word, TXWI_W0_BW,
441 test_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags));
442 rt2x00_set_field32(&word, TXWI_W0_SHORT_GI,
443 test_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags));
444 rt2x00_set_field32(&word, TXWI_W0_STBC, txdesc->stbc);
445 rt2x00_set_field32(&word, TXWI_W0_PHYMODE, txdesc->rate_mode);
446 rt2x00_desc_write(txwi, 0, word);
447
448 rt2x00_desc_read(txwi, 1, &word);
449 rt2x00_set_field32(&word, TXWI_W1_ACK,
450 test_bit(ENTRY_TXD_ACK, &txdesc->flags));
451 rt2x00_set_field32(&word, TXWI_W1_NSEQ,
452 test_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags));
453 rt2x00_set_field32(&word, TXWI_W1_BW_WIN_SIZE, txdesc->ba_size);
454 rt2x00_set_field32(&word, TXWI_W1_WIRELESS_CLI_ID,
455 test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags) ?
Benoit PAPILLAULT17616312009-10-15 21:17:09 +0200456 txdesc->key_idx : 0xff);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200457 rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT,
458 skb->len - txdesc->l2pad);
459 rt2x00_set_field32(&word, TXWI_W1_PACKETID,
Ivo van Doorn534aff02009-08-17 18:55:15 +0200460 skbdesc->entry->queue->qid + 1);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200461 rt2x00_desc_write(txwi, 1, word);
462
463 /*
464 * Always write 0 to IV/EIV fields, hardware will insert the IV
465 * from the IVEIV register when TXINFO_W0_WIV is set to 0.
466 * When TXINFO_W0_WIV is set to 1 it will use the IV data
467 * from the descriptor. The TXWI_W1_WIRELESS_CLI_ID indicates which
468 * crypto entry in the registers should be used to encrypt the frame.
469 */
470 _rt2x00_desc_write(txwi, 2, 0 /* skbdesc->iv[0] */);
471 _rt2x00_desc_write(txwi, 3, 0 /* skbdesc->iv[1] */);
472
473 /*
474 * Initialize TX descriptor
475 */
476 rt2x00_desc_read(txi, 0, &word);
477 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
478 skb->len + TXWI_DESC_SIZE);
479 rt2x00_set_field32(&word, TXINFO_W0_WIV,
480 !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
481 rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
482 rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
483 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
484 rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
485 test_bit(ENTRY_TXD_BURST, &txdesc->flags));
486 rt2x00_desc_write(txi, 0, word);
487}
488
489/*
490 * TX data initialization
491 */
492static void rt2800usb_write_beacon(struct queue_entry *entry)
493{
494 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
495 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
496 unsigned int beacon_base;
497 u32 reg;
498
499 /*
500 * Add the descriptor in front of the skb.
501 */
502 skb_push(entry->skb, entry->queue->desc_size);
503 memcpy(entry->skb->data, skbdesc->desc, skbdesc->desc_len);
504 skbdesc->desc = entry->skb->data;
505
506 /*
507 * Disable beaconing while we are reloading the beacon data,
508 * otherwise we might be sending out invalid data.
509 */
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100510 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200511 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 0);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100512 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200513
514 /*
515 * Write entire beacon with descriptor to register.
516 */
517 beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
518 rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE,
519 USB_VENDOR_REQUEST_OUT, beacon_base,
520 entry->skb->data, entry->skb->len,
521 REGISTER_TIMEOUT32(entry->skb->len));
522
523 /*
524 * Clean up the beacon skb.
525 */
526 dev_kfree_skb(entry->skb);
527 entry->skb = NULL;
528}
529
530static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
531{
532 int length;
533
534 /*
535 * The length _must_ include 4 bytes padding,
536 * it should always be multiple of 4,
537 * but it must _not_ be a multiple of the USB packet size.
538 */
539 length = roundup(entry->skb->len + 4, 4);
540 length += (4 * !(length % entry->queue->usb_maxpacket));
541
542 return length;
543}
544
545static void rt2800usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
546 const enum data_queue_qid queue)
547{
548 u32 reg;
549
550 if (queue != QID_BEACON) {
551 rt2x00usb_kick_tx_queue(rt2x00dev, queue);
552 return;
553 }
554
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100555 rt2800_register_read(rt2x00dev, BCN_TIME_CFG, &reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200556 if (!rt2x00_get_field32(reg, BCN_TIME_CFG_BEACON_GEN)) {
557 rt2x00_set_field32(&reg, BCN_TIME_CFG_TSF_TICKING, 1);
558 rt2x00_set_field32(&reg, BCN_TIME_CFG_TBTT_ENABLE, 1);
559 rt2x00_set_field32(&reg, BCN_TIME_CFG_BEACON_GEN, 1);
Bartlomiej Zolnierkiewiczabbb5052009-11-04 18:33:05 +0100560 rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200561 }
562}
563
564/*
565 * RX control handlers
566 */
567static void rt2800usb_fill_rxdone(struct queue_entry *entry,
568 struct rxdone_entry_desc *rxdesc)
569{
570 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
571 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
572 __le32 *rxd = (__le32 *)entry->skb->data;
573 __le32 *rxwi;
574 u32 rxd0;
575 u32 rxwi0;
576 u32 rxwi1;
577 u32 rxwi2;
578 u32 rxwi3;
579
580 /*
581 * Copy descriptor to the skbdesc->desc buffer, making it safe from
582 * moving of frame data in rt2x00usb.
583 */
584 memcpy(skbdesc->desc, rxd, skbdesc->desc_len);
585 rxd = (__le32 *)skbdesc->desc;
Bartlomiej Zolnierkiewiczd42c8d82009-11-04 18:35:47 +0100586 rxwi = &rxd[RXINFO_DESC_SIZE / sizeof(__le32)];
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200587
588 /*
589 * It is now safe to read the descriptor on all architectures.
590 */
591 rt2x00_desc_read(rxd, 0, &rxd0);
592 rt2x00_desc_read(rxwi, 0, &rxwi0);
593 rt2x00_desc_read(rxwi, 1, &rxwi1);
594 rt2x00_desc_read(rxwi, 2, &rxwi2);
595 rt2x00_desc_read(rxwi, 3, &rxwi3);
596
Bartlomiej Zolnierkiewicz4116cb42009-11-08 14:39:40 +0100597 if (rt2x00_get_field32(rxd0, RXINFO_W0_CRC_ERROR))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200598 rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
599
600 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) {
601 rxdesc->cipher = rt2x00_get_field32(rxwi0, RXWI_W0_UDF);
602 rxdesc->cipher_status =
Bartlomiej Zolnierkiewicz4116cb42009-11-08 14:39:40 +0100603 rt2x00_get_field32(rxd0, RXINFO_W0_CIPHER_ERROR);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200604 }
605
Bartlomiej Zolnierkiewicz4116cb42009-11-08 14:39:40 +0100606 if (rt2x00_get_field32(rxd0, RXINFO_W0_DECRYPTED)) {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200607 /*
608 * Hardware has stripped IV/EIV data from 802.11 frame during
609 * decryption. Unfortunately the descriptor doesn't contain
610 * any fields with the EIV/IV data either, so they can't
611 * be restored by rt2x00lib.
612 */
613 rxdesc->flags |= RX_FLAG_IV_STRIPPED;
614
615 if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
616 rxdesc->flags |= RX_FLAG_DECRYPTED;
617 else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
618 rxdesc->flags |= RX_FLAG_MMIC_ERROR;
619 }
620
Bartlomiej Zolnierkiewicz4116cb42009-11-08 14:39:40 +0100621 if (rt2x00_get_field32(rxd0, RXINFO_W0_MY_BSS))
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200622 rxdesc->dev_flags |= RXDONE_MY_BSS;
623
Bartlomiej Zolnierkiewicz4116cb42009-11-08 14:39:40 +0100624 if (rt2x00_get_field32(rxd0, RXINFO_W0_L2PAD)) {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200625 rxdesc->dev_flags |= RXDONE_L2PAD;
Ivo van Doorn0fefe0f2009-08-17 18:54:50 +0200626 skbdesc->flags |= SKBDESC_L2_PADDED;
627 }
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200628
629 if (rt2x00_get_field32(rxwi1, RXWI_W1_SHORT_GI))
630 rxdesc->flags |= RX_FLAG_SHORT_GI;
631
632 if (rt2x00_get_field32(rxwi1, RXWI_W1_BW))
633 rxdesc->flags |= RX_FLAG_40MHZ;
634
635 /*
636 * Detect RX rate, always use MCS as signal type.
637 */
638 rxdesc->dev_flags |= RXDONE_SIGNAL_MCS;
639 rxdesc->rate_mode = rt2x00_get_field32(rxwi1, RXWI_W1_PHYMODE);
640 rxdesc->signal = rt2x00_get_field32(rxwi1, RXWI_W1_MCS);
641
642 /*
643 * Mask of 0x8 bit to remove the short preamble flag.
644 */
645 if (rxdesc->rate_mode == RATE_MODE_CCK)
646 rxdesc->signal &= ~0x8;
647
648 rxdesc->rssi =
649 (rt2x00_get_field32(rxwi2, RXWI_W2_RSSI0) +
650 rt2x00_get_field32(rxwi2, RXWI_W2_RSSI1)) / 2;
651
652 rxdesc->noise =
653 (rt2x00_get_field32(rxwi3, RXWI_W3_SNR0) +
654 rt2x00_get_field32(rxwi3, RXWI_W3_SNR1)) / 2;
655
656 rxdesc->size = rt2x00_get_field32(rxwi0, RXWI_W0_MPDU_TOTAL_BYTE_COUNT);
657
658 /*
659 * Remove RXWI descriptor from start of buffer.
660 */
661 skb_pull(entry->skb, skbdesc->desc_len);
662 skb_trim(entry->skb, rxdesc->size);
663}
664
665/*
666 * Device probe functions.
667 */
Bartlomiej Zolnierkiewicz7ab71322009-11-08 14:38:54 +0100668static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
669{
Bartlomiej Zolnierkiewicz40beee52009-11-08 14:39:55 +0100670 if (rt2800_efuse_detect(rt2x00dev))
671 rt2800_read_eeprom_efuse(rt2x00dev);
672 else
673 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
674 EEPROM_SIZE);
Bartlomiej Zolnierkiewicz7ab71322009-11-08 14:38:54 +0100675
676 return rt2800_validate_eeprom(rt2x00dev);
677}
678
Bartlomiej Zolnierkiewicz7a345d32009-11-04 18:34:53 +0100679static const struct rt2800_ops rt2800usb_rt2800_ops = {
680 .register_read = rt2x00usb_register_read,
681 .register_write = rt2x00usb_register_write,
682 .register_write_lock = rt2x00usb_register_write_lock,
683
684 .register_multiread = rt2x00usb_register_multiread,
685 .register_multiwrite = rt2x00usb_register_multiwrite,
686
687 .regbusy_read = rt2x00usb_regbusy_read,
688};
689
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200690static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
691{
692 int retval;
693
Bartlomiej Zolnierkiewicz7a345d32009-11-04 18:34:53 +0100694 rt2x00dev->priv = (void *)&rt2800usb_rt2800_ops;
695
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200696 /*
697 * Allocate eeprom data.
698 */
699 retval = rt2800usb_validate_eeprom(rt2x00dev);
700 if (retval)
701 return retval;
702
Bartlomiej Zolnierkiewicz38bd7b82009-11-08 14:39:01 +0100703 retval = rt2800_init_eeprom(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200704 if (retval)
705 return retval;
706
707 /*
708 * Initialize hw specifications.
709 */
Bartlomiej Zolnierkiewicz4da29332009-11-08 14:39:32 +0100710 retval = rt2800_probe_hw_mode(rt2x00dev);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200711 if (retval)
712 return retval;
713
714 /*
Igor Perminov1afcfd542009-08-08 23:55:55 +0200715 * This device has multiple filters for control frames
716 * and has a separate filter for PS Poll frames.
717 */
718 __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags);
719 __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags);
720
721 /*
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200722 * This device requires firmware.
723 */
724 __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200725 __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
726 if (!modparam_nohwcrypt)
727 __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
728
729 /*
730 * Set the rssi offset.
731 */
732 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
733
734 return 0;
735}
736
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200737static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
738 .probe_hw = rt2800usb_probe_hw,
739 .get_firmware_name = rt2800usb_get_firmware_name,
740 .check_firmware = rt2800usb_check_firmware,
741 .load_firmware = rt2800usb_load_firmware,
742 .initialize = rt2x00usb_initialize,
743 .uninitialize = rt2x00usb_uninitialize,
744 .clear_entry = rt2x00usb_clear_entry,
745 .set_device_state = rt2800usb_set_device_state,
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100746 .rfkill_poll = rt2800_rfkill_poll,
747 .link_stats = rt2800_link_stats,
748 .reset_tuner = rt2800_reset_tuner,
749 .link_tuner = rt2800_link_tuner,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200750 .write_tx_desc = rt2800usb_write_tx_desc,
751 .write_tx_data = rt2x00usb_write_tx_data,
752 .write_beacon = rt2800usb_write_beacon,
753 .get_tx_data_len = rt2800usb_get_tx_data_len,
754 .kick_tx_queue = rt2800usb_kick_tx_queue,
755 .kill_tx_queue = rt2x00usb_kill_tx_queue,
756 .fill_rxdone = rt2800usb_fill_rxdone,
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100757 .config_shared_key = rt2800_config_shared_key,
758 .config_pairwise_key = rt2800_config_pairwise_key,
759 .config_filter = rt2800_config_filter,
760 .config_intf = rt2800_config_intf,
761 .config_erp = rt2800_config_erp,
762 .config_ant = rt2800_config_ant,
763 .config = rt2800_config,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200764};
765
766static const struct data_queue_desc rt2800usb_queue_rx = {
767 .entry_num = RX_ENTRIES,
768 .data_size = AGGREGATION_SIZE,
Bartlomiej Zolnierkiewiczd42c8d82009-11-04 18:35:47 +0100769 .desc_size = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200770 .priv_size = sizeof(struct queue_entry_priv_usb),
771};
772
773static const struct data_queue_desc rt2800usb_queue_tx = {
774 .entry_num = TX_ENTRIES,
775 .data_size = AGGREGATION_SIZE,
776 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
777 .priv_size = sizeof(struct queue_entry_priv_usb),
778};
779
780static const struct data_queue_desc rt2800usb_queue_bcn = {
781 .entry_num = 8 * BEACON_ENTRIES,
782 .data_size = MGMT_FRAME_SIZE,
783 .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
784 .priv_size = sizeof(struct queue_entry_priv_usb),
785};
786
787static const struct rt2x00_ops rt2800usb_ops = {
788 .name = KBUILD_MODNAME,
789 .max_sta_intf = 1,
790 .max_ap_intf = 8,
791 .eeprom_size = EEPROM_SIZE,
792 .rf_size = RF_SIZE,
793 .tx_queues = NUM_TX_QUEUES,
794 .rx = &rt2800usb_queue_rx,
795 .tx = &rt2800usb_queue_tx,
796 .bcn = &rt2800usb_queue_bcn,
797 .lib = &rt2800usb_rt2x00_ops,
Bartlomiej Zolnierkiewicz2ce33992009-11-04 18:37:05 +0100798 .hw = &rt2800_mac80211_ops,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200799#ifdef CONFIG_RT2X00_LIB_DEBUGFS
Bartlomiej Zolnierkiewiczf4450612009-11-04 18:36:40 +0100800 .debugfs = &rt2800_rt2x00debug,
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200801#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
802};
803
804/*
805 * rt2800usb module information.
806 */
807static struct usb_device_id rt2800usb_device_table[] = {
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200808 /* Abocom */
809 { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
810 { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
811 { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
812 { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
813 { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
814 { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
815 /* AirTies */
816 { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops) },
817 /* Amigo */
818 { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
819 { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops) },
820 /* Amit */
821 { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
822 /* ASUS */
823 { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops) },
824 { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops) },
825 { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops) },
826 { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops) },
827 { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops) },
828 /* AzureWave */
829 { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops) },
830 { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops) },
831 { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops) },
832 { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops) },
833 /* Belkin */
834 { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops) },
835 { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops) },
836 { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doorn2c617b02009-05-19 07:26:04 +0200837 { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200838 /* Buffalo */
839 { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops) },
840 { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops) },
841 /* Conceptronic */
842 { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops) },
843 { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops) },
844 { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops) },
845 { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
846 { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
847 { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops) },
848 { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops) },
849 { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops) },
850 { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops) },
851 { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops) },
852 /* Corega */
853 { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
854 { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
855 { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
856 { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
857 { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
858 /* D-Link */
859 { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
860 { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops) },
861 { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200862 { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops) },
863 { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops) },
864 { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200865 { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
866 { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops) },
867 /* Edimax */
868 { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops) },
869 { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops) },
870 { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200871 /* Encore */
872 { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200873 /* EnGenius */
874 { USB_DEVICE(0X1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops) },
875 { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops) },
876 { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops) },
877 { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops) },
878 { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops) },
879 { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops) },
880 /* Gemtek */
881 { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
882 /* Gigabyte */
883 { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops) },
884 { USB_DEVICE(0x1044, 0x800c), USB_DEVICE_DATA(&rt2800usb_ops) },
885 { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops) },
886 /* Hawking */
887 { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops) },
888 { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops) },
889 { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops) },
890 { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200891 /* I-O DATA */
892 { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200893 /* LevelOne */
894 { USB_DEVICE(0x1740, 0x0605), USB_DEVICE_DATA(&rt2800usb_ops) },
895 { USB_DEVICE(0x1740, 0x0615), USB_DEVICE_DATA(&rt2800usb_ops) },
896 /* Linksys */
897 { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops) },
898 { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doorne430d602009-04-27 23:58:31 +0200899 { USB_DEVICE(0x1737, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200900 /* Logitec */
901 { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops) },
902 { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops) },
903 { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops) },
904 /* Motorola */
905 { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
906 { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops) },
907 /* Ovislink */
908 { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
909 /* Pegatron */
910 { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops) },
911 { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200912 { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200913 /* Philips */
914 { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops) },
915 /* Planex */
916 { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops) },
917 { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops) },
918 { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops) },
919 /* Qcom */
920 { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops) },
921 /* Quanta */
922 { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops) },
923 /* Ralink */
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200924 { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200925 { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops) },
926 { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
927 { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
928 { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
929 { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
930 { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
931 { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
932 { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
933 /* Samsung */
934 { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops) },
935 /* Siemens */
936 { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops) },
937 /* Sitecom */
938 { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
939 { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops) },
940 { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops) },
941 { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops) },
942 { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops) },
943 { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops) },
944 { USB_DEVICE(0x0df6, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
945 { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops) },
946 { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops) },
947 { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
948 { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200949 { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200950 /* SMC */
951 { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops) },
952 { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops) },
953 { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops) },
954 { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops) },
955 { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops) },
956 { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops) },
957 { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops) },
958 { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops) },
959 { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops) },
960 /* Sparklan */
961 { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doorn3b91c362009-05-21 19:16:14 +0200962 /* Sweex */
963 { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops) },
964 { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops) },
965 { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200966 /* U-Media*/
967 { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops) },
968 /* ZCOM */
969 { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops) },
970 { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops) },
971 /* Zinwell */
972 { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops) },
973 { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornce2ebc92009-05-22 21:33:21 +0200974 { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops) },
975 { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops) },
Ivo van Doornd53d9e62009-04-26 15:47:48 +0200976 /* Zyxel */
977 { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops) },
978 { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops) },
979 { 0, }
980};
981
982MODULE_AUTHOR(DRV_PROJECT);
983MODULE_VERSION(DRV_VERSION);
984MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
985MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
986MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
987MODULE_FIRMWARE(FIRMWARE_RT2870);
988MODULE_LICENSE("GPL");
989
990static struct usb_driver rt2800usb_driver = {
991 .name = KBUILD_MODNAME,
992 .id_table = rt2800usb_device_table,
993 .probe = rt2x00usb_probe,
994 .disconnect = rt2x00usb_disconnect,
995 .suspend = rt2x00usb_suspend,
996 .resume = rt2x00usb_resume,
997};
998
999static int __init rt2800usb_init(void)
1000{
1001 return usb_register(&rt2800usb_driver);
1002}
1003
1004static void __exit rt2800usb_exit(void)
1005{
1006 usb_deregister(&rt2800usb_driver);
1007}
1008
1009module_init(rt2800usb_init);
1010module_exit(rt2800usb_exit);