2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
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.
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.
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.
23 Abstract: rt2500usb device specific routines.
24 Supported chipsets: RT2570.
28 * Set enviroment defines for rt2x00.h
30 #define DRV_NAME "rt2500usb"
32 #include <linux/delay.h>
33 #include <linux/etherdevice.h>
34 #include <linux/init.h>
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/usb.h>
40 #include "rt2x00usb.h"
41 #include "rt2500usb.h"
45 * All access to the CSR registers will go through the methods
46 * rt2500usb_register_read and rt2500usb_register_write.
47 * BBP and RF register require indirect register access,
48 * and use the CSR registers BBPCSR and RFCSR to achieve this.
49 * These indirect registers work with busy bits,
50 * and we will try maximal REGISTER_BUSY_COUNT times to access
51 * the register while taking a REGISTER_BUSY_DELAY us delay
52 * between each attampt. When the busy bit is still set at that time,
53 * the access attempt is considered to have failed,
54 * and we will print an error.
56 static inline void rt2500usb_register_read(const struct rt2x00_dev *rt2x00dev,
57 const unsigned int offset,
61 rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ,
62 USB_VENDOR_REQUEST_IN, offset,
63 ®, sizeof(u16), REGISTER_TIMEOUT);
64 *value = le16_to_cpu(reg);
67 static inline void rt2500usb_register_multiread(const struct rt2x00_dev
69 const unsigned int offset,
70 void *value, const u16 length)
72 int timeout = REGISTER_TIMEOUT * (length / sizeof(u16));
73 rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ,
74 USB_VENDOR_REQUEST_IN, offset,
75 value, length, timeout);
78 static inline void rt2500usb_register_write(const struct rt2x00_dev *rt2x00dev,
79 const unsigned int offset,
82 __le16 reg = cpu_to_le16(value);
83 rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE,
84 USB_VENDOR_REQUEST_OUT, offset,
85 ®, sizeof(u16), REGISTER_TIMEOUT);
88 static inline void rt2500usb_register_multiwrite(const struct rt2x00_dev
90 const unsigned int offset,
91 void *value, const u16 length)
93 int timeout = REGISTER_TIMEOUT * (length / sizeof(u16));
94 rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE,
95 USB_VENDOR_REQUEST_OUT, offset,
96 value, length, timeout);
99 static u16 rt2500usb_bbp_check(const struct rt2x00_dev *rt2x00dev)
104 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
105 rt2500usb_register_read(rt2x00dev, PHY_CSR8, ®);
106 if (!rt2x00_get_field16(reg, PHY_CSR8_BUSY))
108 udelay(REGISTER_BUSY_DELAY);
114 static void rt2500usb_bbp_write(const struct rt2x00_dev *rt2x00dev,
115 const unsigned int word, const u8 value)
120 * Wait until the BBP becomes ready.
122 reg = rt2500usb_bbp_check(rt2x00dev);
123 if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) {
124 ERROR(rt2x00dev, "PHY_CSR8 register busy. Write failed.\n");
129 * Write the data into the BBP.
132 rt2x00_set_field16(®, PHY_CSR7_DATA, value);
133 rt2x00_set_field16(®, PHY_CSR7_REG_ID, word);
134 rt2x00_set_field16(®, PHY_CSR7_READ_CONTROL, 0);
136 rt2500usb_register_write(rt2x00dev, PHY_CSR7, reg);
139 static void rt2500usb_bbp_read(const struct rt2x00_dev *rt2x00dev,
140 const unsigned int word, u8 *value)
145 * Wait until the BBP becomes ready.
147 reg = rt2500usb_bbp_check(rt2x00dev);
148 if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) {
149 ERROR(rt2x00dev, "PHY_CSR8 register busy. Read failed.\n");
154 * Write the request into the BBP.
157 rt2x00_set_field16(®, PHY_CSR7_REG_ID, word);
158 rt2x00_set_field16(®, PHY_CSR7_READ_CONTROL, 1);
160 rt2500usb_register_write(rt2x00dev, PHY_CSR7, reg);
163 * Wait until the BBP becomes ready.
165 reg = rt2500usb_bbp_check(rt2x00dev);
166 if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) {
167 ERROR(rt2x00dev, "PHY_CSR8 register busy. Read failed.\n");
172 rt2500usb_register_read(rt2x00dev, PHY_CSR7, ®);
173 *value = rt2x00_get_field16(reg, PHY_CSR7_DATA);
176 static void rt2500usb_rf_write(const struct rt2x00_dev *rt2x00dev,
177 const unsigned int word, const u32 value)
185 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
186 rt2500usb_register_read(rt2x00dev, PHY_CSR10, ®);
187 if (!rt2x00_get_field16(reg, PHY_CSR10_RF_BUSY))
189 udelay(REGISTER_BUSY_DELAY);
192 ERROR(rt2x00dev, "PHY_CSR10 register busy. Write failed.\n");
197 rt2x00_set_field16(®, PHY_CSR9_RF_VALUE, value);
198 rt2500usb_register_write(rt2x00dev, PHY_CSR9, reg);
201 rt2x00_set_field16(®, PHY_CSR10_RF_VALUE, value >> 16);
202 rt2x00_set_field16(®, PHY_CSR10_RF_NUMBER_OF_BITS, 20);
203 rt2x00_set_field16(®, PHY_CSR10_RF_IF_SELECT, 0);
204 rt2x00_set_field16(®, PHY_CSR10_RF_BUSY, 1);
206 rt2500usb_register_write(rt2x00dev, PHY_CSR10, reg);
207 rt2x00_rf_write(rt2x00dev, word, value);
210 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
211 #define CSR_OFFSET(__word) ( CSR_REG_BASE + ((__word) * sizeof(u16)) )
213 static void rt2500usb_read_csr(const struct rt2x00_dev *rt2x00dev,
214 const unsigned int word, u32 *data)
216 rt2500usb_register_read(rt2x00dev, CSR_OFFSET(word), (u16 *) data);
219 static void rt2500usb_write_csr(const struct rt2x00_dev *rt2x00dev,
220 const unsigned int word, u32 data)
222 rt2500usb_register_write(rt2x00dev, CSR_OFFSET(word), data);
225 static const struct rt2x00debug rt2500usb_rt2x00debug = {
226 .owner = THIS_MODULE,
228 .read = rt2500usb_read_csr,
229 .write = rt2500usb_write_csr,
230 .word_size = sizeof(u16),
231 .word_count = CSR_REG_SIZE / sizeof(u16),
234 .read = rt2x00_eeprom_read,
235 .write = rt2x00_eeprom_write,
236 .word_size = sizeof(u16),
237 .word_count = EEPROM_SIZE / sizeof(u16),
240 .read = rt2500usb_bbp_read,
241 .write = rt2500usb_bbp_write,
242 .word_size = sizeof(u8),
243 .word_count = BBP_SIZE / sizeof(u8),
246 .read = rt2x00_rf_read,
247 .write = rt2500usb_rf_write,
248 .word_size = sizeof(u32),
249 .word_count = RF_SIZE / sizeof(u32),
252 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
255 * Configuration handlers.
257 static void rt2500usb_config_mac_addr(struct rt2x00_dev *rt2x00dev,
260 rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR2, &mac,
261 (3 * sizeof(__le16)));
264 static void rt2500usb_config_bssid(struct rt2x00_dev *rt2x00dev,
267 rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR5, bssid,
268 (3 * sizeof(__le16)));
271 static void rt2500usb_config_type(struct rt2x00_dev *rt2x00dev, const int type,
276 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0);
279 * Enable beacon config
281 rt2500usb_register_read(rt2x00dev, TXRX_CSR20, ®);
282 rt2x00_set_field16(®, TXRX_CSR20_OFFSET,
283 (PREAMBLE + get_duration(IEEE80211_HEADER, 20)) >> 6);
284 if (type == IEEE80211_IF_TYPE_STA)
285 rt2x00_set_field16(®, TXRX_CSR20_BCN_EXPECT_WINDOW, 0);
287 rt2x00_set_field16(®, TXRX_CSR20_BCN_EXPECT_WINDOW, 2);
288 rt2500usb_register_write(rt2x00dev, TXRX_CSR20, reg);
291 * Enable synchronisation.
293 rt2500usb_register_read(rt2x00dev, TXRX_CSR18, ®);
294 rt2x00_set_field16(®, TXRX_CSR18_OFFSET, 0);
295 rt2500usb_register_write(rt2x00dev, TXRX_CSR18, reg);
297 rt2500usb_register_read(rt2x00dev, TXRX_CSR19, ®);
298 rt2x00_set_field16(®, TXRX_CSR19_TSF_COUNT, 1);
299 rt2x00_set_field16(®, TXRX_CSR19_TBCN, 1);
300 rt2x00_set_field16(®, TXRX_CSR19_BEACON_GEN, 0);
301 rt2x00_set_field16(®, TXRX_CSR19_TSF_SYNC, tsf_sync);
302 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg);
305 static void rt2500usb_config_preamble(struct rt2x00_dev *rt2x00dev,
306 const int short_preamble,
307 const int ack_timeout,
308 const int ack_consume_time)
313 * When in atomic context, reschedule and let rt2x00lib
314 * call this function again.
317 queue_work(rt2x00dev->hw->workqueue, &rt2x00dev->config_work);
321 rt2500usb_register_read(rt2x00dev, TXRX_CSR1, ®);
322 rt2x00_set_field16(®, TXRX_CSR1_ACK_TIMEOUT, ack_timeout);
323 rt2500usb_register_write(rt2x00dev, TXRX_CSR1, reg);
325 rt2500usb_register_read(rt2x00dev, TXRX_CSR10, ®);
326 rt2x00_set_field16(®, TXRX_CSR10_AUTORESPOND_PREAMBLE,
328 rt2500usb_register_write(rt2x00dev, TXRX_CSR10, reg);
331 static void rt2500usb_config_phymode(struct rt2x00_dev *rt2x00dev,
333 const int basic_rate_mask)
335 rt2500usb_register_write(rt2x00dev, TXRX_CSR11, basic_rate_mask);
337 if (phymode == HWMODE_B) {
338 rt2500usb_register_write(rt2x00dev, MAC_CSR11, 0x000b);
339 rt2500usb_register_write(rt2x00dev, MAC_CSR12, 0x0040);
341 rt2500usb_register_write(rt2x00dev, MAC_CSR11, 0x0005);
342 rt2500usb_register_write(rt2x00dev, MAC_CSR12, 0x016c);
346 static void rt2500usb_config_channel(struct rt2x00_dev *rt2x00dev,
347 struct rf_channel *rf, const int txpower)
352 rt2x00_set_field32(&rf->rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower));
355 * For RT2525E we should first set the channel to half band higher.
357 if (rt2x00_rf(&rt2x00dev->chip, RF2525E)) {
358 static const u32 vals[] = {
359 0x000008aa, 0x000008ae, 0x000008ae, 0x000008b2,
360 0x000008b2, 0x000008b6, 0x000008b6, 0x000008ba,
361 0x000008ba, 0x000008be, 0x000008b7, 0x00000902,
362 0x00000902, 0x00000906
365 rt2500usb_rf_write(rt2x00dev, 2, vals[rf->channel - 1]);
367 rt2500usb_rf_write(rt2x00dev, 4, rf->rf4);
370 rt2500usb_rf_write(rt2x00dev, 1, rf->rf1);
371 rt2500usb_rf_write(rt2x00dev, 2, rf->rf2);
372 rt2500usb_rf_write(rt2x00dev, 3, rf->rf3);
374 rt2500usb_rf_write(rt2x00dev, 4, rf->rf4);
377 static void rt2500usb_config_txpower(struct rt2x00_dev *rt2x00dev,
382 rt2x00_rf_read(rt2x00dev, 3, &rf3);
383 rt2x00_set_field32(&rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower));
384 rt2500usb_rf_write(rt2x00dev, 3, rf3);
387 static void rt2500usb_config_antenna(struct rt2x00_dev *rt2x00dev,
388 const int antenna_tx, const int antenna_rx)
395 rt2500usb_bbp_read(rt2x00dev, 2, &r2);
396 rt2500usb_bbp_read(rt2x00dev, 14, &r14);
397 rt2500usb_register_read(rt2x00dev, PHY_CSR5, &csr5);
398 rt2500usb_register_read(rt2x00dev, PHY_CSR6, &csr6);
401 * Configure the TX antenna.
403 switch (antenna_tx) {
404 case ANTENNA_SW_DIVERSITY:
405 case ANTENNA_HW_DIVERSITY:
406 rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 1);
407 rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 1);
408 rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 1);
411 rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 0);
412 rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 0);
413 rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 0);
416 rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 2);
417 rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 2);
418 rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 2);
423 * Configure the RX antenna.
425 switch (antenna_rx) {
426 case ANTENNA_SW_DIVERSITY:
427 case ANTENNA_HW_DIVERSITY:
428 rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 1);
431 rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 0);
434 rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 2);
439 * RT2525E and RT5222 need to flip TX I/Q
441 if (rt2x00_rf(&rt2x00dev->chip, RF2525E) ||
442 rt2x00_rf(&rt2x00dev->chip, RF5222)) {
443 rt2x00_set_field8(&r2, BBP_R2_TX_IQ_FLIP, 1);
444 rt2x00_set_field16(&csr5, PHY_CSR5_CCK_FLIP, 1);
445 rt2x00_set_field16(&csr6, PHY_CSR6_OFDM_FLIP, 1);
448 * RT2525E does not need RX I/Q Flip.
450 if (rt2x00_rf(&rt2x00dev->chip, RF2525E))
451 rt2x00_set_field8(&r14, BBP_R14_RX_IQ_FLIP, 0);
453 rt2x00_set_field16(&csr5, PHY_CSR5_CCK_FLIP, 0);
454 rt2x00_set_field16(&csr6, PHY_CSR6_OFDM_FLIP, 0);
457 rt2500usb_bbp_write(rt2x00dev, 2, r2);
458 rt2500usb_bbp_write(rt2x00dev, 14, r14);
459 rt2500usb_register_write(rt2x00dev, PHY_CSR5, csr5);
460 rt2500usb_register_write(rt2x00dev, PHY_CSR6, csr6);
463 static void rt2500usb_config_duration(struct rt2x00_dev *rt2x00dev,
464 struct rt2x00lib_conf *libconf)
468 rt2500usb_register_write(rt2x00dev, MAC_CSR10, libconf->slot_time);
470 rt2500usb_register_read(rt2x00dev, TXRX_CSR18, ®);
471 rt2x00_set_field16(®, TXRX_CSR18_INTERVAL,
472 libconf->conf->beacon_int * 4);
473 rt2500usb_register_write(rt2x00dev, TXRX_CSR18, reg);
476 static void rt2500usb_config(struct rt2x00_dev *rt2x00dev,
477 const unsigned int flags,
478 struct rt2x00lib_conf *libconf)
480 if (flags & CONFIG_UPDATE_PHYMODE)
481 rt2500usb_config_phymode(rt2x00dev, libconf->phymode,
482 libconf->basic_rates);
483 if (flags & CONFIG_UPDATE_CHANNEL)
484 rt2500usb_config_channel(rt2x00dev, &libconf->rf,
485 libconf->conf->power_level);
486 if ((flags & CONFIG_UPDATE_TXPOWER) && !(flags & CONFIG_UPDATE_CHANNEL))
487 rt2500usb_config_txpower(rt2x00dev,
488 libconf->conf->power_level);
489 if (flags & CONFIG_UPDATE_ANTENNA)
490 rt2500usb_config_antenna(rt2x00dev,
491 libconf->conf->antenna_sel_tx,
492 libconf->conf->antenna_sel_rx);
493 if (flags & (CONFIG_UPDATE_SLOT_TIME | CONFIG_UPDATE_BEACON_INT))
494 rt2500usb_config_duration(rt2x00dev, libconf);
500 static void rt2500usb_enable_led(struct rt2x00_dev *rt2x00dev)
504 rt2500usb_register_read(rt2x00dev, MAC_CSR21, ®);
505 rt2x00_set_field16(®, MAC_CSR21_ON_PERIOD, 70);
506 rt2x00_set_field16(®, MAC_CSR21_OFF_PERIOD, 30);
507 rt2500usb_register_write(rt2x00dev, MAC_CSR21, reg);
509 rt2500usb_register_read(rt2x00dev, MAC_CSR20, ®);
511 if (rt2x00dev->led_mode == LED_MODE_TXRX_ACTIVITY) {
512 rt2x00_set_field16(®, MAC_CSR20_LINK, 1);
513 rt2x00_set_field16(®, MAC_CSR20_ACTIVITY, 0);
514 } else if (rt2x00dev->led_mode == LED_MODE_ASUS) {
515 rt2x00_set_field16(®, MAC_CSR20_LINK, 0);
516 rt2x00_set_field16(®, MAC_CSR20_ACTIVITY, 1);
518 rt2x00_set_field16(®, MAC_CSR20_LINK, 1);
519 rt2x00_set_field16(®, MAC_CSR20_ACTIVITY, 1);
522 rt2500usb_register_write(rt2x00dev, MAC_CSR20, reg);
525 static void rt2500usb_disable_led(struct rt2x00_dev *rt2x00dev)
529 rt2500usb_register_read(rt2x00dev, MAC_CSR20, ®);
530 rt2x00_set_field16(®, MAC_CSR20_LINK, 0);
531 rt2x00_set_field16(®, MAC_CSR20_ACTIVITY, 0);
532 rt2500usb_register_write(rt2x00dev, MAC_CSR20, reg);
538 static void rt2500usb_link_stats(struct rt2x00_dev *rt2x00dev)
543 * Update FCS error count from register.
545 rt2500usb_register_read(rt2x00dev, STA_CSR0, ®);
546 rt2x00dev->link.rx_failed = rt2x00_get_field16(reg, STA_CSR0_FCS_ERROR);
549 * Update False CCA count from register.
551 rt2500usb_register_read(rt2x00dev, STA_CSR3, ®);
552 rt2x00dev->link.false_cca =
553 rt2x00_get_field16(reg, STA_CSR3_FALSE_CCA_ERROR);
556 static void rt2500usb_reset_tuner(struct rt2x00_dev *rt2x00dev)
561 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &eeprom);
562 value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R24_LOW);
563 rt2500usb_bbp_write(rt2x00dev, 24, value);
565 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &eeprom);
566 value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R25_LOW);
567 rt2500usb_bbp_write(rt2x00dev, 25, value);
569 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &eeprom);
570 value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R61_LOW);
571 rt2500usb_bbp_write(rt2x00dev, 61, value);
573 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &eeprom);
574 value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_VGCUPPER);
575 rt2500usb_bbp_write(rt2x00dev, 17, value);
577 rt2x00dev->link.vgc_level = value;
580 static void rt2500usb_link_tuner(struct rt2x00_dev *rt2x00dev)
582 int rssi = rt2x00_get_link_rssi(&rt2x00dev->link);
595 * Determine the BBP tuning threshold and correctly
596 * set BBP 24, 25 and 61.
598 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE, &bbp_thresh);
599 bbp_thresh = rt2x00_get_field16(bbp_thresh, EEPROM_BBPTUNE_THRESHOLD);
601 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &r24);
602 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &r25);
603 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &r61);
605 if ((rssi + bbp_thresh) > 0) {
606 r24 = rt2x00_get_field16(r24, EEPROM_BBPTUNE_R24_HIGH);
607 r25 = rt2x00_get_field16(r25, EEPROM_BBPTUNE_R25_HIGH);
608 r61 = rt2x00_get_field16(r61, EEPROM_BBPTUNE_R61_HIGH);
610 r24 = rt2x00_get_field16(r24, EEPROM_BBPTUNE_R24_LOW);
611 r25 = rt2x00_get_field16(r25, EEPROM_BBPTUNE_R25_LOW);
612 r61 = rt2x00_get_field16(r61, EEPROM_BBPTUNE_R61_LOW);
615 rt2500usb_bbp_write(rt2x00dev, 24, r24);
616 rt2500usb_bbp_write(rt2x00dev, 25, r25);
617 rt2500usb_bbp_write(rt2x00dev, 61, r61);
620 * Read current r17 value, as well as the sensitivity values
621 * for the r17 register.
623 rt2500usb_bbp_read(rt2x00dev, 17, &r17);
624 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R17, &r17_sens);
627 * A too low RSSI will cause too much false CCA which will
628 * then corrupt the R17 tuning. To remidy this the tuning should
629 * be stopped (While making sure the R17 value will not exceed limits)
633 rt2500usb_bbp_write(rt2x00dev, 17, 0x60);
638 * Special big-R17 for short distance
641 sens = rt2x00_get_field16(r17_sens, EEPROM_BBPTUNE_R17_LOW);
643 rt2500usb_bbp_write(rt2x00dev, 17, sens);
648 * Special mid-R17 for middle distance
651 sens = rt2x00_get_field16(r17_sens, EEPROM_BBPTUNE_R17_HIGH);
653 rt2500usb_bbp_write(rt2x00dev, 17, sens);
658 * Leave short or middle distance condition, restore r17
659 * to the dynamic tuning range.
661 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &vgc_bound);
662 vgc_bound = rt2x00_get_field16(vgc_bound, EEPROM_BBPTUNE_VGCUPPER);
666 up_bound = vgc_bound;
668 up_bound = vgc_bound - (-77 - rssi);
670 if (up_bound < low_bound)
671 up_bound = low_bound;
673 if (r17 > up_bound) {
674 rt2500usb_bbp_write(rt2x00dev, 17, up_bound);
675 rt2x00dev->link.vgc_level = up_bound;
676 } else if (rt2x00dev->link.false_cca > 512 && r17 < up_bound) {
677 rt2500usb_bbp_write(rt2x00dev, 17, ++r17);
678 rt2x00dev->link.vgc_level = r17;
679 } else if (rt2x00dev->link.false_cca < 100 && r17 > low_bound) {
680 rt2500usb_bbp_write(rt2x00dev, 17, --r17);
681 rt2x00dev->link.vgc_level = r17;
686 * Initialization functions.
688 static int rt2500usb_init_registers(struct rt2x00_dev *rt2x00dev)
692 rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0x0001,
693 USB_MODE_TEST, REGISTER_TIMEOUT);
694 rt2x00usb_vendor_request_sw(rt2x00dev, USB_SINGLE_WRITE, 0x0308,
695 0x00f0, REGISTER_TIMEOUT);
697 rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®);
698 rt2x00_set_field16(®, TXRX_CSR2_DISABLE_RX, 1);
699 rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg);
701 rt2500usb_register_write(rt2x00dev, MAC_CSR13, 0x1111);
702 rt2500usb_register_write(rt2x00dev, MAC_CSR14, 0x1e11);
704 rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®);
705 rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 1);
706 rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 1);
707 rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 0);
708 rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg);
710 rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®);
711 rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 0);
712 rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 0);
713 rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 0);
714 rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg);
716 rt2500usb_register_read(rt2x00dev, TXRX_CSR5, ®);
717 rt2x00_set_field16(®, TXRX_CSR5_BBP_ID0, 13);
718 rt2x00_set_field16(®, TXRX_CSR5_BBP_ID0_VALID, 1);
719 rt2x00_set_field16(®, TXRX_CSR5_BBP_ID1, 12);
720 rt2x00_set_field16(®, TXRX_CSR5_BBP_ID1_VALID, 1);
721 rt2500usb_register_write(rt2x00dev, TXRX_CSR5, reg);
723 rt2500usb_register_read(rt2x00dev, TXRX_CSR6, ®);
724 rt2x00_set_field16(®, TXRX_CSR6_BBP_ID0, 10);
725 rt2x00_set_field16(®, TXRX_CSR6_BBP_ID0_VALID, 1);
726 rt2x00_set_field16(®, TXRX_CSR6_BBP_ID1, 11);
727 rt2x00_set_field16(®, TXRX_CSR6_BBP_ID1_VALID, 1);
728 rt2500usb_register_write(rt2x00dev, TXRX_CSR6, reg);
730 rt2500usb_register_read(rt2x00dev, TXRX_CSR7, ®);
731 rt2x00_set_field16(®, TXRX_CSR7_BBP_ID0, 7);
732 rt2x00_set_field16(®, TXRX_CSR7_BBP_ID0_VALID, 1);
733 rt2x00_set_field16(®, TXRX_CSR7_BBP_ID1, 6);
734 rt2x00_set_field16(®, TXRX_CSR7_BBP_ID1_VALID, 1);
735 rt2500usb_register_write(rt2x00dev, TXRX_CSR7, reg);
737 rt2500usb_register_read(rt2x00dev, TXRX_CSR8, ®);
738 rt2x00_set_field16(®, TXRX_CSR8_BBP_ID0, 5);
739 rt2x00_set_field16(®, TXRX_CSR8_BBP_ID0_VALID, 1);
740 rt2x00_set_field16(®, TXRX_CSR8_BBP_ID1, 0);
741 rt2x00_set_field16(®, TXRX_CSR8_BBP_ID1_VALID, 0);
742 rt2500usb_register_write(rt2x00dev, TXRX_CSR8, reg);
744 rt2500usb_register_write(rt2x00dev, TXRX_CSR21, 0xe78f);
745 rt2500usb_register_write(rt2x00dev, MAC_CSR9, 0xff1d);
747 if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_AWAKE))
750 rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®);
751 rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 0);
752 rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 0);
753 rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 1);
754 rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg);
756 if (rt2x00_rev(&rt2x00dev->chip) >= RT2570_VERSION_C) {
757 rt2500usb_register_read(rt2x00dev, PHY_CSR2, ®);
762 rt2500usb_register_write(rt2x00dev, PHY_CSR2, reg);
764 rt2500usb_register_write(rt2x00dev, MAC_CSR11, 0x0002);
765 rt2500usb_register_write(rt2x00dev, MAC_CSR22, 0x0053);
766 rt2500usb_register_write(rt2x00dev, MAC_CSR15, 0x01ee);
767 rt2500usb_register_write(rt2x00dev, MAC_CSR16, 0x0000);
769 rt2500usb_register_read(rt2x00dev, MAC_CSR8, ®);
770 rt2x00_set_field16(®, MAC_CSR8_MAX_FRAME_UNIT,
771 rt2x00dev->rx->data_size);
772 rt2500usb_register_write(rt2x00dev, MAC_CSR8, reg);
774 rt2500usb_register_read(rt2x00dev, TXRX_CSR0, ®);
775 rt2x00_set_field16(®, TXRX_CSR0_IV_OFFSET, IEEE80211_HEADER);
776 rt2x00_set_field16(®, TXRX_CSR0_KEY_ID, 0xff);
777 rt2500usb_register_write(rt2x00dev, TXRX_CSR0, reg);
779 rt2500usb_register_read(rt2x00dev, MAC_CSR18, ®);
780 rt2x00_set_field16(®, MAC_CSR18_DELAY_AFTER_BEACON, 90);
781 rt2500usb_register_write(rt2x00dev, MAC_CSR18, reg);
783 rt2500usb_register_read(rt2x00dev, PHY_CSR4, ®);
784 rt2x00_set_field16(®, PHY_CSR4_LOW_RF_LE, 1);
785 rt2500usb_register_write(rt2x00dev, PHY_CSR4, reg);
787 rt2500usb_register_read(rt2x00dev, TXRX_CSR1, ®);
788 rt2x00_set_field16(®, TXRX_CSR1_AUTO_SEQUENCE, 1);
789 rt2500usb_register_write(rt2x00dev, TXRX_CSR1, reg);
794 static int rt2500usb_init_bbp(struct rt2x00_dev *rt2x00dev)
801 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
802 rt2500usb_bbp_read(rt2x00dev, 0, &value);
803 if ((value != 0xff) && (value != 0x00))
804 goto continue_csr_init;
805 NOTICE(rt2x00dev, "Waiting for BBP register.\n");
806 udelay(REGISTER_BUSY_DELAY);
809 ERROR(rt2x00dev, "BBP register access failed, aborting.\n");
813 rt2500usb_bbp_write(rt2x00dev, 3, 0x02);
814 rt2500usb_bbp_write(rt2x00dev, 4, 0x19);
815 rt2500usb_bbp_write(rt2x00dev, 14, 0x1c);
816 rt2500usb_bbp_write(rt2x00dev, 15, 0x30);
817 rt2500usb_bbp_write(rt2x00dev, 16, 0xac);
818 rt2500usb_bbp_write(rt2x00dev, 18, 0x18);
819 rt2500usb_bbp_write(rt2x00dev, 19, 0xff);
820 rt2500usb_bbp_write(rt2x00dev, 20, 0x1e);
821 rt2500usb_bbp_write(rt2x00dev, 21, 0x08);
822 rt2500usb_bbp_write(rt2x00dev, 22, 0x08);
823 rt2500usb_bbp_write(rt2x00dev, 23, 0x08);
824 rt2500usb_bbp_write(rt2x00dev, 24, 0x80);
825 rt2500usb_bbp_write(rt2x00dev, 25, 0x50);
826 rt2500usb_bbp_write(rt2x00dev, 26, 0x08);
827 rt2500usb_bbp_write(rt2x00dev, 27, 0x23);
828 rt2500usb_bbp_write(rt2x00dev, 30, 0x10);
829 rt2500usb_bbp_write(rt2x00dev, 31, 0x2b);
830 rt2500usb_bbp_write(rt2x00dev, 32, 0xb9);
831 rt2500usb_bbp_write(rt2x00dev, 34, 0x12);
832 rt2500usb_bbp_write(rt2x00dev, 35, 0x50);
833 rt2500usb_bbp_write(rt2x00dev, 39, 0xc4);
834 rt2500usb_bbp_write(rt2x00dev, 40, 0x02);
835 rt2500usb_bbp_write(rt2x00dev, 41, 0x60);
836 rt2500usb_bbp_write(rt2x00dev, 53, 0x10);
837 rt2500usb_bbp_write(rt2x00dev, 54, 0x18);
838 rt2500usb_bbp_write(rt2x00dev, 56, 0x08);
839 rt2500usb_bbp_write(rt2x00dev, 57, 0x10);
840 rt2500usb_bbp_write(rt2x00dev, 58, 0x08);
841 rt2500usb_bbp_write(rt2x00dev, 61, 0x60);
842 rt2500usb_bbp_write(rt2x00dev, 62, 0x10);
843 rt2500usb_bbp_write(rt2x00dev, 75, 0xff);
845 DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
846 for (i = 0; i < EEPROM_BBP_SIZE; i++) {
847 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
849 if (eeprom != 0xffff && eeprom != 0x0000) {
850 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
851 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
852 DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
854 rt2500usb_bbp_write(rt2x00dev, reg_id, value);
857 DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
863 * Device state switch handlers.
865 static void rt2500usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
866 enum dev_state state)
870 rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®);
871 rt2x00_set_field16(®, TXRX_CSR2_DISABLE_RX,
872 state == STATE_RADIO_RX_OFF);
873 rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg);
876 static int rt2500usb_enable_radio(struct rt2x00_dev *rt2x00dev)
879 * Initialize all registers.
881 if (rt2500usb_init_registers(rt2x00dev) ||
882 rt2500usb_init_bbp(rt2x00dev)) {
883 ERROR(rt2x00dev, "Register initialization failed.\n");
887 rt2x00usb_enable_radio(rt2x00dev);
892 rt2500usb_enable_led(rt2x00dev);
897 static void rt2500usb_disable_radio(struct rt2x00_dev *rt2x00dev)
902 rt2500usb_disable_led(rt2x00dev);
904 rt2500usb_register_write(rt2x00dev, MAC_CSR13, 0x2121);
905 rt2500usb_register_write(rt2x00dev, MAC_CSR14, 0x2121);
908 * Disable synchronisation.
910 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0);
912 rt2x00usb_disable_radio(rt2x00dev);
915 static int rt2500usb_set_state(struct rt2x00_dev *rt2x00dev,
916 enum dev_state state)
925 put_to_sleep = (state != STATE_AWAKE);
928 rt2x00_set_field16(®, MAC_CSR17_BBP_DESIRE_STATE, state);
929 rt2x00_set_field16(®, MAC_CSR17_RF_DESIRE_STATE, state);
930 rt2x00_set_field16(®, MAC_CSR17_PUT_TO_SLEEP, put_to_sleep);
931 rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg);
932 rt2x00_set_field16(®, MAC_CSR17_SET_STATE, 1);
933 rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg);
936 * Device is not guaranteed to be in the requested state yet.
937 * We must wait until the register indicates that the
938 * device has entered the correct state.
940 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
941 rt2500usb_register_read(rt2x00dev, MAC_CSR17, ®2);
942 bbp_state = rt2x00_get_field16(reg2, MAC_CSR17_BBP_CURR_STATE);
943 rf_state = rt2x00_get_field16(reg2, MAC_CSR17_RF_CURR_STATE);
944 if (bbp_state == state && rf_state == state)
946 rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg);
950 NOTICE(rt2x00dev, "Device failed to enter state %d, "
951 "current device state: bbp %d and rf %d.\n",
952 state, bbp_state, rf_state);
957 static int rt2500usb_set_device_state(struct rt2x00_dev *rt2x00dev,
958 enum dev_state state)
964 retval = rt2500usb_enable_radio(rt2x00dev);
966 case STATE_RADIO_OFF:
967 rt2500usb_disable_radio(rt2x00dev);
969 case STATE_RADIO_RX_ON:
970 case STATE_RADIO_RX_OFF:
971 rt2500usb_toggle_rx(rt2x00dev, state);
973 case STATE_DEEP_SLEEP:
977 retval = rt2500usb_set_state(rt2x00dev, state);
988 * TX descriptor initialization
990 static void rt2500usb_write_tx_desc(struct rt2x00_dev *rt2x00dev,
991 struct data_desc *txd,
992 struct txdata_entry_desc *desc,
993 struct ieee80211_hdr *ieee80211hdr,
995 struct ieee80211_tx_control *control)
1000 * Start writing the descriptor words.
1002 rt2x00_desc_read(txd, 1, &word);
1003 rt2x00_set_field32(&word, TXD_W1_IV_OFFSET, IEEE80211_HEADER);
1004 rt2x00_set_field32(&word, TXD_W1_AIFS, desc->aifs);
1005 rt2x00_set_field32(&word, TXD_W1_CWMIN, desc->cw_min);
1006 rt2x00_set_field32(&word, TXD_W1_CWMAX, desc->cw_max);
1007 rt2x00_desc_write(txd, 1, word);
1009 rt2x00_desc_read(txd, 2, &word);
1010 rt2x00_set_field32(&word, TXD_W2_PLCP_SIGNAL, desc->signal);
1011 rt2x00_set_field32(&word, TXD_W2_PLCP_SERVICE, desc->service);
1012 rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_LOW, desc->length_low);
1013 rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_HIGH, desc->length_high);
1014 rt2x00_desc_write(txd, 2, word);
1016 rt2x00_desc_read(txd, 0, &word);
1017 rt2x00_set_field32(&word, TXD_W0_RETRY_LIMIT, control->retry_limit);
1018 rt2x00_set_field32(&word, TXD_W0_MORE_FRAG,
1019 test_bit(ENTRY_TXD_MORE_FRAG, &desc->flags));
1020 rt2x00_set_field32(&word, TXD_W0_ACK,
1021 !(control->flags & IEEE80211_TXCTL_NO_ACK));
1022 rt2x00_set_field32(&word, TXD_W0_TIMESTAMP,
1023 test_bit(ENTRY_TXD_REQ_TIMESTAMP, &desc->flags));
1024 rt2x00_set_field32(&word, TXD_W0_OFDM,
1025 test_bit(ENTRY_TXD_OFDM_RATE, &desc->flags));
1026 rt2x00_set_field32(&word, TXD_W0_NEW_SEQ,
1027 !!(control->flags & IEEE80211_TXCTL_FIRST_FRAGMENT));
1028 rt2x00_set_field32(&word, TXD_W0_IFS, desc->ifs);
1029 rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, length);
1030 rt2x00_set_field32(&word, TXD_W0_CIPHER, CIPHER_NONE);
1031 rt2x00_desc_write(txd, 0, word);
1034 static int rt2500usb_get_tx_data_len(struct rt2x00_dev *rt2x00dev,
1035 struct sk_buff *skb)
1040 * The length _must_ be a multiple of 2,
1041 * but it must _not_ be a multiple of the USB packet size.
1043 length = roundup(skb->len, 2);
1044 length += (2 * !(length % rt2x00dev->usb_maxpacket));
1050 * TX data initialization
1052 static void rt2500usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
1057 if (queue != IEEE80211_TX_QUEUE_BEACON)
1060 rt2500usb_register_read(rt2x00dev, TXRX_CSR19, ®);
1061 if (!rt2x00_get_field16(reg, TXRX_CSR19_BEACON_GEN)) {
1062 rt2x00_set_field16(®, TXRX_CSR19_BEACON_GEN, 1);
1064 * Beacon generation will fail initially.
1065 * To prevent this we need to register the TXRX_CSR19
1066 * register several times.
1068 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg);
1069 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0);
1070 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg);
1071 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0);
1072 rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg);
1077 * RX control handlers
1079 static void rt2500usb_fill_rxdone(struct data_entry *entry,
1080 struct rxdata_entry_desc *desc)
1082 struct urb *urb = entry->priv;
1083 struct data_desc *rxd = (struct data_desc *)(entry->skb->data +
1084 (urb->actual_length -
1085 entry->ring->desc_size));
1089 rt2x00_desc_read(rxd, 0, &word0);
1090 rt2x00_desc_read(rxd, 1, &word1);
1093 if (rt2x00_get_field32(word0, RXD_W0_CRC_ERROR))
1094 desc->flags |= RX_FLAG_FAILED_FCS_CRC;
1095 if (rt2x00_get_field32(word0, RXD_W0_PHYSICAL_ERROR))
1096 desc->flags |= RX_FLAG_FAILED_PLCP_CRC;
1099 * Obtain the status about this packet.
1101 desc->signal = rt2x00_get_field32(word1, RXD_W1_SIGNAL);
1102 desc->rssi = rt2x00_get_field32(word1, RXD_W1_RSSI) -
1103 entry->ring->rt2x00dev->rssi_offset;
1104 desc->ofdm = rt2x00_get_field32(word0, RXD_W0_OFDM);
1105 desc->size = rt2x00_get_field32(word0, RXD_W0_DATABYTE_COUNT);
1111 * Interrupt functions.
1113 static void rt2500usb_beacondone(struct urb *urb)
1115 struct data_entry *entry = (struct data_entry *)urb->context;
1116 struct data_ring *ring = entry->ring;
1118 if (!test_bit(DEVICE_ENABLED_RADIO, &ring->rt2x00dev->flags))
1122 * Check if this was the guardian beacon,
1123 * if that was the case we need to send the real beacon now.
1124 * Otherwise we should free the sk_buffer, the device
1125 * should be doing the rest of the work now.
1127 if (ring->index == 1) {
1128 rt2x00_ring_index_done_inc(ring);
1129 entry = rt2x00_get_data_entry(ring);
1130 usb_submit_urb(entry->priv, GFP_ATOMIC);
1131 rt2x00_ring_index_inc(ring);
1132 } else if (ring->index_done == 1) {
1133 entry = rt2x00_get_data_entry_done(ring);
1135 dev_kfree_skb(entry->skb);
1138 rt2x00_ring_index_done_inc(ring);
1143 * Device probe functions.
1145 static int rt2500usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
1150 rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom, EEPROM_SIZE);
1153 * Start validation of the data that has been read.
1155 mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0);
1156 if (!is_valid_ether_addr(mac)) {
1157 DECLARE_MAC_BUF(macbuf);
1159 random_ether_addr(mac);
1160 EEPROM(rt2x00dev, "MAC: %s\n", print_mac(macbuf, mac));
1163 rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &word);
1164 if (word == 0xffff) {
1165 rt2x00_set_field16(&word, EEPROM_ANTENNA_NUM, 2);
1166 rt2x00_set_field16(&word, EEPROM_ANTENNA_TX_DEFAULT, 0);
1167 rt2x00_set_field16(&word, EEPROM_ANTENNA_RX_DEFAULT, 0);
1168 rt2x00_set_field16(&word, EEPROM_ANTENNA_LED_MODE, 0);
1169 rt2x00_set_field16(&word, EEPROM_ANTENNA_DYN_TXAGC, 0);
1170 rt2x00_set_field16(&word, EEPROM_ANTENNA_HARDWARE_RADIO, 0);
1171 rt2x00_set_field16(&word, EEPROM_ANTENNA_RF_TYPE, RF2522);
1172 rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word);
1173 EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word);
1176 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &word);
1177 if (word == 0xffff) {
1178 rt2x00_set_field16(&word, EEPROM_NIC_CARDBUS_ACCEL, 0);
1179 rt2x00_set_field16(&word, EEPROM_NIC_DYN_BBP_TUNE, 0);
1180 rt2x00_set_field16(&word, EEPROM_NIC_CCK_TX_POWER, 0);
1181 rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC, word);
1182 EEPROM(rt2x00dev, "NIC: 0x%04x\n", word);
1185 rt2x00_eeprom_read(rt2x00dev, EEPROM_CALIBRATE_OFFSET, &word);
1186 if (word == 0xffff) {
1187 rt2x00_set_field16(&word, EEPROM_CALIBRATE_OFFSET_RSSI,
1188 DEFAULT_RSSI_OFFSET);
1189 rt2x00_eeprom_write(rt2x00dev, EEPROM_CALIBRATE_OFFSET, word);
1190 EEPROM(rt2x00dev, "Calibrate offset: 0x%04x\n", word);
1193 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE, &word);
1194 if (word == 0xffff) {
1195 rt2x00_set_field16(&word, EEPROM_BBPTUNE_THRESHOLD, 45);
1196 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE, word);
1197 EEPROM(rt2x00dev, "BBPtune: 0x%04x\n", word);
1200 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &word);
1201 if (word == 0xffff) {
1202 rt2x00_set_field16(&word, EEPROM_BBPTUNE_VGCUPPER, 0x40);
1203 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_VGC, word);
1204 EEPROM(rt2x00dev, "BBPtune vgc: 0x%04x\n", word);
1207 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R17, &word);
1208 if (word == 0xffff) {
1209 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R17_LOW, 0x48);
1210 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R17_HIGH, 0x41);
1211 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R17, word);
1212 EEPROM(rt2x00dev, "BBPtune r17: 0x%04x\n", word);
1215 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &word);
1216 if (word == 0xffff) {
1217 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R24_LOW, 0x40);
1218 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R24_HIGH, 0x80);
1219 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R24, word);
1220 EEPROM(rt2x00dev, "BBPtune r24: 0x%04x\n", word);
1223 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &word);
1224 if (word == 0xffff) {
1225 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R25_LOW, 0x40);
1226 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R25_HIGH, 0x50);
1227 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R25, word);
1228 EEPROM(rt2x00dev, "BBPtune r25: 0x%04x\n", word);
1231 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &word);
1232 if (word == 0xffff) {
1233 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R61_LOW, 0x60);
1234 rt2x00_set_field16(&word, EEPROM_BBPTUNE_R61_HIGH, 0x6d);
1235 rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R61, word);
1236 EEPROM(rt2x00dev, "BBPtune r61: 0x%04x\n", word);
1242 static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev)
1249 * Read EEPROM word for configuration.
1251 rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
1254 * Identify RF chipset.
1256 value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
1257 rt2500usb_register_read(rt2x00dev, MAC_CSR0, ®);
1258 rt2x00_set_chip(rt2x00dev, RT2570, value, reg);
1260 if (!rt2x00_check_rev(&rt2x00dev->chip, 0)) {
1261 ERROR(rt2x00dev, "Invalid RT chipset detected.\n");
1265 if (!rt2x00_rf(&rt2x00dev->chip, RF2522) &&
1266 !rt2x00_rf(&rt2x00dev->chip, RF2523) &&
1267 !rt2x00_rf(&rt2x00dev->chip, RF2524) &&
1268 !rt2x00_rf(&rt2x00dev->chip, RF2525) &&
1269 !rt2x00_rf(&rt2x00dev->chip, RF2525E) &&
1270 !rt2x00_rf(&rt2x00dev->chip, RF5222)) {
1271 ERROR(rt2x00dev, "Invalid RF chipset detected.\n");
1276 * Identify default antenna configuration.
1278 rt2x00dev->hw->conf.antenna_sel_tx =
1279 rt2x00_get_field16(eeprom, EEPROM_ANTENNA_TX_DEFAULT);
1280 rt2x00dev->hw->conf.antenna_sel_rx =
1281 rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RX_DEFAULT);
1284 * Store led mode, for correct led behaviour.
1286 rt2x00dev->led_mode =
1287 rt2x00_get_field16(eeprom, EEPROM_ANTENNA_LED_MODE);
1290 * Check if the BBP tuning should be disabled.
1292 rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &eeprom);
1293 if (rt2x00_get_field16(eeprom, EEPROM_NIC_DYN_BBP_TUNE))
1294 __set_bit(CONFIG_DISABLE_LINK_TUNING, &rt2x00dev->flags);
1297 * Read the RSSI <-> dBm offset information.
1299 rt2x00_eeprom_read(rt2x00dev, EEPROM_CALIBRATE_OFFSET, &eeprom);
1300 rt2x00dev->rssi_offset =
1301 rt2x00_get_field16(eeprom, EEPROM_CALIBRATE_OFFSET_RSSI);
1307 * RF value list for RF2522
1310 static const struct rf_channel rf_vals_bg_2522[] = {
1311 { 1, 0x00002050, 0x000c1fda, 0x00000101, 0 },
1312 { 2, 0x00002050, 0x000c1fee, 0x00000101, 0 },
1313 { 3, 0x00002050, 0x000c2002, 0x00000101, 0 },
1314 { 4, 0x00002050, 0x000c2016, 0x00000101, 0 },
1315 { 5, 0x00002050, 0x000c202a, 0x00000101, 0 },
1316 { 6, 0x00002050, 0x000c203e, 0x00000101, 0 },
1317 { 7, 0x00002050, 0x000c2052, 0x00000101, 0 },
1318 { 8, 0x00002050, 0x000c2066, 0x00000101, 0 },
1319 { 9, 0x00002050, 0x000c207a, 0x00000101, 0 },
1320 { 10, 0x00002050, 0x000c208e, 0x00000101, 0 },
1321 { 11, 0x00002050, 0x000c20a2, 0x00000101, 0 },
1322 { 12, 0x00002050, 0x000c20b6, 0x00000101, 0 },
1323 { 13, 0x00002050, 0x000c20ca, 0x00000101, 0 },
1324 { 14, 0x00002050, 0x000c20fa, 0x00000101, 0 },
1328 * RF value list for RF2523
1331 static const struct rf_channel rf_vals_bg_2523[] = {
1332 { 1, 0x00022010, 0x00000c9e, 0x000e0111, 0x00000a1b },
1333 { 2, 0x00022010, 0x00000ca2, 0x000e0111, 0x00000a1b },
1334 { 3, 0x00022010, 0x00000ca6, 0x000e0111, 0x00000a1b },
1335 { 4, 0x00022010, 0x00000caa, 0x000e0111, 0x00000a1b },
1336 { 5, 0x00022010, 0x00000cae, 0x000e0111, 0x00000a1b },
1337 { 6, 0x00022010, 0x00000cb2, 0x000e0111, 0x00000a1b },
1338 { 7, 0x00022010, 0x00000cb6, 0x000e0111, 0x00000a1b },
1339 { 8, 0x00022010, 0x00000cba, 0x000e0111, 0x00000a1b },
1340 { 9, 0x00022010, 0x00000cbe, 0x000e0111, 0x00000a1b },
1341 { 10, 0x00022010, 0x00000d02, 0x000e0111, 0x00000a1b },
1342 { 11, 0x00022010, 0x00000d06, 0x000e0111, 0x00000a1b },
1343 { 12, 0x00022010, 0x00000d0a, 0x000e0111, 0x00000a1b },
1344 { 13, 0x00022010, 0x00000d0e, 0x000e0111, 0x00000a1b },
1345 { 14, 0x00022010, 0x00000d1a, 0x000e0111, 0x00000a03 },
1349 * RF value list for RF2524
1352 static const struct rf_channel rf_vals_bg_2524[] = {
1353 { 1, 0x00032020, 0x00000c9e, 0x00000101, 0x00000a1b },
1354 { 2, 0x00032020, 0x00000ca2, 0x00000101, 0x00000a1b },
1355 { 3, 0x00032020, 0x00000ca6, 0x00000101, 0x00000a1b },
1356 { 4, 0x00032020, 0x00000caa, 0x00000101, 0x00000a1b },
1357 { 5, 0x00032020, 0x00000cae, 0x00000101, 0x00000a1b },
1358 { 6, 0x00032020, 0x00000cb2, 0x00000101, 0x00000a1b },
1359 { 7, 0x00032020, 0x00000cb6, 0x00000101, 0x00000a1b },
1360 { 8, 0x00032020, 0x00000cba, 0x00000101, 0x00000a1b },
1361 { 9, 0x00032020, 0x00000cbe, 0x00000101, 0x00000a1b },
1362 { 10, 0x00032020, 0x00000d02, 0x00000101, 0x00000a1b },
1363 { 11, 0x00032020, 0x00000d06, 0x00000101, 0x00000a1b },
1364 { 12, 0x00032020, 0x00000d0a, 0x00000101, 0x00000a1b },
1365 { 13, 0x00032020, 0x00000d0e, 0x00000101, 0x00000a1b },
1366 { 14, 0x00032020, 0x00000d1a, 0x00000101, 0x00000a03 },
1370 * RF value list for RF2525
1373 static const struct rf_channel rf_vals_bg_2525[] = {
1374 { 1, 0x00022020, 0x00080c9e, 0x00060111, 0x00000a1b },
1375 { 2, 0x00022020, 0x00080ca2, 0x00060111, 0x00000a1b },
1376 { 3, 0x00022020, 0x00080ca6, 0x00060111, 0x00000a1b },
1377 { 4, 0x00022020, 0x00080caa, 0x00060111, 0x00000a1b },
1378 { 5, 0x00022020, 0x00080cae, 0x00060111, 0x00000a1b },
1379 { 6, 0x00022020, 0x00080cb2, 0x00060111, 0x00000a1b },
1380 { 7, 0x00022020, 0x00080cb6, 0x00060111, 0x00000a1b },
1381 { 8, 0x00022020, 0x00080cba, 0x00060111, 0x00000a1b },
1382 { 9, 0x00022020, 0x00080cbe, 0x00060111, 0x00000a1b },
1383 { 10, 0x00022020, 0x00080d02, 0x00060111, 0x00000a1b },
1384 { 11, 0x00022020, 0x00080d06, 0x00060111, 0x00000a1b },
1385 { 12, 0x00022020, 0x00080d0a, 0x00060111, 0x00000a1b },
1386 { 13, 0x00022020, 0x00080d0e, 0x00060111, 0x00000a1b },
1387 { 14, 0x00022020, 0x00080d1a, 0x00060111, 0x00000a03 },
1391 * RF value list for RF2525e
1394 static const struct rf_channel rf_vals_bg_2525e[] = {
1395 { 1, 0x00022010, 0x0000089a, 0x00060111, 0x00000e1b },
1396 { 2, 0x00022010, 0x0000089e, 0x00060111, 0x00000e07 },
1397 { 3, 0x00022010, 0x0000089e, 0x00060111, 0x00000e1b },
1398 { 4, 0x00022010, 0x000008a2, 0x00060111, 0x00000e07 },
1399 { 5, 0x00022010, 0x000008a2, 0x00060111, 0x00000e1b },
1400 { 6, 0x00022010, 0x000008a6, 0x00060111, 0x00000e07 },
1401 { 7, 0x00022010, 0x000008a6, 0x00060111, 0x00000e1b },
1402 { 8, 0x00022010, 0x000008aa, 0x00060111, 0x00000e07 },
1403 { 9, 0x00022010, 0x000008aa, 0x00060111, 0x00000e1b },
1404 { 10, 0x00022010, 0x000008ae, 0x00060111, 0x00000e07 },
1405 { 11, 0x00022010, 0x000008ae, 0x00060111, 0x00000e1b },
1406 { 12, 0x00022010, 0x000008b2, 0x00060111, 0x00000e07 },
1407 { 13, 0x00022010, 0x000008b2, 0x00060111, 0x00000e1b },
1408 { 14, 0x00022010, 0x000008b6, 0x00060111, 0x00000e23 },
1412 * RF value list for RF5222
1413 * Supports: 2.4 GHz & 5.2 GHz
1415 static const struct rf_channel rf_vals_5222[] = {
1416 { 1, 0x00022020, 0x00001136, 0x00000101, 0x00000a0b },
1417 { 2, 0x00022020, 0x0000113a, 0x00000101, 0x00000a0b },
1418 { 3, 0x00022020, 0x0000113e, 0x00000101, 0x00000a0b },
1419 { 4, 0x00022020, 0x00001182, 0x00000101, 0x00000a0b },
1420 { 5, 0x00022020, 0x00001186, 0x00000101, 0x00000a0b },
1421 { 6, 0x00022020, 0x0000118a, 0x00000101, 0x00000a0b },
1422 { 7, 0x00022020, 0x0000118e, 0x00000101, 0x00000a0b },
1423 { 8, 0x00022020, 0x00001192, 0x00000101, 0x00000a0b },
1424 { 9, 0x00022020, 0x00001196, 0x00000101, 0x00000a0b },
1425 { 10, 0x00022020, 0x0000119a, 0x00000101, 0x00000a0b },
1426 { 11, 0x00022020, 0x0000119e, 0x00000101, 0x00000a0b },
1427 { 12, 0x00022020, 0x000011a2, 0x00000101, 0x00000a0b },
1428 { 13, 0x00022020, 0x000011a6, 0x00000101, 0x00000a0b },
1429 { 14, 0x00022020, 0x000011ae, 0x00000101, 0x00000a1b },
1431 /* 802.11 UNI / HyperLan 2 */
1432 { 36, 0x00022010, 0x00018896, 0x00000101, 0x00000a1f },
1433 { 40, 0x00022010, 0x0001889a, 0x00000101, 0x00000a1f },
1434 { 44, 0x00022010, 0x0001889e, 0x00000101, 0x00000a1f },
1435 { 48, 0x00022010, 0x000188a2, 0x00000101, 0x00000a1f },
1436 { 52, 0x00022010, 0x000188a6, 0x00000101, 0x00000a1f },
1437 { 66, 0x00022010, 0x000188aa, 0x00000101, 0x00000a1f },
1438 { 60, 0x00022010, 0x000188ae, 0x00000101, 0x00000a1f },
1439 { 64, 0x00022010, 0x000188b2, 0x00000101, 0x00000a1f },
1441 /* 802.11 HyperLan 2 */
1442 { 100, 0x00022010, 0x00008802, 0x00000101, 0x00000a0f },
1443 { 104, 0x00022010, 0x00008806, 0x00000101, 0x00000a0f },
1444 { 108, 0x00022010, 0x0000880a, 0x00000101, 0x00000a0f },
1445 { 112, 0x00022010, 0x0000880e, 0x00000101, 0x00000a0f },
1446 { 116, 0x00022010, 0x00008812, 0x00000101, 0x00000a0f },
1447 { 120, 0x00022010, 0x00008816, 0x00000101, 0x00000a0f },
1448 { 124, 0x00022010, 0x0000881a, 0x00000101, 0x00000a0f },
1449 { 128, 0x00022010, 0x0000881e, 0x00000101, 0x00000a0f },
1450 { 132, 0x00022010, 0x00008822, 0x00000101, 0x00000a0f },
1451 { 136, 0x00022010, 0x00008826, 0x00000101, 0x00000a0f },
1454 { 140, 0x00022010, 0x0000882a, 0x00000101, 0x00000a0f },
1455 { 149, 0x00022020, 0x000090a6, 0x00000101, 0x00000a07 },
1456 { 153, 0x00022020, 0x000090ae, 0x00000101, 0x00000a07 },
1457 { 157, 0x00022020, 0x000090b6, 0x00000101, 0x00000a07 },
1458 { 161, 0x00022020, 0x000090be, 0x00000101, 0x00000a07 },
1461 static void rt2500usb_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
1463 struct hw_mode_spec *spec = &rt2x00dev->spec;
1468 * Initialize all hw fields.
1470 rt2x00dev->hw->flags =
1471 IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE |
1472 IEEE80211_HW_RX_INCLUDES_FCS |
1473 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING;
1474 rt2x00dev->hw->extra_tx_headroom = TXD_DESC_SIZE;
1475 rt2x00dev->hw->max_signal = MAX_SIGNAL;
1476 rt2x00dev->hw->max_rssi = MAX_RX_SSI;
1477 rt2x00dev->hw->queues = 2;
1479 SET_IEEE80211_DEV(rt2x00dev->hw, &rt2x00dev_usb(rt2x00dev)->dev);
1480 SET_IEEE80211_PERM_ADDR(rt2x00dev->hw,
1481 rt2x00_eeprom_addr(rt2x00dev,
1482 EEPROM_MAC_ADDR_0));
1485 * Convert tx_power array in eeprom.
1487 txpower = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_START);
1488 for (i = 0; i < 14; i++)
1489 txpower[i] = TXPOWER_FROM_DEV(txpower[i]);
1492 * Initialize hw_mode information.
1494 spec->num_modes = 2;
1495 spec->num_rates = 12;
1496 spec->tx_power_a = NULL;
1497 spec->tx_power_bg = txpower;
1498 spec->tx_power_default = DEFAULT_TXPOWER;
1500 if (rt2x00_rf(&rt2x00dev->chip, RF2522)) {
1501 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2522);
1502 spec->channels = rf_vals_bg_2522;
1503 } else if (rt2x00_rf(&rt2x00dev->chip, RF2523)) {
1504 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2523);
1505 spec->channels = rf_vals_bg_2523;
1506 } else if (rt2x00_rf(&rt2x00dev->chip, RF2524)) {
1507 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2524);
1508 spec->channels = rf_vals_bg_2524;
1509 } else if (rt2x00_rf(&rt2x00dev->chip, RF2525)) {
1510 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525);
1511 spec->channels = rf_vals_bg_2525;
1512 } else if (rt2x00_rf(&rt2x00dev->chip, RF2525E)) {
1513 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525e);
1514 spec->channels = rf_vals_bg_2525e;
1515 } else if (rt2x00_rf(&rt2x00dev->chip, RF5222)) {
1516 spec->num_channels = ARRAY_SIZE(rf_vals_5222);
1517 spec->channels = rf_vals_5222;
1518 spec->num_modes = 3;
1522 static int rt2500usb_probe_hw(struct rt2x00_dev *rt2x00dev)
1527 * Allocate eeprom data.
1529 retval = rt2500usb_validate_eeprom(rt2x00dev);
1533 retval = rt2500usb_init_eeprom(rt2x00dev);
1538 * Initialize hw specifications.
1540 rt2500usb_probe_hw_mode(rt2x00dev);
1543 * This device requires the beacon ring
1545 __set_bit(DRIVER_REQUIRE_BEACON_RING, &rt2x00dev->flags);
1548 * Set the rssi offset.
1550 rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
1556 * IEEE80211 stack callback functions.
1558 static void rt2500usb_configure_filter(struct ieee80211_hw *hw,
1559 unsigned int changed_flags,
1560 unsigned int *total_flags,
1562 struct dev_addr_list *mc_list)
1564 struct rt2x00_dev *rt2x00dev = hw->priv;
1565 struct interface *intf = &rt2x00dev->interface;
1569 * Mask off any flags we are going to ignore from
1570 * the total_flags field.
1581 * Apply some rules to the filters:
1582 * - Some filters imply different filters to be set.
1583 * - Some things we can't filter out at all.
1584 * - Some filters are set based on interface type.
1587 *total_flags |= FIF_ALLMULTI;
1588 if (*total_flags & FIF_OTHER_BSS ||
1589 *total_flags & FIF_PROMISC_IN_BSS)
1590 *total_flags |= FIF_PROMISC_IN_BSS | FIF_OTHER_BSS;
1591 if (is_interface_type(intf, IEEE80211_IF_TYPE_AP))
1592 *total_flags |= FIF_PROMISC_IN_BSS;
1595 * Check if there is any work left for us.
1597 if (intf->filter == *total_flags)
1599 intf->filter = *total_flags;
1602 * When in atomic context, reschedule and let rt2x00lib
1603 * call this function again.
1606 queue_work(rt2x00dev->hw->workqueue, &rt2x00dev->filter_work);
1611 * Start configuration steps.
1612 * Note that the version error will always be dropped
1613 * and broadcast frames will always be accepted since
1614 * there is no filter for it at this time.
1616 rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®);
1617 rt2x00_set_field16(®, TXRX_CSR2_DROP_CRC,
1618 !(*total_flags & FIF_FCSFAIL));
1619 rt2x00_set_field16(®, TXRX_CSR2_DROP_PHYSICAL,
1620 !(*total_flags & FIF_PLCPFAIL));
1621 rt2x00_set_field16(®, TXRX_CSR2_DROP_CONTROL,
1622 !(*total_flags & FIF_CONTROL));
1623 rt2x00_set_field16(®, TXRX_CSR2_DROP_NOT_TO_ME,
1624 !(*total_flags & FIF_PROMISC_IN_BSS));
1625 rt2x00_set_field16(®, TXRX_CSR2_DROP_TODS,
1626 !(*total_flags & FIF_PROMISC_IN_BSS));
1627 rt2x00_set_field16(®, TXRX_CSR2_DROP_VERSION_ERROR, 1);
1628 rt2x00_set_field16(®, TXRX_CSR2_DROP_MULTICAST,
1629 !(*total_flags & FIF_ALLMULTI));
1630 rt2x00_set_field16(®, TXRX_CSR2_DROP_BROADCAST, 0);
1631 rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg);
1634 static int rt2500usb_beacon_update(struct ieee80211_hw *hw,
1635 struct sk_buff *skb,
1636 struct ieee80211_tx_control *control)
1638 struct rt2x00_dev *rt2x00dev = hw->priv;
1639 struct usb_device *usb_dev =
1640 interface_to_usbdev(rt2x00dev_usb(rt2x00dev));
1641 struct data_ring *ring =
1642 rt2x00lib_get_ring(rt2x00dev, IEEE80211_TX_QUEUE_BEACON);
1643 struct data_entry *beacon;
1644 struct data_entry *guardian;
1645 int pipe = usb_sndbulkpipe(usb_dev, 1);
1649 * Just in case the ieee80211 doesn't set this,
1650 * but we need this queue set for the descriptor
1653 control->queue = IEEE80211_TX_QUEUE_BEACON;
1656 * Obtain 2 entries, one for the guardian byte,
1657 * the second for the actual beacon.
1659 guardian = rt2x00_get_data_entry(ring);
1660 rt2x00_ring_index_inc(ring);
1661 beacon = rt2x00_get_data_entry(ring);
1664 * First we create the beacon.
1666 skb_push(skb, ring->desc_size);
1667 memset(skb->data, 0, ring->desc_size);
1669 rt2x00lib_write_tx_desc(rt2x00dev, (struct data_desc *)skb->data,
1670 (struct ieee80211_hdr *)(skb->data +
1672 skb->len - ring->desc_size, control);
1674 length = rt2500usb_get_tx_data_len(rt2x00dev, skb);
1676 usb_fill_bulk_urb(beacon->priv, usb_dev, pipe,
1677 skb->data, length, rt2500usb_beacondone, beacon);
1682 * Second we need to create the guardian byte.
1683 * We only need a single byte, so lets recycle
1684 * the 'flags' field we are not using for beacons.
1686 guardian->flags = 0;
1687 usb_fill_bulk_urb(guardian->priv, usb_dev, pipe,
1688 &guardian->flags, 1, rt2500usb_beacondone, guardian);
1691 * Send out the guardian byte.
1693 usb_submit_urb(guardian->priv, GFP_ATOMIC);
1696 * Enable beacon generation.
1698 rt2500usb_kick_tx_queue(rt2x00dev, IEEE80211_TX_QUEUE_BEACON);
1703 static const struct ieee80211_ops rt2500usb_mac80211_ops = {
1705 .start = rt2x00mac_start,
1706 .stop = rt2x00mac_stop,
1707 .add_interface = rt2x00mac_add_interface,
1708 .remove_interface = rt2x00mac_remove_interface,
1709 .config = rt2x00mac_config,
1710 .config_interface = rt2x00mac_config_interface,
1711 .configure_filter = rt2500usb_configure_filter,
1712 .get_stats = rt2x00mac_get_stats,
1713 .erp_ie_changed = rt2x00mac_erp_ie_changed,
1714 .conf_tx = rt2x00mac_conf_tx,
1715 .get_tx_stats = rt2x00mac_get_tx_stats,
1716 .beacon_update = rt2500usb_beacon_update,
1719 static const struct rt2x00lib_ops rt2500usb_rt2x00_ops = {
1720 .probe_hw = rt2500usb_probe_hw,
1721 .initialize = rt2x00usb_initialize,
1722 .uninitialize = rt2x00usb_uninitialize,
1723 .set_device_state = rt2500usb_set_device_state,
1724 .link_stats = rt2500usb_link_stats,
1725 .reset_tuner = rt2500usb_reset_tuner,
1726 .link_tuner = rt2500usb_link_tuner,
1727 .write_tx_desc = rt2500usb_write_tx_desc,
1728 .write_tx_data = rt2x00usb_write_tx_data,
1729 .get_tx_data_len = rt2500usb_get_tx_data_len,
1730 .kick_tx_queue = rt2500usb_kick_tx_queue,
1731 .fill_rxdone = rt2500usb_fill_rxdone,
1732 .config_mac_addr = rt2500usb_config_mac_addr,
1733 .config_bssid = rt2500usb_config_bssid,
1734 .config_type = rt2500usb_config_type,
1735 .config_preamble = rt2500usb_config_preamble,
1736 .config = rt2500usb_config,
1739 static const struct rt2x00_ops rt2500usb_ops = {
1741 .rxd_size = RXD_DESC_SIZE,
1742 .txd_size = TXD_DESC_SIZE,
1743 .eeprom_size = EEPROM_SIZE,
1745 .lib = &rt2500usb_rt2x00_ops,
1746 .hw = &rt2500usb_mac80211_ops,
1747 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
1748 .debugfs = &rt2500usb_rt2x00debug,
1749 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
1753 * rt2500usb module information.
1755 static struct usb_device_id rt2500usb_device_table[] = {
1757 { USB_DEVICE(0x0b05, 0x1706), USB_DEVICE_DATA(&rt2500usb_ops) },
1758 { USB_DEVICE(0x0b05, 0x1707), USB_DEVICE_DATA(&rt2500usb_ops) },
1760 { USB_DEVICE(0x050d, 0x7050), USB_DEVICE_DATA(&rt2500usb_ops) },
1761 { USB_DEVICE(0x050d, 0x7051), USB_DEVICE_DATA(&rt2500usb_ops) },
1762 { USB_DEVICE(0x050d, 0x705a), USB_DEVICE_DATA(&rt2500usb_ops) },
1764 { USB_DEVICE(0x13b1, 0x000d), USB_DEVICE_DATA(&rt2500usb_ops) },
1765 { USB_DEVICE(0x13b1, 0x0011), USB_DEVICE_DATA(&rt2500usb_ops) },
1766 { USB_DEVICE(0x13b1, 0x001a), USB_DEVICE_DATA(&rt2500usb_ops) },
1768 { USB_DEVICE(0x14b2, 0x3c02), USB_DEVICE_DATA(&rt2500usb_ops) },
1770 { USB_DEVICE(0x2001, 0x3c00), USB_DEVICE_DATA(&rt2500usb_ops) },
1772 { USB_DEVICE(0x1044, 0x8001), USB_DEVICE_DATA(&rt2500usb_ops) },
1773 { USB_DEVICE(0x1044, 0x8007), USB_DEVICE_DATA(&rt2500usb_ops) },
1775 { USB_DEVICE(0x06f8, 0xe000), USB_DEVICE_DATA(&rt2500usb_ops) },
1777 { USB_DEVICE(0x0411, 0x0066), USB_DEVICE_DATA(&rt2500usb_ops) },
1778 { USB_DEVICE(0x0411, 0x0067), USB_DEVICE_DATA(&rt2500usb_ops) },
1779 { USB_DEVICE(0x0411, 0x008b), USB_DEVICE_DATA(&rt2500usb_ops) },
1780 { USB_DEVICE(0x0411, 0x0097), USB_DEVICE_DATA(&rt2500usb_ops) },
1783 { USB_DEVICE(0x0db0, 0x6861), USB_DEVICE_DATA(&rt2500usb_ops) },
1784 { USB_DEVICE(0x0db0, 0x6865), USB_DEVICE_DATA(&rt2500usb_ops) },
1785 { USB_DEVICE(0x0db0, 0x6869), USB_DEVICE_DATA(&rt2500usb_ops) },
1787 { USB_DEVICE(0x148f, 0x1706), USB_DEVICE_DATA(&rt2500usb_ops) },
1788 { USB_DEVICE(0x148f, 0x2570), USB_DEVICE_DATA(&rt2500usb_ops) },
1789 { USB_DEVICE(0x148f, 0x2573), USB_DEVICE_DATA(&rt2500usb_ops) },
1790 { USB_DEVICE(0x148f, 0x9020), USB_DEVICE_DATA(&rt2500usb_ops) },
1792 { USB_DEVICE(0x0681, 0x3c06), USB_DEVICE_DATA(&rt2500usb_ops) },
1794 { USB_DEVICE(0x0707, 0xee13), USB_DEVICE_DATA(&rt2500usb_ops) },
1796 { USB_DEVICE(0x114b, 0x0110), USB_DEVICE_DATA(&rt2500usb_ops) },
1798 { USB_DEVICE(0x0eb0, 0x9020), USB_DEVICE_DATA(&rt2500usb_ops) },
1800 { USB_DEVICE(0x5a57, 0x0260), USB_DEVICE_DATA(&rt2500usb_ops) },
1804 MODULE_AUTHOR(DRV_PROJECT);
1805 MODULE_VERSION(DRV_VERSION);
1806 MODULE_DESCRIPTION("Ralink RT2500 USB Wireless LAN driver.");
1807 MODULE_SUPPORTED_DEVICE("Ralink RT2570 USB chipset based cards");
1808 MODULE_DEVICE_TABLE(usb, rt2500usb_device_table);
1809 MODULE_LICENSE("GPL");
1811 static struct usb_driver rt2500usb_driver = {
1813 .id_table = rt2500usb_device_table,
1814 .probe = rt2x00usb_probe,
1815 .disconnect = rt2x00usb_disconnect,
1816 .suspend = rt2x00usb_suspend,
1817 .resume = rt2x00usb_resume,
1820 static int __init rt2500usb_init(void)
1822 return usb_register(&rt2500usb_driver);
1825 static void __exit rt2500usb_exit(void)
1827 usb_deregister(&rt2500usb_driver);
1830 module_init(rt2500usb_init);
1831 module_exit(rt2500usb_exit);